From 83ce656fa81ae87a229193c80c18c86bb1f69e3b Mon Sep 17 00:00:00 2001 From: plockwood Date: Wed, 22 Nov 2023 15:01:26 +0000 Subject: [PATCH 1/2] Added new census information and blended the data in witht the v4 endpoints --- .../Dfe.Academies.Infrastructure.csproj | 3 +- .../MstrContext.cs | 4 + .../Repositories/CensusDataRepository.cs | 23 + .../EstablishmentQueriesTests.cs | 21 +- .../ApplicationServiceConfigExtensions.cs | 2 + .../Builders/EstablishmentDtoBuilder.cs | 49 +- .../Dfe.Academies.Application.csproj | 2 +- .../Establishment/EstablishmentQueries.cs | 23 +- Dfe.Academies.Domain/Census/CensusData.cs | 28 + .../Census/ICensusDataRepository.cs | 7 + .../Dfe.Academies.Domain.csproj | 2 +- .../Establishment/Establishment.cs | 9 + .../EstablishmentResponseFactoryTests.cs | 1 + .../EstablishmentsIntegrationTests.cs | 1 + TramsDataApi.Test/TramsDataApi.Test.csproj | 2 +- .../UseCases/GetEstablishmentByUkprnTests.cs | 1 + .../CensusData/2022-2023_england_census.csv | 24437 ++++++++++++++++ TramsDataApi/Gateways/CensusDataGateway.cs | 2 +- TramsDataApi/TramsDataApi.csproj | 8 +- 19 files changed, 24598 insertions(+), 27 deletions(-) create mode 100644 Dfe.Academies.Api.Infrastructure/Repositories/CensusDataRepository.cs create mode 100644 Dfe.Academies.Domain/Census/CensusData.cs create mode 100644 Dfe.Academies.Domain/Census/ICensusDataRepository.cs create mode 100644 TramsDataApi/CensusData/2022-2023_england_census.csv diff --git a/Dfe.Academies.Api.Infrastructure/Dfe.Academies.Infrastructure.csproj b/Dfe.Academies.Api.Infrastructure/Dfe.Academies.Infrastructure.csproj index d225b02cb..0d1e0acc7 100644 --- a/Dfe.Academies.Api.Infrastructure/Dfe.Academies.Infrastructure.csproj +++ b/Dfe.Academies.Api.Infrastructure/Dfe.Academies.Infrastructure.csproj @@ -7,7 +7,8 @@ - + + all diff --git a/Dfe.Academies.Api.Infrastructure/MstrContext.cs b/Dfe.Academies.Api.Infrastructure/MstrContext.cs index 13a2a19b4..7e6beee69 100644 --- a/Dfe.Academies.Api.Infrastructure/MstrContext.cs +++ b/Dfe.Academies.Api.Infrastructure/MstrContext.cs @@ -127,6 +127,10 @@ private void ConfigureEstablishment(EntityTypeBuilder establishme establishmentConfiguration.Property(e => e.URNAtSection8Inspection).HasColumnName("URN at Section 8 inspection"); establishmentConfiguration.Property(e => e.Website).HasColumnName("Website"); + establishmentConfiguration.Property(e => e.DioceseCode).HasColumnName("Diocese(code)"); + establishmentConfiguration.Property(e => e.GORregionCode).HasColumnName("GORregion(code)"); + establishmentConfiguration.Property(e => e.ReligiousCharacterCode).HasColumnName("ReligiousCharacter(code)"); + establishmentConfiguration .HasOne(x => x.EstablishmentType) .WithOne() diff --git a/Dfe.Academies.Api.Infrastructure/Repositories/CensusDataRepository.cs b/Dfe.Academies.Api.Infrastructure/Repositories/CensusDataRepository.cs new file mode 100644 index 000000000..589bbf8c0 --- /dev/null +++ b/Dfe.Academies.Api.Infrastructure/Repositories/CensusDataRepository.cs @@ -0,0 +1,23 @@ +using CsvHelper; +using Dfe.Academies.Domain.Census; +using System.Globalization; + +namespace Dfe.Academies.Infrastructure.Repositories +{ + public class CensusDataRepository : ICensusDataRepository + { + private readonly IEnumerable records; + + public CensusDataRepository() + { + var reader = new StreamReader("CensusData/2022-2023_england_census.csv"); + var csv = new CsvReader(reader, CultureInfo.InvariantCulture); + records = csv.GetRecords().ToList(); + } + + public CensusData GetCensusDataByURN(int urn) + { + return records.FirstOrDefault(censusData => censusData.URN == urn.ToString()); + } + } +} diff --git a/Dfe.Academies.Application.Tests/Queries/Establishment/EstablishmentQueriesTests.cs b/Dfe.Academies.Application.Tests/Queries/Establishment/EstablishmentQueriesTests.cs index 8f7b9d0d2..2be8bdb3d 100644 --- a/Dfe.Academies.Application.Tests/Queries/Establishment/EstablishmentQueriesTests.cs +++ b/Dfe.Academies.Application.Tests/Queries/Establishment/EstablishmentQueriesTests.cs @@ -1,6 +1,7 @@ using AutoFixture; using Dfe.Academies.Application.Queries.Establishment; using Dfe.Academies.Contracts.V4.Establishments; +using Dfe.Academies.Domain.Census; using Dfe.Academies.Domain.Establishment; using Dfe.Academies.Domain.Trust; using FluentAssertions; @@ -26,12 +27,13 @@ public async Task GetByUkprn_WhenEstablishmentReturnedFromRepo_EstablishmentDtoI var establishment = _fixture.Create(); var mockRepo = new Mock(); var mockTrustRepo = new Mock(); + var mockCensusRepo = new Mock(); string ukprn = "1010101"; mockRepo.Setup(x => x.GetEstablishmentByUkprn(It.Is(v => v == ukprn), It.IsAny())).Returns(Task.FromResult(establishment)); var establishmentQueries = new EstablishmentQueries( - mockRepo.Object, mockTrustRepo.Object); + mockRepo.Object, mockTrustRepo.Object, mockCensusRepo.Object); CancellationToken cancellationToken = default(global::System.Threading.CancellationToken); @@ -52,11 +54,12 @@ public async Task GetByUrn_WhenEstablishmentReturnedFromRepo_EstablishmentDtoIsR var establishment = _fixture.Create(); var mockRepo = new Mock(); var mockTrustRepo = new Mock(); + var mockCensusRepo = new Mock(); string urn = "1010101"; mockRepo.Setup(x => x.GetEstablishmentByUrn(It.Is(v => v == urn), It.IsAny())).Returns(Task.FromResult(establishment)); var establishmentQueries = new EstablishmentQueries( - mockRepo.Object, mockTrustRepo.Object); + mockRepo.Object, mockTrustRepo.Object, mockCensusRepo.Object); CancellationToken cancellationToken = default(global::System.Threading.CancellationToken); @@ -76,14 +79,16 @@ public async Task Search_WhenEstablishmentsReturnedFromRepo_EstablishmentDtoList // Arrange var establishments = _fixture.Create>(); var mockRepo = new Mock(); - var mockTrustRepo = new Mock(); + var mockTrustRepo = new Mock(); + var mockCensusRepo = new Mock(); + string urn = "1010101"; string name = "Test name"; string ukPrn = "Test UkPrn"; mockRepo.Setup(x => x.Search(It.Is(v => v == name), It.Is(v => v == ukPrn), It.Is(v => v == urn), It.IsAny())).Returns(Task.FromResult(establishments)); var establishmentQueries = new EstablishmentQueries( - mockRepo.Object, mockTrustRepo.Object); + mockRepo.Object, mockTrustRepo.Object, mockCensusRepo.Object); CancellationToken cancellationToken = default(global::System.Threading.CancellationToken); @@ -111,9 +116,9 @@ public async Task GetURNsByRegion_WhenEstablishmentUrnsReturnedFromRepo_IEnumebr var mockRepo = new Mock(); var mockTrustRepo = new Mock(); mockRepo.Setup(x => x.GetURNsByRegion(It.Is(v => v == regions), It.IsAny())).Returns(Task.FromResult(establishmentUrns)); - + var mockCensusRepo = new Mock(); var establishmentQueries = new EstablishmentQueries( - mockRepo.Object, mockTrustRepo.Object); + mockRepo.Object, mockTrustRepo.Object, mockCensusRepo.Object); CancellationToken cancellationToken = default(global::System.Threading.CancellationToken); // Act @@ -135,10 +140,12 @@ public async Task GetByUrns_WhenEstablishmentsReturnedFromRepo_ListOfEstablishme var establishments = _fixture.Create>(); var mockRepo = new Mock(); var mockTrustRepo = new Mock(); + var mockCensusRepo = new Mock(); + mockRepo.Setup(x => x.GetByUrns(It.Is(v => v == Urns), It.IsAny())).Returns(Task.FromResult(establishments)); var establishmentQueries = new EstablishmentQueries( - mockRepo.Object, mockTrustRepo.Object); + mockRepo.Object, mockTrustRepo.Object, mockCensusRepo.Object); CancellationToken cancellationToken = default(global::System.Threading.CancellationToken); // Act var result = await establishmentQueries.GetByUrns( diff --git a/Dfe.Academies.Application/ApplicationServiceConfigExtensions.cs b/Dfe.Academies.Application/ApplicationServiceConfigExtensions.cs index 559e47547..6f48aba91 100644 --- a/Dfe.Academies.Application/ApplicationServiceConfigExtensions.cs +++ b/Dfe.Academies.Application/ApplicationServiceConfigExtensions.cs @@ -1,6 +1,7 @@ using Dfe.Academies.Academisation.Data; using Dfe.Academies.Application.Queries.Establishment; using Dfe.Academies.Application.Queries.Trust; +using Dfe.Academies.Domain.Census; using Dfe.Academies.Domain.Establishment; using Dfe.Academies.Domain.Trust; using Dfe.Academies.Infrastructure.Repositories; @@ -32,6 +33,7 @@ public static IServiceCollection AddApplicationDependencyGroup( //Repos services.AddScoped(); services.AddScoped(); + services.AddSingleton(); //Db services.AddDbContext(options => diff --git a/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs b/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs index aad060b1c..96b9b11f3 100644 --- a/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs +++ b/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs @@ -1,5 +1,7 @@ using Dfe.Academies.Contracts.V4; using Dfe.Academies.Contracts.V4.Establishments; +using Dfe.Academies.Domain.Census; +using System; namespace Dfe.Academies.Application.Builders { @@ -9,6 +11,13 @@ public class EstablishmentDtoBuilder public EstablishmentDtoBuilder WithBasicDetails(Domain.Establishment.Establishment establishment) { + _dto.Ukprn = establishment?.UKPRN; + _dto.NoOfBoys = establishment?.NumberOfBoys.ToString(); + _dto.NoOfGirls = establishment?.NumberOfGirls.ToString(); + _dto.GiasLastChangedDate = establishment?.GiasLastChangedDate.ToString(); + _dto.ReligousEthos = establishment?.ReligiousEthos; + _dto.SenUnitCapacity = establishment?.SenUnitCapacity.ToString(); + _dto.SenUnitOnRoll = establishment?.SenUnitOnRoll.ToString(); _dto.Name = establishment?.EstablishmentName; _dto.Urn = establishment?.URN.ToString() ?? string.Empty; _dto.OfstedRating = establishment?.OfstedRating; @@ -38,7 +47,7 @@ public EstablishmentDtoBuilder WithDiocese(Domain.Establishment.Establishment es _dto.Diocese = new NameAndCodeDto { Name = establishment?.Diocese, - Code = establishment?.Diocese // No Code + Code = establishment?.DioceseCode }; return this; @@ -60,7 +69,7 @@ public EstablishmentDtoBuilder WithGor(Domain.Establishment.Establishment establ _dto.Gor = new NameAndCodeDto { Name = establishment?.GORregion, - Code = establishment?.GORregion // No Code + Code = establishment?.GORregionCode }; return this; @@ -71,7 +80,7 @@ public EstablishmentDtoBuilder WithPhaseOfEducation(Domain.Establishment.Establi _dto.PhaseOfEducation = new NameAndCodeDto { Name = establishment?.PhaseOfEducation, - Code = establishment?.PhaseOfEducation // No Code + Code = establishment?.PhaseOfEducation // no code }; return this; @@ -82,7 +91,7 @@ public EstablishmentDtoBuilder WithReligiousCharacter(Domain.Establishment.Estab _dto.ReligiousCharacter = new NameAndCodeDto { Name = establishment.ReligiousCharacter, - Code = establishment.ReligiousCharacter // No Code + Code = establishment.ReligiousCharacterCode }; return this; @@ -97,12 +106,40 @@ public EstablishmentDtoBuilder WithParliamentaryConstituency(Domain.Establishmen return this; } - public EstablishmentDtoBuilder WithCensus(Domain.Establishment.Establishment establishment) + public EstablishmentDtoBuilder WithCensus(Domain.Establishment.Establishment establishment, CensusData censusData) { + // census field descriptions + //URN School - Unique Reference Number + //LA - LA number + //ESTAB - ESTAB number + //SCHOOLTYPE - Type of school + //NOR - Total number of pupils on roll + //NORG - Number of girls on roll + //NORB - Number of boys on roll + //PNORG - Percentage of girls on roll + //PNORB - Percentage of boys on roll + //TSENELSE - Number of SEN pupils with an EHC plan + //PSENELSE - Percentage of SEN pupils with an EHC plan + //TSENELK - Number of eligible pupils with SEN support + //PSENELK - Percentage of eligible pupils with SEN support + //NUMEAL - No. pupils where English not first language + //NUMENGFL - No. pupils with English first language + //NUMUNCFL - No.pupils where first language is unclassified + //PNUMEAL - % pupils where English not first language + //PNUMENGFL - % pupils with English first language + //PNUMUNCFL - % pupils where first language is unclassified + //NUMFSM - No.pupils eligible for free school meals + //NUMFSMEVER - Number of pupils eligible for FSM at any time during the past 6 years + //PNUMFSMEVER - Percentage of pupils eligible for FSM at any time during the past 6 years + _dto.Census = new CensusDto { NumberOfPupils = establishment.NumberOfPupils, - PercentageFsm = establishment.PercentageFSM + PercentageFsm = establishment.PercentageFSM, + PercentageSen = censusData?.PSENELK, + PercentageEnglishAsSecondLanguage = censusData?.PNUMEAL, + PercentageFsmLastSixYears = censusData?.PNUMFSMEVER + }; return this; diff --git a/Dfe.Academies.Application/Dfe.Academies.Application.csproj b/Dfe.Academies.Application/Dfe.Academies.Application.csproj index e4ab16c2b..69c7f15be 100644 --- a/Dfe.Academies.Application/Dfe.Academies.Application.csproj +++ b/Dfe.Academies.Application/Dfe.Academies.Application.csproj @@ -7,7 +7,7 @@ - + diff --git a/Dfe.Academies.Application/Queries/Establishment/EstablishmentQueries.cs b/Dfe.Academies.Application/Queries/Establishment/EstablishmentQueries.cs index 4c29a375b..4020e2142 100644 --- a/Dfe.Academies.Application/Queries/Establishment/EstablishmentQueries.cs +++ b/Dfe.Academies.Application/Queries/Establishment/EstablishmentQueries.cs @@ -3,6 +3,7 @@ using Dfe.Academies.Application.Builders; using Dfe.Academies.Domain.Trust; +using Dfe.Academies.Domain.Census; namespace Dfe.Academies.Application.Queries.Establishment { @@ -10,27 +11,33 @@ public class EstablishmentQueries : IEstablishmentQueries { private readonly IEstablishmentRepository _establishmentRepository; private readonly ITrustRepository _trustRepository; + private readonly ICensusDataRepository _censusDataRepository; - public EstablishmentQueries(IEstablishmentRepository establishmentRepository, ITrustRepository trustRepository) + public EstablishmentQueries(IEstablishmentRepository establishmentRepository, ITrustRepository trustRepository, ICensusDataRepository censusDataRepository) { _establishmentRepository = establishmentRepository; _trustRepository = trustRepository; + _censusDataRepository = censusDataRepository; } public async Task GetByUkprn(string ukprn, CancellationToken cancellationToken) { var establishment = await _establishmentRepository.GetEstablishmentByUkprn(ukprn, cancellationToken).ConfigureAwait(false); - return establishment == null ? null : MapToEstablishmentDto(establishment); + var censusData = this._censusDataRepository.GetCensusDataByURN(establishment.URN.Value); + + return establishment == null ? null : MapToEstablishmentDto(establishment, censusData); } public async Task GetByUrn(string urn, CancellationToken cancellationToken) { var establishment = await _establishmentRepository.GetEstablishmentByUrn(urn, cancellationToken).ConfigureAwait(false); - return establishment == null ? null : MapToEstablishmentDto(establishment); + var censusData = this._censusDataRepository.GetCensusDataByURN(establishment.URN.Value); + + return establishment == null ? null : MapToEstablishmentDto(establishment, censusData); } public async Task<(List, int)> Search(string name, string ukPrn, string urn, CancellationToken cancellationToken) { var establishments = await _establishmentRepository.Search(name, ukPrn, urn, cancellationToken).ConfigureAwait(false); - return (establishments.Select(x => MapToEstablishmentDto(x)).ToList(), establishments.Count); + return (establishments.Select(x => MapToEstablishmentDto(x, _censusDataRepository.GetCensusDataByURN(x.URN.Value))).ToList(), establishments.Count); } public async Task> GetURNsByRegion(string[] regions, CancellationToken cancellationToken) { @@ -42,16 +49,16 @@ public async Task> GetByTrust(string trustUkprn, Cancella { var trust = await _trustRepository.GetTrustByUkprn(trustUkprn, cancellationToken); var establishments = await _establishmentRepository.GetByTrust(trust.SK, cancellationToken).ConfigureAwait(false); - return establishments.Select(MapToEstablishmentDto).ToList(); + return establishments.Select(x => MapToEstablishmentDto(x, _censusDataRepository.GetCensusDataByURN(x.URN.Value))).ToList(); } public async Task> GetByUrns(int[] Urns, CancellationToken cancellationToken) { var establishments = await _establishmentRepository.GetByUrns(Urns, cancellationToken).ConfigureAwait(false); - return (establishments.Select(x => MapToEstablishmentDto(x)).ToList()); + return (establishments.Select(x => MapToEstablishmentDto(x, _censusDataRepository.GetCensusDataByURN(x.URN.Value))).ToList()); } - private static EstablishmentDto MapToEstablishmentDto(Domain.Establishment.Establishment? establishment) + private static EstablishmentDto MapToEstablishmentDto(Domain.Establishment.Establishment? establishment, CensusData censusData) { return new EstablishmentDtoBuilder() .WithBasicDetails(establishment) @@ -62,7 +69,7 @@ private static EstablishmentDto MapToEstablishmentDto(Domain.Establishment.Estab .WithPhaseOfEducation(establishment) .WithReligiousCharacter(establishment) .WithParliamentaryConstituency(establishment) - .WithCensus(establishment) + .WithCensus(establishment, censusData) .WithMISEstablishment(establishment) .WithAddress(establishment) .Build(); diff --git a/Dfe.Academies.Domain/Census/CensusData.cs b/Dfe.Academies.Domain/Census/CensusData.cs new file mode 100644 index 000000000..0d93bfcd3 --- /dev/null +++ b/Dfe.Academies.Domain/Census/CensusData.cs @@ -0,0 +1,28 @@ +namespace Dfe.Academies.Domain.Census +{ + public class CensusData + { + public string URN { get; set; } + public string LA { get; set; } + public string ESTAB { get; set; } + public string SCHOOLTYPE { get; set; } + public string NOR { get; set; } + public string NORG { get; set; } + public string NORB { get; set; } + public string PNORG { get; set; } + public string PNORB { get; set; } + public string TSENELSE { get; set; } + public string PSENELSE { get; set; } + public string TSENELK { get; set; } + public string PSENELK { get; set; } + public string NUMEAL { get; set; } + public string NUMENGFL { get; set; } + public string NUMUNCFL { get; set; } + public string PNUMEAL { get; set; } + public string PNUMENGFL { get; set; } + public string PNUMUNCFL { get; set; } + public string NUMFSM { get; set; } + public string NUMFSMEVER { get; set; } + public string PNUMFSMEVER { get; set; } + } +} \ No newline at end of file diff --git a/Dfe.Academies.Domain/Census/ICensusDataRepository.cs b/Dfe.Academies.Domain/Census/ICensusDataRepository.cs new file mode 100644 index 000000000..de9c3445d --- /dev/null +++ b/Dfe.Academies.Domain/Census/ICensusDataRepository.cs @@ -0,0 +1,7 @@ +namespace Dfe.Academies.Domain.Census +{ + public interface ICensusDataRepository + { + public CensusData GetCensusDataByURN(int urn); + } +} \ No newline at end of file diff --git a/Dfe.Academies.Domain/Dfe.Academies.Domain.csproj b/Dfe.Academies.Domain/Dfe.Academies.Domain.csproj index 4d76dbc8b..2e34a50c0 100644 --- a/Dfe.Academies.Domain/Dfe.Academies.Domain.csproj +++ b/Dfe.Academies.Domain/Dfe.Academies.Domain.csproj @@ -7,7 +7,7 @@ - + diff --git a/Dfe.Academies.Domain/Establishment/Establishment.cs b/Dfe.Academies.Domain/Establishment/Establishment.cs index 01995335d..912e697c8 100644 --- a/Dfe.Academies.Domain/Establishment/Establishment.cs +++ b/Dfe.Academies.Domain/Establishment/Establishment.cs @@ -88,6 +88,15 @@ public class Establishment public string? GORregion { get; set; } public string? SFSOTerritory { get; set; } + public DateTime? GiasLastChangedDate { get; set; } + public int? NumberOfBoys { get; set; } + public int? NumberOfGirls { get; set; } + public string? DioceseCode { get; set; } + public string? GORregionCode { get; set; } + public string? ReligiousCharacterCode { get; set; } + public int? SenUnitCapacity { get; set; } + public int? SenUnitOnRoll { get; set; } + public LocalAuthority LocalAuthority { get; set; } public EstablishmentType EstablishmentType{ get; set; } diff --git a/TramsDataApi.Test/Factories/EstablishmentResponseFactoryTests.cs b/TramsDataApi.Test/Factories/EstablishmentResponseFactoryTests.cs index ab1e4900e..21f1db0bb 100644 --- a/TramsDataApi.Test/Factories/EstablishmentResponseFactoryTests.cs +++ b/TramsDataApi.Test/Factories/EstablishmentResponseFactoryTests.cs @@ -1,4 +1,5 @@ using AutoFixture.Xunit2; +using Dfe.Academies.Domain.Census; using FluentAssertions; using TramsDataApi.CensusData; using TramsDataApi.DatabaseModels; diff --git a/TramsDataApi.Test/Integration/EstablishmentsIntegrationTests.cs b/TramsDataApi.Test/Integration/EstablishmentsIntegrationTests.cs index 3d791bec0..afb6a023e 100644 --- a/TramsDataApi.Test/Integration/EstablishmentsIntegrationTests.cs +++ b/TramsDataApi.Test/Integration/EstablishmentsIntegrationTests.cs @@ -4,6 +4,7 @@ using System.Net; using System.Net.Http; using System.Threading.Tasks; +using Dfe.Academies.Domain.Census; using FizzWare.NBuilder; using FluentAssertions; using Microsoft.Extensions.DependencyInjection; diff --git a/TramsDataApi.Test/TramsDataApi.Test.csproj b/TramsDataApi.Test/TramsDataApi.Test.csproj index 9c381b73e..30d7fe1ba 100644 --- a/TramsDataApi.Test/TramsDataApi.Test.csproj +++ b/TramsDataApi.Test/TramsDataApi.Test.csproj @@ -16,7 +16,7 @@ - + diff --git a/TramsDataApi.Test/UseCases/GetEstablishmentByUkprnTests.cs b/TramsDataApi.Test/UseCases/GetEstablishmentByUkprnTests.cs index 29c9f10fe..40a5279bf 100644 --- a/TramsDataApi.Test/UseCases/GetEstablishmentByUkprnTests.cs +++ b/TramsDataApi.Test/UseCases/GetEstablishmentByUkprnTests.cs @@ -1,3 +1,4 @@ +using Dfe.Academies.Domain.Census; using FizzWare.NBuilder; using FizzWare.NBuilder.PropertyNaming; using FluentAssertions; diff --git a/TramsDataApi/CensusData/2022-2023_england_census.csv b/TramsDataApi/CensusData/2022-2023_england_census.csv new file mode 100644 index 000000000..1e65b6a63 --- /dev/null +++ b/TramsDataApi/CensusData/2022-2023_england_census.csv @@ -0,0 +1,24437 @@ +URN,LA,ESTAB,SCHOOLTYPE,NOR,NORG,NORB,PNORG,PNORB,TSENELSE,PSENELSE,TSENELK,PSENELK,NUMEAL,NUMENGFL,NUMUNCFL,PNUMEAL,PNUMENGFL,PNUMUNCFL,NUMFSM,NUMFSMEVER,NORFSMEVER,PNUMFSMEVER +100000,201,3614,State-funded primary,271,127,144,46.90%,53.10%,8,3.00%,59,21.80%,145,125,1,53.50%,46.10%,0.40%,49,50,228,21.90% +100001,201,6005,Independent school,739,739,0,100.00%,0.00%,0,0.00%,22,3.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100002,201,6006,Independent school,269,105,164,39.00%,61.00%,0,0.00%,22,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100003,201,6007,Independent school,1045,0,1045,0.00%,100.00%,0,0.00%,145,13.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100005,202,1048,State-funded nursery,136,61,75,44.90%,55.10%,2,1.50%,23,16.90%,38,98,0,27.90%,72.10%,0.00%,52,0,0,0.00% +100006,202,1100,State-funded AP school,19,5,14,26.30%,73.70%,0,0.00%,13,68.40%,5,13,1,26.30%,68.40%,5.30%,13,15,19,78.90% +100007,202,1101,State-funded AP school,19,5,14,26.30%,73.70%,9,47.40%,10,52.60%,4,15,0,21.10%,78.90%,0.00%,19,19,19,100.00% +100008,202,2019,State-funded primary,350,185,165,52.90%,47.10%,12,3.40%,61,17.40%,306,44,0,87.40%,12.60%,0.00%,193,176,312,56.40% +100009,202,2036,State-funded primary,389,186,203,47.80%,52.20%,11,2.80%,62,15.90%,206,183,0,53.00%,47.00%,0.00%,169,163,357,45.70% +100010,202,2065,State-funded primary,338,159,179,47.00%,53.00%,12,3.60%,65,19.20%,202,136,0,59.80%,40.20%,0.00%,200,184,286,64.30% +100011,202,2078,State-funded primary,394,200,194,50.80%,49.20%,4,1.00%,54,13.70%,61,333,0,15.50%,84.50%,0.00%,124,104,335,31.00% +100013,202,2184,State-funded primary,200,97,103,48.50%,51.50%,6,3.00%,46,23.00%,181,19,0,90.50%,9.50%,0.00%,102,96,174,55.20% +100014,202,2219,State-funded primary,228,102,126,44.70%,55.30%,5,2.20%,38,16.70%,115,113,0,50.40%,49.60%,0.00%,102,98,204,48.00% +100015,202,2290,State-funded primary,225,96,129,42.70%,57.30%,5,2.20%,41,18.20%,141,84,0,62.70%,37.30%,0.00%,92,85,199,42.70% +100018,202,2436,State-funded primary,393,190,203,48.30%,51.70%,42,10.70%,85,21.60%,254,139,0,64.60%,35.40%,0.00%,235,214,336,63.70% +100019,202,2438,State-funded primary,355,173,182,48.70%,51.30%,3,0.80%,37,10.40%,249,106,0,70.10%,29.90%,0.00%,79,71,316,22.50% +100020,202,2475,State-funded primary,457,234,223,51.20%,48.80%,19,4.20%,82,17.90%,275,182,0,60.20%,39.80%,0.00%,171,154,398,38.70% +100021,202,2502,State-funded primary,421,207,214,49.20%,50.80%,13,3.10%,112,26.60%,332,89,0,78.90%,21.10%,0.00%,221,212,367,57.80% +100022,202,2507,State-funded primary,411,212,199,51.60%,48.40%,9,2.20%,71,17.30%,379,32,0,92.20%,7.80%,0.00%,227,212,366,57.90% +100023,202,2603,State-funded primary,450,219,231,48.70%,51.30%,27,6.00%,60,13.30%,197,253,0,43.80%,56.20%,0.00%,188,181,411,44.00% +100025,202,2775,State-funded primary,452,214,238,47.30%,52.70%,9,2.00%,56,12.40%,216,230,6,47.80%,50.90%,1.30%,161,160,414,38.60% +100026,202,2797,State-funded primary,230,121,109,52.60%,47.40%,7,3.00%,17,7.40%,178,52,0,77.40%,22.60%,0.00%,31,26,206,12.60% +100027,202,2841,State-funded primary,236,125,111,53.00%,47.00%,7,3.00%,42,17.80%,95,141,0,40.30%,59.70%,0.00%,39,40,210,19.00% +100028,202,3323,State-funded primary,192,96,96,50.00%,50.00%,1,0.50%,12,6.30%,101,91,0,52.60%,47.40%,0.00%,11,11,192,5.70% +100029,202,3327,State-funded primary,203,99,104,48.80%,51.20%,9,4.40%,26,12.80%,104,99,0,51.20%,48.80%,0.00%,103,100,189,52.90% +100030,202,3340,State-funded primary,229,117,112,51.10%,48.90%,5,2.20%,22,9.60%,87,142,0,38.00%,62.00%,0.00%,25,20,204,9.80% +100031,202,3352,State-funded primary,204,101,103,49.50%,50.50%,1,0.50%,17,8.30%,110,94,0,53.90%,46.10%,0.00%,17,18,204,8.80% +100032,202,3359,State-funded primary,176,97,79,55.10%,44.90%,4,2.30%,17,9.70%,102,74,0,58.00%,42.00%,0.00%,98,101,176,57.40% +100033,202,3361,State-funded primary,210,113,97,53.80%,46.20%,4,1.90%,43,20.50%,60,150,0,28.60%,71.40%,0.00%,70,73,210,34.80% +100034,202,3370,State-funded primary,234,113,121,48.30%,51.70%,25,10.70%,25,10.70%,100,134,0,42.70%,57.30%,0.00%,95,88,208,42.30% +100035,202,3391,State-funded primary,322,167,155,51.90%,48.10%,6,1.90%,41,12.70%,170,152,0,52.80%,47.20%,0.00%,127,126,290,43.40% +100036,202,3398,State-funded primary,158,77,81,48.70%,51.30%,12,7.60%,15,9.50%,19,139,0,12.00%,88.00%,0.00%,98,94,150,62.70% +100039,202,3429,State-funded primary,46,25,21,54.30%,45.70%,4,8.70%,11,23.90%,8,38,0,17.40%,82.60%,0.00%,27,26,41,63.40% +100040,202,3441,State-funded primary,212,118,94,55.70%,44.30%,2,0.90%,40,18.90%,103,109,0,48.60%,51.40%,0.00%,82,79,201,39.30% +100041,202,3482,State-funded primary,176,90,86,51.10%,48.90%,4,2.30%,27,15.30%,66,110,0,37.50%,62.50%,0.00%,71,67,164,40.90% +100042,202,3517,State-funded primary,228,110,118,48.20%,51.80%,7,3.10%,41,18.00%,147,81,0,64.50%,35.50%,0.00%,122,110,202,54.50% +100043,202,3521,State-funded primary,204,114,90,55.90%,44.10%,3,1.50%,33,16.20%,81,123,0,39.70%,60.30%,0.00%,129,123,191,64.40% +100044,202,3546,State-funded primary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +100045,202,3560,State-funded primary,160,76,84,47.50%,52.50%,3,1.90%,46,28.80%,73,87,0,45.60%,54.40%,0.00%,94,92,150,61.30% +100046,202,3568,State-funded primary,194,102,92,52.60%,47.40%,2,1.00%,27,13.90%,48,145,1,24.70%,74.70%,0.50%,72,72,194,37.10% +100047,202,3649,State-funded primary,198,109,89,55.10%,44.90%,6,3.00%,28,14.10%,99,99,0,50.00%,50.00%,0.00%,89,90,198,45.50% +100048,202,3655,State-funded primary,292,162,130,55.50%,44.50%,9,3.10%,48,16.40%,132,160,0,45.20%,54.80%,0.00%,204,191,270,70.70% +100049,202,4104,State-funded secondary,982,423,559,43.10%,56.90%,28,2.90%,188,19.10%,565,411,6,57.50%,41.90%,0.60%,584,503,721,69.80% +100050,202,4166,State-funded secondary,1249,1187,62,95.00%,5.00%,16,1.30%,167,13.40%,426,820,3,34.10%,65.70%,0.20%,424,336,891,37.70% +100051,202,4196,State-funded secondary,1079,473,606,43.80%,56.20%,39,3.60%,193,17.90%,726,353,0,67.30%,32.70%,0.00%,666,595,904,65.80% +100052,202,4275,State-funded secondary,1319,638,681,48.40%,51.60%,38,2.90%,127,9.60%,502,817,0,38.10%,61.90%,0.00%,522,530,1033,51.30% +100053,202,4285,State-funded secondary,1163,398,765,34.20%,65.80%,87,7.50%,139,12.00%,275,820,68,23.60%,70.50%,5.80%,374,359,906,39.60% +100054,202,4611,State-funded secondary,1047,908,139,86.70%,13.30%,13,1.20%,115,11.00%,267,772,8,25.50%,73.70%,0.80%,208,181,597,30.30% +100055,202,4652,State-funded secondary,832,381,451,45.80%,54.20%,24,2.90%,93,11.20%,430,402,0,51.70%,48.30%,0.00%,404,402,706,56.90% +100056,202,4688,State-funded secondary,904,106,798,11.70%,88.30%,30,3.30%,149,16.50%,331,560,13,36.60%,61.90%,1.40%,336,294,610,48.20% +100059,202,5401,State-funded secondary,817,777,40,95.10%,4.90%,8,1.00%,70,8.60%,413,376,28,50.60%,46.00%,3.40%,241,243,569,42.70% +100061,202,6013,Independent school,250,250,0,100.00%,0.00%,1,0.40%,51,20.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100062,202,6014,Independent school,166,166,0,100.00%,0.00%,0,0.00%,22,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100063,202,6016,Independent school,185,185,0,100.00%,0.00%,1,0.50%,31,16.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100064,202,6017,Independent school,469,0,469,0.00%,100.00%,0,0.00%,100,21.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100065,202,6018,Independent school,1293,112,1181,8.70%,91.30%,2,0.20%,168,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100066,202,6038,Independent school,216,216,0,100.00%,0.00%,0,0.00%,77,35.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100067,202,6084,Independent school,204,204,0,100.00%,0.00%,4,2.00%,24,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100068,202,6174,Independent school,302,131,171,43.40%,56.60%,0,0.00%,52,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100069,202,6179,Independent school,172,0,172,0.00%,100.00%,1,0.60%,35,20.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100070,202,6181,Independent school,275,0,275,0.00%,100.00%,1,0.40%,75,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100073,202,6264,Independent school,388,151,237,38.90%,61.10%,0,0.00%,47,12.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100074,202,6269,Independent school,470,163,307,34.70%,65.30%,4,0.90%,46,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100075,202,6295,Independent school,169,73,96,43.20%,56.80%,0,0.00%,17,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100076,202,6307,Independent school,949,949,0,100.00%,0.00%,0,0.00%,98,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100077,202,6353,Independent school,68,62,6,91.20%,8.80%,0,0.00%,15,22.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100078,202,6360,Independent school,193,83,110,43.00%,57.00%,3,1.60%,40,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100080,202,6380,Independent school,561,204,357,36.40%,63.60%,1,0.20%,20,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100081,202,6384,Independent school,120,55,65,45.80%,54.20%,0,0.00%,5,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100082,202,6385,Independent school,691,310,381,44.90%,55.10%,1,0.10%,83,12.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100084,202,6387,Independent school,227,134,93,59.00%,41.00%,4,1.80%,80,35.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100087,202,6392,Independent school,195,96,99,49.20%,50.80%,0,0.00%,4,2.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100090,202,6395,Independent school,168,80,88,47.60%,52.40%,54,32.10%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100091,202,7008,State-funded special school,38,23,15,60.50%,39.50%,38,100.00%,0,0.00%,38,0,0,100.00%,0.00%,0.00%,18,17,32,53.10% +100092,202,7137,State-funded special school,41,8,33,19.50%,80.50%,41,100.00%,0,0.00%,5,36,0,12.20%,87.80%,0.00%,33,36,41,87.80% +100096,202,7205,State-funded special school,261,64,197,24.50%,75.50%,261,100.00%,0,0.00%,117,144,0,44.80%,55.20%,0.00%,135,122,223,54.70% +100097,203,1001,State-funded nursery,156,78,78,50.00%,50.00%,1,0.60%,25,16.00%,74,81,1,47.40%,51.90%,0.60%,22,0,0,0.00% +100098,203,1006,State-funded nursery,171,95,76,55.60%,44.40%,0,0.00%,57,33.30%,37,119,15,21.60%,69.60%,8.80%,35,0,0,0.00% +100099,203,1016,State-funded nursery,120,51,69,42.50%,57.50%,3,2.50%,23,19.20%,55,65,0,45.80%,54.20%,0.00%,21,0,0,0.00% +100102,203,1022,State-funded nursery,162,85,77,52.50%,47.50%,0,0.00%,24,14.80%,44,113,5,27.20%,69.80%,3.10%,30,0,0,0.00% +100103,203,1101,State-funded AP school,166,64,102,38.60%,61.40%,64,38.60%,101,60.80%,11,155,0,6.60%,93.40%,0.00%,39,95,145,65.50% +100113,203,2028,State-funded primary,886,418,468,47.20%,52.80%,25,2.80%,126,14.20%,477,398,11,53.80%,44.90%,1.20%,162,170,809,21.00% +100114,203,2071,State-funded primary,398,188,210,47.20%,52.80%,5,1.30%,80,20.10%,245,146,7,61.60%,36.70%,1.80%,141,148,371,39.90% +100115,203,2106,State-funded primary,226,92,134,40.70%,59.30%,14,6.20%,57,25.20%,110,112,4,48.70%,49.60%,1.80%,79,72,196,36.70% +100120,203,2174,State-funded primary,398,180,218,45.20%,54.80%,3,0.80%,62,15.60%,123,273,2,30.90%,68.60%,0.50%,174,168,364,46.20% +100125,203,2228,State-funded primary,319,159,160,49.80%,50.20%,9,2.80%,100,31.30%,146,173,0,45.80%,54.20%,0.00%,124,130,297,43.80% +100126,203,2242,State-funded primary,263,137,126,52.10%,47.90%,7,2.70%,32,12.20%,130,133,0,49.40%,50.60%,0.00%,91,95,243,39.10% +100127,203,2258,State-funded primary,436,231,205,53.00%,47.00%,14,3.20%,54,12.40%,105,330,1,24.10%,75.70%,0.20%,42,47,405,11.60% +100129,203,2271,State-funded primary,373,183,190,49.10%,50.90%,8,2.10%,69,18.50%,125,248,0,33.50%,66.50%,0.00%,138,138,341,40.50% +100131,203,2299,State-funded primary,386,184,202,47.70%,52.30%,9,2.30%,83,21.50%,103,283,0,26.70%,73.30%,0.00%,146,151,363,41.60% +100134,203,2325,State-funded primary,785,373,412,47.50%,52.50%,14,1.80%,121,15.40%,215,569,1,27.40%,72.50%,0.10%,193,196,744,26.30% +100136,203,2353,State-funded primary,400,204,196,51.00%,49.00%,19,4.80%,105,26.30%,105,295,0,26.30%,73.80%,0.00%,161,157,373,42.10% +100137,203,2410,State-funded primary,226,110,116,48.70%,51.30%,5,2.20%,57,25.20%,95,129,2,42.00%,57.10%,0.90%,38,37,205,18.00% +100140,203,2471,State-funded primary,957,465,492,48.60%,51.40%,19,2.00%,238,24.90%,217,733,7,22.70%,76.60%,0.70%,270,275,881,31.20% +100141,203,2552,State-funded primary,429,209,220,48.70%,51.30%,4,0.90%,53,12.40%,133,289,7,31.00%,67.40%,1.60%,63,72,392,18.40% +100142,203,2598,State-funded primary,202,109,93,54.00%,46.00%,6,3.00%,23,11.40%,72,130,0,35.60%,64.40%,0.00%,64,66,189,34.90% +100146,203,2662,State-funded primary,446,231,215,51.80%,48.20%,19,4.30%,36,8.10%,75,371,0,16.80%,83.20%,0.00%,87,90,410,22.00% +100149,203,2798,State-funded primary,438,230,208,52.50%,47.50%,9,2.10%,59,13.50%,67,371,0,15.30%,84.70%,0.00%,95,95,402,23.60% +100150,203,2801,State-funded primary,428,192,236,44.90%,55.10%,18,4.20%,120,28.00%,131,297,0,30.60%,69.40%,0.00%,173,177,405,43.70% +100152,203,2813,State-funded primary,365,193,172,52.90%,47.10%,9,2.50%,114,31.20%,115,248,2,31.50%,67.90%,0.50%,171,170,340,50.00% +100155,203,2877,State-funded primary,461,230,231,49.90%,50.10%,11,2.40%,78,16.90%,289,172,0,62.70%,37.30%,0.00%,158,164,401,40.90% +100158,203,2900,State-funded primary,775,364,411,47.00%,53.00%,6,0.80%,75,9.70%,493,276,6,63.60%,35.60%,0.80%,208,224,729,30.70% +100159,203,2901,State-funded primary,357,148,209,41.50%,58.50%,4,1.10%,70,19.60%,98,259,0,27.50%,72.50%,0.00%,165,167,331,50.50% +100162,203,2915,State-funded primary,222,122,100,55.00%,45.00%,7,3.20%,27,12.20%,85,136,1,38.30%,61.30%,0.50%,43,46,204,22.50% +100163,203,2916,State-funded primary,397,199,198,50.10%,49.90%,8,2.00%,66,16.60%,172,225,0,43.30%,56.70%,0.00%,95,103,338,30.50% +100164,203,2917,State-funded primary,432,215,217,49.80%,50.20%,14,3.20%,42,9.70%,114,318,0,26.40%,73.60%,0.00%,118,122,385,31.70% +100165,203,3322,State-funded primary,178,96,82,53.90%,46.10%,3,1.70%,28,15.70%,52,126,0,29.20%,70.80%,0.00%,73,74,178,41.60% +100166,203,3331,State-funded primary,209,104,105,49.80%,50.20%,7,3.30%,32,15.30%,35,174,0,16.70%,83.30%,0.00%,29,32,209,15.30% +100167,203,3338,State-funded primary,457,216,241,47.30%,52.70%,16,3.50%,83,18.20%,84,373,0,18.40%,81.60%,0.00%,50,53,421,12.60% +100168,203,3382,State-funded primary,415,199,216,48.00%,52.00%,10,2.40%,33,8.00%,93,322,0,22.40%,77.60%,0.00%,88,100,415,24.10% +100169,203,3481,State-funded primary,161,83,78,51.60%,48.40%,4,2.50%,25,15.50%,56,105,0,34.80%,65.20%,0.00%,75,80,161,49.70% +100170,203,3500,State-funded primary,297,148,149,49.80%,50.20%,6,2.00%,48,16.20%,85,212,0,28.60%,71.40%,0.00%,92,92,275,33.50% +100171,203,3526,State-funded secondary,1708,834,874,48.80%,51.20%,30,1.80%,257,15.00%,880,818,10,51.50%,47.90%,0.60%,681,687,1509,45.50% +100173,203,3561,State-funded primary,337,161,176,47.80%,52.20%,4,1.20%,43,12.80%,148,189,0,43.90%,56.10%,0.00%,84,87,306,28.40% +100174,203,3577,State-funded primary,217,126,91,58.10%,41.90%,5,2.30%,28,12.90%,62,155,0,28.60%,71.40%,0.00%,88,87,193,45.10% +100175,203,3585,State-funded primary,205,97,108,47.30%,52.70%,2,1.00%,19,9.30%,25,177,3,12.20%,86.30%,1.50%,47,50,205,24.40% +100176,203,3604,State-funded primary,184,88,96,47.80%,52.20%,1,0.50%,16,8.70%,36,148,0,19.60%,80.40%,0.00%,42,44,184,23.90% +100177,203,3632,State-funded primary,429,229,200,53.40%,46.60%,7,1.60%,37,8.60%,115,314,0,26.80%,73.20%,0.00%,116,122,387,31.50% +100178,203,3657,State-funded primary,152,74,78,48.70%,51.30%,4,2.60%,15,9.90%,92,60,0,60.50%,39.50%,0.00%,46,45,137,32.80% +100179,203,3662,State-funded primary,177,81,96,45.80%,54.20%,3,1.70%,20,11.30%,45,132,0,25.40%,74.60%,0.00%,67,73,177,41.20% +100180,203,3666,State-funded primary,197,96,101,48.70%,51.30%,2,1.00%,40,20.30%,112,85,0,56.90%,43.10%,0.00%,37,39,183,21.30% +100181,203,3668,State-funded primary,220,119,101,54.10%,45.90%,7,3.20%,28,12.70%,35,184,1,15.90%,83.60%,0.50%,54,58,191,30.40% +100182,203,4077,State-funded secondary,1227,1178,49,96.00%,4.00%,11,0.90%,174,14.20%,256,966,5,20.90%,78.70%,0.40%,245,246,976,25.20% +100183,203,4130,State-funded secondary,1494,905,589,60.60%,39.40%,45,3.00%,233,15.60%,848,646,0,56.80%,43.20%,0.00%,463,498,1206,41.30% +100190,203,4294,State-funded secondary,2110,1003,1107,47.50%,52.50%,119,5.60%,409,19.40%,364,1727,19,17.30%,81.80%,0.90%,420,417,1348,30.90% +100193,203,4682,State-funded secondary,631,631,0,100.00%,0.00%,6,1.00%,48,7.60%,105,511,15,16.60%,81.00%,2.40%,111,164,631,26.00% +100198,203,6065,Independent school,339,137,202,40.40%,59.60%,1,0.30%,36,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100199,203,6114,Independent school,384,199,185,51.80%,48.20%,0,0.00%,35,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100200,203,6169,Independent school,179,66,113,36.90%,63.10%,122,68.20%,10,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100201,203,6170,Independent school,212,100,112,47.20%,52.80%,2,0.90%,43,20.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100202,203,6293,Independent school,1280,563,717,44.00%,56.00%,6,0.50%,290,22.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100203,209,6294,Independent school,126,55,71,43.70%,56.30%,0,0.00%,2,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100204,203,7118,State-funded special school,40,0,40,0.00%,100.00%,40,100.00%,0,0.00%,1,39,0,2.50%,97.50%,0.00%,19,29,40,72.50% +100212,204,1008,State-funded nursery,91,43,48,47.30%,52.70%,3,3.30%,0,0.00%,39,52,0,42.90%,57.10%,0.00%,9,0,0,0.00% +100213,204,1051,State-funded nursery,121,60,61,49.60%,50.40%,3,2.50%,38,31.40%,74,47,0,61.20%,38.80%,0.00%,53,0,0,0.00% +100218,204,2048,State-funded primary,452,228,224,50.40%,49.60%,28,6.20%,66,14.60%,203,249,0,44.90%,55.10%,0.00%,205,201,398,50.50% +100221,204,2120,State-funded primary,134,66,68,49.30%,50.70%,10,7.50%,23,17.20%,43,89,2,32.10%,66.40%,1.50%,46,46,130,35.40% +100223,204,2150,State-funded primary,450,231,219,51.30%,48.70%,22,4.90%,54,12.00%,193,257,0,42.90%,57.10%,0.00%,177,179,424,42.20% +100224,204,2155,State-funded primary,127,77,50,60.60%,39.40%,10,7.90%,30,23.60%,53,74,0,41.70%,58.30%,0.00%,80,79,115,68.70% +100225,204,2238,State-funded primary,273,122,151,44.70%,55.30%,24,8.80%,41,15.00%,86,187,0,31.50%,68.50%,0.00%,122,100,184,54.30% +100229,204,2376,State-funded primary,398,167,231,42.00%,58.00%,8,2.00%,40,10.10%,68,330,0,17.10%,82.90%,0.00%,121,119,368,32.30% +100230,204,2388,State-funded primary,431,208,223,48.30%,51.70%,20,4.60%,80,18.60%,226,205,0,52.40%,47.60%,0.00%,125,119,401,29.70% +100231,204,2421,State-funded primary,658,326,332,49.50%,50.50%,36,5.50%,74,11.20%,119,539,0,18.10%,81.90%,0.00%,150,148,608,24.30% +100232,204,2431,State-funded primary,455,222,233,48.80%,51.20%,24,5.30%,122,26.80%,275,180,0,60.40%,39.60%,0.00%,215,212,378,56.10% +100234,204,2450,State-funded primary,628,316,312,50.30%,49.70%,16,2.50%,125,19.90%,320,307,1,51.00%,48.90%,0.20%,324,316,583,54.20% +100235,204,2487,State-funded primary,420,208,212,49.50%,50.50%,38,9.00%,78,18.60%,214,206,0,51.00%,49.00%,0.00%,155,154,390,39.50% +100236,204,2489,State-funded primary,264,133,131,50.40%,49.60%,14,5.30%,49,18.60%,202,62,0,76.50%,23.50%,0.00%,126,123,242,50.80% +100239,204,2532,State-funded primary,221,121,100,54.80%,45.20%,10,4.50%,21,9.50%,147,74,0,66.50%,33.50%,0.00%,93,93,198,47.00% +100240,204,2539,State-funded primary,412,202,210,49.00%,51.00%,10,2.40%,58,14.10%,204,208,0,49.50%,50.50%,0.00%,171,170,371,45.80% +100241,204,2545,State-funded primary,471,231,240,49.00%,51.00%,14,3.00%,56,11.90%,188,283,0,39.90%,60.10%,0.00%,132,127,415,30.60% +100242,204,2564,State-funded primary,370,177,193,47.80%,52.20%,9,2.40%,78,21.10%,209,161,0,56.50%,43.50%,0.00%,162,159,339,46.90% +100243,204,2592,State-funded primary,206,95,111,46.10%,53.90%,13,6.30%,54,26.20%,123,83,0,59.70%,40.30%,0.00%,118,108,184,58.70% +100244,204,2615,State-funded primary,290,153,137,52.80%,47.20%,26,9.00%,71,24.50%,150,140,0,51.70%,48.30%,0.00%,139,141,273,51.60% +100245,204,2636,State-funded primary,418,206,212,49.30%,50.70%,50,12.00%,56,13.40%,120,298,0,28.70%,71.30%,0.00%,205,200,387,51.70% +100248,204,2654,State-funded primary,667,320,347,48.00%,52.00%,34,5.10%,73,10.90%,406,261,0,60.90%,39.10%,0.00%,332,316,586,53.90% +100250,204,2779,State-funded primary,225,123,102,54.70%,45.30%,12,5.30%,37,16.40%,142,83,0,63.10%,36.90%,0.00%,116,118,202,58.40% +100251,204,2795,State-funded primary,226,100,126,44.20%,55.80%,17,7.50%,55,24.30%,120,106,0,53.10%,46.90%,0.00%,101,99,213,46.50% +100252,204,2856,State-funded primary,206,83,123,40.30%,59.70%,8,3.90%,20,9.70%,75,131,0,36.40%,63.60%,0.00%,36,34,187,18.20% +100253,204,2859,State-funded primary,426,218,208,51.20%,48.80%,18,4.20%,53,12.40%,165,260,1,38.70%,61.00%,0.20%,99,100,394,25.40% +100254,204,2860,State-funded primary,221,104,117,47.10%,52.90%,24,10.90%,36,16.30%,110,111,0,49.80%,50.20%,0.00%,95,89,199,44.70% +100255,204,2861,State-funded primary,172,81,91,47.10%,52.90%,8,4.70%,22,12.80%,67,105,0,39.00%,61.00%,0.00%,85,84,162,51.90% +100256,204,2862,State-funded primary,191,101,90,52.90%,47.10%,9,4.70%,33,17.30%,103,88,0,53.90%,46.10%,0.00%,72,76,176,43.20% +100257,204,2863,State-funded primary,212,98,114,46.20%,53.80%,11,5.20%,28,13.20%,159,52,1,75.00%,24.50%,0.50%,75,71,195,36.40% +100258,204,2864,State-funded primary,467,226,241,48.40%,51.60%,15,3.20%,51,10.90%,92,375,0,19.70%,80.30%,0.00%,101,100,410,24.40% +100259,204,2865,State-funded primary,210,104,106,49.50%,50.50%,8,3.80%,17,8.10%,115,95,0,54.80%,45.20%,0.00%,79,77,187,41.20% +100260,204,2872,State-funded primary,296,150,146,50.70%,49.30%,7,2.40%,73,24.70%,166,130,0,56.10%,43.90%,0.00%,131,122,261,46.70% +100261,204,2896,State-funded primary,261,126,135,48.30%,51.70%,9,3.40%,52,19.90%,158,103,0,60.50%,39.50%,0.00%,153,140,222,63.10% +100263,204,3358,State-funded primary,270,129,141,47.80%,52.20%,14,5.20%,43,15.90%,86,184,0,31.90%,68.10%,0.00%,117,106,217,48.80% +100264,204,3371,State-funded primary,195,91,104,46.70%,53.30%,6,3.10%,23,11.80%,40,153,2,20.50%,78.50%,1.00%,42,45,195,23.10% +100266,204,3458,State-funded primary,307,158,149,51.50%,48.50%,23,7.50%,49,16.00%,138,169,0,45.00%,55.00%,0.00%,161,158,278,56.80% +100267,204,3543,State-funded primary,163,81,82,49.70%,50.30%,6,3.70%,37,22.70%,68,95,0,41.70%,58.30%,0.00%,90,95,151,62.90% +100268,204,3553,State-funded primary,217,105,112,48.40%,51.60%,5,2.30%,20,9.20%,168,49,0,77.40%,22.60%,0.00%,106,93,189,49.20% +100269,204,3572,State-funded primary,196,109,87,55.60%,44.40%,6,3.10%,44,22.40%,45,151,0,23.00%,77.00%,0.00%,107,99,167,59.30% +100270,204,3616,State-funded primary,132,71,61,53.80%,46.20%,6,4.50%,48,36.40%,36,96,0,27.30%,72.70%,0.00%,73,70,121,57.90% +100271,204,3618,State-funded primary,135,70,65,51.90%,48.10%,5,3.70%,24,17.80%,47,88,0,34.80%,65.20%,0.00%,67,67,126,53.20% +100274,204,3659,State-funded primary,207,100,107,48.30%,51.70%,13,6.30%,40,19.30%,126,80,1,60.90%,38.60%,0.50%,142,127,180,70.60% +100275,204,3663,State-funded primary,112,57,55,50.90%,49.10%,7,6.30%,29,25.90%,55,57,0,49.10%,50.90%,0.00%,24,26,102,25.50% +100277,204,4283,State-funded secondary,1053,491,562,46.60%,53.40%,42,4.00%,205,19.50%,341,712,0,32.40%,67.60%,0.00%,464,463,937,49.40% +100279,204,4310,State-funded secondary,1708,761,947,44.60%,55.40%,73,4.30%,283,16.60%,405,1302,1,23.70%,76.20%,0.10%,479,471,1266,37.20% +100282,204,4641,State-funded secondary,576,555,21,96.40%,3.60%,6,1.00%,39,6.80%,309,267,0,53.60%,46.40%,0.00%,258,246,468,52.60% +100284,204,4697,State-funded secondary,893,362,531,40.50%,59.50%,35,3.90%,225,25.20%,335,558,0,37.50%,62.50%,0.00%,607,546,768,71.10% +100285,204,4714,State-funded secondary,1101,524,577,47.60%,52.40%,26,2.40%,184,16.70%,530,571,0,48.10%,51.90%,0.00%,557,503,876,57.40% +100287,204,6072,Independent school,196,0,196,0.00%,100.00%,4,2.00%,39,19.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100289,204,6233,Independent school,887,0,887,0.00%,100.00%,12,1.40%,81,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100291,204,6242,Independent school,721,721,0,100.00%,0.00%,8,1.10%,54,7.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100293,204,6296,Independent school,1211,1199,12,99.00%,1.00%,31,2.60%,87,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100294,204,6331,Independent school,642,0,642,0.00%,100.00%,25,3.90%,45,7.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100295,204,6337,Independent school,561,549,12,97.90%,2.10%,25,4.50%,91,16.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100296,204,6377,Independent school,245,0,245,0.00%,100.00%,12,4.90%,46,18.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100298,204,6385,Independent school,233,0,233,0.00%,100.00%,15,6.40%,45,19.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100299,204,6387,Independent school,154,0,154,0.00%,100.00%,5,3.20%,26,16.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100300,204,6388,Independent school,172,172,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100303,211,6385,Independent school,166,90,76,54.20%,45.80%,4,2.40%,24,14.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100307,204,7097,State-funded special school,139,37,102,26.60%,73.40%,139,100.00%,0,0.00%,11,128,0,7.90%,92.10%,0.00%,85,78,119,65.50% +100311,204,7161,State-funded special school,182,32,150,17.60%,82.40%,180,98.90%,2,1.10%,81,101,0,44.50%,55.50%,0.00%,109,108,165,65.50% +100312,204,7171,State-funded special school,156,50,106,32.10%,67.90%,156,100.00%,0,0.00%,84,72,0,53.80%,46.20%,0.00%,97,82,127,64.60% +100315,205,1034,State-funded nursery,128,62,66,48.40%,51.60%,2,1.60%,33,25.80%,47,81,0,36.70%,63.30%,0.00%,29,0,0,0.00% +100316,205,1039,State-funded nursery,86,49,37,57.00%,43.00%,3,3.50%,13,15.10%,37,49,0,43.00%,57.00%,0.00%,12,0,0,0.00% +100317,205,1056,State-funded nursery,52,30,22,57.70%,42.30%,0,0.00%,7,13.50%,42,10,0,80.80%,19.20%,0.00%,8,0,0,0.00% +100318,205,1059,State-funded nursery,67,27,40,40.30%,59.70%,0,0.00%,17,25.40%,38,29,0,56.70%,43.30%,0.00%,19,0,0,0.00% +100321,205,2002,State-funded primary,252,124,128,49.20%,50.80%,4,1.60%,17,6.70%,161,91,0,63.90%,36.10%,0.00%,90,94,227,41.40% +100322,205,2026,State-funded primary,195,87,108,44.60%,55.40%,11,5.60%,24,12.30%,110,85,0,56.40%,43.60%,0.00%,75,75,177,42.40% +100324,205,2061,State-funded primary,366,169,197,46.20%,53.80%,14,3.80%,39,10.70%,192,174,0,52.50%,47.50%,0.00%,142,149,342,43.60% +100326,205,2134,State-funded primary,217,118,99,54.40%,45.60%,24,11.10%,34,15.70%,97,120,0,44.70%,55.30%,0.00%,99,98,202,48.50% +100328,205,2223,State-funded primary,186,92,94,49.50%,50.50%,5,2.70%,33,17.70%,125,61,0,67.20%,32.80%,0.00%,80,82,161,50.90% +100331,205,2350,State-funded primary,186,86,100,46.20%,53.80%,4,2.20%,24,12.90%,94,91,1,50.50%,48.90%,0.50%,74,69,169,40.80% +100334,205,2408,State-funded primary,172,76,96,44.20%,55.80%,9,5.20%,16,9.30%,112,60,0,65.10%,34.90%,0.00%,80,83,172,48.30% +100335,205,2444,State-funded primary,237,121,116,51.10%,48.90%,13,5.50%,54,22.80%,101,136,0,42.60%,57.40%,0.00%,78,81,187,43.30% +100338,205,2555,State-funded primary,243,121,122,49.80%,50.20%,7,2.90%,46,18.90%,88,155,0,36.20%,63.80%,0.00%,134,130,222,58.60% +100340,205,2632,State-funded primary,363,195,168,53.70%,46.30%,11,3.00%,44,12.10%,236,125,2,65.00%,34.40%,0.60%,83,84,319,26.30% +100341,205,2660,State-funded primary,340,174,166,51.20%,48.80%,13,3.80%,122,35.90%,218,122,0,64.10%,35.90%,0.00%,183,185,315,58.70% +100344,205,3300,State-funded primary,200,107,93,53.50%,46.50%,3,1.50%,30,15.00%,76,124,0,38.00%,62.00%,0.00%,16,20,185,10.80% +100345,205,3354,State-funded primary,596,305,291,51.20%,48.80%,26,4.40%,53,8.90%,288,308,0,48.30%,51.70%,0.00%,79,81,566,14.30% +100346,205,3368,State-funded primary,207,110,97,53.10%,46.90%,5,2.40%,24,11.60%,64,143,0,30.90%,69.10%,0.00%,26,31,207,15.00% +100347,205,3378,State-funded primary,203,103,100,50.70%,49.30%,10,4.90%,18,8.90%,85,118,0,41.90%,58.10%,0.00%,43,45,203,22.20% +100349,205,3463,State-funded primary,352,191,161,54.30%,45.70%,13,3.70%,41,11.60%,51,301,0,14.50%,85.50%,0.00%,75,82,326,25.20% +100350,205,3529,State-funded primary,164,79,85,48.20%,51.80%,13,7.90%,15,9.10%,59,100,5,36.00%,61.00%,3.00%,84,82,151,54.30% +100351,205,3566,State-funded primary,192,92,100,47.90%,52.10%,10,5.20%,57,29.70%,83,109,0,43.20%,56.80%,0.00%,61,63,176,35.80% +100352,205,3578,State-funded primary,205,115,90,56.10%,43.90%,7,3.40%,24,11.70%,63,142,0,30.70%,69.30%,0.00%,24,25,205,12.20% +100353,205,3600,State-funded primary,439,239,200,54.40%,45.60%,11,2.50%,31,7.10%,172,267,0,39.20%,60.80%,0.00%,52,55,414,13.30% +100354,205,3602,State-funded primary,221,130,91,58.80%,41.20%,5,2.30%,24,10.90%,113,107,1,51.10%,48.40%,0.50%,33,32,202,15.80% +100355,205,3645,State-funded primary,345,178,167,51.60%,48.40%,14,4.10%,45,13.00%,140,204,1,40.60%,59.10%,0.30%,107,124,325,38.20% +100357,205,3648,State-funded primary,139,72,67,51.80%,48.20%,5,3.60%,19,13.70%,53,86,0,38.10%,61.90%,0.00%,53,52,130,40.00% +100366,205,6011,Independent school,799,799,0,100.00%,0.00%,1,0.10%,53,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100368,205,6216,Independent school,319,319,0,100.00%,0.00%,0,0.00%,27,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100369,205,6291,Independent school,812,812,0,100.00%,0.00%,0,0.00%,106,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100370,205,6306,Independent school,1439,720,719,50.00%,50.00%,7,0.50%,347,24.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100371,205,6359,Independent school,252,131,121,52.00%,48.00%,0,0.00%,24,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100372,205,6382,Independent school,83,38,45,45.80%,54.20%,0,0.00%,4,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100373,205,6384,Independent school,416,211,205,50.70%,49.30%,0,0.00%,21,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100375,205,6386,Independent school,119,48,71,40.30%,59.70%,0,0.00%,5,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100379,205,7153,State-funded special school,113,46,67,40.70%,59.30%,113,100.00%,0,0.00%,17,94,2,15.00%,83.20%,1.80%,64,68,113,60.20% +100381,205,7203,State-funded special school,70,30,40,42.90%,57.10%,70,100.00%,0,0.00%,42,28,0,60.00%,40.00%,0.00%,44,37,58,63.80% +100382,205,7204,State-funded special school,138,22,116,15.90%,84.10%,138,100.00%,0,0.00%,31,107,0,22.50%,77.50%,0.00%,84,110,138,79.70% +100384,206,1009,State-funded nursery,89,41,48,46.10%,53.90%,0,0.00%,21,23.60%,49,40,0,55.10%,44.90%,0.00%,24,0,0,0.00% +100385,206,1033,State-funded nursery,93,50,43,53.80%,46.20%,0,0.00%,15,16.10%,35,58,0,37.60%,62.40%,0.00%,18,0,0,0.00% +100386,206,1047,State-funded nursery,110,58,52,52.70%,47.30%,0,0.00%,0,0.00%,27,82,1,24.50%,74.50%,0.90%,20,0,0,0.00% +100388,206,1101,State-funded AP school,16,1,15,6.30%,93.80%,8,50.00%,8,50.00%,3,13,0,18.80%,81.30%,0.00%,13,14,16,87.50% +100391,206,1104,State-funded AP school,42,13,29,31.00%,69.00%,8,19.00%,34,81.00%,0,42,0,0.00%,100.00%,0.00%,28,35,42,83.30% +100397,206,2015,State-funded primary,505,266,239,52.70%,47.30%,15,3.00%,70,13.90%,198,307,0,39.20%,60.80%,0.00%,122,131,414,31.60% +100401,206,2128,State-funded primary,143,65,78,45.50%,54.50%,17,11.90%,17,11.90%,68,75,0,47.60%,52.40%,0.00%,63,64,134,47.80% +100402,206,2166,State-funded primary,282,124,158,44.00%,56.00%,12,4.30%,24,8.50%,95,187,0,33.70%,66.30%,0.00%,76,75,260,28.80% +100403,206,2170,State-funded primary,389,193,196,49.60%,50.40%,19,4.90%,43,11.10%,266,123,0,68.40%,31.60%,0.00%,210,220,340,64.70% +100405,206,2251,State-funded primary,225,118,107,52.40%,47.60%,8,3.60%,37,16.40%,87,138,0,38.70%,61.30%,0.00%,43,39,207,18.80% +100406,206,2261,State-funded primary,421,210,211,49.90%,50.10%,15,3.60%,161,38.20%,224,197,0,53.20%,46.80%,0.00%,177,167,389,42.90% +100407,206,2279,State-funded primary,302,136,166,45.00%,55.00%,5,1.70%,41,13.60%,89,213,0,29.50%,70.50%,0.00%,108,111,276,40.20% +100408,206,2282,State-funded primary,369,195,174,52.80%,47.20%,11,3.00%,62,16.80%,119,250,0,32.20%,67.80%,0.00%,188,159,273,58.20% +100411,206,2379,State-funded primary,321,156,165,48.60%,51.40%,70,21.80%,73,22.70%,112,209,0,34.90%,65.10%,0.00%,149,159,294,54.10% +100415,206,2429,State-funded primary,428,214,214,50.00%,50.00%,21,4.90%,86,20.10%,210,218,0,49.10%,50.90%,0.00%,198,185,332,55.70% +100418,206,2455,State-funded primary,331,173,158,52.30%,47.70%,9,2.70%,52,15.70%,220,111,0,66.50%,33.50%,0.00%,169,169,283,59.70% +100422,206,2515,State-funded primary,231,102,129,44.20%,55.80%,15,6.50%,57,24.70%,106,125,0,45.90%,54.10%,0.00%,82,87,183,47.50% +100425,206,2596,State-funded primary,457,250,207,54.70%,45.30%,20,4.40%,63,13.80%,149,302,6,32.60%,66.10%,1.30%,178,182,409,44.50% +100426,206,2624,State-funded primary,151,68,83,45.00%,55.00%,5,3.30%,18,11.90%,57,94,0,37.70%,62.30%,0.00%,78,78,137,56.90% +100428,206,2646,State-funded primary,234,118,116,50.40%,49.60%,6,2.60%,38,16.20%,137,97,0,58.50%,41.50%,0.00%,137,119,189,63.00% +100429,206,2666,State-funded primary,453,223,230,49.20%,50.80%,12,2.60%,48,10.60%,102,350,1,22.50%,77.30%,0.20%,67,62,414,15.00% +100430,206,2803,State-funded primary,435,197,238,45.30%,54.70%,21,4.80%,46,10.60%,104,331,0,23.90%,76.10%,0.00%,176,173,388,44.60% +100431,206,2805,State-funded primary,250,119,131,47.60%,52.40%,10,4.00%,55,22.00%,134,116,0,53.60%,46.40%,0.00%,102,105,208,50.50% +100432,206,2809,State-funded primary,403,184,219,45.70%,54.30%,24,6.00%,38,9.40%,124,279,0,30.80%,69.20%,0.00%,147,157,378,41.50% +100434,206,2850,State-funded primary,324,137,187,42.30%,57.70%,21,6.50%,58,17.90%,73,251,0,22.50%,77.50%,0.00%,119,123,246,50.00% +100437,206,3384,State-funded primary,440,195,245,44.30%,55.70%,17,3.90%,42,9.50%,224,216,0,50.90%,49.10%,0.00%,208,198,391,50.60% +100438,206,3456,State-funded primary,250,126,124,50.40%,49.60%,14,5.60%,68,27.20%,132,118,0,52.80%,47.20%,0.00%,152,147,229,64.20% +100439,206,3465,State-funded primary,219,105,114,47.90%,52.10%,8,3.70%,48,21.90%,72,147,0,32.90%,67.10%,0.00%,104,94,183,51.40% +100440,206,3471,State-funded primary,196,92,104,46.90%,53.10%,7,3.60%,38,19.40%,45,150,1,23.00%,76.50%,0.50%,54,64,196,32.70% +100441,206,3483,State-funded primary,417,197,220,47.20%,52.80%,5,1.20%,32,7.70%,120,297,0,28.80%,71.20%,0.00%,115,117,375,31.20% +100442,206,3488,State-funded primary,132,60,72,45.50%,54.50%,12,9.10%,14,10.60%,22,108,2,16.70%,81.80%,1.50%,61,62,132,47.00% +100443,206,3495,State-funded primary,227,119,108,52.40%,47.60%,9,4.00%,35,15.40%,97,130,0,42.70%,57.30%,0.00%,99,101,203,49.80% +100444,206,3501,State-funded primary,224,118,106,52.70%,47.30%,17,7.60%,74,33.00%,63,161,0,28.10%,71.90%,0.00%,115,107,194,55.20% +100446,206,3527,State-funded primary,156,84,72,53.80%,46.20%,1,0.60%,26,16.70%,58,98,0,37.20%,62.80%,0.00%,75,100,156,64.10% +100447,206,3575,State-funded primary,213,113,100,53.10%,46.90%,5,2.30%,42,19.70%,84,129,0,39.40%,60.60%,0.00%,104,105,189,55.60% +100448,206,3606,State-funded primary,181,85,96,47.00%,53.00%,7,3.90%,29,16.00%,53,128,0,29.30%,70.70%,0.00%,98,99,181,54.70% +100449,206,3631,State-funded primary,424,218,206,51.40%,48.60%,18,4.20%,67,15.80%,188,236,0,44.30%,55.70%,0.00%,113,109,392,27.80% +100450,206,3633,State-funded primary,251,122,129,48.60%,51.40%,8,3.20%,51,20.30%,116,135,0,46.20%,53.80%,0.00%,144,142,231,61.50% +100451,206,3643,State-funded primary,100,44,56,44.00%,56.00%,2,2.00%,32,32.00%,35,65,0,35.00%,65.00%,0.00%,62,61,93,65.60% +100453,206,4112,State-funded secondary,381,168,213,44.10%,55.90%,34,8.90%,67,17.60%,124,257,0,32.50%,67.50%,0.00%,262,283,381,74.30% +100455,206,4307,State-funded secondary,767,767,0,100.00%,0.00%,12,1.60%,126,16.40%,424,343,0,55.30%,44.70%,0.00%,374,361,675,53.50% +100457,206,4324,State-funded secondary,884,884,0,100.00%,0.00%,28,3.20%,155,17.50%,486,378,20,55.00%,42.80%,2.30%,429,495,884,56.00% +100458,206,4614,State-funded secondary,1106,55,1051,5.00%,95.00%,38,3.40%,202,18.30%,311,795,0,28.10%,71.90%,0.00%,413,401,871,46.00% +100459,206,4651,State-funded secondary,515,0,515,0.00%,100.00%,16,3.10%,51,9.90%,320,173,22,62.10%,33.60%,4.30%,223,202,406,49.80% +100462,206,6299,Independent school,60,15,45,25.00%,75.00%,0,0.00%,9,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100463,201,6354,Independent school,253,119,134,47.00%,53.00%,0,0.00%,24,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100467,206,7030,State-funded special school,84,38,46,45.20%,54.80%,84,100.00%,0,0.00%,42,42,0,50.00%,50.00%,0.00%,40,31,60,51.70% +100469,206,7146,State-funded special school,139,48,91,34.50%,65.50%,138,99.30%,1,0.70%,38,101,0,27.30%,72.70%,0.00%,95,78,106,73.60% +100472,207,1010,State-funded nursery,43,25,18,58.10%,41.90%,2,4.70%,15,34.90%,13,30,0,30.20%,69.80%,0.00%,21,0,0,0.00% +100473,207,1021,State-funded nursery,47,27,20,57.40%,42.60%,0,0.00%,20,42.60%,31,16,0,66.00%,34.00%,0.00%,17,0,1,0.00% +100474,207,1053,State-funded nursery,66,35,31,53.00%,47.00%,2,3.00%,15,22.70%,42,24,0,63.60%,36.40%,0.00%,5,0,0,0.00% +100475,207,1054,State-funded nursery,45,18,27,40.00%,60.00%,2,4.40%,11,24.40%,19,26,0,42.20%,57.80%,0.00%,23,0,0,0.00% +100477,207,2021,State-funded primary,181,87,94,48.10%,51.90%,10,5.50%,30,16.60%,138,43,0,76.20%,23.80%,0.00%,108,102,165,61.80% +100478,207,2030,State-funded primary,356,154,202,43.30%,56.70%,27,7.60%,74,20.80%,116,240,0,32.60%,67.40%,0.00%,194,186,332,56.00% +100479,207,2050,State-funded primary,324,153,171,47.20%,52.80%,14,4.30%,31,9.60%,193,130,1,59.60%,40.10%,0.30%,108,106,300,35.30% +100480,207,2060,State-funded primary,431,211,220,49.00%,51.00%,16,3.70%,44,10.20%,261,170,0,60.60%,39.40%,0.00%,45,49,401,12.20% +100481,207,2121,State-funded primary,464,218,246,47.00%,53.00%,9,1.90%,56,12.10%,276,188,0,59.50%,40.50%,0.00%,116,115,418,27.50% +100482,207,2229,State-funded primary,417,212,205,50.80%,49.20%,25,6.00%,66,15.80%,335,82,0,80.30%,19.70%,0.00%,41,43,417,10.30% +100483,207,2399,State-funded primary,408,196,212,48.00%,52.00%,28,6.90%,37,9.10%,201,207,0,49.30%,50.70%,0.00%,129,125,353,35.40% +100485,207,2452,State-funded primary,249,126,123,50.60%,49.40%,16,6.40%,22,8.80%,93,154,2,37.30%,61.80%,0.80%,135,123,221,55.70% +100486,207,2456,State-funded primary,180,87,93,48.30%,51.70%,7,3.90%,12,6.70%,87,93,0,48.30%,51.70%,0.00%,77,73,157,46.50% +100487,207,2538,State-funded primary,321,146,175,45.50%,54.50%,13,4.00%,86,26.80%,221,100,0,68.80%,31.20%,0.00%,166,173,321,53.90% +100488,207,2594,State-funded primary,236,116,120,49.20%,50.80%,10,4.20%,36,15.30%,114,122,0,48.30%,51.70%,0.00%,88,81,210,38.60% +100489,207,3321,State-funded primary,203,107,96,52.70%,47.30%,16,7.90%,25,12.30%,43,160,0,21.20%,78.80%,0.00%,29,32,203,15.80% +100490,207,3356,State-funded primary,188,100,88,53.20%,46.80%,16,8.50%,28,14.90%,39,149,0,20.70%,79.30%,0.00%,61,64,188,34.00% +100491,207,3379,State-funded primary,211,91,120,43.10%,56.90%,5,2.40%,27,12.80%,86,125,0,40.80%,59.20%,0.00%,16,18,211,8.50% +100492,207,3402,State-funded primary,201,108,93,53.70%,46.30%,14,7.00%,30,14.90%,120,80,1,59.70%,39.80%,0.50%,98,89,178,50.00% +100493,207,3417,State-funded primary,183,82,101,44.80%,55.20%,6,3.30%,18,9.80%,73,110,0,39.90%,60.10%,0.00%,35,35,183,19.10% +100494,207,3437,State-funded primary,183,94,89,51.40%,48.60%,4,2.20%,29,15.80%,39,144,0,21.30%,78.70%,0.00%,82,84,170,49.40% +100495,207,3455,State-funded primary,159,76,83,47.80%,52.20%,7,4.40%,27,17.00%,97,62,0,61.00%,39.00%,0.00%,70,66,150,44.00% +100497,207,3504,State-funded primary,175,91,84,52.00%,48.00%,5,2.90%,14,8.00%,108,66,1,61.70%,37.70%,0.60%,25,26,175,14.90% +100498,207,3541,State-funded primary,156,68,88,43.60%,56.40%,3,1.90%,23,14.70%,126,30,0,80.80%,19.20%,0.00%,46,46,125,36.80% +100499,207,3542,State-funded primary,213,106,107,49.80%,50.20%,12,5.60%,29,13.60%,99,114,0,46.50%,53.50%,0.00%,114,103,192,53.60% +100500,207,3613,State-funded primary,210,104,106,49.50%,50.50%,13,6.20%,21,10.00%,67,140,3,31.90%,66.70%,1.40%,48,48,192,25.00% +100502,207,4681,State-funded secondary,637,255,382,40.00%,60.00%,20,3.10%,66,10.40%,365,262,10,57.30%,41.10%,1.60%,199,222,637,34.90% +100503,207,4801,State-funded secondary,797,367,430,46.00%,54.00%,48,6.00%,140,17.60%,453,344,0,56.80%,43.20%,0.00%,321,340,797,42.70% +100504,207,5200,State-funded primary,181,98,83,54.10%,45.90%,4,2.20%,14,7.70%,126,55,0,69.60%,30.40%,0.00%,18,18,181,9.90% +100505,207,5201,State-funded primary,235,116,119,49.40%,50.60%,10,4.30%,29,12.30%,89,146,0,37.90%,62.10%,0.00%,108,106,221,48.00% +100507,207,6003,Independent school,74,42,32,56.80%,43.20%,0,0.00%,9,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100508,207,6004,Independent school,288,288,0,100.00%,0.00%,0,0.00%,20,6.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100509,205,6392,Independent school,293,293,0,100.00%,0.00%,0,0.00%,10,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100510,207,6025,Independent school,218,143,75,65.60%,34.40%,0,0.00%,23,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100511,207,6026,Independent school,491,491,0,100.00%,0.00%,0,0.00%,124,25.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100513,207,6095,Independent school,117,48,69,41.00%,59.00%,23,19.70%,2,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100514,207,6096,Independent school,187,0,187,0.00%,100.00%,1,0.50%,37,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100516,207,6104,Independent school,74,0,74,0.00%,100.00%,0,0.00%,8,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100518,207,6188,Independent school,482,175,307,36.30%,63.70%,2,0.40%,73,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100519,207,6189,Independent school,358,0,358,0.00%,100.00%,0,0.00%,100,27.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100520,207,6193,Independent school,356,195,161,54.80%,45.20%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100521,207,6202,Independent school,138,138,0,100.00%,0.00%,2,1.40%,70,50.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100522,207,6213,Independent school,484,270,214,55.80%,44.20%,0,0.00%,33,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100523,313,6071,Independent school,81,12,69,14.80%,85.20%,2,2.50%,4,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100527,205,6399,Independent school,264,264,0,100.00%,0.00%,0,0.00%,69,26.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100528,936,6016,Independent school,384,0,384,0.00%,100.00%,4,1.00%,117,30.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100529,208,6004,Independent school,373,170,203,45.60%,54.40%,3,0.80%,60,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100530,212,6401,Independent school,751,348,403,46.30%,53.70%,0,0.00%,132,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100531,207,6303,Independent school,441,441,0,100.00%,0.00%,0,0.00%,25,5.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100532,207,6305,Independent school,404,200,204,49.50%,50.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100533,207,6316,Independent school,380,189,191,49.70%,50.30%,1,0.30%,47,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100534,207,6317,Independent school,376,198,178,52.70%,47.30%,0,0.00%,84,22.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100536,213,6389,Independent school,247,101,146,40.90%,59.10%,0,0.00%,52,21.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100537,207,6348,Independent school,250,115,135,46.00%,54.00%,0,0.00%,87,34.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100538,207,6350,Independent school,50,23,27,46.00%,54.00%,1,2.00%,14,28.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100539,207,6362,Independent school,160,90,70,56.30%,43.80%,8,5.00%,109,68.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100540,207,6363,Independent school,546,271,275,49.60%,50.40%,5,0.90%,157,28.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100541,213,6386,Independent school,222,82,140,36.90%,63.10%,10,4.50%,69,31.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100542,207,6383,Independent school,173,90,83,52.00%,48.00%,34,19.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100543,213,6390,Independent school,134,69,65,51.50%,48.50%,0,0.00%,17,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100544,201,6000,Independent school,365,163,202,44.70%,55.30%,0,0.00%,58,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100545,207,6387,Independent school,142,63,79,44.40%,55.60%,1,0.70%,2,1.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100547,207,6391,Independent school,3440,1728,1712,50.20%,49.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100550,208,1027,State-funded nursery,77,35,42,45.50%,54.50%,4,5.20%,26,33.80%,33,44,0,42.90%,57.10%,0.00%,32,0,0,0.00% +100551,208,1043,State-funded nursery,90,34,56,37.80%,62.20%,1,1.10%,13,14.40%,36,54,0,40.00%,60.00%,0.00%,21,0,0,0.00% +100552,208,1049,State-funded nursery,91,53,38,58.20%,41.80%,1,1.10%,8,8.80%,44,47,0,48.40%,51.60%,0.00%,35,0,0,0.00% +100553,208,1055,State-funded nursery,103,53,50,51.50%,48.50%,0,0.00%,25,24.30%,62,41,0,60.20%,39.80%,0.00%,41,0,0,0.00% +100554,208,1058,State-funded nursery,115,64,51,55.70%,44.30%,2,1.70%,24,20.90%,56,58,1,48.70%,50.40%,0.90%,25,0,0,0.00% +100556,208,2022,State-funded primary,221,126,95,57.00%,43.00%,6,2.70%,30,13.60%,86,134,1,38.90%,60.60%,0.50%,80,78,199,39.20% +100560,208,2115,State-funded primary,409,196,213,47.90%,52.10%,11,2.70%,56,13.70%,141,268,0,34.50%,65.50%,0.00%,175,172,385,44.70% +100564,208,2265,State-funded primary,640,333,307,52.00%,48.00%,15,2.30%,57,8.90%,363,272,5,56.70%,42.50%,0.80%,329,303,586,51.70% +100566,208,2292,State-funded primary,386,187,199,48.40%,51.60%,11,2.80%,39,10.10%,128,258,0,33.20%,66.80%,0.00%,150,142,348,40.80% +100567,208,2295,State-funded primary,790,389,401,49.20%,50.80%,18,2.30%,16,2.00%,365,425,0,46.20%,53.80%,0.00%,128,131,731,17.90% +100572,208,2331,State-funded primary,323,156,167,48.30%,51.70%,10,3.10%,25,7.70%,91,231,1,28.20%,71.50%,0.30%,104,119,302,39.40% +100574,208,2359,State-funded primary,519,254,265,48.90%,51.10%,9,1.70%,126,24.30%,195,323,1,37.60%,62.20%,0.20%,222,223,487,45.80% +100576,208,2371,State-funded primary,326,154,172,47.20%,52.80%,64,19.60%,87,26.70%,228,98,0,69.90%,30.10%,0.00%,174,160,288,55.60% +100577,208,2459,State-funded primary,501,242,259,48.30%,51.70%,13,2.60%,75,15.00%,162,339,0,32.30%,67.70%,0.00%,94,107,474,22.60% +100578,208,2504,State-funded primary,274,130,144,47.40%,52.60%,12,4.40%,50,18.20%,150,124,0,54.70%,45.30%,0.00%,122,120,251,47.80% +100582,208,2902,State-funded primary,440,202,238,45.90%,54.10%,11,2.50%,55,12.50%,240,200,0,54.50%,45.50%,0.00%,164,200,364,54.90% +100584,208,2575,State-funded primary,313,155,158,49.50%,50.50%,13,4.20%,49,15.70%,130,183,0,41.50%,58.50%,0.00%,139,129,285,45.30% +100585,208,2578,State-funded primary,426,219,207,51.40%,48.60%,18,4.20%,69,16.20%,249,177,0,58.50%,41.50%,0.00%,201,194,386,50.30% +100586,208,2591,State-funded primary,422,205,217,48.60%,51.40%,14,3.30%,65,15.40%,100,317,5,23.70%,75.10%,1.20%,64,65,390,16.70% +100588,208,2617,State-funded primary,227,113,114,49.80%,50.20%,4,1.80%,50,22.00%,153,74,0,67.40%,32.60%,0.00%,133,122,202,60.40% +100589,208,2626,State-funded primary,350,184,166,52.60%,47.40%,7,2.00%,41,11.70%,149,201,0,42.60%,57.40%,0.00%,95,97,319,30.40% +100590,208,2657,State-funded secondary,1548,753,795,48.60%,51.40%,45,2.90%,145,9.40%,816,731,1,52.70%,47.20%,0.10%,366,407,1443,28.20% +100591,208,2664,State-funded primary,475,190,285,40.00%,60.00%,103,21.70%,95,20.00%,299,176,0,62.90%,37.10%,0.00%,256,247,439,56.30% +100593,208,2783,State-funded primary,286,124,162,43.40%,56.60%,21,7.30%,38,13.30%,98,183,5,34.30%,64.00%,1.70%,110,114,257,44.40% +100595,208,2785,State-funded primary,334,167,167,50.00%,50.00%,13,3.90%,72,21.60%,162,168,4,48.50%,50.30%,1.20%,172,176,323,54.50% +100597,208,2794,State-funded primary,390,207,183,53.10%,46.90%,12,3.10%,48,12.30%,114,249,27,29.20%,63.80%,6.90%,116,122,368,33.20% +100598,208,2808,State-funded primary,387,179,208,46.30%,53.70%,45,11.60%,72,18.60%,226,161,0,58.40%,41.60%,0.00%,184,178,360,49.40% +100601,208,2836,State-funded primary,166,87,79,52.40%,47.60%,9,5.40%,38,22.90%,87,79,0,52.40%,47.60%,0.00%,117,115,162,71.00% +100602,208,5209,State-funded primary,1005,541,464,53.80%,46.20%,30,3.00%,124,12.30%,398,607,0,39.60%,60.40%,0.00%,210,214,960,22.30% +100604,208,2868,State-funded primary,224,126,98,56.30%,43.80%,7,3.10%,16,7.10%,118,106,0,52.70%,47.30%,0.00%,86,79,196,40.30% +100608,208,2895,State-funded primary,237,112,125,47.30%,52.70%,6,2.50%,30,12.70%,84,153,0,35.40%,64.60%,0.00%,56,56,208,26.90% +100609,208,3307,State-funded primary,326,169,157,51.80%,48.20%,22,6.70%,61,18.70%,140,179,7,42.90%,54.90%,2.10%,135,153,326,46.90% +100610,208,3324,State-funded primary,183,90,93,49.20%,50.80%,5,2.70%,27,14.80%,45,138,0,24.60%,75.40%,0.00%,76,78,181,43.10% +100612,208,3375,State-funded primary,183,91,92,49.70%,50.30%,7,3.80%,26,14.20%,34,149,0,18.60%,81.40%,0.00%,52,52,163,31.90% +100613,208,3403,State-funded primary,175,92,83,52.60%,47.40%,6,3.40%,32,18.30%,54,121,0,30.90%,69.10%,0.00%,66,79,175,45.10% +100614,208,3457,State-funded primary,141,80,61,56.70%,43.30%,4,2.80%,21,14.90%,67,74,0,47.50%,52.50%,0.00%,65,67,133,50.40% +100615,208,3466,State-funded primary,192,101,91,52.60%,47.40%,4,2.10%,32,16.70%,84,108,0,43.80%,56.30%,0.00%,93,96,180,53.30% +100616,208,3491,State-funded primary,176,102,74,58.00%,42.00%,5,2.80%,25,14.20%,29,147,0,16.50%,83.50%,0.00%,42,46,176,26.10% +100619,208,3502,State-funded primary,210,104,106,49.50%,50.50%,7,3.30%,26,12.40%,149,61,0,71.00%,29.00%,0.00%,108,101,184,54.90% +100620,208,3589,State-funded primary,189,86,103,45.50%,54.50%,6,3.20%,45,23.80%,63,126,0,33.30%,66.70%,0.00%,44,47,189,24.90% +100621,208,3596,State-funded primary,197,94,103,47.70%,52.30%,4,2.00%,40,20.30%,150,47,0,76.10%,23.90%,0.00%,116,112,179,62.60% +100622,208,3621,State-funded primary,242,140,102,57.90%,42.10%,14,5.80%,13,5.40%,121,120,1,50.00%,49.60%,0.40%,118,119,242,49.20% +100623,208,3641,State-funded primary,268,137,131,51.10%,48.90%,13,4.90%,58,21.60%,191,77,0,71.30%,28.70%,0.00%,124,128,263,48.70% +100624,208,4223,State-funded secondary,1065,544,521,51.10%,48.90%,40,3.80%,206,19.30%,362,699,4,34.00%,65.60%,0.40%,293,286,898,31.80% +100625,208,4321,State-funded secondary,845,411,434,48.60%,51.40%,42,5.00%,69,8.20%,388,457,0,45.90%,54.10%,0.00%,404,379,621,61.00% +100627,208,4509,State-funded secondary,606,282,324,46.50%,53.50%,24,4.00%,123,20.30%,310,296,0,51.20%,48.80%,0.00%,264,299,606,49.30% +100628,208,5200,State-funded primary,187,103,84,55.10%,44.90%,7,3.70%,28,15.00%,135,52,0,72.20%,27.80%,0.00%,84,109,187,58.30% +100629,208,5201,State-funded primary,266,131,135,49.20%,50.80%,9,3.40%,45,16.90%,200,66,0,75.20%,24.80%,0.00%,100,98,251,39.00% +100631,208,5203,State-funded primary,103,53,50,51.50%,48.50%,1,1.00%,5,4.90%,47,56,0,45.60%,54.40%,0.00%,41,36,87,41.40% +100632,208,5204,State-funded primary,397,196,201,49.40%,50.60%,8,2.00%,20,5.00%,292,105,0,73.60%,26.40%,0.00%,56,59,397,14.90% +100633,208,5205,State-funded primary,419,198,221,47.30%,52.70%,9,2.10%,45,10.70%,208,211,0,49.60%,50.40%,0.00%,67,67,387,17.30% +100634,208,5206,State-funded primary,226,112,114,49.60%,50.40%,7,3.10%,34,15.00%,95,129,2,42.00%,57.10%,0.90%,116,109,207,52.70% +100636,208,5208,State-funded primary,313,164,149,52.40%,47.60%,8,2.60%,41,13.10%,181,132,0,57.80%,42.20%,0.00%,88,91,298,30.50% +100637,208,5400,State-funded secondary,1122,1069,53,95.30%,4.70%,15,1.30%,64,5.70%,605,517,0,53.90%,46.10%,0.00%,313,324,803,40.30% +100638,208,5401,State-funded secondary,1205,560,645,46.50%,53.50%,45,3.70%,142,11.80%,473,732,0,39.30%,60.70%,0.00%,210,199,938,21.20% +100642,208,5405,State-funded secondary,570,1,569,0.20%,99.80%,44,7.70%,101,17.70%,225,344,1,39.50%,60.40%,0.20%,217,218,406,53.70% +100643,208,5950,State-funded special school,143,27,116,18.90%,81.10%,143,100.00%,0,0.00%,61,81,1,42.70%,56.60%,0.70%,107,108,127,85.00% +100644,208,6109,Independent school,311,146,165,46.90%,53.10%,9,2.90%,38,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100645,208,6151,Independent school,285,141,144,49.50%,50.50%,1,0.40%,34,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100648,208,6311,Independent school,877,877,0,100.00%,0.00%,4,0.50%,254,29.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100651,208,6384,Independent school,156,65,91,41.70%,58.30%,0,0.00%,14,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100654,208,7001,State-funded special school,155,36,119,23.20%,76.80%,155,100.00%,0,0.00%,45,110,0,29.00%,71.00%,0.00%,106,100,123,81.30% +100659,208,7115,State-funded special school,153,37,116,24.20%,75.80%,153,100.00%,0,0.00%,15,138,0,9.80%,90.20%,0.00%,86,83,116,71.60% +100667,209,1002,State-funded nursery,80,40,40,50.00%,50.00%,2,2.50%,28,35.00%,38,42,0,47.50%,52.50%,0.00%,10,0,2,0.00% +100668,209,1011,State-funded nursery,133,72,61,54.10%,45.90%,2,1.50%,22,16.50%,46,87,0,34.60%,65.40%,0.00%,3,0,0,0.00% +100671,209,2000,State-funded primary,419,207,212,49.40%,50.60%,13,3.10%,46,11.00%,114,305,0,27.20%,72.80%,0.00%,116,123,388,31.70% +100672,209,2023,State-funded primary,402,201,201,50.00%,50.00%,38,9.50%,58,14.40%,142,260,0,35.30%,64.70%,0.00%,145,156,375,41.60% +100673,209,2029,State-funded primary,229,110,119,48.00%,52.00%,4,1.70%,30,13.10%,116,113,0,50.70%,49.30%,0.00%,43,51,207,24.60% +100674,209,2068,State-funded primary,389,201,188,51.70%,48.30%,13,3.30%,70,18.00%,100,289,0,25.70%,74.30%,0.00%,67,72,389,18.50% +100676,209,2127,State-funded primary,652,327,325,50.20%,49.80%,30,4.60%,62,9.50%,196,456,0,30.10%,69.90%,0.00%,120,126,608,20.70% +100677,209,2148,State-funded primary,374,187,187,50.00%,50.00%,7,1.90%,54,14.40%,109,265,0,29.10%,70.90%,0.00%,69,72,348,20.70% +100678,209,2158,State-funded primary,330,162,168,49.10%,50.90%,8,2.40%,44,13.30%,152,178,0,46.10%,53.90%,0.00%,148,160,330,48.50% +100679,209,2163,State-funded primary,465,238,227,51.20%,48.80%,14,3.00%,45,9.70%,196,269,0,42.20%,57.80%,0.00%,104,118,415,28.40% +100680,209,2187,State-funded primary,402,202,200,50.20%,49.80%,3,0.70%,61,15.20%,127,275,0,31.60%,68.40%,0.00%,44,47,371,12.70% +100681,209,2197,State-funded primary,391,200,191,51.20%,48.80%,14,3.60%,101,25.80%,166,225,0,42.50%,57.50%,0.00%,153,156,347,45.00% +100683,209,2225,State-funded primary,379,179,200,47.20%,52.80%,8,2.10%,102,26.90%,99,279,1,26.10%,73.60%,0.30%,141,155,360,43.10% +100684,209,2259,State-funded primary,634,332,302,52.40%,47.60%,6,0.90%,63,9.90%,197,437,0,31.10%,68.90%,0.00%,86,89,603,14.80% +100685,209,2267,State-funded primary,212,129,83,60.80%,39.20%,11,5.20%,40,18.90%,93,118,1,43.90%,55.70%,0.50%,62,65,197,33.00% +100686,209,2289,State-funded primary,382,202,180,52.90%,47.10%,8,2.10%,51,13.40%,111,270,1,29.10%,70.70%,0.30%,112,123,351,35.00% +100687,209,2304,State-funded primary,636,304,332,47.80%,52.20%,15,2.40%,71,11.20%,310,291,35,48.70%,45.80%,5.50%,123,141,603,23.40% +100688,209,2307,State-funded primary,469,237,232,50.50%,49.50%,9,1.90%,90,19.20%,232,237,0,49.50%,50.50%,0.00%,111,133,439,30.30% +100689,209,2342,State-funded primary,405,216,189,53.30%,46.70%,9,2.20%,53,13.10%,137,266,2,33.80%,65.70%,0.50%,73,79,377,21.00% +100690,209,2347,State-funded primary,594,288,306,48.50%,51.50%,55,9.30%,96,16.20%,242,350,2,40.70%,58.90%,0.30%,195,213,562,37.90% +100691,209,2349,State-funded primary,393,201,192,51.10%,48.90%,12,3.10%,62,15.80%,243,150,0,61.80%,38.20%,0.00%,150,152,349,43.60% +100692,209,2374,State-funded primary,334,162,172,48.50%,51.50%,11,3.30%,80,24.00%,138,196,0,41.30%,58.70%,0.00%,138,146,300,48.70% +100693,209,2381,State-funded primary,449,215,234,47.90%,52.10%,8,1.80%,71,15.80%,142,302,5,31.60%,67.30%,1.10%,54,69,421,16.40% +100695,209,2390,State-funded primary,253,128,125,50.60%,49.40%,7,2.80%,38,15.00%,126,127,0,49.80%,50.20%,0.00%,117,121,233,51.90% +100696,209,2403,State-funded primary,388,191,197,49.20%,50.80%,8,2.10%,32,8.20%,184,203,1,47.40%,52.30%,0.30%,134,141,348,40.50% +100699,209,2491,State-funded primary,353,180,173,51.00%,49.00%,12,3.40%,71,20.10%,119,234,0,33.70%,66.30%,0.00%,115,134,320,41.90% +100700,209,2493,State-funded primary,492,247,245,50.20%,49.80%,20,4.10%,65,13.20%,180,312,0,36.60%,63.40%,0.00%,108,119,461,25.80% +100701,209,2529,State-funded primary,576,297,279,51.60%,48.40%,13,2.30%,98,17.00%,279,297,0,48.40%,51.60%,0.00%,165,176,531,33.10% +100703,209,2536,State-funded primary,644,336,308,52.20%,47.80%,11,1.70%,128,19.90%,220,424,0,34.20%,65.80%,0.00%,97,104,605,17.20% +100704,209,2570,State-funded primary,285,143,142,50.20%,49.80%,8,2.80%,47,16.50%,96,189,0,33.70%,66.30%,0.00%,25,30,285,10.50% +100705,209,2571,State-funded primary,294,152,142,51.70%,48.30%,2,0.70%,49,16.70%,67,227,0,22.80%,77.20%,0.00%,6,6,260,2.30% +100708,209,2606,State-funded primary,640,307,333,48.00%,52.00%,30,4.70%,98,15.30%,317,323,0,49.50%,50.50%,0.00%,159,171,602,28.40% +100709,209,2782,State-funded primary,609,283,326,46.50%,53.50%,11,1.80%,130,21.30%,191,418,0,31.40%,68.60%,0.00%,85,86,580,14.80% +100710,209,2811,State-funded primary,417,210,207,50.40%,49.60%,6,1.40%,52,12.50%,50,366,1,12.00%,87.80%,0.20%,58,70,388,18.00% +100711,209,2815,State-funded primary,405,194,211,47.90%,52.10%,4,1.00%,42,10.40%,145,260,0,35.80%,64.20%,0.00%,59,62,378,16.40% +100712,209,2818,State-funded primary,226,116,110,51.30%,48.70%,6,2.70%,29,12.80%,126,100,0,55.80%,44.20%,0.00%,96,100,226,44.20% +100713,209,2869,State-funded primary,425,216,209,50.80%,49.20%,11,2.60%,40,9.40%,135,290,0,31.80%,68.20%,0.00%,84,85,374,22.70% +100714,209,2870,State-funded primary,193,89,104,46.10%,53.90%,7,3.60%,39,20.20%,52,140,1,26.90%,72.50%,0.50%,29,30,193,15.50% +100715,209,2871,State-funded primary,211,113,98,53.60%,46.40%,8,3.80%,24,11.40%,69,142,0,32.70%,67.30%,0.00%,76,76,190,40.00% +100716,209,2878,State-funded primary,349,169,180,48.40%,51.60%,4,1.10%,57,16.30%,105,244,0,30.10%,69.90%,0.00%,59,65,319,20.40% +100717,209,2887,State-funded primary,227,102,125,44.90%,55.10%,8,3.50%,15,6.60%,97,129,1,42.70%,56.80%,0.40%,30,37,227,16.30% +100718,209,2911,State-funded primary,657,304,353,46.30%,53.70%,9,1.40%,74,11.30%,175,482,0,26.60%,73.40%,0.00%,69,86,603,14.30% +100719,209,3301,State-funded primary,232,112,120,48.30%,51.70%,6,2.60%,34,14.70%,55,177,0,23.70%,76.30%,0.00%,24,27,232,11.60% +100722,209,3344,State-funded primary,235,122,113,51.90%,48.10%,8,3.40%,36,15.30%,123,112,0,52.30%,47.70%,0.00%,53,54,209,25.80% +100723,209,3360,State-funded primary,183,85,98,46.40%,53.60%,8,4.40%,39,21.30%,56,127,0,30.60%,69.40%,0.00%,86,91,183,49.70% +100724,209,3374,State-funded primary,207,104,103,50.20%,49.80%,0,0.00%,7,3.40%,69,138,0,33.30%,66.70%,0.00%,40,44,207,21.30% +100725,209,3416,State-funded primary,210,103,107,49.00%,51.00%,11,5.20%,28,13.30%,104,106,0,49.50%,50.50%,0.00%,41,44,191,23.00% +100726,209,3420,State-funded primary,370,182,188,49.20%,50.80%,10,2.70%,47,12.70%,67,303,0,18.10%,81.90%,0.00%,44,47,370,12.70% +100727,209,3454,State-funded primary,187,97,90,51.90%,48.10%,9,4.80%,36,19.30%,80,107,0,42.80%,57.20%,0.00%,81,82,187,43.90% +100728,209,3472,State-funded primary,198,104,94,52.50%,47.50%,5,2.50%,22,11.10%,71,127,0,35.90%,64.10%,0.00%,45,48,198,24.20% +100729,209,3478,State-funded primary,172,90,82,52.30%,47.70%,7,4.10%,21,12.20%,75,97,0,43.60%,56.40%,0.00%,63,65,172,37.80% +100730,209,3518,State-funded primary,235,105,130,44.70%,55.30%,5,2.10%,60,25.50%,177,58,0,75.30%,24.70%,0.00%,90,91,205,44.40% +100731,209,3548,State-funded primary,204,97,107,47.50%,52.50%,5,2.50%,34,16.70%,16,188,0,7.80%,92.20%,0.00%,58,62,185,33.50% +100732,209,3588,State-funded primary,258,129,129,50.00%,50.00%,9,3.50%,25,9.70%,73,185,0,28.30%,71.70%,0.00%,65,71,227,31.30% +100733,209,3594,State-funded primary,217,109,108,50.20%,49.80%,5,2.30%,50,23.00%,99,118,0,45.60%,54.40%,0.00%,61,64,202,31.70% +100734,209,3597,State-funded primary,217,97,120,44.70%,55.30%,8,3.70%,27,12.40%,78,139,0,35.90%,64.10%,0.00%,78,81,196,41.30% +100737,209,3650,State-funded primary,209,101,108,48.30%,51.70%,9,4.30%,36,17.20%,101,108,0,48.30%,51.70%,0.00%,29,30,186,16.10% +100739,209,3661,State-funded primary,241,122,119,50.60%,49.40%,11,4.60%,38,15.80%,148,93,0,61.40%,38.60%,0.00%,47,46,209,22.00% +100740,209,4047,State-funded secondary,903,419,484,46.40%,53.60%,53,5.90%,167,18.50%,302,562,39,33.40%,62.20%,4.30%,346,415,903,46.00% +100741,209,4204,State-funded secondary,1441,1433,8,99.40%,0.60%,21,1.50%,172,11.90%,286,1113,42,19.80%,77.20%,2.90%,302,317,1177,26.90% +100742,209,4249,State-funded secondary,839,388,451,46.20%,53.80%,82,9.80%,122,14.50%,256,581,2,30.50%,69.20%,0.20%,359,406,839,48.40% +100745,209,4289,State-funded secondary,1094,10,1084,0.90%,99.10%,24,2.20%,231,21.10%,282,807,5,25.80%,73.80%,0.50%,252,237,891,26.60% +100747,209,4323,State-funded secondary,1278,533,745,41.70%,58.30%,42,3.30%,158,12.40%,499,779,0,39.00%,61.00%,0.00%,365,426,1278,33.30% +100748,209,4600,State-funded secondary,595,253,342,42.50%,57.50%,56,9.40%,119,20.00%,357,238,0,60.00%,40.00%,0.00%,235,272,595,45.70% +100749,209,4636,State-funded secondary,1003,451,552,45.00%,55.00%,30,3.00%,100,10.00%,246,755,2,24.50%,75.30%,0.20%,275,319,1003,31.80% +100750,209,4646,State-funded secondary,958,867,91,90.50%,9.50%,15,1.60%,141,14.70%,269,603,86,28.10%,62.90%,9.00%,160,147,614,23.90% +100752,209,4802,State-funded secondary,921,392,529,42.60%,57.40%,53,5.80%,94,10.20%,97,807,17,10.50%,87.60%,1.80%,201,243,921,26.40% +100754,209,6032,Independent school,1127,486,641,43.10%,56.90%,0,0.00%,211,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100756,203,6295,Independent school,777,777,0,100.00%,0.00%,0,0.00%,123,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100757,209,6309,Independent school,725,725,0,100.00%,0.00%,2,0.30%,149,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100760,209,7038,State-funded special school,168,33,135,19.60%,80.40%,166,98.80%,2,1.20%,29,139,0,17.30%,82.70%,0.00%,73,90,161,55.90% +100763,209,7141,State-funded special school,98,15,83,15.30%,84.70%,96,98.00%,2,2.00%,1,97,0,1.00%,99.00%,0.00%,64,80,98,81.60% +100765,209,7180,State-funded special school,199,66,133,33.20%,66.80%,194,97.50%,5,2.50%,62,137,0,31.20%,68.80%,0.00%,105,75,142,52.80% +100766,209,7182,State-funded special school,159,43,116,27.00%,73.00%,152,95.60%,7,4.40%,66,93,0,41.50%,58.50%,0.00%,57,64,159,40.30% +100767,210,1000,State-funded nursery,207,103,104,49.80%,50.20%,3,1.40%,72,34.80%,93,114,0,44.90%,55.10%,0.00%,111,0,0,0.00% +100768,210,1025,State-funded nursery,66,37,29,56.10%,43.90%,1,1.50%,40,60.60%,25,41,0,37.90%,62.10%,0.00%,38,0,0,0.00% +100769,210,1035,State-funded nursery,88,36,52,40.90%,59.10%,0,0.00%,25,28.40%,26,62,0,29.50%,70.50%,0.00%,1,0,0,0.00% +100770,210,1044,State-funded nursery,95,43,52,45.30%,54.70%,0,0.00%,36,37.90%,45,50,0,47.40%,52.60%,0.00%,47,0,0,0.00% +100771,210,1050,State-funded nursery,81,32,49,39.50%,60.50%,12,14.80%,18,22.20%,47,34,0,58.00%,42.00%,0.00%,42,4,7,57.10% +100774,210,2003,State-funded primary,443,208,235,47.00%,53.00%,11,2.50%,68,15.30%,186,257,0,42.00%,58.00%,0.00%,168,170,391,43.50% +100775,210,2038,State-funded primary,218,119,99,54.60%,45.40%,4,1.80%,28,12.80%,113,105,0,51.80%,48.20%,0.00%,90,90,189,47.60% +100780,210,2085,State-funded primary,381,201,180,52.80%,47.20%,14,3.70%,63,16.50%,123,258,0,32.30%,67.70%,0.00%,216,199,336,59.20% +100782,210,2116,State-funded primary,227,115,112,50.70%,49.30%,7,3.10%,46,20.30%,135,92,0,59.50%,40.50%,0.00%,83,83,211,39.30% +100783,210,2123,State-funded primary,180,84,96,46.70%,53.30%,4,2.20%,21,11.70%,86,87,7,47.80%,48.30%,3.90%,65,71,163,43.60% +100784,210,2138,State-funded primary,205,90,115,43.90%,56.10%,4,2.00%,48,23.40%,96,109,0,46.80%,53.20%,0.00%,63,65,205,31.70% +100785,210,2142,State-funded primary,410,197,213,48.00%,52.00%,8,2.00%,79,19.30%,163,247,0,39.80%,60.20%,0.00%,178,178,385,46.20% +100786,210,2161,State-funded primary,283,138,145,48.80%,51.20%,12,4.20%,44,15.50%,125,158,0,44.20%,55.80%,0.00%,93,92,257,35.80% +100790,210,2257,State-funded primary,521,282,239,54.10%,45.90%,7,1.30%,65,12.50%,152,369,0,29.20%,70.80%,0.00%,112,107,466,23.00% +100791,210,2263,State-funded primary,323,151,172,46.70%,53.30%,10,3.10%,69,21.40%,205,118,0,63.50%,36.50%,0.00%,161,159,296,53.70% +100793,210,2293,State-funded primary,426,211,215,49.50%,50.50%,7,1.60%,50,11.70%,121,305,0,28.40%,71.60%,0.00%,65,66,389,17.00% +100794,210,2308,State-funded primary,157,78,79,49.70%,50.30%,5,3.20%,27,17.20%,40,117,0,25.50%,74.50%,0.00%,62,71,157,45.20% +100795,210,2323,State-funded primary,242,112,130,46.30%,53.70%,6,2.50%,32,13.20%,80,162,0,33.10%,66.90%,0.00%,90,89,227,39.20% +100796,210,2328,State-funded primary,496,236,260,47.60%,52.40%,13,2.60%,73,14.70%,59,437,0,11.90%,88.10%,0.00%,81,76,454,16.70% +100798,210,2339,State-funded primary,480,227,253,47.30%,52.70%,42,8.80%,68,14.20%,188,283,9,39.20%,59.00%,1.90%,201,204,412,49.50% +100800,210,2351,State-funded primary,358,171,187,47.80%,52.20%,12,3.40%,42,11.70%,130,228,0,36.30%,63.70%,0.00%,172,164,315,52.10% +100801,210,2365,State-funded primary,394,215,179,54.60%,45.40%,12,3.00%,48,12.20%,68,326,0,17.30%,82.70%,0.00%,100,106,394,26.90% +100803,210,2411,State-funded primary,435,226,209,52.00%,48.00%,11,2.50%,85,19.50%,251,168,16,57.70%,38.60%,3.70%,154,153,392,39.00% +100808,210,2514,State-funded primary,294,141,153,48.00%,52.00%,5,1.70%,38,12.90%,155,139,0,52.70%,47.30%,0.00%,114,116,279,41.60% +100809,210,2516,State-funded primary,201,99,102,49.30%,50.70%,15,7.50%,63,31.30%,123,78,0,61.20%,38.80%,0.00%,89,92,179,51.40% +100810,210,2526,State-funded primary,336,166,170,49.40%,50.60%,14,4.20%,60,17.90%,118,218,0,35.10%,64.90%,0.00%,133,136,301,45.20% +100811,210,2560,State-funded primary,188,97,91,51.60%,48.40%,19,10.10%,25,13.30%,86,102,0,45.70%,54.30%,0.00%,90,81,170,47.60% +100812,210,2562,State-funded primary,402,188,214,46.80%,53.20%,21,5.20%,80,19.90%,115,287,0,28.60%,71.40%,0.00%,173,182,365,49.90% +100813,210,2607,State-funded primary,181,93,88,51.40%,48.60%,13,7.20%,32,17.70%,65,114,2,35.90%,63.00%,1.10%,106,98,165,59.40% +100814,210,2609,State-funded primary,111,52,59,46.80%,53.20%,6,5.40%,28,25.20%,47,64,0,42.30%,57.70%,0.00%,61,63,111,56.80% +100815,210,2621,State-funded primary,116,55,61,47.40%,52.60%,1,0.90%,28,24.10%,97,19,0,83.60%,16.40%,0.00%,58,56,111,50.50% +100816,210,5207,State-funded primary,184,99,85,53.80%,46.20%,5,2.70%,27,14.70%,60,124,0,32.60%,67.40%,0.00%,73,80,165,48.50% +100817,210,2848,State-funded primary,552,288,264,52.20%,47.80%,8,1.40%,66,12.00%,227,325,0,41.10%,58.90%,0.00%,204,193,503,38.40% +100818,210,2852,State-funded primary,213,99,114,46.50%,53.50%,1,0.50%,37,17.40%,134,79,0,62.90%,37.10%,0.00%,98,99,185,53.50% +100819,210,2853,State-funded primary,401,201,200,50.10%,49.90%,17,4.20%,73,18.20%,141,260,0,35.20%,64.80%,0.00%,119,115,359,32.00% +100821,210,2855,State-funded primary,363,186,177,51.20%,48.80%,8,2.20%,50,13.80%,206,157,0,56.70%,43.30%,0.00%,137,142,332,42.80% +100822,210,3313,State-funded primary,203,115,88,56.70%,43.30%,10,4.90%,16,7.90%,47,156,0,23.20%,76.80%,0.00%,71,71,203,35.00% +100823,210,3337,State-funded primary,251,132,119,52.60%,47.40%,5,2.00%,18,7.20%,53,198,0,21.10%,78.90%,0.00%,19,19,251,7.60% +100824,210,3341,State-funded primary,337,175,162,51.90%,48.10%,7,2.10%,43,12.80%,291,46,0,86.40%,13.60%,0.00%,119,125,308,40.60% +100825,210,3399,State-funded primary,235,121,114,51.50%,48.50%,8,3.40%,39,16.60%,100,135,0,42.60%,57.40%,0.00%,87,90,208,43.30% +100826,210,3435,State-funded primary,323,157,166,48.60%,51.40%,14,4.30%,60,18.60%,175,148,0,54.20%,45.80%,0.00%,111,113,296,38.20% +100827,210,3445,State-funded primary,150,74,76,49.30%,50.70%,12,8.00%,22,14.70%,61,89,0,40.70%,59.30%,0.00%,87,90,150,60.00% +100828,210,3447,State-funded primary,176,85,91,48.30%,51.70%,3,1.70%,34,19.30%,96,80,0,54.50%,45.50%,0.00%,51,54,165,32.70% +100829,210,3452,State-funded primary,418,219,199,52.40%,47.60%,20,4.80%,63,15.10%,168,250,0,40.20%,59.80%,0.00%,275,243,367,66.20% +100830,210,3460,State-funded primary,358,179,179,50.00%,50.00%,22,6.10%,50,14.00%,63,295,0,17.60%,82.40%,0.00%,77,77,358,21.50% +100833,210,3476,State-funded primary,226,117,109,51.80%,48.20%,10,4.40%,18,8.00%,89,137,0,39.40%,60.60%,0.00%,58,57,202,28.20% +100834,210,3484,State-funded primary,195,97,98,49.70%,50.30%,14,7.20%,40,20.50%,138,57,0,70.80%,29.20%,0.00%,67,65,180,36.10% +100835,210,3492,State-funded primary,81,42,39,51.90%,48.10%,2,2.50%,4,4.90%,29,52,0,35.80%,64.20%,0.00%,37,37,75,49.30% +100836,210,3508,State-funded primary,114,64,50,56.10%,43.90%,7,6.10%,38,33.30%,12,102,0,10.50%,89.50%,0.00%,55,55,114,48.20% +100837,210,3516,State-funded primary,132,58,74,43.90%,56.10%,7,5.30%,15,11.40%,15,117,0,11.40%,88.60%,0.00%,57,51,112,45.50% +100839,210,3586,State-funded primary,178,83,95,46.60%,53.40%,2,1.10%,13,7.30%,54,124,0,30.30%,69.70%,0.00%,95,91,168,54.20% +100840,210,3593,State-funded primary,214,111,103,51.90%,48.10%,5,2.30%,33,15.40%,62,152,0,29.00%,71.00%,0.00%,44,42,203,20.70% +100841,210,3669,State-funded primary,218,102,116,46.80%,53.20%,8,3.70%,32,14.70%,83,135,0,38.10%,61.90%,0.00%,70,69,199,34.70% +100849,210,4680,State-funded secondary,754,754,0,100.00%,0.00%,12,1.60%,114,15.10%,249,493,12,33.00%,65.40%,1.60%,287,277,598,46.30% +100851,210,5200,State-funded primary,89,45,44,50.60%,49.40%,2,2.20%,18,20.20%,43,46,0,48.30%,51.70%,0.00%,32,32,77,41.60% +100852,210,5201,State-funded primary,432,213,219,49.30%,50.70%,12,2.80%,68,15.70%,220,212,0,50.90%,49.10%,0.00%,101,103,402,25.60% +100853,210,5203,State-funded primary,222,115,107,51.80%,48.20%,7,3.20%,31,14.00%,150,72,0,67.60%,32.40%,0.00%,81,87,222,39.20% +100854,210,5204,State-funded primary,113,59,54,52.20%,47.80%,2,1.80%,11,9.70%,71,42,0,62.80%,37.20%,0.00%,41,42,113,37.20% +100855,210,5205,State-funded primary,176,86,90,48.90%,51.10%,6,3.40%,26,14.80%,88,88,0,50.00%,50.00%,0.00%,79,80,162,49.40% +100857,210,5402,State-funded secondary,1083,86,997,7.90%,92.10%,28,2.60%,117,10.80%,388,694,1,35.80%,64.10%,0.10%,369,357,809,44.10% +100861,210,6000,Independent school,1856,90,1766,4.80%,95.20%,3,0.20%,262,14.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100862,210,6001,Independent school,837,17,820,2.00%,98.00%,0,0.00%,174,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100863,210,6002,Independent school,1169,1169,0,100.00%,0.00%,0,0.00%,130,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100864,210,6312,Independent school,1398,723,675,51.70%,48.30%,2,0.10%,245,17.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100866,210,6375,Independent school,320,164,156,51.30%,48.80%,1,0.30%,9,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100872,210,7007,State-funded special school,152,56,96,36.80%,63.20%,152,100.00%,0,0.00%,18,134,0,11.80%,88.20%,0.00%,95,67,93,72.00% +100878,210,7126,State-funded special school,69,17,52,24.60%,75.40%,69,100.00%,0,0.00%,15,54,0,21.70%,78.30%,0.00%,43,44,69,63.80% +100879,210,7167,State-funded special school,38,9,29,23.70%,76.30%,38,100.00%,0,0.00%,1,37,0,2.60%,97.40%,0.00%,23,27,38,71.10% +100880,210,7174,State-funded special school,93,24,69,25.80%,74.20%,93,100.00%,0,0.00%,22,71,0,23.70%,76.30%,0.00%,61,41,69,59.40% +100881,210,7186,State-funded special school,90,31,59,34.40%,65.60%,90,100.00%,0,0.00%,16,74,0,17.80%,82.20%,0.00%,38,43,86,50.00% +100882,211,1012,State-funded nursery,141,71,70,50.40%,49.60%,10,7.10%,30,21.30%,121,20,0,85.80%,14.20%,0.00%,2,0,0,0.00% +100884,211,1024,State-funded nursery,56,21,35,37.50%,62.50%,0,0.00%,5,8.90%,27,28,1,48.20%,50.00%,1.80%,1,0,0,0.00% +100886,211,1032,State-funded nursery,72,38,34,52.80%,47.20%,0,0.00%,15,20.80%,51,21,0,70.80%,29.20%,0.00%,0,0,0,0.00% +100887,211,1040,State-funded nursery,75,35,40,46.70%,53.30%,2,2.70%,10,13.30%,50,25,0,66.70%,33.30%,0.00%,1,0,0,0.00% +100889,211,1100,State-funded AP school,93,34,59,36.60%,63.40%,9,9.70%,53,57.00%,44,49,0,47.30%,52.70%,0.00%,51,59,72,81.90% +100890,211,2043,State-funded primary,666,305,361,45.80%,54.20%,38,5.70%,63,9.50%,342,324,0,51.40%,48.60%,0.00%,203,212,588,36.10% +100891,211,2056,State-funded primary,797,387,410,48.60%,51.40%,24,3.00%,62,7.80%,517,280,0,64.90%,35.10%,0.00%,239,259,764,33.90% +100892,211,2059,State-funded primary,407,214,193,52.60%,47.40%,18,4.40%,45,11.10%,356,51,0,87.50%,12.50%,0.00%,105,113,407,27.80% +100893,211,2091,State-funded primary,197,96,101,48.70%,51.30%,10,5.10%,36,18.30%,137,60,0,69.50%,30.50%,0.00%,89,86,181,47.50% +100894,211,2097,State-funded primary,511,234,277,45.80%,54.20%,18,3.50%,39,7.60%,380,131,0,74.40%,25.60%,0.00%,228,242,458,52.80% +100895,211,2099,State-funded primary,349,159,190,45.60%,54.40%,15,4.30%,44,12.60%,343,6,0,98.30%,1.70%,0.00%,114,132,349,37.80% +100896,211,2110,State-funded primary,338,144,194,42.60%,57.40%,27,8.00%,55,16.30%,98,240,0,29.00%,71.00%,0.00%,87,85,302,28.10% +100897,211,2118,State-funded primary,433,234,199,54.00%,46.00%,13,3.00%,72,16.60%,244,189,0,56.40%,43.60%,0.00%,104,101,404,25.00% +100898,211,2144,State-funded primary,695,334,361,48.10%,51.90%,32,4.60%,71,10.20%,459,236,0,66.00%,34.00%,0.00%,338,343,618,55.50% +100902,211,2254,State-funded primary,352,162,190,46.00%,54.00%,41,11.60%,15,4.30%,243,109,0,69.00%,31.00%,0.00%,121,128,320,40.00% +100903,211,2270,State-funded primary,206,94,112,45.60%,54.40%,20,9.70%,37,18.00%,193,13,0,93.70%,6.30%,0.00%,40,50,185,27.00% +100904,211,2281,State-funded primary,317,162,155,51.10%,48.90%,11,3.50%,53,16.70%,198,119,0,62.50%,37.50%,0.00%,127,131,280,46.80% +100906,211,2341,State-funded primary,466,223,243,47.90%,52.10%,7,1.50%,82,17.60%,449,17,0,96.40%,3.60%,0.00%,182,156,387,40.30% +100907,211,2377,State-funded primary,216,115,101,53.20%,46.80%,8,3.70%,21,9.70%,206,10,0,95.40%,4.60%,0.00%,121,131,216,60.60% +100908,211,2378,State-funded primary,256,124,132,48.40%,51.60%,15,5.90%,30,11.70%,224,32,0,87.50%,12.50%,0.00%,91,75,170,44.10% +100911,211,2397,State-funded primary,514,246,268,47.90%,52.10%,14,2.70%,71,13.80%,367,146,1,71.40%,28.40%,0.20%,157,162,412,39.30% +100912,211,2402,State-funded primary,661,323,338,48.90%,51.10%,34,5.10%,68,10.30%,539,122,0,81.50%,18.50%,0.00%,276,275,586,46.90% +100913,211,2406,State-funded primary,393,190,203,48.30%,51.70%,14,3.60%,26,6.60%,256,137,0,65.10%,34.90%,0.00%,160,160,346,46.20% +100914,211,2432,State-funded primary,236,127,109,53.80%,46.20%,9,3.80%,34,14.40%,165,71,0,69.90%,30.10%,0.00%,83,85,200,42.50% +100915,211,2441,State-funded primary,342,162,180,47.40%,52.60%,10,2.90%,70,20.50%,338,4,0,98.80%,1.20%,0.00%,81,76,266,28.60% +100916,211,2446,State-funded primary,573,275,298,48.00%,52.00%,22,3.80%,95,16.60%,231,342,0,40.30%,59.70%,0.00%,223,211,495,42.60% +100917,211,2499,State-funded primary,802,367,435,45.80%,54.20%,26,3.20%,112,14.00%,642,160,0,80.00%,20.00%,0.00%,256,253,727,34.80% +100920,211,2533,State-funded primary,723,347,376,48.00%,52.00%,41,5.70%,129,17.80%,541,181,1,74.80%,25.00%,0.10%,329,328,625,52.50% +100923,211,2569,State-funded primary,240,124,116,51.70%,48.30%,8,3.30%,57,23.80%,156,84,0,65.00%,35.00%,0.00%,78,78,219,35.60% +100926,211,2623,State-funded primary,223,102,121,45.70%,54.30%,13,5.80%,41,18.40%,129,94,0,57.80%,42.20%,0.00%,47,54,205,26.30% +100927,211,2631,State-funded primary,401,207,194,51.60%,48.40%,13,3.20%,35,8.70%,214,187,0,53.40%,46.60%,0.00%,190,190,371,51.20% +100928,211,2658,State-funded primary,667,327,340,49.00%,51.00%,15,2.20%,72,10.80%,459,208,0,68.80%,31.20%,0.00%,343,330,615,53.70% +100930,211,2828,State-funded primary,439,216,223,49.20%,50.80%,30,6.80%,66,15.00%,427,12,0,97.30%,2.70%,0.00%,159,153,394,38.80% +100931,211,2857,State-funded primary,233,115,118,49.40%,50.60%,13,5.60%,30,12.90%,143,89,1,61.40%,38.20%,0.40%,111,108,205,52.70% +100934,211,2908,State-funded primary,435,236,199,54.30%,45.70%,17,3.90%,46,10.60%,427,8,0,98.20%,1.80%,0.00%,123,125,384,32.60% +100936,211,2910,State-funded primary,312,135,177,43.30%,56.70%,14,4.50%,39,12.50%,254,58,0,81.40%,18.60%,0.00%,98,102,288,35.40% +100937,211,2912,State-funded primary,400,187,213,46.80%,53.30%,37,9.30%,98,24.50%,352,48,0,88.00%,12.00%,0.00%,228,207,355,58.30% +100938,211,2916,State-funded primary,208,110,98,52.90%,47.10%,10,4.80%,25,12.00%,196,12,0,94.20%,5.80%,0.00%,53,53,189,28.00% +100939,211,2917,State-funded primary,485,259,226,53.40%,46.60%,12,2.50%,77,15.90%,467,18,0,96.30%,3.70%,0.00%,172,183,418,43.80% +100940,211,2918,State-funded primary,235,120,115,51.10%,48.90%,9,3.80%,24,10.20%,235,0,0,100.00%,0.00%,0.00%,73,76,205,37.10% +100943,211,2921,State-funded primary,199,100,99,50.30%,49.70%,10,5.00%,36,18.10%,147,52,0,73.90%,26.10%,0.00%,94,95,176,54.00% +100944,211,3332,State-funded primary,190,100,90,52.60%,47.40%,13,6.80%,15,7.90%,136,54,0,71.60%,28.40%,0.00%,50,50,171,29.20% +100946,211,3350,State-funded primary,161,76,85,47.20%,52.80%,7,4.30%,45,28.00%,57,104,0,35.40%,64.60%,0.00%,46,52,161,32.30% +100949,211,3397,State-funded primary,202,102,100,50.50%,49.50%,10,5.00%,34,16.80%,73,129,0,36.10%,63.90%,0.00%,65,70,180,38.90% +100950,211,3411,State-funded primary,234,120,114,51.30%,48.70%,20,8.50%,56,23.90%,62,172,0,26.50%,73.50%,0.00%,96,101,214,47.20% +100951,211,3431,State-funded primary,215,111,104,51.60%,48.40%,5,2.30%,43,20.00%,113,102,0,52.60%,47.40%,0.00%,31,35,190,18.40% +100953,211,3462,State-funded primary,151,67,84,44.40%,55.60%,6,4.00%,55,36.40%,74,77,0,49.00%,51.00%,0.00%,82,84,142,59.20% +100954,211,3497,State-funded primary,419,212,207,50.60%,49.40%,14,3.30%,49,11.70%,200,219,0,47.70%,52.30%,0.00%,123,123,381,32.30% +100958,211,3563,State-funded primary,208,101,107,48.60%,51.40%,12,5.80%,60,28.80%,142,66,0,68.30%,31.70%,0.00%,90,88,174,50.60% +100959,211,3574,State-funded primary,229,112,117,48.90%,51.10%,9,3.90%,53,23.10%,202,27,0,88.20%,11.80%,0.00%,76,75,204,36.80% +100960,211,3581,State-funded primary,231,106,125,45.90%,54.10%,9,3.90%,104,45.00%,120,111,0,51.90%,48.10%,0.00%,48,49,202,24.30% +100961,211,3592,State-funded primary,236,118,118,50.00%,50.00%,12,5.10%,58,24.60%,69,167,0,29.20%,70.80%,0.00%,77,77,203,37.90% +100962,211,3619,State-funded primary,192,106,86,55.20%,44.80%,6,3.10%,25,13.00%,116,76,0,60.40%,39.60%,0.00%,40,44,166,26.50% +100965,211,4024,State-funded secondary,1264,442,822,35.00%,65.00%,38,3.00%,137,10.80%,928,335,1,73.40%,26.50%,0.10%,407,591,1120,52.80% +100966,211,4105,State-funded secondary,1074,470,604,43.80%,56.20%,65,6.10%,148,13.80%,845,228,1,78.70%,21.20%,0.10%,602,548,882,62.10% +100967,211,4150,State-funded secondary,1544,668,876,43.30%,56.70%,99,6.40%,200,13.00%,984,560,0,63.70%,36.30%,0.00%,666,609,1181,51.60% +100972,211,4296,State-funded secondary,940,419,521,44.60%,55.40%,30,3.20%,92,9.80%,397,543,0,42.20%,57.80%,0.00%,434,459,783,58.60% +100973,211,4297,State-funded secondary,1291,461,830,35.70%,64.30%,75,5.80%,201,15.60%,621,670,0,48.10%,51.90%,0.00%,590,584,1046,55.80% +100974,211,4505,State-funded secondary,1233,600,633,48.70%,51.30%,96,7.80%,271,22.00%,803,429,1,65.10%,34.80%,0.10%,623,661,1028,64.30% +100975,211,4507,State-funded secondary,1529,1529,0,100.00%,0.00%,21,1.40%,129,8.40%,762,748,19,49.80%,48.90%,1.20%,638,597,1189,50.20% +100977,211,4722,State-funded secondary,1418,610,808,43.00%,57.00%,88,6.20%,81,5.70%,592,825,1,41.70%,58.20%,0.10%,598,516,1031,50.00% +100978,211,4726,State-funded secondary,829,736,93,88.80%,11.20%,8,1.00%,82,9.90%,173,656,0,20.90%,79.10%,0.00%,274,309,576,53.60% +100980,211,6089,Independent school,525,258,267,49.10%,50.90%,6,1.10%,120,22.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100982,211,6383,Independent school,280,280,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +100986,211,7084,State-funded special school,40,1,39,2.50%,97.50%,40,100.00%,0,0.00%,2,38,0,5.00%,95.00%,0.00%,19,29,36,80.60% +100987,211,7095,State-funded special school,469,86,383,18.30%,81.70%,468,99.80%,1,0.20%,286,178,5,61.00%,38.00%,1.10%,244,242,406,59.60% +100989,211,7168,State-funded special school,114,47,67,41.20%,58.80%,113,99.10%,1,0.90%,47,67,0,41.20%,58.80%,0.00%,76,60,79,75.90% +100990,212,1015,State-funded nursery,59,26,33,44.10%,55.90%,1,1.70%,17,28.80%,19,40,0,32.20%,67.80%,0.00%,27,0,0,0.00% +100991,212,1036,State-funded nursery,50,20,30,40.00%,60.00%,2,4.00%,15,30.00%,21,29,0,42.00%,58.00%,0.00%,24,0,0,0.00% +100992,212,1057,State-funded nursery,57,24,33,42.10%,57.90%,2,3.50%,4,7.00%,18,39,0,31.60%,68.40%,0.00%,11,0,0,0.00% +100994,212,1101,State-funded AP school,60,26,34,43.30%,56.70%,12,20.00%,40,66.70%,5,49,6,8.30%,81.70%,10.00%,37,40,57,70.20% +100995,212,2004,State-funded primary,258,132,126,51.20%,48.80%,12,4.70%,61,23.60%,83,172,3,32.20%,66.70%,1.20%,79,73,232,31.50% +100996,212,2010,State-funded primary,366,186,180,50.80%,49.20%,10,2.70%,44,12.00%,115,251,0,31.40%,68.60%,0.00%,68,69,337,20.50% +100997,212,2034,State-funded primary,324,163,161,50.30%,49.70%,6,1.90%,33,10.20%,90,234,0,27.80%,72.20%,0.00%,63,60,296,20.30% +101001,212,2064,State-funded primary,354,185,169,52.30%,47.70%,17,4.80%,29,8.20%,126,228,0,35.60%,64.40%,0.00%,26,28,328,8.50% +101002,212,2067,State-funded primary,133,64,69,48.10%,51.90%,6,4.50%,22,16.50%,68,65,0,51.10%,48.90%,0.00%,43,43,115,37.40% +101005,212,2180,State-funded primary,451,221,230,49.00%,51.00%,9,2.00%,45,10.00%,74,377,0,16.40%,83.60%,0.00%,51,46,386,11.90% +101006,212,2211,State-funded primary,212,107,105,50.50%,49.50%,8,3.80%,30,14.20%,142,70,0,67.00%,33.00%,0.00%,148,128,178,71.90% +101007,212,2217,State-funded primary,339,160,179,47.20%,52.80%,9,2.70%,39,11.50%,79,260,0,23.30%,76.70%,0.00%,65,65,312,20.80% +101009,212,2237,State-funded primary,353,176,177,49.90%,50.10%,8,2.30%,55,15.60%,107,246,0,30.30%,69.70%,0.00%,57,56,323,17.30% +101011,212,5204,State-funded primary,324,157,167,48.50%,51.50%,13,4.00%,42,13.00%,154,170,0,47.50%,52.50%,0.00%,28,30,324,9.30% +101012,212,5203,State-funded primary,318,152,166,47.80%,52.20%,3,0.90%,19,6.00%,138,179,1,43.40%,56.30%,0.30%,7,7,268,2.60% +101013,212,2314,State-funded primary,340,170,170,50.00%,50.00%,10,2.90%,39,11.50%,111,229,0,32.60%,67.40%,0.00%,62,60,308,19.50% +101014,212,2334,State-funded primary,209,95,114,45.50%,54.50%,3,1.40%,45,21.50%,68,141,0,32.50%,67.50%,0.00%,109,99,186,53.20% +101016,212,2467,State-funded primary,653,329,324,50.40%,49.60%,27,4.10%,89,13.60%,162,490,1,24.80%,75.00%,0.20%,127,127,602,21.10% +101018,212,2511,State-funded primary,373,167,206,44.80%,55.20%,43,11.50%,97,26.00%,140,233,0,37.50%,62.50%,0.00%,99,95,346,27.50% +101019,212,2541,State-funded primary,356,188,168,52.80%,47.20%,21,5.90%,46,12.90%,212,143,1,59.60%,40.20%,0.30%,120,112,306,36.60% +101020,212,2545,State-funded primary,391,175,216,44.80%,55.20%,11,2.80%,76,19.40%,107,284,0,27.40%,72.60%,0.00%,146,135,337,40.10% +101021,212,2558,State-funded primary,266,128,138,48.10%,51.90%,54,20.30%,51,19.20%,99,167,0,37.20%,62.80%,0.00%,94,92,232,39.70% +101022,212,2584,State-funded primary,332,168,164,50.60%,49.40%,19,5.70%,50,15.10%,123,209,0,37.00%,63.00%,0.00%,102,96,299,32.10% +101024,212,2633,State-funded primary,177,101,76,57.10%,42.90%,9,5.10%,42,23.70%,108,69,0,61.00%,39.00%,0.00%,66,64,161,39.80% +101026,212,2774,State-funded primary,408,200,208,49.00%,51.00%,5,1.20%,28,6.90%,104,304,0,25.50%,74.50%,0.00%,29,31,376,8.20% +101027,212,2780,State-funded primary,335,158,177,47.20%,52.80%,28,8.40%,48,14.30%,181,154,0,54.00%,46.00%,0.00%,147,146,315,46.30% +101028,212,2781,State-funded primary,393,177,216,45.00%,55.00%,31,7.90%,65,16.50%,197,196,0,50.10%,49.90%,0.00%,176,167,338,49.40% +101029,212,2786,State-funded primary,293,147,146,50.20%,49.80%,16,5.50%,52,17.70%,174,119,0,59.40%,40.60%,0.00%,163,161,266,60.50% +101031,212,2807,State-funded primary,236,123,113,52.10%,47.90%,11,4.70%,32,13.60%,158,78,0,66.90%,33.10%,0.00%,79,73,206,35.40% +101032,212,5205,State-funded primary,388,190,198,49.00%,51.00%,8,2.10%,69,17.80%,153,235,0,39.40%,60.60%,0.00%,89,95,359,26.50% +101034,212,3304,State-funded primary,227,118,109,52.00%,48.00%,5,2.20%,36,15.90%,76,151,0,33.50%,66.50%,0.00%,39,35,197,17.80% +101035,212,3320,State-funded primary,114,55,59,48.20%,51.80%,4,3.50%,22,19.30%,41,68,5,36.00%,59.60%,4.40%,81,76,107,71.00% +101036,212,3376,State-funded primary,196,96,100,49.00%,51.00%,3,1.50%,17,8.70%,87,109,0,44.40%,55.60%,0.00%,11,12,196,6.10% +101037,212,3387,State-funded primary,195,114,81,58.50%,41.50%,3,1.50%,13,6.70%,95,100,0,48.70%,51.30%,0.00%,3,4,195,2.10% +101038,212,3390,State-funded primary,168,89,79,53.00%,47.00%,3,1.80%,27,16.10%,94,72,2,56.00%,42.90%,1.20%,64,60,147,40.80% +101041,212,3408,State-funded primary,163,94,69,57.70%,42.30%,2,1.20%,30,18.40%,88,75,0,54.00%,46.00%,0.00%,55,54,141,38.30% +101042,212,3422,State-funded primary,321,163,158,50.80%,49.20%,10,3.10%,28,8.70%,195,126,0,60.70%,39.30%,0.00%,46,42,288,14.60% +101043,212,3434,State-funded primary,148,74,74,50.00%,50.00%,1,0.70%,22,14.90%,27,121,0,18.20%,81.80%,0.00%,36,34,127,26.80% +101044,212,3444,State-funded primary,227,114,113,50.20%,49.80%,6,2.60%,54,23.80%,109,118,0,48.00%,52.00%,0.00%,143,135,198,68.20% +101045,212,3486,State-funded primary,178,87,91,48.90%,51.10%,4,2.20%,44,24.70%,99,79,0,55.60%,44.40%,0.00%,62,61,154,39.60% +101046,212,3524,State-funded primary,221,119,102,53.80%,46.20%,4,1.80%,29,13.10%,48,173,0,21.70%,78.30%,0.00%,23,24,194,12.40% +101047,212,3525,State-funded primary,151,78,73,51.70%,48.30%,5,3.30%,16,10.60%,62,84,5,41.10%,55.60%,3.30%,76,72,119,60.50% +101048,212,3528,State-funded primary,184,100,84,54.30%,45.70%,8,4.30%,42,22.80%,89,89,6,48.40%,48.40%,3.30%,86,86,168,51.20% +101049,212,3550,State-funded primary,411,207,204,50.40%,49.60%,4,1.00%,34,8.30%,112,299,0,27.30%,72.70%,0.00%,20,21,381,5.50% +101050,212,3629,State-funded primary,401,212,189,52.90%,47.10%,22,5.50%,53,13.20%,153,248,0,38.20%,61.80%,0.00%,140,135,368,36.70% +101051,212,3636,State-funded primary,224,112,112,50.00%,50.00%,5,2.20%,22,9.80%,174,50,0,77.70%,22.30%,0.00%,46,45,206,21.80% +101052,212,3644,State-funded primary,205,93,112,45.40%,54.60%,6,2.90%,10,4.90%,67,138,0,32.70%,67.30%,0.00%,14,15,205,7.30% +101053,212,4297,State-funded secondary,837,4,833,0.50%,99.50%,25,3.00%,114,13.60%,314,520,3,37.50%,62.10%,0.40%,271,246,632,38.90% +101057,212,5201,State-funded primary,725,362,363,49.90%,50.10%,49,6.80%,84,11.60%,280,445,0,38.60%,61.40%,0.00%,268,247,636,38.80% +101064,212,6040,Independent school,1005,485,520,48.30%,51.70%,1,0.10%,120,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101065,212,6144,Independent school,121,25,96,20.70%,79.30%,1,0.80%,9,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101067,212,6147,Independent school,396,175,221,44.20%,55.80%,1,0.30%,24,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101069,315,6080,Independent school,198,25,173,12.60%,87.40%,0,0.00%,37,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101071,212,6292,Independent school,1083,508,575,46.90%,53.10%,0,0.00%,167,15.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101072,212,6310,Independent school,1076,1076,0,100.00%,0.00%,0,0.00%,288,26.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101073,208,6344,Independent school,27,16,11,59.30%,40.70%,0,0.00%,6,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101074,212,6347,Independent school,458,305,153,66.60%,33.40%,7,1.50%,114,24.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101075,212,6351,Independent school,267,137,130,51.30%,48.70%,7,2.60%,46,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101076,212,6365,Independent school,345,179,166,51.90%,48.10%,3,0.90%,66,19.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101078,212,6371,Independent school,437,213,224,48.70%,51.30%,0,0.00%,97,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101080,212,6383,Independent school,114,56,58,49.10%,50.90%,1,0.90%,13,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101081,212,6384,Independent school,287,132,155,46.00%,54.00%,2,0.70%,80,27.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101082,212,6385,Independent school,658,312,346,47.40%,52.60%,0,0.00%,56,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101084,212,6387,Independent school,156,76,80,48.70%,51.30%,0,0.00%,19,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101086,315,6390,Independent school,183,50,133,27.30%,72.70%,7,3.80%,83,45.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101088,212,6394,Independent school,682,228,454,33.40%,66.60%,29,4.30%,29,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101089,212,6395,Independent school,202,0,202,0.00%,100.00%,3,1.50%,105,52.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101090,212,6396,Independent school,175,139,36,79.40%,20.60%,0,0.00%,11,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101091,212,6397,Independent school,133,68,65,51.10%,48.90%,0,0.00%,7,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101094,212,7068,State-funded special school,90,37,53,41.10%,58.90%,87,96.70%,3,3.30%,45,45,0,50.00%,50.00%,0.00%,50,34,49,69.40% +101095,212,7077,State-funded special school,60,8,52,13.30%,86.70%,60,100.00%,0,0.00%,4,56,0,6.70%,93.30%,0.00%,18,18,33,54.50% +101099,212,7123,State-funded special school,62,30,32,48.40%,51.60%,62,100.00%,0,0.00%,23,38,1,37.10%,61.30%,1.60%,28,25,56,44.60% +101102,212,7183,State-funded special school,212,47,165,22.20%,77.80%,212,100.00%,0,0.00%,80,132,0,37.70%,62.30%,0.00%,121,106,185,57.30% +101103,212,7207,State-funded special school,199,50,149,25.10%,74.90%,198,99.50%,1,0.50%,28,171,0,14.10%,85.90%,0.00%,114,104,159,65.40% +101104,213,1026,State-funded nursery,44,23,21,52.30%,47.70%,1,2.30%,13,29.50%,10,34,0,22.70%,77.30%,0.00%,7,0,0,0.00% +101105,213,1046,State-funded nursery,79,34,45,43.00%,57.00%,4,5.10%,22,27.80%,56,23,0,70.90%,29.10%,0.00%,32,0,0,0.00% +101106,213,1052,State-funded nursery,73,28,45,38.40%,61.60%,0,0.00%,15,20.50%,41,32,0,56.20%,43.80%,0.00%,18,0,0,0.00% +101107,213,2032,State-funded primary,217,109,108,50.20%,49.80%,10,4.60%,23,10.60%,134,83,0,61.80%,38.20%,0.00%,62,62,217,28.60% +101110,213,2189,State-funded primary,295,142,153,48.10%,51.90%,13,4.40%,87,29.50%,268,27,0,90.80%,9.20%,0.00%,186,173,266,65.00% +101111,213,2208,State-funded primary,309,151,158,48.90%,51.10%,17,5.50%,29,9.40%,228,81,0,73.80%,26.20%,0.00%,153,145,286,50.70% +101115,213,2778,State-funded primary,264,124,140,47.00%,53.00%,12,4.50%,29,11.00%,184,80,0,69.70%,30.30%,0.00%,85,84,239,35.10% +101116,213,2799,State-funded primary,324,152,172,46.90%,53.10%,21,6.50%,23,7.10%,269,55,0,83.00%,17.00%,0.00%,144,130,269,48.30% +101117,213,2816,State-funded primary,164,80,84,48.80%,51.20%,2,1.20%,12,7.30%,83,81,0,50.60%,49.40%,0.00%,12,12,146,8.20% +101120,213,2844,State-funded primary,287,139,148,48.40%,51.60%,18,6.30%,50,17.40%,220,67,0,76.70%,23.30%,0.00%,127,126,263,47.90% +101121,213,3306,State-funded primary,203,108,95,53.20%,46.80%,16,7.90%,18,8.90%,96,107,0,47.30%,52.70%,0.00%,75,71,179,39.70% +101122,213,3316,State-funded primary,144,68,76,47.20%,52.80%,3,2.10%,32,22.20%,72,72,0,50.00%,50.00%,0.00%,50,46,127,36.20% +101123,213,3351,State-funded primary,221,118,103,53.40%,46.60%,1,0.50%,14,6.30%,137,84,0,62.00%,38.00%,0.00%,17,17,194,8.80% +101124,213,3381,State-funded primary,156,82,74,52.60%,47.40%,5,3.20%,59,37.80%,64,90,2,41.00%,57.70%,1.30%,80,70,142,49.30% +101125,213,3414,State-funded primary,221,111,110,50.20%,49.80%,9,4.10%,18,8.10%,201,20,0,91.00%,9.00%,0.00%,97,99,205,48.30% +101126,213,3418,State-funded primary,139,66,73,47.50%,52.50%,8,5.80%,10,7.20%,80,59,0,57.60%,42.40%,0.00%,57,55,123,44.70% +101127,213,3424,State-funded primary,217,101,116,46.50%,53.50%,8,3.70%,31,14.30%,112,105,0,51.60%,48.40%,0.00%,52,57,203,28.10% +101128,213,3432,State-funded primary,204,96,108,47.10%,52.90%,9,4.40%,20,9.80%,133,71,0,65.20%,34.80%,0.00%,107,98,186,52.70% +101129,213,3440,State-funded primary,158,88,70,55.70%,44.30%,11,7.00%,22,13.90%,69,89,0,43.70%,56.30%,0.00%,74,74,158,46.80% +101130,213,3446,State-funded primary,78,28,50,35.90%,64.10%,3,3.80%,15,19.20%,28,50,0,35.90%,64.10%,0.00%,14,13,75,17.30% +101131,213,3451,State-funded primary,126,68,58,54.00%,46.00%,6,4.80%,22,17.50%,75,51,0,59.50%,40.50%,0.00%,38,38,126,30.20% +101132,213,3453,State-funded primary,190,94,96,49.50%,50.50%,4,2.10%,18,9.50%,97,93,0,51.10%,48.90%,0.00%,60,57,169,33.70% +101133,213,3473,State-funded primary,267,114,153,42.70%,57.30%,2,0.70%,33,12.40%,205,62,0,76.80%,23.20%,0.00%,46,44,240,18.30% +101134,213,3496,State-funded primary,156,82,74,52.60%,47.40%,4,2.60%,19,12.20%,54,102,0,34.60%,65.40%,0.00%,84,85,156,54.50% +101135,213,3511,State-funded primary,151,70,81,46.40%,53.60%,11,7.30%,19,12.60%,85,66,0,56.30%,43.70%,0.00%,75,72,135,53.30% +101136,213,3520,State-funded primary,114,59,55,51.80%,48.20%,8,7.00%,14,12.30%,47,67,0,41.20%,58.80%,0.00%,33,34,100,34.00% +101137,213,3532,State-funded primary,218,115,103,52.80%,47.20%,8,3.70%,42,19.30%,85,133,0,39.00%,61.00%,0.00%,85,83,199,41.70% +101138,213,3539,State-funded primary,173,81,92,46.80%,53.20%,7,4.00%,14,8.10%,78,95,0,45.10%,54.90%,0.00%,46,44,153,28.80% +101139,213,3580,State-funded primary,190,94,96,49.50%,50.50%,6,3.20%,29,15.30%,102,86,2,53.70%,45.30%,1.10%,65,68,190,35.80% +101140,213,3582,State-funded primary,268,146,122,54.50%,45.50%,3,1.10%,34,12.70%,117,150,1,43.70%,56.00%,0.40%,46,46,260,17.70% +101141,213,3590,State-funded primary,210,111,99,52.90%,47.10%,6,2.90%,19,9.00%,64,145,1,30.50%,69.00%,0.50%,44,40,181,22.10% +101142,213,3598,State-funded primary,84,35,49,41.70%,58.30%,2,2.40%,6,7.10%,56,25,3,66.70%,29.80%,3.60%,62,61,75,81.30% +101143,213,3610,State-funded primary,234,137,97,58.50%,41.50%,6,2.60%,17,7.30%,106,128,0,45.30%,54.70%,0.00%,29,27,208,13.00% +101144,213,3611,State-funded primary,241,130,111,53.90%,46.10%,14,5.80%,41,17.00%,126,115,0,52.30%,47.70%,0.00%,66,65,219,29.70% +101147,213,3653,State-funded primary,215,105,110,48.80%,51.20%,10,4.70%,28,13.00%,171,44,0,79.50%,20.50%,0.00%,103,95,190,50.00% +101154,213,4723,State-funded secondary,1036,516,520,49.80%,50.20%,61,5.90%,151,14.60%,818,216,2,79.00%,20.80%,0.20%,432,424,881,48.10% +101156,213,6034,Independent school,369,0,369,0.00%,100.00%,0,0.00%,74,20.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101157,213,6036,Independent school,632,632,0,100.00%,0.00%,1,0.20%,148,23.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101158,213,6037,Independent school,554,554,0,100.00%,0.00%,0,0.00%,141,25.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101159,213,6044,Independent school,27,0,27,0.00%,100.00%,0,0.00%,2,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101160,213,6045,Independent school,172,2,170,1.20%,98.80%,0,0.00%,14,8.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101161,213,6046,Independent school,741,741,0,100.00%,0.00%,0,0.00%,142,19.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101162,213,6047,Independent school,773,138,635,17.90%,82.10%,1,0.10%,132,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101163,207,6055,Independent school,88,40,48,45.50%,54.50%,1,1.10%,6,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101164,213,6129,Independent school,71,37,34,52.10%,47.90%,1,1.40%,5,7.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101165,213,6182,Independent school,275,0,275,0.00%,100.00%,1,0.40%,20,7.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101166,213,6197,Independent school,276,0,276,0.00%,100.00%,0,0.00%,14,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101168,213,6215,Independent school,1401,725,676,51.70%,48.30%,1,0.10%,148,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101169,213,6225,Independent school,167,109,58,65.30%,34.70%,2,1.20%,38,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101171,213,6304,Independent school,113,57,56,50.40%,49.60%,0,0.00%,19,16.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101172,213,6319,Independent school,209,161,48,77.00%,23.00%,0,0.00%,34,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101173,213,6327,Independent school,215,87,128,40.50%,59.50%,125,58.10%,90,41.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101174,213,6333,Independent school,43,13,30,30.20%,69.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101175,212,6408,Independent school,47,8,39,17.00%,83.00%,44,93.60%,3,6.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101176,213,6342,Independent school,127,59,68,46.50%,53.50%,0,0.00%,26,20.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101177,213,6364,Independent school,168,68,100,40.50%,59.50%,0,0.00%,12,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101178,213,6370,Independent school,256,123,133,48.00%,52.00%,0,0.00%,65,25.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101181,213,6384,Independent school,121,54,67,44.60%,55.40%,7,5.80%,6,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101182,213,7042,State-funded special school,106,26,80,24.50%,75.50%,106,100.00%,0,0.00%,53,53,0,50.00%,50.00%,0.00%,71,72,95,75.80% +101184,213,7184,State-funded special school,78,39,39,50.00%,50.00%,78,100.00%,0,0.00%,55,23,0,70.50%,29.50%,0.00%,45,44,71,62.00% +101188,301,2005,State-funded primary,307,153,154,49.80%,50.20%,8,2.60%,36,11.70%,156,151,0,50.80%,49.20%,0.00%,57,57,258,22.10% +101192,301,2009,State-funded primary,595,286,309,48.10%,51.90%,9,1.50%,73,12.30%,274,321,0,46.10%,53.90%,0.00%,111,120,595,20.20% +101193,301,2010,State-funded primary,1214,558,656,46.00%,54.00%,22,1.80%,159,13.10%,446,767,1,36.70%,63.20%,0.10%,217,224,1059,21.20% +101196,301,2013,State-funded primary,843,450,393,53.40%,46.60%,9,1.10%,97,11.50%,675,168,0,80.10%,19.90%,0.00%,200,209,785,26.60% +101198,301,2015,State-funded primary,897,402,495,44.80%,55.20%,31,3.50%,80,8.90%,751,130,16,83.70%,14.50%,1.80%,204,213,844,25.20% +101202,301,2024,State-funded primary,606,291,315,48.00%,52.00%,4,0.70%,94,15.50%,453,153,0,74.80%,25.20%,0.00%,145,153,555,27.60% +101203,301,2030,State-funded primary,492,247,245,50.20%,49.80%,5,1.00%,44,8.90%,168,324,0,34.10%,65.90%,0.00%,83,84,408,20.60% +101206,301,2033,State-funded primary,907,448,459,49.40%,50.60%,29,3.20%,109,12.00%,365,542,0,40.20%,59.80%,0.00%,226,240,847,28.30% +101211,301,2043,State-funded primary,337,168,169,49.90%,50.10%,1,0.30%,49,14.50%,214,123,0,63.50%,36.50%,0.00%,93,98,313,31.30% +101212,301,2047,State-funded primary,842,398,444,47.30%,52.70%,14,1.70%,150,17.80%,244,598,0,29.00%,71.00%,0.00%,172,182,783,23.20% +101216,301,2052,State-funded primary,423,233,190,55.10%,44.90%,13,3.10%,37,8.70%,125,298,0,29.60%,70.40%,0.00%,134,138,389,35.50% +101219,301,2055,State-funded primary,557,258,299,46.30%,53.70%,7,1.30%,74,13.30%,246,311,0,44.20%,55.80%,0.00%,139,148,557,26.60% +101220,301,2056,State-funded primary,454,192,262,42.30%,57.70%,38,8.40%,74,16.30%,295,159,0,65.00%,35.00%,0.00%,148,157,420,37.40% +101222,301,2059,State-funded primary,974,462,512,47.40%,52.60%,28,2.90%,133,13.70%,591,383,0,60.70%,39.30%,0.00%,223,269,858,31.40% +101223,301,2060,State-funded primary,290,159,131,54.80%,45.20%,8,2.80%,60,20.70%,193,97,0,66.60%,33.40%,0.00%,76,77,256,30.10% +101224,301,2061,State-funded primary,675,327,348,48.40%,51.60%,18,2.70%,66,9.80%,378,297,0,56.00%,44.00%,0.00%,216,236,625,37.80% +101226,301,2063,State-funded primary,970,461,509,47.50%,52.50%,24,2.50%,170,17.50%,307,663,0,31.60%,68.40%,0.00%,351,363,911,39.80% +101227,301,2064,State-funded primary,393,189,204,48.10%,51.90%,7,1.80%,79,20.10%,179,212,2,45.50%,53.90%,0.50%,127,129,366,35.20% +101228,301,2065,State-funded primary,457,214,243,46.80%,53.20%,20,4.40%,71,15.50%,277,180,0,60.60%,39.40%,0.00%,147,156,418,37.30% +101229,301,2066,State-funded primary,469,230,239,49.00%,51.00%,11,2.30%,51,10.90%,289,180,0,61.60%,38.40%,0.00%,110,114,417,27.30% +101230,301,2067,State-funded primary,1130,541,589,47.90%,52.10%,32,2.80%,113,10.00%,498,632,0,44.10%,55.90%,0.00%,296,320,1054,30.40% +101231,301,2068,State-funded primary,467,232,235,49.70%,50.30%,18,3.90%,51,10.90%,217,250,0,46.50%,53.50%,0.00%,111,113,422,26.80% +101232,301,2069,State-funded primary,630,296,334,47.00%,53.00%,28,4.40%,97,15.40%,426,190,14,67.60%,30.20%,2.20%,159,181,597,30.30% +101234,301,3301,State-funded primary,332,163,169,49.10%,50.90%,6,1.80%,59,17.80%,104,228,0,31.30%,68.70%,0.00%,116,122,332,36.70% +101237,301,3503,State-funded primary,400,195,205,48.80%,51.30%,18,4.50%,54,13.50%,204,196,0,51.00%,49.00%,0.00%,116,120,374,32.10% +101241,301,4021,State-funded secondary,2325,1087,1238,46.80%,53.20%,67,2.90%,161,6.90%,697,1625,3,30.00%,69.90%,0.10%,517,494,1820,27.10% +101243,301,4023,State-funded secondary,1158,556,602,48.00%,52.00%,59,5.10%,126,10.90%,416,723,19,35.90%,62.40%,1.60%,399,426,1100,38.70% +101244,301,4024,State-funded secondary,2160,1047,1113,48.50%,51.50%,48,2.20%,217,10.00%,1136,1016,8,52.60%,47.00%,0.40%,555,567,1877,30.20% +101245,301,4027,State-funded secondary,2657,1289,1368,48.50%,51.50%,35,1.30%,294,11.10%,753,1855,49,28.30%,69.80%,1.80%,725,748,2276,32.90% +101247,301,4703,State-funded secondary,1443,672,771,46.60%,53.40%,29,2.00%,102,7.10%,767,578,98,53.20%,40.10%,6.80%,300,295,1176,25.10% +101251,302,1000,State-funded nursery,115,52,63,45.20%,54.80%,0,0.00%,7,6.10%,23,92,0,20.00%,80.00%,0.00%,0,0,0,0.00% +101252,302,1001,State-funded nursery,103,46,57,44.70%,55.30%,5,4.90%,6,5.80%,23,80,0,22.30%,77.70%,0.00%,0,0,0,0.00% +101253,302,1002,State-funded nursery,79,46,33,58.20%,41.80%,0,0.00%,6,7.60%,66,13,0,83.50%,16.50%,0.00%,0,0,0,0.00% +101254,302,1003,State-funded nursery,114,57,57,50.00%,50.00%,3,2.60%,7,6.10%,27,87,0,23.70%,76.30%,0.00%,0,0,0,0.00% +101255,302,1100,State-funded AP school,31,7,24,22.60%,77.40%,5,16.10%,26,83.90%,7,24,0,22.60%,77.40%,0.00%,20,24,31,77.40% +101258,302,2002,State-funded primary,444,214,230,48.20%,51.80%,17,3.80%,52,11.70%,357,87,0,80.40%,19.60%,0.00%,90,94,419,22.40% +101259,302,2003,State-funded primary,410,190,220,46.30%,53.70%,17,4.10%,72,17.60%,283,127,0,69.00%,31.00%,0.00%,128,139,357,38.90% +101262,302,2007,State-funded primary,358,177,181,49.40%,50.60%,21,5.90%,53,14.80%,201,157,0,56.10%,43.90%,0.00%,69,74,358,20.70% +101263,302,2008,State-funded primary,308,167,141,54.20%,45.80%,11,3.60%,47,15.30%,201,107,0,65.30%,34.70%,0.00%,38,39,268,14.60% +101264,302,2009,State-funded primary,457,194,263,42.50%,57.50%,14,3.10%,49,10.70%,252,205,0,55.10%,44.90%,0.00%,79,84,422,19.90% +101266,302,2011,State-funded primary,212,91,121,42.90%,57.10%,4,1.90%,26,12.30%,85,127,0,40.10%,59.90%,0.00%,34,37,212,17.50% +101269,302,2014,State-funded primary,714,347,367,48.60%,51.40%,25,3.50%,87,12.20%,614,97,3,86.00%,13.60%,0.40%,167,194,628,30.90% +101270,302,2015,State-funded primary,282,125,157,44.30%,55.70%,36,12.80%,27,9.60%,108,163,11,38.30%,57.80%,3.90%,82,79,217,36.40% +101271,302,2016,State-funded primary,211,99,112,46.90%,53.10%,4,1.90%,15,7.10%,104,107,0,49.30%,50.70%,0.00%,22,26,211,12.30% +101272,302,2017,State-funded primary,415,205,210,49.40%,50.60%,14,3.40%,68,16.40%,153,262,0,36.90%,63.10%,0.00%,84,90,415,21.70% +101274,302,2019,State-funded primary,258,115,143,44.60%,55.40%,10,3.90%,13,5.00%,198,60,0,76.70%,23.30%,0.00%,54,55,209,26.30% +101275,302,2021,State-funded primary,454,212,242,46.70%,53.30%,12,2.60%,49,10.80%,399,55,0,87.90%,12.10%,0.00%,132,134,403,33.30% +101277,302,2023,State-funded primary,473,245,228,51.80%,48.20%,17,3.60%,77,16.30%,434,39,0,91.80%,8.20%,0.00%,168,163,434,37.60% +101278,302,2024,State-funded primary,265,129,136,48.70%,51.30%,10,3.80%,49,18.50%,207,58,0,78.10%,21.90%,0.00%,82,83,200,41.50% +101279,302,2025,State-funded primary,319,148,171,46.40%,53.60%,8,2.50%,21,6.60%,149,170,0,46.70%,53.30%,0.00%,10,12,319,3.80% +101280,302,2026,State-funded primary,521,261,260,50.10%,49.90%,12,2.30%,62,11.90%,347,174,0,66.60%,33.40%,0.00%,72,78,445,17.50% +101281,302,2027,State-funded primary,328,169,159,51.50%,48.50%,11,3.40%,36,11.00%,262,66,0,79.90%,20.10%,0.00%,81,91,328,27.70% +101282,302,2028,State-funded primary,241,119,122,49.40%,50.60%,9,3.70%,27,11.20%,193,48,0,80.10%,19.90%,0.00%,59,59,241,24.50% +101283,302,2029,State-funded primary,470,221,249,47.00%,53.00%,16,3.40%,90,19.10%,327,143,0,69.60%,30.40%,0.00%,154,158,415,38.10% +101285,302,2031,State-funded primary,216,106,110,49.10%,50.90%,6,2.80%,34,15.70%,142,74,0,65.70%,34.30%,0.00%,82,84,189,44.40% +101286,302,2032,State-funded primary,480,236,244,49.20%,50.80%,18,3.80%,60,12.50%,241,239,0,50.20%,49.80%,0.00%,98,105,434,24.20% +101289,302,2036,State-funded primary,253,117,136,46.20%,53.80%,27,10.70%,63,24.90%,104,149,0,41.10%,58.90%,0.00%,70,75,211,35.50% +101290,302,2037,State-funded primary,237,114,123,48.10%,51.90%,10,4.20%,20,8.40%,136,99,2,57.40%,41.80%,0.80%,34,37,206,18.00% +101293,302,2042,State-funded primary,420,202,218,48.10%,51.90%,10,2.40%,34,8.10%,144,276,0,34.30%,65.70%,0.00%,17,23,420,5.50% +101294,302,2043,State-funded primary,441,217,224,49.20%,50.80%,10,2.30%,39,8.80%,299,142,0,67.80%,32.20%,0.00%,91,96,441,21.80% +101295,302,2044,State-funded primary,356,185,171,52.00%,48.00%,8,2.20%,29,8.10%,98,258,0,27.50%,72.50%,0.00%,59,63,356,17.70% +101296,302,2045,State-funded primary,267,131,136,49.10%,50.90%,8,3.00%,46,17.20%,163,104,0,61.00%,39.00%,0.00%,32,35,210,16.70% +101298,302,2054,State-funded primary,203,94,109,46.30%,53.70%,8,3.90%,24,11.80%,66,137,0,32.50%,67.50%,0.00%,8,9,203,4.40% +101299,302,2055,State-funded primary,245,117,128,47.80%,52.20%,8,3.30%,33,13.50%,197,48,0,80.40%,19.60%,0.00%,55,57,220,25.90% +101301,302,2057,State-funded primary,539,254,285,47.10%,52.90%,21,3.90%,43,8.00%,307,230,2,57.00%,42.70%,0.40%,188,205,512,40.00% +101304,302,2060,State-funded primary,459,203,256,44.20%,55.80%,17,3.70%,53,11.50%,148,302,9,32.20%,65.80%,2.00%,130,135,422,32.00% +101309,302,2067,State-funded primary,222,109,113,49.10%,50.90%,23,10.40%,25,11.30%,158,64,0,71.20%,28.80%,0.00%,38,43,222,19.40% +101311,302,2070,State-funded primary,250,101,149,40.40%,59.60%,8,3.20%,45,18.00%,191,58,1,76.40%,23.20%,0.40%,67,75,203,36.90% +101312,302,2071,State-funded primary,217,94,123,43.30%,56.70%,8,3.70%,10,4.60%,135,82,0,62.20%,37.80%,0.00%,60,58,166,34.90% +101313,302,2072,State-funded primary,268,126,142,47.00%,53.00%,11,4.10%,26,9.70%,187,81,0,69.80%,30.20%,0.00%,85,89,268,33.20% +101314,302,2073,State-funded primary,617,310,307,50.20%,49.80%,27,4.40%,62,10.00%,250,367,0,40.50%,59.50%,0.00%,168,203,617,32.90% +101315,302,3300,State-funded primary,156,71,85,45.50%,54.50%,5,3.20%,19,12.20%,90,66,0,57.70%,42.30%,0.00%,86,90,156,57.70% +101316,302,3302,State-funded primary,222,106,116,47.70%,52.30%,7,3.20%,13,5.90%,94,128,0,42.30%,57.70%,0.00%,28,28,211,13.30% +101317,302,3304,State-funded primary,232,123,109,53.00%,47.00%,12,5.20%,35,15.10%,97,135,0,41.80%,58.20%,0.00%,42,47,203,23.20% +101318,302,3305,State-funded primary,148,80,68,54.10%,45.90%,3,2.00%,22,14.90%,36,112,0,24.30%,75.70%,0.00%,14,15,148,10.10% +101319,302,3307,State-funded primary,239,114,125,47.70%,52.30%,3,1.30%,25,10.50%,112,127,0,46.90%,53.10%,0.00%,22,25,209,12.00% +101321,302,3309,State-funded primary,229,108,121,47.20%,52.80%,5,2.20%,24,10.50%,78,151,0,34.10%,65.90%,0.00%,24,24,209,11.50% +101323,302,3311,State-funded primary,464,245,219,52.80%,47.20%,7,1.50%,39,8.40%,346,118,0,74.60%,25.40%,0.00%,68,70,410,17.10% +101324,302,3312,State-funded primary,216,108,108,50.00%,50.00%,4,1.90%,29,13.40%,50,166,0,23.10%,76.90%,0.00%,24,24,216,11.10% +101325,302,3313,State-funded primary,226,94,132,41.60%,58.40%,5,2.20%,26,11.50%,155,71,0,68.60%,31.40%,0.00%,58,61,199,30.70% +101326,302,3314,State-funded primary,211,115,96,54.50%,45.50%,4,1.90%,29,13.70%,74,136,1,35.10%,64.50%,0.50%,42,43,211,20.40% +101327,302,3315,State-funded primary,204,96,108,47.10%,52.90%,2,1.00%,16,7.80%,50,154,0,24.50%,75.50%,0.00%,7,13,204,6.40% +101328,302,3316,State-funded primary,209,107,102,51.20%,48.80%,8,3.80%,24,11.50%,113,96,0,54.10%,45.90%,0.00%,19,21,209,10.00% +101329,302,3317,State-funded primary,241,133,108,55.20%,44.80%,8,3.30%,36,14.90%,96,145,0,39.80%,60.20%,0.00%,48,51,211,24.20% +101330,302,3500,State-funded primary,190,103,87,54.20%,45.80%,3,1.60%,15,7.90%,131,58,1,68.90%,30.50%,0.50%,27,28,149,18.80% +101331,302,3501,State-funded primary,227,99,128,43.60%,56.40%,6,2.60%,26,11.50%,93,134,0,41.00%,59.00%,0.00%,31,34,208,16.30% +101332,302,3502,State-funded primary,433,224,209,51.70%,48.30%,15,3.50%,48,11.10%,277,156,0,64.00%,36.00%,0.00%,120,119,396,30.10% +101333,302,3504,State-funded primary,473,233,240,49.30%,50.70%,8,1.70%,35,7.40%,218,255,0,46.10%,53.90%,0.00%,33,36,417,8.60% +101334,302,3506,State-funded primary,283,133,150,47.00%,53.00%,15,5.30%,30,10.60%,43,240,0,15.20%,84.80%,0.00%,17,18,283,6.40% +101335,302,3507,State-funded primary,177,90,87,50.80%,49.20%,7,4.00%,21,11.90%,90,87,0,50.80%,49.20%,0.00%,35,39,177,22.00% +101337,302,3509,State-funded primary,501,230,271,45.90%,54.10%,17,3.40%,65,13.00%,270,231,0,53.90%,46.10%,0.00%,108,108,472,22.90% +101338,302,3510,State-funded primary,411,192,219,46.70%,53.30%,5,1.20%,38,9.20%,67,344,0,16.30%,83.70%,0.00%,52,55,411,13.40% +101339,302,3511,State-funded primary,455,223,232,49.00%,51.00%,8,1.80%,74,16.30%,376,79,0,82.60%,17.40%,0.00%,79,89,411,21.70% +101340,302,3512,State-funded primary,361,191,170,52.90%,47.10%,6,1.70%,29,8.00%,6,355,0,1.70%,98.30%,0.00%,4,7,345,2.00% +101341,302,3513,State-funded primary,430,219,211,50.90%,49.10%,8,1.90%,66,15.30%,122,308,0,28.40%,71.60%,0.00%,9,11,378,2.90% +101342,302,3514,State-funded primary,180,95,85,52.80%,47.20%,3,1.70%,18,10.00%,125,55,0,69.40%,30.60%,0.00%,39,52,180,28.90% +101345,302,4003,State-funded secondary,726,353,373,48.60%,51.40%,38,5.20%,83,11.40%,336,389,1,46.30%,53.60%,0.10%,251,293,726,40.40% +101356,302,5201,State-funded primary,415,197,218,47.50%,52.50%,19,4.60%,47,11.30%,300,115,0,72.30%,27.70%,0.00%,98,102,415,24.60% +101361,302,5404,State-funded secondary,849,809,40,95.30%,4.70%,1,0.10%,45,5.30%,215,634,0,25.30%,74.70%,0.00%,68,66,607,10.90% +101362,302,5405,State-funded secondary,1188,74,1114,6.20%,93.80%,25,2.10%,101,8.50%,205,976,7,17.30%,82.20%,0.60%,127,126,892,14.10% +101364,302,5407,State-funded secondary,1252,578,674,46.20%,53.80%,32,2.60%,92,7.30%,785,467,0,62.70%,37.30%,0.00%,231,287,1090,26.30% +101367,302,6000,Independent school,1752,747,1005,42.60%,57.40%,3,0.20%,435,24.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101368,302,6002,Independent school,166,79,87,47.60%,52.40%,3,1.80%,7,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101369,302,6004,Independent school,694,364,330,52.40%,47.60%,5,0.70%,165,23.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101370,302,6006,Independent school,159,159,0,100.00%,0.00%,0,0.00%,3,1.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101374,302,6014,Independent school,242,126,116,52.10%,47.90%,10,4.10%,53,21.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101375,302,6051,Independent school,79,42,37,53.20%,46.80%,0,0.00%,8,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101376,302,5948,State-funded primary,221,113,108,51.10%,48.90%,4,1.80%,54,24.40%,33,188,0,14.90%,85.10%,0.00%,4,4,205,2.00% +101378,302,6064,Independent school,189,81,108,42.90%,57.10%,1,0.50%,17,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101380,302,6066,Independent school,146,85,61,58.20%,41.80%,0,0.00%,10,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101381,302,6068,Independent school,165,85,80,51.50%,48.50%,2,1.20%,26,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101383,302,6077,Independent school,110,46,64,41.80%,58.20%,2,1.80%,29,26.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101385,302,6084,Independent school,283,0,283,0.00%,100.00%,1,0.40%,27,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101387,302,6089,Independent school,284,0,284,0.00%,100.00%,35,12.30%,21,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101388,302,6092,Independent school,320,320,0,100.00%,0.00%,2,0.60%,15,4.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101391,302,6098,Independent school,296,127,169,42.90%,57.10%,2,0.70%,33,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101393,302,6101,Independent school,236,119,117,50.40%,49.60%,2,0.80%,91,38.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101395,302,7005,State-funded special school,141,30,111,21.30%,78.70%,140,99.30%,1,0.70%,84,57,0,59.60%,40.40%,0.00%,59,61,141,43.30% +101396,302,7009,State-funded special school,176,66,110,37.50%,62.50%,144,81.80%,32,18.20%,113,63,0,64.20%,35.80%,0.00%,70,70,130,53.80% +101397,302,7010,State-funded special school,114,33,81,28.90%,71.10%,112,98.20%,2,1.80%,77,37,0,67.50%,32.50%,0.00%,49,41,82,50.00% +101402,303,2001,State-funded primary,432,218,214,50.50%,49.50%,18,4.20%,23,5.30%,114,318,0,26.40%,73.60%,0.00%,49,57,400,14.30% +101403,303,2002,State-funded primary,644,311,333,48.30%,51.70%,4,0.60%,52,8.10%,256,388,0,39.80%,60.20%,0.00%,50,53,617,8.60% +101413,303,2016,State-funded primary,457,243,214,53.20%,46.80%,29,6.30%,60,13.10%,50,407,0,10.90%,89.10%,0.00%,38,39,431,9.00% +101426,303,2042,State-funded primary,551,266,285,48.30%,51.70%,12,2.20%,29,5.30%,74,477,0,13.40%,86.60%,0.00%,56,59,522,11.30% +101429,303,2049,State-funded primary,305,136,169,44.60%,55.40%,4,1.30%,38,12.50%,29,266,10,9.50%,87.20%,3.30%,42,44,305,14.40% +101434,303,2056,State-funded primary,442,214,228,48.40%,51.60%,4,0.90%,36,8.10%,89,353,0,20.10%,79.90%,0.00%,16,16,416,3.80% +101437,303,2059,State-funded primary,241,111,130,46.10%,53.90%,42,17.40%,49,20.30%,69,172,0,28.60%,71.40%,0.00%,81,80,219,36.50% +101451,303,3001,State-funded primary,457,226,231,49.50%,50.50%,4,0.90%,24,5.30%,113,323,21,24.70%,70.70%,4.60%,40,43,421,10.20% +101455,303,3500,State-funded primary,420,222,198,52.90%,47.10%,5,1.20%,23,5.50%,107,313,0,25.50%,74.50%,0.00%,28,29,420,6.90% +101456,303,3501,State-funded primary,416,205,211,49.30%,50.70%,8,1.90%,33,7.90%,73,343,0,17.50%,82.50%,0.00%,40,44,389,11.30% +101457,303,3502,State-funded primary,211,115,96,54.50%,45.50%,1,0.50%,25,11.80%,86,123,2,40.80%,58.30%,0.90%,24,26,211,12.30% +101458,303,3503,State-funded primary,457,229,228,50.10%,49.90%,10,2.20%,75,16.40%,257,200,0,56.20%,43.80%,0.00%,94,103,427,24.10% +101460,303,3505,State-funded primary,209,91,118,43.50%,56.50%,1,0.50%,18,8.60%,200,9,0,95.70%,4.30%,0.00%,44,57,209,27.30% +101481,303,6002,Independent school,164,88,76,53.70%,46.30%,1,0.60%,12,7.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101482,303,6053,Independent school,308,155,153,50.30%,49.70%,0,0.00%,9,2.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101484,303,6060,Independent school,184,89,95,48.40%,51.60%,1,0.50%,10,5.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101487,303,7002,State-funded special school,81,28,53,34.60%,65.40%,81,100.00%,0,0.00%,23,58,0,28.40%,71.60%,0.00%,32,22,53,41.50% +101489,304,1000,State-funded nursery,107,54,53,50.50%,49.50%,0,0.00%,33,30.80%,71,36,0,66.40%,33.60%,0.00%,0,0,0,0.00% +101490,304,1001,State-funded nursery,106,42,64,39.60%,60.40%,0,0.00%,40,37.70%,69,37,0,65.10%,34.90%,0.00%,0,0,0,0.00% +101491,304,1003,State-funded nursery,92,40,52,43.50%,56.50%,0,0.00%,8,8.70%,23,69,0,25.00%,75.00%,0.00%,0,0,0,0.00% +101492,304,1004,State-funded nursery,75,32,43,42.70%,57.30%,0,0.00%,27,36.00%,61,14,0,81.30%,18.70%,0.00%,35,1,1,100.00% +101493,872,1108,State-funded AP school,14,3,11,21.40%,78.60%,8,57.10%,5,35.70%,2,12,0,14.30%,85.70%,0.00%,8,8,14,57.10% +101494,380,3377,State-funded primary,588,283,305,48.10%,51.90%,24,4.10%,82,13.90%,286,302,0,48.60%,51.40%,0.00%,222,226,553,40.90% +101495,304,2000,State-funded primary,390,222,168,56.90%,43.10%,9,2.30%,53,13.60%,281,109,0,72.10%,27.90%,0.00%,102,106,360,29.40% +101496,304,2003,State-funded primary,414,217,197,52.40%,47.60%,12,2.90%,77,18.60%,318,96,0,76.80%,23.20%,0.00%,150,156,382,40.80% +101497,304,2006,State-funded primary,841,415,426,49.30%,50.70%,21,2.50%,47,5.60%,448,393,0,53.30%,46.70%,0.00%,90,102,841,12.10% +101498,304,2007,State-funded primary,64,34,30,53.10%,46.90%,11,17.20%,22,34.40%,49,15,0,76.60%,23.40%,0.00%,14,14,57,24.60% +101499,304,2017,State-funded primary,311,137,174,44.10%,55.90%,15,4.80%,47,15.10%,252,59,0,81.00%,19.00%,0.00%,120,126,288,43.80% +101500,304,2018,State-funded primary,316,150,166,47.50%,52.50%,6,1.90%,28,8.90%,157,159,0,49.70%,50.30%,0.00%,24,26,316,8.20% +101501,304,2019,State-funded primary,312,143,169,45.80%,54.20%,5,1.60%,19,6.10%,185,127,0,59.30%,40.70%,0.00%,12,11,262,4.20% +101502,304,2020,State-funded primary,674,322,352,47.80%,52.20%,9,1.30%,47,7.00%,573,101,0,85.00%,15.00%,0.00%,87,88,635,13.90% +101503,304,2024,State-funded primary,590,275,315,46.60%,53.40%,32,5.40%,82,13.90%,512,78,0,86.80%,13.20%,0.00%,124,135,564,23.90% +101504,304,2028,State-funded primary,649,340,309,52.40%,47.60%,7,1.10%,80,12.30%,385,263,1,59.30%,40.50%,0.20%,203,222,628,35.40% +101506,304,2031,State-funded primary,903,412,491,45.60%,54.40%,13,1.40%,63,7.00%,861,42,0,95.30%,4.70%,0.00%,55,59,826,7.10% +101507,304,2033,State-funded primary,200,79,121,39.50%,60.50%,5,2.50%,10,5.00%,63,137,0,31.50%,68.50%,0.00%,21,22,174,12.60% +101508,304,2034,State-funded primary,234,115,119,49.10%,50.90%,11,4.70%,29,12.40%,163,70,1,69.70%,29.90%,0.40%,74,71,206,34.50% +101509,304,2038,State-funded primary,455,223,232,49.00%,51.00%,6,1.30%,99,21.80%,394,61,0,86.60%,13.40%,0.00%,94,95,415,22.90% +101510,304,2039,State-funded primary,610,309,301,50.70%,49.30%,10,1.60%,45,7.40%,472,138,0,77.40%,22.60%,0.00%,98,96,537,17.90% +101511,304,2041,State-funded primary,456,220,236,48.20%,51.80%,9,2.00%,22,4.80%,292,164,0,64.00%,36.00%,0.00%,72,79,456,17.30% +101512,304,2042,State-funded primary,449,209,240,46.50%,53.50%,14,3.10%,21,4.70%,409,36,4,91.10%,8.00%,0.90%,23,25,355,7.00% +101515,304,2049,State-funded primary,929,436,493,46.90%,53.10%,19,2.00%,102,11.00%,667,235,27,71.80%,25.30%,2.90%,90,98,843,11.60% +101518,304,2053,State-funded primary,466,214,252,45.90%,54.10%,14,3.00%,57,12.20%,314,152,0,67.40%,32.60%,0.00%,115,118,420,28.10% +101519,304,2055,State-funded primary,787,378,409,48.00%,52.00%,9,1.10%,82,10.40%,663,117,7,84.20%,14.90%,0.90%,151,155,761,20.40% +101520,304,2056,State-funded primary,233,106,127,45.50%,54.50%,6,2.60%,30,12.90%,173,60,0,74.20%,25.80%,0.00%,71,72,210,34.30% +101521,304,2057,State-funded primary,277,136,141,49.10%,50.90%,4,1.40%,30,10.80%,190,86,1,68.60%,31.00%,0.40%,110,117,266,44.00% +101522,304,2064,State-funded primary,239,130,109,54.40%,45.60%,15,6.30%,58,24.30%,190,49,0,79.50%,20.50%,0.00%,122,122,225,54.20% +101524,304,2066,State-funded primary,638,325,313,50.90%,49.10%,30,4.70%,104,16.30%,264,374,0,41.40%,58.60%,0.00%,183,192,605,31.70% +101526,304,2068,State-funded primary,463,230,233,49.70%,50.30%,10,2.20%,90,19.40%,393,70,0,84.90%,15.10%,0.00%,105,112,419,26.70% +101527,304,2070,State-funded primary,647,325,322,50.20%,49.80%,8,1.20%,81,12.50%,246,398,3,38.00%,61.50%,0.50%,120,121,609,19.90% +101528,304,2071,State-funded primary,442,221,221,50.00%,50.00%,13,2.90%,24,5.40%,337,104,1,76.20%,23.50%,0.20%,60,63,416,15.10% +101530,304,2073,State-funded primary,411,221,190,53.80%,46.20%,9,2.20%,58,14.10%,261,144,6,63.50%,35.00%,1.50%,128,133,380,35.00% +101531,304,2074,State-funded primary,668,319,349,47.80%,52.20%,63,9.40%,58,8.70%,490,178,0,73.40%,26.60%,0.00%,138,146,629,23.20% +101533,304,3301,State-funded primary,190,87,103,45.80%,54.20%,4,2.10%,26,13.70%,102,83,5,53.70%,43.70%,2.60%,47,47,167,28.10% +101534,304,3302,State-funded primary,402,211,191,52.50%,47.50%,14,3.50%,119,29.60%,297,105,0,73.90%,26.10%,0.00%,121,123,380,32.40% +101535,304,3303,State-funded primary,435,226,209,52.00%,48.00%,4,0.90%,36,8.30%,127,307,1,29.20%,70.60%,0.20%,24,26,410,6.30% +101537,304,3308,State-funded primary,200,98,102,49.00%,51.00%,1,0.50%,47,23.50%,144,56,0,72.00%,28.00%,0.00%,75,81,193,42.00% +101539,304,3501,State-funded primary,278,141,137,50.70%,49.30%,4,1.40%,56,20.10%,259,19,0,93.20%,6.80%,0.00%,36,37,278,13.30% +101542,304,3505,State-funded primary,299,146,153,48.80%,51.20%,7,2.30%,44,14.70%,198,101,0,66.20%,33.80%,0.00%,66,68,299,22.70% +101543,304,3506,State-funded primary,453,221,232,48.80%,51.20%,20,4.40%,57,12.60%,170,283,0,37.50%,62.50%,0.00%,45,50,419,11.90% +101544,304,3507,State-funded primary,257,137,120,53.30%,46.70%,7,2.70%,42,16.30%,158,98,1,61.50%,38.10%,0.40%,51,42,227,18.50% +101545,304,3508,State-funded primary,209,101,108,48.30%,51.70%,4,1.90%,36,17.20%,141,68,0,67.50%,32.50%,0.00%,70,66,192,34.40% +101546,304,3509,State-funded primary,261,119,142,45.60%,54.40%,1,0.40%,55,21.10%,247,14,0,94.60%,5.40%,0.00%,10,10,209,4.80% +101549,304,3601,State-funded primary,610,296,314,48.50%,51.50%,7,1.10%,100,16.40%,67,543,0,11.00%,89.00%,0.00%,34,35,579,6.00% +101554,304,5202,State-funded primary,221,110,111,49.80%,50.20%,8,3.60%,18,8.10%,81,140,0,36.70%,63.30%,0.00%,53,63,221,28.50% +101555,304,5203,State-funded primary,471,243,228,51.60%,48.40%,21,4.50%,87,18.50%,275,196,0,58.40%,41.60%,0.00%,114,112,432,25.90% +101556,304,5204,State-funded primary,78,32,46,41.00%,59.00%,15,19.20%,22,28.20%,58,20,0,74.40%,25.60%,0.00%,39,40,78,51.30% +101564,304,5407,State-funded secondary,712,46,666,6.50%,93.50%,23,3.20%,61,8.60%,560,150,2,78.70%,21.10%,0.30%,186,195,482,40.50% +101568,310,6079,Independent school,110,0,110,0.00%,100.00%,0,0.00%,3,2.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101569,304,6051,Independent school,88,34,54,38.60%,61.40%,6,6.80%,14,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101571,304,6057,Independent school,98,49,49,50.00%,50.00%,0,0.00%,4,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101573,307,6007,Independent school,8,5,3,62.50%,37.50%,0,0.00%,3,37.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101574,304,5949,State-funded primary,419,215,204,51.30%,48.70%,12,2.90%,62,14.80%,330,89,0,78.80%,21.20%,0.00%,119,129,419,30.80% +101575,304,6069,Independent school,94,94,0,100.00%,0.00%,0,0.00%,2,2.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101576,304,6072,Independent school,192,61,131,31.80%,68.20%,0,0.00%,8,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101581,304,7005,State-funded special school,54,8,46,14.80%,85.20%,54,100.00%,0,0.00%,25,29,0,46.30%,53.70%,0.00%,15,19,54,35.20% +101601,305,2022,State-funded primary,416,185,231,44.50%,55.50%,20,4.80%,43,10.30%,38,378,0,9.10%,90.90%,0.00%,81,89,416,21.40% +101635,305,2069,State-funded primary,413,201,212,48.70%,51.30%,13,3.10%,42,10.20%,57,356,0,13.80%,86.20%,0.00%,40,41,413,9.90% +101641,305,2080,State-funded primary,429,204,225,47.60%,52.40%,30,7.00%,45,10.50%,79,350,0,18.40%,81.60%,0.00%,126,129,429,30.10% +101676,305,5410,State-funded secondary,1089,150,939,13.80%,86.20%,0,0.00%,59,5.40%,289,799,1,26.50%,73.40%,0.10%,25,26,636,4.10% +101680,305,6000,Independent school,464,260,204,56.00%,44.00%,0,0.00%,70,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101682,305,6002,Independent school,378,10,368,2.60%,97.40%,1,0.30%,29,7.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101683,305,6003,Independent school,301,116,185,38.50%,61.50%,1,0.30%,62,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101684,305,6004,Independent school,379,24,355,6.30%,93.70%,2,0.50%,27,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101685,305,6007,Independent school,697,321,376,46.10%,53.90%,6,0.90%,176,25.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101687,305,6010,Independent school,229,102,127,44.50%,55.50%,1,0.40%,53,23.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101690,305,6066,Independent school,188,111,77,59.00%,41.00%,0,0.00%,34,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101692,305,6073,Independent school,892,892,0,100.00%,0.00%,0,0.00%,141,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101693,305,6074,Independent school,1034,253,781,24.50%,75.50%,2,0.20%,163,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101694,305,6075,Independent school,14,10,4,71.40%,28.60%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101695,305,6077,Independent school,155,0,155,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101697,305,7005,State-funded special school,112,58,54,51.80%,48.20%,112,100.00%,0,0.00%,21,91,0,18.80%,81.30%,0.00%,30,28,90,31.10% +101702,306,1000,State-funded nursery,50,24,26,48.00%,52.00%,1,2.00%,6,12.00%,12,38,0,24.00%,76.00%,0.00%,0,0,0,0.00% +101704,306,1002,State-funded nursery,88,43,45,48.90%,51.10%,0,0.00%,7,8.00%,25,63,0,28.40%,71.60%,0.00%,0,0,0,0.00% +101705,306,1003,State-funded nursery,101,49,52,48.50%,51.50%,0,0.00%,10,9.90%,51,50,0,50.50%,49.50%,0.00%,0,0,0,0.00% +101706,306,1100,State-funded AP school,89,44,45,49.40%,50.60%,1,1.10%,88,98.90%,8,81,0,9.00%,91.00%,0.00%,41,62,89,69.70% +101712,306,2003,State-funded primary,237,126,111,53.20%,46.80%,9,3.80%,51,21.50%,150,87,0,63.30%,36.70%,0.00%,114,120,237,50.60% +101720,306,2012,State-funded primary,470,238,232,50.60%,49.40%,8,1.70%,73,15.50%,345,124,1,73.40%,26.40%,0.20%,199,211,470,44.90% +101721,306,2014,State-funded primary,392,179,213,45.70%,54.30%,9,2.30%,50,12.80%,321,67,4,81.90%,17.10%,1.00%,133,127,349,36.40% +101725,306,2020,State-funded primary,409,198,211,48.40%,51.60%,6,1.50%,43,10.50%,195,214,0,47.70%,52.30%,0.00%,142,143,409,35.00% +101733,306,2033,State-funded primary,625,305,320,48.80%,51.20%,16,2.60%,85,13.60%,187,428,10,29.90%,68.50%,1.60%,239,244,585,41.70% +101745,306,2050,State-funded primary,263,263,0,100.00%,0.00%,2,0.80%,38,14.40%,163,99,1,62.00%,37.60%,0.40%,95,99,263,37.60% +101746,306,2051,State-funded primary,427,231,196,54.10%,45.90%,10,2.30%,57,13.30%,287,140,0,67.20%,32.80%,0.00%,83,84,322,26.10% +101756,306,2062,State-funded primary,214,96,118,44.90%,55.10%,4,1.90%,22,10.30%,51,163,0,23.80%,76.20%,0.00%,29,33,214,15.40% +101758,306,2065,State-funded primary,247,123,124,49.80%,50.20%,1,0.40%,27,10.90%,18,229,0,7.30%,92.70%,0.00%,14,17,247,6.90% +101759,306,2067,State-funded primary,589,297,292,50.40%,49.60%,9,1.50%,73,12.40%,103,486,0,17.50%,82.50%,0.00%,92,93,534,17.40% +101760,306,2068,State-funded primary,413,194,219,47.00%,53.00%,6,1.50%,47,11.40%,36,377,0,8.70%,91.30%,0.00%,30,38,413,9.20% +101773,306,2084,State-funded primary,418,204,214,48.80%,51.20%,5,1.20%,68,16.30%,118,300,0,28.20%,71.80%,0.00%,96,96,418,23.00% +101776,306,2090,State-funded primary,411,193,218,47.00%,53.00%,8,1.90%,63,15.30%,149,262,0,36.30%,63.70%,0.00%,145,147,387,38.00% +101778,306,2093,State-funded primary,615,306,309,49.80%,50.20%,4,0.70%,56,9.10%,150,465,0,24.40%,75.60%,0.00%,126,128,579,22.10% +101779,306,2094,State-funded primary,270,146,124,54.10%,45.90%,3,1.10%,38,14.10%,146,124,0,54.10%,45.90%,0.00%,37,37,270,13.70% +101781,306,2098,State-funded primary,218,92,126,42.20%,57.80%,3,1.40%,24,11.00%,19,199,0,8.70%,91.30%,0.00%,23,23,218,10.60% +101783,306,2102,State-funded primary,457,224,233,49.00%,51.00%,5,1.10%,91,19.90%,100,357,0,21.90%,78.10%,0.00%,77,81,415,19.50% +101785,306,2105,State-funded primary,407,206,201,50.60%,49.40%,10,2.50%,46,11.30%,203,204,0,49.90%,50.10%,0.00%,132,138,387,35.70% +101787,306,3000,State-funded primary,257,140,117,54.50%,45.50%,6,2.30%,22,8.60%,95,161,1,37.00%,62.60%,0.40%,117,118,232,50.90% +101788,306,3003,State-funded primary,418,201,217,48.10%,51.90%,8,1.90%,35,8.40%,98,320,0,23.40%,76.60%,0.00%,42,43,418,10.30% +101792,306,3300,State-funded primary,206,96,110,46.60%,53.40%,11,5.30%,42,20.40%,24,182,0,11.70%,88.30%,0.00%,27,27,206,13.10% +101793,306,3301,State-funded primary,407,195,212,47.90%,52.10%,12,2.90%,59,14.50%,168,238,1,41.30%,58.50%,0.20%,96,98,407,24.10% +101795,306,3401,State-funded primary,206,101,105,49.00%,51.00%,4,1.90%,51,24.80%,79,126,1,38.30%,61.20%,0.50%,83,89,206,43.20% +101797,306,3404,State-funded primary,201,114,87,56.70%,43.30%,5,2.50%,17,8.50%,58,143,0,28.90%,71.10%,0.00%,26,27,201,13.40% +101800,306,3408,State-funded primary,406,224,182,55.20%,44.80%,10,2.50%,55,13.50%,110,296,0,27.10%,72.90%,0.00%,95,98,406,24.10% +101803,306,3412,State-funded primary,160,89,71,55.60%,44.40%,0,0.00%,30,18.80%,84,76,0,52.50%,47.50%,0.00%,39,42,126,33.30% +101811,306,4600,State-funded secondary,764,398,366,52.10%,47.90%,21,2.70%,125,16.40%,115,649,0,15.10%,84.90%,0.00%,218,231,662,34.90% +101814,306,4702,State-funded secondary,563,307,256,54.50%,45.50%,4,0.70%,83,14.70%,358,204,1,63.60%,36.20%,0.20%,225,242,563,43.00% +101815,306,5200,State-funded primary,355,174,181,49.00%,51.00%,3,0.80%,53,14.90%,90,265,0,25.40%,74.60%,0.00%,112,112,339,33.00% +101821,306,5403,State-funded secondary,652,266,386,40.80%,59.20%,15,2.30%,87,13.30%,234,406,12,35.90%,62.30%,1.80%,218,229,572,40.00% +101829,306,6003,Independent school,376,39,337,10.40%,89.60%,2,0.50%,32,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101831,306,6005,Independent school,116,0,116,0.00%,100.00%,1,0.90%,9,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101834,306,6008,Independent school,138,68,70,49.30%,50.70%,1,0.70%,14,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101835,306,6009,Independent school,1186,470,716,39.60%,60.40%,2,0.20%,248,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101837,306,6014,Independent school,1561,0,1561,0.00%,100.00%,3,0.20%,286,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101839,306,6068,Independent school,144,68,76,47.20%,52.80%,0,0.00%,26,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101842,306,6077,Independent school,1055,86,969,8.20%,91.80%,0,0.00%,1,0.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101843,306,6078,Independent school,29,14,15,48.30%,51.70%,28,96.60%,1,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101845,306,6081,Independent school,750,750,0,100.00%,0.00%,0,0.00%,108,14.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101846,306,6082,Independent school,608,608,0,100.00%,0.00%,3,0.50%,58,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101849,306,6900,State-funded secondary,1397,904,493,64.70%,35.30%,48,3.40%,247,17.70%,20,1377,0,1.40%,98.60%,0.00%,145,62,392,15.80% +101851,306,7000,State-funded special school,244,74,170,30.30%,69.70%,244,100.00%,0,0.00%,59,185,0,24.20%,75.80%,0.00%,130,131,231,56.70% +101852,306,7001,State-funded special school,116,50,66,43.10%,56.90%,106,91.40%,10,8.60%,40,76,0,34.50%,65.50%,0.00%,55,56,104,53.80% +101854,306,7005,State-funded special school,245,67,178,27.30%,72.70%,212,86.50%,33,13.50%,83,124,38,33.90%,50.60%,15.50%,96,97,245,39.60% +101855,306,7006,State-funded special school,165,42,123,25.50%,74.50%,147,89.10%,18,10.90%,74,91,0,44.80%,55.20%,0.00%,81,82,153,53.60% +101856,306,7008,State-funded special school,139,39,100,28.10%,71.90%,139,100.00%,0,0.00%,61,78,0,43.90%,56.10%,0.00%,70,50,87,57.50% +101858,307,1000,State-funded nursery,101,38,63,37.60%,62.40%,0,0.00%,23,22.80%,75,26,0,74.30%,25.70%,0.00%,0,0,0,0.00% +101860,307,1002,State-funded nursery,115,55,60,47.80%,52.20%,4,3.50%,25,21.70%,88,22,5,76.50%,19.10%,4.30%,4,0,0,0.00% +101861,307,1003,State-funded nursery,130,49,81,37.70%,62.30%,10,7.70%,24,18.50%,97,33,0,74.60%,25.40%,0.00%,0,0,2,0.00% +101862,307,1007,State-funded nursery,143,61,82,42.70%,57.30%,0,0.00%,37,25.90%,91,52,0,63.60%,36.40%,0.00%,0,0,0,0.00% +101867,307,2006,State-funded primary,379,188,191,49.60%,50.40%,16,4.20%,56,14.80%,280,99,0,73.90%,26.10%,0.00%,165,171,357,47.90% +101868,307,2022,State-funded primary,197,89,108,45.20%,54.80%,13,6.60%,26,13.20%,124,73,0,62.90%,37.10%,0.00%,102,104,197,52.80% +101869,307,2033,State-funded primary,335,165,170,49.30%,50.70%,9,2.70%,28,8.40%,252,83,0,75.20%,24.80%,0.00%,118,122,308,39.60% +101870,307,2046,State-funded primary,656,309,347,47.10%,52.90%,20,3.00%,73,11.10%,315,339,2,48.00%,51.70%,0.30%,105,118,606,19.50% +101873,307,2058,State-funded primary,474,236,238,49.80%,50.20%,40,8.40%,78,16.50%,340,134,0,71.70%,28.30%,0.00%,150,161,425,37.90% +101874,307,2059,State-funded primary,488,235,253,48.20%,51.80%,10,2.00%,42,8.60%,145,343,0,29.70%,70.30%,0.00%,123,128,446,28.70% +101875,307,2067,State-funded primary,454,227,227,50.00%,50.00%,18,4.00%,103,22.70%,322,131,1,70.90%,28.90%,0.20%,142,150,412,36.40% +101876,307,2071,State-funded primary,675,335,340,49.60%,50.40%,33,4.90%,89,13.20%,436,239,0,64.60%,35.40%,0.00%,178,184,627,29.30% +101877,307,2076,State-funded primary,438,203,235,46.30%,53.70%,7,1.60%,53,12.10%,208,229,1,47.50%,52.30%,0.20%,128,130,401,32.40% +101878,307,2083,State-funded primary,458,230,228,50.20%,49.80%,36,7.90%,52,11.40%,370,88,0,80.80%,19.20%,0.00%,92,93,415,22.40% +101879,307,2088,State-funded primary,423,201,222,47.50%,52.50%,46,10.90%,27,6.40%,304,119,0,71.90%,28.10%,0.00%,129,134,387,34.60% +101880,307,2092,State-funded primary,306,164,142,53.60%,46.40%,9,2.90%,53,17.30%,129,177,0,42.20%,57.80%,0.00%,104,108,283,38.20% +101881,307,2094,State-funded primary,391,192,199,49.10%,50.90%,27,6.90%,32,8.20%,225,165,1,57.50%,42.20%,0.30%,131,134,357,37.50% +101884,307,2115,State-funded primary,406,187,219,46.10%,53.90%,14,3.40%,26,6.40%,358,48,0,88.20%,11.80%,0.00%,98,102,406,25.10% +101885,307,2121,State-funded primary,646,299,347,46.30%,53.70%,11,1.70%,67,10.40%,462,184,0,71.50%,28.50%,0.00%,199,209,594,35.20% +101886,307,2125,State-funded primary,657,315,342,47.90%,52.10%,30,4.60%,63,9.60%,382,275,0,58.10%,41.90%,0.00%,196,205,594,34.50% +101887,307,2150,State-funded primary,484,229,255,47.30%,52.70%,9,1.90%,43,8.90%,431,53,0,89.00%,11.00%,0.00%,88,95,406,23.40% +101888,307,2151,State-funded primary,422,200,222,47.40%,52.60%,9,2.10%,43,10.20%,206,216,0,48.80%,51.20%,0.00%,107,109,402,27.10% +101889,307,2153,State-funded primary,402,214,188,53.20%,46.80%,12,3.00%,100,24.90%,277,125,0,68.90%,31.10%,0.00%,171,174,365,47.70% +101890,307,2154,State-funded primary,352,186,166,52.80%,47.20%,3,0.90%,13,3.70%,144,207,1,40.90%,58.80%,0.30%,78,82,352,23.30% +101891,307,2161,State-funded primary,247,125,122,50.60%,49.40%,29,11.70%,29,11.70%,161,86,0,65.20%,34.80%,0.00%,82,85,222,38.30% +101892,307,2162,State-funded primary,421,212,209,50.40%,49.60%,11,2.60%,35,8.30%,400,21,0,95.00%,5.00%,0.00%,88,89,366,24.30% +101893,307,2163,State-funded primary,457,221,236,48.40%,51.60%,18,3.90%,78,17.10%,410,47,0,89.70%,10.30%,0.00%,139,145,407,35.60% +101894,307,2164,State-funded primary,414,215,199,51.90%,48.10%,7,1.70%,59,14.30%,326,88,0,78.70%,21.30%,0.00%,123,127,368,34.50% +101895,307,2165,State-funded primary,422,215,207,50.90%,49.10%,8,1.90%,77,18.20%,227,195,0,53.80%,46.20%,0.00%,147,156,396,39.40% +101896,307,2166,State-funded primary,454,213,241,46.90%,53.10%,7,1.50%,62,13.70%,404,50,0,89.00%,11.00%,0.00%,70,73,379,19.30% +101897,307,2167,State-funded primary,994,485,509,48.80%,51.20%,27,2.70%,53,5.30%,195,799,0,19.60%,80.40%,0.00%,57,64,871,7.30% +101898,307,2168,State-funded primary,900,456,444,50.70%,49.30%,22,2.40%,123,13.70%,579,321,0,64.30%,35.70%,0.00%,286,306,821,37.30% +101899,307,2169,State-funded primary,638,291,347,45.60%,54.40%,6,0.90%,75,11.80%,438,199,1,68.70%,31.20%,0.20%,174,188,589,31.90% +101900,307,2170,State-funded primary,392,186,206,47.40%,52.60%,38,9.70%,43,11.00%,330,62,0,84.20%,15.80%,0.00%,119,136,359,37.90% +101901,307,2171,State-funded primary,685,327,358,47.70%,52.30%,14,2.00%,94,13.70%,490,191,4,71.50%,27.90%,0.60%,132,137,647,21.20% +101902,307,2172,State-funded primary,511,251,260,49.10%,50.90%,35,6.80%,78,15.30%,302,209,0,59.10%,40.90%,0.00%,190,198,475,41.70% +101903,307,2173,State-funded primary,536,267,269,49.80%,50.20%,9,1.70%,69,12.90%,460,76,0,85.80%,14.20%,0.00%,140,147,493,29.80% +101904,307,2174,State-funded primary,677,346,331,51.10%,48.90%,18,2.70%,49,7.20%,146,531,0,21.60%,78.40%,0.00%,57,64,625,10.20% +101905,307,2175,State-funded primary,450,209,241,46.40%,53.60%,14,3.10%,44,9.80%,127,323,0,28.20%,71.80%,0.00%,93,96,414,23.20% +101906,307,2176,State-funded primary,452,236,216,52.20%,47.80%,11,2.40%,46,10.20%,338,114,0,74.80%,25.20%,0.00%,124,130,411,31.60% +101907,307,2177,State-funded primary,375,188,187,50.10%,49.90%,8,2.10%,40,10.70%,286,84,5,76.30%,22.40%,1.30%,108,116,333,34.80% +101908,307,2178,State-funded primary,217,108,109,49.80%,50.20%,5,2.30%,31,14.30%,141,76,0,65.00%,35.00%,0.00%,90,92,189,48.70% +101909,307,2179,State-funded primary,232,124,108,53.40%,46.60%,7,3.00%,29,12.50%,227,5,0,97.80%,2.20%,0.00%,72,75,210,35.70% +101910,307,2180,State-funded primary,674,326,348,48.40%,51.60%,16,2.40%,47,7.00%,666,8,0,98.80%,1.20%,0.00%,163,182,601,30.30% +101911,307,2181,State-funded primary,460,244,216,53.00%,47.00%,8,1.70%,57,12.40%,305,155,0,66.30%,33.70%,0.00%,137,141,404,34.90% +101912,307,2182,State-funded primary,674,317,357,47.00%,53.00%,13,1.90%,56,8.30%,341,333,0,50.60%,49.40%,0.00%,108,114,632,18.00% +101913,307,2183,State-funded primary,423,191,232,45.20%,54.80%,8,1.90%,55,13.00%,376,47,0,88.90%,11.10%,0.00%,113,114,374,30.50% +101916,307,2186,State-funded primary,447,220,227,49.20%,50.80%,11,2.50%,60,13.40%,407,40,0,91.10%,8.90%,0.00%,65,74,414,17.90% +101919,307,3500,State-funded primary,407,207,200,50.90%,49.10%,5,1.20%,44,10.80%,164,237,6,40.30%,58.20%,1.50%,32,32,388,8.20% +101920,307,3503,State-funded primary,448,218,230,48.70%,51.30%,12,2.70%,56,12.50%,223,225,0,49.80%,50.20%,0.00%,93,94,408,23.00% +101921,307,3504,State-funded primary,404,208,196,51.50%,48.50%,14,3.50%,40,9.90%,312,92,0,77.20%,22.80%,0.00%,45,52,367,14.20% +101922,307,3505,State-funded primary,237,122,115,51.50%,48.50%,1,0.40%,33,13.90%,139,98,0,58.60%,41.40%,0.00%,54,59,209,28.20% +101923,307,3506,State-funded primary,354,166,188,46.90%,53.10%,11,3.10%,27,7.60%,173,181,0,48.90%,51.10%,0.00%,75,78,321,24.30% +101924,307,3507,State-funded primary,616,295,321,47.90%,52.10%,21,3.40%,61,9.90%,316,300,0,51.30%,48.70%,0.00%,80,85,580,14.70% +101925,307,3508,State-funded primary,507,261,246,51.50%,48.50%,21,4.10%,38,7.50%,249,258,0,49.10%,50.90%,0.00%,81,92,468,19.70% +101926,307,3509,State-funded primary,449,236,213,52.60%,47.40%,20,4.50%,51,11.40%,227,222,0,50.60%,49.40%,0.00%,98,101,415,24.30% +101927,307,3510,State-funded primary,420,202,218,48.10%,51.90%,8,1.90%,42,10.00%,271,149,0,64.50%,35.50%,0.00%,62,61,386,15.80% +101928,307,4020,State-funded secondary,1484,699,785,47.10%,52.90%,17,1.10%,154,10.40%,1374,110,0,92.60%,7.40%,0.00%,457,426,1251,34.10% +101934,307,4603,State-funded secondary,1983,1008,975,50.80%,49.20%,49,2.50%,146,7.40%,1091,892,0,55.00%,45.00%,0.00%,222,202,1532,13.20% +101939,307,5400,State-funded secondary,1666,767,899,46.00%,54.00%,21,1.30%,195,11.70%,1055,611,0,63.30%,36.70%,0.00%,561,545,1365,39.90% +101940,307,5401,State-funded secondary,1945,967,978,49.70%,50.30%,72,3.70%,183,9.40%,1405,540,0,72.20%,27.80%,0.00%,558,517,1488,34.70% +101941,307,5402,State-funded secondary,1305,1305,0,100.00%,0.00%,17,1.30%,139,10.70%,851,451,3,65.20%,34.60%,0.20%,363,343,1056,32.50% +101943,307,5404,State-funded secondary,924,405,519,43.80%,56.20%,11,1.20%,82,8.90%,482,441,1,52.20%,47.70%,0.10%,282,296,726,40.80% +101944,307,6000,Independent school,329,0,329,0.00%,100.00%,0,0.00%,48,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101945,307,6002,Independent school,86,75,11,87.20%,12.80%,0,0.00%,10,11.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101946,307,6005,Independent school,454,451,3,99.30%,0.70%,0,0.00%,71,15.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101947,307,6006,Independent school,1091,369,722,33.80%,66.20%,4,0.40%,326,29.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101949,212,6051,Independent school,124,109,15,87.90%,12.10%,1,0.80%,15,12.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101953,307,6064,Independent school,91,12,79,13.20%,86.80%,91,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101954,307,6065,Independent school,908,908,0,100.00%,0.00%,2,0.20%,115,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101955,307,6066,Independent school,119,46,73,38.70%,61.30%,0,0.00%,15,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101957,307,6068,Independent school,559,269,290,48.10%,51.90%,0,0.00%,34,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101958,307,6070,Independent school,309,130,179,42.10%,57.90%,2,0.60%,14,4.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101959,309,6081,Independent school,60,25,35,41.70%,58.30%,0,0.00%,3,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101961,307,6074,Independent school,273,146,127,53.50%,46.50%,0,0.00%,35,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101962,307,6075,Independent school,78,31,47,39.70%,60.30%,2,2.60%,8,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101964,307,6013,Independent school,61,19,42,31.10%,68.90%,15,24.60%,10,16.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +101965,307,7005,State-funded special school,222,64,158,28.80%,71.20%,222,100.00%,0,0.00%,135,87,0,60.80%,39.20%,0.00%,125,98,166,59.00% +101966,307,7007,State-funded special school,170,44,126,25.90%,74.10%,170,100.00%,0,0.00%,70,100,0,41.20%,58.80%,0.00%,76,79,170,46.50% +101968,307,7010,State-funded special school,158,40,118,25.30%,74.70%,144,91.10%,14,8.90%,106,52,0,67.10%,32.90%,0.00%,49,48,144,33.30% +101969,307,7012,State-funded special school,136,52,84,38.20%,61.80%,136,100.00%,0,0.00%,76,60,0,55.90%,44.10%,0.00%,65,64,126,50.80% +101970,307,7013,State-funded special school,156,33,123,21.20%,78.80%,156,100.00%,0,0.00%,50,106,0,32.10%,67.90%,0.00%,67,63,130,48.50% +101971,307,7014,State-funded special school,109,32,77,29.40%,70.60%,109,100.00%,0,0.00%,74,35,0,67.90%,32.10%,0.00%,45,31,72,43.10% +101972,308,1100,State-funded AP school,43,10,33,23.30%,76.70%,3,7.00%,28,65.10%,8,33,2,18.60%,76.70%,4.70%,19,32,43,74.40% +101981,308,2009,State-funded primary,381,190,191,49.90%,50.10%,15,3.90%,49,12.90%,144,237,0,37.80%,62.20%,0.00%,182,193,381,50.70% +101983,308,2011,State-funded primary,314,141,173,44.90%,55.10%,19,6.10%,61,19.40%,204,110,0,65.00%,35.00%,0.00%,118,118,258,45.70% +101984,308,2012,State-funded primary,397,195,202,49.10%,50.90%,22,5.50%,39,9.80%,176,221,0,44.30%,55.70%,0.00%,126,129,364,35.40% +101988,308,2025,State-funded primary,883,442,441,50.10%,49.90%,34,3.90%,81,9.20%,740,143,0,83.80%,16.20%,0.00%,300,307,797,38.50% +101989,308,2028,State-funded primary,603,296,307,49.10%,50.90%,25,4.10%,91,15.10%,355,248,0,58.90%,41.10%,0.00%,128,134,603,22.20% +101992,308,2032,State-funded primary,309,152,157,49.20%,50.80%,17,5.50%,33,10.70%,189,119,1,61.20%,38.50%,0.30%,123,126,288,43.80% +101993,308,2033,State-funded primary,838,401,437,47.90%,52.10%,25,3.00%,121,14.40%,443,395,0,52.90%,47.10%,0.00%,244,252,838,30.10% +101994,308,2036,State-funded primary,207,92,115,44.40%,55.60%,10,4.80%,18,8.70%,69,132,6,33.30%,63.80%,2.90%,8,8,207,3.90% +101996,308,2039,State-funded primary,347,168,179,48.40%,51.60%,13,3.70%,32,9.20%,152,195,0,43.80%,56.20%,0.00%,74,79,347,22.80% +101997,308,2040,State-funded primary,365,163,202,44.70%,55.30%,9,2.50%,37,10.10%,211,151,3,57.80%,41.40%,0.80%,54,55,299,18.40% +101998,308,2042,State-funded primary,406,207,199,51.00%,49.00%,20,4.90%,75,18.50%,222,184,0,54.70%,45.30%,0.00%,175,184,378,48.70% +101999,308,2048,State-funded primary,626,315,311,50.30%,49.70%,13,2.10%,42,6.70%,77,549,0,12.30%,87.70%,0.00%,74,76,626,12.10% +102002,308,2053,State-funded primary,579,281,298,48.50%,51.50%,35,6.00%,100,17.30%,323,256,0,55.80%,44.20%,0.00%,264,269,538,50.00% +102003,308,2055,State-funded primary,475,230,245,48.40%,51.60%,22,4.60%,28,5.90%,267,208,0,56.20%,43.80%,0.00%,84,93,475,19.60% +102004,308,2056,State-funded primary,447,219,228,49.00%,51.00%,11,2.50%,29,6.50%,144,300,3,32.20%,67.10%,0.70%,50,50,357,14.00% +102005,308,2061,State-funded primary,238,104,134,43.70%,56.30%,17,7.10%,38,16.00%,122,116,0,51.30%,48.70%,0.00%,109,110,221,49.80% +102006,308,2062,State-funded primary,282,146,136,51.80%,48.20%,5,1.80%,27,9.60%,226,55,1,80.10%,19.50%,0.40%,72,72,228,31.60% +102014,308,2074,State-funded primary,412,197,215,47.80%,52.20%,12,2.90%,38,9.20%,347,62,3,84.20%,15.00%,0.70%,123,126,382,33.00% +102022,308,2082,State-funded primary,430,207,223,48.10%,51.90%,36,8.40%,13,3.00%,264,165,1,61.40%,38.40%,0.20%,117,119,339,35.10% +102024,308,2084,State-funded primary,459,222,237,48.40%,51.60%,16,3.50%,45,9.80%,226,223,10,49.20%,48.60%,2.20%,190,198,393,50.40% +102025,308,2085,State-funded primary,629,304,325,48.30%,51.70%,24,3.80%,51,8.10%,201,428,0,32.00%,68.00%,0.00%,67,69,629,11.00% +102026,308,3302,State-funded primary,284,141,143,49.60%,50.40%,8,2.80%,28,9.90%,220,64,0,77.50%,22.50%,0.00%,81,92,284,32.40% +102027,308,3303,State-funded primary,106,52,54,49.10%,50.90%,2,1.90%,21,19.80%,20,86,0,18.90%,81.10%,0.00%,14,16,95,16.80% +102028,308,3304,State-funded primary,227,118,109,52.00%,48.00%,6,2.60%,21,9.30%,45,180,2,19.80%,79.30%,0.90%,35,37,204,18.10% +102029,308,3307,State-funded primary,407,221,186,54.30%,45.70%,10,2.50%,16,3.90%,61,346,0,15.00%,85.00%,0.00%,63,72,407,17.70% +102030,308,3308,State-funded primary,197,102,95,51.80%,48.20%,4,2.00%,12,6.10%,59,138,0,29.90%,70.10%,0.00%,37,38,197,19.30% +102031,308,3309,State-funded primary,207,99,108,47.80%,52.20%,10,4.80%,31,15.00%,101,104,2,48.80%,50.20%,1.00%,68,73,207,35.30% +102032,308,3310,State-funded primary,283,130,153,45.90%,54.10%,9,3.20%,32,11.30%,208,75,0,73.50%,26.50%,0.00%,106,114,263,43.30% +102033,308,3311,State-funded primary,190,97,93,51.10%,48.90%,8,4.20%,16,8.40%,60,130,0,31.60%,68.40%,0.00%,78,82,190,43.20% +102034,308,3312,State-funded primary,441,211,230,47.80%,52.20%,19,4.30%,29,6.60%,119,322,0,27.00%,73.00%,0.00%,62,63,411,15.30% +102035,308,3313,State-funded primary,415,208,207,50.10%,49.90%,6,1.40%,30,7.20%,10,405,0,2.40%,97.60%,0.00%,12,13,415,3.10% +102036,308,3500,State-funded primary,373,168,205,45.00%,55.00%,11,2.90%,46,12.30%,191,181,1,51.20%,48.50%,0.30%,106,111,339,32.70% +102037,308,3501,State-funded primary,390,200,190,51.30%,48.70%,22,5.60%,52,13.30%,286,104,0,73.30%,26.70%,0.00%,149,151,390,38.70% +102038,308,3502,State-funded primary,560,275,285,49.10%,50.90%,9,1.60%,32,5.70%,122,438,0,21.80%,78.20%,0.00%,62,68,560,12.10% +102039,308,3503,State-funded primary,416,202,214,48.60%,51.40%,11,2.60%,35,8.40%,90,326,0,21.60%,78.40%,0.00%,22,24,416,5.80% +102040,308,3504,State-funded primary,196,104,92,53.10%,46.90%,7,3.60%,20,10.20%,55,141,0,28.10%,71.90%,0.00%,40,40,196,20.40% +102041,308,3505,State-funded primary,577,292,285,50.60%,49.40%,24,4.20%,89,15.40%,437,140,0,75.70%,24.30%,0.00%,204,210,527,39.80% +102045,308,4026,State-funded secondary,1677,844,833,50.30%,49.70%,69,4.10%,169,10.10%,705,895,77,42.00%,53.40%,4.60%,338,266,1193,22.30% +102048,308,4030,State-funded secondary,1103,1103,0,100.00%,0.00%,14,1.30%,73,6.60%,490,557,56,44.40%,50.50%,5.10%,283,271,896,30.20% +102049,308,4037,State-funded secondary,1084,527,557,48.60%,51.40%,40,3.70%,205,18.90%,398,685,1,36.70%,63.20%,0.10%,330,326,876,37.20% +102052,308,4702,State-funded secondary,738,352,386,47.70%,52.30%,14,1.90%,136,18.40%,390,341,7,52.80%,46.20%,0.90%,259,275,622,44.20% +102053,308,4706,State-funded secondary,1071,1071,0,100.00%,0.00%,16,1.50%,52,4.90%,207,861,3,19.30%,80.40%,0.30%,221,224,897,25.00% +102054,308,5200,State-funded primary,192,96,96,50.00%,50.00%,10,5.20%,28,14.60%,64,128,0,33.30%,66.70%,0.00%,69,71,192,37.00% +102055,308,5400,State-funded secondary,1357,579,778,42.70%,57.30%,4,0.30%,8,0.60%,295,1053,9,21.70%,77.60%,0.70%,88,81,956,8.50% +102056,308,5401,State-funded secondary,677,308,369,45.50%,54.50%,19,2.80%,23,3.40%,361,313,3,53.30%,46.20%,0.40%,218,245,677,36.20% +102058,308,5403,State-funded secondary,1107,36,1071,3.30%,96.70%,30,2.70%,83,7.50%,380,721,6,34.30%,65.10%,0.50%,251,249,862,28.90% +102060,308,6000,Independent school,131,0,131,0.00%,100.00%,5,3.80%,19,14.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102061,308,6001,Independent school,253,253,0,100.00%,0.00%,1,0.40%,59,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102062,308,6052,Independent school,123,63,60,51.20%,48.80%,1,0.80%,8,6.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102063,308,6055,Independent school,236,106,130,44.90%,55.10%,4,1.70%,27,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102064,308,6056,Independent school,107,58,49,54.20%,45.80%,3,2.80%,13,12.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102065,308,6062,Independent school,472,174,298,36.90%,63.10%,0,0.00%,13,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102066,308,7000,State-funded special school,189,36,153,19.00%,81.00%,188,99.50%,1,0.50%,80,108,1,42.30%,57.10%,0.50%,108,90,140,64.30% +102067,308,7002,State-funded special school,444,119,325,26.80%,73.20%,440,99.10%,4,0.90%,128,313,3,28.80%,70.50%,0.70%,214,199,360,55.30% +102069,308,7005,State-funded special school,137,47,90,34.30%,65.70%,137,100.00%,0,0.00%,31,106,0,22.60%,77.40%,0.00%,70,48,98,49.00% +102070,308,7007,State-funded special school,164,67,97,40.90%,59.10%,164,100.00%,0,0.00%,72,92,0,43.90%,56.10%,0.00%,93,79,139,56.80% +102071,309,1000,State-funded nursery,139,60,79,43.20%,56.80%,3,2.20%,42,30.20%,99,40,0,71.20%,28.80%,0.00%,0,0,0,0.00% +102072,309,1001,State-funded nursery,162,79,83,48.80%,51.20%,3,1.90%,23,14.20%,76,85,1,46.90%,52.50%,0.60%,0,0,0,0.00% +102073,309,1003,State-funded nursery,158,75,83,47.50%,52.50%,2,1.30%,17,10.80%,42,116,0,26.60%,73.40%,0.00%,0,0,0,0.00% +102078,309,2002,State-funded primary,222,112,110,50.50%,49.50%,6,2.70%,34,15.30%,116,106,0,52.30%,47.70%,0.00%,43,46,222,20.70% +102079,309,2003,State-funded primary,212,107,105,50.50%,49.50%,4,1.90%,17,8.00%,99,113,0,46.70%,53.30%,0.00%,17,18,177,10.20% +102080,309,2004,State-funded primary,357,153,204,42.90%,57.10%,7,2.00%,39,10.90%,130,226,1,36.40%,63.30%,0.30%,82,86,357,24.10% +102081,309,2005,State-funded primary,327,165,162,50.50%,49.50%,7,2.10%,16,4.90%,109,218,0,33.30%,66.70%,0.00%,35,35,269,13.00% +102084,309,2008,State-funded primary,213,112,101,52.60%,47.40%,14,6.60%,45,21.10%,78,135,0,36.60%,63.40%,0.00%,39,43,213,20.20% +102085,309,2009,State-funded primary,204,95,109,46.60%,53.40%,8,3.90%,22,10.80%,65,139,0,31.90%,68.10%,0.00%,19,19,173,11.00% +102087,309,2015,State-funded primary,357,195,162,54.60%,45.40%,19,5.30%,29,8.10%,252,105,0,70.60%,29.40%,0.00%,128,132,305,43.30% +102091,309,2020,State-funded primary,478,232,246,48.50%,51.50%,14,2.90%,88,18.40%,310,168,0,64.90%,35.10%,0.00%,161,162,392,41.30% +102092,309,2022,State-funded primary,445,207,238,46.50%,53.50%,18,4.00%,39,8.80%,190,254,1,42.70%,57.10%,0.20%,55,55,403,13.60% +102094,309,2025,State-funded primary,400,175,225,43.80%,56.30%,14,3.50%,59,14.80%,279,121,0,69.80%,30.30%,0.00%,162,168,357,47.10% +102097,309,2029,State-funded primary,656,291,365,44.40%,55.60%,8,1.20%,77,11.70%,213,443,0,32.50%,67.50%,0.00%,48,51,627,8.10% +102098,309,2031,State-funded primary,418,199,219,47.60%,52.40%,8,1.90%,53,12.70%,197,221,0,47.10%,52.90%,0.00%,14,16,418,3.80% +102106,309,2041,State-funded primary,319,133,186,41.70%,58.30%,18,5.60%,57,17.90%,74,242,3,23.20%,75.90%,0.90%,70,72,319,22.60% +102107,309,2042,State-funded primary,266,131,135,49.20%,50.80%,5,1.90%,28,10.50%,90,176,0,33.80%,66.20%,0.00%,26,29,220,13.20% +102110,309,2045,State-funded primary,210,87,123,41.40%,58.60%,3,1.40%,35,16.70%,74,136,0,35.20%,64.80%,0.00%,31,37,210,17.60% +102111,309,2046,State-funded primary,215,108,107,50.20%,49.80%,10,4.70%,10,4.70%,65,150,0,30.20%,69.80%,0.00%,13,14,176,8.00% +102115,309,2051,State-funded primary,203,104,99,51.20%,48.80%,12,5.90%,30,14.80%,148,55,0,72.90%,27.10%,0.00%,63,73,203,36.00% +102120,309,2057,State-funded primary,293,145,148,49.50%,50.50%,14,4.80%,35,11.90%,248,45,0,84.60%,15.40%,0.00%,152,148,271,54.60% +102121,309,2058,State-funded primary,876,380,496,43.40%,56.60%,18,2.10%,107,12.20%,242,634,0,27.60%,72.40%,0.00%,83,83,831,10.00% +102124,309,2062,State-funded primary,485,238,247,49.10%,50.90%,16,3.30%,85,17.50%,314,171,0,64.70%,35.30%,0.00%,214,212,410,51.70% +102125,309,2063,State-funded primary,407,186,221,45.70%,54.30%,18,4.40%,53,13.00%,329,78,0,80.80%,19.20%,0.00%,134,147,385,38.20% +102127,309,2065,State-funded primary,148,77,71,52.00%,48.00%,7,4.70%,21,14.20%,101,47,0,68.20%,31.80%,0.00%,35,42,125,33.60% +102128,309,2072,State-funded primary,696,321,375,46.10%,53.90%,18,2.60%,51,7.30%,181,515,0,26.00%,74.00%,0.00%,33,32,630,5.10% +102129,309,2075,State-funded primary,403,187,216,46.40%,53.60%,11,2.70%,67,16.60%,164,239,0,40.70%,59.30%,0.00%,97,99,366,27.00% +102130,309,2076,State-funded primary,218,104,114,47.70%,52.30%,9,4.10%,20,9.20%,90,128,0,41.30%,58.70%,0.00%,39,34,188,18.10% +102131,309,2077,State-funded primary,473,237,236,50.10%,49.90%,22,4.70%,52,11.00%,190,283,0,40.20%,59.80%,0.00%,130,143,389,36.80% +102132,309,3000,State-funded primary,215,108,107,50.20%,49.80%,13,6.00%,23,10.70%,40,175,0,18.60%,81.40%,0.00%,24,23,196,11.70% +102135,309,3302,State-funded primary,426,213,213,50.00%,50.00%,2,0.50%,22,5.20%,110,316,0,25.80%,74.20%,0.00%,35,36,398,9.00% +102136,309,3303,State-funded primary,193,99,94,51.30%,48.70%,2,1.00%,20,10.40%,52,141,0,26.90%,73.10%,0.00%,12,13,193,6.70% +102139,309,3306,State-funded primary,425,217,208,51.10%,48.90%,16,3.80%,52,12.20%,131,294,0,30.80%,69.20%,0.00%,164,154,376,41.00% +102142,309,3500,State-funded primary,408,212,196,52.00%,48.00%,10,2.50%,37,9.10%,229,178,1,56.10%,43.60%,0.20%,51,53,380,13.90% +102143,309,3501,State-funded primary,320,155,165,48.40%,51.60%,19,5.90%,54,16.90%,221,99,0,69.10%,30.90%,0.00%,138,140,320,43.80% +102144,309,3502,State-funded primary,292,137,155,46.90%,53.10%,9,3.10%,77,26.40%,258,32,2,88.40%,11.00%,0.70%,64,72,268,26.90% +102145,309,3503,State-funded primary,171,87,84,50.90%,49.10%,7,4.10%,30,17.50%,139,32,0,81.30%,18.70%,0.00%,69,72,171,42.10% +102146,309,3504,State-funded primary,167,82,85,49.10%,50.90%,10,6.00%,19,11.40%,145,22,0,86.80%,13.20%,0.00%,28,28,167,16.80% +102147,309,3505,State-funded primary,136,74,62,54.40%,45.60%,7,5.10%,13,9.60%,104,32,0,76.50%,23.50%,0.00%,30,30,108,27.80% +102148,309,3506,State-funded primary,64,29,35,45.30%,54.70%,5,7.80%,3,4.70%,9,55,0,14.10%,85.90%,0.00%,11,11,64,17.20% +102149,309,3507,State-funded primary,198,92,106,46.50%,53.50%,4,2.00%,26,13.10%,141,57,0,71.20%,28.80%,0.00%,62,58,172,33.70% +102150,309,3508,State-funded primary,151,68,83,45.00%,55.00%,9,6.00%,9,6.00%,88,63,0,58.30%,41.70%,0.00%,32,35,151,23.20% +102151,309,3509,State-funded primary,121,57,64,47.10%,52.90%,7,5.80%,12,9.90%,8,113,0,6.60%,93.40%,0.00%,28,29,121,24.00% +102152,309,3510,State-funded primary,225,116,109,51.60%,48.40%,8,3.60%,25,11.10%,126,99,0,56.00%,44.00%,0.00%,48,48,198,24.20% +102153,309,4029,State-funded secondary,754,754,0,100.00%,0.00%,15,2.00%,95,12.60%,218,534,2,28.90%,70.80%,0.30%,229,267,754,35.40% +102154,309,4030,State-funded secondary,1578,731,847,46.30%,53.70%,40,2.50%,258,16.30%,330,1218,30,20.90%,77.20%,1.90%,234,300,1294,23.20% +102156,309,4032,State-funded secondary,1820,856,964,47.00%,53.00%,53,2.90%,281,15.40%,302,1437,81,16.60%,79.00%,4.50%,163,157,1338,11.70% +102157,309,4033,State-funded secondary,1304,605,699,46.40%,53.60%,44,3.40%,176,13.50%,511,641,152,39.20%,49.20%,11.70%,608,694,1304,53.20% +102162,309,6000,Independent school,1007,1007,0,100.00%,0.00%,1,0.10%,167,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102163,309,6001,Independent school,1932,941,991,48.70%,51.30%,1,0.10%,476,24.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102165,309,6053,Independent school,221,99,122,44.80%,55.20%,0,0.00%,2,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102169,309,6067,Independent school,19,8,11,42.10%,57.90%,0,0.00%,1,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102171,204,6399,Independent school,747,747,0,100.00%,0.00%,21,2.80%,107,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102175,309,7000,State-funded special school,67,36,31,53.70%,46.30%,67,100.00%,0,0.00%,35,32,0,52.20%,47.80%,0.00%,29,38,67,56.70% +102176,309,7001,State-funded special school,107,48,59,44.90%,55.10%,106,99.10%,1,0.90%,41,66,0,38.30%,61.70%,0.00%,43,48,103,46.60% +102177,309,7005,State-funded special school,128,23,105,18.00%,82.00%,128,100.00%,0,0.00%,46,82,0,35.90%,64.10%,0.00%,82,84,128,65.60% +102178,309,7006,State-funded special school,157,48,109,30.60%,69.40%,157,100.00%,0,0.00%,85,64,8,54.10%,40.80%,5.10%,91,91,127,71.70% +102180,310,1101,State-funded AP school,37,6,31,16.20%,83.80%,10,27.00%,27,73.00%,14,23,0,37.80%,62.20%,0.00%,18,20,37,54.10% +102181,310,2045,State-funded primary,455,229,226,50.30%,49.70%,11,2.40%,58,12.70%,364,91,0,80.00%,20.00%,0.00%,26,26,414,6.30% +102185,310,2050,State-funded primary,417,183,234,43.90%,56.10%,15,3.60%,53,12.70%,248,169,0,59.50%,40.50%,0.00%,84,86,417,20.60% +102186,310,2051,State-funded primary,650,329,321,50.60%,49.40%,10,1.50%,58,8.90%,378,272,0,58.20%,41.80%,0.00%,106,107,616,17.40% +102187,310,2052,State-funded primary,624,313,311,50.20%,49.80%,21,3.40%,37,5.90%,243,381,0,38.90%,61.10%,0.00%,46,46,624,7.40% +102188,310,2053,State-funded primary,411,197,214,47.90%,52.10%,7,1.70%,32,7.80%,354,56,1,86.10%,13.60%,0.20%,98,101,385,26.20% +102189,310,2055,State-funded primary,652,311,341,47.70%,52.30%,32,4.90%,69,10.60%,536,116,0,82.20%,17.80%,0.00%,130,135,609,22.20% +102193,310,2059,State-funded primary,324,137,187,42.30%,57.70%,16,4.90%,33,10.20%,294,30,0,90.70%,9.30%,0.00%,88,89,324,27.50% +102199,310,2066,State-funded primary,754,379,375,50.30%,49.70%,10,1.30%,74,9.80%,420,334,0,55.70%,44.30%,0.00%,99,95,715,13.30% +102202,310,2071,State-funded primary,495,240,255,48.50%,51.50%,20,4.00%,30,6.10%,346,149,0,69.90%,30.10%,0.00%,160,163,463,35.20% +102204,310,2073,State-funded primary,802,414,388,51.60%,48.40%,15,1.90%,58,7.20%,500,302,0,62.30%,37.70%,0.00%,46,47,802,5.90% +102207,310,2076,State-funded primary,885,421,464,47.60%,52.40%,23,2.60%,127,14.40%,512,370,3,57.90%,41.80%,0.30%,86,87,840,10.40% +102209,310,2079,State-funded primary,855,432,423,50.50%,49.50%,17,2.00%,102,11.90%,774,81,0,90.50%,9.50%,0.00%,120,124,794,15.60% +102211,310,2082,State-funded primary,800,365,435,45.60%,54.40%,28,3.50%,170,21.30%,552,248,0,69.00%,31.00%,0.00%,164,167,757,22.10% +102212,310,2083,State-funded primary,298,131,167,44.00%,56.00%,5,1.70%,22,7.40%,282,16,0,94.60%,5.40%,0.00%,33,33,256,12.90% +102213,310,2084,State-funded primary,465,242,223,52.00%,48.00%,6,1.30%,19,4.10%,324,141,0,69.70%,30.30%,0.00%,79,81,431,18.80% +102214,310,2085,State-funded primary,739,369,370,49.90%,50.10%,18,2.40%,94,12.70%,504,234,1,68.20%,31.70%,0.10%,114,114,739,15.40% +102215,310,2086,State-funded primary,413,210,203,50.80%,49.20%,3,0.70%,29,7.00%,317,96,0,76.80%,23.20%,0.00%,107,106,371,28.60% +102216,310,2087,State-funded primary,648,285,363,44.00%,56.00%,39,6.00%,48,7.40%,505,143,0,77.90%,22.10%,0.00%,36,37,648,5.70% +102222,310,2096,State-funded primary,667,303,364,45.40%,54.60%,14,2.10%,81,12.10%,564,97,6,84.60%,14.50%,0.90%,116,118,615,19.20% +102223,310,2097,State-funded primary,668,313,355,46.90%,53.10%,14,2.10%,66,9.90%,358,310,0,53.60%,46.40%,0.00%,121,119,625,19.00% +102224,310,2098,State-funded primary,639,324,315,50.70%,49.30%,4,0.60%,60,9.40%,592,47,0,92.60%,7.40%,0.00%,62,61,589,10.40% +102230,310,3501,State-funded primary,415,215,200,51.80%,48.20%,8,1.90%,67,16.10%,206,209,0,49.60%,50.40%,0.00%,32,34,415,8.20% +102231,310,3504,State-funded primary,440,250,190,56.80%,43.20%,12,2.70%,53,12.00%,218,222,0,49.50%,50.50%,0.00%,80,83,404,20.50% +102239,310,4026,State-funded secondary,1733,833,900,48.10%,51.90%,61,3.50%,91,5.30%,1204,529,0,69.50%,30.50%,0.00%,415,397,1357,29.30% +102245,310,6000,Independent school,831,0,831,0.00%,100.00%,0,0.00%,173,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102247,310,6002,Independent school,839,143,696,17.00%,83.00%,3,0.40%,75,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102248,310,6003,Independent school,513,185,328,36.10%,63.90%,1,0.20%,45,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102250,310,6050,Independent school,138,51,87,37.00%,63.00%,0,0.00%,28,20.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102253,310,6063,Independent school,251,105,146,41.80%,58.20%,0,0.00%,7,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102254,310,6064,Independent school,38,16,22,42.10%,57.90%,0,0.00%,3,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102256,919,6239,Independent school,185,111,74,60.00%,40.00%,2,1.10%,26,14.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102257,310,6075,Independent school,1101,1101,0,100.00%,0.00%,0,0.00%,209,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102260,310,7002,State-funded special school,172,63,109,36.60%,63.40%,172,100.00%,0,0.00%,93,79,0,54.10%,45.90%,0.00%,73,57,131,43.50% +102268,311,2003,State-funded primary,398,183,215,46.00%,54.00%,16,4.00%,51,12.80%,37,360,1,9.30%,90.50%,0.30%,52,53,398,13.30% +102269,311,2005,State-funded primary,622,289,333,46.50%,53.50%,18,2.90%,66,10.60%,153,469,0,24.60%,75.40%,0.00%,114,119,622,19.10% +102272,311,2008,State-funded primary,420,209,211,49.80%,50.20%,16,3.80%,44,10.50%,120,298,2,28.60%,71.00%,0.50%,67,75,420,17.90% +102276,311,2014,State-funded primary,651,334,317,51.30%,48.70%,10,1.50%,30,4.60%,202,442,7,31.00%,67.90%,1.10%,155,157,614,25.60% +102278,311,2017,State-funded primary,384,177,207,46.10%,53.90%,17,4.40%,25,6.50%,127,256,1,33.10%,66.70%,0.30%,62,65,384,16.90% +102280,311,2019,State-funded primary,199,103,96,51.80%,48.20%,7,3.50%,18,9.00%,68,130,1,34.20%,65.30%,0.50%,44,44,163,27.00% +102283,311,2024,State-funded primary,453,223,230,49.20%,50.80%,20,4.40%,30,6.60%,111,342,0,24.50%,75.50%,0.00%,45,50,402,12.40% +102285,311,2026,State-funded primary,266,129,137,48.50%,51.50%,6,2.30%,28,10.50%,88,178,0,33.10%,66.90%,0.00%,50,51,266,19.20% +102291,311,2038,State-funded primary,699,308,391,44.10%,55.90%,22,3.10%,57,8.20%,134,557,8,19.20%,79.70%,1.10%,182,187,637,29.40% +102294,311,2041,State-funded primary,403,209,194,51.90%,48.10%,11,2.70%,45,11.20%,134,269,0,33.30%,66.70%,0.00%,121,126,403,31.30% +102295,311,2042,State-funded primary,393,181,212,46.10%,53.90%,12,3.10%,24,6.10%,149,238,6,37.90%,60.60%,1.50%,57,58,316,18.40% +102299,311,2055,State-funded primary,900,456,444,50.70%,49.30%,28,3.10%,47,5.20%,272,623,5,30.20%,69.20%,0.60%,154,156,813,19.20% +102303,311,2061,State-funded primary,338,161,177,47.60%,52.40%,10,3.00%,27,8.00%,75,263,0,22.20%,77.80%,0.00%,87,90,338,26.60% +102304,311,2062,State-funded primary,269,142,127,52.80%,47.20%,17,6.30%,20,7.40%,57,212,0,21.20%,78.80%,0.00%,54,54,269,20.10% +102308,311,2069,State-funded primary,448,235,213,52.50%,47.50%,13,2.90%,18,4.00%,169,279,0,37.70%,62.30%,0.00%,32,34,448,7.60% +102309,311,2070,State-funded primary,317,166,151,52.40%,47.60%,8,2.50%,31,9.80%,38,270,9,12.00%,85.20%,2.80%,20,21,270,7.80% +102312,311,2073,State-funded primary,546,273,273,50.00%,50.00%,15,2.70%,22,4.00%,102,438,6,18.70%,80.20%,1.10%,120,126,546,23.10% +102313,311,2076,State-funded primary,351,169,182,48.10%,51.90%,9,2.60%,46,13.10%,42,293,16,12.00%,83.50%,4.60%,31,34,351,9.70% +102314,311,2078,State-funded primary,318,162,156,50.90%,49.10%,9,2.80%,39,12.30%,97,220,1,30.50%,69.20%,0.30%,33,35,280,12.50% +102316,311,2080,State-funded primary,419,213,206,50.80%,49.20%,11,2.60%,14,3.30%,137,282,0,32.70%,67.30%,0.00%,36,36,419,8.60% +102317,311,2081,State-funded primary,692,357,335,51.60%,48.40%,22,3.20%,43,6.20%,254,432,6,36.70%,62.40%,0.90%,196,203,620,32.70% +102319,311,2084,State-funded primary,416,197,219,47.40%,52.60%,11,2.60%,67,16.10%,153,257,6,36.80%,61.80%,1.40%,112,116,365,31.80% +102321,311,2086,State-funded primary,434,218,216,50.20%,49.80%,22,5.10%,13,3.00%,104,326,4,24.00%,75.10%,0.90%,31,34,434,7.80% +102322,311,2087,State-funded primary,759,387,372,51.00%,49.00%,34,4.50%,72,9.50%,239,518,2,31.50%,68.20%,0.30%,246,252,690,36.50% +102324,311,2089,State-funded primary,447,225,222,50.30%,49.70%,14,3.10%,74,16.60%,200,247,0,44.70%,55.30%,0.00%,114,118,410,28.80% +102325,311,2090,State-funded primary,684,329,355,48.10%,51.90%,17,2.50%,103,15.10%,226,443,15,33.00%,64.80%,2.20%,174,180,626,28.80% +102328,311,3301,State-funded primary,665,311,354,46.80%,53.20%,20,3.00%,43,6.50%,190,471,4,28.60%,70.80%,0.60%,91,95,596,15.90% +102329,311,3501,State-funded primary,420,200,220,47.60%,52.40%,15,3.60%,52,12.40%,65,351,4,15.50%,83.60%,1.00%,28,31,420,7.40% +102330,311,3502,State-funded primary,207,110,97,53.10%,46.90%,6,2.90%,16,7.70%,107,100,0,51.70%,48.30%,0.00%,38,39,207,18.80% +102331,311,3503,State-funded primary,389,193,196,49.60%,50.40%,6,1.50%,31,8.00%,109,280,0,28.00%,72.00%,0.00%,40,40,389,10.30% +102332,311,3504,State-funded primary,454,214,240,47.10%,52.90%,18,4.00%,49,10.80%,214,232,8,47.10%,51.10%,1.80%,62,63,415,15.20% +102334,311,3506,State-funded primary,418,220,198,52.60%,47.40%,8,1.90%,10,2.40%,79,337,2,18.90%,80.60%,0.50%,27,27,418,6.50% +102335,311,3507,State-funded primary,418,195,223,46.70%,53.30%,9,2.20%,30,7.20%,112,305,1,26.80%,73.00%,0.20%,40,42,418,10.00% +102336,311,3508,State-funded primary,208,100,108,48.10%,51.90%,6,2.90%,8,3.80%,48,158,2,23.10%,76.00%,1.00%,24,29,208,13.90% +102355,311,6052,Independent school,114,58,56,50.90%,49.10%,0,0.00%,26,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102357,311,6054,Independent school,141,77,64,54.60%,45.40%,0,0.00%,5,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102360,311,6060,Independent school,113,54,59,47.80%,52.20%,0,0.00%,1,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102361,311,6061,Independent school,212,117,95,55.20%,44.80%,2,0.90%,11,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102362,311,7000,State-funded special school,156,52,104,33.30%,66.70%,156,100.00%,0,0.00%,18,138,0,11.50%,88.50%,0.00%,51,42,125,33.60% +102365,312,1000,State-funded nursery,147,71,76,48.30%,51.70%,0,0.00%,18,12.20%,98,45,4,66.70%,30.60%,2.70%,0,0,0,0.00% +102368,312,2003,State-funded primary,218,127,91,58.30%,41.70%,1,0.50%,28,12.80%,134,84,0,61.50%,38.50%,0.00%,37,38,192,19.80% +102369,312,2004,State-funded primary,650,303,347,46.60%,53.40%,8,1.20%,55,8.50%,189,460,1,29.10%,70.80%,0.20%,41,41,595,6.90% +102373,312,2010,State-funded primary,684,321,363,46.90%,53.10%,13,1.90%,82,12.00%,236,447,1,34.50%,65.40%,0.10%,202,186,588,31.60% +102375,312,2012,State-funded primary,227,119,108,52.40%,47.60%,15,6.60%,27,11.90%,55,172,0,24.20%,75.80%,0.00%,49,54,176,30.70% +102377,312,2016,State-funded primary,695,343,352,49.40%,50.60%,15,2.20%,79,11.40%,259,436,0,37.30%,62.70%,0.00%,108,113,622,18.20% +102379,312,2019,State-funded primary,327,182,145,55.70%,44.30%,8,2.40%,56,17.10%,134,193,0,41.00%,59.00%,0.00%,60,53,260,20.40% +102380,312,2020,State-funded primary,634,321,313,50.60%,49.40%,26,4.10%,63,9.90%,122,512,0,19.20%,80.80%,0.00%,47,48,590,8.10% +102381,312,2023,State-funded primary,237,116,121,48.90%,51.10%,7,3.00%,58,24.50%,38,199,0,16.00%,84.00%,0.00%,58,59,237,24.90% +102382,312,2024,State-funded primary,199,89,110,44.70%,55.30%,5,2.50%,38,19.10%,36,163,0,18.10%,81.90%,0.00%,36,35,168,20.80% +102383,312,2025,State-funded primary,472,235,237,49.80%,50.20%,17,3.60%,45,9.50%,205,267,0,43.40%,56.60%,0.00%,64,64,429,14.90% +102384,312,2026,State-funded primary,216,104,112,48.10%,51.90%,14,6.50%,60,27.80%,97,119,0,44.90%,55.10%,0.00%,55,51,191,26.70% +102385,312,2029,State-funded primary,428,200,228,46.70%,53.30%,12,2.80%,45,10.50%,204,224,0,47.70%,52.30%,0.00%,101,99,396,25.00% +102388,312,2032,State-funded primary,628,303,325,48.20%,51.80%,15,2.40%,108,17.20%,139,488,1,22.10%,77.70%,0.20%,101,97,563,17.20% +102391,312,2036,State-funded primary,428,191,237,44.60%,55.40%,10,2.30%,38,8.90%,350,78,0,81.80%,18.20%,0.00%,164,166,428,38.80% +102392,312,2037,State-funded primary,445,230,215,51.70%,48.30%,8,1.80%,61,13.70%,377,68,0,84.70%,15.30%,0.00%,120,120,344,34.90% +102393,312,2038,State-funded primary,357,177,180,49.60%,50.40%,10,2.80%,55,15.40%,103,254,0,28.90%,71.10%,0.00%,34,40,357,11.20% +102394,312,2039,State-funded primary,304,137,167,45.10%,54.90%,2,0.70%,55,18.10%,53,251,0,17.40%,82.60%,0.00%,27,23,263,8.70% +102399,312,2052,State-funded primary,382,183,199,47.90%,52.10%,9,2.40%,40,10.50%,242,140,0,63.40%,36.60%,0.00%,121,126,382,33.00% +102400,312,2054,State-funded primary,333,159,174,47.70%,52.30%,8,2.40%,36,10.80%,65,268,0,19.50%,80.50%,0.00%,28,29,333,8.70% +102403,312,2059,State-funded primary,463,254,209,54.90%,45.10%,9,1.90%,65,14.00%,407,56,0,87.90%,12.10%,0.00%,186,192,463,41.50% +102404,312,2060,State-funded primary,449,211,238,47.00%,53.00%,16,3.60%,53,11.80%,373,75,1,83.10%,16.70%,0.20%,116,104,343,30.30% +102407,312,2063,State-funded primary,331,155,176,46.80%,53.20%,1,0.30%,57,17.20%,149,182,0,45.00%,55.00%,0.00%,80,82,301,27.20% +102408,312,2064,State-funded primary,632,308,324,48.70%,51.30%,28,4.40%,43,6.80%,277,355,0,43.80%,56.20%,0.00%,189,201,590,34.10% +102409,312,2065,State-funded primary,390,208,182,53.30%,46.70%,7,1.80%,28,7.20%,69,321,0,17.70%,82.30%,0.00%,31,32,357,9.00% +102411,312,2069,State-funded primary,357,171,186,47.90%,52.10%,9,2.50%,37,10.40%,187,170,0,52.40%,47.60%,0.00%,109,91,299,30.40% +102413,312,2074,State-funded primary,286,141,145,49.30%,50.70%,7,2.40%,42,14.70%,50,236,0,17.50%,82.50%,0.00%,28,27,235,11.50% +102414,312,2076,State-funded primary,420,218,202,51.90%,48.10%,3,0.70%,55,13.10%,131,289,0,31.20%,68.80%,0.00%,48,44,389,11.30% +102416,312,2080,State-funded primary,288,138,150,47.90%,52.10%,7,2.40%,18,6.30%,116,171,1,40.30%,59.40%,0.30%,65,70,265,26.40% +102417,312,3300,State-funded primary,223,107,116,48.00%,52.00%,12,5.40%,28,12.60%,34,189,0,15.20%,84.80%,0.00%,46,45,194,23.20% +102418,312,3302,State-funded primary,187,91,96,48.70%,51.30%,8,4.30%,27,14.40%,41,146,0,21.90%,78.10%,0.00%,27,27,187,14.40% +102420,312,3307,State-funded primary,451,242,209,53.70%,46.30%,8,1.80%,78,17.30%,243,202,6,53.90%,44.80%,1.30%,83,84,416,20.20% +102421,312,3400,State-funded primary,234,114,120,48.70%,51.30%,5,2.10%,24,10.30%,56,178,0,23.90%,76.10%,0.00%,8,8,208,3.80% +102422,312,3401,State-funded primary,706,353,353,50.00%,50.00%,8,1.10%,232,32.90%,473,232,1,67.00%,32.90%,0.10%,147,148,625,23.70% +102423,312,3402,State-funded primary,435,220,215,50.60%,49.40%,13,3.00%,26,6.00%,135,300,0,31.00%,69.00%,0.00%,45,47,404,11.60% +102424,312,3403,State-funded primary,225,123,102,54.70%,45.30%,3,1.30%,28,12.40%,112,106,7,49.80%,47.10%,3.10%,46,46,205,22.40% +102425,312,3404,State-funded primary,237,117,120,49.40%,50.60%,6,2.50%,23,9.70%,109,128,0,46.00%,54.00%,0.00%,30,29,209,13.90% +102426,312,3405,State-funded primary,681,331,350,48.60%,51.40%,7,1.00%,87,12.80%,142,535,4,20.90%,78.60%,0.60%,41,39,629,6.20% +102430,312,5200,State-funded primary,605,293,312,48.40%,51.60%,18,3.00%,84,13.90%,338,267,0,55.90%,44.10%,0.00%,82,83,548,15.10% +102432,312,5202,State-funded primary,406,194,212,47.80%,52.20%,7,1.70%,63,15.50%,352,49,5,86.70%,12.10%,1.20%,90,108,406,26.60% +102433,312,5203,State-funded primary,351,170,181,48.40%,51.60%,5,1.40%,42,12.00%,252,95,4,71.80%,27.10%,1.10%,56,47,259,18.10% +102434,312,5204,State-funded primary,223,106,117,47.50%,52.50%,6,2.70%,20,9.00%,149,74,0,66.80%,33.20%,0.00%,31,29,171,17.00% +102435,312,5205,State-funded primary,221,106,115,48.00%,52.00%,11,5.00%,46,20.80%,139,82,0,62.90%,37.10%,0.00%,44,52,221,23.50% +102438,312,5208,State-funded primary,207,117,90,56.50%,43.50%,7,3.40%,28,13.50%,66,141,0,31.90%,68.10%,0.00%,57,51,185,27.60% +102439,312,5211,State-funded primary,674,325,349,48.20%,51.80%,31,4.60%,86,12.80%,409,264,1,60.70%,39.20%,0.10%,102,103,601,17.10% +102449,312,5409,State-funded secondary,1232,464,768,37.70%,62.30%,41,3.30%,134,10.90%,412,820,0,33.40%,66.60%,0.00%,367,421,1095,38.40% +102451,312,5411,State-funded secondary,1277,596,681,46.70%,53.30%,41,3.20%,125,9.80%,997,279,1,78.10%,21.80%,0.10%,447,434,1020,42.50% +102452,312,6001,Independent school,887,887,0,100.00%,0.00%,2,0.20%,121,13.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102453,312,6004,Independent school,1197,1197,0,100.00%,0.00%,0,0.00%,107,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102454,312,6005,Independent school,403,0,403,0.00%,100.00%,0,0.00%,42,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102455,312,6054,Independent school,23,14,9,60.90%,39.10%,0,0.00%,1,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102456,312,6058,Independent school,370,181,189,48.90%,51.10%,0,0.00%,27,7.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102457,312,6059,Independent school,340,0,340,0.00%,100.00%,0,0.00%,27,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102458,312,6060,Independent school,590,270,320,45.80%,54.20%,0,0.00%,118,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102462,312,7004,State-funded special school,254,78,176,30.70%,69.30%,254,100.00%,0,0.00%,60,194,0,23.60%,76.40%,0.00%,103,76,168,45.20% +102464,312,7006,Non-maintained special school,99,27,72,27.30%,72.70%,99,100.00%,0,0.00%,29,70,0,29.30%,70.70%,0.00%,29,25,68,36.80% +102465,312,7009,State-funded special school,189,46,143,24.30%,75.70%,189,100.00%,0,0.00%,84,105,0,44.40%,55.60%,0.00%,69,69,189,36.50% +102470,313,2003,State-funded primary,460,234,226,50.90%,49.10%,7,1.50%,49,10.70%,295,165,0,64.10%,35.90%,0.00%,57,64,410,15.60% +102471,313,2006,State-funded primary,334,167,167,50.00%,50.00%,2,0.60%,44,13.20%,203,116,15,60.80%,34.70%,4.50%,81,81,267,30.30% +102472,313,2007,State-funded primary,185,106,79,57.30%,42.70%,6,3.20%,31,16.80%,93,92,0,50.30%,49.70%,0.00%,50,52,171,30.40% +102484,313,2021,State-funded primary,424,199,225,46.90%,53.10%,12,2.80%,45,10.60%,229,195,0,54.00%,46.00%,0.00%,70,71,372,19.10% +102485,313,2022,State-funded primary,428,198,230,46.30%,53.70%,10,2.30%,42,9.80%,149,279,0,34.80%,65.20%,0.00%,66,72,405,17.80% +102486,313,2024,State-funded primary,349,172,177,49.30%,50.70%,3,0.90%,55,15.80%,199,145,5,57.00%,41.50%,1.40%,106,115,349,33.00% +102489,313,2031,State-funded primary,737,361,376,49.00%,51.00%,18,2.40%,109,14.80%,418,319,0,56.70%,43.30%,0.00%,148,155,737,21.00% +102490,313,2032,State-funded primary,594,303,291,51.00%,49.00%,8,1.30%,116,19.50%,555,36,3,93.40%,6.10%,0.50%,68,71,503,14.10% +102491,313,2033,State-funded primary,1088,530,558,48.70%,51.30%,51,4.70%,156,14.30%,891,197,0,81.90%,18.10%,0.00%,221,227,1019,22.30% +102492,313,2034,State-funded primary,901,436,465,48.40%,51.60%,10,1.10%,163,18.10%,370,528,3,41.10%,58.60%,0.30%,155,160,795,20.10% +102493,313,2036,State-funded primary,647,304,343,47.00%,53.00%,20,3.10%,96,14.80%,442,205,0,68.30%,31.70%,0.00%,121,140,607,23.10% +102494,313,2037,State-funded primary,637,311,326,48.80%,51.20%,18,2.80%,96,15.10%,292,345,0,45.80%,54.20%,0.00%,130,128,583,22.00% +102496,313,2039,State-funded primary,326,163,163,50.00%,50.00%,11,3.40%,62,19.00%,275,51,0,84.40%,15.60%,0.00%,52,58,258,22.50% +102500,313,2044,State-funded primary,278,134,144,48.20%,51.80%,7,2.50%,29,10.40%,228,47,3,82.00%,16.90%,1.10%,34,36,240,15.00% +102503,313,2047,State-funded primary,323,160,163,49.50%,50.50%,34,10.50%,47,14.60%,155,168,0,48.00%,52.00%,0.00%,82,82,323,25.40% +102504,313,2048,State-funded primary,304,162,142,53.30%,46.70%,12,3.90%,27,8.90%,86,218,0,28.30%,71.70%,0.00%,42,42,261,16.10% +102505,313,2050,State-funded primary,802,406,396,50.60%,49.40%,20,2.50%,122,15.20%,721,81,0,89.90%,10.10%,0.00%,131,132,742,17.80% +102506,313,2051,State-funded primary,217,106,111,48.80%,51.20%,6,2.80%,25,11.50%,82,135,0,37.80%,62.20%,0.00%,47,51,198,25.80% +102512,313,2061,State-funded primary,178,79,99,44.40%,55.60%,3,1.70%,43,24.20%,141,37,0,79.20%,20.80%,0.00%,78,80,167,47.90% +102514,313,2063,State-funded primary,442,212,230,48.00%,52.00%,7,1.60%,48,10.90%,238,204,0,53.80%,46.20%,0.00%,82,86,404,21.30% +102515,313,2064,State-funded primary,401,194,207,48.40%,51.60%,26,6.50%,73,18.20%,160,241,0,39.90%,60.10%,0.00%,102,104,377,27.60% +102519,313,2071,State-funded primary,232,117,115,50.40%,49.60%,18,7.80%,28,12.10%,140,91,1,60.30%,39.20%,0.40%,46,47,206,22.80% +102520,313,2073,State-funded primary,688,320,368,46.50%,53.50%,23,3.30%,193,28.10%,438,250,0,63.70%,36.30%,0.00%,181,186,637,29.20% +102523,313,3300,State-funded primary,470,212,258,45.10%,54.90%,8,1.70%,46,9.80%,152,318,0,32.30%,67.70%,0.00%,28,28,440,6.40% +102524,313,3302,State-funded primary,303,158,145,52.10%,47.90%,6,2.00%,48,15.80%,133,170,0,43.90%,56.10%,0.00%,115,116,281,41.30% +102526,313,3502,State-funded primary,221,109,112,49.30%,50.70%,6,2.70%,12,5.40%,112,108,1,50.70%,48.90%,0.50%,35,35,209,16.70% +102527,313,3503,State-funded primary,456,217,239,47.60%,52.40%,11,2.40%,60,13.20%,399,57,0,87.50%,12.50%,0.00%,53,55,419,13.10% +102528,313,3504,State-funded primary,424,228,196,53.80%,46.20%,4,0.90%,42,9.90%,138,286,0,32.50%,67.50%,0.00%,44,45,400,11.30% +102529,313,3505,State-funded primary,208,121,87,58.20%,41.80%,1,0.50%,4,1.90%,96,112,0,46.20%,53.80%,0.00%,12,14,200,7.00% +102531,313,3507,State-funded primary,471,217,254,46.10%,53.90%,4,0.80%,59,12.50%,295,176,0,62.60%,37.40%,0.00%,33,36,419,8.60% +102539,313,4028,State-funded secondary,1852,869,983,46.90%,53.10%,35,1.90%,132,7.10%,1257,591,4,67.90%,31.90%,0.20%,441,367,1347,27.20% +102545,313,5401,State-funded secondary,1192,46,1146,3.90%,96.10%,19,1.60%,118,9.90%,216,976,0,18.10%,81.90%,0.00%,150,141,891,15.80% +102546,313,6000,Independent school,100,42,58,42.00%,58.00%,0,0.00%,14,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102547,313,6051,Independent school,161,99,62,61.50%,38.50%,1,0.60%,36,22.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102550,313,6063,Independent school,418,193,225,46.20%,53.80%,1,0.20%,60,14.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102551,313,6064,Independent school,296,228,68,77.00%,23.00%,2,0.70%,112,37.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102554,313,7005,State-funded special school,318,81,237,25.50%,74.50%,318,100.00%,0,0.00%,156,162,0,49.10%,50.90%,0.00%,135,136,318,42.80% +102555,313,7006,State-funded special school,225,60,165,26.70%,73.30%,224,99.60%,1,0.40%,96,129,0,42.70%,57.30%,0.00%,94,69,158,43.70% +102556,313,7007,State-funded special school,175,52,123,29.70%,70.30%,149,85.10%,26,14.90%,116,57,2,66.30%,32.60%,1.10%,44,44,152,28.90% +102558,313,7010,State-funded special school,62,6,56,9.70%,90.30%,62,100.00%,0,0.00%,4,58,0,6.50%,93.50%,0.00%,43,46,62,74.20% +102560,314,1001,State-funded nursery,127,50,77,39.40%,60.60%,9,7.10%,37,29.10%,59,68,0,46.50%,53.50%,0.00%,0,0,6,0.00% +102562,314,1101,State-funded AP school,95,33,62,34.70%,65.30%,77,81.10%,6,6.30%,6,89,0,6.30%,93.70%,0.00%,45,43,70,61.40% +102564,314,2001,State-funded primary,475,219,256,46.10%,53.90%,11,2.30%,73,15.40%,230,245,0,48.40%,51.60%,0.00%,94,100,475,21.10% +102565,314,2002,State-funded primary,463,250,213,54.00%,46.00%,5,1.10%,65,14.00%,271,192,0,58.50%,41.50%,0.00%,67,67,360,18.60% +102567,314,2004,State-funded primary,270,126,144,46.70%,53.30%,2,0.70%,25,9.30%,148,122,0,54.80%,45.20%,0.00%,32,33,270,12.20% +102568,314,2005,State-funded primary,362,188,174,51.90%,48.10%,11,3.00%,55,15.20%,92,270,0,25.40%,74.60%,0.00%,95,95,341,27.90% +102574,314,2024,State-funded primary,411,206,205,50.10%,49.90%,27,6.60%,112,27.30%,140,271,0,34.10%,65.90%,0.00%,78,82,411,20.00% +102575,314,2025,State-funded primary,316,160,156,50.60%,49.40%,8,2.50%,83,26.30%,101,215,0,32.00%,68.00%,0.00%,37,38,271,14.00% +102576,314,2028,State-funded primary,390,207,183,53.10%,46.90%,11,2.80%,62,15.90%,199,191,0,51.00%,49.00%,0.00%,51,54,390,13.80% +102577,314,2030,State-funded primary,304,160,144,52.60%,47.40%,1,0.30%,17,5.60%,129,175,0,42.40%,57.60%,0.00%,18,19,267,7.10% +102578,314,2031,State-funded primary,465,258,207,55.50%,44.50%,19,4.10%,41,8.80%,175,286,4,37.60%,61.50%,0.90%,54,57,418,13.60% +102579,314,2032,State-funded primary,464,234,230,50.40%,49.60%,19,4.10%,64,13.80%,172,292,0,37.10%,62.90%,0.00%,118,120,414,29.00% +102580,314,2033,State-funded primary,677,336,341,49.60%,50.40%,17,2.50%,80,11.80%,136,541,0,20.10%,79.90%,0.00%,92,93,625,14.90% +102581,314,2034,State-funded primary,433,221,212,51.00%,49.00%,15,3.50%,58,13.40%,196,237,0,45.30%,54.70%,0.00%,90,94,405,23.20% +102582,314,2035,State-funded primary,489,235,254,48.10%,51.90%,35,7.20%,108,22.10%,244,245,0,49.90%,50.10%,0.00%,155,153,406,37.70% +102583,314,2036,State-funded primary,602,300,302,49.80%,50.20%,12,2.00%,73,12.10%,158,444,0,26.20%,73.80%,0.00%,78,76,568,13.40% +102585,314,3301,State-funded primary,443,230,213,51.90%,48.10%,9,2.00%,46,10.40%,128,315,0,28.90%,71.10%,0.00%,43,44,415,10.60% +102586,314,3302,State-funded primary,492,227,265,46.10%,53.90%,4,0.80%,34,6.90%,132,359,1,26.80%,73.00%,0.20%,33,36,492,7.30% +102587,314,3303,State-funded primary,230,121,109,52.60%,47.40%,2,0.90%,13,5.70%,52,178,0,22.60%,77.40%,0.00%,16,16,210,7.60% +102588,314,3304,State-funded primary,359,179,180,49.90%,50.10%,8,2.20%,23,6.40%,157,202,0,43.70%,56.30%,0.00%,55,58,359,16.20% +102589,314,3305,State-funded primary,237,118,119,49.80%,50.20%,2,0.80%,29,12.20%,77,160,0,32.50%,67.50%,0.00%,45,42,208,20.20% +102590,314,3308,State-funded primary,205,99,106,48.30%,51.70%,4,2.00%,26,12.70%,45,160,0,22.00%,78.00%,0.00%,18,18,205,8.80% +102591,314,3309,State-funded primary,404,188,216,46.50%,53.50%,7,1.70%,43,10.60%,100,304,0,24.80%,75.20%,0.00%,24,26,404,6.40% +102592,314,3310,State-funded primary,409,186,223,45.50%,54.50%,5,1.20%,34,8.30%,144,265,0,35.20%,64.80%,0.00%,40,42,409,10.30% +102593,314,3311,State-funded primary,168,83,85,49.40%,50.60%,6,3.60%,34,20.20%,37,131,0,22.00%,78.00%,0.00%,26,28,168,16.70% +102594,314,3500,State-funded primary,433,232,201,53.60%,46.40%,8,1.80%,43,9.90%,193,240,0,44.60%,55.40%,0.00%,31,34,402,8.50% +102595,314,3501,State-funded primary,415,195,220,47.00%,53.00%,14,3.40%,47,11.30%,144,271,0,34.70%,65.30%,0.00%,31,31,415,7.50% +102596,314,3502,State-funded primary,247,133,114,53.80%,46.20%,4,1.60%,17,6.90%,142,105,0,57.50%,42.50%,0.00%,54,55,207,26.60% +102604,314,5200,State-funded primary,274,126,148,46.00%,54.00%,5,1.80%,19,6.90%,126,148,0,46.00%,54.00%,0.00%,29,29,238,12.20% +102609,314,6001,Independent school,294,294,0,100.00%,0.00%,0,0.00%,37,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102610,314,6002,Independent school,343,0,343,0.00%,100.00%,2,0.60%,35,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102611,314,6003,Independent school,1634,1412,222,86.40%,13.60%,5,0.30%,212,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102612,314,6005,Independent school,404,0,404,0.00%,100.00%,0,0.00%,173,42.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102615,314,6058,Independent school,233,233,0,100.00%,0.00%,0,0.00%,42,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102616,314,6059,Independent school,126,63,63,50.00%,50.00%,2,1.60%,14,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102617,314,6062,Independent school,88,40,48,45.50%,54.50%,0,0.00%,8,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102618,314,6066,Independent school,102,47,55,46.10%,53.90%,2,2.00%,20,19.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102619,314,6067,Independent school,873,429,444,49.10%,50.90%,2,0.20%,97,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102620,314,6068,Independent school,76,29,47,38.20%,61.80%,58,76.30%,18,23.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102626,315,2052,State-funded primary,363,166,197,45.70%,54.30%,11,3.00%,68,18.70%,253,110,0,69.70%,30.30%,0.00%,138,132,321,41.10% +102628,315,2055,State-funded primary,454,213,241,46.90%,53.10%,14,3.10%,31,6.80%,162,292,0,35.70%,64.30%,0.00%,26,27,410,6.60% +102629,315,2056,State-funded primary,309,157,152,50.80%,49.20%,10,3.20%,35,11.30%,167,142,0,54.00%,46.00%,0.00%,88,80,261,30.70% +102632,315,2059,State-funded primary,415,188,227,45.30%,54.70%,33,8.00%,58,14.00%,95,320,0,22.90%,77.10%,0.00%,68,67,385,17.40% +102633,315,2061,State-funded primary,449,241,208,53.70%,46.30%,11,2.40%,28,6.20%,143,306,0,31.80%,68.20%,0.00%,42,43,401,10.70% +102634,315,2062,State-funded primary,396,210,186,53.00%,47.00%,10,2.50%,75,18.90%,129,267,0,32.60%,67.40%,0.00%,69,69,365,18.90% +102635,315,2063,State-funded primary,364,178,186,48.90%,51.10%,3,0.80%,40,11.00%,236,128,0,64.80%,35.20%,0.00%,117,109,313,34.80% +102636,315,2064,State-funded primary,358,174,184,48.60%,51.40%,12,3.40%,78,21.80%,131,226,1,36.60%,63.10%,0.30%,175,167,315,53.00% +102638,315,2066,State-funded primary,223,105,118,47.10%,52.90%,12,5.40%,32,14.30%,132,91,0,59.20%,40.80%,0.00%,88,84,190,44.20% +102639,315,2067,State-funded primary,230,102,128,44.30%,55.70%,5,2.20%,24,10.40%,71,159,0,30.90%,69.10%,0.00%,17,15,200,7.50% +102640,315,2068,State-funded primary,235,103,132,43.80%,56.20%,10,4.30%,44,18.70%,88,147,0,37.40%,62.60%,0.00%,93,91,207,44.00% +102642,315,2070,State-funded primary,417,205,212,49.20%,50.80%,13,3.10%,46,11.00%,177,240,0,42.40%,57.60%,0.00%,51,50,381,13.10% +102643,315,2071,State-funded primary,404,190,214,47.00%,53.00%,8,2.00%,74,18.30%,194,209,1,48.00%,51.70%,0.20%,163,160,338,47.30% +102644,315,2072,State-funded primary,651,334,317,51.30%,48.70%,23,3.50%,55,8.40%,339,312,0,52.10%,47.90%,0.00%,127,122,584,20.90% +102645,315,2073,State-funded primary,235,121,114,51.50%,48.50%,12,5.10%,50,21.30%,170,65,0,72.30%,27.70%,0.00%,94,89,209,42.60% +102646,315,2074,State-funded primary,329,158,171,48.00%,52.00%,8,2.40%,56,17.00%,139,188,2,42.20%,57.10%,0.60%,104,105,304,34.50% +102647,315,2075,State-funded primary,663,333,330,50.20%,49.80%,14,2.10%,45,6.80%,235,428,0,35.40%,64.60%,0.00%,136,137,626,21.90% +102648,315,2076,State-funded primary,641,306,335,47.70%,52.30%,13,2.00%,38,5.90%,175,466,0,27.30%,72.70%,0.00%,45,45,590,7.60% +102649,315,2077,State-funded primary,408,221,187,54.20%,45.80%,10,2.50%,53,13.00%,273,135,0,66.90%,33.10%,0.00%,176,164,359,45.70% +102652,315,2081,State-funded primary,320,162,158,50.60%,49.40%,32,10.00%,46,14.40%,111,209,0,34.70%,65.30%,0.00%,101,92,288,31.90% +102653,315,2082,State-funded primary,510,256,254,50.20%,49.80%,47,9.20%,78,15.30%,246,264,0,48.20%,51.80%,0.00%,162,168,457,36.80% +102654,315,2083,State-funded primary,418,210,208,50.20%,49.80%,16,3.80%,93,22.20%,290,128,0,69.40%,30.60%,0.00%,105,104,357,29.10% +102655,315,2084,State-funded primary,436,216,220,49.50%,50.50%,14,3.20%,73,16.70%,107,329,0,24.50%,75.50%,0.00%,50,47,400,11.80% +102656,315,2085,State-funded primary,403,197,206,48.90%,51.10%,15,3.70%,45,11.20%,231,172,0,57.30%,42.70%,0.00%,129,128,358,35.80% +102661,315,2090,State-funded primary,327,161,166,49.20%,50.80%,5,1.50%,46,14.10%,168,158,1,51.40%,48.30%,0.30%,139,133,288,46.20% +102662,315,2091,State-funded primary,695,333,362,47.90%,52.10%,38,5.50%,56,8.10%,380,315,0,54.70%,45.30%,0.00%,36,41,634,6.50% +102663,315,3300,State-funded primary,339,154,185,45.40%,54.60%,11,3.20%,56,16.50%,149,188,2,44.00%,55.50%,0.60%,106,104,306,34.00% +102664,315,3302,State-funded primary,186,81,105,43.50%,56.50%,4,2.20%,11,5.90%,33,153,0,17.70%,82.30%,0.00%,20,21,167,12.60% +102665,315,3303,State-funded primary,438,210,228,47.90%,52.10%,13,3.00%,33,7.50%,144,294,0,32.90%,67.10%,0.00%,37,41,401,10.20% +102666,315,3304,State-funded primary,466,217,249,46.60%,53.40%,7,1.50%,23,4.90%,139,325,2,29.80%,69.70%,0.40%,32,32,414,7.70% +102667,315,3500,State-funded primary,300,138,162,46.00%,54.00%,5,1.70%,50,16.70%,173,127,0,57.70%,42.30%,0.00%,78,79,275,28.70% +102668,315,3501,State-funded primary,369,204,165,55.30%,44.70%,13,3.50%,51,13.80%,140,229,0,37.90%,62.10%,0.00%,74,72,331,21.80% +102669,315,3502,State-funded primary,488,249,239,51.00%,49.00%,17,3.50%,62,12.70%,238,250,0,48.80%,51.20%,0.00%,70,73,420,17.40% +102670,315,3503,State-funded primary,443,212,231,47.90%,52.10%,4,0.90%,43,9.70%,260,183,0,58.70%,41.30%,0.00%,37,35,409,8.60% +102671,315,3505,State-funded primary,446,233,213,52.20%,47.80%,13,2.90%,54,12.10%,102,344,0,22.90%,77.10%,0.00%,50,50,415,12.00% +102672,315,3506,State-funded primary,207,95,112,45.90%,54.10%,8,3.90%,41,19.80%,76,131,0,36.70%,63.30%,0.00%,60,62,181,34.30% +102673,315,4050,State-funded secondary,1361,1361,0,100.00%,0.00%,30,2.20%,149,10.90%,510,850,1,37.50%,62.50%,0.10%,297,293,1158,25.30% +102674,315,4052,State-funded secondary,1181,527,654,44.60%,55.40%,75,6.40%,360,30.50%,367,811,3,31.10%,68.70%,0.30%,397,426,1034,41.20% +102679,315,4500,State-funded secondary,1458,0,1458,0.00%,100.00%,68,4.70%,146,10.00%,713,745,0,48.90%,51.10%,0.00%,251,246,1180,20.80% +102681,315,4701,State-funded secondary,1246,0,1246,0.00%,100.00%,61,4.90%,189,15.20%,363,883,0,29.10%,70.90%,0.00%,188,177,975,18.20% +102683,315,5400,State-funded secondary,1405,1401,4,99.70%,0.30%,28,2.00%,186,13.20%,223,1182,0,15.90%,84.10%,0.00%,177,141,1066,13.20% +102684,315,6000,Independent school,1474,118,1356,8.00%,92.00%,1,0.10%,154,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102685,315,6002,Independent school,120,34,86,28.30%,71.70%,0,0.00%,2,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102686,315,6003,Independent school,153,138,15,90.20%,9.80%,1,0.70%,12,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102687,315,6004,Independent school,278,0,278,0.00%,100.00%,6,2.20%,34,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102689,315,6060,Independent school,307,307,0,100.00%,0.00%,0,0.00%,25,8.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102690,315,6062,Independent school,170,0,170,0.00%,100.00%,0,0.00%,4,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102692,315,6071,Independent school,1050,1050,0,100.00%,0.00%,1,0.10%,196,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102693,315,6072,Independent school,46,16,30,34.80%,65.20%,0,0.00%,5,10.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102694,315,6076,Independent school,320,104,216,32.50%,67.50%,299,93.40%,21,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102697,315,7003,State-funded special school,100,30,70,30.00%,70.00%,100,100.00%,0,0.00%,7,93,0,7.00%,93.00%,0.00%,53,66,100,66.00% +102698,315,7004,State-funded special school,152,46,106,30.30%,69.70%,152,100.00%,0,0.00%,74,78,0,48.70%,51.30%,0.00%,77,69,132,52.30% +102699,315,7006,State-funded special school,246,92,154,37.40%,62.60%,246,100.00%,0,0.00%,76,170,0,30.90%,69.10%,0.00%,117,111,208,53.40% +102700,316,1000,State-funded nursery,151,75,76,49.70%,50.30%,0,0.00%,32,21.20%,81,70,0,53.60%,46.40%,0.00%,0,0,0,0.00% +102701,316,1001,State-funded nursery,139,58,81,41.70%,58.30%,1,0.70%,41,29.50%,77,61,1,55.40%,43.90%,0.70%,0,0,0,0.00% +102702,316,1002,State-funded nursery,147,67,80,45.60%,54.40%,0,0.00%,20,13.60%,58,81,8,39.50%,55.10%,5.40%,0,0,0,0.00% +102703,316,1003,State-funded nursery,116,58,58,50.00%,50.00%,4,3.40%,27,23.30%,43,73,0,37.10%,62.90%,0.00%,0,0,0,0.00% +102704,316,1004,State-funded nursery,198,92,106,46.50%,53.50%,0,0.00%,25,12.60%,151,47,0,76.30%,23.70%,0.00%,0,0,0,0.00% +102705,316,1005,State-funded nursery,179,86,93,48.00%,52.00%,0,0.00%,58,32.40%,100,69,10,55.90%,38.50%,5.60%,0,0,2,0.00% +102706,316,1006,State-funded nursery,142,68,74,47.90%,52.10%,0,0.00%,39,27.50%,112,29,1,78.90%,20.40%,0.70%,0,0,0,0.00% +102708,316,1100,State-funded AP school,64,14,50,21.90%,78.10%,24,37.50%,40,62.50%,25,38,1,39.10%,59.40%,1.60%,32,43,64,67.20% +102709,316,2000,State-funded primary,550,266,284,48.40%,51.60%,8,1.50%,59,10.70%,536,14,0,97.50%,2.50%,0.00%,106,107,428,25.00% +102710,316,2001,State-funded primary,652,322,330,49.40%,50.60%,16,2.50%,87,13.30%,398,254,0,61.00%,39.00%,0.00%,204,215,597,36.00% +102711,316,2004,State-funded primary,925,469,456,50.70%,49.30%,30,3.20%,120,13.00%,615,309,1,66.50%,33.40%,0.10%,205,217,838,25.90% +102712,316,2006,State-funded primary,420,211,209,50.20%,49.80%,11,2.60%,46,11.00%,289,131,0,68.80%,31.20%,0.00%,139,148,385,38.40% +102716,316,2015,State-funded primary,624,310,314,49.70%,50.30%,11,1.80%,58,9.30%,441,183,0,70.70%,29.30%,0.00%,249,265,575,46.10% +102721,316,2024,State-funded primary,373,170,203,45.60%,54.40%,5,1.30%,96,25.70%,213,160,0,57.10%,42.90%,0.00%,98,103,373,27.60% +102722,316,2025,State-funded primary,378,185,193,48.90%,51.10%,9,2.40%,74,19.60%,186,192,0,49.20%,50.80%,0.00%,60,61,334,18.30% +102723,316,2026,State-funded primary,205,91,114,44.40%,55.60%,1,0.50%,31,15.10%,140,64,1,68.30%,31.20%,0.50%,63,70,172,40.70% +102725,316,2032,State-funded primary,444,214,230,48.20%,51.80%,12,2.70%,61,13.70%,208,235,1,46.80%,52.90%,0.20%,147,157,397,39.50% +102728,316,2037,State-funded primary,553,280,273,50.60%,49.40%,11,2.00%,65,11.80%,539,9,5,97.50%,1.60%,0.90%,181,242,553,43.80% +102729,316,2038,State-funded primary,214,103,111,48.10%,51.90%,8,3.70%,36,16.80%,121,93,0,56.50%,43.50%,0.00%,83,90,196,45.90% +102730,316,2039,State-funded primary,428,217,211,50.70%,49.30%,10,2.30%,41,9.60%,217,211,0,50.70%,49.30%,0.00%,142,151,385,39.20% +102735,316,2049,State-funded primary,222,114,108,51.40%,48.60%,2,0.90%,25,11.30%,170,52,0,76.60%,23.40%,0.00%,45,46,161,28.60% +102736,316,2051,State-funded primary,666,331,335,49.70%,50.30%,19,2.90%,75,11.30%,373,293,0,56.00%,44.00%,0.00%,163,171,619,27.60% +102740,316,2058,State-funded primary,391,182,209,46.50%,53.50%,6,1.50%,58,14.80%,260,130,1,66.50%,33.20%,0.30%,101,109,354,30.80% +102742,316,2061,State-funded primary,528,251,277,47.50%,52.50%,9,1.70%,88,16.70%,415,113,0,78.60%,21.40%,0.00%,190,199,479,41.50% +102745,316,2065,State-funded primary,238,110,128,46.20%,53.80%,8,3.40%,31,13.00%,205,33,0,86.10%,13.90%,0.00%,67,71,194,36.60% +102746,316,2066,State-funded primary,642,326,316,50.80%,49.20%,17,2.60%,63,9.80%,390,250,2,60.70%,38.90%,0.30%,174,185,572,32.30% +102748,316,2069,State-funded primary,621,313,308,50.40%,49.60%,22,3.50%,52,8.40%,565,54,2,91.00%,8.70%,0.30%,161,167,621,26.90% +102751,316,2077,State-funded primary,620,322,298,51.90%,48.10%,18,2.90%,55,8.90%,329,267,24,53.10%,43.10%,3.90%,179,185,569,32.50% +102752,316,2079,State-funded primary,595,301,294,50.60%,49.40%,30,5.00%,58,9.70%,331,264,0,55.60%,44.40%,0.00%,213,222,595,37.30% +102755,316,2083,State-funded primary,615,325,290,52.80%,47.20%,7,1.10%,78,12.70%,565,43,7,91.90%,7.00%,1.10%,160,176,523,33.70% +102758,316,2089,State-funded primary,373,188,185,50.40%,49.60%,27,7.20%,43,11.50%,181,190,2,48.50%,50.90%,0.50%,107,113,345,32.80% +102759,316,2090,State-funded primary,448,223,225,49.80%,50.20%,4,0.90%,53,11.80%,260,184,4,58.00%,41.10%,0.90%,115,121,401,30.20% +102763,316,2095,State-funded primary,921,420,501,45.60%,54.40%,29,3.10%,100,10.90%,867,52,2,94.10%,5.60%,0.20%,198,214,820,26.10% +102764,316,3000,State-funded primary,218,97,121,44.50%,55.50%,12,5.50%,24,11.00%,141,76,1,64.70%,34.90%,0.50%,96,100,218,45.90% +102765,316,3001,State-funded primary,304,171,133,56.30%,43.80%,11,3.60%,37,12.20%,215,87,2,70.70%,28.60%,0.70%,96,99,267,37.10% +102766,316,3300,State-funded primary,218,114,104,52.30%,47.70%,6,2.80%,25,11.50%,162,53,3,74.30%,24.30%,1.40%,49,53,194,27.30% +102773,316,3507,State-funded primary,214,117,97,54.70%,45.30%,1,0.50%,11,5.10%,115,99,0,53.70%,46.30%,0.00%,47,48,194,24.70% +102776,316,4015,State-funded secondary,1582,614,968,38.80%,61.20%,65,4.10%,296,18.70%,1242,327,13,78.50%,20.70%,0.80%,563,625,1582,39.50% +102782,316,4032,State-funded secondary,1496,1496,0,100.00%,0.00%,21,1.40%,134,9.00%,1132,363,1,75.70%,24.30%,0.10%,511,625,1496,41.80% +102786,316,4600,State-funded secondary,1274,1192,82,93.60%,6.40%,10,0.80%,32,2.50%,484,789,1,38.00%,61.90%,0.10%,360,333,901,37.00% +102787,316,4601,State-funded secondary,1333,120,1213,9.00%,91.00%,23,1.70%,118,8.90%,692,635,6,51.90%,47.60%,0.50%,385,344,977,35.20% +102789,316,6051,Independent school,50,17,33,34.00%,66.00%,7,14.00%,5,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102794,317,1100,State-funded AP school,17,2,15,11.80%,88.20%,0,0.00%,1,5.90%,7,10,0,41.20%,58.80%,0.00%,9,7,14,50.00% +102795,317,2002,State-funded primary,458,209,249,45.60%,54.40%,15,3.30%,44,9.60%,212,244,2,46.30%,53.30%,0.40%,91,92,415,22.20% +102798,317,2012,State-funded primary,902,440,462,48.80%,51.20%,22,2.40%,161,17.80%,811,90,1,89.90%,10.00%,0.10%,150,152,831,18.30% +102802,317,2017,State-funded primary,714,339,375,47.50%,52.50%,16,2.20%,58,8.10%,329,385,0,46.10%,53.90%,0.00%,104,107,655,16.30% +102805,317,2021,State-funded primary,398,202,196,50.80%,49.20%,12,3.00%,41,10.30%,114,284,0,28.60%,71.40%,0.00%,74,74,360,20.60% +102806,317,2022,State-funded primary,445,243,202,54.60%,45.40%,22,4.90%,25,5.60%,164,280,1,36.90%,62.90%,0.20%,60,64,408,15.70% +102807,317,2023,State-funded primary,665,336,329,50.50%,49.50%,17,2.60%,54,8.10%,553,106,6,83.20%,15.90%,0.90%,109,114,618,18.40% +102808,317,2025,State-funded primary,409,187,222,45.70%,54.30%,9,2.20%,53,13.00%,385,24,0,94.10%,5.90%,0.00%,78,85,379,22.40% +102811,317,2030,State-funded primary,452,223,229,49.30%,50.70%,10,2.20%,97,21.50%,252,200,0,55.80%,44.20%,0.00%,69,69,415,16.60% +102812,317,2031,State-funded primary,856,395,461,46.10%,53.90%,34,4.00%,115,13.40%,505,351,0,59.00%,41.00%,0.00%,130,133,795,16.70% +102819,317,2038,State-funded primary,915,442,473,48.30%,51.70%,15,1.60%,79,8.60%,634,243,38,69.30%,26.60%,4.20%,146,154,851,18.10% +102820,317,2039,State-funded primary,600,301,299,50.20%,49.80%,18,3.00%,62,10.30%,301,298,1,50.20%,49.70%,0.20%,79,82,553,14.80% +102823,317,2042,State-funded primary,679,349,330,51.40%,48.60%,30,4.40%,57,8.40%,164,515,0,24.20%,75.80%,0.00%,63,67,626,10.70% +102830,317,2051,State-funded primary,432,210,222,48.60%,51.40%,45,10.40%,52,12.00%,212,217,3,49.10%,50.20%,0.70%,63,67,396,16.90% +102831,317,2053,State-funded primary,339,171,168,50.40%,49.60%,7,2.10%,42,12.40%,109,230,0,32.20%,67.80%,0.00%,14,15,306,4.90% +102832,317,2054,State-funded primary,459,213,246,46.40%,53.60%,10,2.20%,25,5.40%,199,256,4,43.40%,55.80%,0.90%,49,54,412,13.10% +102833,317,2055,State-funded primary,459,216,243,47.10%,52.90%,18,3.90%,13,2.80%,325,134,0,70.80%,29.20%,0.00%,42,43,417,10.30% +102834,317,2056,State-funded primary,724,362,362,50.00%,50.00%,18,2.50%,126,17.40%,587,132,5,81.10%,18.20%,0.70%,171,174,685,25.40% +102835,317,2057,State-funded primary,675,336,339,49.80%,50.20%,20,3.00%,78,11.60%,579,96,0,85.80%,14.20%,0.00%,85,86,625,13.80% +102836,317,2058,State-funded primary,674,317,357,47.00%,53.00%,32,4.70%,92,13.60%,521,150,3,77.30%,22.30%,0.40%,125,129,628,20.50% +102837,317,2061,State-funded primary,453,219,234,48.30%,51.70%,17,3.80%,60,13.20%,165,288,0,36.40%,63.60%,0.00%,86,91,417,21.80% +102838,317,2062,State-funded primary,437,215,222,49.20%,50.80%,14,3.20%,32,7.30%,203,230,4,46.50%,52.60%,0.90%,77,81,411,19.70% +102839,317,2063,State-funded primary,712,343,369,48.20%,51.80%,16,2.20%,95,13.30%,398,313,1,55.90%,44.00%,0.10%,52,52,661,7.90% +102840,317,2066,State-funded primary,854,414,440,48.50%,51.50%,35,4.10%,55,6.40%,744,108,2,87.10%,12.60%,0.20%,124,125,815,15.30% +102841,317,3300,State-funded primary,203,118,85,58.10%,41.90%,7,3.40%,25,12.30%,35,166,2,17.20%,81.80%,1.00%,14,15,187,8.00% +102842,317,3500,State-funded primary,450,216,234,48.00%,52.00%,19,4.20%,109,24.20%,311,139,0,69.10%,30.90%,0.00%,74,79,416,19.00% +102844,317,3505,State-funded primary,441,220,221,49.90%,50.10%,9,2.00%,15,3.40%,64,376,1,14.50%,85.30%,0.20%,21,21,415,5.10% +102845,317,3506,State-funded primary,444,231,213,52.00%,48.00%,5,1.10%,55,12.40%,85,357,2,19.10%,80.40%,0.50%,59,59,415,14.20% +102847,317,3509,State-funded primary,215,113,102,52.60%,47.40%,7,3.30%,17,7.90%,63,152,0,29.30%,70.70%,0.00%,24,24,189,12.70% +102849,317,4006,State-funded secondary,1019,489,530,48.00%,52.00%,32,3.10%,152,14.90%,654,365,0,64.20%,35.80%,0.00%,301,282,769,36.70% +102850,317,4007,State-funded secondary,1184,0,1184,0.00%,100.00%,7,0.60%,35,3.00%,851,321,12,71.90%,27.10%,1.00%,107,100,892,11.20% +102851,317,4021,State-funded secondary,1470,691,779,47.00%,53.00%,40,2.70%,153,10.40%,348,1071,51,23.70%,72.90%,3.50%,205,206,1187,17.40% +102852,317,4025,State-funded secondary,1240,1240,0,100.00%,0.00%,3,0.20%,30,2.40%,829,392,19,66.90%,31.60%,1.50%,94,91,893,10.20% +102854,317,4029,State-funded secondary,1851,933,918,50.40%,49.60%,38,2.10%,232,12.50%,413,1435,3,22.30%,77.50%,0.20%,312,289,1488,19.40% +102856,317,4032,State-funded secondary,2227,1058,1169,47.50%,52.50%,87,3.90%,193,8.70%,1579,624,24,70.90%,28.00%,1.10%,297,249,1739,14.30% +102857,317,4033,State-funded secondary,1346,611,735,45.40%,54.60%,52,3.90%,72,5.30%,751,594,1,55.80%,44.10%,0.10%,241,202,900,22.40% +102858,317,4035,State-funded secondary,1896,926,970,48.80%,51.20%,21,1.10%,181,9.50%,1118,774,4,59.00%,40.80%,0.20%,532,490,1522,32.20% +102860,317,4603,State-funded secondary,1641,811,830,49.40%,50.60%,18,1.10%,122,7.40%,153,1484,4,9.30%,90.40%,0.20%,158,138,1190,11.60% +102861,317,4604,State-funded secondary,1003,468,535,46.70%,53.30%,24,2.40%,96,9.60%,363,640,0,36.20%,63.80%,0.00%,203,186,847,22.00% +102864,317,6002,Independent school,504,259,245,51.40%,48.60%,0,0.00%,46,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102866,317,6006,Independent school,379,181,198,47.80%,52.20%,0,0.00%,83,21.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102867,317,6051,Independent school,64,15,49,23.40%,76.60%,0,0.00%,8,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102869,317,6055,Independent school,182,74,108,40.70%,59.30%,0,0.00%,3,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102871,317,6057,Independent school,140,59,81,42.10%,57.90%,0,0.00%,13,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102872,317,6059,Independent school,272,123,149,45.20%,54.80%,0,0.00%,34,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102873,317,6061,Independent school,123,123,0,100.00%,0.00%,0,0.00%,11,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102874,317,6062,Independent school,107,56,51,52.30%,47.70%,0,0.00%,9,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102875,317,6063,Independent school,880,409,471,46.50%,53.50%,1,0.10%,119,13.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102878,317,5950,State-funded special school,196,57,139,29.10%,70.90%,196,100.00%,0,0.00%,107,89,0,54.60%,45.40%,0.00%,81,67,151,44.40% +102879,317,7004,State-funded special school,66,2,64,3.00%,97.00%,64,97.00%,2,3.00%,4,62,0,6.10%,93.90%,0.00%,33,39,66,59.10% +102881,317,7007,State-funded special school,190,31,159,16.30%,83.70%,190,100.00%,0,0.00%,57,133,0,30.00%,70.00%,0.00%,84,85,190,44.70% +102882,318,1001,State-funded nursery,90,33,57,36.70%,63.30%,0,0.00%,0,0.00%,28,62,0,31.10%,68.90%,0.00%,0,0,0,0.00% +102883,318,2001,State-funded primary,246,126,120,51.20%,48.80%,8,3.30%,21,8.50%,52,194,0,21.10%,78.90%,0.00%,28,28,246,11.40% +102884,318,2004,State-funded primary,204,97,107,47.50%,52.50%,20,9.80%,20,9.80%,77,127,0,37.70%,62.30%,0.00%,55,50,181,27.60% +102885,318,2006,State-funded primary,574,277,297,48.30%,51.70%,18,3.10%,64,11.10%,177,397,0,30.80%,69.20%,0.00%,70,76,574,13.20% +102886,318,2007,State-funded primary,359,165,194,46.00%,54.00%,24,6.70%,26,7.20%,94,265,0,26.20%,73.80%,0.00%,52,56,359,15.60% +102887,318,2008,State-funded primary,447,210,237,47.00%,53.00%,16,3.60%,46,10.30%,32,415,0,7.20%,92.80%,0.00%,81,86,447,19.20% +102888,318,2009,State-funded primary,407,189,218,46.40%,53.60%,9,2.20%,35,8.60%,40,367,0,9.80%,90.20%,0.00%,36,37,356,10.40% +102889,318,2010,State-funded primary,205,91,114,44.40%,55.60%,1,0.50%,20,9.80%,80,125,0,39.00%,61.00%,0.00%,25,24,169,14.20% +102890,318,2011,State-funded primary,422,207,215,49.10%,50.90%,33,7.80%,49,11.60%,149,273,0,35.30%,64.70%,0.00%,157,161,422,38.20% +102891,318,2012,State-funded primary,348,164,184,47.10%,52.90%,12,3.40%,61,17.50%,109,239,0,31.30%,68.70%,0.00%,93,95,288,33.00% +102892,318,2013,State-funded primary,278,135,143,48.60%,51.40%,9,3.20%,25,9.00%,86,192,0,30.90%,69.10%,0.00%,41,43,245,17.60% +102893,318,2015,State-funded primary,233,104,129,44.60%,55.40%,7,3.00%,14,6.00%,83,149,1,35.60%,63.90%,0.40%,32,35,205,17.10% +102895,318,2018,State-funded primary,453,216,237,47.70%,52.30%,11,2.40%,18,4.00%,159,294,0,35.10%,64.90%,0.00%,20,22,417,5.30% +102896,318,2019,State-funded primary,219,93,126,42.50%,57.50%,5,2.30%,21,9.60%,76,143,0,34.70%,65.30%,0.00%,27,27,200,13.50% +102897,318,2020,State-funded primary,580,286,294,49.30%,50.70%,24,4.10%,37,6.40%,182,398,0,31.40%,68.60%,0.00%,31,32,580,5.50% +102898,318,2021,State-funded primary,519,238,281,45.90%,54.10%,39,7.50%,57,11.00%,134,385,0,25.80%,74.20%,0.00%,122,123,492,25.00% +102900,318,2023,State-funded primary,286,157,129,54.90%,45.10%,5,1.70%,29,10.10%,28,258,0,9.80%,90.20%,0.00%,39,42,286,14.70% +102901,318,2024,State-funded primary,188,93,95,49.50%,50.50%,5,2.70%,13,6.90%,21,165,2,11.20%,87.80%,1.10%,31,31,188,16.50% +102902,318,2028,State-funded primary,479,241,238,50.30%,49.70%,15,3.10%,38,7.90%,76,403,0,15.90%,84.10%,0.00%,15,15,419,3.60% +102903,318,2032,State-funded primary,718,343,375,47.80%,52.20%,13,1.80%,45,6.30%,175,543,0,24.40%,75.60%,0.00%,51,54,653,8.30% +102904,318,2035,State-funded primary,519,258,261,49.70%,50.30%,15,2.90%,81,15.60%,217,302,0,41.80%,58.20%,0.00%,191,200,494,40.50% +102905,318,2036,State-funded primary,650,297,353,45.70%,54.30%,15,2.30%,29,4.50%,199,451,0,30.60%,69.40%,0.00%,67,68,614,11.10% +102906,318,2037,State-funded primary,607,284,323,46.80%,53.20%,18,3.00%,42,6.90%,226,378,3,37.20%,62.30%,0.50%,32,35,607,5.80% +102907,318,3303,State-funded primary,214,104,110,48.60%,51.40%,19,8.90%,30,14.00%,55,159,0,25.70%,74.30%,0.00%,69,76,180,42.20% +102908,318,3304,State-funded primary,412,206,206,50.00%,50.00%,11,2.70%,34,8.30%,156,256,0,37.90%,62.10%,0.00%,54,54,378,14.30% +102909,318,3309,State-funded primary,203,101,102,49.80%,50.20%,3,1.50%,26,12.80%,80,123,0,39.40%,60.60%,0.00%,27,27,203,13.30% +102910,318,3310,State-funded primary,232,114,118,49.10%,50.90%,10,4.30%,24,10.30%,118,114,0,50.90%,49.10%,0.00%,19,20,232,8.60% +102911,318,3312,State-funded primary,229,122,107,53.30%,46.70%,11,4.80%,29,12.70%,81,148,0,35.40%,64.60%,0.00%,33,33,229,14.40% +102912,318,3315,State-funded primary,465,215,250,46.20%,53.80%,10,2.20%,36,7.70%,164,301,0,35.30%,64.70%,0.00%,38,38,416,9.10% +102913,318,3316,State-funded primary,677,360,317,53.20%,46.80%,25,3.70%,42,6.20%,195,482,0,28.80%,71.20%,0.00%,10,12,631,1.90% +102914,318,3317,State-funded primary,617,309,308,50.10%,49.90%,15,2.40%,75,12.20%,141,476,0,22.90%,77.10%,0.00%,16,20,617,3.20% +102915,318,3319,State-funded primary,415,195,220,47.00%,53.00%,10,2.40%,31,7.50%,68,347,0,16.40%,83.60%,0.00%,23,26,415,6.30% +102916,318,3320,State-funded primary,187,89,98,47.60%,52.40%,8,4.30%,18,9.60%,99,88,0,52.90%,47.10%,0.00%,37,37,169,21.90% +102917,318,3321,State-funded primary,610,350,260,57.40%,42.60%,19,3.10%,36,5.90%,76,534,0,12.50%,87.50%,0.00%,36,37,610,6.10% +102918,318,3322,State-funded primary,205,106,99,51.70%,48.30%,5,2.40%,23,11.20%,44,161,0,21.50%,78.50%,0.00%,22,22,205,10.70% +102919,318,3324,State-funded primary,151,79,72,52.30%,47.70%,4,2.60%,10,6.60%,33,118,0,21.90%,78.10%,0.00%,10,10,151,6.60% +102920,318,3326,State-funded primary,439,221,218,50.30%,49.70%,7,1.60%,33,7.50%,71,368,0,16.20%,83.80%,0.00%,20,19,410,4.60% +102921,318,3327,State-funded primary,395,203,192,51.40%,48.60%,15,3.80%,35,8.90%,107,288,0,27.10%,72.90%,0.00%,37,39,395,9.90% +102929,318,4603,State-funded secondary,1036,454,582,43.80%,56.20%,47,4.50%,88,8.50%,203,833,0,19.60%,80.40%,0.00%,157,164,854,19.20% +102931,318,6001,Independent school,419,12,407,2.90%,97.10%,3,0.70%,16,3.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102932,318,6002,Independent school,978,978,0,100.00%,0.00%,0,0.00%,123,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102933,318,6003,Independent school,198,13,185,6.60%,93.40%,1,0.50%,35,17.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102934,318,6004,Independent school,463,200,263,43.20%,56.80%,2,0.40%,70,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102935,318,6005,Independent school,220,220,0,100.00%,0.00%,0,0.00%,41,18.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102936,318,6008,Independent school,432,432,0,100.00%,0.00%,1,0.20%,85,19.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102937,318,6009,Independent school,174,0,174,0.00%,100.00%,2,1.10%,45,25.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102938,318,6050,Independent school,176,11,165,6.30%,93.80%,0,0.00%,23,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102939,318,6055,Independent school,217,183,34,84.30%,15.70%,0,0.00%,11,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102940,318,6056,Independent school,274,143,131,52.20%,47.80%,0,0.00%,42,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102942,318,6066,Independent school,1517,0,1517,0.00%,100.00%,1,0.10%,1,0.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102943,318,6067,Independent school,277,119,158,43.00%,57.00%,0,0.00%,57,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102944,318,6069,Independent school,169,83,86,49.10%,50.90%,0,0.00%,24,14.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102945,318,6070,Independent school,864,416,448,48.10%,51.90%,0,0.00%,140,16.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102946,318,6071,Independent school,1567,8,1559,0.50%,99.50%,0,0.00%,462,29.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102947,318,6074,Independent school,221,115,106,52.00%,48.00%,0,0.00%,42,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102948,318,6076,Independent school,242,158,84,65.30%,34.70%,0,0.00%,4,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102950,318,6078,Independent school,1046,502,544,48.00%,52.00%,0,0.00%,61,5.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +102955,319,1000,State-funded nursery,71,35,36,49.30%,50.70%,0,0.00%,5,7.00%,21,50,0,29.60%,70.40%,0.00%,0,0,0,0.00% +102956,319,1001,State-funded nursery,109,51,58,46.80%,53.20%,0,0.00%,21,19.30%,52,57,0,47.70%,52.30%,0.00%,0,0,0,0.00% +102969,319,2016,State-funded primary,779,387,392,49.70%,50.30%,4,0.50%,112,14.40%,366,412,1,47.00%,52.90%,0.10%,170,171,711,24.10% +102971,319,2019,State-funded primary,452,227,225,50.20%,49.80%,12,2.70%,40,8.80%,146,305,1,32.30%,67.50%,0.20%,81,87,416,20.90% +102975,319,2023,State-funded primary,682,361,321,52.90%,47.10%,5,0.70%,59,8.70%,330,352,0,48.40%,51.60%,0.00%,192,195,646,30.20% +102981,319,2037,State-funded primary,262,120,142,45.80%,54.20%,10,3.80%,25,9.50%,135,123,4,51.50%,46.90%,1.50%,34,35,262,13.40% +102982,319,2038,State-funded primary,580,270,310,46.60%,53.40%,14,2.40%,97,16.70%,190,390,0,32.80%,67.20%,0.00%,102,103,538,19.10% +102983,319,2040,State-funded primary,296,138,158,46.60%,53.40%,5,1.70%,49,16.60%,90,206,0,30.40%,69.60%,0.00%,38,39,257,15.20% +102984,319,2041,State-funded primary,356,180,176,50.60%,49.40%,5,1.40%,24,6.70%,185,171,0,52.00%,48.00%,0.00%,62,70,356,19.70% +102985,319,2042,State-funded primary,236,105,131,44.50%,55.50%,7,3.00%,25,10.60%,43,183,10,18.20%,77.50%,4.20%,7,7,210,3.30% +102986,319,2043,State-funded primary,258,94,164,36.40%,63.60%,44,17.10%,38,14.70%,61,197,0,23.60%,76.40%,0.00%,101,110,236,46.60% +102990,319,3301,State-funded primary,461,214,247,46.40%,53.60%,7,1.50%,38,8.20%,163,298,0,35.40%,64.60%,0.00%,59,61,420,14.50% +102991,319,3303,State-funded primary,351,164,187,46.70%,53.30%,11,3.10%,52,14.80%,124,226,1,35.30%,64.40%,0.30%,74,75,351,21.40% +102992,319,3304,State-funded primary,444,254,190,57.20%,42.80%,6,1.40%,53,11.90%,136,308,0,30.60%,69.40%,0.00%,45,45,421,10.70% +102993,319,3500,State-funded primary,468,239,229,51.10%,48.90%,6,1.30%,52,11.10%,180,288,0,38.50%,61.50%,0.00%,26,26,436,6.00% +102994,319,3501,State-funded primary,361,204,157,56.50%,43.50%,2,0.60%,54,15.00%,105,254,2,29.10%,70.40%,0.60%,20,21,361,5.80% +102995,319,3502,State-funded primary,288,151,137,52.40%,47.60%,1,0.30%,31,10.80%,108,177,3,37.50%,61.50%,1.00%,7,7,259,2.70% +102996,319,3503,State-funded primary,387,190,197,49.10%,50.90%,9,2.30%,55,14.20%,148,231,8,38.20%,59.70%,2.10%,84,87,387,22.50% +102997,319,3504,State-funded primary,341,169,172,49.60%,50.40%,6,1.80%,48,14.10%,185,156,0,54.30%,45.70%,0.00%,54,52,267,19.50% +103005,319,5201,State-funded primary,373,172,201,46.10%,53.90%,6,1.60%,50,13.40%,114,259,0,30.60%,69.40%,0.00%,45,48,373,12.90% +103009,319,5402,State-funded secondary,1163,0,1163,0.00%,100.00%,22,1.90%,157,13.50%,243,918,2,20.90%,78.90%,0.20%,120,119,934,12.70% +103013,319,5406,State-funded secondary,1479,1479,0,100.00%,0.00%,10,0.70%,169,11.40%,527,952,0,35.60%,64.40%,0.00%,204,217,1177,18.40% +103015,319,6001,Independent school,313,0,313,0.00%,100.00%,0,0.00%,19,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103017,319,6052,Independent school,120,49,71,40.80%,59.20%,1,0.80%,18,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103019,319,6062,Independent school,170,165,5,97.10%,2.90%,0,0.00%,4,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103022,319,6069,Independent school,847,847,0,100.00%,0.00%,2,0.20%,134,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103025,319,7002,State-funded special school,167,47,120,28.10%,71.90%,167,100.00%,0,0.00%,39,128,0,23.40%,76.60%,0.00%,57,54,145,37.20% +103027,320,1000,State-funded nursery,73,30,43,41.10%,58.90%,2,2.70%,8,11.00%,40,33,0,54.80%,45.20%,0.00%,0,0,0,0.00% +103028,320,1002,State-funded nursery,109,60,49,55.00%,45.00%,5,4.60%,3,2.80%,26,83,0,23.90%,76.10%,0.00%,0,0,0,0.00% +103030,320,1004,State-funded nursery,113,56,57,49.60%,50.40%,4,3.50%,9,8.00%,55,58,0,48.70%,51.30%,0.00%,0,0,0,0.00% +103032,320,2001,State-funded primary,673,334,339,49.60%,50.40%,19,2.80%,89,13.20%,463,209,1,68.80%,31.10%,0.10%,142,147,617,23.80% +103036,320,2006,State-funded primary,466,240,226,51.50%,48.50%,26,5.60%,52,11.20%,104,362,0,22.30%,77.70%,0.00%,107,110,424,25.90% +103044,320,2017,State-funded primary,429,226,203,52.70%,47.30%,32,7.50%,89,20.70%,338,91,0,78.80%,21.20%,0.00%,142,140,375,37.30% +103048,320,2023,State-funded primary,843,416,427,49.30%,50.70%,14,1.70%,102,12.10%,335,508,0,39.70%,60.30%,0.00%,143,150,773,19.40% +103052,320,2028,State-funded primary,318,143,175,45.00%,55.00%,6,1.90%,56,17.60%,161,157,0,50.60%,49.40%,0.00%,55,55,206,26.70% +103053,320,2030,State-funded primary,293,142,151,48.50%,51.50%,11,3.80%,49,16.70%,144,149,0,49.10%,50.90%,0.00%,91,93,293,31.70% +103054,320,2031,State-funded primary,467,243,224,52.00%,48.00%,20,4.30%,48,10.30%,266,201,0,57.00%,43.00%,0.00%,68,76,413,18.40% +103059,320,2045,State-funded primary,444,216,228,48.60%,51.40%,24,5.40%,87,19.60%,82,362,0,18.50%,81.50%,0.00%,55,58,415,14.00% +103060,320,2049,State-funded primary,364,181,183,49.70%,50.30%,8,2.20%,55,15.10%,183,181,0,50.30%,49.70%,0.00%,97,100,337,29.70% +103061,320,2050,State-funded primary,619,304,315,49.10%,50.90%,17,2.70%,73,11.80%,269,350,0,43.50%,56.50%,0.00%,139,136,573,23.70% +103069,320,2062,State-funded primary,179,86,93,48.00%,52.00%,6,3.40%,43,24.00%,58,121,0,32.40%,67.60%,0.00%,39,41,179,22.90% +103070,320,2064,State-funded primary,784,384,400,49.00%,51.00%,31,4.00%,120,15.30%,158,625,1,20.20%,79.70%,0.10%,110,114,745,15.30% +103072,320,2066,State-funded primary,471,242,229,51.40%,48.60%,29,6.20%,59,12.50%,318,153,0,67.50%,32.50%,0.00%,114,119,416,28.60% +103073,320,2067,State-funded primary,179,89,90,49.70%,50.30%,8,4.50%,25,14.00%,106,73,0,59.20%,40.80%,0.00%,52,57,179,31.80% +103074,320,2069,State-funded primary,426,204,222,47.90%,52.10%,22,5.20%,29,6.80%,121,305,0,28.40%,71.60%,0.00%,69,74,389,19.00% +103075,320,2072,State-funded primary,477,224,253,47.00%,53.00%,16,3.40%,85,17.80%,165,312,0,34.60%,65.40%,0.00%,77,85,432,19.70% +103077,320,2074,State-funded primary,831,396,435,47.70%,52.30%,25,3.00%,66,7.90%,407,423,1,49.00%,50.90%,0.10%,230,234,727,32.20% +103078,320,2075,State-funded primary,236,123,113,52.10%,47.90%,10,4.20%,39,16.50%,123,113,0,52.10%,47.90%,0.00%,40,36,208,17.30% +103079,320,2076,State-funded primary,579,289,290,49.90%,50.10%,22,3.80%,81,14.00%,184,395,0,31.80%,68.20%,0.00%,77,88,547,16.10% +103080,320,4000,State-funded secondary,1203,566,637,47.00%,53.00%,52,4.30%,192,16.00%,677,526,0,56.30%,43.70%,0.00%,425,461,1166,39.50% +103081,320,2078,State-funded primary,677,337,340,49.80%,50.20%,26,3.80%,85,12.60%,284,393,0,41.90%,58.10%,0.00%,151,160,617,25.90% +103082,320,2079,State-funded primary,415,218,197,52.50%,47.50%,22,5.30%,37,8.90%,145,270,0,34.90%,65.10%,0.00%,102,107,415,25.80% +103084,320,3001,State-funded primary,419,204,215,48.70%,51.30%,12,2.90%,85,20.30%,66,353,0,15.80%,84.20%,0.00%,58,65,419,15.50% +103085,320,3300,State-funded primary,213,104,109,48.80%,51.20%,8,3.80%,30,14.10%,45,168,0,21.10%,78.90%,0.00%,11,12,213,5.60% +103086,320,3301,State-funded primary,138,73,65,52.90%,47.10%,4,2.90%,30,21.70%,75,63,0,54.30%,45.70%,0.00%,41,45,138,32.60% +103088,320,5200,State-funded primary,428,236,192,55.10%,44.90%,11,2.60%,31,7.20%,202,226,0,47.20%,52.80%,0.00%,91,92,373,24.70% +103090,320,3305,State-funded primary,146,74,72,50.70%,49.30%,3,2.10%,19,13.00%,67,79,0,45.90%,54.10%,0.00%,20,21,118,17.80% +103094,320,4060,State-funded secondary,889,309,580,34.80%,65.20%,77,8.70%,135,15.20%,277,612,0,31.20%,68.80%,0.00%,241,281,889,31.60% +103097,320,4063,State-funded secondary,1098,515,583,46.90%,53.10%,63,5.70%,159,14.50%,352,746,0,32.10%,67.90%,0.00%,293,288,888,32.40% +103100,320,4066,State-funded secondary,939,375,564,39.90%,60.10%,29,3.10%,164,17.50%,323,616,0,34.40%,65.60%,0.00%,257,304,939,32.40% +103101,320,4069,State-funded secondary,1002,420,582,41.90%,58.10%,27,2.70%,144,14.40%,342,660,0,34.10%,65.90%,0.00%,208,235,1002,23.50% +103103,320,4072,State-funded secondary,895,895,0,100.00%,0.00%,17,1.90%,94,10.50%,156,739,0,17.40%,82.60%,0.00%,183,213,895,23.80% +103105,320,4075,State-funded secondary,986,377,609,38.20%,61.80%,29,2.90%,106,10.80%,476,510,0,48.30%,51.70%,0.00%,297,347,986,35.20% +103106,320,4603,State-funded secondary,1270,617,653,48.60%,51.40%,21,1.70%,84,6.60%,492,778,0,38.70%,61.30%,0.00%,327,319,985,32.40% +103110,320,6000,Independent school,1521,748,773,49.20%,50.80%,0,0.00%,194,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103111,309,6005,Independent school,46,30,16,65.20%,34.80%,0,0.00%,6,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103112,320,6059,Independent school,281,112,169,39.90%,60.10%,0,0.00%,32,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103119,302,3521,State-funded secondary,1647,792,855,48.10%,51.90%,25,1.50%,187,11.40%,1128,517,2,68.50%,31.40%,0.10%,416,465,1500,31.00% +103120,330,1001,State-funded nursery,98,46,52,46.90%,53.10%,0,0.00%,9,9.20%,46,52,0,46.90%,53.10%,0.00%,2,0,0,0.00% +103121,330,1002,State-funded nursery,128,62,66,48.40%,51.60%,2,1.60%,36,28.10%,75,53,0,58.60%,41.40%,0.00%,47,0,0,0.00% +103122,330,1006,State-funded nursery,76,43,33,56.60%,43.40%,6,7.90%,18,23.70%,31,45,0,40.80%,59.20%,0.00%,3,0,0,0.00% +103123,330,1008,State-funded nursery,73,32,41,43.80%,56.20%,0,0.00%,7,9.60%,15,58,0,20.50%,79.50%,0.00%,0,0,0,0.00% +103124,330,1009,State-funded nursery,117,56,61,47.90%,52.10%,0,0.00%,18,15.40%,69,46,2,59.00%,39.30%,1.70%,20,0,0,0.00% +103125,330,1010,State-funded nursery,157,62,95,39.50%,60.50%,0,0.00%,39,24.80%,143,10,4,91.10%,6.40%,2.50%,27,0,0,0.00% +103126,330,1012,State-funded nursery,119,58,61,48.70%,51.30%,0,0.00%,24,20.20%,61,57,1,51.30%,47.90%,0.80%,0,0,0,0.00% +103127,330,1014,State-funded nursery,118,64,54,54.20%,45.80%,1,0.80%,16,13.60%,10,107,1,8.50%,90.70%,0.80%,39,0,0,0.00% +103128,330,1015,State-funded nursery,105,62,43,59.00%,41.00%,2,1.90%,12,11.40%,14,91,0,13.30%,86.70%,0.00%,19,0,0,0.00% +103129,330,1016,State-funded nursery,89,52,37,58.40%,41.60%,1,1.10%,15,16.90%,9,80,0,10.10%,89.90%,0.00%,21,0,0,0.00% +103130,330,1017,State-funded nursery,162,70,92,43.20%,56.80%,10,6.20%,18,11.10%,23,139,0,14.20%,85.80%,0.00%,44,0,0,0.00% +103131,330,1018,State-funded nursery,119,51,68,42.90%,57.10%,0,0.00%,18,15.10%,7,112,0,5.90%,94.10%,0.00%,34,0,0,0.00% +103132,330,1019,State-funded nursery,145,75,70,51.70%,48.30%,0,0.00%,34,23.40%,52,93,0,35.90%,64.10%,0.00%,1,0,0,0.00% +103133,330,1020,State-funded nursery,158,86,72,54.40%,45.60%,3,1.90%,52,32.90%,28,130,0,17.70%,82.30%,0.00%,50,0,0,0.00% +103134,330,1021,State-funded nursery,53,27,26,50.90%,49.10%,1,1.90%,14,26.40%,20,33,0,37.70%,62.30%,0.00%,18,0,0,0.00% +103135,330,1022,State-funded nursery,88,39,49,44.30%,55.70%,1,1.10%,15,17.00%,65,23,0,73.90%,26.10%,0.00%,1,0,0,0.00% +103136,330,1023,State-funded nursery,80,44,36,55.00%,45.00%,2,2.50%,16,20.00%,52,28,0,65.00%,35.00%,0.00%,8,0,0,0.00% +103137,330,1024,State-funded nursery,93,39,54,41.90%,58.10%,0,0.00%,13,14.00%,34,59,0,36.60%,63.40%,0.00%,37,0,0,0.00% +103138,330,1025,State-funded nursery,113,55,58,48.70%,51.30%,0,0.00%,16,14.20%,87,25,1,77.00%,22.10%,0.90%,36,0,0,0.00% +103139,330,1026,State-funded nursery,111,50,61,45.00%,55.00%,0,0.00%,14,12.60%,52,59,0,46.80%,53.20%,0.00%,11,0,0,0.00% +103140,330,1027,State-funded nursery,127,64,63,50.40%,49.60%,2,1.60%,26,20.50%,81,46,0,63.80%,36.20%,0.00%,11,0,0,0.00% +103141,330,1028,State-funded nursery,107,57,50,53.30%,46.70%,0,0.00%,19,17.80%,93,14,0,86.90%,13.10%,0.00%,23,0,0,0.00% +103142,330,1038,State-funded nursery,146,73,73,50.00%,50.00%,5,3.40%,14,9.60%,21,125,0,14.40%,85.60%,0.00%,24,0,0,0.00% +103144,330,1048,State-funded nursery,160,68,92,42.50%,57.50%,7,4.40%,47,29.40%,17,141,2,10.60%,88.10%,1.30%,67,0,0,0.00% +103145,330,1049,State-funded nursery,121,59,62,48.80%,51.20%,1,0.80%,14,11.60%,82,39,0,67.80%,32.20%,0.00%,19,0,0,0.00% +103146,330,1100,State-funded AP school,351,82,269,23.40%,76.60%,21,6.00%,329,93.70%,30,321,0,8.50%,91.50%,0.00%,250,306,351,87.20% +103150,330,1802,State-funded nursery,87,38,49,43.70%,56.30%,1,1.10%,18,20.70%,14,73,0,16.10%,83.90%,0.00%,27,0,0,0.00% +103157,330,2008,State-funded primary,474,236,238,49.80%,50.20%,7,1.50%,35,7.40%,364,109,1,76.80%,23.00%,0.20%,205,194,421,46.10% +103159,330,2010,State-funded primary,453,214,239,47.20%,52.80%,1,0.20%,50,11.00%,345,108,0,76.20%,23.80%,0.00%,240,255,453,56.30% +103162,330,2014,State-funded primary,421,210,211,49.90%,50.10%,1,0.20%,58,13.80%,151,239,31,35.90%,56.80%,7.40%,171,176,388,45.40% +103163,330,2016,State-funded primary,359,167,192,46.50%,53.50%,2,0.60%,36,10.00%,65,293,1,18.10%,81.60%,0.30%,136,139,359,38.70% +103164,330,2017,State-funded primary,270,115,155,42.60%,57.40%,5,1.90%,30,11.10%,43,222,5,15.90%,82.20%,1.90%,86,86,270,31.90% +103165,330,2018,State-funded primary,340,175,165,51.50%,48.50%,3,0.90%,101,29.70%,110,228,2,32.40%,67.10%,0.60%,227,234,291,80.40% +103172,330,2030,State-funded primary,670,339,331,50.60%,49.40%,1,0.10%,126,18.80%,593,74,3,88.50%,11.00%,0.40%,265,269,622,43.20% +103178,330,2040,State-funded primary,467,226,241,48.40%,51.60%,29,6.20%,39,8.40%,137,327,3,29.30%,70.00%,0.60%,85,90,437,20.60% +103188,330,2053,State-funded primary,477,221,256,46.30%,53.70%,7,1.50%,78,16.40%,121,356,0,25.40%,74.60%,0.00%,121,126,477,26.40% +103189,330,2054,State-funded primary,412,186,226,45.10%,54.90%,4,1.00%,70,17.00%,105,307,0,25.50%,74.50%,0.00%,64,64,360,17.80% +103190,330,2055,State-funded primary,444,218,226,49.10%,50.90%,9,2.00%,79,17.80%,47,394,3,10.60%,88.70%,0.70%,112,117,415,28.20% +103192,330,2062,State-funded primary,463,227,236,49.00%,51.00%,4,0.90%,53,11.40%,370,93,0,79.90%,20.10%,0.00%,191,194,419,46.30% +103193,330,2063,State-funded primary,461,230,231,49.90%,50.10%,1,0.20%,67,14.50%,385,75,1,83.50%,16.30%,0.20%,234,248,431,57.50% +103196,330,2067,State-funded primary,414,204,210,49.30%,50.70%,1,0.20%,75,18.10%,310,104,0,74.90%,25.10%,0.00%,224,225,381,59.10% +103200,330,2079,State-funded primary,359,175,184,48.70%,51.30%,7,1.90%,54,15.00%,179,171,9,49.90%,47.60%,2.50%,191,194,359,54.00% +103201,330,2081,State-funded primary,431,214,217,49.70%,50.30%,4,0.90%,85,19.70%,76,355,0,17.60%,82.40%,0.00%,146,147,410,35.90% +103205,330,2087,State-funded primary,376,195,181,51.90%,48.10%,6,1.60%,64,17.00%,99,277,0,26.30%,73.70%,0.00%,196,202,376,53.70% +103208,330,2091,State-funded primary,187,91,96,48.70%,51.30%,3,1.60%,37,19.80%,32,155,0,17.10%,82.90%,0.00%,70,73,187,39.00% +103209,330,2092,State-funded primary,479,261,218,54.50%,45.50%,7,1.50%,55,11.50%,200,279,0,41.80%,58.20%,0.00%,139,143,479,29.90% +103210,330,2093,State-funded primary,404,201,203,49.80%,50.20%,3,0.70%,44,10.90%,237,167,0,58.70%,41.30%,0.00%,78,78,360,21.70% +103213,330,2097,State-funded primary,234,117,117,50.00%,50.00%,2,0.90%,36,15.40%,59,175,0,25.20%,74.80%,0.00%,104,98,210,46.70% +103214,330,2099,State-funded primary,228,107,121,46.90%,53.10%,13,5.70%,37,16.20%,79,149,0,34.60%,65.40%,0.00%,126,128,210,61.00% +103217,330,2108,State-funded primary,906,429,477,47.40%,52.60%,16,1.80%,163,18.00%,528,369,9,58.30%,40.70%,1.00%,344,349,854,40.90% +103221,330,2115,State-funded primary,329,177,152,53.80%,46.20%,4,1.20%,75,22.80%,35,294,0,10.60%,89.40%,0.00%,158,161,291,55.30% +103223,330,2119,State-funded primary,456,207,249,45.40%,54.60%,5,1.10%,87,19.10%,188,267,1,41.20%,58.60%,0.20%,186,189,417,45.30% +103227,330,2127,State-funded primary,456,237,219,52.00%,48.00%,15,3.30%,56,12.30%,331,122,3,72.60%,26.80%,0.70%,243,246,420,58.60% +103228,330,2128,State-funded primary,362,158,204,43.60%,56.40%,16,4.40%,57,15.70%,61,301,0,16.90%,83.10%,0.00%,116,122,362,33.70% +103229,330,2129,State-funded primary,280,135,145,48.20%,51.80%,13,4.60%,43,15.40%,32,248,0,11.40%,88.60%,0.00%,65,66,280,23.60% +103233,330,2133,State-funded primary,418,202,216,48.30%,51.70%,2,0.50%,57,13.60%,114,304,0,27.30%,72.70%,0.00%,181,188,418,45.00% +103237,330,2142,State-funded primary,440,214,226,48.60%,51.40%,14,3.20%,68,15.50%,335,102,3,76.10%,23.20%,0.70%,201,206,414,49.80% +103240,330,2149,State-funded primary,392,177,215,45.20%,54.80%,23,5.90%,103,26.30%,108,284,0,27.60%,72.40%,0.00%,184,177,370,47.80% +103241,330,2150,State-funded primary,339,172,167,50.70%,49.30%,8,2.40%,62,18.30%,133,206,0,39.20%,60.80%,0.00%,147,152,321,47.40% +103243,330,2153,State-funded primary,417,207,210,49.60%,50.40%,26,6.20%,96,23.00%,120,297,0,28.80%,71.20%,0.00%,216,238,417,57.10% +103246,330,2157,State-funded primary,424,219,205,51.70%,48.30%,1,0.20%,57,13.40%,95,328,1,22.40%,77.40%,0.20%,98,97,398,24.40% +103247,330,2159,State-funded primary,204,116,88,56.90%,43.10%,5,2.50%,47,23.00%,150,54,0,73.50%,26.50%,0.00%,88,94,204,46.10% +103248,330,2160,State-funded primary,344,181,163,52.60%,47.40%,7,2.00%,76,22.10%,23,321,0,6.70%,93.30%,0.00%,161,210,344,61.00% +103249,330,2161,State-funded primary,293,137,156,46.80%,53.20%,3,1.00%,57,19.50%,21,271,1,7.20%,92.50%,0.30%,124,125,253,49.40% +103252,330,2169,State-funded primary,414,214,200,51.70%,48.30%,4,1.00%,42,10.10%,245,169,0,59.20%,40.80%,0.00%,238,229,376,60.90% +103255,330,2174,State-funded primary,360,173,187,48.10%,51.90%,5,1.40%,38,10.60%,139,221,0,38.60%,61.40%,0.00%,120,120,360,33.30% +103256,330,2176,State-funded primary,730,348,382,47.70%,52.30%,11,1.50%,102,14.00%,694,34,2,95.10%,4.70%,0.30%,283,289,653,44.30% +103257,330,2178,State-funded primary,239,117,122,49.00%,51.00%,1,0.40%,54,22.60%,67,169,3,28.00%,70.70%,1.30%,91,96,223,43.00% +103261,330,2183,State-funded primary,374,187,187,50.00%,50.00%,9,2.40%,59,15.80%,365,9,0,97.60%,2.40%,0.00%,156,160,374,42.80% +103262,330,2184,State-funded primary,442,233,209,52.70%,47.30%,2,0.50%,38,8.60%,224,213,5,50.70%,48.20%,1.10%,129,140,417,33.60% +103263,330,2185,State-funded primary,464,210,254,45.30%,54.70%,5,1.10%,67,14.40%,238,226,0,51.30%,48.70%,0.00%,141,145,423,34.30% +103265,330,2189,State-funded primary,267,151,116,56.60%,43.40%,1,0.40%,49,18.40%,219,48,0,82.00%,18.00%,0.00%,130,132,257,51.40% +103266,330,2190,State-funded primary,166,87,79,52.40%,47.60%,2,1.20%,42,25.30%,32,133,1,19.30%,80.10%,0.60%,95,98,166,59.00% +103267,330,2191,State-funded primary,233,110,123,47.20%,52.80%,2,0.90%,46,19.70%,52,181,0,22.30%,77.70%,0.00%,135,137,212,64.60% +103268,330,2192,State-funded primary,505,251,254,49.70%,50.30%,7,1.40%,96,19.00%,306,199,0,60.60%,39.40%,0.00%,230,251,505,49.70% +103279,330,2225,State-funded primary,357,185,172,51.80%,48.20%,10,2.80%,65,18.20%,111,234,12,31.10%,65.50%,3.40%,156,171,357,47.90% +103281,330,2227,State-funded primary,448,222,226,49.60%,50.40%,4,0.90%,90,20.10%,176,271,1,39.30%,60.50%,0.20%,238,225,396,56.80% +103284,330,2231,State-funded primary,462,225,237,48.70%,51.30%,4,0.90%,54,11.70%,276,186,0,59.70%,40.30%,0.00%,145,158,432,36.60% +103286,330,2236,State-funded primary,223,120,103,53.80%,46.20%,2,0.90%,48,21.50%,20,203,0,9.00%,91.00%,0.00%,118,122,223,54.70% +103288,330,2238,State-funded primary,180,95,85,52.80%,47.20%,0,0.00%,51,28.30%,22,158,0,12.20%,87.80%,0.00%,74,71,158,44.90% +103289,330,2239,State-funded primary,202,108,94,53.50%,46.50%,4,2.00%,43,21.30%,42,160,0,20.80%,79.20%,0.00%,94,83,175,47.40% +103291,330,2241,State-funded primary,270,133,137,49.30%,50.70%,3,1.10%,58,21.50%,50,220,0,18.50%,81.50%,0.00%,148,153,270,56.70% +103295,330,2245,State-funded primary,236,109,127,46.20%,53.80%,18,7.60%,36,15.30%,117,119,0,49.60%,50.40%,0.00%,151,147,213,69.00% +103296,330,2246,State-funded primary,585,271,314,46.30%,53.70%,39,6.70%,83,14.20%,31,554,0,5.30%,94.70%,0.00%,244,260,585,44.40% +103298,330,2251,State-funded primary,446,218,228,48.90%,51.10%,6,1.30%,54,12.10%,126,317,3,28.30%,71.10%,0.70%,76,78,420,18.60% +103300,330,2254,State-funded primary,560,278,282,49.60%,50.40%,6,1.10%,102,18.20%,289,271,0,51.60%,48.40%,0.00%,262,266,560,47.50% +103310,330,2278,State-funded primary,404,190,214,47.00%,53.00%,12,3.00%,63,15.60%,52,275,77,12.90%,68.10%,19.10%,226,236,404,58.40% +103313,330,2284,State-funded primary,210,100,110,47.60%,52.40%,0,0.00%,59,28.10%,150,60,0,71.40%,28.60%,0.00%,103,110,210,52.40% +103314,330,2288,State-funded primary,405,203,202,50.10%,49.90%,16,4.00%,66,16.30%,19,386,0,4.70%,95.30%,0.00%,124,137,405,33.80% +103315,330,2289,State-funded primary,408,199,209,48.80%,51.20%,8,2.00%,46,11.30%,17,391,0,4.20%,95.80%,0.00%,122,130,408,31.90% +103317,330,2293,State-funded primary,631,301,330,47.70%,52.30%,4,0.60%,71,11.30%,466,165,0,73.90%,26.10%,0.00%,241,250,590,42.40% +103318,330,2294,State-funded primary,417,207,210,49.60%,50.40%,4,1.00%,71,17.00%,161,256,0,38.60%,61.40%,0.00%,183,185,417,44.40% +103320,330,2296,State-funded primary,302,142,160,47.00%,53.00%,3,1.00%,33,10.90%,61,240,1,20.20%,79.50%,0.30%,120,125,302,41.40% +103324,330,2300,State-funded primary,703,329,374,46.80%,53.20%,15,2.10%,47,6.70%,442,261,0,62.90%,37.10%,0.00%,251,277,637,43.50% +103326,330,2306,State-funded primary,204,89,115,43.60%,56.40%,2,1.00%,28,13.70%,109,95,0,53.40%,46.60%,0.00%,87,87,204,42.60% +103328,330,2308,State-funded primary,443,216,227,48.80%,51.20%,7,1.60%,41,9.30%,314,128,1,70.90%,28.90%,0.20%,230,234,409,57.20% +103332,330,2312,State-funded primary,418,209,209,50.00%,50.00%,13,3.10%,15,3.60%,148,270,0,35.40%,64.60%,0.00%,59,66,418,15.80% +103334,330,2314,State-funded primary,213,103,110,48.40%,51.60%,1,0.50%,37,17.40%,30,183,0,14.10%,85.90%,0.00%,45,46,213,21.60% +103337,330,2317,State-funded primary,326,168,158,51.50%,48.50%,5,1.50%,20,6.10%,104,213,9,31.90%,65.30%,2.80%,110,108,267,40.40% +103339,330,2321,State-funded primary,185,92,93,49.70%,50.30%,2,1.10%,54,29.20%,29,156,0,15.70%,84.30%,0.00%,117,118,185,63.80% +103341,330,2401,State-funded primary,380,194,186,51.10%,48.90%,20,5.30%,54,14.20%,32,347,1,8.40%,91.30%,0.30%,69,70,380,18.40% +103342,330,2402,State-funded primary,315,147,168,46.70%,53.30%,9,2.90%,34,10.80%,30,285,0,9.50%,90.50%,0.00%,33,33,278,11.90% +103345,330,2406,State-funded primary,206,100,106,48.50%,51.50%,2,1.00%,39,18.90%,11,195,0,5.30%,94.70%,0.00%,107,107,206,51.90% +103349,330,2412,State-funded primary,420,205,215,48.80%,51.20%,3,0.70%,64,15.20%,50,367,3,11.90%,87.40%,0.70%,89,92,420,21.90% +103351,330,2416,State-funded primary,368,175,193,47.60%,52.40%,2,0.50%,20,5.40%,45,323,0,12.20%,87.80%,0.00%,32,35,368,9.50% +103353,330,2420,State-funded primary,420,208,212,49.50%,50.50%,3,0.70%,45,10.70%,45,375,0,10.70%,89.30%,0.00%,23,24,420,5.70% +103356,330,2425,State-funded primary,211,120,91,56.90%,43.10%,3,1.40%,24,11.40%,25,183,3,11.80%,86.70%,1.40%,25,27,211,12.80% +103360,330,2429,State-funded primary,197,92,105,46.70%,53.30%,4,2.00%,27,13.70%,62,135,0,31.50%,68.50%,0.00%,40,34,168,20.20% +103362,330,2435,State-funded primary,417,196,221,47.00%,53.00%,7,1.70%,52,12.50%,283,132,2,67.90%,31.70%,0.50%,222,227,397,57.20% +103368,330,2441,State-funded primary,366,186,180,50.80%,49.20%,2,0.50%,61,16.70%,119,247,0,32.50%,67.50%,0.00%,218,219,348,62.90% +103372,330,2445,State-funded primary,195,101,94,51.80%,48.20%,2,1.00%,38,19.50%,33,162,0,16.90%,83.10%,0.00%,144,146,195,74.90% +103381,330,2454,State-funded primary,385,185,200,48.10%,51.90%,4,1.00%,71,18.40%,111,274,0,28.80%,71.20%,0.00%,236,225,347,64.80% +103383,330,2456,State-funded primary,199,105,94,52.80%,47.20%,2,1.00%,51,25.60%,44,155,0,22.10%,77.90%,0.00%,84,84,199,42.20% +103384,330,2457,State-funded primary,453,221,232,48.80%,51.20%,12,2.60%,82,18.10%,339,113,1,74.80%,24.90%,0.20%,167,179,417,42.90% +103388,330,2462,State-funded primary,422,200,222,47.40%,52.60%,0,0.00%,23,5.50%,46,358,18,10.90%,84.80%,4.30%,31,33,421,7.80% +103390,330,2464,State-funded primary,414,185,229,44.70%,55.30%,1,0.20%,40,9.70%,23,390,1,5.60%,94.20%,0.20%,27,29,414,7.00% +103391,330,2465,State-funded primary,462,237,225,51.30%,48.70%,5,1.10%,42,9.10%,143,314,5,31.00%,68.00%,1.10%,117,126,420,30.00% +103392,330,2466,State-funded primary,678,327,351,48.20%,51.80%,6,0.90%,127,18.70%,449,229,0,66.20%,33.80%,0.00%,274,284,616,46.10% +103395,330,2469,State-funded primary,324,170,154,52.50%,47.50%,2,0.60%,34,10.50%,87,237,0,26.90%,73.10%,0.00%,127,135,324,41.70% +103397,330,3002,State-funded primary,228,105,123,46.10%,53.90%,2,0.90%,25,11.00%,116,112,0,50.90%,49.10%,0.00%,108,101,206,49.00% +103398,330,3003,State-funded primary,212,108,104,50.90%,49.10%,1,0.50%,31,14.60%,17,195,0,8.00%,92.00%,0.00%,23,24,212,11.30% +103401,330,3010,State-funded primary,418,187,231,44.70%,55.30%,7,1.70%,67,16.00%,278,136,4,66.50%,32.50%,1.00%,197,204,418,48.80% +103404,330,3016,State-funded primary,205,102,103,49.80%,50.20%,5,2.40%,18,8.80%,150,46,9,73.20%,22.40%,4.40%,114,125,205,61.00% +103406,330,3019,State-funded primary,413,194,219,47.00%,53.00%,13,3.10%,59,14.30%,397,16,0,96.10%,3.90%,0.00%,168,171,413,41.40% +103410,330,3025,State-funded primary,417,207,210,49.60%,50.40%,12,2.90%,58,13.90%,125,291,1,30.00%,69.80%,0.20%,94,99,417,23.70% +103416,330,3307,State-funded primary,364,177,187,48.60%,51.40%,4,1.10%,62,17.00%,36,327,1,9.90%,89.80%,0.30%,83,86,364,23.60% +103417,330,3310,State-funded primary,232,104,128,44.80%,55.20%,6,2.60%,57,24.60%,162,70,0,69.80%,30.20%,0.00%,143,133,198,67.20% +103421,330,3317,State-funded primary,232,114,118,49.10%,50.90%,4,1.70%,31,13.40%,135,97,0,58.20%,41.80%,0.00%,104,97,209,46.40% +103423,330,3319,State-funded primary,400,187,213,46.80%,53.30%,6,1.50%,85,21.30%,88,312,0,22.00%,78.00%,0.00%,160,156,367,42.50% +103424,330,3320,State-funded primary,405,221,184,54.60%,45.40%,3,0.70%,70,17.30%,81,318,6,20.00%,78.50%,1.50%,213,228,405,56.30% +103425,330,3321,State-funded primary,379,190,189,50.10%,49.90%,3,0.80%,64,16.90%,281,98,0,74.10%,25.90%,0.00%,153,159,379,42.00% +103426,330,3322,State-funded primary,230,122,108,53.00%,47.00%,2,0.90%,15,6.50%,52,177,1,22.60%,77.00%,0.40%,83,84,208,40.40% +103427,330,3323,State-funded primary,213,100,113,46.90%,53.10%,3,1.40%,32,15.00%,112,101,0,52.60%,47.40%,0.00%,95,97,193,50.30% +103430,330,3328,State-funded primary,227,122,105,53.70%,46.30%,4,1.80%,29,12.80%,15,212,0,6.60%,93.40%,0.00%,55,51,210,24.30% +103431,330,3329,State-funded primary,241,110,131,45.60%,54.40%,3,1.20%,34,14.10%,194,46,1,80.50%,19.10%,0.40%,114,103,209,49.30% +103433,330,3331,State-funded primary,249,119,130,47.80%,52.20%,1,0.40%,39,15.70%,180,69,0,72.30%,27.70%,0.00%,78,79,212,37.30% +103434,330,3335,State-funded primary,204,96,108,47.10%,52.90%,4,2.00%,30,14.70%,84,120,0,41.20%,58.80%,0.00%,110,115,204,56.40% +103437,330,3342,State-funded primary,384,182,202,47.40%,52.60%,6,1.60%,85,22.10%,181,139,64,47.10%,36.20%,16.70%,235,240,384,62.50% +103438,330,3344,State-funded primary,418,204,214,48.80%,51.20%,5,1.20%,32,7.70%,161,257,0,38.50%,61.50%,0.00%,76,77,418,18.40% +103439,330,3346,State-funded primary,178,90,88,50.60%,49.40%,1,0.60%,26,14.60%,89,89,0,50.00%,50.00%,0.00%,81,83,178,46.60% +103440,330,3347,State-funded primary,198,90,108,45.50%,54.50%,3,1.50%,39,19.70%,105,92,1,53.00%,46.50%,0.50%,105,120,182,65.90% +103443,330,3351,State-funded primary,233,125,108,53.60%,46.40%,2,0.90%,31,13.30%,55,178,0,23.60%,76.40%,0.00%,97,96,208,46.20% +103444,330,3352,State-funded primary,226,113,113,50.00%,50.00%,3,1.30%,42,18.60%,98,121,7,43.40%,53.50%,3.10%,70,68,202,33.70% +103445,330,3353,State-funded primary,654,324,330,49.50%,50.50%,3,0.50%,55,8.40%,54,578,22,8.30%,88.40%,3.40%,95,121,654,18.50% +103447,330,3355,State-funded primary,405,212,193,52.30%,47.70%,7,1.70%,41,10.10%,105,300,0,25.90%,74.10%,0.00%,112,116,405,28.60% +103453,330,3361,State-funded primary,384,198,186,51.60%,48.40%,1,0.30%,32,8.30%,170,214,0,44.30%,55.70%,0.00%,170,169,364,46.40% +103455,330,3363,State-funded primary,378,192,186,50.80%,49.20%,2,0.50%,37,9.80%,69,309,0,18.30%,81.70%,0.00%,131,130,353,36.80% +103456,330,3365,State-funded primary,210,98,112,46.70%,53.30%,4,1.90%,33,15.70%,75,134,1,35.70%,63.80%,0.50%,38,38,210,18.10% +103458,330,3367,State-funded primary,234,128,106,54.70%,45.30%,0,0.00%,22,9.40%,31,203,0,13.20%,86.80%,0.00%,85,86,210,41.00% +103459,330,3371,State-funded primary,270,132,138,48.90%,51.10%,4,1.50%,54,20.00%,15,255,0,5.60%,94.40%,0.00%,56,56,270,20.70% +103460,330,3372,State-funded primary,634,306,328,48.30%,51.70%,19,3.00%,102,16.10%,136,498,0,21.50%,78.50%,0.00%,297,269,574,46.90% +103462,330,3375,State-funded primary,412,203,209,49.30%,50.70%,4,1.00%,36,8.70%,228,162,22,55.30%,39.30%,5.30%,114,124,412,30.10% +103463,330,3377,State-funded primary,205,94,111,45.90%,54.10%,3,1.50%,38,18.50%,54,149,2,26.30%,72.70%,1.00%,127,131,189,69.30% +103465,330,3380,State-funded primary,207,93,114,44.90%,55.10%,4,1.90%,20,9.70%,21,175,11,10.10%,84.50%,5.30%,30,31,207,15.00% +103466,330,3381,State-funded primary,211,101,110,47.90%,52.10%,1,0.50%,34,16.10%,26,185,0,12.30%,87.70%,0.00%,64,69,211,32.70% +103467,330,3382,State-funded primary,206,103,103,50.00%,50.00%,2,1.00%,44,21.40%,42,164,0,20.40%,79.60%,0.00%,59,62,206,30.10% +103469,330,3385,State-funded primary,208,108,100,51.90%,48.10%,3,1.40%,24,11.50%,49,159,0,23.60%,76.40%,0.00%,90,91,208,43.80% +103470,330,3386,State-funded primary,244,114,130,46.70%,53.30%,6,2.50%,53,21.70%,123,113,8,50.40%,46.30%,3.30%,96,93,217,42.90% +103476,330,3406,State-funded primary,280,142,138,50.70%,49.30%,5,1.80%,47,16.80%,174,104,2,62.10%,37.10%,0.70%,164,146,255,57.30% +103478,330,3410,State-funded primary,207,100,107,48.30%,51.70%,5,2.40%,37,17.90%,133,74,0,64.30%,35.70%,0.00%,50,58,207,28.00% +103479,330,3411,State-funded primary,174,89,85,51.10%,48.90%,4,2.30%,46,26.40%,25,149,0,14.40%,85.60%,0.00%,124,102,148,68.90% +103483,330,4015,State-funded secondary,745,745,0,100.00%,0.00%,9,1.20%,90,12.10%,316,428,1,42.40%,57.40%,0.10%,276,311,745,41.70% +103486,330,4063,State-funded secondary,732,0,732,0.00%,100.00%,5,0.70%,84,11.50%,428,303,1,58.50%,41.40%,0.10%,284,344,732,47.00% +103493,330,4115,State-funded secondary,974,974,0,100.00%,0.00%,20,2.10%,122,12.50%,903,71,0,92.70%,7.30%,0.00%,391,310,643,48.20% +103497,330,4173,State-funded secondary,904,398,506,44.00%,56.00%,23,2.50%,200,22.10%,255,649,0,28.20%,71.80%,0.00%,220,286,904,31.60% +103498,330,4177,State-funded secondary,793,793,0,100.00%,0.00%,2,0.30%,111,14.00%,557,236,0,70.20%,29.80%,0.00%,384,426,793,53.70% +103501,330,4193,State-funded secondary,670,0,670,0.00%,100.00%,18,2.70%,155,23.10%,236,434,0,35.20%,64.80%,0.00%,203,231,670,34.50% +103503,330,4201,State-funded secondary,1221,352,869,28.80%,71.20%,7,0.60%,125,10.20%,349,869,3,28.60%,71.20%,0.20%,439,547,1221,44.80% +103509,330,4223,State-funded secondary,1194,612,582,51.30%,48.70%,12,1.00%,236,19.80%,994,199,1,83.20%,16.70%,0.10%,563,638,1045,61.10% +103514,330,4237,State-funded secondary,1866,1866,0,100.00%,0.00%,8,0.40%,280,15.00%,731,1128,7,39.20%,60.50%,0.40%,617,624,1585,39.40% +103519,330,4245,State-funded secondary,1475,527,948,35.70%,64.30%,6,0.40%,244,16.50%,1012,431,32,68.60%,29.20%,2.20%,763,711,1260,56.40% +103531,330,4606,State-funded secondary,1027,1027,0,100.00%,0.00%,8,0.80%,164,16.00%,410,615,2,39.90%,59.90%,0.20%,233,245,827,29.60% +103534,330,4625,State-funded secondary,636,248,388,39.00%,61.00%,4,0.60%,46,7.20%,424,212,0,66.70%,33.30%,0.00%,296,344,636,54.10% +103539,330,4801,State-funded secondary,759,384,375,50.60%,49.40%,11,1.40%,108,14.20%,150,609,0,19.80%,80.20%,0.00%,268,376,759,49.50% +103543,330,5202,State-funded primary,360,187,173,51.90%,48.10%,3,0.80%,68,18.90%,45,315,0,12.50%,87.50%,0.00%,42,48,360,13.30% +103544,330,5203,State-funded primary,321,152,169,47.40%,52.60%,5,1.60%,38,11.80%,35,286,0,10.90%,89.10%,0.00%,25,23,270,8.50% +103560,330,5413,State-funded secondary,1228,552,676,45.00%,55.00%,13,1.10%,181,14.70%,209,1017,2,17.00%,82.80%,0.20%,354,340,987,34.40% +103562,330,5415,State-funded secondary,795,0,795,0.00%,100.00%,13,1.60%,151,19.00%,95,698,2,11.90%,87.80%,0.30%,218,244,795,30.70% +103563,330,5416,State-funded secondary,1247,577,670,46.30%,53.70%,12,1.00%,215,17.20%,120,1120,7,9.60%,89.80%,0.60%,542,603,1168,51.60% +103564,330,6000,Independent school,391,107,284,27.40%,72.60%,47,12.00%,57,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103566,330,6002,Independent school,400,135,265,33.80%,66.30%,5,1.30%,21,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103567,330,6003,Independent school,873,873,0,100.00%,0.00%,0,0.00%,70,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103568,330,6004,Independent school,572,244,328,42.70%,57.30%,1,0.20%,55,9.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103572,330,6027,Independent school,150,78,72,52.00%,48.00%,0,0.00%,15,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103573,330,6048,Independent school,15,7,8,46.70%,53.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103575,330,6059,Independent school,347,25,322,7.20%,92.80%,2,0.60%,34,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103576,330,6060,Independent school,519,228,291,43.90%,56.10%,8,1.50%,63,12.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103578,330,6064,Independent school,95,52,43,54.70%,45.30%,0,0.00%,19,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103580,330,6070,Independent school,623,303,320,48.60%,51.40%,0,0.00%,50,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103584,330,6076,Independent school,875,0,875,0.00%,100.00%,0,0.00%,119,13.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103585,330,6077,Independent school,658,658,0,100.00%,0.00%,0,0.00%,58,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103586,330,6078,Independent school,134,0,134,0.00%,100.00%,134,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103587,330,6079,Independent school,209,94,115,45.00%,55.00%,0,0.00%,39,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103588,330,6080,Independent school,17,9,8,52.90%,47.10%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103591,330,6083,Independent school,123,123,0,100.00%,0.00%,0,0.00%,2,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103598,344,3374,State-funded primary,394,160,234,40.60%,59.40%,4,1.00%,44,11.20%,8,383,3,2.00%,97.20%,0.80%,62,62,394,15.70% +103600,330,7006,State-funded special school,128,30,98,23.40%,76.60%,128,100.00%,0,0.00%,43,85,0,33.60%,66.40%,0.00%,74,78,128,60.90% +103601,330,7009,State-funded special school,226,105,121,46.50%,53.50%,226,100.00%,0,0.00%,54,172,0,23.90%,76.10%,0.00%,130,131,176,74.40% +103603,330,7012,State-funded special school,62,25,37,40.30%,59.70%,62,100.00%,0,0.00%,62,0,0,100.00%,0.00%,0.00%,40,40,57,70.20% +103605,330,7014,State-funded special school,264,59,205,22.30%,77.70%,264,100.00%,0,0.00%,54,209,1,20.50%,79.20%,0.40%,114,112,235,47.70% +103606,330,7016,State-funded special school,176,22,154,12.50%,87.50%,176,100.00%,0,0.00%,23,153,0,13.10%,86.90%,0.00%,78,64,111,57.70% +103611,330,7030,State-funded special school,70,25,45,35.70%,64.30%,70,100.00%,0,0.00%,42,28,0,60.00%,40.00%,0.00%,41,39,59,66.10% +103613,330,7033,State-funded special school,386,125,261,32.40%,67.60%,386,100.00%,0,0.00%,64,322,0,16.60%,83.40%,0.00%,201,169,287,58.90% +103614,330,7034,State-funded special school,86,33,53,38.40%,61.60%,86,100.00%,0,0.00%,33,53,0,38.40%,61.60%,0.00%,37,35,72,48.60% +103615,330,7035,State-funded special school,151,42,109,27.80%,72.20%,151,100.00%,0,0.00%,44,107,0,29.10%,70.90%,0.00%,79,83,151,55.00% +103622,330,7045,State-funded special school,264,52,212,19.70%,80.30%,264,100.00%,0,0.00%,54,210,0,20.50%,79.50%,0.00%,120,127,263,48.30% +103623,330,7047,State-funded special school,85,14,71,16.50%,83.50%,85,100.00%,0,0.00%,0,85,0,0.00%,100.00%,0.00%,47,59,85,69.40% +103625,330,7050,State-funded special school,110,39,71,35.50%,64.50%,110,100.00%,0,0.00%,37,73,0,33.60%,66.40%,0.00%,67,50,75,66.70% +103626,330,7051,State-funded special school,111,32,79,28.80%,71.20%,111,100.00%,0,0.00%,16,95,0,14.40%,85.60%,0.00%,66,72,111,64.90% +103627,330,7052,State-funded special school,96,27,69,28.10%,71.90%,96,100.00%,0,0.00%,39,55,2,40.60%,57.30%,2.10%,44,50,95,52.60% +103628,330,7053,State-funded special school,177,30,147,16.90%,83.10%,177,100.00%,0,0.00%,49,128,0,27.70%,72.30%,0.00%,91,85,139,61.20% +103630,330,7060,State-funded special school,103,24,79,23.30%,76.70%,103,100.00%,0,0.00%,23,80,0,22.30%,77.70%,0.00%,46,49,103,47.60% +103632,330,7062,State-funded special school,130,14,116,10.80%,89.20%,130,100.00%,0,0.00%,1,125,4,0.80%,96.20%,3.10%,109,119,130,91.50% +103633,331,1007,State-funded nursery,153,69,84,45.10%,54.90%,0,0.00%,44,28.80%,104,49,0,68.00%,32.00%,0.00%,0,0,0,0.00% +103639,331,2008,State-funded primary,629,320,309,50.90%,49.10%,6,1.00%,77,12.20%,77,543,9,12.20%,86.30%,1.40%,65,69,596,11.60% +103641,331,2013,State-funded primary,416,188,228,45.20%,54.80%,3,0.70%,59,14.20%,74,341,1,17.80%,82.00%,0.20%,71,73,416,17.50% +103642,331,2015,State-funded primary,440,205,235,46.60%,53.40%,8,1.80%,76,17.30%,376,62,2,85.50%,14.10%,0.50%,164,164,414,39.60% +103643,331,2021,State-funded primary,442,249,193,56.30%,43.70%,7,1.60%,65,14.70%,242,200,0,54.80%,45.20%,0.00%,164,165,416,39.70% +103647,331,2037,State-funded primary,238,115,123,48.30%,51.70%,9,3.80%,48,20.20%,147,91,0,61.80%,38.20%,0.00%,79,83,238,34.90% +103648,331,2150,State-funded primary,226,116,110,51.30%,48.70%,7,3.10%,32,14.20%,95,127,4,42.00%,56.20%,1.80%,76,76,203,37.40% +103652,331,2054,State-funded primary,448,197,251,44.00%,56.00%,3,0.70%,56,12.50%,50,398,0,11.20%,88.80%,0.00%,52,55,409,13.40% +103655,331,2068,State-funded primary,409,195,214,47.70%,52.30%,3,0.70%,70,17.10%,172,236,1,42.10%,57.70%,0.20%,104,106,372,28.50% +103656,331,2076,State-funded primary,187,88,99,47.10%,52.90%,6,3.20%,21,11.20%,10,177,0,5.30%,94.70%,0.00%,25,25,187,13.40% +103658,331,2078,State-funded primary,470,220,250,46.80%,53.20%,5,1.10%,70,14.90%,78,392,0,16.60%,83.40%,0.00%,40,42,419,10.00% +103659,331,2079,State-funded primary,381,191,190,50.10%,49.90%,3,0.80%,44,11.50%,103,277,1,27.00%,72.70%,0.30%,103,107,350,30.60% +103662,331,2084,State-funded primary,394,193,201,49.00%,51.00%,7,1.80%,60,15.20%,35,358,1,8.90%,90.90%,0.30%,29,33,361,9.10% +103663,331,2091,State-funded primary,411,196,215,47.70%,52.30%,8,1.90%,102,24.80%,92,314,5,22.40%,76.40%,1.20%,101,103,411,25.10% +103664,331,2092,State-funded primary,416,203,213,48.80%,51.20%,7,1.70%,45,10.80%,72,343,1,17.30%,82.50%,0.20%,16,16,416,3.80% +103665,331,2095,State-funded primary,237,113,124,47.70%,52.30%,3,1.30%,54,22.80%,11,226,0,4.60%,95.40%,0.00%,30,33,237,13.90% +103666,331,2101,State-funded primary,420,214,206,51.00%,49.00%,4,1.00%,48,11.40%,44,375,1,10.50%,89.30%,0.20%,28,29,386,7.50% +103667,331,2107,State-funded primary,205,97,108,47.30%,52.70%,2,1.00%,23,11.20%,71,134,0,34.60%,65.40%,0.00%,26,27,205,13.20% +103671,331,2118,State-funded primary,215,92,123,42.80%,57.20%,4,1.90%,35,16.30%,53,161,1,24.70%,74.90%,0.50%,71,73,199,36.70% +103672,331,2149,State-funded primary,684,327,357,47.80%,52.20%,7,1.00%,58,8.50%,363,318,3,53.10%,46.50%,0.40%,192,197,632,31.20% +103673,331,2121,State-funded primary,480,227,253,47.30%,52.70%,8,1.70%,76,15.80%,286,194,0,59.60%,40.40%,0.00%,185,183,414,44.20% +103674,331,2122,State-funded primary,218,94,124,43.10%,56.90%,4,1.80%,52,23.90%,64,153,1,29.40%,70.20%,0.50%,53,57,184,31.00% +103676,331,2125,State-funded primary,626,320,306,51.10%,48.90%,5,0.80%,65,10.40%,508,118,0,81.20%,18.80%,0.00%,207,205,586,35.00% +103679,331,2129,State-funded primary,435,209,226,48.00%,52.00%,7,1.60%,45,10.30%,274,160,1,63.00%,36.80%,0.20%,132,138,409,33.70% +103680,331,2130,State-funded primary,566,289,277,51.10%,48.90%,6,1.10%,69,12.20%,111,444,11,19.60%,78.40%,1.90%,71,75,514,14.60% +103681,331,2131,State-funded primary,616,319,297,51.80%,48.20%,18,2.90%,102,16.60%,327,289,0,53.10%,46.90%,0.00%,213,221,581,38.00% +103682,331,2132,State-funded primary,453,226,227,49.90%,50.10%,5,1.10%,49,10.80%,60,390,3,13.20%,86.10%,0.70%,65,66,418,15.80% +103684,331,2152,State-funded primary,510,231,279,45.30%,54.70%,6,1.20%,114,22.40%,221,286,3,43.30%,56.10%,0.60%,172,175,421,41.60% +103685,331,2135,State-funded primary,675,329,346,48.70%,51.30%,8,1.20%,109,16.10%,189,485,1,28.00%,71.90%,0.10%,137,144,616,23.40% +103686,331,2136,State-funded primary,531,285,246,53.70%,46.30%,16,3.00%,85,16.00%,77,454,0,14.50%,85.50%,0.00%,31,32,531,6.00% +103690,331,2140,State-funded primary,479,225,254,47.00%,53.00%,5,1.00%,61,12.70%,312,167,0,65.10%,34.90%,0.00%,156,161,444,36.30% +103691,331,2141,State-funded primary,731,363,368,49.70%,50.30%,6,0.80%,57,7.80%,331,399,1,45.30%,54.60%,0.10%,76,77,627,12.30% +103692,331,2142,State-funded primary,657,312,345,47.50%,52.50%,9,1.40%,140,21.30%,146,509,2,22.20%,77.50%,0.30%,239,243,608,40.00% +103695,331,2145,State-funded primary,807,429,378,53.20%,46.80%,7,0.90%,112,13.90%,567,240,0,70.30%,29.70%,0.00%,378,387,737,52.50% +103696,331,2146,State-funded primary,909,453,456,49.80%,50.20%,14,1.50%,165,18.20%,171,731,7,18.80%,80.40%,0.80%,155,163,834,19.50% +103697,331,2147,State-funded primary,486,254,232,52.30%,47.70%,7,1.40%,87,17.90%,172,306,8,35.40%,63.00%,1.60%,86,91,411,22.10% +103698,331,2151,State-funded primary,238,100,138,42.00%,58.00%,4,1.70%,62,26.10%,84,153,1,35.30%,64.30%,0.40%,71,71,209,34.00% +103702,331,3008,State-funded primary,244,127,117,52.00%,48.00%,3,1.20%,49,20.10%,139,105,0,57.00%,43.00%,0.00%,47,47,212,22.20% +103703,331,3009,State-funded primary,179,81,98,45.30%,54.70%,3,1.70%,39,21.80%,7,172,0,3.90%,96.10%,0.00%,16,16,179,8.90% +103711,331,3406,State-funded primary,218,109,109,50.00%,50.00%,3,1.40%,26,11.90%,86,132,0,39.40%,60.60%,0.00%,46,50,200,25.00% +103712,331,3408,State-funded primary,224,110,114,49.10%,50.90%,2,0.90%,35,15.60%,65,158,1,29.00%,70.50%,0.40%,97,101,199,50.80% +103719,331,3418,State-funded primary,228,104,124,45.60%,54.40%,3,1.30%,59,25.90%,91,137,0,39.90%,60.10%,0.00%,87,89,193,46.10% +103724,331,3433,State-funded primary,234,103,131,44.00%,56.00%,1,0.40%,43,18.40%,33,201,0,14.10%,85.90%,0.00%,24,25,208,12.00% +103726,331,3435,State-funded primary,445,220,225,49.40%,50.60%,5,1.10%,100,22.50%,122,322,1,27.40%,72.40%,0.20%,64,67,419,16.00% +103747,331,6011,Independent school,151,87,64,57.60%,42.40%,2,1.30%,14,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103750,331,6016,Independent school,805,355,450,44.10%,55.90%,3,0.40%,153,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103751,331,6017,Independent school,708,359,349,50.70%,49.30%,2,0.30%,170,24.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103753,331,6022,Independent school,85,54,31,63.50%,36.50%,0,0.00%,7,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103754,331,6023,Independent school,356,175,181,49.20%,50.80%,1,0.30%,86,24.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103760,331,7009,State-funded special school,241,81,160,33.60%,66.40%,241,100.00%,0,0.00%,60,181,0,24.90%,75.10%,0.00%,90,80,212,37.70% +103763,331,7017,State-funded special school,113,33,80,29.20%,70.80%,113,100.00%,0,0.00%,46,67,0,40.70%,59.30%,0.00%,36,37,113,32.70% +103765,331,7019,State-funded special school,117,38,79,32.50%,67.50%,117,100.00%,0,0.00%,50,67,0,42.70%,57.30%,0.00%,59,42,76,55.30% +103766,332,1000,State-funded nursery,140,51,89,36.40%,63.60%,5,3.60%,67,47.90%,39,101,0,27.90%,72.10%,0.00%,0,0,0,0.00% +103776,332,2023,State-funded primary,227,123,104,54.20%,45.80%,1,0.40%,21,9.30%,39,188,0,17.20%,82.80%,0.00%,114,116,202,57.40% +103777,332,2024,State-funded primary,418,201,217,48.10%,51.90%,29,6.90%,81,19.40%,75,343,0,17.90%,82.10%,0.00%,196,200,380,52.60% +103778,332,2029,State-funded primary,406,196,210,48.30%,51.70%,9,2.20%,56,13.80%,7,399,0,1.70%,98.30%,0.00%,108,109,406,26.80% +103779,332,2035,State-funded primary,204,95,109,46.60%,53.40%,6,2.90%,27,13.20%,1,203,0,0.50%,99.50%,0.00%,12,12,204,5.90% +103780,332,2036,State-funded primary,366,178,188,48.60%,51.40%,4,1.10%,31,8.50%,35,331,0,9.60%,90.40%,0.00%,89,89,333,26.70% +103781,332,2043,State-funded primary,210,96,114,45.70%,54.30%,5,2.40%,29,13.80%,11,199,0,5.20%,94.80%,0.00%,13,14,194,7.20% +103784,332,2052,State-funded primary,384,178,206,46.40%,53.60%,7,1.80%,89,23.20%,15,367,2,3.90%,95.60%,0.50%,132,132,344,38.40% +103786,332,2063,State-funded primary,299,152,147,50.80%,49.20%,10,3.30%,26,8.70%,4,295,0,1.30%,98.70%,0.00%,44,44,299,14.70% +103787,332,2067,State-funded primary,196,86,110,43.90%,56.10%,5,2.60%,50,25.50%,12,184,0,6.10%,93.90%,0.00%,87,89,196,45.40% +103790,332,2072,State-funded primary,209,103,106,49.30%,50.70%,15,7.20%,19,9.10%,4,205,0,1.90%,98.10%,0.00%,71,72,209,34.40% +103791,332,2075,State-funded primary,825,377,448,45.70%,54.30%,14,1.70%,108,13.10%,53,772,0,6.40%,93.60%,0.00%,133,138,773,17.90% +103792,332,2077,State-funded primary,312,150,162,48.10%,51.90%,1,0.30%,38,12.20%,7,305,0,2.20%,97.80%,0.00%,36,37,312,11.90% +103799,332,2109,State-funded primary,279,128,151,45.90%,54.10%,9,3.20%,43,15.40%,20,259,0,7.20%,92.80%,0.00%,40,41,279,14.70% +103800,332,2111,State-funded primary,435,209,226,48.00%,52.00%,15,3.40%,111,25.50%,266,169,0,61.10%,38.90%,0.00%,133,139,388,35.80% +103801,332,2112,State-funded primary,259,134,125,51.70%,48.30%,20,7.70%,21,8.10%,42,217,0,16.20%,83.80%,0.00%,84,87,216,40.30% +103802,332,2116,State-funded primary,437,215,222,49.20%,50.80%,18,4.10%,56,12.80%,95,342,0,21.70%,78.30%,0.00%,134,136,398,34.20% +103805,332,2122,State-funded primary,231,128,103,55.40%,44.60%,3,1.30%,24,10.40%,3,227,1,1.30%,98.30%,0.40%,25,25,207,12.10% +103806,332,2123,State-funded primary,307,174,133,56.70%,43.30%,14,4.60%,47,15.30%,16,290,1,5.20%,94.50%,0.30%,67,67,307,21.80% +103807,332,2124,State-funded primary,418,184,234,44.00%,56.00%,8,1.90%,53,12.70%,14,404,0,3.30%,96.70%,0.00%,79,81,418,19.40% +103809,332,2126,State-funded primary,418,205,213,49.00%,51.00%,15,3.60%,36,8.60%,15,403,0,3.60%,96.40%,0.00%,65,68,418,16.30% +103810,332,2130,State-funded primary,418,204,214,48.80%,51.20%,11,2.60%,64,15.30%,7,411,0,1.70%,98.30%,0.00%,39,42,418,10.00% +103813,332,2136,State-funded primary,413,199,214,48.20%,51.80%,18,4.40%,52,12.60%,79,334,0,19.10%,80.90%,0.00%,116,117,413,28.30% +103814,332,2137,State-funded primary,422,202,220,47.90%,52.10%,7,1.70%,50,11.80%,14,407,1,3.30%,96.40%,0.20%,43,43,422,10.20% +103815,332,2138,State-funded primary,474,233,241,49.20%,50.80%,6,1.30%,78,16.50%,22,452,0,4.60%,95.40%,0.00%,55,59,474,12.40% +103818,332,2141,State-funded primary,334,158,176,47.30%,52.70%,28,8.40%,47,14.10%,18,316,0,5.40%,94.60%,0.00%,80,82,300,27.30% +103819,332,2142,State-funded primary,303,149,154,49.20%,50.80%,11,3.60%,50,16.50%,4,299,0,1.30%,98.70%,0.00%,91,91,303,30.00% +103820,332,2143,State-funded primary,264,132,132,50.00%,50.00%,21,8.00%,49,18.60%,8,256,0,3.00%,97.00%,0.00%,115,115,207,55.60% +103821,332,2144,State-funded primary,697,354,343,50.80%,49.20%,20,2.90%,84,12.10%,27,670,0,3.90%,96.10%,0.00%,173,177,630,28.10% +103822,332,2145,State-funded primary,589,281,308,47.70%,52.30%,22,3.70%,80,13.60%,10,579,0,1.70%,98.30%,0.00%,122,123,571,21.50% +103823,332,2146,State-funded primary,514,254,260,49.40%,50.60%,40,7.80%,82,16.00%,43,470,1,8.40%,91.40%,0.20%,251,254,425,59.80% +103826,332,2149,State-funded primary,560,286,274,51.10%,48.90%,8,1.40%,87,15.50%,22,538,0,3.90%,96.10%,0.00%,192,197,505,39.00% +103827,332,2150,State-funded primary,406,182,224,44.80%,55.20%,2,0.50%,51,12.60%,2,404,0,0.50%,99.50%,0.00%,26,27,406,6.70% +103828,332,2151,State-funded primary,451,221,230,49.00%,51.00%,11,2.40%,43,9.50%,10,441,0,2.20%,97.80%,0.00%,42,43,404,10.60% +103829,332,2152,State-funded primary,193,88,105,45.60%,54.40%,4,2.10%,28,14.50%,11,182,0,5.70%,94.30%,0.00%,45,45,193,23.30% +103830,332,2153,State-funded primary,386,213,173,55.20%,44.80%,9,2.30%,57,14.80%,13,358,15,3.40%,92.70%,3.90%,129,132,316,41.80% +103832,332,2155,State-funded primary,472,221,251,46.80%,53.20%,9,1.90%,64,13.60%,3,469,0,0.60%,99.40%,0.00%,31,33,421,7.80% +103834,332,2160,State-funded primary,466,221,245,47.40%,52.60%,13,2.80%,30,6.40%,21,440,5,4.50%,94.40%,1.10%,56,57,421,13.50% +103836,332,3008,State-funded primary,345,170,175,49.30%,50.70%,14,4.10%,64,18.60%,24,321,0,7.00%,93.00%,0.00%,135,138,311,44.40% +103837,332,3009,State-funded primary,207,108,99,52.20%,47.80%,7,3.40%,19,9.20%,3,204,0,1.40%,98.60%,0.00%,35,36,207,17.40% +103838,332,3010,State-funded primary,591,298,293,50.40%,49.60%,17,2.90%,75,12.70%,40,551,0,6.80%,93.20%,0.00%,118,120,523,22.90% +103839,332,3050,State-funded primary,420,201,219,47.90%,52.10%,8,1.90%,33,7.90%,2,418,0,0.50%,99.50%,0.00%,30,32,420,7.60% +103840,332,3052,State-funded primary,194,99,95,51.00%,49.00%,7,3.60%,23,11.90%,23,171,0,11.90%,88.10%,0.00%,41,42,194,21.60% +103845,332,3306,State-funded primary,715,356,359,49.80%,50.20%,24,3.40%,78,10.90%,190,525,0,26.60%,73.40%,0.00%,175,178,626,28.40% +103846,332,3350,State-funded primary,211,92,119,43.60%,56.40%,4,1.90%,24,11.40%,13,198,0,6.20%,93.80%,0.00%,37,37,211,17.50% +103847,332,3352,State-funded primary,210,107,103,51.00%,49.00%,8,3.80%,67,31.90%,75,135,0,35.70%,64.30%,0.00%,113,113,194,58.20% +103850,332,3357,State-funded primary,201,111,90,55.20%,44.80%,3,1.50%,11,5.50%,47,154,0,23.40%,76.60%,0.00%,22,24,201,11.90% +103851,332,3358,State-funded primary,417,205,212,49.20%,50.80%,6,1.40%,46,11.00%,4,413,0,1.00%,99.00%,0.00%,56,56,417,13.40% +103854,332,4020,State-funded secondary,1046,522,524,49.90%,50.10%,37,3.50%,172,16.40%,25,1021,0,2.40%,97.60%,0.00%,102,117,1046,11.20% +103855,332,4023,State-funded secondary,1150,576,574,50.10%,49.90%,32,2.80%,236,20.50%,18,1130,2,1.60%,98.30%,0.20%,234,271,1150,23.60% +103858,332,4030,State-funded secondary,895,420,475,46.90%,53.10%,29,3.20%,118,13.20%,43,852,0,4.80%,95.20%,0.00%,280,307,895,34.30% +103869,332,5200,State-funded primary,426,217,209,50.90%,49.10%,6,1.40%,45,10.60%,8,415,3,1.90%,97.40%,0.70%,51,51,390,13.10% +103870,332,5400,State-funded secondary,742,196,546,26.40%,73.60%,11,1.50%,62,8.40%,26,695,21,3.50%,93.70%,2.80%,31,36,537,6.70% +103876,332,6000,Independent school,204,86,118,42.20%,57.80%,15,7.40%,41,20.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +103877,332,7001,State-funded special school,184,61,123,33.20%,66.80%,183,99.50%,1,0.50%,4,180,0,2.20%,97.80%,0.00%,98,98,184,53.30% +103878,332,7002,State-funded special school,174,49,125,28.20%,71.80%,174,100.00%,0,0.00%,15,159,0,8.60%,91.40%,0.00%,60,63,174,36.20% +103879,332,7003,State-funded special school,104,27,77,26.00%,74.00%,104,100.00%,0,0.00%,4,100,0,3.80%,96.20%,0.00%,37,37,104,35.60% +103880,332,7004,State-funded special school,153,46,107,30.10%,69.90%,153,100.00%,0,0.00%,34,119,0,22.20%,77.80%,0.00%,72,65,134,48.50% +103881,332,7005,State-funded special school,165,34,131,20.60%,79.40%,165,100.00%,0,0.00%,17,148,0,10.30%,89.70%,0.00%,68,67,158,42.40% +103882,332,7008,State-funded special school,51,0,51,0.00%,100.00%,51,100.00%,0,0.00%,1,50,0,2.00%,98.00%,0.00%,28,35,51,68.60% +103883,332,7009,State-funded special school,109,37,72,33.90%,66.10%,109,100.00%,0,0.00%,11,98,0,10.10%,89.90%,0.00%,45,32,79,40.50% +103887,333,1100,State-funded AP school,11,4,7,36.40%,63.60%,4,36.40%,7,63.60%,1,10,0,9.10%,90.90%,0.00%,8,9,11,81.80% +103895,333,2015,State-funded primary,232,134,98,57.80%,42.20%,6,2.60%,19,8.20%,55,177,0,23.70%,76.30%,0.00%,78,86,232,37.10% +103896,333,2016,State-funded primary,212,118,94,55.70%,44.30%,3,1.40%,10,4.70%,50,147,15,23.60%,69.30%,7.10%,39,38,173,22.00% +103905,333,2041,State-funded primary,485,210,275,43.30%,56.70%,44,9.10%,29,6.00%,196,287,2,40.40%,59.20%,0.40%,134,141,420,33.60% +103906,333,2042,State-funded primary,278,145,133,52.20%,47.80%,6,2.20%,35,12.60%,45,233,0,16.20%,83.80%,0.00%,71,71,230,30.90% +103908,333,2046,State-funded primary,206,100,106,48.50%,51.50%,7,3.40%,38,18.40%,30,176,0,14.60%,85.40%,0.00%,76,78,206,37.90% +103909,333,2047,State-funded primary,470,230,240,48.90%,51.10%,23,4.90%,93,19.80%,53,417,0,11.30%,88.70%,0.00%,103,105,417,25.20% +103910,333,2048,State-funded primary,235,111,124,47.20%,52.80%,12,5.10%,30,12.80%,20,215,0,8.50%,91.50%,0.00%,61,64,206,31.10% +103913,333,2051,State-funded primary,342,163,179,47.70%,52.30%,6,1.80%,57,16.70%,50,292,0,14.60%,85.40%,0.00%,130,131,342,38.30% +103914,333,2054,State-funded primary,445,210,235,47.20%,52.80%,6,1.30%,71,16.00%,194,251,0,43.60%,56.40%,0.00%,146,152,406,37.40% +103915,333,2056,State-funded primary,456,236,220,51.80%,48.20%,25,5.50%,56,12.30%,215,241,0,47.10%,52.90%,0.00%,142,146,417,35.00% +103919,333,2060,State-funded primary,232,122,110,52.60%,47.40%,3,1.30%,52,22.40%,32,200,0,13.80%,86.20%,0.00%,57,57,180,31.70% +103922,333,2070,State-funded primary,204,107,97,52.50%,47.50%,5,2.50%,13,6.40%,40,164,0,19.60%,80.40%,0.00%,18,20,204,9.80% +103923,333,2072,State-funded primary,464,229,235,49.40%,50.60%,7,1.50%,71,15.30%,221,241,2,47.60%,51.90%,0.40%,122,127,421,30.20% +103925,333,2075,State-funded primary,388,213,175,54.90%,45.10%,6,1.50%,82,21.10%,54,332,2,13.90%,85.60%,0.50%,191,195,354,55.10% +103928,333,2082,State-funded primary,353,174,179,49.30%,50.70%,8,2.30%,56,15.90%,104,249,0,29.50%,70.50%,0.00%,146,154,353,43.60% +103929,333,2101,State-funded primary,353,190,163,53.80%,46.20%,7,2.00%,24,6.80%,77,275,1,21.80%,77.90%,0.30%,90,93,353,26.30% +103930,333,2102,State-funded primary,290,139,151,47.90%,52.10%,1,0.30%,16,5.50%,54,236,0,18.60%,81.40%,0.00%,43,43,258,16.70% +103932,333,2104,State-funded primary,222,113,109,50.90%,49.10%,7,3.20%,20,9.00%,77,145,0,34.70%,65.30%,0.00%,72,73,205,35.60% +103933,333,2105,State-funded primary,465,240,225,51.60%,48.40%,8,1.70%,43,9.20%,305,160,0,65.60%,34.40%,0.00%,153,155,413,37.50% +103934,333,2108,State-funded primary,434,213,221,49.10%,50.90%,6,1.40%,48,11.10%,99,335,0,22.80%,77.20%,0.00%,107,117,399,29.30% +103936,333,2112,State-funded primary,232,104,128,44.80%,55.20%,8,3.40%,55,23.70%,25,207,0,10.80%,89.20%,0.00%,90,92,206,44.70% +103937,333,2113,State-funded primary,590,290,300,49.20%,50.80%,16,2.70%,80,13.60%,332,258,0,56.30%,43.70%,0.00%,217,222,541,41.00% +103941,333,2123,State-funded primary,477,233,244,48.80%,51.20%,21,4.40%,82,17.20%,287,190,0,60.20%,39.80%,0.00%,125,128,427,30.00% +103945,333,2127,State-funded primary,253,125,128,49.40%,50.60%,18,7.10%,57,22.50%,75,178,0,29.60%,70.40%,0.00%,84,86,225,38.20% +103946,333,2128,State-funded primary,441,208,233,47.20%,52.80%,8,1.80%,73,16.60%,99,342,0,22.40%,77.60%,0.00%,132,134,415,32.30% +103949,333,2135,State-funded primary,418,201,217,48.10%,51.90%,12,2.90%,139,33.30%,89,329,0,21.30%,78.70%,0.00%,108,108,359,30.10% +103950,333,2136,State-funded primary,466,226,240,48.50%,51.50%,13,2.80%,44,9.40%,54,412,0,11.60%,88.40%,0.00%,94,97,420,23.10% +103952,333,2138,State-funded primary,243,113,130,46.50%,53.50%,5,2.10%,21,8.60%,36,207,0,14.80%,85.20%,0.00%,82,85,206,41.30% +103953,333,2140,State-funded primary,354,159,195,44.90%,55.10%,8,2.30%,83,23.40%,64,290,0,18.10%,81.90%,0.00%,88,91,354,25.70% +103954,333,2141,State-funded primary,432,200,232,46.30%,53.70%,12,2.80%,85,19.70%,115,317,0,26.60%,73.40%,0.00%,149,157,403,39.00% +103955,333,2146,State-funded primary,616,311,305,50.50%,49.50%,14,2.30%,73,11.90%,77,539,0,12.50%,87.50%,0.00%,224,227,583,38.90% +103957,333,2148,State-funded primary,389,181,208,46.50%,53.50%,6,1.50%,49,12.60%,69,303,17,17.70%,77.90%,4.40%,131,134,359,37.30% +103960,333,2151,State-funded primary,455,227,228,49.90%,50.10%,4,0.90%,75,16.50%,61,394,0,13.40%,86.60%,0.00%,93,98,401,24.40% +103968,333,2162,State-funded primary,492,235,257,47.80%,52.20%,12,2.40%,64,13.00%,286,206,0,58.10%,41.90%,0.00%,126,128,436,29.40% +103969,333,2163,State-funded primary,446,229,217,51.30%,48.70%,10,2.20%,56,12.60%,306,139,1,68.60%,31.20%,0.20%,148,153,401,38.20% +103970,333,2164,State-funded primary,458,228,230,49.80%,50.20%,8,1.70%,51,11.10%,46,410,2,10.00%,89.50%,0.40%,184,189,413,45.80% +103972,333,2166,State-funded primary,420,210,210,50.00%,50.00%,9,2.10%,38,9.00%,187,233,0,44.50%,55.50%,0.00%,46,51,420,12.10% +103974,333,2169,State-funded primary,654,312,342,47.70%,52.30%,9,1.40%,75,11.50%,78,576,0,11.90%,88.10%,0.00%,251,257,613,41.90% +103976,333,2171,State-funded primary,476,240,236,50.40%,49.60%,5,1.10%,79,16.60%,95,381,0,20.00%,80.00%,0.00%,175,178,403,44.20% +103977,333,2172,State-funded primary,457,230,227,50.30%,49.70%,8,1.80%,87,19.00%,78,379,0,17.10%,82.90%,0.00%,158,164,408,40.20% +103978,333,2173,State-funded primary,448,205,243,45.80%,54.20%,10,2.20%,35,7.80%,170,278,0,37.90%,62.10%,0.00%,154,156,404,38.60% +103979,333,2174,State-funded primary,461,224,237,48.60%,51.40%,8,1.70%,59,12.80%,274,187,0,59.40%,40.60%,0.00%,119,122,421,29.00% +103981,333,2176,State-funded primary,481,235,246,48.90%,51.10%,13,2.70%,63,13.10%,69,412,0,14.30%,85.70%,0.00%,172,174,445,39.10% +103982,333,2177,State-funded primary,599,271,328,45.20%,54.80%,26,4.30%,64,10.70%,164,435,0,27.40%,72.60%,0.00%,151,164,553,29.70% +103983,333,2178,State-funded primary,447,225,222,50.30%,49.70%,16,3.60%,77,17.20%,131,316,0,29.30%,70.70%,0.00%,115,122,410,29.80% +103984,333,2179,State-funded primary,505,241,264,47.70%,52.30%,9,1.80%,83,16.40%,415,90,0,82.20%,17.80%,0.00%,195,201,467,43.00% +103986,333,3002,State-funded primary,461,235,226,51.00%,49.00%,8,1.70%,59,12.80%,296,165,0,64.20%,35.80%,0.00%,146,149,414,36.00% +103987,333,3003,State-funded primary,242,117,125,48.30%,51.70%,9,3.70%,23,9.50%,59,183,0,24.40%,75.60%,0.00%,46,50,212,23.60% +103989,333,3005,State-funded primary,235,129,106,54.90%,45.10%,7,3.00%,28,11.90%,63,172,0,26.80%,73.20%,0.00%,55,56,213,26.30% +103990,333,3301,State-funded primary,459,205,254,44.70%,55.30%,7,1.50%,36,7.80%,153,306,0,33.30%,66.70%,0.00%,96,99,417,23.70% +103995,333,3307,State-funded primary,227,123,104,54.20%,45.80%,4,1.80%,19,8.40%,28,199,0,12.30%,87.70%,0.00%,23,23,203,11.30% +103996,333,3308,State-funded primary,214,99,115,46.30%,53.70%,7,3.30%,13,6.10%,37,177,0,17.30%,82.70%,0.00%,42,45,196,23.00% +103997,333,3400,State-funded primary,424,212,212,50.00%,50.00%,19,4.50%,29,6.80%,181,243,0,42.70%,57.30%,0.00%,107,116,385,30.10% +104000,333,3403,State-funded primary,416,198,218,47.60%,52.40%,5,1.20%,38,9.10%,265,151,0,63.70%,36.30%,0.00%,156,161,378,42.60% +104018,333,4138,State-funded secondary,1575,769,806,48.80%,51.20%,22,1.40%,208,13.20%,866,709,0,55.00%,45.00%,0.00%,523,538,1393,38.60% +104019,333,4500,State-funded secondary,1212,603,609,49.80%,50.20%,39,3.20%,260,21.50%,88,1123,1,7.30%,92.70%,0.10%,405,433,1212,35.70% +104038,334,1102,State-funded AP school,2,2,0,100.00%,0.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +104039,334,2000,State-funded primary,317,155,162,48.90%,51.10%,7,2.20%,26,8.20%,100,214,3,31.50%,67.50%,0.90%,39,39,270,14.40% +104040,334,2001,State-funded primary,214,102,112,47.70%,52.30%,6,2.80%,9,4.20%,57,157,0,26.60%,73.40%,0.00%,22,22,180,12.20% +104041,334,2004,State-funded primary,259,131,128,50.60%,49.40%,4,1.50%,43,16.60%,117,142,0,45.20%,54.80%,0.00%,78,80,259,30.90% +104042,334,2005,State-funded primary,211,96,115,45.50%,54.50%,2,0.90%,13,6.20%,80,126,5,37.90%,59.70%,2.40%,25,27,176,15.30% +104045,334,2008,State-funded primary,686,324,362,47.20%,52.80%,10,1.50%,76,11.10%,33,653,0,4.80%,95.20%,0.00%,43,43,628,6.80% +104046,334,2011,State-funded primary,240,128,112,53.30%,46.70%,3,1.30%,24,10.00%,51,189,0,21.30%,78.80%,0.00%,42,45,240,18.80% +104048,334,2013,State-funded primary,224,110,114,49.10%,50.90%,6,2.70%,39,17.40%,50,174,0,22.30%,77.70%,0.00%,59,59,198,29.80% +104049,334,2017,State-funded primary,419,192,227,45.80%,54.20%,9,2.10%,86,20.50%,97,322,0,23.20%,76.80%,0.00%,50,52,419,12.40% +104050,334,2019,State-funded primary,420,195,225,46.40%,53.60%,7,1.70%,54,12.90%,87,333,0,20.70%,79.30%,0.00%,61,61,420,14.50% +104052,334,2024,State-funded primary,621,307,314,49.40%,50.60%,11,1.80%,73,11.80%,157,464,0,25.30%,74.70%,0.00%,106,106,578,18.30% +104053,334,2026,State-funded primary,203,114,89,56.20%,43.80%,3,1.50%,10,4.90%,70,133,0,34.50%,65.50%,0.00%,21,21,162,13.00% +104054,334,2028,State-funded primary,325,148,177,45.50%,54.50%,9,2.80%,38,11.70%,116,209,0,35.70%,64.30%,0.00%,51,56,325,17.20% +104056,334,2030,State-funded primary,241,115,126,47.70%,52.30%,0,0.00%,9,3.70%,25,216,0,10.40%,89.60%,0.00%,7,9,211,4.30% +104057,334,2031,State-funded primary,238,121,117,50.80%,49.20%,14,5.90%,18,7.60%,19,219,0,8.00%,92.00%,0.00%,66,66,218,30.30% +104060,334,2051,State-funded primary,353,188,165,53.30%,46.70%,8,2.30%,64,18.10%,43,310,0,12.20%,87.80%,0.00%,102,103,353,29.20% +104065,334,2058,State-funded primary,478,214,264,44.80%,55.20%,6,1.30%,68,14.20%,63,413,2,13.20%,86.40%,0.40%,97,93,403,23.10% +104066,334,2059,State-funded primary,475,236,239,49.70%,50.30%,10,2.10%,85,17.90%,15,460,0,3.20%,96.80%,0.00%,167,172,475,36.20% +104067,334,2060,State-funded primary,501,248,253,49.50%,50.50%,10,2.00%,56,11.20%,26,475,0,5.20%,94.80%,0.00%,112,112,360,31.10% +104070,334,2065,State-funded primary,579,310,269,53.50%,46.50%,14,2.40%,79,13.60%,23,556,0,4.00%,96.00%,0.00%,299,298,493,60.40% +104071,334,2066,State-funded primary,451,207,244,45.90%,54.10%,29,6.40%,100,22.20%,24,427,0,5.30%,94.70%,0.00%,237,239,423,56.50% +104074,334,2082,State-funded primary,253,113,140,44.70%,55.30%,6,2.40%,35,13.80%,8,245,0,3.20%,96.80%,0.00%,52,50,214,23.40% +104075,334,2085,State-funded primary,432,209,223,48.40%,51.60%,8,1.90%,57,13.20%,80,352,0,18.50%,81.50%,0.00%,88,89,395,22.50% +104076,334,2087,State-funded primary,651,313,338,48.10%,51.90%,11,1.70%,77,11.80%,276,375,0,42.40%,57.60%,0.00%,126,129,617,20.90% +104077,334,2088,State-funded primary,435,203,232,46.70%,53.30%,6,1.40%,96,22.10%,46,389,0,10.60%,89.40%,0.00%,259,260,411,63.30% +104079,334,2090,State-funded primary,687,346,341,50.40%,49.60%,18,2.60%,73,10.60%,175,512,0,25.50%,74.50%,0.00%,90,89,628,14.20% +104080,334,2091,State-funded primary,432,204,228,47.20%,52.80%,9,2.10%,53,12.30%,66,366,0,15.30%,84.70%,0.00%,109,112,409,27.40% +104084,334,2096,State-funded primary,671,323,348,48.10%,51.90%,8,1.20%,69,10.30%,180,491,0,26.80%,73.20%,0.00%,63,64,628,10.20% +104087,334,3010,State-funded primary,203,97,106,47.80%,52.20%,9,4.40%,45,22.20%,8,195,0,3.90%,96.10%,0.00%,41,44,185,23.80% +104090,334,3302,State-funded primary,262,115,147,43.90%,56.10%,3,1.10%,17,6.50%,64,198,0,24.40%,75.60%,0.00%,15,16,219,7.30% +104092,334,3305,State-funded primary,284,138,146,48.60%,51.40%,6,2.10%,25,8.80%,57,227,0,20.10%,79.90%,0.00%,18,18,284,6.30% +104093,334,3310,State-funded primary,234,105,129,44.90%,55.10%,3,1.30%,16,6.80%,5,229,0,2.10%,97.90%,0.00%,23,23,208,11.10% +104094,334,3311,State-funded primary,221,111,110,50.20%,49.80%,4,1.80%,19,8.60%,37,184,0,16.70%,83.30%,0.00%,25,25,195,12.80% +104097,334,3314,State-funded primary,230,109,121,47.40%,52.60%,6,2.60%,21,9.10%,7,223,0,3.00%,97.00%,0.00%,40,39,202,19.30% +104105,334,3512,State-funded primary,444,222,222,50.00%,50.00%,7,1.60%,89,20.00%,34,410,0,7.70%,92.30%,0.00%,238,231,405,57.00% +104121,334,5200,State-funded primary,548,281,267,51.30%,48.70%,10,1.80%,97,17.70%,55,493,0,10.00%,90.00%,0.00%,306,308,500,61.60% +104122,334,6000,Independent school,312,150,162,48.10%,51.90%,1,0.30%,8,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104124,334,6003,Independent school,1534,804,730,52.40%,47.60%,2,0.10%,215,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104127,334,6007,Independent school,217,108,109,49.80%,50.20%,0,0.00%,15,6.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104128,334,6009,Independent school,75,35,40,46.70%,53.30%,5,6.70%,20,26.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104130,334,7001,State-funded special school,190,61,129,32.10%,67.90%,190,100.00%,0,0.00%,13,177,0,6.80%,93.20%,0.00%,63,59,163,36.20% +104131,334,7002,State-funded special school,146,45,101,30.80%,69.20%,144,98.60%,2,1.40%,15,131,0,10.30%,89.70%,0.00%,52,50,127,39.40% +104132,334,7005,State-funded special school,181,55,126,30.40%,69.60%,181,100.00%,0,0.00%,6,175,0,3.30%,96.70%,0.00%,107,99,149,66.40% +104133,334,7007,State-funded special school,148,40,108,27.00%,73.00%,146,98.60%,2,1.40%,7,141,0,4.70%,95.30%,0.00%,75,62,116,53.40% +104134,335,1000,State-funded nursery,198,98,100,49.50%,50.50%,2,1.00%,11,5.60%,13,185,0,6.60%,93.40%,0.00%,0,0,0,0.00% +104135,335,1001,State-funded nursery,125,62,63,49.60%,50.40%,1,0.80%,28,22.40%,36,89,0,28.80%,71.20%,0.00%,0,0,0,0.00% +104136,335,1004,State-funded nursery,160,81,79,50.60%,49.40%,4,2.50%,11,6.90%,8,139,13,5.00%,86.90%,8.10%,0,0,0,0.00% +104137,335,1005,State-funded nursery,198,79,119,39.90%,60.10%,17,8.60%,7,3.50%,20,178,0,10.10%,89.90%,0.00%,0,0,0,0.00% +104138,335,1006,State-funded nursery,76,26,50,34.20%,65.80%,0,0.00%,5,6.60%,1,75,0,1.30%,98.70%,0.00%,0,0,0,0.00% +104139,335,1007,State-funded nursery,83,43,40,51.80%,48.20%,0,0.00%,10,12.00%,11,72,0,13.30%,86.70%,0.00%,0,0,0,0.00% +104140,335,1008,State-funded nursery,144,79,65,54.90%,45.10%,0,0.00%,14,9.70%,91,44,9,63.20%,30.60%,6.30%,0,0,0,0.00% +104141,335,1009,State-funded nursery,88,40,48,45.50%,54.50%,1,1.10%,20,22.70%,4,84,0,4.50%,95.50%,0.00%,0,0,0,0.00% +104142,335,2000,State-funded primary,364,174,190,47.80%,52.20%,15,4.10%,39,10.70%,217,147,0,59.60%,40.40%,0.00%,192,195,364,53.60% +104143,335,2001,State-funded primary,270,133,137,49.30%,50.70%,12,4.40%,36,13.30%,123,147,0,45.60%,54.40%,0.00%,109,109,270,40.40% +104144,335,2002,State-funded primary,222,115,107,51.80%,48.20%,0,0.00%,47,21.20%,31,189,2,14.00%,85.10%,0.90%,147,149,222,67.10% +104145,335,2003,State-funded primary,201,103,98,51.20%,48.80%,8,4.00%,37,18.40%,30,171,0,14.90%,85.10%,0.00%,109,109,170,64.10% +104147,335,2006,State-funded primary,248,124,124,50.00%,50.00%,10,4.00%,36,14.50%,120,128,0,48.40%,51.60%,0.00%,86,89,210,42.40% +104150,335,2012,State-funded primary,349,178,171,51.00%,49.00%,9,2.60%,30,8.60%,213,134,2,61.00%,38.40%,0.60%,59,59,273,21.60% +104153,335,2016,State-funded primary,308,159,149,51.60%,48.40%,8,2.60%,59,19.20%,29,279,0,9.40%,90.60%,0.00%,127,128,308,41.60% +104157,335,2024,State-funded primary,240,117,123,48.80%,51.30%,8,3.30%,37,15.40%,17,223,0,7.10%,92.90%,0.00%,110,110,204,53.90% +104160,335,2028,State-funded primary,361,183,178,50.70%,49.30%,10,2.80%,60,16.60%,350,11,0,97.00%,3.00%,0.00%,146,152,361,42.10% +104161,335,2030,State-funded primary,353,179,174,50.70%,49.30%,9,2.50%,27,7.60%,284,69,0,80.50%,19.50%,0.00%,76,78,273,28.60% +104162,335,2031,State-funded primary,328,163,165,49.70%,50.30%,7,2.10%,52,15.90%,218,106,4,66.50%,32.30%,1.20%,149,156,328,47.60% +104163,335,2032,State-funded primary,315,149,166,47.30%,52.70%,12,3.80%,13,4.10%,200,115,0,63.50%,36.50%,0.00%,89,89,264,33.70% +104168,335,2041,State-funded primary,233,99,134,42.50%,57.50%,5,2.10%,33,14.20%,23,210,0,9.90%,90.10%,0.00%,102,106,207,51.20% +104169,335,2042,State-funded primary,480,260,220,54.20%,45.80%,8,1.70%,57,11.90%,16,464,0,3.30%,96.70%,0.00%,123,129,411,31.40% +104170,335,2043,State-funded primary,358,181,177,50.60%,49.40%,7,2.00%,56,15.60%,223,134,1,62.30%,37.40%,0.30%,118,122,358,34.10% +104174,335,2101,State-funded primary,456,190,266,41.70%,58.30%,14,3.10%,93,20.40%,92,356,8,20.20%,78.10%,1.80%,151,155,406,38.20% +104175,335,2102,State-funded primary,451,204,247,45.20%,54.80%,21,4.70%,70,15.50%,40,411,0,8.90%,91.10%,0.00%,180,186,407,45.70% +104176,335,2103,State-funded primary,416,204,212,49.00%,51.00%,15,3.60%,97,23.30%,74,342,0,17.80%,82.20%,0.00%,219,223,416,53.60% +104178,335,2105,State-funded primary,325,171,154,52.60%,47.40%,6,1.80%,40,12.30%,195,130,0,60.00%,40.00%,0.00%,134,141,303,46.50% +104179,335,2106,State-funded primary,477,238,239,49.90%,50.10%,16,3.40%,56,11.70%,190,287,0,39.80%,60.20%,0.00%,180,186,415,44.80% +104187,335,2114,State-funded primary,340,186,154,54.70%,45.30%,12,3.50%,53,15.60%,104,236,0,30.60%,69.40%,0.00%,57,58,277,20.90% +104188,335,2116,State-funded primary,287,119,168,41.50%,58.50%,26,9.10%,59,20.60%,32,255,0,11.10%,88.90%,0.00%,119,125,287,43.60% +104189,335,2117,State-funded primary,234,117,117,50.00%,50.00%,7,3.00%,45,19.20%,85,149,0,36.30%,63.70%,0.00%,93,94,199,47.20% +104191,335,2119,State-funded primary,216,100,116,46.30%,53.70%,2,0.90%,31,14.40%,27,189,0,12.50%,87.50%,0.00%,56,59,199,29.60% +104192,335,2122,State-funded primary,362,174,188,48.10%,51.90%,15,4.10%,51,14.10%,75,287,0,20.70%,79.30%,0.00%,81,84,362,23.20% +104196,335,2205,State-funded primary,264,109,155,41.30%,58.70%,33,12.50%,36,13.60%,28,235,1,10.60%,89.00%,0.40%,91,91,238,38.20% +104198,335,2214,State-funded primary,237,122,115,51.50%,48.50%,6,2.50%,11,4.60%,3,234,0,1.30%,98.70%,0.00%,24,26,211,12.30% +104201,335,2218,State-funded primary,236,116,120,49.20%,50.80%,5,2.10%,37,15.70%,10,226,0,4.20%,95.80%,0.00%,85,86,211,40.80% +104202,335,2219,State-funded primary,230,109,121,47.40%,52.60%,5,2.20%,42,18.30%,6,224,0,2.60%,97.40%,0.00%,50,51,205,24.90% +104203,335,2220,State-funded primary,226,117,109,51.80%,48.20%,3,1.30%,27,11.90%,9,217,0,4.00%,96.00%,0.00%,97,97,200,48.50% +104204,335,2222,State-funded primary,235,118,117,50.20%,49.80%,2,0.90%,30,12.80%,1,234,0,0.40%,99.60%,0.00%,79,81,211,38.40% +104207,335,2228,State-funded primary,229,123,106,53.70%,46.30%,5,2.20%,37,16.20%,15,214,0,6.60%,93.40%,0.00%,77,76,205,37.10% +104210,335,5202,State-funded primary,383,191,192,49.90%,50.10%,2,0.50%,38,9.90%,90,293,0,23.50%,76.50%,0.00%,22,22,367,6.00% +104212,335,2235,State-funded primary,459,222,237,48.40%,51.60%,17,3.70%,31,6.80%,34,425,0,7.40%,92.60%,0.00%,55,58,433,13.40% +104214,335,2237,State-funded primary,296,141,155,47.60%,52.40%,8,2.70%,58,19.60%,10,286,0,3.40%,96.60%,0.00%,126,128,274,46.70% +104216,335,2239,State-funded primary,268,118,150,44.00%,56.00%,3,1.10%,37,13.80%,21,247,0,7.80%,92.20%,0.00%,90,96,253,37.90% +104217,335,2240,State-funded primary,464,221,243,47.60%,52.40%,6,1.30%,59,12.70%,6,458,0,1.30%,98.70%,0.00%,81,84,417,20.10% +104220,335,3000,State-funded primary,427,217,210,50.80%,49.20%,28,6.60%,79,18.50%,15,412,0,3.50%,96.50%,0.00%,184,189,384,49.20% +104222,335,3003,State-funded primary,211,101,110,47.90%,52.10%,7,3.30%,16,7.60%,9,202,0,4.30%,95.70%,0.00%,94,94,211,44.50% +104223,335,3010,State-funded primary,204,100,104,49.00%,51.00%,6,2.90%,29,14.20%,6,198,0,2.90%,97.10%,0.00%,41,42,191,22.00% +104224,335,3100,State-funded primary,437,205,232,46.90%,53.10%,7,1.60%,66,15.10%,90,346,1,20.60%,79.20%,0.20%,164,186,413,45.00% +104225,335,3101,State-funded primary,242,115,127,47.50%,52.50%,14,5.80%,44,18.20%,18,224,0,7.40%,92.60%,0.00%,87,87,242,36.00% +104226,335,3102,State-funded primary,456,220,236,48.20%,51.80%,6,1.30%,57,12.50%,133,323,0,29.20%,70.80%,0.00%,159,163,413,39.50% +104227,335,3110,State-funded primary,445,218,227,49.00%,51.00%,10,2.20%,55,12.40%,18,426,1,4.00%,95.70%,0.20%,37,38,395,9.60% +104228,335,3111,State-funded primary,358,170,188,47.50%,52.50%,12,3.40%,29,8.10%,13,345,0,3.60%,96.40%,0.00%,83,84,322,26.10% +104230,335,3300,State-funded primary,359,165,194,46.00%,54.00%,11,3.10%,65,18.10%,138,218,3,38.40%,60.70%,0.80%,153,161,359,44.80% +104231,335,3301,State-funded primary,312,160,152,51.30%,48.70%,8,2.60%,40,12.80%,93,215,4,29.80%,68.90%,1.30%,103,103,271,38.00% +104232,335,3302,State-funded primary,233,103,130,44.20%,55.80%,10,4.30%,16,6.90%,75,158,0,32.20%,67.80%,0.00%,40,40,210,19.00% +104233,335,3304,State-funded primary,226,88,138,38.90%,61.10%,10,4.40%,31,13.70%,125,98,3,55.30%,43.40%,1.30%,89,91,207,44.00% +104234,335,3306,State-funded primary,220,121,99,55.00%,45.00%,5,2.30%,19,8.60%,38,182,0,17.30%,82.70%,0.00%,74,75,207,36.20% +104235,335,3310,State-funded primary,225,121,104,53.80%,46.20%,3,1.30%,55,24.40%,65,160,0,28.90%,71.10%,0.00%,85,85,204,41.70% +104236,335,3312,State-funded primary,289,164,125,56.70%,43.30%,9,3.10%,53,18.30%,91,198,0,31.50%,68.50%,0.00%,67,69,256,27.00% +104239,335,3322,State-funded primary,202,103,99,51.00%,49.00%,6,3.00%,21,10.40%,44,158,0,21.80%,78.20%,0.00%,55,55,181,30.40% +104240,335,3323,State-funded primary,229,112,117,48.90%,51.10%,4,1.70%,19,8.30%,19,210,0,8.30%,91.70%,0.00%,21,23,208,11.10% +104241,335,3324,State-funded primary,235,104,131,44.30%,55.70%,3,1.30%,8,3.40%,13,222,0,5.50%,94.50%,0.00%,13,14,209,6.70% +104255,335,4606,State-funded secondary,1161,599,562,51.60%,48.40%,20,1.70%,118,10.20%,162,999,0,14.00%,86.00%,0.00%,207,209,940,22.20% +104259,335,5401,State-funded secondary,1498,709,789,47.30%,52.70%,33,2.20%,159,10.60%,523,975,0,34.90%,65.10%,0.00%,468,475,1227,38.70% +104265,335,6000,Independent school,212,109,103,51.40%,48.60%,1,0.50%,5,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104266,335,6007,Independent school,323,142,181,44.00%,56.00%,2,0.60%,16,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104269,335,7002,State-funded special school,218,60,158,27.50%,72.50%,218,100.00%,0,0.00%,15,203,0,6.90%,93.10%,0.00%,125,111,182,61.00% +104271,335,7004,State-funded special school,163,47,116,28.80%,71.20%,162,99.40%,1,0.60%,21,142,0,12.90%,87.10%,0.00%,113,116,163,71.20% +104272,335,7005,State-funded special school,135,33,102,24.40%,75.60%,135,100.00%,0,0.00%,48,87,0,35.60%,64.40%,0.00%,71,56,105,53.30% +104274,335,7007,State-funded special school,102,31,71,30.40%,69.60%,102,100.00%,0,0.00%,22,80,0,21.60%,78.40%,0.00%,58,60,101,59.40% +104275,335,7011,State-funded special school,150,34,116,22.70%,77.30%,150,100.00%,0,0.00%,44,106,0,29.30%,70.70%,0.00%,65,65,150,43.30% +104278,336,1002,State-funded nursery,141,57,84,40.40%,59.60%,7,5.00%,52,36.90%,33,108,0,23.40%,76.60%,0.00%,4,4,7,57.10% +104279,336,1003,State-funded nursery,76,37,39,48.70%,51.30%,0,0.00%,5,6.60%,11,65,0,14.50%,85.50%,0.00%,0,0,0,0.00% +104280,336,1004,State-funded nursery,133,60,73,45.10%,54.90%,0,0.00%,9,6.80%,18,115,0,13.50%,86.50%,0.00%,0,0,0,0.00% +104281,336,1005,State-funded nursery,32,15,17,46.90%,53.10%,0,0.00%,3,9.40%,22,10,0,68.80%,31.30%,0.00%,0,0,0,0.00% +104283,336,1007,State-funded nursery,90,31,59,34.40%,65.60%,4,4.40%,18,20.00%,39,51,0,43.30%,56.70%,0.00%,0,0,9,0.00% +104285,336,1009,State-funded nursery,90,43,47,47.80%,52.20%,5,5.60%,19,21.10%,8,82,0,8.90%,91.10%,0.00%,0,0,0,0.00% +104288,336,1102,State-funded AP school,35,20,15,57.10%,42.90%,26,74.30%,9,25.70%,1,34,0,2.90%,97.10%,0.00%,26,28,35,80.00% +104290,336,2003,State-funded primary,292,143,149,49.00%,51.00%,10,3.40%,77,26.40%,60,232,0,20.50%,79.50%,0.00%,183,189,270,70.00% +104294,336,2015,State-funded primary,738,369,369,50.00%,50.00%,16,2.20%,130,17.60%,93,645,0,12.60%,87.40%,0.00%,371,377,631,59.70% +104297,336,2022,State-funded primary,462,219,243,47.40%,52.60%,15,3.20%,83,18.00%,73,389,0,15.80%,84.20%,0.00%,248,249,422,59.00% +104302,336,2030,State-funded primary,229,114,115,49.80%,50.20%,1,0.40%,64,27.90%,146,83,0,63.80%,36.20%,0.00%,76,78,209,37.30% +104303,336,2032,State-funded primary,435,223,212,51.30%,48.70%,30,6.90%,46,10.60%,50,384,1,11.50%,88.30%,0.20%,154,154,402,38.30% +104304,336,2034,State-funded primary,462,242,220,52.40%,47.60%,11,2.40%,62,13.40%,163,299,0,35.30%,64.70%,0.00%,205,206,417,49.40% +104310,336,2042,State-funded primary,430,218,212,50.70%,49.30%,5,1.20%,53,12.30%,80,349,1,18.60%,81.20%,0.20%,130,133,402,33.10% +104311,336,2043,State-funded primary,247,124,123,50.20%,49.80%,5,2.00%,38,15.40%,21,226,0,8.50%,91.50%,0.00%,66,66,213,31.00% +104312,336,2044,State-funded primary,291,161,130,55.30%,44.70%,3,1.00%,21,7.20%,17,274,0,5.80%,94.20%,0.00%,48,48,261,18.40% +104315,336,2051,State-funded primary,429,217,212,50.60%,49.40%,6,1.40%,91,21.20%,85,344,0,19.80%,80.20%,0.00%,188,189,390,48.50% +104317,336,2053,State-funded primary,350,177,173,50.60%,49.40%,7,2.00%,57,16.30%,109,240,1,31.10%,68.60%,0.30%,179,178,327,54.40% +104320,336,2058,State-funded primary,230,112,118,48.70%,51.30%,3,1.30%,38,16.50%,28,202,0,12.20%,87.80%,0.00%,94,101,201,50.20% +104322,336,2065,State-funded primary,248,117,131,47.20%,52.80%,6,2.40%,29,11.70%,57,191,0,23.00%,77.00%,0.00%,76,77,211,36.50% +104323,336,2066,State-funded primary,483,229,254,47.40%,52.60%,25,5.20%,96,19.90%,127,356,0,26.30%,73.70%,0.00%,197,200,417,48.00% +104325,336,2069,State-funded primary,489,245,244,50.10%,49.90%,1,0.20%,45,9.20%,71,418,0,14.50%,85.50%,0.00%,185,186,421,44.20% +104327,336,2071,State-funded primary,322,162,160,50.30%,49.70%,2,0.60%,49,15.20%,73,249,0,22.70%,77.30%,0.00%,112,116,298,38.90% +104330,336,2074,State-funded primary,404,207,197,51.20%,48.80%,3,0.70%,63,15.60%,140,264,0,34.70%,65.30%,0.00%,147,150,359,41.80% +104332,336,2079,State-funded primary,380,191,189,50.30%,49.70%,8,2.10%,26,6.80%,42,338,0,11.10%,88.90%,0.00%,89,91,380,23.90% +104334,336,2089,State-funded primary,238,120,118,50.40%,49.60%,4,1.70%,34,14.30%,156,82,0,65.50%,34.50%,0.00%,86,89,206,43.20% +104341,336,2102,State-funded primary,425,204,221,48.00%,52.00%,8,1.90%,59,13.90%,18,407,0,4.20%,95.80%,0.00%,159,163,425,38.40% +104342,336,2103,State-funded primary,406,191,215,47.00%,53.00%,15,3.70%,59,14.50%,123,283,0,30.30%,69.70%,0.00%,226,230,406,56.70% +104344,336,2105,State-funded primary,468,245,223,52.40%,47.60%,10,2.10%,66,14.10%,85,383,0,18.20%,81.80%,0.00%,160,162,406,39.90% +104345,336,2106,State-funded primary,472,224,248,47.50%,52.50%,14,3.00%,36,7.60%,100,371,1,21.20%,78.60%,0.20%,156,161,421,38.20% +104350,336,2111,State-funded primary,276,123,153,44.60%,55.40%,2,0.70%,39,14.10%,86,190,0,31.20%,68.80%,0.00%,129,130,234,55.60% +104362,336,3012,State-funded primary,204,99,105,48.50%,51.50%,2,1.00%,22,10.80%,24,180,0,11.80%,88.20%,0.00%,33,33,167,19.80% +104366,336,3019,State-funded primary,239,109,130,45.60%,54.40%,4,1.70%,24,10.00%,30,208,1,12.60%,87.00%,0.40%,55,55,239,23.00% +104372,336,3301,State-funded primary,470,235,235,50.00%,50.00%,7,1.50%,83,17.70%,330,140,0,70.20%,29.80%,0.00%,163,164,424,38.70% +104378,336,3309,State-funded primary,241,125,116,51.90%,48.10%,5,2.10%,39,16.20%,124,117,0,51.50%,48.50%,0.00%,71,73,210,34.80% +104382,336,3314,State-funded primary,236,119,117,50.40%,49.60%,7,3.00%,29,12.30%,64,172,0,27.10%,72.90%,0.00%,84,84,211,39.80% +104384,336,3316,State-funded primary,214,104,110,48.60%,51.40%,15,7.00%,21,9.80%,21,193,0,9.80%,90.20%,0.00%,70,70,214,32.70% +104387,336,4115,State-funded secondary,882,438,444,49.70%,50.30%,31,3.50%,222,25.20%,277,603,2,31.40%,68.40%,0.20%,446,497,882,56.30% +104395,336,4133,State-funded secondary,1021,468,553,45.80%,54.20%,12,1.20%,110,10.80%,703,318,0,68.90%,31.10%,0.00%,544,522,914,57.10% +104407,336,6013,Independent school,477,216,261,45.30%,54.70%,10,2.10%,40,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104408,336,6015,Independent school,135,120,15,88.90%,11.10%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104411,336,6023,Independent school,768,301,467,39.20%,60.80%,2,0.30%,143,18.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104412,336,7004,State-funded special school,186,50,136,26.90%,73.10%,183,98.40%,3,1.60%,24,160,2,12.90%,86.00%,1.10%,103,92,159,57.90% +104414,336,7007,State-funded special school,152,25,127,16.40%,83.60%,152,100.00%,0,0.00%,35,117,0,23.00%,77.00%,0.00%,71,64,129,49.60% +104415,336,7008,State-funded special school,143,52,91,36.40%,63.60%,143,100.00%,0,0.00%,39,104,0,27.30%,72.70%,0.00%,77,66,118,55.90% +104418,340,1100,State-funded AP school,50,26,24,52.00%,48.00%,2,4.00%,48,96.00%,0,50,0,0.00%,100.00%,0.00%,44,45,50,90.00% +104420,340,2002,State-funded primary,221,103,118,46.60%,53.40%,6,2.70%,46,20.80%,11,210,0,5.00%,95.00%,0.00%,110,111,195,56.90% +104423,340,2007,State-funded primary,211,97,114,46.00%,54.00%,1,0.50%,21,10.00%,11,200,0,5.20%,94.80%,0.00%,51,52,181,28.70% +104425,340,2010,State-funded primary,437,205,232,46.90%,53.10%,18,4.10%,57,13.00%,45,392,0,10.30%,89.70%,0.00%,115,115,397,29.00% +104427,340,2013,State-funded primary,468,219,249,46.80%,53.20%,8,1.70%,66,14.10%,6,458,4,1.30%,97.90%,0.90%,100,106,417,25.40% +104429,340,2015,State-funded primary,463,226,237,48.80%,51.20%,18,3.90%,72,15.60%,29,434,0,6.30%,93.70%,0.00%,211,213,404,52.70% +104431,340,2017,State-funded primary,229,118,111,51.50%,48.50%,6,2.60%,49,21.40%,30,198,1,13.10%,86.50%,0.40%,131,132,213,62.00% +104432,340,2018,State-funded primary,316,153,163,48.40%,51.60%,9,2.80%,45,14.20%,20,296,0,6.30%,93.70%,0.00%,127,129,286,45.10% +104441,340,2039,State-funded primary,488,233,255,47.70%,52.30%,10,2.00%,37,7.60%,15,473,0,3.10%,96.90%,0.00%,144,147,444,33.10% +104444,340,2048,State-funded primary,216,114,102,52.80%,47.20%,1,0.50%,32,14.80%,22,194,0,10.20%,89.80%,0.00%,95,95,192,49.50% +104446,340,2050,State-funded primary,264,110,154,41.70%,58.30%,12,4.50%,17,6.40%,20,244,0,7.60%,92.40%,0.00%,40,44,239,18.40% +104447,340,2051,State-funded primary,238,119,119,50.00%,50.00%,2,0.80%,40,16.80%,19,217,2,8.00%,91.20%,0.80%,130,134,207,64.70% +104448,340,3000,State-funded primary,302,144,158,47.70%,52.30%,3,1.00%,45,14.90%,6,296,0,2.00%,98.00%,0.00%,91,93,269,34.60% +104453,340,3306,State-funded primary,241,114,127,47.30%,52.70%,12,5.00%,57,23.70%,38,202,1,15.80%,83.80%,0.40%,111,117,210,55.70% +104454,340,3307,State-funded primary,222,102,120,45.90%,54.10%,7,3.20%,40,18.00%,6,215,1,2.70%,96.80%,0.50%,15,17,203,8.40% +104459,340,3314,State-funded primary,225,112,113,49.80%,50.20%,5,2.20%,25,11.10%,9,216,0,4.00%,96.00%,0.00%,27,27,204,13.20% +104460,340,3315,State-funded primary,212,110,102,51.90%,48.10%,2,0.90%,16,7.50%,72,140,0,34.00%,66.00%,0.00%,80,81,189,42.90% +104461,340,3316,State-funded primary,381,186,195,48.80%,51.20%,7,1.80%,64,16.80%,14,367,0,3.70%,96.30%,0.00%,132,133,349,38.10% +104463,340,3318,State-funded primary,222,96,126,43.20%,56.80%,3,1.40%,18,8.10%,9,213,0,4.10%,95.90%,0.00%,89,90,191,47.10% +104464,340,3319,State-funded primary,439,233,206,53.10%,46.90%,11,2.50%,62,14.10%,14,424,1,3.20%,96.60%,0.20%,125,128,394,32.50% +104466,340,3322,State-funded primary,228,111,117,48.70%,51.30%,4,1.80%,28,12.30%,29,198,1,12.70%,86.80%,0.40%,143,150,203,73.90% +104467,340,3325,State-funded primary,233,123,110,52.80%,47.20%,12,5.20%,78,33.50%,30,203,0,12.90%,87.10%,0.00%,122,123,200,61.50% +104468,340,3326,State-funded primary,333,163,170,48.90%,51.10%,4,1.20%,46,13.80%,13,320,0,3.90%,96.10%,0.00%,76,78,297,26.30% +104469,340,3327,State-funded primary,228,121,107,53.10%,46.90%,6,2.60%,44,19.30%,13,215,0,5.70%,94.30%,0.00%,88,89,203,43.80% +104470,340,3328,State-funded primary,241,123,118,51.00%,49.00%,9,3.70%,22,9.10%,8,233,0,3.30%,96.70%,0.00%,39,41,207,19.80% +104472,340,3340,State-funded primary,204,89,115,43.60%,56.40%,3,1.50%,35,17.20%,6,198,0,2.90%,97.10%,0.00%,62,62,204,30.40% +104474,340,3344,State-funded primary,257,124,133,48.20%,51.80%,16,6.20%,61,23.70%,38,219,0,14.80%,85.20%,0.00%,125,125,206,60.70% +104475,340,3350,State-funded primary,223,106,117,47.50%,52.50%,3,1.30%,33,14.80%,12,211,0,5.40%,94.60%,0.00%,77,78,197,39.60% +104476,340,3352,State-funded primary,224,105,119,46.90%,53.10%,1,0.40%,24,10.70%,2,222,0,0.90%,99.10%,0.00%,35,36,198,18.20% +104477,340,3353,State-funded primary,331,165,166,49.80%,50.20%,7,2.10%,45,13.60%,5,326,0,1.50%,98.50%,0.00%,42,42,304,13.80% +104479,340,3356,State-funded primary,363,176,187,48.50%,51.50%,9,2.50%,52,14.30%,27,336,0,7.40%,92.60%,0.00%,113,119,303,39.30% +104480,340,3357,State-funded primary,230,114,116,49.60%,50.40%,12,5.20%,22,9.60%,17,213,0,7.40%,92.60%,0.00%,127,131,201,65.20% +104481,340,3358,State-funded primary,411,224,187,54.50%,45.50%,4,1.00%,20,4.90%,51,360,0,12.40%,87.60%,0.00%,114,116,345,33.60% +104482,340,3359,State-funded primary,478,247,231,51.70%,48.30%,12,2.50%,68,14.20%,34,444,0,7.10%,92.90%,0.00%,146,149,478,31.20% +104495,340,7005,State-funded special school,220,68,152,30.90%,69.10%,220,100.00%,0,0.00%,9,211,0,4.10%,95.90%,0.00%,123,103,220,46.80% +104498,340,7013,State-funded special school,272,66,206,24.30%,75.70%,272,100.00%,0,0.00%,4,268,0,1.50%,98.50%,0.00%,141,149,238,62.60% +104500,340,7015,State-funded special school,100,22,78,22.00%,78.00%,100,100.00%,0,0.00%,2,98,0,2.00%,98.00%,0.00%,51,54,100,54.00% +104503,341,1001,State-funded nursery,64,28,36,43.80%,56.30%,2,3.10%,9,14.10%,48,16,0,75.00%,25.00%,0.00%,0,0,0,0.00% +104504,341,1002,State-funded nursery,78,40,38,51.30%,48.70%,5,6.40%,9,11.50%,5,73,0,6.40%,93.60%,0.00%,0,0,0,0.00% +104505,341,1003,State-funded nursery,159,67,92,42.10%,57.90%,6,3.80%,61,38.40%,47,112,0,29.60%,70.40%,0.00%,27,0,0,0.00% +104506,341,1005,State-funded nursery,169,83,86,49.10%,50.90%,10,5.90%,36,21.30%,40,129,0,23.70%,76.30%,0.00%,0,0,0,0.00% +104507,341,1006,State-funded nursery,79,40,39,50.60%,49.40%,6,7.60%,5,6.30%,52,27,0,65.80%,34.20%,0.00%,0,0,0,0.00% +104516,341,2008,State-funded primary,323,182,141,56.30%,43.70%,6,1.90%,45,13.90%,80,243,0,24.80%,75.20%,0.00%,154,162,295,54.90% +104517,341,2010,State-funded primary,442,227,215,51.40%,48.60%,5,1.10%,69,15.60%,34,408,0,7.70%,92.30%,0.00%,71,75,406,18.50% +104519,341,2014,State-funded primary,279,136,143,48.70%,51.30%,4,1.40%,42,15.10%,24,255,0,8.60%,91.40%,0.00%,133,128,246,52.00% +104521,341,2017,State-funded primary,351,172,179,49.00%,51.00%,10,2.80%,72,20.50%,34,317,0,9.70%,90.30%,0.00%,92,97,351,27.60% +104522,341,2019,State-funded primary,389,175,214,45.00%,55.00%,6,1.50%,59,15.20%,43,345,1,11.10%,88.70%,0.30%,23,27,389,6.90% +104530,341,2039,State-funded primary,388,192,196,49.50%,50.50%,16,4.10%,84,21.60%,31,356,1,8.00%,91.80%,0.30%,123,121,346,35.00% +104543,341,2063,State-funded primary,350,177,173,50.60%,49.40%,15,4.30%,41,11.70%,29,321,0,8.30%,91.70%,0.00%,76,77,350,22.00% +104544,341,2064,State-funded primary,315,137,178,43.50%,56.50%,5,1.60%,21,6.70%,13,302,0,4.10%,95.90%,0.00%,36,37,268,13.80% +104545,341,2065,State-funded primary,239,111,128,46.40%,53.60%,51,21.30%,29,12.10%,22,215,2,9.20%,90.00%,0.80%,55,66,239,27.60% +104549,341,2084,State-funded primary,355,175,180,49.30%,50.70%,7,2.00%,58,16.30%,25,330,0,7.00%,93.00%,0.00%,94,108,355,30.40% +104550,341,2086,State-funded primary,254,110,144,43.30%,56.70%,31,12.20%,39,15.40%,24,229,1,9.40%,90.20%,0.40%,71,70,228,30.70% +104554,341,2092,State-funded primary,216,114,102,52.80%,47.20%,2,0.90%,34,15.70%,42,174,0,19.40%,80.60%,0.00%,102,114,216,52.80% +104555,341,2093,State-funded primary,210,104,106,49.50%,50.50%,3,1.40%,31,14.80%,53,157,0,25.20%,74.80%,0.00%,72,63,171,36.80% +104557,341,2098,State-funded primary,280,116,164,41.40%,58.60%,13,4.60%,51,18.20%,31,249,0,11.10%,88.90%,0.00%,118,115,205,56.10% +104564,341,2110,State-funded primary,432,231,201,53.50%,46.50%,15,3.50%,76,17.60%,46,384,2,10.60%,88.90%,0.50%,200,206,393,52.40% +104565,341,2113,State-funded primary,410,215,195,52.40%,47.60%,11,2.70%,53,12.90%,89,321,0,21.70%,78.30%,0.00%,101,116,385,30.10% +104569,341,2123,State-funded primary,232,113,119,48.70%,51.30%,7,3.00%,49,21.10%,158,74,0,68.10%,31.90%,0.00%,86,84,204,41.20% +104570,341,2128,State-funded primary,319,163,156,51.10%,48.90%,7,2.20%,100,31.30%,125,194,0,39.20%,60.80%,0.00%,141,141,291,48.50% +104571,341,2130,State-funded primary,236,125,111,53.00%,47.00%,4,1.70%,44,18.60%,37,199,0,15.70%,84.30%,0.00%,117,124,205,60.50% +104580,341,2149,State-funded primary,354,169,185,47.70%,52.30%,4,1.10%,45,12.70%,18,333,3,5.10%,94.10%,0.80%,22,22,354,6.20% +104589,341,2166,State-funded primary,238,129,109,54.20%,45.80%,9,3.80%,49,20.60%,198,40,0,83.20%,16.80%,0.00%,134,129,209,61.70% +104591,341,2170,State-funded primary,364,188,176,51.60%,48.40%,1,0.30%,52,14.30%,45,319,0,12.40%,87.60%,0.00%,234,230,325,70.80% +104592,341,2171,State-funded primary,389,179,210,46.00%,54.00%,5,1.30%,33,8.50%,22,367,0,5.70%,94.30%,0.00%,73,73,265,27.50% +104593,341,2172,State-funded primary,297,124,173,41.80%,58.20%,10,3.40%,29,9.80%,26,270,1,8.80%,90.90%,0.30%,6,7,297,2.40% +104596,341,2180,State-funded primary,449,224,225,49.90%,50.10%,6,1.30%,68,15.10%,40,409,0,8.90%,91.10%,0.00%,58,60,449,13.40% +104600,341,2199,State-funded primary,209,101,108,48.30%,51.70%,6,2.90%,41,19.60%,19,190,0,9.10%,90.90%,0.00%,96,102,186,54.80% +104610,341,2214,State-funded primary,412,200,212,48.50%,51.50%,10,2.40%,131,31.80%,119,293,0,28.90%,71.10%,0.00%,205,187,360,51.90% +104611,341,2215,State-funded primary,231,101,130,43.70%,56.30%,11,4.80%,58,25.10%,26,205,0,11.30%,88.70%,0.00%,80,80,209,38.30% +104613,341,3001,State-funded primary,299,150,149,50.20%,49.80%,2,0.70%,83,27.80%,62,237,0,20.70%,79.30%,0.00%,161,164,276,59.40% +104616,341,3015,State-funded primary,161,81,80,50.30%,49.70%,4,2.50%,39,24.20%,36,125,0,22.40%,77.60%,0.00%,87,87,149,58.40% +104622,341,3310,State-funded primary,393,191,202,48.60%,51.40%,5,1.30%,64,16.30%,86,307,0,21.90%,78.10%,0.00%,112,123,357,34.50% +104624,341,3327,State-funded primary,209,107,102,51.20%,48.80%,6,2.90%,37,17.70%,10,199,0,4.80%,95.20%,0.00%,19,23,209,11.00% +104625,341,3329,State-funded primary,423,199,224,47.00%,53.00%,7,1.70%,52,12.30%,19,402,2,4.50%,95.00%,0.50%,13,13,423,3.10% +104629,341,3507,State-funded primary,411,192,219,46.70%,53.30%,3,0.70%,56,13.60%,6,404,1,1.50%,98.30%,0.20%,47,53,411,12.90% +104632,341,3511,State-funded primary,235,105,130,44.70%,55.30%,28,11.90%,28,11.90%,40,195,0,17.00%,83.00%,0.00%,97,101,216,46.80% +104633,341,3512,State-funded primary,188,97,91,51.60%,48.40%,2,1.10%,40,21.30%,86,102,0,45.70%,54.30%,0.00%,55,55,172,32.00% +104634,341,3513,State-funded primary,337,178,159,52.80%,47.20%,5,1.50%,34,10.10%,60,274,3,17.80%,81.30%,0.90%,103,111,310,35.80% +104635,341,3514,State-funded primary,218,120,98,55.00%,45.00%,3,1.40%,24,11.00%,47,171,0,21.60%,78.40%,0.00%,89,92,195,47.20% +104636,341,3516,State-funded primary,417,201,216,48.20%,51.80%,6,1.40%,41,9.80%,12,405,0,2.90%,97.10%,0.00%,49,53,417,12.70% +104638,341,3523,State-funded primary,372,187,185,50.30%,49.70%,9,2.40%,79,21.20%,93,279,0,25.00%,75.00%,0.00%,165,163,318,51.30% +104640,341,3527,State-funded primary,192,95,97,49.50%,50.50%,3,1.60%,43,22.40%,81,111,0,42.20%,57.80%,0.00%,94,97,170,57.10% +104641,341,3528,State-funded primary,207,100,107,48.30%,51.70%,1,0.50%,42,20.30%,101,106,0,48.80%,51.20%,0.00%,83,81,181,44.80% +104642,341,3541,State-funded primary,421,209,212,49.60%,50.40%,2,0.50%,43,10.20%,14,407,0,3.30%,96.70%,0.00%,11,11,421,2.60% +104643,341,3543,State-funded primary,432,215,217,49.80%,50.20%,6,1.40%,65,15.00%,13,419,0,3.00%,97.00%,0.00%,36,46,404,11.40% +104645,341,3547,State-funded primary,237,126,111,53.20%,46.80%,9,3.80%,32,13.50%,43,194,0,18.10%,81.90%,0.00%,80,86,237,36.30% +104646,341,3548,State-funded primary,194,88,106,45.40%,54.60%,4,2.10%,28,14.40%,20,174,0,10.30%,89.70%,0.00%,59,59,176,33.50% +104648,341,3550,State-funded primary,186,95,91,51.10%,48.90%,5,2.70%,33,17.70%,96,90,0,51.60%,48.40%,0.00%,82,85,170,50.00% +104649,341,3551,State-funded primary,233,117,116,50.20%,49.80%,4,1.70%,37,15.90%,72,161,0,30.90%,69.10%,0.00%,100,109,206,52.90% +104650,341,3552,State-funded primary,435,224,211,51.50%,48.50%,11,2.50%,56,12.90%,57,378,0,13.10%,86.90%,0.00%,173,186,435,42.80% +104651,341,3553,State-funded primary,404,204,200,50.50%,49.50%,10,2.50%,73,18.10%,66,338,0,16.30%,83.70%,0.00%,164,143,331,43.20% +104652,341,3558,State-funded primary,206,97,109,47.10%,52.90%,4,1.90%,36,17.50%,181,25,0,87.90%,12.10%,0.00%,158,172,206,83.50% +104656,341,3571,State-funded primary,442,225,217,50.90%,49.10%,4,0.90%,67,15.20%,213,229,0,48.20%,51.80%,0.00%,232,230,393,58.50% +104660,341,3582,State-funded primary,237,116,121,48.90%,51.10%,7,3.00%,65,27.40%,106,131,0,44.70%,55.30%,0.00%,100,104,209,49.80% +104661,341,3584,State-funded primary,491,227,264,46.20%,53.80%,6,1.20%,95,19.30%,16,475,0,3.30%,96.70%,0.00%,94,99,491,20.20% +104664,341,3588,State-funded primary,248,134,114,54.00%,46.00%,4,1.60%,54,21.80%,58,190,0,23.40%,76.60%,0.00%,67,67,216,31.00% +104667,341,3594,State-funded primary,252,121,131,48.00%,52.00%,7,2.80%,60,23.80%,101,151,0,40.10%,59.90%,0.00%,51,54,220,24.50% +104670,341,3599,State-funded primary,141,64,77,45.40%,54.60%,4,2.80%,33,23.40%,19,122,0,13.50%,86.50%,0.00%,66,69,141,48.90% +104673,341,3606,State-funded primary,360,175,185,48.60%,51.40%,6,1.70%,43,11.90%,15,345,0,4.20%,95.80%,0.00%,77,77,360,21.40% +104676,341,3631,State-funded primary,214,109,105,50.90%,49.10%,2,0.90%,25,11.70%,12,202,0,5.60%,94.40%,0.00%,8,9,214,4.20% +104677,341,3632,State-funded primary,197,81,116,41.10%,58.90%,2,1.00%,32,16.20%,38,159,0,19.30%,80.70%,0.00%,76,76,172,44.20% +104678,341,3633,State-funded primary,241,116,125,48.10%,51.90%,8,3.30%,37,15.40%,12,229,0,5.00%,95.00%,0.00%,101,95,195,48.70% +104679,341,3635,State-funded primary,413,196,217,47.50%,52.50%,5,1.20%,53,12.80%,11,402,0,2.70%,97.30%,0.00%,40,42,413,10.20% +104681,341,3644,State-funded primary,259,119,140,45.90%,54.10%,5,1.90%,49,18.90%,131,128,0,50.60%,49.40%,0.00%,130,129,246,52.40% +104682,341,5200,State-funded primary,431,194,237,45.00%,55.00%,9,2.10%,51,11.80%,65,352,14,15.10%,81.70%,3.20%,17,18,431,4.20% +104688,341,4404,State-funded secondary,956,956,0,100.00%,0.00%,9,0.90%,146,15.30%,243,679,34,25.40%,71.00%,3.60%,434,486,882,55.10% +104698,341,4427,State-funded secondary,1552,647,905,41.70%,58.30%,21,1.40%,217,14.00%,192,1341,19,12.40%,86.40%,1.20%,313,319,1315,24.30% +104700,341,4429,State-funded secondary,1161,545,616,46.90%,53.10%,43,3.70%,157,13.50%,94,1066,1,8.10%,91.80%,0.10%,534,534,1031,51.80% +104703,341,4690,State-funded secondary,758,338,420,44.60%,55.40%,34,4.50%,92,12.10%,79,679,0,10.40%,89.60%,0.00%,49,53,586,9.00% +104705,341,4781,State-funded secondary,1075,1046,29,97.30%,2.70%,21,2.00%,140,13.00%,226,849,0,21.00%,79.00%,0.00%,209,230,871,26.40% +104706,341,4782,State-funded secondary,1001,487,514,48.70%,51.30%,56,5.60%,176,17.60%,121,880,0,12.10%,87.90%,0.00%,460,503,886,56.80% +104712,341,4790,State-funded secondary,1061,1060,1,99.90%,0.10%,12,1.10%,155,14.60%,47,1013,1,4.40%,95.50%,0.10%,218,248,886,28.00% +104713,341,4792,State-funded secondary,1218,1217,1,99.90%,0.10%,15,1.20%,181,14.90%,73,1144,1,6.00%,93.90%,0.10%,355,380,1036,36.70% +104714,341,4793,State-funded secondary,1360,3,1357,0.20%,99.80%,34,2.50%,291,21.40%,56,1304,0,4.10%,95.90%,0.00%,393,403,1162,34.70% +104715,341,4794,State-funded secondary,1072,1059,13,98.80%,1.20%,15,1.40%,172,16.00%,104,968,0,9.70%,90.30%,0.00%,423,418,895,46.70% +104717,341,4796,State-funded secondary,1198,521,677,43.50%,56.50%,31,2.60%,179,14.90%,56,1142,0,4.70%,95.30%,0.00%,265,307,935,32.80% +104721,341,5403,State-funded secondary,1114,449,665,40.30%,59.70%,80,7.20%,180,16.20%,79,1035,0,7.10%,92.90%,0.00%,161,162,881,18.40% +104723,341,6004,Independent school,182,100,82,54.90%,45.10%,1,0.50%,7,3.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104729,341,6039,Independent school,154,97,57,63.00%,37.00%,1,0.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104730,341,6040,Independent school,172,89,83,51.70%,48.30%,6,3.50%,59,34.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104734,341,7018,Non-maintained special school,47,14,33,29.80%,70.20%,47,100.00%,0,0.00%,2,45,0,4.30%,95.70%,0.00%,3,14,30,46.70% +104735,341,7023,Non-maintained special school,81,36,45,44.40%,55.60%,67,82.70%,14,17.30%,2,77,2,2.50%,95.10%,2.50%,24,29,64,45.30% +104736,341,7025,State-funded special school,271,40,231,14.80%,85.20%,271,100.00%,0,0.00%,13,258,0,4.80%,95.20%,0.00%,153,135,219,61.60% +104739,341,7039,State-funded special school,73,0,73,0.00%,100.00%,73,100.00%,0,0.00%,0,73,0,0.00%,100.00%,0.00%,48,57,73,78.10% +104742,341,7042,State-funded special school,66,0,66,0.00%,100.00%,66,100.00%,0,0.00%,0,66,0,0.00%,100.00%,0.00%,55,59,66,89.40% +104744,341,7045,State-funded special school,65,0,65,0.00%,100.00%,65,100.00%,0,0.00%,1,64,0,1.50%,98.50%,0.00%,53,61,65,93.80% +104748,341,7051,State-funded special school,149,49,100,32.90%,67.10%,149,100.00%,0,0.00%,39,110,0,26.20%,73.80%,0.00%,93,68,106,64.20% +104749,341,7052,State-funded special school,146,42,104,28.80%,71.20%,146,100.00%,0,0.00%,13,132,1,8.90%,90.40%,0.70%,69,51,94,54.30% +104750,341,7063,State-funded special school,184,47,137,25.50%,74.50%,184,100.00%,0,0.00%,38,144,2,20.70%,78.30%,1.10%,96,104,184,56.50% +104751,341,7054,State-funded special school,136,39,97,28.70%,71.30%,134,98.50%,2,1.50%,21,115,0,15.40%,84.60%,0.00%,66,71,134,53.00% +104757,342,1100,State-funded AP school,3,1,2,33.30%,66.70%,0,0.00%,3,100.00%,0,3,0,0.00%,100.00%,0.00%,1,2,3,66.70% +104758,342,2001,State-funded primary,454,220,234,48.50%,51.50%,9,2.00%,116,25.60%,45,409,0,9.90%,90.10%,0.00%,203,209,406,51.50% +104761,342,2007,State-funded primary,241,112,129,46.50%,53.50%,2,0.80%,52,21.60%,14,227,0,5.80%,94.20%,0.00%,57,58,206,28.20% +104762,342,2008,State-funded primary,223,100,123,44.80%,55.20%,4,1.80%,20,9.00%,23,200,0,10.30%,89.70%,0.00%,67,68,195,34.90% +104763,342,2010,State-funded primary,633,322,311,50.90%,49.10%,12,1.90%,124,19.60%,45,588,0,7.10%,92.90%,0.00%,268,271,580,46.70% +104764,342,2012,State-funded primary,220,108,112,49.10%,50.90%,6,2.70%,21,9.50%,15,205,0,6.80%,93.20%,0.00%,88,91,202,45.00% +104769,342,2019,State-funded primary,436,211,225,48.40%,51.60%,3,0.70%,61,14.00%,12,424,0,2.80%,97.20%,0.00%,97,104,412,25.20% +104770,342,2020,State-funded primary,220,127,93,57.70%,42.30%,6,2.70%,46,20.90%,8,212,0,3.60%,96.40%,0.00%,52,52,205,25.40% +104771,342,2021,State-funded primary,221,116,105,52.50%,47.50%,4,1.80%,35,15.80%,15,206,0,6.80%,93.20%,0.00%,56,61,200,30.50% +104772,342,2022,State-funded primary,219,108,111,49.30%,50.70%,6,2.70%,43,19.60%,19,200,0,8.70%,91.30%,0.00%,95,99,216,45.80% +104773,342,2051,State-funded primary,553,273,280,49.40%,50.60%,4,0.70%,57,10.30%,5,548,0,0.90%,99.10%,0.00%,24,26,553,4.70% +104774,342,2053,State-funded primary,284,130,154,45.80%,54.20%,10,3.50%,45,15.80%,13,271,0,4.60%,95.40%,0.00%,42,47,237,19.80% +104775,342,2056,State-funded primary,631,307,324,48.70%,51.30%,14,2.20%,69,10.90%,29,602,0,4.60%,95.40%,0.00%,151,153,599,25.50% +104776,342,2058,State-funded primary,220,116,104,52.70%,47.30%,2,0.90%,52,23.60%,9,211,0,4.10%,95.90%,0.00%,72,74,198,37.40% +104777,342,2059,State-funded primary,261,137,124,52.50%,47.50%,6,2.30%,38,14.60%,17,244,0,6.50%,93.50%,0.00%,47,50,261,19.20% +104778,342,2061,State-funded primary,207,104,103,50.20%,49.80%,5,2.40%,26,12.60%,3,203,1,1.40%,98.10%,0.50%,22,25,207,12.10% +104779,342,2062,State-funded primary,206,119,87,57.80%,42.20%,1,0.50%,29,14.10%,7,199,0,3.40%,96.60%,0.00%,17,20,179,11.20% +104780,342,2063,State-funded primary,209,85,124,40.70%,59.30%,3,1.40%,17,8.10%,1,208,0,0.50%,99.50%,0.00%,21,23,209,11.00% +104781,342,2064,State-funded primary,210,97,113,46.20%,53.80%,2,1.00%,31,14.80%,8,202,0,3.80%,96.20%,0.00%,14,15,210,7.10% +104782,342,2065,State-funded primary,517,259,258,50.10%,49.90%,8,1.50%,101,19.50%,14,503,0,2.70%,97.30%,0.00%,126,131,475,27.60% +104783,342,2066,State-funded primary,408,189,219,46.30%,53.70%,13,3.20%,19,4.70%,6,402,0,1.50%,98.50%,0.00%,58,64,378,16.90% +104784,342,2068,State-funded primary,219,107,112,48.90%,51.10%,0,0.00%,40,18.30%,21,198,0,9.60%,90.40%,0.00%,122,123,199,61.80% +104787,342,3106,State-funded primary,419,204,215,48.70%,51.30%,7,1.70%,88,21.00%,21,398,0,5.00%,95.00%,0.00%,136,139,360,38.60% +104788,342,3109,State-funded primary,248,113,135,45.60%,54.40%,10,4.00%,20,8.10%,9,239,0,3.60%,96.40%,0.00%,19,20,248,8.10% +104791,342,3206,State-funded primary,316,163,153,51.60%,48.40%,5,1.60%,62,19.60%,30,285,1,9.50%,90.20%,0.30%,137,140,288,48.60% +104792,342,3207,State-funded primary,375,181,194,48.30%,51.70%,2,0.50%,76,20.30%,35,340,0,9.30%,90.70%,0.00%,151,153,312,49.00% +104797,342,3320,State-funded primary,161,56,105,34.80%,65.20%,28,17.40%,18,11.20%,5,156,0,3.10%,96.90%,0.00%,63,67,154,43.50% +104798,342,3321,State-funded primary,204,99,105,48.50%,51.50%,10,4.90%,20,9.80%,0,203,1,0.00%,99.50%,0.50%,36,39,204,19.10% +104801,342,3328,State-funded primary,236,118,118,50.00%,50.00%,0,0.00%,36,15.30%,2,234,0,0.80%,99.20%,0.00%,16,16,236,6.80% +104802,342,2071,State-funded primary,421,218,203,51.80%,48.20%,10,2.40%,55,13.10%,30,391,0,7.10%,92.90%,0.00%,121,123,382,32.20% +104804,342,3404,State-funded primary,196,97,99,49.50%,50.50%,0,0.00%,44,22.40%,46,150,0,23.50%,76.50%,0.00%,73,81,173,46.80% +104805,342,3414,State-funded primary,264,125,139,47.30%,52.70%,4,1.50%,63,23.90%,36,228,0,13.60%,86.40%,0.00%,77,79,255,31.00% +104806,342,3415,State-funded primary,217,105,112,48.40%,51.60%,3,1.40%,31,14.30%,16,201,0,7.40%,92.60%,0.00%,73,75,197,38.10% +104807,342,3420,State-funded primary,191,86,105,45.00%,55.00%,2,1.00%,28,14.70%,29,162,0,15.20%,84.80%,0.00%,73,75,191,39.30% +104809,342,3430,State-funded primary,211,108,103,51.20%,48.80%,3,1.40%,22,10.40%,5,206,0,2.40%,97.60%,0.00%,25,25,211,11.80% +104810,342,3432,State-funded primary,199,95,104,47.70%,52.30%,3,1.50%,17,8.50%,7,192,0,3.50%,96.50%,0.00%,36,38,199,19.10% +104812,342,3434,State-funded primary,193,111,82,57.50%,42.50%,5,2.60%,31,16.10%,13,180,0,6.70%,93.30%,0.00%,37,45,193,23.30% +104813,342,3450,State-funded primary,199,92,107,46.20%,53.80%,2,1.00%,10,5.00%,2,197,0,1.00%,99.00%,0.00%,17,17,199,8.50% +104814,342,3451,State-funded primary,153,81,72,52.90%,47.10%,9,5.90%,22,14.40%,3,150,0,2.00%,98.00%,0.00%,13,18,139,12.90% +104815,342,3452,State-funded primary,290,142,148,49.00%,51.00%,6,2.10%,31,10.70%,13,277,0,4.50%,95.50%,0.00%,23,24,290,8.30% +104816,342,3453,State-funded primary,235,118,117,50.20%,49.80%,1,0.40%,28,11.90%,6,229,0,2.60%,97.40%,0.00%,53,54,235,23.00% +104817,342,3454,State-funded primary,207,82,125,39.60%,60.40%,0,0.00%,27,13.00%,5,202,0,2.40%,97.60%,0.00%,22,22,176,12.50% +104818,342,3455,State-funded primary,294,159,135,54.10%,45.90%,5,1.70%,59,20.10%,28,266,0,9.50%,90.50%,0.00%,66,69,282,24.50% +104819,342,3456,State-funded primary,235,115,120,48.90%,51.10%,6,2.60%,24,10.20%,1,234,0,0.40%,99.60%,0.00%,15,16,235,6.80% +104823,342,3827,State-funded primary,226,102,124,45.10%,54.90%,6,2.70%,32,14.20%,3,223,0,1.30%,98.70%,0.00%,62,63,204,30.90% +104829,342,4101,State-funded secondary,1463,679,784,46.40%,53.60%,26,1.80%,223,15.20%,76,1385,2,5.20%,94.70%,0.10%,478,472,1229,38.40% +104834,342,4714,State-funded secondary,1194,586,608,49.10%,50.90%,50,4.20%,194,16.20%,49,1144,1,4.10%,95.80%,0.10%,229,260,1194,21.80% +104835,342,4801,State-funded secondary,910,445,465,48.90%,51.10%,15,1.60%,177,19.50%,65,845,0,7.10%,92.90%,0.00%,388,415,910,45.60% +104837,342,6001,Independent school,447,222,225,49.70%,50.30%,0,0.00%,44,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104839,342,6004,Independent school,59,9,50,15.30%,84.70%,59,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104843,342,7005,State-funded special school,60,3,57,5.00%,95.00%,60,100.00%,0,0.00%,1,59,0,1.70%,98.30%,0.00%,38,41,60,68.30% +104845,343,1002,State-funded nursery,66,32,34,48.50%,51.50%,0,0.00%,5,7.60%,6,60,0,9.10%,90.90%,0.00%,0,0,0,0.00% +104847,343,1004,State-funded nursery,102,45,57,44.10%,55.90%,0,0.00%,22,21.60%,25,77,0,24.50%,75.50%,0.00%,0,0,0,0.00% +104848,343,1005,State-funded nursery,66,33,33,50.00%,50.00%,3,4.50%,17,25.80%,9,55,2,13.60%,83.30%,3.00%,0,0,0,0.00% +104849,343,1100,State-funded AP school,65,20,45,30.80%,69.20%,1,1.50%,35,53.80%,0,65,0,0.00%,100.00%,0.00%,39,49,65,75.40% +104850,343,1101,State-funded AP school,4,0,4,0.00%,100.00%,0,0.00%,4,100.00%,0,4,0,0.00%,100.00%,0.00%,2,2,4,50.00% +104853,343,2008,State-funded primary,148,74,74,50.00%,50.00%,0,0.00%,49,33.10%,35,113,0,23.60%,76.40%,0.00%,83,83,141,58.90% +104856,343,2013,State-funded primary,215,97,118,45.10%,54.90%,3,1.40%,92,42.80%,14,199,2,6.50%,92.60%,0.90%,125,115,194,59.30% +104859,343,2023,State-funded primary,280,120,160,42.90%,57.10%,60,21.40%,35,12.50%,8,272,0,2.90%,97.10%,0.00%,131,124,260,47.70% +104860,343,2030,State-funded primary,453,210,243,46.40%,53.60%,2,0.40%,67,14.80%,29,424,0,6.40%,93.60%,0.00%,90,89,420,21.20% +104862,343,2034,State-funded primary,479,252,227,52.60%,47.40%,8,1.70%,63,13.20%,11,468,0,2.30%,97.70%,0.00%,86,89,479,18.60% +104863,343,2035,State-funded primary,440,221,219,50.20%,49.80%,1,0.20%,49,11.10%,8,432,0,1.80%,98.20%,0.00%,41,39,344,11.30% +104864,343,2036,State-funded primary,438,210,228,47.90%,52.10%,3,0.70%,56,12.80%,194,242,2,44.30%,55.30%,0.50%,146,141,398,35.40% +104865,343,2038,State-funded primary,620,302,318,48.70%,51.30%,8,1.30%,76,12.30%,73,547,0,11.80%,88.20%,0.00%,127,131,620,21.10% +104866,343,2047,State-funded primary,172,88,84,51.20%,48.80%,10,5.80%,20,11.60%,17,155,0,9.90%,90.10%,0.00%,54,55,172,32.00% +104868,343,2050,State-funded primary,451,214,237,47.50%,52.50%,8,1.80%,61,13.50%,0,451,0,0.00%,100.00%,0.00%,52,53,417,12.70% +104869,343,2053,State-funded primary,304,138,166,45.40%,54.60%,45,14.80%,28,9.20%,11,293,0,3.60%,96.40%,0.00%,60,54,239,22.60% +104870,343,2054,State-funded primary,370,171,199,46.20%,53.80%,36,9.70%,68,18.40%,29,341,0,7.80%,92.20%,0.00%,141,147,370,39.70% +104871,343,2056,State-funded primary,360,176,184,48.90%,51.10%,5,1.40%,58,16.10%,6,354,0,1.70%,98.30%,0.00%,58,60,360,16.70% +104872,343,2057,State-funded primary,323,159,164,49.20%,50.80%,5,1.50%,34,10.50%,11,312,0,3.40%,96.60%,0.00%,30,29,269,10.80% +104874,343,2060,State-funded primary,257,113,144,44.00%,56.00%,1,0.40%,27,10.50%,25,232,0,9.70%,90.30%,0.00%,115,91,201,45.30% +104878,343,2066,State-funded primary,381,175,206,45.90%,54.10%,8,2.10%,79,20.70%,19,362,0,5.00%,95.00%,0.00%,148,150,330,45.50% +104879,343,2067,State-funded primary,367,190,177,51.80%,48.20%,5,1.40%,22,6.00%,2,365,0,0.50%,99.50%,0.00%,46,44,316,13.90% +104881,343,2075,State-funded primary,374,183,191,48.90%,51.10%,1,0.30%,31,8.30%,19,355,0,5.10%,94.90%,0.00%,35,32,319,10.00% +104882,343,2076,State-funded primary,210,94,116,44.80%,55.20%,4,1.90%,17,8.10%,0,210,0,0.00%,100.00%,0.00%,16,16,210,7.60% +104883,343,2078,State-funded primary,276,132,144,47.80%,52.20%,24,8.70%,37,13.40%,11,265,0,4.00%,96.00%,0.00%,29,28,233,12.00% +104884,343,2080,State-funded primary,252,117,135,46.40%,53.60%,1,0.40%,28,11.10%,1,251,0,0.40%,99.60%,0.00%,18,18,215,8.40% +104885,343,2086,State-funded primary,269,128,141,47.60%,52.40%,39,14.50%,47,17.50%,8,261,0,3.00%,97.00%,0.00%,83,77,227,33.90% +104886,343,2087,State-funded primary,203,115,88,56.70%,43.30%,10,4.90%,34,16.70%,17,186,0,8.40%,91.60%,0.00%,82,74,175,42.30% +104887,343,2088,State-funded primary,280,130,150,46.40%,53.60%,2,0.70%,46,16.40%,26,254,0,9.30%,90.70%,0.00%,60,64,280,22.90% +104889,343,2090,State-funded primary,215,103,112,47.90%,52.10%,7,3.30%,27,12.60%,2,213,0,0.90%,99.10%,0.00%,33,35,215,16.30% +104890,343,2091,State-funded primary,211,93,118,44.10%,55.90%,8,3.80%,33,15.60%,2,209,0,0.90%,99.10%,0.00%,18,19,211,9.00% +104891,343,2092,State-funded primary,238,114,124,47.90%,52.10%,2,0.80%,29,12.20%,1,235,2,0.40%,98.70%,0.80%,28,32,224,14.30% +104892,343,2093,State-funded primary,373,187,186,50.10%,49.90%,15,4.00%,84,22.50%,75,298,0,20.10%,79.90%,0.00%,188,192,373,51.50% +104893,343,3000,State-funded primary,440,201,239,45.70%,54.30%,6,1.40%,92,20.90%,34,406,0,7.70%,92.30%,0.00%,204,207,371,55.80% +104894,343,3010,State-funded primary,182,82,100,45.10%,54.90%,7,3.80%,43,23.60%,7,175,0,3.80%,96.20%,0.00%,47,48,182,26.40% +104897,343,3024,State-funded primary,372,195,177,52.40%,47.60%,4,1.10%,70,18.80%,8,364,0,2.20%,97.80%,0.00%,43,45,372,12.10% +104898,343,3025,State-funded primary,201,100,101,49.80%,50.20%,3,1.50%,32,15.90%,12,189,0,6.00%,94.00%,0.00%,78,79,201,39.30% +104900,343,3303,State-funded primary,233,123,110,52.80%,47.20%,0,0.00%,65,27.90%,21,212,0,9.00%,91.00%,0.00%,91,85,196,43.40% +104902,343,3305,State-funded primary,203,106,97,52.20%,47.80%,0,0.00%,17,8.40%,25,178,0,12.30%,87.70%,0.00%,36,38,203,18.70% +104903,343,3307,State-funded primary,205,112,93,54.60%,45.40%,6,2.90%,21,10.20%,3,202,0,1.50%,98.50%,0.00%,34,34,205,16.60% +104905,343,3313,State-funded primary,455,234,221,51.40%,48.60%,2,0.40%,84,18.50%,25,429,1,5.50%,94.30%,0.20%,102,103,416,24.80% +104906,343,3316,State-funded primary,238,122,116,51.30%,48.70%,2,0.80%,24,10.10%,5,233,0,2.10%,97.90%,0.00%,34,36,209,17.20% +104915,343,3336,State-funded primary,202,103,99,51.00%,49.00%,2,1.00%,35,17.30%,50,152,0,24.80%,75.20%,0.00%,34,34,202,16.80% +104916,343,3337,State-funded primary,486,234,252,48.10%,51.90%,34,7.00%,51,10.50%,67,418,1,13.80%,86.00%,0.20%,84,90,454,19.80% +104918,343,3339,State-funded primary,344,169,175,49.10%,50.90%,5,1.50%,19,5.50%,39,304,1,11.30%,88.40%,0.30%,44,44,344,12.80% +104920,343,3342,State-funded primary,195,87,108,44.60%,55.40%,1,0.50%,26,13.30%,5,184,6,2.60%,94.40%,3.10%,48,50,195,25.60% +104921,343,3343,State-funded primary,235,108,127,46.00%,54.00%,2,0.90%,29,12.30%,3,232,0,1.30%,98.70%,0.00%,26,27,209,12.90% +104922,343,3345,State-funded primary,211,104,107,49.30%,50.70%,6,2.80%,18,8.50%,7,204,0,3.30%,96.70%,0.00%,10,10,211,4.70% +104925,343,3351,State-funded primary,234,123,111,52.60%,47.40%,1,0.40%,23,9.80%,1,233,0,0.40%,99.60%,0.00%,31,33,201,16.40% +104926,343,3353,State-funded primary,776,354,422,45.60%,54.40%,1,0.10%,42,5.40%,15,761,0,1.90%,98.10%,0.00%,58,61,734,8.30% +104927,343,3354,State-funded primary,98,56,42,57.10%,42.90%,0,0.00%,11,11.20%,0,98,0,0.00%,100.00%,0.00%,16,17,98,17.30% +104928,343,3355,State-funded primary,330,162,168,49.10%,50.90%,3,0.90%,34,10.30%,5,325,0,1.50%,98.50%,0.00%,76,76,304,25.00% +104929,343,3357,State-funded primary,216,118,98,54.60%,45.40%,2,0.90%,60,27.80%,51,165,0,23.60%,76.40%,0.00%,134,135,196,68.90% +104930,343,3359,State-funded primary,228,117,111,51.30%,48.70%,2,0.90%,11,4.80%,3,225,0,1.30%,98.70%,0.00%,15,16,204,7.80% +104931,343,3361,State-funded primary,464,222,242,47.80%,52.20%,1,0.20%,54,11.60%,5,459,0,1.10%,98.90%,0.00%,84,84,419,20.00% +104932,343,3362,State-funded primary,436,222,214,50.90%,49.10%,4,0.90%,62,14.20%,51,385,0,11.70%,88.30%,0.00%,205,196,389,50.40% +104934,343,3364,State-funded primary,233,116,117,49.80%,50.20%,4,1.70%,35,15.00%,12,221,0,5.20%,94.80%,0.00%,89,86,199,43.20% +104935,343,3366,State-funded primary,143,72,71,50.30%,49.70%,3,2.10%,41,28.70%,10,133,0,7.00%,93.00%,0.00%,90,91,132,68.90% +104936,343,3367,State-funded primary,240,115,125,47.90%,52.10%,0,0.00%,19,7.90%,0,240,0,0.00%,100.00%,0.00%,8,8,213,3.80% +104937,343,3368,State-funded primary,410,179,231,43.70%,56.30%,4,1.00%,47,11.50%,4,405,1,1.00%,98.80%,0.20%,41,42,410,10.20% +104938,343,3369,State-funded primary,203,113,90,55.70%,44.30%,5,2.50%,18,8.90%,1,202,0,0.50%,99.50%,0.00%,14,14,203,6.90% +104939,894,3364,State-funded primary,566,302,264,53.40%,46.60%,9,1.60%,115,20.30%,249,316,1,44.00%,55.80%,0.20%,153,158,491,32.20% +104940,343,3374,State-funded primary,460,245,215,53.30%,46.70%,3,0.70%,19,4.10%,7,452,1,1.50%,98.30%,0.20%,34,35,422,8.30% +104941,343,3375,State-funded primary,213,111,102,52.10%,47.90%,1,0.50%,22,10.30%,4,209,0,1.90%,98.10%,0.00%,16,16,213,7.50% +104942,343,3376,State-funded primary,203,100,103,49.30%,50.70%,4,2.00%,51,25.10%,33,170,0,16.30%,83.70%,0.00%,97,88,167,52.70% +104956,343,4110,State-funded secondary,902,384,518,42.60%,57.40%,33,3.70%,117,13.00%,87,810,5,9.60%,89.80%,0.60%,228,254,902,28.20% +104960,343,4621,State-funded secondary,1200,601,599,50.10%,49.90%,10,0.80%,118,9.80%,34,1166,0,2.80%,97.20%,0.00%,217,222,1031,21.50% +104962,343,4624,State-funded secondary,953,476,477,49.90%,50.10%,29,3.00%,132,13.90%,18,935,0,1.90%,98.10%,0.00%,199,198,814,24.30% +104964,343,4800,State-funded secondary,870,406,464,46.70%,53.30%,9,1.00%,108,12.40%,187,680,3,21.50%,78.20%,0.30%,243,237,746,31.80% +104972,343,6128,Independent school,817,378,439,46.30%,53.70%,9,1.10%,69,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104973,343,6129,Independent school,603,0,603,0.00%,100.00%,0,0.00%,132,21.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104974,343,6130,Independent school,631,587,44,93.00%,7.00%,2,0.30%,59,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +104977,343,7004,State-funded special school,123,23,100,18.70%,81.30%,123,100.00%,0,0.00%,3,120,0,2.40%,97.60%,0.00%,47,37,92,40.20% +104979,343,7006,State-funded special school,104,26,78,25.00%,75.00%,104,100.00%,0,0.00%,8,96,0,7.70%,92.30%,0.00%,47,43,82,52.40% +104980,343,7009,State-funded special school,167,66,101,39.50%,60.50%,167,100.00%,0,0.00%,8,159,0,4.80%,95.20%,0.00%,97,98,167,58.70% +104982,343,7011,State-funded special school,99,8,91,8.10%,91.90%,99,100.00%,0,0.00%,2,97,0,2.00%,98.00%,0.00%,67,76,99,76.80% +104983,343,7013,State-funded special school,297,83,214,27.90%,72.10%,297,100.00%,0,0.00%,13,278,6,4.40%,93.60%,2.00%,152,133,240,55.40% +104984,344,1000,State-funded nursery,76,32,44,42.10%,57.90%,1,1.30%,20,26.30%,10,66,0,13.20%,86.80%,0.00%,4,0,0,0.00% +104985,344,1001,State-funded nursery,68,34,34,50.00%,50.00%,4,5.90%,3,4.40%,2,66,0,2.90%,97.10%,0.00%,6,0,0,0.00% +104986,344,1002,State-funded nursery,135,63,72,46.70%,53.30%,13,9.60%,38,28.10%,4,131,0,3.00%,97.00%,0.00%,3,2,11,18.20% +104988,344,2000,State-funded primary,428,193,235,45.10%,54.90%,3,0.70%,77,18.00%,21,407,0,4.90%,95.10%,0.00%,209,200,396,50.50% +104990,344,2021,State-funded primary,325,175,150,53.80%,46.20%,6,1.80%,59,18.20%,161,164,0,49.50%,50.50%,0.00%,155,157,284,55.30% +104991,344,2048,State-funded primary,458,230,228,50.20%,49.80%,25,5.50%,61,13.30%,32,426,0,7.00%,93.00%,0.00%,145,149,432,34.50% +104992,344,2100,State-funded primary,598,320,278,53.50%,46.50%,19,3.20%,89,14.90%,25,572,1,4.20%,95.70%,0.20%,161,170,564,30.10% +104993,344,2101,State-funded primary,344,171,173,49.70%,50.30%,6,1.70%,53,15.40%,9,335,0,2.60%,97.40%,0.00%,66,68,344,19.80% +104994,344,2102,State-funded primary,716,362,354,50.60%,49.40%,6,0.80%,144,20.10%,19,697,0,2.70%,97.30%,0.00%,243,229,617,37.10% +104995,344,2104,State-funded primary,907,440,467,48.50%,51.50%,6,0.70%,78,8.60%,13,894,0,1.40%,98.60%,0.00%,149,150,829,18.10% +104996,344,2107,State-funded primary,257,129,128,50.20%,49.80%,6,2.30%,82,31.90%,22,235,0,8.60%,91.40%,0.00%,149,151,216,69.90% +104997,344,2108,State-funded primary,157,78,79,49.70%,50.30%,5,3.20%,59,37.60%,6,151,0,3.80%,96.20%,0.00%,114,98,126,77.80% +104999,344,2110,State-funded primary,442,226,216,51.10%,48.90%,8,1.80%,68,15.40%,16,426,0,3.60%,96.40%,0.00%,200,201,411,48.90% +105000,344,2111,State-funded primary,481,222,259,46.20%,53.80%,8,1.70%,76,15.80%,15,466,0,3.10%,96.90%,0.00%,274,280,481,58.20% +105001,344,2112,State-funded primary,252,115,137,45.60%,54.40%,28,11.10%,41,16.30%,8,244,0,3.20%,96.80%,0.00%,120,121,214,56.50% +105002,344,2115,State-funded primary,123,43,80,35.00%,65.00%,5,4.10%,44,35.80%,1,122,0,0.80%,99.20%,0.00%,70,71,123,57.70% +105003,344,2116,State-funded primary,82,44,38,53.70%,46.30%,2,2.40%,34,41.50%,4,78,0,4.90%,95.10%,0.00%,41,43,74,58.10% +105004,344,2117,State-funded primary,297,143,154,48.10%,51.90%,7,2.40%,33,11.10%,3,292,2,1.00%,98.30%,0.70%,49,51,297,17.20% +105005,344,2118,State-funded primary,390,179,211,45.90%,54.10%,0,0.00%,76,19.50%,17,373,0,4.40%,95.60%,0.00%,148,150,356,42.10% +105009,344,2203,State-funded primary,365,177,188,48.50%,51.50%,5,1.40%,57,15.60%,19,346,0,5.20%,94.80%,0.00%,59,60,365,16.40% +105011,344,2205,State-funded primary,327,160,167,48.90%,51.10%,0,0.00%,96,29.40%,44,283,0,13.50%,86.50%,0.00%,179,171,275,62.20% +105015,344,2212,State-funded primary,183,88,95,48.10%,51.90%,0,0.00%,7,3.80%,4,179,0,2.20%,97.80%,0.00%,13,13,183,7.10% +105017,344,2214,State-funded primary,170,85,85,50.00%,50.00%,1,0.60%,26,15.30%,5,165,0,2.90%,97.10%,0.00%,78,77,152,50.70% +105018,344,2215,State-funded primary,210,105,105,50.00%,50.00%,4,1.90%,25,11.90%,4,206,0,1.90%,98.10%,0.00%,16,16,210,7.60% +105020,344,2217,State-funded primary,465,238,227,51.20%,48.80%,5,1.10%,30,6.50%,6,459,0,1.30%,98.70%,0.00%,40,42,422,10.00% +105021,344,2218,State-funded primary,165,77,88,46.70%,53.30%,0,0.00%,8,4.80%,2,163,0,1.20%,98.80%,0.00%,20,21,165,12.70% +105022,344,2220,State-funded primary,210,96,114,45.70%,54.30%,6,2.90%,4,1.90%,3,207,0,1.40%,98.60%,0.00%,9,7,179,3.90% +105023,344,2221,State-funded primary,315,156,159,49.50%,50.50%,0,0.00%,27,8.60%,37,278,0,11.70%,88.30%,0.00%,40,42,297,14.10% +105025,344,2224,State-funded primary,216,112,104,51.90%,48.10%,0,0.00%,39,18.10%,1,215,0,0.50%,99.50%,0.00%,10,13,216,6.00% +105027,344,2226,State-funded primary,166,84,82,50.60%,49.40%,3,1.80%,11,6.60%,12,154,0,7.20%,92.80%,0.00%,34,32,139,23.00% +105028,344,2227,State-funded primary,215,93,122,43.30%,56.70%,4,1.90%,29,13.50%,2,213,0,0.90%,99.10%,0.00%,28,29,215,13.50% +105030,344,2229,State-funded primary,309,149,160,48.20%,51.80%,1,0.30%,15,4.90%,2,307,0,0.60%,99.40%,0.00%,9,10,309,3.20% +105032,344,2232,State-funded primary,203,105,98,51.70%,48.30%,2,1.00%,25,12.30%,10,193,0,4.90%,95.10%,0.00%,46,47,203,23.20% +105038,344,2250,State-funded primary,213,103,110,48.40%,51.60%,0,0.00%,42,19.70%,20,193,0,9.40%,90.60%,0.00%,43,43,213,20.20% +105039,344,2252,State-funded primary,237,96,141,40.50%,59.50%,19,8.00%,82,34.60%,8,229,0,3.40%,96.60%,0.00%,125,128,237,54.00% +105041,344,2254,State-funded primary,138,57,81,41.30%,58.70%,3,2.20%,30,21.70%,0,138,0,0.00%,100.00%,0.00%,73,70,129,54.30% +105042,344,2255,State-funded primary,463,220,243,47.50%,52.50%,6,1.30%,102,22.00%,45,418,0,9.70%,90.30%,0.00%,270,271,419,64.70% +105043,344,2256,State-funded primary,290,146,144,50.30%,49.70%,5,1.70%,32,11.00%,2,288,0,0.70%,99.30%,0.00%,58,56,258,21.70% +105045,344,2258,State-funded primary,304,143,161,47.00%,53.00%,6,2.00%,81,26.60%,36,268,0,11.80%,88.20%,0.00%,199,199,276,72.10% +105047,344,2260,State-funded primary,279,115,164,41.20%,58.80%,5,1.80%,49,17.60%,22,257,0,7.90%,92.10%,0.00%,120,125,279,44.80% +105048,344,2261,State-funded primary,220,85,135,38.60%,61.40%,4,1.80%,58,26.40%,41,179,0,18.60%,81.40%,0.00%,131,133,179,74.30% +105050,344,2263,State-funded primary,226,123,103,54.40%,45.60%,2,0.90%,39,17.30%,24,202,0,10.60%,89.40%,0.00%,115,115,198,58.10% +105051,344,2264,State-funded primary,210,87,123,41.40%,58.60%,6,2.90%,32,15.20%,6,204,0,2.90%,97.10%,0.00%,24,25,210,11.90% +105055,344,2268,State-funded primary,268,128,140,47.80%,52.20%,35,13.10%,88,32.80%,7,261,0,2.60%,97.40%,0.00%,168,160,247,64.80% +105056,344,2270,State-funded primary,347,170,177,49.00%,51.00%,6,1.70%,43,12.40%,10,337,0,2.90%,97.10%,0.00%,93,93,347,26.80% +105060,344,2275,State-funded primary,455,206,249,45.30%,54.70%,1,0.20%,89,19.60%,19,436,0,4.20%,95.80%,0.00%,181,172,421,40.90% +105062,344,3009,State-funded primary,426,194,232,45.50%,54.50%,2,0.50%,39,9.20%,14,412,0,3.30%,96.70%,0.00%,21,22,426,5.20% +105063,344,3010,State-funded primary,313,165,148,52.70%,47.30%,10,3.20%,51,16.30%,12,301,0,3.80%,96.20%,0.00%,52,51,287,17.80% +105064,344,3011,State-funded primary,181,82,99,45.30%,54.70%,2,1.10%,43,23.80%,35,146,0,19.30%,80.70%,0.00%,110,107,165,64.80% +105066,344,3300,State-funded primary,218,79,139,36.20%,63.80%,0,0.00%,33,15.10%,15,203,0,6.90%,93.10%,0.00%,17,19,218,8.70% +105067,344,3304,State-funded primary,204,105,99,51.50%,48.50%,0,0.00%,25,12.30%,3,201,0,1.50%,98.50%,0.00%,91,91,204,44.60% +105068,344,3321,State-funded primary,266,113,153,42.50%,57.50%,9,3.40%,30,11.30%,21,245,0,7.90%,92.10%,0.00%,63,65,266,24.40% +105069,344,3322,State-funded primary,191,76,115,39.80%,60.20%,5,2.60%,46,24.10%,11,180,0,5.80%,94.20%,0.00%,100,85,144,59.00% +105070,344,3324,State-funded primary,113,41,72,36.30%,63.70%,4,3.50%,28,24.80%,4,109,0,3.50%,96.50%,0.00%,48,48,82,58.50% +105071,344,3330,State-funded primary,265,129,136,48.70%,51.30%,4,1.50%,26,9.80%,7,258,0,2.60%,97.40%,0.00%,55,56,237,23.60% +105072,344,3331,State-funded primary,355,164,191,46.20%,53.80%,3,0.80%,79,22.30%,13,342,0,3.70%,96.30%,0.00%,129,129,355,36.30% +105073,344,3333,State-funded primary,207,106,101,51.20%,48.80%,0,0.00%,73,35.30%,14,193,0,6.80%,93.20%,0.00%,99,96,175,54.90% +105074,344,3335,State-funded primary,349,189,160,54.20%,45.80%,3,0.90%,40,11.50%,19,330,0,5.40%,94.60%,0.00%,81,82,325,25.20% +105077,344,3350,State-funded primary,206,103,103,50.00%,50.00%,2,1.00%,48,23.30%,19,187,0,9.20%,90.80%,0.00%,21,22,206,10.70% +105078,344,3351,State-funded primary,219,100,119,45.70%,54.30%,5,2.30%,6,2.70%,2,217,0,0.90%,99.10%,0.00%,6,6,203,3.00% +105079,344,3352,State-funded primary,328,160,168,48.80%,51.20%,1,0.30%,28,8.50%,3,325,0,0.90%,99.10%,0.00%,11,11,285,3.90% +105080,344,3360,State-funded primary,248,129,119,52.00%,48.00%,3,1.20%,64,25.80%,7,241,0,2.80%,97.20%,0.00%,51,54,248,21.80% +105081,344,3361,State-funded primary,418,201,217,48.10%,51.90%,6,1.40%,40,9.60%,14,404,0,3.30%,96.70%,0.00%,77,77,388,19.80% +105082,344,3362,State-funded primary,221,109,112,49.30%,50.70%,2,0.90%,1,0.50%,6,215,0,2.70%,97.30%,0.00%,45,44,180,24.40% +105084,344,3365,State-funded primary,232,101,131,43.50%,56.50%,1,0.40%,14,6.00%,8,224,0,3.40%,96.60%,0.00%,19,20,232,8.60% +105085,344,3366,State-funded primary,193,88,105,45.60%,54.40%,6,3.10%,40,20.70%,26,167,0,13.50%,86.50%,0.00%,120,126,193,65.30% +105086,344,3367,State-funded primary,467,240,227,51.40%,48.60%,3,0.60%,92,19.70%,41,426,0,8.80%,91.20%,0.00%,187,177,398,44.50% +105087,344,3368,State-funded primary,158,90,68,57.00%,43.00%,0,0.00%,41,25.90%,21,137,0,13.30%,86.70%,0.00%,102,102,145,70.30% +105088,344,3369,State-funded primary,246,123,123,50.00%,50.00%,2,0.80%,90,36.60%,24,222,0,9.80%,90.20%,0.00%,127,126,201,62.70% +105090,344,3371,State-funded primary,232,121,111,52.20%,47.80%,3,1.30%,60,25.90%,29,203,0,12.50%,87.50%,0.00%,90,92,200,46.00% +105091,344,3372,State-funded primary,228,122,106,53.50%,46.50%,1,0.40%,57,25.00%,74,154,0,32.50%,67.50%,0.00%,103,104,179,58.10% +105097,344,4018,State-funded secondary,873,378,495,43.30%,56.70%,46,5.30%,267,30.60%,31,842,0,3.60%,96.40%,0.00%,464,499,873,57.20% +105101,344,4058,State-funded secondary,884,378,506,42.80%,57.20%,6,0.70%,147,16.60%,24,860,0,2.70%,97.30%,0.00%,190,200,884,22.60% +105103,344,4066,State-funded secondary,1045,2,1043,0.20%,99.80%,12,1.10%,208,19.90%,19,1026,0,1.80%,98.20%,0.00%,372,365,906,40.30% +105107,344,4071,State-funded secondary,1040,482,558,46.30%,53.70%,24,2.30%,256,24.60%,14,1026,0,1.30%,98.70%,0.00%,303,314,934,33.60% +105118,344,6005,Independent school,124,45,79,36.30%,63.70%,5,4.00%,14,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105122,344,6016,Independent school,144,67,77,46.50%,53.50%,6,4.20%,13,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105123,344,6023,Independent school,958,439,519,45.80%,54.20%,3,0.30%,75,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105128,344,7000,State-funded special school,161,31,130,19.30%,80.70%,161,100.00%,0,0.00%,4,157,0,2.50%,97.50%,0.00%,96,98,161,60.90% +105129,344,7001,State-funded special school,285,68,217,23.90%,76.10%,285,100.00%,0,0.00%,4,281,0,1.40%,98.60%,0.00%,148,126,247,51.00% +105130,344,7003,State-funded special school,50,0,50,0.00%,100.00%,50,100.00%,0,0.00%,0,50,0,0.00%,100.00%,0.00%,34,38,50,76.00% +105131,344,7004,State-funded special school,174,52,122,29.90%,70.10%,173,99.40%,1,0.60%,6,168,0,3.40%,96.60%,0.00%,81,59,120,49.20% +105132,344,7005,State-funded special school,214,55,159,25.70%,74.30%,214,100.00%,0,0.00%,22,184,8,10.30%,86.00%,3.70%,113,113,213,53.10% +105133,344,7007,State-funded special school,104,36,68,34.60%,65.40%,104,100.00%,0,0.00%,0,104,0,0.00%,100.00%,0.00%,67,49,75,65.30% +105134,344,7010,State-funded special school,60,11,49,18.30%,81.70%,60,100.00%,0,0.00%,0,60,0,0.00%,100.00%,0.00%,45,47,60,78.30% +105135,203,6905,State-funded secondary,1120,479,641,42.80%,57.20%,28,2.50%,170,15.20%,317,764,39,28.30%,68.20%,3.50%,329,394,1120,35.20% +105137,344,7015,Non-maintained special school,97,23,74,23.70%,76.30%,97,100.00%,0,0.00%,0,97,0,0.00%,100.00%,0.00%,20,27,78,34.60% +105138,344,7017,State-funded special school,143,32,111,22.40%,77.60%,143,100.00%,0,0.00%,4,139,0,2.80%,97.20%,0.00%,65,66,142,46.50% +105140,344,7020,State-funded special school,82,22,60,26.80%,73.20%,82,100.00%,0,0.00%,1,81,0,1.20%,98.80%,0.00%,40,40,82,48.80% +105142,350,1002,State-funded nursery,70,34,36,48.60%,51.40%,5,7.10%,9,12.90%,40,30,0,57.10%,42.90%,0.00%,0,0,0,0.00% +105144,350,1005,State-funded nursery,120,60,60,50.00%,50.00%,0,0.00%,30,25.00%,15,105,0,12.50%,87.50%,0.00%,0,0,0,0.00% +105145,350,1006,State-funded nursery,101,52,49,51.50%,48.50%,0,0.00%,17,16.80%,16,85,0,15.80%,84.20%,0.00%,4,0,0,0.00% +105148,350,2000,State-funded primary,460,215,245,46.70%,53.30%,9,2.00%,77,16.70%,393,67,0,85.40%,14.60%,0.00%,180,181,409,44.30% +105149,350,2004,State-funded primary,242,108,134,44.60%,55.40%,5,2.10%,34,14.00%,169,73,0,69.80%,30.20%,0.00%,81,86,207,41.50% +105150,350,2005,State-funded primary,218,98,120,45.00%,55.00%,6,2.80%,33,15.10%,36,182,0,16.50%,83.50%,0.00%,126,127,198,64.10% +105152,350,2008,State-funded primary,460,237,223,51.50%,48.50%,6,1.30%,91,19.80%,84,376,0,18.30%,81.70%,0.00%,111,114,424,26.90% +105153,350,2010,State-funded primary,456,223,233,48.90%,51.10%,11,2.40%,71,15.60%,339,112,5,74.30%,24.60%,1.10%,133,134,417,32.10% +105154,350,2013,State-funded primary,421,212,209,50.40%,49.60%,14,3.30%,50,11.90%,154,266,1,36.60%,63.20%,0.20%,107,111,421,26.40% +105155,350,2014,State-funded primary,461,221,240,47.90%,52.10%,4,0.90%,52,11.30%,319,136,6,69.20%,29.50%,1.30%,134,138,406,34.00% +105156,350,2016,State-funded primary,495,233,262,47.10%,52.90%,8,1.60%,44,8.90%,52,443,0,10.50%,89.50%,0.00%,112,111,407,27.30% +105157,350,2017,State-funded primary,248,126,122,50.80%,49.20%,4,1.60%,51,20.60%,31,217,0,12.50%,87.50%,0.00%,127,122,198,61.60% +105159,350,2019,State-funded primary,314,155,159,49.40%,50.60%,7,2.20%,26,8.30%,27,287,0,8.60%,91.40%,0.00%,14,17,314,5.40% +105160,350,2020,State-funded primary,448,211,237,47.10%,52.90%,12,2.70%,90,20.10%,254,194,0,56.70%,43.30%,0.00%,145,164,422,38.90% +105161,350,2022,State-funded primary,508,257,251,50.60%,49.40%,10,2.00%,76,15.00%,462,46,0,90.90%,9.10%,0.00%,144,151,442,34.20% +105162,350,2024,State-funded primary,248,125,123,50.40%,49.60%,13,5.20%,27,10.90%,111,137,0,44.80%,55.20%,0.00%,40,45,218,20.60% +105163,350,2025,State-funded primary,523,261,262,49.90%,50.10%,13,2.50%,44,8.40%,360,163,0,68.80%,31.20%,0.00%,104,105,424,24.80% +105168,350,2035,State-funded primary,306,132,174,43.10%,56.90%,18,5.90%,36,11.80%,203,103,0,66.30%,33.70%,0.00%,139,160,306,52.30% +105169,350,2036,State-funded primary,375,170,205,45.30%,54.70%,9,2.40%,14,3.70%,135,240,0,36.00%,64.00%,0.00%,67,73,375,19.50% +105171,350,2038,State-funded primary,379,190,189,50.10%,49.90%,16,4.20%,67,17.70%,36,339,4,9.50%,89.40%,1.10%,106,109,250,43.60% +105172,350,2039,State-funded primary,248,127,121,51.20%,48.80%,6,2.40%,16,6.50%,94,153,1,37.90%,61.70%,0.40%,63,65,209,31.10% +105173,350,2040,State-funded primary,214,102,112,47.70%,52.30%,3,1.40%,24,11.20%,82,132,0,38.30%,61.70%,0.00%,20,22,214,10.30% +105174,350,2041,State-funded primary,209,104,105,49.80%,50.20%,3,1.40%,14,6.70%,13,196,0,6.20%,93.80%,0.00%,9,9,209,4.30% +105175,350,2042,State-funded primary,236,105,131,44.50%,55.50%,7,3.00%,36,15.30%,8,228,0,3.40%,96.60%,0.00%,30,29,209,13.90% +105176,350,2043,State-funded primary,219,105,114,47.90%,52.10%,4,1.80%,14,6.40%,42,177,0,19.20%,80.80%,0.00%,16,22,219,10.00% +105182,350,2056,State-funded primary,417,225,192,54.00%,46.00%,11,2.60%,45,10.80%,58,359,0,13.90%,86.10%,0.00%,92,96,417,23.00% +105186,350,2061,State-funded primary,220,114,106,51.80%,48.20%,4,1.80%,57,25.90%,32,186,2,14.50%,84.50%,0.90%,72,73,202,36.10% +105187,350,2062,State-funded primary,406,193,213,47.50%,52.50%,18,4.40%,82,20.20%,56,350,0,13.80%,86.20%,0.00%,213,218,406,53.70% +105189,350,2065,State-funded primary,333,185,148,55.60%,44.40%,6,1.80%,15,4.50%,8,325,0,2.40%,97.60%,0.00%,30,33,306,10.80% +105190,350,2066,State-funded primary,374,185,189,49.50%,50.50%,5,1.30%,80,21.40%,10,364,0,2.70%,97.30%,0.00%,60,62,327,19.00% +105191,350,2067,State-funded primary,315,153,162,48.60%,51.40%,2,0.60%,25,7.90%,10,305,0,3.20%,96.80%,0.00%,23,24,315,7.60% +105192,350,2068,State-funded primary,214,117,97,54.70%,45.30%,6,2.80%,13,6.10%,1,213,0,0.50%,99.50%,0.00%,14,14,214,6.50% +105195,350,2073,State-funded primary,241,113,128,46.90%,53.10%,9,3.70%,16,6.60%,21,220,0,8.70%,91.30%,0.00%,25,28,241,11.60% +105196,350,2075,State-funded primary,230,127,103,55.20%,44.80%,5,2.20%,27,11.70%,14,216,0,6.10%,93.90%,0.00%,28,32,201,15.90% +105198,350,2078,State-funded primary,211,109,102,51.70%,48.30%,1,0.50%,50,23.70%,200,11,0,94.80%,5.20%,0.00%,44,51,202,25.20% +105199,350,2079,State-funded primary,159,73,86,45.90%,54.10%,13,8.20%,41,25.80%,31,128,0,19.50%,80.50%,0.00%,63,70,159,44.00% +105202,350,2083,State-funded primary,248,131,117,52.80%,47.20%,5,2.00%,32,12.90%,15,233,0,6.00%,94.00%,0.00%,45,44,218,20.20% +105203,350,3000,State-funded primary,477,241,236,50.50%,49.50%,11,2.30%,67,14.00%,210,263,4,44.00%,55.10%,0.80%,178,183,419,43.70% +105205,350,3007,State-funded primary,442,223,219,50.50%,49.50%,10,2.30%,67,15.20%,340,100,2,76.90%,22.60%,0.50%,178,184,404,45.50% +105209,350,3021,State-funded primary,405,194,211,47.90%,52.10%,5,1.20%,50,12.30%,14,391,0,3.50%,96.50%,0.00%,49,50,368,13.60% +105211,350,3023,State-funded primary,244,114,130,46.70%,53.30%,13,5.30%,41,16.80%,3,241,0,1.20%,98.80%,0.00%,49,52,215,24.20% +105214,350,3302,State-funded primary,493,253,240,51.30%,48.70%,14,2.80%,78,15.80%,417,74,2,84.60%,15.00%,0.40%,86,91,416,21.90% +105217,350,3306,State-funded primary,199,87,112,43.70%,56.30%,4,2.00%,21,10.60%,43,156,0,21.60%,78.40%,0.00%,54,56,199,28.10% +105218,350,3314,State-funded primary,360,162,198,45.00%,55.00%,12,3.30%,24,6.70%,205,155,0,56.90%,43.10%,0.00%,100,104,308,33.80% +105219,350,3315,State-funded primary,199,89,110,44.70%,55.30%,4,2.00%,45,22.60%,35,164,0,17.60%,82.40%,0.00%,80,83,199,41.70% +105220,350,3316,State-funded primary,233,120,113,51.50%,48.50%,4,1.70%,48,20.60%,33,200,0,14.20%,85.80%,0.00%,71,74,204,36.30% +105221,350,3317,State-funded primary,411,200,211,48.70%,51.30%,5,1.20%,48,11.70%,43,368,0,10.50%,89.50%,0.00%,56,61,411,14.80% +105222,350,3319,State-funded primary,230,122,108,53.00%,47.00%,3,1.30%,37,16.10%,110,120,0,47.80%,52.20%,0.00%,58,61,203,30.00% +105223,350,3320,State-funded primary,223,109,114,48.90%,51.10%,10,4.50%,18,8.10%,87,136,0,39.00%,61.00%,0.00%,79,82,201,40.80% +105225,350,3328,State-funded primary,218,104,114,47.70%,52.30%,2,0.90%,32,14.70%,109,109,0,50.00%,50.00%,0.00%,55,56,198,28.30% +105226,350,3331,State-funded primary,241,129,112,53.50%,46.50%,9,3.70%,30,12.40%,112,129,0,46.50%,53.50%,0.00%,76,71,212,33.50% +105229,350,3336,State-funded primary,243,122,121,50.20%,49.80%,4,1.60%,35,14.40%,143,96,4,58.80%,39.50%,1.60%,68,69,213,32.40% +105230,350,3337,State-funded primary,208,111,97,53.40%,46.60%,8,3.80%,8,3.80%,11,197,0,5.30%,94.70%,0.00%,20,22,208,10.60% +105232,350,3341,State-funded primary,351,194,157,55.30%,44.70%,2,0.60%,21,6.00%,16,335,0,4.60%,95.40%,0.00%,16,21,351,6.00% +105233,350,3344,State-funded primary,324,162,162,50.00%,50.00%,6,1.90%,50,15.40%,13,311,0,4.00%,96.00%,0.00%,45,48,324,14.80% +105234,350,3345,State-funded primary,240,126,114,52.50%,47.50%,2,0.80%,22,9.20%,6,234,0,2.50%,97.50%,0.00%,14,17,212,8.00% +105236,350,3348,State-funded primary,205,104,101,50.70%,49.30%,2,1.00%,40,19.50%,14,191,0,6.80%,93.20%,0.00%,21,21,205,10.20% +105237,350,3349,State-funded primary,212,117,95,55.20%,44.80%,4,1.90%,14,6.60%,6,206,0,2.80%,97.20%,0.00%,27,28,212,13.20% +105238,350,3351,State-funded primary,261,118,143,45.20%,54.80%,6,2.30%,48,18.40%,198,63,0,75.90%,24.10%,0.00%,54,56,210,26.70% +105239,350,3352,State-funded primary,423,200,223,47.30%,52.70%,11,2.60%,49,11.60%,39,384,0,9.20%,90.80%,0.00%,147,150,423,35.50% +105240,350,3354,State-funded primary,195,92,103,47.20%,52.80%,1,0.50%,27,13.80%,7,188,0,3.60%,96.40%,0.00%,55,58,195,29.70% +105241,350,3355,State-funded primary,161,86,75,53.40%,46.60%,2,1.20%,20,12.40%,54,107,0,33.50%,66.50%,0.00%,64,72,161,44.70% +105242,350,3356,State-funded primary,213,117,96,54.90%,45.10%,5,2.30%,19,8.90%,1,212,0,0.50%,99.50%,0.00%,32,36,213,16.90% +105243,350,3359,State-funded primary,418,213,205,51.00%,49.00%,6,1.40%,21,5.00%,34,384,0,8.10%,91.90%,0.00%,35,37,418,8.90% +105245,350,3362,State-funded primary,236,122,114,51.70%,48.30%,4,1.70%,32,13.60%,89,147,0,37.70%,62.30%,0.00%,57,57,211,27.00% +105246,350,3363,State-funded primary,207,98,109,47.30%,52.70%,2,1.00%,19,9.20%,3,204,0,1.40%,98.60%,0.00%,29,29,207,14.00% +105247,350,3364,State-funded primary,128,57,71,44.50%,55.50%,14,10.90%,18,14.10%,24,104,0,18.80%,81.30%,0.00%,37,41,128,32.00% +105248,350,3365,State-funded primary,208,97,111,46.60%,53.40%,6,2.90%,20,9.60%,7,201,0,3.40%,96.60%,0.00%,12,14,208,6.70% +105249,350,3366,State-funded primary,180,98,82,54.40%,45.60%,2,1.10%,17,9.40%,9,168,3,5.00%,93.30%,1.70%,33,36,180,20.00% +105250,350,3367,State-funded primary,216,116,100,53.70%,46.30%,3,1.40%,23,10.60%,6,210,0,2.80%,97.20%,0.00%,23,23,216,10.60% +105252,350,4031,State-funded secondary,1327,640,687,48.20%,51.80%,18,1.40%,122,9.20%,64,1263,0,4.80%,95.20%,0.00%,279,309,1327,23.30% +105253,350,4034,State-funded secondary,1612,811,801,50.30%,49.70%,23,1.40%,137,8.50%,50,1556,6,3.10%,96.50%,0.40%,290,292,1319,22.10% +105262,350,4609,State-funded secondary,1034,514,520,49.70%,50.30%,13,1.30%,54,5.20%,66,968,0,6.40%,93.60%,0.00%,200,231,1034,22.30% +105263,350,4611,State-funded secondary,898,451,447,50.20%,49.80%,42,4.70%,148,16.50%,342,540,16,38.10%,60.10%,1.80%,273,299,898,33.30% +105264,350,4612,State-funded secondary,1590,808,782,50.80%,49.20%,37,2.30%,120,7.50%,139,1451,0,8.70%,91.30%,0.00%,342,346,1327,26.10% +105269,350,6000,Independent school,52,13,39,25.00%,75.00%,6,11.50%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105270,350,6011,Independent school,142,76,66,53.50%,46.50%,1,0.70%,27,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105271,350,6014,Independent school,1174,0,1174,0.00%,100.00%,4,0.30%,119,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105272,350,6015,Independent school,1033,1033,0,100.00%,0.00%,0,0.00%,82,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105276,350,7002,State-funded special school,77,24,53,31.20%,68.80%,72,93.50%,5,6.50%,48,28,1,62.30%,36.40%,1.30%,32,32,75,42.70% +105277,350,7003,State-funded special school,327,113,214,34.60%,65.40%,327,100.00%,0,0.00%,56,271,0,17.10%,82.90%,0.00%,150,101,206,49.00% +105280,350,7007,Non-maintained special school,87,21,66,24.10%,75.90%,87,100.00%,0,0.00%,15,72,0,17.20%,82.80%,0.00%,0,29,87,33.30% +105281,350,7008,State-funded special school,153,41,112,26.80%,73.20%,152,99.30%,1,0.70%,37,116,0,24.20%,75.80%,0.00%,58,60,153,39.20% +105283,351,1003,State-funded nursery,96,48,48,50.00%,50.00%,7,7.30%,9,9.40%,44,52,0,45.80%,54.20%,0.00%,50,0,0,0.00% +105287,351,2006,State-funded primary,243,112,131,46.10%,53.90%,5,2.10%,49,20.20%,56,187,0,23.00%,77.00%,0.00%,95,93,218,42.70% +105291,351,2013,State-funded primary,309,153,156,49.50%,50.50%,4,1.30%,24,7.80%,7,302,0,2.30%,97.70%,0.00%,36,36,267,13.50% +105292,351,2014,State-funded primary,301,145,156,48.20%,51.80%,17,5.60%,39,13.00%,58,243,0,19.30%,80.70%,0.00%,64,62,274,22.60% +105293,351,2015,State-funded primary,312,164,148,52.60%,47.40%,13,4.20%,28,9.00%,55,257,0,17.60%,82.40%,0.00%,73,74,312,23.70% +105294,351,2019,State-funded primary,196,88,108,44.90%,55.10%,10,5.10%,14,7.10%,11,185,0,5.60%,94.40%,0.00%,34,34,196,17.30% +105295,351,2020,State-funded primary,241,113,128,46.90%,53.10%,6,2.50%,48,19.90%,15,225,1,6.20%,93.40%,0.40%,13,13,241,5.40% +105296,351,2025,State-funded primary,208,108,100,51.90%,48.10%,8,3.80%,36,17.30%,0,208,0,0.00%,100.00%,0.00%,15,16,208,7.70% +105297,351,2027,State-funded primary,406,204,202,50.20%,49.80%,21,5.20%,48,11.80%,83,323,0,20.40%,79.60%,0.00%,102,102,373,27.30% +105299,351,2029,State-funded primary,194,91,103,46.90%,53.10%,16,8.20%,30,15.50%,15,179,0,7.70%,92.30%,0.00%,77,75,170,44.10% +105300,351,2030,State-funded primary,181,88,93,48.60%,51.40%,3,1.70%,20,11.00%,25,156,0,13.80%,86.20%,0.00%,90,91,181,50.30% +105301,351,2032,State-funded primary,231,122,109,52.80%,47.20%,5,2.20%,19,8.20%,0,231,0,0.00%,100.00%,0.00%,9,9,231,3.90% +105305,351,2036,State-funded primary,200,97,103,48.50%,51.50%,7,3.50%,30,15.00%,12,188,0,6.00%,94.00%,0.00%,54,56,200,28.00% +105306,351,2037,State-funded primary,406,185,221,45.60%,54.40%,16,3.90%,47,11.60%,124,282,0,30.50%,69.50%,0.00%,104,106,375,28.30% +105307,351,2038,State-funded primary,440,213,227,48.40%,51.60%,13,3.00%,24,5.50%,69,371,0,15.70%,84.30%,0.00%,75,78,411,19.00% +105308,351,2039,State-funded primary,305,141,164,46.20%,53.80%,7,2.30%,21,6.90%,196,109,0,64.30%,35.70%,0.00%,57,58,272,21.30% +105310,351,2041,State-funded primary,180,86,94,47.80%,52.20%,8,4.40%,27,15.00%,66,114,0,36.70%,63.30%,0.00%,78,78,164,47.60% +105311,351,2042,State-funded primary,269,119,150,44.20%,55.80%,11,4.10%,33,12.30%,9,260,0,3.30%,96.70%,0.00%,47,48,269,17.80% +105313,351,2045,State-funded primary,285,147,138,51.60%,48.40%,6,2.10%,65,22.80%,30,255,0,10.50%,89.50%,0.00%,107,105,267,39.30% +105314,351,2046,State-funded primary,214,90,124,42.10%,57.90%,7,3.30%,30,14.00%,18,196,0,8.40%,91.60%,0.00%,30,31,214,14.50% +105321,351,3006,State-funded primary,252,118,134,46.80%,53.20%,5,2.00%,40,15.90%,77,175,0,30.60%,69.40%,0.00%,77,79,217,36.40% +105323,351,3015,State-funded primary,235,105,130,44.70%,55.30%,9,3.80%,7,3.00%,50,185,0,21.30%,78.70%,0.00%,26,26,235,11.10% +105324,351,3016,State-funded primary,260,136,124,52.30%,47.70%,8,3.10%,28,10.80%,5,255,0,1.90%,98.10%,0.00%,33,33,241,13.70% +105325,351,3017,State-funded primary,238,115,123,48.30%,51.70%,5,2.10%,16,6.70%,14,224,0,5.90%,94.10%,0.00%,39,38,208,18.30% +105326,351,3018,State-funded primary,243,109,134,44.90%,55.10%,7,2.90%,25,10.30%,8,235,0,3.30%,96.70%,0.00%,26,27,243,11.10% +105332,351,3303,State-funded primary,226,111,115,49.10%,50.90%,10,4.40%,26,11.50%,84,142,0,37.20%,62.80%,0.00%,151,152,226,67.30% +105334,351,3320,State-funded primary,236,127,109,53.80%,46.20%,8,3.40%,12,5.10%,10,226,0,4.20%,95.80%,0.00%,29,27,206,13.10% +105335,351,3324,State-funded primary,240,120,120,50.00%,50.00%,6,2.50%,49,20.40%,156,84,0,65.00%,35.00%,0.00%,33,31,211,14.70% +105336,351,3326,State-funded primary,335,170,165,50.70%,49.30%,10,3.00%,30,9.00%,55,280,0,16.40%,83.60%,0.00%,88,89,304,29.30% +105337,351,3328,State-funded primary,198,113,85,57.10%,42.90%,11,5.60%,17,8.60%,5,193,0,2.50%,97.50%,0.00%,28,31,198,15.70% +105338,351,3330,State-funded primary,107,50,57,46.70%,53.30%,6,5.60%,16,15.00%,0,107,0,0.00%,100.00%,0.00%,4,4,95,4.20% +105340,351,3332,State-funded primary,98,55,43,56.10%,43.90%,0,0.00%,12,12.20%,0,98,0,0.00%,100.00%,0.00%,5,6,98,6.10% +105342,351,3334,State-funded primary,233,115,118,49.40%,50.60%,8,3.40%,11,4.70%,13,220,0,5.60%,94.40%,0.00%,24,25,209,12.00% +105343,351,3335,State-funded primary,197,83,114,42.10%,57.90%,6,3.00%,15,7.60%,11,186,0,5.60%,94.40%,0.00%,22,23,178,12.90% +105344,351,3336,State-funded primary,276,139,137,50.40%,49.60%,7,2.50%,27,9.80%,3,273,0,1.10%,98.90%,0.00%,12,12,276,4.30% +105345,351,3337,State-funded primary,320,157,163,49.10%,50.90%,4,1.30%,32,10.00%,29,291,0,9.10%,90.90%,0.00%,25,27,299,9.00% +105347,351,3341,State-funded primary,342,164,178,48.00%,52.00%,8,2.30%,19,5.60%,14,328,0,4.10%,95.90%,0.00%,14,18,313,5.80% +105348,351,3343,State-funded primary,208,95,113,45.70%,54.30%,12,5.80%,18,8.70%,26,182,0,12.50%,87.50%,0.00%,52,52,178,29.20% +105350,351,3346,State-funded primary,238,112,126,47.10%,52.90%,16,6.70%,37,15.50%,8,230,0,3.40%,96.60%,0.00%,37,37,205,18.00% +105351,351,3348,State-funded primary,191,102,89,53.40%,46.60%,7,3.70%,32,16.80%,38,145,8,19.90%,75.90%,4.20%,43,43,191,22.50% +105352,351,3349,State-funded primary,112,58,54,51.80%,48.20%,5,4.50%,13,11.60%,7,105,0,6.30%,93.80%,0.00%,10,11,99,11.10% +105353,351,3350,State-funded primary,392,176,216,44.90%,55.10%,14,3.60%,77,19.60%,43,349,0,11.00%,89.00%,0.00%,85,87,364,23.90% +105354,351,4004,State-funded secondary,1027,493,534,48.00%,52.00%,41,4.00%,138,13.40%,74,953,0,7.20%,92.80%,0.00%,204,229,1027,22.30% +105355,351,4007,State-funded secondary,932,464,468,49.80%,50.20%,30,3.20%,152,16.30%,309,623,0,33.20%,66.80%,0.00%,285,314,932,33.70% +105358,351,4022,State-funded secondary,1011,515,496,50.90%,49.10%,30,3.00%,61,6.00%,206,805,0,20.40%,79.60%,0.00%,262,289,1011,28.60% +105360,351,4025,State-funded secondary,882,407,475,46.10%,53.90%,17,1.90%,109,12.40%,138,744,0,15.60%,84.40%,0.00%,305,334,882,37.90% +105369,351,6000,Independent school,80,45,35,56.30%,43.80%,0,0.00%,7,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105372,351,6007,Independent school,390,0,390,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105373,351,6008,Independent school,1317,683,634,51.90%,48.10%,1,0.10%,118,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105376,351,7009,State-funded special school,11,5,6,45.50%,54.50%,3,27.30%,8,72.70%,3,8,0,27.30%,72.70%,0.00%,0,0,1,0.00% +105377,351,7010,State-funded special school,160,39,121,24.40%,75.60%,160,100.00%,0,0.00%,27,133,0,16.90%,83.10%,0.00%,60,62,160,38.80% +105384,352,1007,State-funded nursery,71,30,41,42.30%,57.70%,0,0.00%,15,21.10%,45,23,3,63.40%,32.40%,4.20%,21,0,0,0.00% +105385,352,1008,State-funded nursery,43,20,23,46.50%,53.50%,1,2.30%,3,7.00%,7,36,0,16.30%,83.70%,0.00%,20,0,0,0.00% +105387,352,2001,State-funded primary,239,125,114,52.30%,47.70%,2,0.80%,22,9.20%,124,115,0,51.90%,48.10%,0.00%,110,104,206,50.50% +105389,352,2006,State-funded primary,467,232,235,49.70%,50.30%,23,4.90%,55,11.80%,265,195,7,56.70%,41.80%,1.50%,122,118,423,27.90% +105397,352,2039,State-funded primary,455,217,238,47.70%,52.30%,20,4.40%,54,11.90%,257,198,0,56.50%,43.50%,0.00%,223,211,416,50.70% +105401,352,2048,State-funded primary,471,239,232,50.70%,49.30%,19,4.00%,67,14.20%,249,222,0,52.90%,47.10%,0.00%,134,127,416,30.50% +105403,352,2057,State-funded primary,702,333,369,47.40%,52.60%,26,3.70%,70,10.00%,216,486,0,30.80%,69.20%,0.00%,198,184,614,30.00% +105404,352,2058,State-funded primary,683,328,355,48.00%,52.00%,16,2.30%,87,12.70%,535,148,0,78.30%,21.70%,0.00%,311,305,607,50.20% +105405,352,2060,State-funded primary,449,229,220,51.00%,49.00%,7,1.60%,110,24.50%,99,350,0,22.00%,78.00%,0.00%,247,223,397,56.20% +105408,352,2068,State-funded primary,640,295,345,46.10%,53.90%,15,2.30%,113,17.70%,542,98,0,84.70%,15.30%,0.00%,360,352,588,59.90% +105412,352,2075,State-funded primary,427,196,231,45.90%,54.10%,8,1.90%,72,16.90%,125,302,0,29.30%,70.70%,0.00%,220,200,375,53.30% +105413,352,2076,State-funded primary,241,124,117,51.50%,48.50%,3,1.20%,41,17.00%,215,26,0,89.20%,10.80%,0.00%,112,99,212,46.70% +105422,352,2129,State-funded primary,658,324,334,49.20%,50.80%,15,2.30%,121,18.40%,570,88,0,86.60%,13.40%,0.00%,316,292,591,49.40% +105424,352,2142,State-funded primary,625,304,321,48.60%,51.40%,15,2.40%,120,19.20%,216,408,1,34.60%,65.30%,0.20%,339,327,567,57.70% +105426,352,2161,State-funded primary,454,229,225,50.40%,49.60%,11,2.40%,37,8.10%,304,150,0,67.00%,33.00%,0.00%,182,169,402,42.00% +105427,352,2164,State-funded primary,423,206,217,48.70%,51.30%,11,2.60%,78,18.40%,142,281,0,33.60%,66.40%,0.00%,193,188,379,49.60% +105428,352,2165,State-funded primary,472,246,226,52.10%,47.90%,8,1.70%,103,21.80%,167,305,0,35.40%,64.60%,0.00%,260,227,412,55.10% +105432,352,2184,State-funded primary,554,283,271,51.10%,48.90%,18,3.20%,153,27.60%,89,465,0,16.10%,83.90%,0.00%,201,190,500,38.00% +105434,352,2186,State-funded primary,231,104,127,45.00%,55.00%,6,2.60%,12,5.20%,27,204,0,11.70%,88.30%,0.00%,34,34,205,16.60% +105443,352,2216,State-funded primary,408,201,207,49.30%,50.70%,10,2.50%,33,8.10%,299,109,0,73.30%,26.70%,0.00%,213,195,372,52.40% +105448,352,2232,State-funded primary,448,223,225,49.80%,50.20%,13,2.90%,48,10.70%,129,319,0,28.80%,71.20%,0.00%,222,196,388,50.50% +105449,352,2234,State-funded primary,464,243,221,52.40%,47.60%,12,2.60%,121,26.10%,119,327,18,25.60%,70.50%,3.90%,249,240,412,58.30% +105452,352,2249,State-funded primary,461,233,228,50.50%,49.50%,20,4.30%,56,12.10%,359,101,1,77.90%,21.90%,0.20%,168,160,416,38.50% +105459,352,2278,State-funded primary,477,238,239,49.90%,50.10%,10,2.10%,85,17.80%,281,196,0,58.90%,41.10%,0.00%,224,204,424,48.10% +105461,352,2288,State-funded primary,224,111,113,49.60%,50.40%,7,3.10%,31,13.80%,190,30,4,84.80%,13.40%,1.80%,109,101,203,49.80% +105465,352,2296,State-funded primary,448,227,221,50.70%,49.30%,11,2.50%,49,10.90%,108,339,1,24.10%,75.70%,0.20%,271,252,408,61.80% +105467,352,2298,State-funded primary,408,198,210,48.50%,51.50%,21,5.10%,46,11.30%,107,301,0,26.20%,73.80%,0.00%,95,99,377,26.30% +105468,352,2300,State-funded primary,246,128,118,52.00%,48.00%,5,2.00%,49,19.90%,30,216,0,12.20%,87.80%,0.00%,146,139,209,66.50% +105469,352,2301,State-funded primary,426,222,204,52.10%,47.90%,23,5.40%,79,18.50%,68,358,0,16.00%,84.00%,0.00%,177,176,375,46.90% +105470,352,2302,State-funded primary,448,232,216,51.80%,48.20%,15,3.30%,68,15.20%,135,305,8,30.10%,68.10%,1.80%,183,167,409,40.80% +105471,352,2303,State-funded primary,324,156,168,48.10%,51.90%,12,3.70%,84,25.90%,137,187,0,42.30%,57.70%,0.00%,197,184,294,62.60% +105472,352,2305,State-funded primary,427,209,218,48.90%,51.10%,12,2.80%,54,12.60%,174,252,1,40.70%,59.00%,0.20%,76,76,401,19.00% +105480,352,2321,State-funded primary,230,125,105,54.30%,45.70%,6,2.60%,41,17.80%,125,105,0,54.30%,45.70%,0.00%,129,126,208,60.60% +105483,352,2324,State-funded primary,432,208,224,48.10%,51.90%,11,2.50%,95,22.00%,227,205,0,52.50%,47.50%,0.00%,202,187,380,49.20% +105485,352,2326,State-funded primary,521,248,273,47.60%,52.40%,29,5.60%,94,18.00%,127,386,8,24.40%,74.10%,1.50%,279,261,478,54.60% +105486,352,2327,State-funded primary,415,217,198,52.30%,47.70%,15,3.60%,42,10.10%,326,88,1,78.60%,21.20%,0.20%,156,148,376,39.40% +105487,352,3003,State-funded primary,223,114,109,51.10%,48.90%,10,4.50%,37,16.60%,16,207,0,7.20%,92.80%,0.00%,10,11,203,5.40% +105488,352,3005,State-funded primary,468,221,247,47.20%,52.80%,16,3.40%,77,16.50%,226,242,0,48.30%,51.70%,0.00%,268,239,417,57.30% +105490,352,3011,State-funded primary,220,105,115,47.70%,52.30%,9,4.10%,31,14.10%,91,129,0,41.40%,58.60%,0.00%,138,125,196,63.80% +105491,352,3015,State-funded primary,478,227,251,47.50%,52.50%,14,2.90%,66,13.80%,299,179,0,62.60%,37.40%,0.00%,149,142,431,32.90% +105493,352,3022,State-funded primary,643,319,324,49.60%,50.40%,21,3.30%,104,16.20%,522,121,0,81.20%,18.80%,0.00%,289,278,580,47.90% +105495,352,3028,State-funded primary,458,215,243,46.90%,53.10%,12,2.60%,49,10.70%,364,94,0,79.50%,20.50%,0.00%,251,225,406,55.40% +105496,352,3034,State-funded primary,212,97,115,45.80%,54.20%,5,2.40%,45,21.20%,15,197,0,7.10%,92.90%,0.00%,121,117,195,60.00% +105498,352,3039,State-funded primary,338,163,175,48.20%,51.80%,8,2.40%,33,9.80%,88,250,0,26.00%,74.00%,0.00%,91,88,301,29.20% +105500,352,3041,State-funded primary,445,217,228,48.80%,51.20%,8,1.80%,80,18.00%,303,142,0,68.10%,31.90%,0.00%,128,116,400,29.00% +105501,352,3042,State-funded primary,234,127,107,54.30%,45.70%,2,0.90%,34,14.50%,90,144,0,38.50%,61.50%,0.00%,133,123,208,59.10% +105502,352,3043,State-funded primary,487,234,253,48.00%,52.00%,14,2.90%,75,15.40%,245,242,0,50.30%,49.70%,0.00%,197,181,414,43.70% +105503,352,3044,State-funded primary,459,230,229,50.10%,49.90%,8,1.70%,56,12.20%,328,123,8,71.50%,26.80%,1.70%,190,179,398,45.00% +105504,352,3045,State-funded primary,491,260,231,53.00%,47.00%,13,2.60%,72,14.70%,397,94,0,80.90%,19.10%,0.00%,205,199,439,45.30% +105505,352,3301,State-funded primary,222,108,114,48.60%,51.40%,7,3.20%,44,19.80%,81,141,0,36.50%,63.50%,0.00%,116,102,199,51.30% +105507,352,3310,State-funded primary,370,186,184,50.30%,49.70%,23,6.20%,78,21.10%,253,117,0,68.40%,31.60%,0.00%,130,133,354,37.60% +105508,352,3316,State-funded primary,229,127,102,55.50%,44.50%,5,2.20%,15,6.60%,111,118,0,48.50%,51.50%,0.00%,68,66,208,31.70% +105509,352,3325,State-funded primary,199,97,102,48.70%,51.30%,10,5.00%,13,6.50%,117,82,0,58.80%,41.20%,0.00%,64,67,199,33.70% +105514,352,3402,State-funded primary,424,205,219,48.30%,51.70%,7,1.70%,79,18.60%,118,306,0,27.80%,72.20%,0.00%,204,188,385,48.80% +105516,352,3408,State-funded primary,225,112,113,49.80%,50.20%,4,1.80%,24,10.70%,135,90,0,60.00%,40.00%,0.00%,74,67,195,34.40% +105519,352,3415,State-funded primary,246,131,115,53.30%,46.70%,5,2.00%,54,22.00%,72,172,2,29.30%,69.90%,0.80%,80,75,215,34.90% +105520,352,3418,State-funded primary,196,104,92,53.10%,46.90%,5,2.60%,17,8.70%,42,154,0,21.40%,78.60%,0.00%,112,105,177,59.30% +105521,352,3422,State-funded primary,413,202,211,48.90%,51.10%,15,3.60%,75,18.20%,252,161,0,61.00%,39.00%,0.00%,163,156,380,41.10% +105523,352,3429,State-funded primary,232,121,111,52.20%,47.80%,4,1.70%,35,15.10%,35,197,0,15.10%,84.90%,0.00%,128,113,202,55.90% +105524,352,3432,State-funded primary,423,220,203,52.00%,48.00%,11,2.60%,39,9.20%,47,376,0,11.10%,88.90%,0.00%,46,44,382,11.50% +105526,352,3439,State-funded primary,329,157,172,47.70%,52.30%,11,3.30%,18,5.50%,90,237,2,27.40%,72.00%,0.60%,152,145,303,47.90% +105527,352,3440,State-funded primary,238,115,123,48.30%,51.70%,7,2.90%,34,14.30%,80,158,0,33.60%,66.40%,0.00%,121,109,207,52.70% +105529,352,3445,State-funded primary,248,140,108,56.50%,43.50%,3,1.20%,23,9.30%,130,117,1,52.40%,47.20%,0.40%,69,74,210,35.20% +105530,352,3446,State-funded primary,230,114,116,49.60%,50.40%,11,4.80%,39,17.00%,66,164,0,28.70%,71.30%,0.00%,62,61,206,29.60% +105532,352,3452,State-funded primary,230,109,121,47.40%,52.60%,6,2.60%,15,6.50%,62,167,1,27.00%,72.60%,0.40%,125,117,201,58.20% +105533,352,3455,State-funded primary,342,164,178,48.00%,52.00%,4,1.20%,29,8.50%,38,302,2,11.10%,88.30%,0.60%,90,87,307,28.30% +105534,352,3457,State-funded primary,327,168,159,51.40%,48.60%,14,4.30%,78,23.90%,65,262,0,19.90%,80.10%,0.00%,64,70,298,23.50% +105535,352,3460,State-funded primary,196,101,95,51.50%,48.50%,7,3.60%,10,5.10%,67,128,1,34.20%,65.30%,0.50%,91,85,169,50.30% +105536,352,3464,State-funded primary,253,137,116,54.20%,45.80%,0,0.00%,31,12.30%,86,167,0,34.00%,66.00%,0.00%,61,54,221,24.40% +105537,352,3465,State-funded primary,253,128,125,50.60%,49.40%,5,2.00%,35,13.80%,61,192,0,24.10%,75.90%,0.00%,104,97,217,44.70% +105539,352,3469,State-funded primary,225,96,129,42.70%,57.30%,2,0.90%,31,13.80%,121,104,0,53.80%,46.20%,0.00%,120,112,204,54.90% +105540,352,3472,State-funded primary,246,115,131,46.70%,53.30%,14,5.70%,20,8.10%,89,157,0,36.20%,63.80%,0.00%,111,102,217,47.00% +105541,352,3473,State-funded primary,213,99,114,46.50%,53.50%,10,4.70%,20,9.40%,39,174,0,18.30%,81.70%,0.00%,112,110,203,54.20% +105543,352,3475,State-funded primary,215,109,106,50.70%,49.30%,6,2.80%,31,14.40%,93,122,0,43.30%,56.70%,0.00%,94,84,193,43.50% +105544,352,3482,State-funded primary,474,236,238,49.80%,50.20%,16,3.40%,94,19.80%,240,234,0,50.60%,49.40%,0.00%,200,193,422,45.70% +105545,352,3484,State-funded primary,227,125,102,55.10%,44.90%,3,1.30%,43,18.90%,58,169,0,25.60%,74.40%,0.00%,97,94,207,45.40% +105546,352,3489,State-funded primary,394,206,188,52.30%,47.70%,12,3.00%,47,11.90%,56,338,0,14.20%,85.80%,0.00%,47,47,348,13.50% +105547,352,3490,State-funded primary,212,94,118,44.30%,55.70%,5,2.40%,35,16.50%,64,148,0,30.20%,69.80%,0.00%,91,79,186,42.50% +105548,352,3491,State-funded primary,160,81,79,50.60%,49.40%,3,1.90%,32,20.00%,45,114,1,28.10%,71.30%,0.60%,106,106,160,66.30% +105550,352,3494,State-funded primary,243,118,125,48.60%,51.40%,6,2.50%,59,24.30%,147,93,3,60.50%,38.30%,1.20%,65,60,208,28.80% +105553,352,3500,State-funded primary,259,129,130,49.80%,50.20%,11,4.20%,55,21.20%,82,177,0,31.70%,68.30%,0.00%,115,114,226,50.40% +105554,352,3501,State-funded primary,462,226,236,48.90%,51.10%,20,4.30%,70,15.20%,98,364,0,21.20%,78.80%,0.00%,191,185,425,43.50% +105560,352,4271,State-funded secondary,1822,896,926,49.20%,50.80%,58,3.20%,280,15.40%,1573,231,18,86.30%,12.70%,1.00%,753,800,1773,45.10% +105574,352,4753,State-funded secondary,760,347,413,45.70%,54.30%,16,2.10%,124,16.30%,300,459,1,39.50%,60.40%,0.10%,349,405,760,53.30% +105576,352,4761,State-funded secondary,962,510,452,53.00%,47.00%,32,3.30%,86,8.90%,596,366,0,62.00%,38.00%,0.00%,339,398,962,41.40% +105581,352,4768,State-funded secondary,909,412,497,45.30%,54.70%,40,4.40%,95,10.50%,161,748,0,17.70%,82.30%,0.00%,338,366,909,40.30% +105585,352,6001,Independent school,268,117,151,43.70%,56.30%,0,0.00%,21,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105587,353,6017,Independent school,104,47,57,45.20%,54.80%,3,2.90%,19,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105588,352,6021,Independent school,330,186,144,56.40%,43.60%,4,1.20%,75,22.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105591,352,6029,Independent school,1659,0,1659,0.00%,100.00%,3,0.20%,194,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105592,352,6030,Independent school,974,974,0,100.00%,0.00%,0,0.00%,34,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105594,352,6032,Independent school,761,313,448,41.10%,58.90%,0,0.00%,116,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105595,352,6033,Independent school,719,719,0,100.00%,0.00%,0,0.00%,80,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105596,352,6037,Independent school,27,10,17,37.00%,63.00%,0,0.00%,3,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105598,352,6041,Independent school,176,96,80,54.50%,45.50%,0,0.00%,17,9.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105601,352,6044,Independent school,211,77,134,36.50%,63.50%,1,0.50%,27,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105606,352,7023,State-funded special school,187,59,128,31.60%,68.40%,187,100.00%,0,0.00%,80,107,0,42.80%,57.20%,0.00%,123,128,187,68.40% +105608,352,7029,State-funded special school,183,58,125,31.70%,68.30%,182,99.50%,1,0.50%,76,107,0,41.50%,58.50%,0.00%,120,124,183,67.80% +105613,352,7041,State-funded special school,164,51,113,31.10%,68.90%,164,100.00%,0,0.00%,103,61,0,62.80%,37.20%,0.00%,86,88,164,53.70% +105614,352,7042,State-funded special school,172,25,147,14.50%,85.50%,172,100.00%,0,0.00%,9,163,0,5.20%,94.80%,0.00%,117,152,172,88.40% +105616,352,7047,State-funded special school,72,13,59,18.10%,81.90%,72,100.00%,0,0.00%,38,34,0,52.80%,47.20%,0.00%,44,46,72,63.90% +105623,352,7056,State-funded special school,129,21,108,16.30%,83.70%,128,99.20%,1,0.80%,2,127,0,1.60%,98.40%,0.00%,84,119,129,92.20% +105626,353,2000,State-funded primary,353,177,176,50.10%,49.90%,11,3.10%,40,11.30%,298,55,0,84.40%,15.60%,0.00%,124,128,353,36.30% +105627,353,2002,State-funded primary,217,108,109,49.80%,50.20%,6,2.80%,34,15.70%,80,137,0,36.90%,63.10%,0.00%,144,149,200,74.50% +105638,353,2033,State-funded primary,324,160,164,49.40%,50.60%,4,1.20%,41,12.70%,45,279,0,13.90%,86.10%,0.00%,183,173,297,58.20% +105645,353,2047,State-funded primary,329,161,168,48.90%,51.10%,6,1.80%,57,17.30%,241,88,0,73.30%,26.70%,0.00%,67,70,263,26.60% +105648,353,2052,State-funded primary,658,336,322,51.10%,48.90%,9,1.40%,22,3.30%,108,550,0,16.40%,83.60%,0.00%,63,68,626,10.90% +105649,353,2054,State-funded primary,211,107,104,50.70%,49.30%,4,1.90%,52,24.60%,32,179,0,15.20%,84.80%,0.00%,115,116,190,61.10% +105652,353,2058,State-funded primary,219,109,110,49.80%,50.20%,10,4.60%,27,12.30%,27,192,0,12.30%,87.70%,0.00%,48,48,204,23.50% +105656,353,2062,State-funded primary,440,213,227,48.40%,51.60%,9,2.00%,52,11.80%,16,424,0,3.60%,96.40%,0.00%,70,74,404,18.30% +105658,353,2064,State-funded primary,209,104,105,49.80%,50.20%,8,3.80%,25,12.00%,14,195,0,6.70%,93.30%,0.00%,27,29,209,13.90% +105659,353,2065,State-funded primary,187,84,103,44.90%,55.10%,1,0.50%,50,26.70%,2,185,0,1.10%,98.90%,0.00%,55,60,187,32.10% +105663,353,2071,State-funded primary,241,136,105,56.40%,43.60%,3,1.20%,43,17.80%,12,229,0,5.00%,95.00%,0.00%,75,75,210,35.70% +105665,353,2075,State-funded primary,177,86,91,48.60%,51.40%,2,1.10%,15,8.50%,3,174,0,1.70%,98.30%,0.00%,13,15,177,8.50% +105666,353,2076,State-funded primary,104,43,61,41.30%,58.70%,0,0.00%,11,10.60%,1,103,0,1.00%,99.00%,0.00%,13,13,104,12.50% +105667,353,2077,State-funded primary,293,138,155,47.10%,52.90%,7,2.40%,19,6.50%,18,275,0,6.10%,93.90%,0.00%,34,34,256,13.30% +105668,353,2078,State-funded primary,180,87,93,48.30%,51.70%,1,0.60%,18,10.00%,56,124,0,31.10%,68.90%,0.00%,36,32,153,20.90% +105669,353,2079,State-funded primary,203,99,104,48.80%,51.20%,8,3.90%,15,7.40%,1,202,0,0.50%,99.50%,0.00%,25,27,203,13.30% +105670,353,2080,State-funded primary,298,157,141,52.70%,47.30%,6,2.00%,21,7.00%,94,204,0,31.50%,68.50%,0.00%,86,95,298,31.90% +105671,353,2085,State-funded primary,206,119,87,57.80%,42.20%,2,1.00%,19,9.20%,3,203,0,1.50%,98.50%,0.00%,19,20,206,9.70% +105676,353,2095,State-funded primary,398,192,206,48.20%,51.80%,15,3.80%,44,11.10%,283,115,0,71.10%,28.90%,0.00%,113,118,320,36.90% +105679,353,2098,State-funded primary,246,130,116,52.80%,47.20%,8,3.30%,44,17.90%,209,37,0,85.00%,15.00%,0.00%,67,68,219,31.10% +105680,353,2099,State-funded primary,479,247,232,51.60%,48.40%,15,3.10%,34,7.10%,472,7,0,98.50%,1.50%,0.00%,111,122,419,29.10% +105686,353,2109,State-funded primary,458,239,219,52.20%,47.80%,16,3.50%,66,14.40%,323,135,0,70.50%,29.50%,0.00%,152,162,412,39.30% +105688,353,3005,State-funded primary,130,60,70,46.20%,53.80%,1,0.80%,11,8.50%,4,126,0,3.10%,96.90%,0.00%,24,25,130,19.20% +105691,353,3009,State-funded primary,225,106,119,47.10%,52.90%,6,2.70%,14,6.20%,2,223,0,0.90%,99.10%,0.00%,14,15,198,7.60% +105692,353,3010,State-funded primary,203,97,106,47.80%,52.20%,1,0.50%,5,2.50%,5,198,0,2.50%,97.50%,0.00%,25,25,203,12.30% +105693,353,3011,State-funded primary,100,52,48,52.00%,48.00%,3,3.00%,13,13.00%,0,100,0,0.00%,100.00%,0.00%,18,18,100,18.00% +105694,353,3012,State-funded primary,301,149,152,49.50%,50.50%,3,1.00%,17,5.60%,17,283,1,5.60%,94.00%,0.30%,66,76,276,27.50% +105695,353,3303,State-funded primary,229,107,122,46.70%,53.30%,5,2.20%,23,10.00%,18,211,0,7.90%,92.10%,0.00%,113,115,206,55.80% +105698,353,3315,State-funded primary,486,244,242,50.20%,49.80%,17,3.50%,65,13.40%,439,43,4,90.30%,8.80%,0.80%,174,183,414,44.20% +105699,353,3325,State-funded primary,213,114,99,53.50%,46.50%,6,2.80%,54,25.40%,73,140,0,34.30%,65.70%,0.00%,122,121,198,61.10% +105700,353,3326,State-funded primary,103,46,57,44.70%,55.30%,4,3.90%,18,17.50%,5,98,0,4.90%,95.10%,0.00%,46,49,103,47.60% +105701,353,3328,State-funded primary,228,108,120,47.40%,52.60%,3,1.30%,39,17.10%,88,140,0,38.60%,61.40%,0.00%,94,95,205,46.30% +105702,353,3329,State-funded primary,393,193,200,49.10%,50.90%,9,2.30%,57,14.50%,276,117,0,70.20%,29.80%,0.00%,143,149,356,41.90% +105703,353,3330,State-funded primary,243,120,123,49.40%,50.60%,9,3.70%,47,19.30%,16,227,0,6.60%,93.40%,0.00%,124,126,217,58.10% +105705,353,3333,State-funded primary,346,177,169,51.20%,48.80%,11,3.20%,91,26.30%,109,237,0,31.50%,68.50%,0.00%,142,144,310,46.50% +105707,353,3341,State-funded primary,280,137,143,48.90%,51.10%,4,1.40%,49,17.50%,101,179,0,36.10%,63.90%,0.00%,68,77,280,27.50% +105708,353,3342,State-funded primary,198,98,100,49.50%,50.50%,8,4.00%,42,21.20%,55,143,0,27.80%,72.20%,0.00%,94,98,198,49.50% +105709,353,3344,State-funded primary,401,208,193,51.90%,48.10%,8,2.00%,52,13.00%,21,380,0,5.20%,94.80%,0.00%,69,78,401,19.50% +105710,353,3345,State-funded primary,191,102,89,53.40%,46.60%,5,2.60%,15,7.90%,11,180,0,5.80%,94.20%,0.00%,79,79,191,41.40% +105711,353,3346,State-funded primary,206,99,107,48.10%,51.90%,8,3.90%,30,14.60%,3,203,0,1.50%,98.50%,0.00%,16,16,206,7.80% +105714,353,3351,State-funded primary,201,112,89,55.70%,44.30%,7,3.50%,23,11.40%,36,165,0,17.90%,82.10%,0.00%,73,75,201,37.30% +105715,353,3353,State-funded primary,286,139,147,48.60%,51.40%,7,2.40%,56,19.60%,47,239,0,16.40%,83.60%,0.00%,85,88,268,32.80% +105718,353,3358,State-funded primary,332,164,168,49.40%,50.60%,6,1.80%,32,9.60%,87,245,0,26.20%,73.80%,0.00%,84,81,307,26.40% +105719,353,3359,State-funded primary,232,118,114,50.90%,49.10%,3,1.30%,31,13.40%,14,218,0,6.00%,94.00%,0.00%,21,20,208,9.60% +105720,353,3362,State-funded primary,266,149,117,56.00%,44.00%,8,3.00%,34,12.80%,23,243,0,8.60%,91.40%,0.00%,48,50,244,20.50% +105721,353,3363,State-funded primary,362,177,185,48.90%,51.10%,4,1.10%,41,11.30%,80,282,0,22.10%,77.90%,0.00%,97,97,327,29.70% +105722,353,3364,State-funded primary,340,172,168,50.60%,49.40%,9,2.60%,63,18.50%,48,292,0,14.10%,85.90%,0.00%,97,98,310,31.60% +105723,353,3366,State-funded primary,195,102,93,52.30%,47.70%,5,2.60%,13,6.70%,0,195,0,0.00%,100.00%,0.00%,10,11,195,5.60% +105725,353,3401,State-funded primary,232,112,120,48.30%,51.70%,10,4.30%,20,8.60%,83,149,0,35.80%,64.20%,0.00%,105,100,208,48.10% +105726,353,3402,State-funded primary,213,99,114,46.50%,53.50%,4,1.90%,23,10.80%,166,47,0,77.90%,22.10%,0.00%,91,91,194,46.90% +105727,353,3403,State-funded primary,458,225,233,49.10%,50.90%,10,2.20%,32,7.00%,32,426,0,7.00%,93.00%,0.00%,92,98,411,23.80% +105736,353,4026,State-funded secondary,1404,695,709,49.50%,50.50%,41,2.90%,193,13.70%,29,1374,1,2.10%,97.90%,0.10%,313,346,1404,24.60% +105738,353,4028,State-funded secondary,1496,721,775,48.20%,51.80%,35,2.30%,114,7.60%,787,709,0,52.60%,47.40%,0.00%,471,517,1496,34.60% +105745,353,6012,Independent school,768,363,405,47.30%,52.70%,5,0.70%,19,2.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105747,353,6014,Independent school,52,27,25,51.90%,48.10%,0,0.00%,12,23.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105748,353,6015,Independent school,15,3,12,20.00%,80.00%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105757,354,1001,State-funded nursery,86,39,47,45.30%,54.70%,3,3.50%,8,9.30%,48,38,0,55.80%,44.20%,0.00%,0,0,0,0.00% +105760,354,1005,State-funded nursery,59,28,31,47.50%,52.50%,1,1.70%,3,5.10%,2,57,0,3.40%,96.60%,0.00%,0,0,0,0.00% +105764,354,2000,State-funded primary,222,116,106,52.30%,47.70%,5,2.30%,18,8.10%,152,70,0,68.50%,31.50%,0.00%,77,78,202,38.60% +105765,354,2002,State-funded primary,363,180,183,49.60%,50.40%,13,3.60%,63,17.40%,98,265,0,27.00%,73.00%,0.00%,116,124,329,37.70% +105766,354,2003,State-funded primary,443,214,229,48.30%,51.70%,26,5.90%,39,8.80%,94,349,0,21.20%,78.80%,0.00%,87,89,393,22.60% +105768,354,2006,State-funded primary,461,230,231,49.90%,50.10%,17,3.70%,20,4.30%,278,183,0,60.30%,39.70%,0.00%,134,140,422,33.20% +105770,354,2009,State-funded primary,704,344,360,48.90%,51.10%,36,5.10%,61,8.70%,603,101,0,85.70%,14.30%,0.00%,216,223,593,37.60% +105773,354,2015,State-funded primary,360,160,200,44.40%,55.60%,11,3.10%,59,16.40%,114,246,0,31.70%,68.30%,0.00%,180,189,335,56.40% +105774,354,2018,State-funded primary,403,180,223,44.70%,55.30%,11,2.70%,68,16.90%,82,321,0,20.30%,79.70%,0.00%,72,71,385,18.40% +105776,354,2021,State-funded primary,446,222,224,49.80%,50.20%,6,1.30%,36,8.10%,260,185,1,58.30%,41.50%,0.20%,134,137,412,33.30% +105777,354,2024,State-funded primary,513,243,270,47.40%,52.60%,17,3.30%,89,17.30%,272,240,1,53.00%,46.80%,0.20%,186,207,513,40.40% +105778,354,2025,State-funded primary,458,211,247,46.10%,53.90%,27,5.90%,59,12.90%,265,193,0,57.90%,42.10%,0.00%,165,165,416,39.70% +105779,354,2027,State-funded primary,233,111,122,47.60%,52.40%,0,0.00%,31,13.30%,57,176,0,24.50%,75.50%,0.00%,25,25,207,12.10% +105780,354,2028,State-funded primary,406,188,218,46.30%,53.70%,11,2.70%,44,10.80%,228,178,0,56.20%,43.80%,0.00%,141,155,373,41.60% +105781,354,2029,State-funded primary,427,208,219,48.70%,51.30%,10,2.30%,18,4.20%,36,391,0,8.40%,91.60%,0.00%,29,32,396,8.10% +105783,354,2032,State-funded primary,240,119,121,49.60%,50.40%,4,1.70%,10,4.20%,224,16,0,93.30%,6.70%,0.00%,64,66,205,32.20% +105785,354,2036,State-funded primary,363,174,189,47.90%,52.10%,7,1.90%,26,7.20%,8,355,0,2.20%,97.80%,0.00%,72,74,337,22.00% +105786,354,2039,State-funded primary,483,254,229,52.60%,47.40%,16,3.30%,35,7.20%,44,439,0,9.10%,90.90%,0.00%,90,92,427,21.50% +105787,354,2041,State-funded primary,428,211,217,49.30%,50.70%,24,5.60%,64,15.00%,109,319,0,25.50%,74.50%,0.00%,199,192,401,47.90% +105789,354,2044,State-funded primary,312,145,167,46.50%,53.50%,18,5.80%,53,17.00%,3,309,0,1.00%,99.00%,0.00%,87,87,283,30.70% +105791,354,2047,State-funded primary,431,209,222,48.50%,51.50%,6,1.40%,69,16.00%,37,394,0,8.60%,91.40%,0.00%,141,143,399,35.80% +105792,354,2048,State-funded primary,352,169,183,48.00%,52.00%,15,4.30%,51,14.50%,48,304,0,13.60%,86.40%,0.00%,127,138,334,41.30% +105796,354,2061,State-funded primary,367,173,194,47.10%,52.90%,12,3.30%,72,19.60%,70,297,0,19.10%,80.90%,0.00%,206,209,344,60.80% +105797,354,2062,State-funded primary,168,86,82,51.20%,48.80%,3,1.80%,18,10.70%,8,160,0,4.80%,95.20%,0.00%,40,44,168,26.20% +105798,354,2063,State-funded primary,421,217,204,51.50%,48.50%,9,2.10%,53,12.60%,9,412,0,2.10%,97.90%,0.00%,81,93,421,22.10% +105799,354,2064,State-funded primary,216,97,119,44.90%,55.10%,13,6.00%,45,20.80%,20,196,0,9.30%,90.70%,0.00%,68,72,216,33.30% +105800,354,2065,State-funded primary,321,160,161,49.80%,50.20%,11,3.40%,47,14.60%,242,79,0,75.40%,24.60%,0.00%,95,100,294,34.00% +105802,354,3002,State-funded primary,337,148,189,43.90%,56.10%,11,3.30%,42,12.50%,58,279,0,17.20%,82.80%,0.00%,95,103,337,30.60% +105803,354,3003,State-funded primary,462,228,234,49.40%,50.60%,7,1.50%,71,15.40%,259,203,0,56.10%,43.90%,0.00%,183,185,419,44.20% +105804,354,3004,State-funded primary,208,103,105,49.50%,50.50%,7,3.40%,34,16.30%,23,185,0,11.10%,88.90%,0.00%,96,97,208,46.60% +105805,354,3006,State-funded primary,381,194,187,50.90%,49.10%,16,4.20%,72,18.90%,39,342,0,10.20%,89.80%,0.00%,113,126,381,33.10% +105806,354,3007,State-funded primary,101,59,42,58.40%,41.60%,3,3.00%,15,14.90%,0,101,0,0.00%,100.00%,0.00%,9,9,101,8.90% +105808,354,3011,State-funded primary,222,111,111,50.00%,50.00%,1,0.50%,28,12.60%,26,196,0,11.70%,88.30%,0.00%,58,63,198,31.80% +105810,354,3013,State-funded primary,120,53,67,44.20%,55.80%,1,0.80%,15,12.50%,2,118,0,1.70%,98.30%,0.00%,41,42,120,35.00% +105811,354,3014,State-funded primary,237,127,110,53.60%,46.40%,3,1.30%,48,20.30%,10,227,0,4.20%,95.80%,0.00%,37,37,210,17.60% +105812,354,3016,State-funded primary,196,92,104,46.90%,53.10%,3,1.50%,35,17.90%,59,137,0,30.10%,69.90%,0.00%,79,84,196,42.90% +105813,354,3305,State-funded primary,235,115,120,48.90%,51.10%,6,2.60%,27,11.50%,14,221,0,6.00%,94.00%,0.00%,11,13,206,6.30% +105814,354,3306,State-funded primary,215,107,108,49.80%,50.20%,7,3.30%,17,7.90%,2,213,0,0.90%,99.10%,0.00%,25,25,215,11.60% +105815,354,3307,State-funded primary,203,98,105,48.30%,51.70%,11,5.40%,34,16.70%,8,195,0,3.90%,96.10%,0.00%,93,97,203,47.80% +105816,354,3310,State-funded primary,219,118,101,53.90%,46.10%,7,3.20%,24,11.00%,14,205,0,6.40%,93.60%,0.00%,41,41,203,20.20% +105817,354,3311,State-funded primary,230,122,108,53.00%,47.00%,4,1.70%,29,12.60%,17,213,0,7.40%,92.60%,0.00%,38,39,230,17.00% +105818,354,3312,State-funded primary,455,240,215,52.70%,47.30%,7,1.50%,87,19.10%,141,314,0,31.00%,69.00%,0.00%,125,126,420,30.00% +105820,354,3319,State-funded primary,339,157,182,46.30%,53.70%,9,2.70%,31,9.10%,19,320,0,5.60%,94.40%,0.00%,37,39,312,12.50% +105821,354,3321,State-funded primary,419,200,219,47.70%,52.30%,6,1.40%,60,14.30%,50,369,0,11.90%,88.10%,0.00%,142,145,400,36.30% +105822,354,3322,State-funded primary,213,106,107,49.80%,50.20%,4,1.90%,18,8.50%,5,208,0,2.30%,97.70%,0.00%,12,14,213,6.60% +105823,354,3323,State-funded primary,207,105,102,50.70%,49.30%,3,1.40%,30,14.50%,7,200,0,3.40%,96.60%,0.00%,56,64,207,30.90% +105824,354,3325,State-funded primary,145,72,73,49.70%,50.30%,6,4.10%,25,17.20%,3,142,0,2.10%,97.90%,0.00%,34,35,145,24.10% +105825,354,3500,State-funded primary,187,84,103,44.90%,55.10%,6,3.20%,26,13.90%,35,152,0,18.70%,81.30%,0.00%,54,59,187,31.60% +105826,354,3501,State-funded primary,217,110,107,50.70%,49.30%,6,2.80%,23,10.60%,145,72,0,66.80%,33.20%,0.00%,80,82,197,41.60% +105828,354,3505,State-funded primary,230,122,108,53.00%,47.00%,11,4.80%,35,15.20%,59,171,0,25.70%,74.30%,0.00%,65,61,208,29.30% +105829,354,3506,State-funded primary,228,120,108,52.60%,47.40%,4,1.80%,28,12.30%,70,158,0,30.70%,69.30%,0.00%,80,82,202,40.60% +105830,354,3507,State-funded primary,232,104,128,44.80%,55.20%,5,2.20%,37,15.90%,65,167,0,28.00%,72.00%,0.00%,81,92,209,44.00% +105831,354,3508,State-funded primary,375,184,191,49.10%,50.90%,4,1.10%,61,16.30%,41,334,0,10.90%,89.10%,0.00%,73,73,375,19.50% +105833,354,3510,State-funded primary,403,202,201,50.10%,49.90%,7,1.70%,26,6.50%,47,356,0,11.70%,88.30%,0.00%,95,99,403,24.60% +105837,354,4086,State-funded secondary,1352,660,692,48.80%,51.20%,30,2.20%,177,13.10%,810,537,5,59.90%,39.70%,0.40%,504,538,1352,39.80% +105844,354,4611,State-funded secondary,1204,608,596,50.50%,49.50%,45,3.70%,189,15.70%,121,1081,2,10.00%,89.80%,0.20%,241,281,1053,26.70% +105845,354,4612,State-funded secondary,1118,555,563,49.60%,50.40%,24,2.10%,206,18.40%,257,855,6,23.00%,76.50%,0.50%,401,475,1118,42.50% +105846,354,5200,State-funded primary,317,164,153,51.70%,48.30%,8,2.50%,47,14.80%,6,311,0,1.90%,98.10%,0.00%,44,46,317,14.50% +105847,354,5201,State-funded primary,435,212,223,48.70%,51.30%,7,1.60%,91,20.90%,8,427,0,1.80%,98.20%,0.00%,39,45,396,11.40% +105849,354,5203,State-funded primary,206,102,104,49.50%,50.50%,8,3.90%,22,10.70%,26,180,0,12.60%,87.40%,0.00%,49,53,206,25.70% +105850,354,5204,State-funded primary,208,110,98,52.90%,47.10%,7,3.40%,21,10.10%,10,198,0,4.80%,95.20%,0.00%,38,40,208,19.20% +105855,354,6001,Independent school,185,81,104,43.80%,56.20%,8,4.30%,21,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105861,354,7006,State-funded special school,92,16,76,17.40%,82.60%,86,93.50%,6,6.50%,3,89,0,3.30%,96.70%,0.00%,63,72,92,78.30% +105884,355,2007,State-funded primary,351,185,166,52.70%,47.30%,6,1.70%,83,23.60%,46,300,5,13.10%,85.50%,1.40%,89,93,351,26.50% +105886,355,2011,State-funded primary,230,114,116,49.60%,50.40%,4,1.70%,48,20.90%,75,155,0,32.60%,67.40%,0.00%,125,119,206,57.80% +105889,355,2026,State-funded primary,229,120,109,52.40%,47.60%,6,2.60%,63,27.50%,83,146,0,36.20%,63.80%,0.00%,96,87,205,42.40% +105893,355,2036,State-funded primary,230,106,124,46.10%,53.90%,18,7.80%,37,16.10%,113,114,3,49.10%,49.60%,1.30%,106,101,207,48.80% +105894,355,2037,State-funded primary,307,146,161,47.60%,52.40%,1,0.30%,54,17.60%,22,285,0,7.20%,92.80%,0.00%,54,52,263,19.80% +105896,355,2040,State-funded primary,391,198,193,50.60%,49.40%,12,3.10%,61,15.60%,232,158,1,59.30%,40.40%,0.30%,146,138,361,38.20% +105897,355,2051,State-funded primary,390,186,204,47.70%,52.30%,12,3.10%,74,19.00%,73,311,6,18.70%,79.70%,1.50%,212,198,361,54.80% +105898,355,2052,State-funded primary,438,210,228,47.90%,52.10%,12,2.70%,60,13.70%,31,407,0,7.10%,92.90%,0.00%,102,97,393,24.70% +105902,355,2057,State-funded primary,342,158,184,46.20%,53.80%,4,1.20%,43,12.60%,92,250,0,26.90%,73.10%,0.00%,98,93,303,30.70% +105903,355,2059,State-funded primary,432,215,217,49.80%,50.20%,18,4.20%,64,14.80%,186,245,1,43.10%,56.70%,0.20%,172,170,402,42.30% +105904,355,2061,State-funded primary,455,231,224,50.80%,49.20%,14,3.10%,48,10.50%,30,425,0,6.60%,93.40%,0.00%,57,54,426,12.70% +105905,355,2062,State-funded primary,270,142,128,52.60%,47.40%,5,1.90%,56,20.70%,39,228,3,14.40%,84.40%,1.10%,149,142,252,56.30% +105906,355,2063,State-funded primary,253,126,127,49.80%,50.20%,17,6.70%,51,20.20%,34,218,1,13.40%,86.20%,0.40%,123,118,227,52.00% +105907,355,2065,State-funded primary,300,150,150,50.00%,50.00%,10,3.30%,71,23.70%,21,269,10,7.00%,89.70%,3.30%,112,105,275,38.20% +105910,355,2070,State-funded primary,629,294,335,46.70%,53.30%,21,3.30%,99,15.70%,80,549,0,12.70%,87.30%,0.00%,169,158,569,27.80% +105911,355,2072,State-funded primary,431,194,237,45.00%,55.00%,20,4.60%,83,19.30%,40,390,1,9.30%,90.50%,0.20%,102,104,385,27.00% +105912,355,2073,State-funded primary,441,234,207,53.10%,46.90%,8,1.80%,115,26.10%,103,335,3,23.40%,76.00%,0.70%,222,223,415,53.70% +105913,355,2074,State-funded primary,438,221,217,50.50%,49.50%,9,2.10%,119,27.20%,74,364,0,16.90%,83.10%,0.00%,261,236,394,59.90% +105914,355,2075,State-funded primary,229,119,110,52.00%,48.00%,7,3.10%,78,34.10%,50,177,2,21.80%,77.30%,0.90%,134,128,205,62.40% +105915,355,2076,State-funded primary,127,45,82,35.40%,64.60%,19,15.00%,27,21.30%,22,105,0,17.30%,82.70%,0.00%,79,71,115,61.70% +105917,355,2081,State-funded primary,182,90,92,49.50%,50.50%,6,3.30%,38,20.90%,15,165,2,8.20%,90.70%,1.10%,87,84,171,49.10% +105918,355,2082,State-funded primary,253,127,126,50.20%,49.80%,9,3.60%,21,8.30%,12,241,0,4.70%,95.30%,0.00%,16,17,223,7.60% +105922,355,2088,State-funded primary,225,107,118,47.60%,52.40%,2,0.90%,31,13.80%,30,195,0,13.30%,86.70%,0.00%,97,87,204,42.60% +105924,355,2091,State-funded primary,405,191,214,47.20%,52.80%,8,2.00%,81,20.00%,127,278,0,31.40%,68.60%,0.00%,101,93,375,24.80% +105925,355,2092,State-funded primary,351,178,173,50.70%,49.30%,2,0.60%,79,22.50%,78,272,1,22.20%,77.50%,0.30%,168,159,329,48.30% +105928,355,3006,State-funded primary,210,102,108,48.60%,51.40%,2,1.00%,28,13.30%,83,127,0,39.50%,60.50%,0.00%,73,76,197,38.60% +105929,355,3008,State-funded primary,395,191,204,48.40%,51.60%,9,2.30%,72,18.20%,64,329,2,16.20%,83.30%,0.50%,79,78,369,21.10% +105930,355,3017,State-funded primary,437,211,226,48.30%,51.70%,15,3.40%,79,18.10%,127,306,4,29.10%,70.00%,0.90%,173,184,411,44.80% +105932,355,3025,State-funded primary,231,112,119,48.50%,51.50%,6,2.60%,38,16.50%,65,166,0,28.10%,71.90%,0.00%,151,137,206,66.50% +105933,355,3030,State-funded primary,471,230,241,48.80%,51.20%,4,0.80%,39,8.30%,37,434,0,7.90%,92.10%,0.00%,31,31,415,7.50% +105934,355,3031,State-funded primary,228,101,127,44.30%,55.70%,4,1.80%,32,14.00%,133,95,0,58.30%,41.70%,0.00%,90,77,205,37.60% +105935,355,3033,State-funded primary,225,106,119,47.10%,52.90%,6,2.70%,34,15.10%,37,188,0,16.40%,83.60%,0.00%,92,82,199,41.20% +105936,355,3034,State-funded primary,225,120,105,53.30%,46.70%,3,1.30%,20,8.90%,6,217,2,2.70%,96.40%,0.90%,80,70,199,35.20% +105937,355,3037,State-funded primary,350,158,192,45.10%,54.90%,4,1.10%,74,21.10%,71,276,3,20.30%,78.90%,0.90%,153,156,325,48.00% +105938,355,3039,State-funded primary,236,120,116,50.80%,49.20%,7,3.00%,61,25.80%,29,207,0,12.30%,87.70%,0.00%,74,68,206,33.00% +105939,355,3040,State-funded primary,235,124,111,52.80%,47.20%,14,6.00%,37,15.70%,6,228,1,2.60%,97.00%,0.40%,47,49,207,23.70% +105940,355,3041,State-funded primary,232,124,108,53.40%,46.60%,2,0.90%,25,10.80%,15,217,0,6.50%,93.50%,0.00%,53,51,206,24.80% +105941,355,3042,State-funded primary,314,159,155,50.60%,49.40%,4,1.30%,95,30.30%,32,278,4,10.20%,88.50%,1.30%,193,173,276,62.70% +105942,355,3043,State-funded primary,210,91,119,43.30%,56.70%,5,2.40%,39,18.60%,16,194,0,7.60%,92.40%,0.00%,42,41,185,22.20% +105944,355,3317,State-funded primary,233,111,122,47.60%,52.40%,18,7.70%,34,14.60%,135,98,0,57.90%,42.10%,0.00%,73,72,209,34.40% +105945,355,3504,State-funded primary,230,115,115,50.00%,50.00%,4,1.70%,26,11.30%,9,220,1,3.90%,95.70%,0.40%,38,35,204,17.20% +105946,355,3506,State-funded primary,427,217,210,50.80%,49.20%,6,1.40%,89,20.80%,53,370,4,12.40%,86.70%,0.90%,154,146,391,37.30% +105948,355,3511,State-funded primary,226,128,98,56.60%,43.40%,4,1.80%,50,22.10%,28,198,0,12.40%,87.60%,0.00%,74,64,197,32.50% +105949,355,3512,State-funded primary,433,216,217,49.90%,50.10%,4,0.90%,54,12.50%,13,420,0,3.00%,97.00%,0.00%,29,29,396,7.30% +105950,355,3513,State-funded primary,239,113,126,47.30%,52.70%,2,0.80%,33,13.80%,19,219,1,7.90%,91.60%,0.40%,37,36,210,17.10% +105951,355,3514,State-funded primary,241,123,118,51.00%,49.00%,3,1.20%,36,14.90%,17,224,0,7.10%,92.90%,0.00%,26,26,214,12.10% +105952,355,3515,State-funded primary,333,170,163,51.10%,48.90%,3,0.90%,43,12.90%,105,228,0,31.50%,68.50%,0.00%,61,61,309,19.70% +105953,355,3516,State-funded primary,239,115,124,48.10%,51.90%,7,2.90%,38,15.90%,34,204,1,14.20%,85.40%,0.40%,21,22,210,10.50% +105954,355,3518,State-funded primary,244,123,121,50.40%,49.60%,5,2.00%,35,14.30%,41,203,0,16.80%,83.20%,0.00%,33,30,214,14.00% +105955,355,3519,State-funded primary,225,120,105,53.30%,46.70%,0,0.00%,51,22.70%,25,200,0,11.10%,88.90%,0.00%,44,41,205,20.00% +105956,355,3520,State-funded primary,232,133,99,57.30%,42.70%,2,0.90%,36,15.50%,57,175,0,24.60%,75.40%,0.00%,62,55,205,26.80% +105957,355,3521,State-funded primary,233,110,123,47.20%,52.80%,3,1.30%,41,17.60%,66,167,0,28.30%,71.70%,0.00%,45,43,207,20.80% +105961,355,3525,State-funded primary,218,95,123,43.60%,56.40%,7,3.20%,43,19.70%,32,186,0,14.70%,85.30%,0.00%,89,87,199,43.70% +105962,355,3602,State-funded primary,230,116,114,50.40%,49.60%,3,1.30%,53,23.00%,93,136,1,40.40%,59.10%,0.40%,118,108,206,52.40% +105963,355,3609,State-funded primary,231,108,123,46.80%,53.20%,4,1.70%,49,21.20%,95,136,0,41.10%,58.90%,0.00%,131,121,206,58.70% +105964,355,3612,State-funded primary,216,108,108,50.00%,50.00%,4,1.90%,37,17.10%,112,104,0,51.90%,48.10%,0.00%,60,58,197,29.40% +105965,355,3615,State-funded primary,224,110,114,49.10%,50.90%,0,0.00%,47,21.00%,107,113,4,47.80%,50.40%,1.80%,85,77,198,38.90% +105966,355,3618,State-funded primary,414,188,226,45.40%,54.60%,3,0.70%,84,20.30%,55,359,0,13.30%,86.70%,0.00%,32,33,384,8.60% +105968,355,3622,State-funded primary,361,189,172,52.40%,47.60%,1,0.30%,51,14.10%,137,224,0,38.00%,62.00%,0.00%,49,46,331,13.90% +105970,355,3625,State-funded primary,504,231,273,45.80%,54.20%,21,4.20%,66,13.10%,162,341,1,32.10%,67.70%,0.20%,218,193,443,43.60% +105986,355,4616,State-funded secondary,936,477,459,51.00%,49.00%,28,3.00%,139,14.90%,149,787,0,15.90%,84.10%,0.00%,159,219,936,23.40% +105989,355,5400,State-funded secondary,1082,497,585,45.90%,54.10%,15,1.40%,184,17.00%,214,868,0,19.80%,80.20%,0.00%,238,278,1082,25.70% +105991,355,6004,Independent school,146,78,68,53.40%,46.60%,0,0.00%,8,5.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105992,355,6005,Independent school,478,217,261,45.40%,54.60%,0,0.00%,89,18.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105993,355,6007,Independent school,356,0,356,0.00%,100.00%,0,0.00%,39,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105996,355,6011,Independent school,649,649,0,100.00%,0.00%,9,1.40%,64,9.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105997,351,6012,Independent school,56,29,27,51.80%,48.20%,1,1.80%,2,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +105999,355,6020,Independent school,68,0,68,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106001,355,6023,Independent school,114,54,60,47.40%,52.60%,3,2.60%,30,26.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106002,355,6024,Independent school,503,0,503,0.00%,100.00%,3,0.60%,82,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106003,355,6027,Independent school,244,244,0,100.00%,0.00%,6,2.50%,6,2.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106004,355,6028,Independent school,90,80,10,88.90%,11.10%,1,1.10%,5,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106015,356,1002,State-funded nursery,103,40,63,38.80%,61.20%,7,6.80%,32,31.10%,12,91,0,11.70%,88.30%,0.00%,29,0,0,0.00% +106016,356,1003,State-funded nursery,60,25,35,41.70%,58.30%,0,0.00%,13,21.70%,16,44,0,26.70%,73.30%,0.00%,19,0,0,0.00% +106018,356,1005,State-funded nursery,138,59,79,42.80%,57.20%,0,0.00%,10,7.20%,12,125,1,8.70%,90.60%,0.70%,13,0,0,0.00% +106021,356,1008,State-funded nursery,79,39,40,49.40%,50.60%,0,0.00%,11,13.90%,11,65,3,13.90%,82.30%,3.80%,2,0,0,0.00% +106022,356,1100,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +106023,356,1101,State-funded AP school,13,13,0,100.00%,0.00%,4,30.80%,6,46.20%,1,12,0,7.70%,92.30%,0.00%,8,2,5,40.00% +106024,356,2000,State-funded primary,331,168,163,50.80%,49.20%,23,6.90%,68,20.50%,39,292,0,11.80%,88.20%,0.00%,179,176,304,57.90% +106027,356,2005,State-funded primary,304,161,143,53.00%,47.00%,6,2.00%,17,5.60%,11,293,0,3.60%,96.40%,0.00%,41,41,266,15.40% +106028,356,2006,State-funded primary,353,167,186,47.30%,52.70%,10,2.80%,45,12.70%,5,348,0,1.40%,98.60%,0.00%,69,72,353,20.40% +106029,356,2007,State-funded primary,210,105,105,50.00%,50.00%,6,2.90%,40,19.00%,61,149,0,29.00%,71.00%,0.00%,14,15,210,7.10% +106032,356,2012,State-funded primary,214,100,114,46.70%,53.30%,6,2.80%,29,13.60%,31,183,0,14.50%,85.50%,0.00%,138,133,195,68.20% +106034,356,2015,State-funded primary,506,256,250,50.60%,49.40%,13,2.60%,83,16.40%,46,460,0,9.10%,90.90%,0.00%,110,109,477,22.90% +106036,356,2017,State-funded primary,178,90,88,50.60%,49.40%,15,8.40%,14,7.90%,2,176,0,1.10%,98.90%,0.00%,19,19,178,10.70% +106038,356,2021,State-funded primary,263,134,129,51.00%,49.00%,5,1.90%,24,9.10%,59,204,0,22.40%,77.60%,0.00%,45,42,236,17.80% +106043,356,2027,State-funded primary,360,167,193,46.40%,53.60%,16,4.40%,55,15.30%,40,320,0,11.10%,88.90%,0.00%,146,131,301,43.50% +106045,356,2030,State-funded primary,418,204,214,48.80%,51.20%,16,3.80%,48,11.50%,123,295,0,29.40%,70.60%,0.00%,56,59,382,15.40% +106046,356,2032,State-funded primary,244,126,118,51.60%,48.40%,4,1.60%,37,15.20%,5,239,0,2.00%,98.00%,0.00%,36,31,213,14.60% +106048,356,2037,State-funded primary,275,120,155,43.60%,56.40%,4,1.50%,27,9.80%,35,240,0,12.70%,87.30%,0.00%,18,17,235,7.20% +106049,356,2038,State-funded primary,312,150,162,48.10%,51.90%,8,2.60%,34,10.90%,26,286,0,8.30%,91.70%,0.00%,37,39,312,12.50% +106050,356,2039,State-funded primary,338,165,173,48.80%,51.20%,12,3.60%,27,8.00%,3,335,0,0.90%,99.10%,0.00%,26,25,308,8.10% +106051,356,2044,State-funded primary,174,87,87,50.00%,50.00%,0,0.00%,23,13.20%,9,165,0,5.20%,94.80%,0.00%,16,17,159,10.70% +106052,356,2046,State-funded primary,257,120,137,46.70%,53.30%,2,0.80%,11,4.30%,49,207,1,19.10%,80.50%,0.40%,6,6,257,2.30% +106054,356,2048,State-funded primary,165,71,94,43.00%,57.00%,11,6.70%,23,13.90%,47,118,0,28.50%,71.50%,0.00%,74,72,151,47.70% +106055,356,2049,State-funded primary,239,130,109,54.40%,45.60%,4,1.70%,22,9.20%,62,177,0,25.90%,74.10%,0.00%,7,7,208,3.40% +106056,356,2052,State-funded primary,158,80,78,50.60%,49.40%,11,7.00%,63,39.90%,33,125,0,20.90%,79.10%,0.00%,88,88,158,55.70% +106057,356,2053,State-funded primary,347,158,189,45.50%,54.50%,6,1.70%,42,12.10%,6,341,0,1.70%,98.30%,0.00%,14,15,347,4.30% +106059,356,2058,State-funded primary,217,108,109,49.80%,50.20%,3,1.40%,22,10.10%,107,110,0,49.30%,50.70%,0.00%,54,54,193,28.00% +106062,356,2063,State-funded primary,275,144,131,52.40%,47.60%,4,1.50%,50,18.20%,27,248,0,9.80%,90.20%,0.00%,30,24,210,11.40% +106063,356,2064,State-funded primary,341,151,190,44.30%,55.70%,5,1.50%,36,10.60%,39,302,0,11.40%,88.60%,0.00%,46,51,341,15.00% +106064,356,2066,State-funded primary,452,220,232,48.70%,51.30%,5,1.10%,46,10.20%,12,440,0,2.70%,97.30%,0.00%,18,20,417,4.80% +106065,356,2067,State-funded primary,413,202,211,48.90%,51.10%,8,1.90%,57,13.80%,43,370,0,10.40%,89.60%,0.00%,27,27,413,6.50% +106071,356,2079,State-funded primary,227,117,110,51.50%,48.50%,5,2.20%,7,3.10%,70,157,0,30.80%,69.20%,0.00%,33,32,201,15.90% +106072,356,2080,State-funded primary,286,150,136,52.40%,47.60%,9,3.10%,23,8.00%,38,248,0,13.30%,86.70%,0.00%,16,16,258,6.20% +106073,356,2081,State-funded primary,645,324,321,50.20%,49.80%,13,2.00%,47,7.30%,82,563,0,12.70%,87.30%,0.00%,61,58,606,9.60% +106074,356,2082,State-funded primary,295,161,134,54.60%,45.40%,16,5.40%,34,11.50%,44,251,0,14.90%,85.10%,0.00%,104,109,295,36.90% +106075,356,2083,State-funded primary,458,220,238,48.00%,52.00%,9,2.00%,35,7.60%,27,431,0,5.90%,94.10%,0.00%,46,47,419,11.20% +106076,356,2084,State-funded primary,555,262,293,47.20%,52.80%,24,4.30%,64,11.50%,24,531,0,4.30%,95.70%,0.00%,83,84,521,16.10% +106079,356,2087,State-funded primary,233,124,109,53.20%,46.80%,6,2.60%,16,6.90%,79,154,0,33.90%,66.10%,0.00%,41,35,211,16.60% +106080,356,2088,State-funded primary,208,97,111,46.60%,53.40%,11,5.30%,34,16.30%,36,169,3,17.30%,81.30%,1.40%,7,8,208,3.80% +106081,356,2089,State-funded primary,218,103,115,47.20%,52.80%,4,1.80%,21,9.60%,19,199,0,8.70%,91.30%,0.00%,10,10,204,4.90% +106082,356,2090,State-funded primary,339,170,169,50.10%,49.90%,10,2.90%,56,16.50%,56,283,0,16.50%,83.50%,0.00%,81,75,305,24.60% +106083,356,2091,State-funded primary,428,224,204,52.30%,47.70%,3,0.70%,67,15.70%,19,409,0,4.40%,95.60%,0.00%,40,44,396,11.10% +106084,356,2092,State-funded primary,201,98,103,48.80%,51.20%,6,3.00%,38,18.90%,44,157,0,21.90%,78.10%,0.00%,94,86,184,46.70% +106089,356,2103,State-funded primary,422,222,200,52.60%,47.40%,4,0.90%,33,7.80%,50,372,0,11.80%,88.20%,0.00%,15,15,422,3.60% +106090,356,2104,State-funded primary,215,107,108,49.80%,50.20%,8,3.70%,11,5.10%,13,202,0,6.00%,94.00%,0.00%,2,3,215,1.40% +106091,356,2105,State-funded primary,340,167,173,49.10%,50.90%,6,1.80%,36,10.60%,125,215,0,36.80%,63.20%,0.00%,98,95,310,30.60% +106093,356,2107,State-funded primary,259,130,129,50.20%,49.80%,5,1.90%,29,11.20%,116,143,0,44.80%,55.20%,0.00%,51,53,259,20.50% +106094,356,2108,State-funded primary,204,99,105,48.50%,51.50%,9,4.40%,15,7.40%,50,154,0,24.50%,75.50%,0.00%,52,52,183,28.40% +106097,356,2111,State-funded primary,210,95,115,45.20%,54.80%,5,2.40%,13,6.20%,6,204,0,2.90%,97.10%,0.00%,3,3,210,1.40% +106098,356,2112,State-funded primary,472,228,244,48.30%,51.70%,2,0.40%,46,9.70%,60,411,1,12.70%,87.10%,0.20%,35,37,442,8.40% +106099,356,2113,State-funded primary,382,179,203,46.90%,53.10%,4,1.00%,59,15.40%,119,263,0,31.20%,68.80%,0.00%,101,103,347,29.70% +106100,356,2114,State-funded primary,527,258,269,49.00%,51.00%,8,1.50%,77,14.60%,51,476,0,9.70%,90.30%,0.00%,131,130,497,26.20% +106102,356,3000,State-funded primary,214,108,106,50.50%,49.50%,2,0.90%,26,12.10%,3,211,0,1.40%,98.60%,0.00%,26,28,214,13.10% +106103,356,3001,State-funded primary,214,110,104,51.40%,48.60%,6,2.80%,26,12.10%,32,182,0,15.00%,85.00%,0.00%,95,92,194,47.40% +106105,356,3005,State-funded primary,206,99,107,48.10%,51.90%,3,1.50%,25,12.10%,31,174,1,15.00%,84.50%,0.50%,9,9,206,4.40% +106106,356,3006,State-funded primary,193,100,93,51.80%,48.20%,7,3.60%,26,13.50%,7,186,0,3.60%,96.40%,0.00%,50,51,193,26.40% +106108,356,3008,State-funded primary,391,194,197,49.60%,50.40%,10,2.60%,60,15.30%,36,355,0,9.20%,90.80%,0.00%,207,195,357,54.60% +106109,356,3009,State-funded primary,154,83,71,53.90%,46.10%,2,1.30%,35,22.70%,34,120,0,22.10%,77.90%,0.00%,74,76,137,55.50% +106111,356,3500,State-funded primary,282,139,143,49.30%,50.70%,12,4.30%,10,3.50%,28,254,0,9.90%,90.10%,0.00%,12,11,253,4.30% +106112,356,3501,State-funded primary,358,175,183,48.90%,51.10%,9,2.50%,33,9.20%,39,319,0,10.90%,89.10%,0.00%,14,15,358,4.20% +106113,356,3505,State-funded primary,203,118,85,58.10%,41.90%,7,3.40%,17,8.40%,38,165,0,18.70%,81.30%,0.00%,11,11,203,5.40% +106114,356,3506,State-funded primary,192,92,100,47.90%,52.10%,2,1.00%,26,13.50%,25,167,0,13.00%,87.00%,0.00%,54,56,192,29.20% +106115,356,3507,State-funded primary,182,102,80,56.00%,44.00%,7,3.80%,18,9.90%,52,130,0,28.60%,71.40%,0.00%,71,71,164,43.30% +106116,356,3509,State-funded primary,224,103,121,46.00%,54.00%,7,3.10%,37,16.50%,36,188,0,16.10%,83.90%,0.00%,90,83,202,41.10% +106117,356,3510,State-funded primary,208,93,115,44.70%,55.30%,9,4.30%,17,8.20%,8,200,0,3.80%,96.20%,0.00%,17,18,208,8.70% +106122,356,3515,State-funded primary,127,74,53,58.30%,41.70%,6,4.70%,21,16.50%,28,99,0,22.00%,78.00%,0.00%,46,46,121,38.00% +106124,356,3517,State-funded primary,114,60,54,52.60%,47.40%,3,2.60%,27,23.70%,32,82,0,28.10%,71.90%,0.00%,78,75,102,73.50% +106125,356,3518,State-funded primary,207,106,101,51.20%,48.80%,3,1.40%,12,5.80%,25,182,0,12.10%,87.90%,0.00%,9,9,207,4.30% +106126,356,3519,State-funded primary,184,91,93,49.50%,50.50%,5,2.70%,28,15.20%,21,162,1,11.40%,88.00%,0.50%,52,53,184,28.80% +106127,356,3520,State-funded primary,219,109,110,49.80%,50.20%,5,2.30%,28,12.80%,72,147,0,32.90%,67.10%,0.00%,29,29,189,15.30% +106128,356,3521,State-funded primary,640,314,326,49.10%,50.90%,14,2.20%,50,7.80%,99,541,0,15.50%,84.50%,0.00%,50,53,601,8.80% +106129,356,3522,State-funded primary,394,187,207,47.50%,52.50%,6,1.50%,34,8.60%,34,350,10,8.60%,88.80%,2.50%,30,30,394,7.60% +106133,356,4032,State-funded secondary,1265,592,673,46.80%,53.20%,53,4.20%,196,15.50%,110,1155,0,8.70%,91.30%,0.00%,144,166,1265,13.10% +106135,356,4034,State-funded secondary,1294,637,657,49.20%,50.80%,32,2.50%,194,15.00%,76,1218,0,5.90%,94.10%,0.00%,328,368,1294,28.40% +106138,356,4037,State-funded secondary,1562,762,800,48.80%,51.20%,30,1.90%,230,14.70%,32,1520,10,2.00%,97.30%,0.60%,173,201,1562,12.90% +106139,356,4038,State-funded secondary,1232,625,607,50.70%,49.30%,12,1.00%,130,10.60%,164,1065,3,13.30%,86.40%,0.20%,222,254,1232,20.60% +106142,356,4600,State-funded secondary,807,392,415,48.60%,51.40%,24,3.00%,69,8.60%,82,725,0,10.20%,89.80%,0.00%,107,121,807,15.00% +106143,356,4601,State-funded secondary,799,416,383,52.10%,47.90%,27,3.40%,102,12.80%,130,669,0,16.30%,83.70%,0.00%,205,232,799,29.00% +106147,356,6004,Independent school,113,59,54,52.20%,47.80%,3,2.70%,31,27.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106148,356,6005,Independent school,239,115,124,48.10%,51.90%,0,0.00%,19,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106149,356,6007,Independent school,491,10,481,2.00%,98.00%,0,0.00%,57,11.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106151,356,6009,Independent school,218,82,136,37.60%,62.40%,16,7.30%,51,23.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106154,356,6016,Independent school,49,24,25,49.00%,51.00%,1,2.00%,8,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106156,356,6018,Independent school,1552,712,840,45.90%,54.10%,3,0.20%,257,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106157,356,6019,Independent school,1517,705,812,46.50%,53.50%,3,0.20%,261,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106158,356,6021,Independent school,30,16,14,53.30%,46.70%,0,0.00%,1,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106162,356,6025,Independent school,70,15,55,21.40%,78.60%,70,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106166,356,7502,Non-maintained special school,54,14,40,25.90%,74.10%,54,100.00%,0,0.00%,1,53,0,1.90%,98.10%,0.00%,17,23,42,54.80% +106167,358,7503,Non-maintained special school,119,29,90,24.40%,75.60%,118,99.20%,1,0.80%,14,105,0,11.80%,88.20%,0.00%,51,60,101,59.40% +106168,356,7504,State-funded special school,58,22,36,37.90%,62.10%,55,94.80%,3,5.20%,6,52,0,10.30%,89.70%,0.00%,18,18,54,33.30% +106170,356,7506,State-funded special school,170,42,128,24.70%,75.30%,170,100.00%,0,0.00%,22,147,1,12.90%,86.50%,0.60%,63,63,170,37.10% +106172,356,7508,State-funded special school,324,96,228,29.60%,70.40%,324,100.00%,0,0.00%,13,310,1,4.00%,95.70%,0.30%,114,105,279,37.60% +106173,356,7509,State-funded special school,99,31,68,31.30%,68.70%,99,100.00%,0,0.00%,18,81,0,18.20%,81.80%,0.00%,43,26,58,44.80% +106179,357,2004,State-funded primary,183,86,97,47.00%,53.00%,7,3.80%,13,7.10%,1,182,0,0.50%,99.50%,0.00%,48,48,167,28.70% +106181,357,2006,State-funded primary,396,213,183,53.80%,46.20%,6,1.50%,58,14.60%,29,366,1,7.30%,92.40%,0.30%,200,201,362,55.50% +106184,357,2011,State-funded primary,198,99,99,50.00%,50.00%,3,1.50%,30,15.20%,10,187,1,5.10%,94.40%,0.50%,114,107,172,62.20% +106188,357,2018,State-funded primary,424,196,228,46.20%,53.80%,7,1.70%,51,12.00%,34,390,0,8.00%,92.00%,0.00%,88,95,399,23.80% +106189,357,2019,State-funded primary,231,122,109,52.80%,47.20%,4,1.70%,30,13.00%,3,228,0,1.30%,98.70%,0.00%,31,34,231,14.70% +106190,357,2020,State-funded primary,208,105,103,50.50%,49.50%,5,2.40%,45,21.60%,28,180,0,13.50%,86.50%,0.00%,68,70,187,37.40% +106192,357,2024,State-funded primary,242,102,140,42.10%,57.90%,6,2.50%,41,16.90%,37,205,0,15.30%,84.70%,0.00%,118,121,213,56.80% +106193,357,2025,State-funded primary,224,109,115,48.70%,51.30%,3,1.30%,25,11.20%,4,220,0,1.80%,98.20%,0.00%,23,23,198,11.60% +106195,357,2027,State-funded primary,233,116,117,49.80%,50.20%,8,3.40%,36,15.50%,10,223,0,4.30%,95.70%,0.00%,72,75,204,36.80% +106201,357,2037,State-funded primary,234,106,128,45.30%,54.70%,6,2.60%,34,14.50%,95,139,0,40.60%,59.40%,0.00%,100,100,208,48.10% +106203,357,2039,State-funded primary,207,98,109,47.30%,52.70%,5,2.40%,21,10.10%,11,196,0,5.30%,94.70%,0.00%,28,31,207,15.00% +106206,357,2042,State-funded primary,457,204,253,44.60%,55.40%,7,1.50%,45,9.80%,49,408,0,10.70%,89.30%,0.00%,149,149,416,35.80% +106207,357,2045,State-funded primary,455,234,221,51.40%,48.60%,10,2.20%,76,16.70%,98,357,0,21.50%,78.50%,0.00%,118,120,419,28.60% +106210,357,2051,State-funded primary,225,119,106,52.90%,47.10%,6,2.70%,35,15.60%,17,208,0,7.60%,92.40%,0.00%,36,34,199,17.10% +106212,357,2055,State-funded primary,438,224,214,51.10%,48.90%,5,1.10%,42,9.60%,55,382,1,12.60%,87.20%,0.20%,76,76,414,18.40% +106213,357,2056,State-funded primary,213,121,92,56.80%,43.20%,4,1.90%,26,12.20%,4,209,0,1.90%,98.10%,0.00%,44,46,213,21.60% +106214,357,2058,State-funded primary,338,165,173,48.80%,51.20%,20,5.90%,77,22.80%,44,294,0,13.00%,87.00%,0.00%,120,120,314,38.20% +106216,357,2063,State-funded primary,375,163,212,43.50%,56.50%,3,0.80%,44,11.70%,56,319,0,14.90%,85.10%,0.00%,76,77,359,21.40% +106219,357,2068,State-funded primary,439,218,221,49.70%,50.30%,10,2.30%,93,21.20%,32,405,2,7.30%,92.30%,0.50%,143,143,408,35.00% +106222,357,2073,State-funded primary,175,91,84,52.00%,48.00%,3,1.70%,5,2.90%,2,173,0,1.10%,98.90%,0.00%,17,17,175,9.70% +106226,357,3000,State-funded primary,217,114,103,52.50%,47.50%,4,1.80%,33,15.20%,6,211,0,2.80%,97.20%,0.00%,39,39,203,19.20% +106227,357,3001,State-funded primary,82,41,41,50.00%,50.00%,1,1.20%,10,12.20%,4,78,0,4.90%,95.10%,0.00%,24,24,82,29.30% +106228,357,3003,State-funded primary,333,167,166,50.20%,49.80%,5,1.50%,17,5.10%,6,327,0,1.80%,98.20%,0.00%,57,58,318,18.20% +106229,357,3019,State-funded primary,196,93,103,47.40%,52.60%,7,3.60%,39,19.90%,42,154,0,21.40%,78.60%,0.00%,105,107,196,54.60% +106234,357,3026,State-funded primary,246,127,119,51.60%,48.40%,2,0.80%,37,15.00%,2,244,0,0.80%,99.20%,0.00%,48,48,223,21.50% +106235,357,3027,State-funded primary,215,113,102,52.60%,47.40%,6,2.80%,51,23.70%,19,196,0,8.80%,91.20%,0.00%,60,64,193,33.20% +106237,357,3303,State-funded primary,137,69,68,50.40%,49.60%,2,1.50%,24,17.50%,0,137,0,0.00%,100.00%,0.00%,21,21,137,15.30% +106238,357,3304,State-funded primary,216,116,100,53.70%,46.30%,3,1.40%,23,10.60%,3,213,0,1.40%,98.60%,0.00%,30,28,203,13.80% +106239,357,3305,State-funded primary,197,99,98,50.30%,49.70%,5,2.50%,57,28.90%,27,170,0,13.70%,86.30%,0.00%,84,87,179,48.60% +106240,357,3308,State-funded primary,206,97,109,47.10%,52.90%,8,3.90%,31,15.00%,10,195,1,4.90%,94.70%,0.50%,41,44,206,21.40% +106241,357,3309,State-funded primary,231,104,127,45.00%,55.00%,3,1.30%,37,16.00%,15,216,0,6.50%,93.50%,0.00%,26,25,205,12.20% +106242,357,3310,State-funded primary,214,105,109,49.10%,50.90%,5,2.30%,10,4.70%,20,194,0,9.30%,90.70%,0.00%,28,29,188,15.40% +106244,357,3312,State-funded primary,243,125,118,51.40%,48.60%,5,2.10%,17,7.00%,216,27,0,88.90%,11.10%,0.00%,76,81,208,38.90% +106245,357,3313,State-funded primary,205,90,115,43.90%,56.10%,10,4.90%,29,14.10%,89,116,0,43.40%,56.60%,0.00%,119,132,205,64.40% +106246,357,3314,State-funded primary,206,95,111,46.10%,53.90%,10,4.90%,30,14.60%,59,147,0,28.60%,71.40%,0.00%,75,76,206,36.90% +106247,357,3316,State-funded primary,228,114,114,50.00%,50.00%,5,2.20%,14,6.10%,35,193,0,15.40%,84.60%,0.00%,49,44,201,21.90% +106248,357,3317,State-funded primary,140,71,69,50.70%,49.30%,1,0.70%,31,22.10%,9,131,0,6.40%,93.60%,0.00%,50,52,130,40.00% +106249,357,3319,State-funded primary,445,204,241,45.80%,54.20%,5,1.10%,84,18.90%,74,371,0,16.60%,83.40%,0.00%,95,95,419,22.70% +106252,357,3322,State-funded primary,230,106,124,46.10%,53.90%,8,3.50%,32,13.90%,19,211,0,8.30%,91.70%,0.00%,27,27,208,13.00% +106253,357,3323,State-funded primary,410,220,190,53.70%,46.30%,11,2.70%,40,9.80%,31,379,0,7.60%,92.40%,0.00%,105,106,380,27.90% +106254,357,3324,State-funded primary,183,78,105,42.60%,57.40%,1,0.50%,19,10.40%,5,178,0,2.70%,97.30%,0.00%,38,39,165,23.60% +106255,357,3325,State-funded primary,241,119,122,49.40%,50.60%,20,8.30%,38,15.80%,14,227,0,5.80%,94.20%,0.00%,65,63,211,29.90% +106256,357,3326,State-funded primary,251,123,128,49.00%,51.00%,2,0.80%,16,6.40%,49,202,0,19.50%,80.50%,0.00%,41,42,218,19.30% +106257,357,3327,State-funded primary,240,115,125,47.90%,52.10%,4,1.70%,35,14.60%,32,208,0,13.30%,86.70%,0.00%,38,43,210,20.50% +106266,357,4018,State-funded secondary,888,458,430,51.60%,48.40%,29,3.30%,126,14.20%,23,865,0,2.60%,97.40%,0.00%,130,189,888,21.30% +106268,357,4025,State-funded secondary,1153,621,532,53.90%,46.10%,28,2.40%,74,6.40%,218,933,2,18.90%,80.90%,0.20%,445,497,1153,43.10% +106270,357,4602,State-funded secondary,837,416,421,49.70%,50.30%,14,1.70%,95,11.40%,143,694,0,17.10%,82.90%,0.00%,154,179,837,21.40% +106271,357,4603,State-funded secondary,778,382,396,49.10%,50.90%,44,5.70%,57,7.30%,37,741,0,4.80%,95.20%,0.00%,150,187,778,24.00% +106276,357,6000,Independent school,114,63,51,55.30%,44.70%,1,0.90%,14,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106278,357,7002,State-funded special school,94,5,89,5.30%,94.70%,93,98.90%,1,1.10%,0,94,0,0.00%,100.00%,0.00%,65,77,94,81.90% +106279,357,7005,State-funded special school,134,36,98,26.90%,73.10%,132,98.50%,2,1.50%,30,104,0,22.40%,77.60%,0.00%,60,48,92,52.20% +106281,357,7009,State-funded special school,146,47,99,32.20%,67.80%,146,100.00%,0,0.00%,27,117,2,18.50%,80.10%,1.40%,69,70,145,48.30% +106283,358,2000,State-funded primary,446,226,220,50.70%,49.30%,6,1.30%,60,13.50%,114,332,0,25.60%,74.40%,0.00%,30,31,420,7.40% +106284,358,2002,State-funded primary,390,186,204,47.70%,52.30%,8,2.10%,47,12.10%,144,246,0,36.90%,63.10%,0.00%,55,54,369,14.60% +106285,358,2003,State-funded primary,483,247,236,51.10%,48.90%,7,1.40%,33,6.80%,168,315,0,34.80%,65.20%,0.00%,41,42,455,9.20% +106288,358,2006,State-funded primary,644,312,332,48.40%,51.60%,17,2.60%,59,9.20%,115,527,2,17.90%,81.80%,0.30%,92,93,612,15.20% +106289,358,2007,State-funded primary,578,301,277,52.10%,47.90%,17,2.90%,82,14.20%,265,311,2,45.80%,53.80%,0.30%,92,95,545,17.40% +106290,358,2008,State-funded primary,460,190,270,41.30%,58.70%,13,2.80%,84,18.30%,122,336,2,26.50%,73.00%,0.40%,142,144,406,35.50% +106293,358,2011,State-funded primary,238,118,120,49.60%,50.40%,4,1.70%,15,6.30%,70,168,0,29.40%,70.60%,0.00%,16,16,212,7.50% +106294,358,2012,State-funded primary,367,168,199,45.80%,54.20%,10,2.70%,42,11.40%,57,309,1,15.50%,84.20%,0.30%,11,11,342,3.20% +106295,358,2013,State-funded primary,235,109,126,46.40%,53.60%,3,1.30%,31,13.20%,44,191,0,18.70%,81.30%,0.00%,7,8,210,3.80% +106298,358,2019,State-funded primary,678,347,331,51.20%,48.80%,13,1.90%,73,10.80%,248,430,0,36.60%,63.40%,0.00%,43,46,632,7.30% +106299,358,2021,State-funded primary,496,234,262,47.20%,52.80%,12,2.40%,42,8.50%,144,352,0,29.00%,71.00%,0.00%,35,41,468,8.80% +106300,358,2022,State-funded primary,452,235,217,52.00%,48.00%,14,3.10%,31,6.90%,111,339,2,24.60%,75.00%,0.40%,68,67,427,15.70% +106301,358,2023,State-funded primary,661,322,339,48.70%,51.30%,9,1.40%,8,1.20%,142,481,38,21.50%,72.80%,5.70%,21,22,630,3.50% +106303,358,2025,State-funded primary,478,235,243,49.20%,50.80%,22,4.60%,32,6.70%,137,341,0,28.70%,71.30%,0.00%,191,194,453,42.80% +106304,358,2026,State-funded primary,262,116,146,44.30%,55.70%,18,6.90%,38,14.50%,31,231,0,11.80%,88.20%,0.00%,32,32,262,12.20% +106308,358,2033,State-funded primary,273,136,137,49.80%,50.20%,11,4.00%,22,8.10%,37,236,0,13.60%,86.40%,0.00%,22,23,273,8.40% +106312,358,2037,State-funded primary,206,95,111,46.10%,53.90%,4,1.90%,13,6.30%,19,187,0,9.20%,90.80%,0.00%,10,10,180,5.60% +106313,358,2039,State-funded primary,238,119,119,50.00%,50.00%,11,4.60%,17,7.10%,31,207,0,13.00%,87.00%,0.00%,15,15,188,8.00% +106315,358,2041,State-funded primary,503,260,243,51.70%,48.30%,12,2.40%,60,11.90%,64,439,0,12.70%,87.30%,0.00%,25,26,474,5.50% +106316,358,2042,State-funded primary,513,269,244,52.40%,47.60%,14,2.70%,84,16.40%,35,477,1,6.80%,93.00%,0.20%,38,38,487,7.80% +106318,358,2044,State-funded primary,450,226,224,50.20%,49.80%,7,1.60%,35,7.80%,18,432,0,4.00%,96.00%,0.00%,12,13,422,3.10% +106321,358,2047,State-funded primary,373,176,197,47.20%,52.80%,11,2.90%,74,19.80%,166,207,0,44.50%,55.50%,0.00%,151,153,342,44.70% +106322,358,2049,State-funded primary,686,349,337,50.90%,49.10%,12,1.70%,49,7.10%,528,156,2,77.00%,22.70%,0.30%,175,177,615,28.80% +106323,358,2050,State-funded primary,254,113,141,44.50%,55.50%,5,2.00%,36,14.20%,129,125,0,50.80%,49.20%,0.00%,58,62,254,24.40% +106324,358,2051,State-funded primary,214,112,102,52.30%,47.70%,4,1.90%,6,2.80%,60,154,0,28.00%,72.00%,0.00%,39,34,179,19.00% +106325,358,2052,State-funded primary,661,338,323,51.10%,48.90%,17,2.60%,49,7.40%,380,281,0,57.50%,42.50%,0.00%,152,156,598,26.10% +106327,358,2056,State-funded primary,241,109,132,45.20%,54.80%,8,3.30%,30,12.40%,76,163,2,31.50%,67.60%,0.80%,63,64,241,26.60% +106328,358,2057,State-funded primary,211,104,107,49.30%,50.70%,0,0.00%,0,0.00%,66,145,0,31.30%,68.70%,0.00%,30,31,178,17.40% +106329,358,2058,State-funded primary,312,161,151,51.60%,48.40%,4,1.30%,31,9.90%,42,270,0,13.50%,86.50%,0.00%,51,50,287,17.40% +106332,358,2061,State-funded primary,234,107,127,45.70%,54.30%,1,0.40%,26,11.10%,20,214,0,8.50%,91.50%,0.00%,19,19,206,9.20% +106334,358,2063,State-funded primary,180,92,88,51.10%,48.90%,7,3.90%,24,13.30%,24,156,0,13.30%,86.70%,0.00%,60,61,173,35.30% +106337,358,3005,State-funded primary,203,96,107,47.30%,52.70%,7,3.40%,33,16.30%,27,176,0,13.30%,86.70%,0.00%,59,59,185,31.90% +106338,358,3301,State-funded primary,622,293,329,47.10%,52.90%,10,1.60%,89,14.30%,52,569,1,8.40%,91.50%,0.20%,28,31,622,5.00% +106340,358,3304,State-funded primary,659,301,358,45.70%,54.30%,11,1.70%,59,9.00%,92,566,1,14.00%,85.90%,0.20%,52,55,628,8.80% +106341,358,3305,State-funded primary,213,119,94,55.90%,44.10%,0,0.00%,23,10.80%,57,156,0,26.80%,73.20%,0.00%,37,39,203,19.20% +106343,358,3307,State-funded primary,234,118,116,50.40%,49.60%,6,2.60%,39,16.70%,60,174,0,25.60%,74.40%,0.00%,48,45,210,21.40% +106344,358,3308,State-funded primary,277,147,130,53.10%,46.90%,4,1.40%,41,14.80%,62,215,0,22.40%,77.60%,0.00%,8,8,244,3.30% +106345,358,3309,State-funded primary,217,102,115,47.00%,53.00%,1,0.50%,43,19.80%,63,152,2,29.00%,70.00%,0.90%,30,31,199,15.60% +106346,358,3310,State-funded primary,206,95,111,46.10%,53.90%,5,2.40%,18,8.70%,9,197,0,4.40%,95.60%,0.00%,87,95,182,52.20% +106347,358,3311,State-funded primary,236,119,117,50.40%,49.60%,5,2.10%,43,18.20%,20,216,0,8.50%,91.50%,0.00%,35,33,210,15.70% +106348,358,3312,State-funded primary,451,228,223,50.60%,49.40%,8,1.80%,38,8.40%,124,327,0,27.50%,72.50%,0.00%,19,19,421,4.50% +106349,358,3313,State-funded primary,194,98,96,50.50%,49.50%,12,6.20%,31,16.00%,11,183,0,5.70%,94.30%,0.00%,27,27,194,13.90% +106350,358,3314,State-funded primary,245,125,120,51.00%,49.00%,4,1.60%,28,11.40%,12,233,0,4.90%,95.10%,0.00%,16,16,217,7.40% +106352,358,3318,State-funded primary,232,114,118,49.10%,50.90%,4,1.70%,29,12.50%,29,203,0,12.50%,87.50%,0.00%,9,10,205,4.90% +106353,358,3319,State-funded primary,337,170,167,50.40%,49.60%,10,3.00%,42,12.50%,53,284,0,15.70%,84.30%,0.00%,65,64,308,20.80% +106355,358,3324,State-funded primary,170,86,84,50.60%,49.40%,2,1.20%,27,15.90%,22,148,0,12.90%,87.10%,0.00%,37,37,162,22.80% +106356,358,3325,State-funded primary,334,170,164,50.90%,49.10%,5,1.50%,56,16.80%,19,315,0,5.70%,94.30%,0.00%,40,40,306,13.10% +106358,358,3327,State-funded primary,235,120,115,51.10%,48.90%,5,2.10%,25,10.60%,9,226,0,3.80%,96.20%,0.00%,12,12,209,5.70% +106359,358,3330,State-funded primary,230,115,115,50.00%,50.00%,8,3.50%,32,13.90%,60,170,0,26.10%,73.90%,0.00%,53,52,204,25.50% +106360,358,3331,State-funded primary,199,87,112,43.70%,56.30%,5,2.50%,20,10.10%,65,134,0,32.70%,67.30%,0.00%,90,86,187,46.00% +106365,358,4015,State-funded secondary,422,193,229,45.70%,54.30%,56,13.30%,48,11.40%,186,235,1,44.10%,55.70%,0.20%,128,141,422,33.40% +106368,358,4025,State-funded secondary,949,433,516,45.60%,54.40%,5,0.50%,55,5.80%,323,626,0,34.00%,66.00%,0.00%,112,108,797,13.60% +106370,358,4028,State-funded secondary,945,421,524,44.60%,55.40%,49,5.20%,127,13.40%,469,475,1,49.60%,50.30%,0.10%,343,395,945,41.80% +106375,358,5402,State-funded secondary,1017,491,526,48.30%,51.70%,41,4.00%,135,13.30%,194,823,0,19.10%,80.90%,0.00%,268,291,1017,28.60% +106376,358,5403,State-funded secondary,1585,788,797,49.70%,50.30%,61,3.80%,213,13.40%,125,1456,4,7.90%,91.90%,0.30%,167,188,1385,13.60% +106377,358,6000,Independent school,273,273,0,100.00%,0.00%,1,0.40%,16,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106379,358,6002,Independent school,299,0,299,0.00%,100.00%,0,0.00%,26,8.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106381,358,6004,Independent school,120,6,114,5.00%,95.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106382,358,6005,Independent school,160,77,83,48.10%,51.90%,1,0.60%,28,17.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106383,358,6006,Independent school,204,79,125,38.70%,61.30%,0,0.00%,15,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106385,358,6008,Independent school,208,98,110,47.10%,52.90%,1,0.50%,21,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106386,358,6012,Independent school,196,96,100,49.00%,51.00%,0,0.00%,11,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106387,358,6014,Independent school,116,116,0,100.00%,0.00%,1,0.90%,24,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106391,358,7001,State-funded special school,137,46,91,33.60%,66.40%,137,100.00%,0,0.00%,25,112,0,18.20%,81.80%,0.00%,43,38,96,39.60% +106394,358,7005,State-funded special school,124,35,89,28.20%,71.80%,112,90.30%,12,9.70%,22,100,2,17.70%,80.60%,1.60%,47,47,110,42.70% +106397,359,1000,State-funded nursery,86,47,39,54.70%,45.30%,0,0.00%,14,16.30%,5,81,0,5.80%,94.20%,0.00%,0,0,0,0.00% +106398,359,1003,State-funded nursery,88,48,40,54.50%,45.50%,0,0.00%,17,19.30%,10,78,0,11.40%,88.60%,0.00%,0,0,0,0.00% +106399,359,2000,State-funded primary,305,136,169,44.60%,55.40%,10,3.30%,95,31.10%,49,256,0,16.10%,83.90%,0.00%,135,131,278,47.10% +106402,359,2007,State-funded primary,208,101,107,48.60%,51.40%,5,2.40%,20,9.60%,14,194,0,6.70%,93.30%,0.00%,5,5,208,2.40% +106403,359,2009,State-funded primary,436,210,226,48.20%,51.80%,20,4.60%,154,35.30%,65,371,0,14.90%,85.10%,0.00%,212,203,371,54.70% +106404,359,2010,State-funded primary,236,124,112,52.50%,47.50%,7,3.00%,42,17.80%,21,215,0,8.90%,91.10%,0.00%,79,72,208,34.60% +106405,359,2013,State-funded primary,478,231,247,48.30%,51.70%,3,0.60%,45,9.40%,93,384,1,19.50%,80.30%,0.20%,91,93,478,19.50% +106407,359,2017,State-funded primary,455,224,231,49.20%,50.80%,5,1.10%,42,9.20%,15,440,0,3.30%,96.70%,0.00%,42,44,411,10.70% +106412,359,2026,State-funded primary,468,242,226,51.70%,48.30%,6,1.30%,40,8.50%,6,462,0,1.30%,98.70%,0.00%,43,42,423,9.90% +106414,359,2030,State-funded primary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +106415,359,2031,State-funded primary,205,98,107,47.80%,52.20%,5,2.40%,26,12.70%,9,196,0,4.40%,95.60%,0.00%,86,88,205,42.90% +106417,359,2033,State-funded primary,240,130,110,54.20%,45.80%,3,1.30%,92,38.30%,20,220,0,8.30%,91.70%,0.00%,112,98,206,47.60% +106418,359,2034,State-funded primary,204,94,110,46.10%,53.90%,11,5.40%,38,18.60%,46,158,0,22.50%,77.50%,0.00%,105,105,204,51.50% +106421,359,2039,State-funded primary,212,97,115,45.80%,54.20%,5,2.40%,10,4.70%,6,206,0,2.80%,97.20%,0.00%,64,65,212,30.70% +106422,359,2040,State-funded primary,211,110,101,52.10%,47.90%,10,4.70%,72,34.10%,13,198,0,6.20%,93.80%,0.00%,117,119,211,56.40% +106424,359,2043,State-funded primary,428,207,221,48.40%,51.60%,5,1.20%,29,6.80%,13,415,0,3.00%,97.00%,0.00%,91,89,398,22.40% +106425,359,2045,State-funded primary,223,120,103,53.80%,46.20%,15,6.70%,83,37.20%,32,191,0,14.30%,85.70%,0.00%,131,124,204,60.80% +106426,359,2046,State-funded primary,336,162,174,48.20%,51.80%,2,0.60%,73,21.70%,7,329,0,2.10%,97.90%,0.00%,80,77,301,25.60% +106427,359,2047,State-funded primary,421,205,216,48.70%,51.30%,5,1.20%,27,6.40%,32,389,0,7.60%,92.40%,0.00%,55,56,421,13.30% +106428,359,2049,State-funded primary,425,197,228,46.40%,53.60%,8,1.90%,68,16.00%,29,396,0,6.80%,93.20%,0.00%,69,71,425,16.70% +106429,359,2050,State-funded primary,191,98,93,51.30%,48.70%,3,1.60%,31,16.20%,2,189,0,1.00%,99.00%,0.00%,17,19,191,9.90% +106430,359,2051,State-funded primary,417,171,246,41.00%,59.00%,6,1.40%,42,10.10%,19,397,1,4.60%,95.20%,0.20%,99,104,417,24.90% +106431,359,2053,State-funded primary,208,88,120,42.30%,57.70%,2,1.00%,19,9.10%,3,205,0,1.40%,98.60%,0.00%,12,13,208,6.30% +106433,359,2058,State-funded primary,473,248,225,52.40%,47.60%,8,1.70%,53,11.20%,21,452,0,4.40%,95.60%,0.00%,21,23,439,5.20% +106436,359,2062,State-funded primary,205,95,110,46.30%,53.70%,2,1.00%,11,5.40%,6,199,0,2.90%,97.10%,0.00%,18,18,205,8.80% +106438,359,3010,State-funded primary,210,95,115,45.20%,54.80%,6,2.90%,28,13.30%,8,202,0,3.80%,96.20%,0.00%,78,79,210,37.60% +106441,359,3015,State-funded primary,198,87,111,43.90%,56.10%,10,5.10%,25,12.60%,8,190,0,4.00%,96.00%,0.00%,83,84,198,42.40% +106443,359,3023,State-funded primary,153,67,86,43.80%,56.20%,2,1.30%,29,19.00%,10,143,0,6.50%,93.50%,0.00%,59,62,153,40.50% +106447,359,3029,State-funded primary,269,117,152,43.50%,56.50%,7,2.60%,87,32.30%,29,240,0,10.80%,89.20%,0.00%,124,130,269,48.30% +106448,359,3030,State-funded primary,395,200,195,50.60%,49.40%,11,2.80%,71,18.00%,28,367,0,7.10%,92.90%,0.00%,101,101,395,25.60% +106449,359,3300,State-funded primary,204,99,105,48.50%,51.50%,4,2.00%,33,16.20%,9,195,0,4.40%,95.60%,0.00%,41,41,204,20.10% +106451,359,3308,State-funded primary,201,98,103,48.80%,51.20%,2,1.00%,59,29.40%,11,190,0,5.50%,94.50%,0.00%,78,79,201,39.30% +106459,359,3326,State-funded primary,210,114,96,54.30%,45.70%,2,1.00%,19,9.00%,33,177,0,15.70%,84.30%,0.00%,25,26,210,12.40% +106460,359,3329,State-funded primary,349,176,173,50.40%,49.60%,5,1.40%,44,12.60%,86,263,0,24.60%,75.40%,0.00%,115,114,312,36.50% +106461,359,3331,State-funded primary,421,199,222,47.30%,52.70%,9,2.10%,68,16.20%,102,318,1,24.20%,75.50%,0.20%,101,98,371,26.40% +106463,359,3336,State-funded primary,344,185,159,53.80%,46.20%,5,1.50%,33,9.60%,10,334,0,2.90%,97.10%,0.00%,6,8,311,2.60% +106464,359,3338,State-funded primary,208,93,115,44.70%,55.30%,6,2.90%,29,13.90%,24,184,0,11.50%,88.50%,0.00%,127,130,208,62.50% +106465,359,3350,State-funded primary,200,95,105,47.50%,52.50%,3,1.50%,20,10.00%,2,198,0,1.00%,99.00%,0.00%,24,24,200,12.00% +106468,359,3358,State-funded primary,153,77,76,50.30%,49.70%,5,3.30%,27,17.60%,18,135,0,11.80%,88.20%,0.00%,64,65,153,42.50% +106470,359,3361,State-funded primary,151,72,79,47.70%,52.30%,2,1.30%,25,16.60%,19,132,0,12.60%,87.40%,0.00%,48,48,151,31.80% +106471,359,3362,State-funded primary,225,120,105,53.30%,46.70%,0,0.00%,20,8.90%,1,224,0,0.40%,99.60%,0.00%,91,85,203,41.90% +106472,359,3363,State-funded primary,200,84,116,42.00%,58.00%,16,8.00%,45,22.50%,8,192,0,4.00%,96.00%,0.00%,76,76,200,38.00% +106476,359,3367,State-funded primary,401,229,172,57.10%,42.90%,11,2.70%,84,20.90%,70,324,7,17.50%,80.80%,1.70%,224,218,369,59.10% +106478,359,3370,State-funded primary,203,100,103,49.30%,50.70%,7,3.40%,20,9.90%,3,200,0,1.50%,98.50%,0.00%,33,34,203,16.70% +106481,359,3373,State-funded primary,205,91,114,44.40%,55.60%,3,1.50%,45,22.00%,26,179,0,12.70%,87.30%,0.00%,129,130,205,63.40% +106482,359,3374,State-funded primary,210,100,110,47.60%,52.40%,0,0.00%,29,13.80%,9,201,0,4.30%,95.70%,0.00%,38,38,210,18.10% +106484,359,3376,State-funded primary,184,101,83,54.90%,45.10%,1,0.50%,14,7.60%,14,170,0,7.60%,92.40%,0.00%,46,48,184,26.10% +106485,359,3377,State-funded primary,217,100,117,46.10%,53.90%,2,0.90%,31,14.30%,2,215,0,0.90%,99.10%,0.00%,13,13,217,6.00% +106486,359,3378,State-funded primary,244,119,125,48.80%,51.20%,6,2.50%,35,14.30%,8,236,0,3.30%,96.70%,0.00%,30,29,214,13.60% +106487,359,3379,State-funded primary,214,85,129,39.70%,60.30%,5,2.30%,21,9.80%,16,194,4,7.50%,90.70%,1.90%,74,74,214,34.60% +106488,359,3382,State-funded primary,294,140,154,47.60%,52.40%,8,2.70%,55,18.70%,5,289,0,1.70%,98.30%,0.00%,57,58,294,19.70% +106489,359,3383,State-funded primary,5,4,1,80.00%,20.00%,2,40.00%,0,0.00%,1,4,0,20.00%,80.00%,0.00%,2,3,5,60.00% +106490,359,3386,State-funded primary,210,96,114,45.70%,54.30%,2,1.00%,33,15.70%,15,195,0,7.10%,92.90%,0.00%,41,42,210,20.00% +106491,359,3387,State-funded primary,135,64,71,47.40%,52.60%,1,0.70%,12,8.90%,14,121,0,10.40%,89.60%,0.00%,30,30,135,22.20% +106492,359,3388,State-funded primary,401,190,211,47.40%,52.60%,3,0.70%,67,16.70%,9,392,0,2.20%,97.80%,0.00%,36,38,401,9.50% +106493,359,3389,State-funded primary,202,113,89,55.90%,44.10%,6,3.00%,20,9.90%,20,182,0,9.90%,90.10%,0.00%,28,30,202,14.90% +106494,359,3390,State-funded primary,189,88,101,46.60%,53.40%,5,2.60%,40,21.20%,10,179,0,5.30%,94.70%,0.00%,62,64,189,33.90% +106497,359,3394,State-funded primary,219,107,112,48.90%,51.10%,4,1.80%,46,21.00%,44,175,0,20.10%,79.90%,0.00%,106,97,198,49.00% +106498,359,3396,State-funded primary,158,78,80,49.40%,50.60%,1,0.60%,36,22.80%,44,114,0,27.80%,72.20%,0.00%,87,87,158,55.10% +106499,359,3397,State-funded primary,183,86,97,47.00%,53.00%,9,4.90%,22,12.00%,15,164,4,8.20%,89.60%,2.20%,59,59,183,32.20% +106501,359,3400,State-funded primary,205,113,92,55.10%,44.90%,4,2.00%,47,22.90%,27,178,0,13.20%,86.80%,0.00%,45,45,205,22.00% +106502,359,3403,State-funded primary,305,150,155,49.20%,50.80%,6,2.00%,26,8.50%,92,213,0,30.20%,69.80%,0.00%,96,98,305,32.10% +106503,359,3405,State-funded primary,210,109,101,51.90%,48.10%,7,3.30%,32,15.20%,22,188,0,10.50%,89.50%,0.00%,70,70,210,33.30% +106504,359,3406,State-funded primary,199,95,104,47.70%,52.30%,6,3.00%,15,7.50%,14,185,0,7.00%,93.00%,0.00%,21,21,199,10.60% +106505,359,3407,State-funded primary,247,120,127,48.60%,51.40%,10,4.00%,47,19.00%,31,214,2,12.60%,86.60%,0.80%,61,58,214,27.10% +106506,359,3411,State-funded primary,346,177,169,51.20%,48.80%,14,4.00%,63,18.20%,47,299,0,13.60%,86.40%,0.00%,197,185,313,59.10% +106507,359,3412,State-funded primary,206,104,102,50.50%,49.50%,3,1.50%,18,8.70%,22,184,0,10.70%,89.30%,0.00%,24,26,206,12.60% +106508,359,3413,State-funded primary,182,89,93,48.90%,51.10%,3,1.60%,18,9.90%,12,170,0,6.60%,93.40%,0.00%,21,21,182,11.50% +106509,359,3414,State-funded primary,203,92,111,45.30%,54.70%,4,2.00%,21,10.30%,18,185,0,8.90%,91.10%,0.00%,35,35,180,19.40% +106510,359,3415,State-funded primary,210,92,118,43.80%,56.20%,3,1.40%,12,5.70%,13,197,0,6.20%,93.80%,0.00%,12,13,210,6.20% +106512,359,3419,State-funded primary,204,105,99,51.50%,48.50%,4,2.00%,24,11.80%,7,197,0,3.40%,96.60%,0.00%,77,78,204,38.20% +106515,359,3423,State-funded primary,413,226,187,54.70%,45.30%,2,0.50%,45,10.90%,10,403,0,2.40%,97.60%,0.00%,58,58,413,14.00% +106516,359,3424,State-funded primary,209,110,99,52.60%,47.40%,8,3.80%,38,18.20%,26,183,0,12.40%,87.60%,0.00%,59,60,209,28.70% +106517,359,3425,State-funded primary,210,96,114,45.70%,54.30%,3,1.40%,36,17.10%,18,192,0,8.60%,91.40%,0.00%,40,40,210,19.00% +106518,359,3426,State-funded primary,211,113,98,53.60%,46.40%,6,2.80%,20,9.50%,1,210,0,0.50%,99.50%,0.00%,24,24,211,11.40% +106521,359,4015,State-funded secondary,1040,515,525,49.50%,50.50%,30,2.90%,126,12.10%,20,1020,0,1.90%,98.10%,0.00%,237,259,1040,24.90% +106523,359,4019,State-funded secondary,1081,558,523,51.60%,48.40%,21,1.90%,139,12.90%,107,974,0,9.90%,90.10%,0.00%,357,378,1081,35.00% +106525,359,4022,State-funded secondary,1117,539,578,48.30%,51.70%,25,2.20%,146,13.10%,36,1079,2,3.20%,96.60%,0.20%,229,249,1117,22.30% +106529,359,4027,State-funded secondary,841,435,406,51.70%,48.30%,17,2.00%,95,11.30%,47,794,0,5.60%,94.40%,0.00%,152,160,841,19.00% +106534,359,4608,State-funded secondary,1432,722,710,50.40%,49.60%,30,2.10%,171,11.90%,118,1306,8,8.20%,91.20%,0.60%,344,344,1255,27.40% +106535,359,4609,State-funded secondary,999,485,514,48.50%,51.50%,24,2.40%,169,16.90%,133,866,0,13.30%,86.70%,0.00%,282,313,999,31.30% +106537,359,4614,State-funded secondary,1036,504,532,48.60%,51.40%,32,3.10%,105,10.10%,33,1003,0,3.20%,96.80%,0.00%,94,105,1036,10.10% +106538,359,4615,State-funded secondary,1561,790,771,50.60%,49.40%,18,1.20%,126,8.10%,133,1427,1,8.50%,91.40%,0.10%,256,262,1306,20.10% +106540,359,4805,State-funded secondary,1208,574,634,47.50%,52.50%,34,2.80%,114,9.40%,40,1168,0,3.30%,96.70%,0.00%,124,139,1208,11.50% +106543,359,7002,State-funded special school,227,85,142,37.40%,62.60%,214,94.30%,13,5.70%,14,213,0,6.20%,93.80%,0.00%,84,70,190,36.80% +106557,370,2009,State-funded primary,361,150,211,41.60%,58.40%,5,1.40%,45,12.50%,16,336,9,4.40%,93.10%,2.50%,61,61,323,18.90% +106564,370,2024,State-funded primary,316,142,174,44.90%,55.10%,8,2.50%,35,11.10%,47,265,4,14.90%,83.90%,1.30%,64,63,279,22.60% +106575,370,2052,State-funded primary,306,135,171,44.10%,55.90%,6,2.00%,26,8.50%,9,297,0,2.90%,97.10%,0.00%,30,32,306,10.50% +106579,370,2057,State-funded primary,275,137,138,49.80%,50.20%,8,2.90%,54,19.60%,9,266,0,3.30%,96.70%,0.00%,95,92,240,38.30% +106582,370,2066,State-funded primary,232,124,108,53.40%,46.60%,4,1.70%,34,14.70%,6,226,0,2.60%,97.40%,0.00%,46,46,210,21.90% +106584,370,2075,State-funded primary,135,68,67,50.40%,49.60%,4,3.00%,12,8.90%,1,134,0,0.70%,99.30%,0.00%,7,8,135,5.90% +106585,370,2076,State-funded primary,107,37,70,34.60%,65.40%,3,2.80%,18,16.80%,1,106,0,0.90%,99.10%,0.00%,4,4,107,3.70% +106586,370,2077,State-funded primary,122,61,61,50.00%,50.00%,5,4.10%,17,13.90%,2,120,0,1.60%,98.40%,0.00%,27,27,122,22.10% +106587,370,2078,State-funded primary,244,120,124,49.20%,50.80%,3,1.20%,19,7.80%,2,240,2,0.80%,98.40%,0.80%,29,25,208,12.00% +106588,370,2079,State-funded primary,183,94,89,51.40%,48.60%,5,2.70%,12,6.60%,1,182,0,0.50%,99.50%,0.00%,19,19,183,10.40% +106589,370,2082,State-funded primary,135,72,63,53.30%,46.70%,2,1.50%,18,13.30%,0,135,0,0.00%,100.00%,0.00%,13,15,135,11.10% +106591,370,2085,State-funded primary,232,117,115,50.40%,49.60%,7,3.00%,38,16.40%,15,217,0,6.50%,93.50%,0.00%,53,50,206,24.30% +106595,370,2089,State-funded primary,191,113,78,59.20%,40.80%,1,0.50%,19,9.90%,3,188,0,1.60%,98.40%,0.00%,40,42,191,22.00% +106599,370,2100,State-funded primary,302,149,153,49.30%,50.70%,13,4.30%,33,10.90%,7,288,7,2.30%,95.40%,2.30%,100,104,268,38.80% +106602,370,2107,State-funded primary,187,96,91,51.30%,48.70%,3,1.60%,14,7.50%,4,183,0,2.10%,97.90%,0.00%,13,13,187,7.00% +106603,370,2109,State-funded primary,213,118,95,55.40%,44.60%,8,3.80%,13,6.10%,3,209,1,1.40%,98.10%,0.50%,14,16,213,7.50% +106611,370,2123,State-funded primary,424,213,211,50.20%,49.80%,9,2.10%,40,9.40%,180,244,0,42.50%,57.50%,0.00%,132,132,368,35.90% +106618,370,2130,State-funded primary,234,120,114,51.30%,48.70%,5,2.10%,40,17.10%,11,223,0,4.70%,95.30%,0.00%,82,83,203,40.90% +106620,370,2132,State-funded primary,382,185,197,48.40%,51.60%,8,2.10%,38,9.90%,12,370,0,3.10%,96.90%,0.00%,139,128,334,38.30% +106621,370,2133,State-funded primary,315,140,175,44.40%,55.60%,8,2.50%,47,14.90%,13,279,23,4.10%,88.60%,7.30%,113,107,284,37.70% +106626,370,3004,State-funded primary,213,100,113,46.90%,53.10%,5,2.30%,21,9.90%,7,206,0,3.30%,96.70%,0.00%,22,25,213,11.70% +106627,370,3007,State-funded primary,163,78,85,47.90%,52.10%,2,1.20%,18,11.00%,0,162,1,0.00%,99.40%,0.60%,2,2,163,1.20% +106629,370,3011,State-funded primary,209,108,101,51.70%,48.30%,2,1.00%,25,12.00%,2,207,0,1.00%,99.00%,0.00%,42,45,209,21.50% +106632,370,3304,State-funded primary,221,119,102,53.80%,46.20%,2,0.90%,13,5.90%,116,105,0,52.50%,47.50%,0.00%,37,37,202,18.30% +106637,370,3313,State-funded primary,211,119,92,56.40%,43.60%,4,1.90%,24,11.40%,2,209,0,0.90%,99.10%,0.00%,26,26,182,14.30% +106638,370,3314,State-funded primary,232,109,123,47.00%,53.00%,8,3.40%,33,14.20%,1,231,0,0.40%,99.60%,0.00%,26,26,208,12.50% +106640,370,3317,State-funded primary,118,56,62,47.50%,52.50%,2,1.70%,21,17.80%,2,116,0,1.70%,98.30%,0.00%,50,51,118,43.20% +106641,370,3318,State-funded primary,137,68,69,49.60%,50.40%,2,1.50%,14,10.20%,35,102,0,25.50%,74.50%,0.00%,57,58,137,42.30% +106643,370,3320,State-funded primary,168,91,77,54.20%,45.80%,5,3.00%,13,7.70%,19,149,0,11.30%,88.70%,0.00%,55,51,142,35.90% +106653,370,4027,State-funded secondary,1879,925,954,49.20%,50.80%,70,3.70%,182,9.70%,19,1830,30,1.00%,97.40%,1.60%,199,218,1609,13.50% +106666,371,1103,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +106670,371,2054,State-funded primary,419,203,216,48.40%,51.60%,3,0.70%,91,21.70%,30,389,0,7.20%,92.80%,0.00%,110,114,372,30.60% +106676,371,2063,State-funded primary,75,38,37,50.70%,49.30%,2,2.70%,10,13.30%,5,70,0,6.70%,93.30%,0.00%,10,10,75,13.30% +106677,371,2067,State-funded primary,192,96,96,50.00%,50.00%,9,4.70%,47,24.50%,8,184,0,4.20%,95.80%,0.00%,112,104,164,63.40% +106694,371,2106,State-funded primary,229,107,122,46.70%,53.30%,4,1.70%,25,10.90%,4,225,0,1.70%,98.30%,0.00%,24,24,204,11.80% +106698,371,2115,State-funded primary,143,68,75,47.60%,52.40%,0,0.00%,31,21.70%,8,135,0,5.60%,94.40%,0.00%,46,39,107,36.40% +106703,371,2121,State-funded primary,343,159,184,46.40%,53.60%,3,0.90%,39,11.40%,12,331,0,3.50%,96.50%,0.00%,35,37,267,13.90% +106706,371,2128,State-funded primary,358,184,174,51.40%,48.60%,5,1.40%,41,11.50%,14,344,0,3.90%,96.10%,0.00%,78,81,358,22.60% +106707,371,2129,State-funded primary,212,112,100,52.80%,47.20%,1,0.50%,7,3.30%,6,206,0,2.80%,97.20%,0.00%,5,5,164,3.00% +106715,371,2144,State-funded primary,132,71,61,53.80%,46.20%,1,0.80%,15,11.40%,1,131,0,0.80%,99.20%,0.00%,23,26,132,19.70% +106718,371,2148,State-funded primary,225,112,113,49.80%,50.20%,2,0.90%,42,18.70%,6,219,0,2.70%,97.30%,0.00%,82,88,199,44.20% +106722,371,2157,State-funded primary,206,105,101,51.00%,49.00%,2,1.00%,24,11.70%,7,199,0,3.40%,96.60%,0.00%,16,17,206,8.30% +106725,371,2161,State-funded primary,217,112,105,51.60%,48.40%,5,2.30%,10,4.60%,5,212,0,2.30%,97.70%,0.00%,8,9,217,4.10% +106726,371,2163,State-funded primary,318,149,169,46.90%,53.10%,7,2.20%,42,13.20%,28,290,0,8.80%,91.20%,0.00%,107,110,258,42.60% +106728,371,2165,State-funded primary,447,224,223,50.10%,49.90%,9,2.00%,22,4.90%,255,192,0,57.00%,43.00%,0.00%,139,140,413,33.90% +106731,371,2168,State-funded primary,464,207,257,44.60%,55.40%,14,3.00%,30,6.50%,257,207,0,55.40%,44.60%,0.00%,137,136,420,32.40% +106737,371,2175,State-funded primary,222,114,108,51.40%,48.60%,0,0.00%,24,10.80%,5,217,0,2.30%,97.70%,0.00%,37,37,206,18.00% +106746,371,2184,State-funded primary,437,220,217,50.30%,49.70%,10,2.30%,43,9.80%,17,420,0,3.90%,96.10%,0.00%,72,73,407,17.90% +106747,371,2185,State-funded primary,310,154,156,49.70%,50.30%,1,0.30%,25,8.10%,24,286,0,7.70%,92.30%,0.00%,53,55,281,19.60% +106750,371,2188,State-funded primary,395,192,203,48.60%,51.40%,5,1.30%,47,11.90%,40,355,0,10.10%,89.90%,0.00%,139,141,362,39.00% +106751,371,2190,State-funded primary,292,152,140,52.10%,47.90%,6,2.10%,55,18.80%,52,240,0,17.80%,82.20%,0.00%,151,154,258,59.70% +106756,371,2195,State-funded primary,463,218,245,47.10%,52.90%,17,3.70%,58,12.50%,34,429,0,7.30%,92.70%,0.00%,57,59,412,14.30% +106762,371,3302,State-funded primary,228,106,122,46.50%,53.50%,1,0.40%,23,10.10%,103,125,0,45.20%,54.80%,0.00%,58,59,200,29.50% +106766,371,3311,State-funded primary,381,183,198,48.00%,52.00%,2,0.50%,38,10.00%,8,373,0,2.10%,97.90%,0.00%,72,72,336,21.40% +106767,371,3312,State-funded primary,190,92,98,48.40%,51.60%,6,3.20%,30,15.80%,5,185,0,2.60%,97.40%,0.00%,14,15,190,7.90% +106769,371,3314,State-funded primary,154,81,73,52.60%,47.40%,5,3.20%,19,12.30%,23,131,0,14.90%,85.10%,0.00%,44,40,137,29.20% +106770,371,3315,State-funded primary,140,73,67,52.10%,47.90%,3,2.10%,15,10.70%,27,113,0,19.30%,80.70%,0.00%,47,44,127,34.60% +106773,371,3318,State-funded primary,162,87,75,53.70%,46.30%,3,1.90%,17,10.50%,58,104,0,35.80%,64.20%,0.00%,43,47,146,32.20% +106777,371,3323,State-funded primary,226,106,120,46.90%,53.10%,5,2.20%,13,5.80%,9,217,0,4.00%,96.00%,0.00%,26,25,200,12.50% +106812,371,6000,Independent school,780,385,395,49.40%,50.60%,1,0.10%,78,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106816,371,6010,Independent school,22,10,12,45.50%,54.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106818,371,7002,Non-maintained special school,38,17,21,44.70%,55.30%,38,100.00%,0,0.00%,11,27,0,28.90%,71.10%,0.00%,19,21,38,55.30% +106826,372,1000,State-funded nursery,105,50,55,47.60%,52.40%,0,0.00%,36,34.30%,17,88,0,16.20%,83.80%,0.00%,0,0,0,0.00% +106827,372,1001,State-funded nursery,138,68,70,49.30%,50.70%,0,0.00%,35,25.40%,10,128,0,7.20%,92.80%,0.00%,0,0,0,0.00% +106828,372,1002,State-funded nursery,137,70,67,51.10%,48.90%,0,0.00%,16,11.70%,5,132,0,3.60%,96.40%,0.00%,0,0,0,0.00% +106833,372,2004,State-funded primary,558,286,272,51.30%,48.70%,24,4.30%,165,29.60%,138,420,0,24.70%,75.30%,0.00%,289,298,558,53.40% +106834,372,2005,State-funded primary,228,91,137,39.90%,60.10%,0,0.00%,40,17.50%,10,218,0,4.40%,95.60%,0.00%,53,54,203,26.60% +106835,372,2006,State-funded primary,397,192,205,48.40%,51.60%,2,0.50%,70,17.60%,241,148,8,60.70%,37.30%,2.00%,142,149,366,40.70% +106845,372,2022,State-funded primary,236,103,133,43.60%,56.40%,2,0.80%,37,15.70%,50,186,0,21.20%,78.80%,0.00%,94,93,211,44.10% +106849,372,2029,State-funded primary,325,170,155,52.30%,47.70%,6,1.80%,33,10.20%,165,154,6,50.80%,47.40%,1.80%,136,136,303,44.90% +106851,372,2034,State-funded primary,295,141,154,47.80%,52.20%,3,1.00%,48,16.30%,102,193,0,34.60%,65.40%,0.00%,72,72,259,27.80% +106858,372,2042,State-funded primary,217,106,111,48.80%,51.20%,3,1.40%,28,12.90%,101,116,0,46.50%,53.50%,0.00%,31,31,217,14.30% +106859,372,2050,State-funded primary,209,97,112,46.40%,53.60%,4,1.90%,20,9.60%,9,200,0,4.30%,95.70%,0.00%,12,12,209,5.70% +106860,372,2051,State-funded primary,214,112,102,52.30%,47.70%,5,2.30%,19,8.90%,8,206,0,3.70%,96.30%,0.00%,55,53,186,28.50% +106861,372,2052,State-funded primary,329,159,170,48.30%,51.70%,14,4.30%,30,9.10%,6,323,0,1.80%,98.20%,0.00%,70,73,329,22.20% +106864,372,2055,State-funded primary,235,114,121,48.50%,51.50%,4,1.70%,29,12.30%,16,219,0,6.80%,93.20%,0.00%,33,33,200,16.50% +106875,372,2070,State-funded primary,228,114,114,50.00%,50.00%,5,2.20%,82,36.00%,7,221,0,3.10%,96.90%,0.00%,83,84,228,36.80% +106876,372,2071,State-funded primary,160,90,70,56.30%,43.80%,6,3.80%,42,26.30%,9,150,1,5.60%,93.80%,0.60%,58,58,160,36.30% +106883,372,2081,State-funded primary,210,93,117,44.30%,55.70%,9,4.30%,17,8.10%,13,197,0,6.20%,93.80%,0.00%,22,23,210,11.00% +106895,372,2094,State-funded primary,279,128,151,45.90%,54.10%,4,1.40%,30,10.80%,6,273,0,2.20%,97.80%,0.00%,21,21,227,9.30% +106896,372,2095,State-funded primary,220,98,122,44.50%,55.50%,3,1.40%,29,13.20%,0,220,0,0.00%,100.00%,0.00%,51,55,220,25.00% +106907,372,2106,State-funded primary,214,116,98,54.20%,45.80%,2,0.90%,26,12.10%,7,207,0,3.30%,96.70%,0.00%,14,16,214,7.50% +106910,372,2110,State-funded primary,214,112,102,52.30%,47.70%,7,3.30%,39,18.20%,3,211,0,1.40%,98.60%,0.00%,39,42,214,19.60% +106942,372,3337,State-funded primary,236,111,125,47.00%,53.00%,9,3.80%,16,6.80%,20,216,0,8.50%,91.50%,0.00%,45,38,204,18.60% +106944,372,3339,State-funded primary,194,100,94,51.50%,48.50%,6,3.10%,23,11.90%,27,167,0,13.90%,86.10%,0.00%,67,69,194,35.60% +106962,372,4601,State-funded secondary,684,357,327,52.20%,47.80%,36,5.30%,112,16.40%,68,616,0,9.90%,90.10%,0.00%,160,183,684,26.80% +106965,370,6004,Independent school,129,22,107,17.10%,82.90%,129,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +106966,372,7000,State-funded special school,156,64,92,41.00%,59.00%,152,97.40%,4,2.60%,9,147,0,5.80%,94.20%,0.00%,81,69,124,55.60% +106970,372,7009,State-funded special school,175,56,119,32.00%,68.00%,175,100.00%,0,0.00%,12,163,0,6.90%,93.10%,0.00%,83,82,151,54.30% +106973,373,1000,State-funded nursery,90,41,49,45.60%,54.40%,4,4.40%,19,21.10%,46,44,0,51.10%,48.90%,0.00%,24,0,0,0.00% +106975,373,1002,State-funded nursery,113,54,59,47.80%,52.20%,7,6.20%,26,23.00%,15,98,0,13.30%,86.70%,0.00%,38,0,1,0.00% +106982,373,2001,State-funded primary,545,274,271,50.30%,49.70%,3,0.60%,40,7.30%,22,523,0,4.00%,96.00%,0.00%,81,83,545,15.20% +106987,373,2014,State-funded primary,227,111,116,48.90%,51.10%,2,0.90%,33,14.50%,114,113,0,50.20%,49.80%,0.00%,72,60,174,34.50% +106988,373,2023,State-funded primary,237,117,120,49.40%,50.60%,5,2.10%,42,17.70%,42,195,0,17.70%,82.30%,0.00%,33,34,237,14.30% +106991,373,2036,State-funded primary,430,196,234,45.60%,54.40%,13,3.00%,73,17.00%,21,401,8,4.90%,93.30%,1.90%,128,129,398,32.40% +106994,373,2058,State-funded primary,360,171,189,47.50%,52.50%,7,1.90%,28,7.80%,85,275,0,23.60%,76.40%,0.00%,53,53,360,14.70% +106995,373,2060,State-funded primary,269,119,150,44.20%,55.80%,1,0.40%,20,7.40%,59,209,1,21.90%,77.70%,0.40%,24,24,269,8.90% +106996,373,2063,State-funded primary,415,211,204,50.80%,49.20%,4,1.00%,70,16.90%,15,400,0,3.60%,96.40%,0.00%,118,118,415,28.40% +106997,373,2070,State-funded primary,405,193,212,47.70%,52.30%,3,0.70%,48,11.90%,340,65,0,84.00%,16.00%,0.00%,169,177,405,43.70% +106998,373,2071,State-funded primary,481,242,239,50.30%,49.70%,7,1.50%,50,10.40%,97,383,1,20.20%,79.60%,0.20%,57,61,481,12.70% +106999,373,2072,State-funded primary,354,163,191,46.00%,54.00%,8,2.30%,10,2.80%,85,268,1,24.00%,75.70%,0.30%,27,27,354,7.60% +107000,373,2079,State-funded primary,503,267,236,53.10%,46.90%,3,0.60%,20,4.00%,29,474,0,5.80%,94.20%,0.00%,78,81,503,16.10% +107001,373,2080,State-funded primary,399,187,212,46.90%,53.10%,5,1.30%,50,12.50%,26,373,0,6.50%,93.50%,0.00%,122,124,399,31.10% +107002,373,2081,State-funded primary,238,113,125,47.50%,52.50%,3,1.30%,23,9.70%,21,216,1,8.80%,90.80%,0.40%,27,23,207,11.10% +107004,373,2087,State-funded primary,378,174,204,46.00%,54.00%,26,6.90%,54,14.30%,54,324,0,14.30%,85.70%,0.00%,41,42,378,11.10% +107006,373,2092,State-funded primary,415,197,218,47.50%,52.50%,1,0.20%,23,5.50%,3,411,1,0.70%,99.00%,0.20%,51,54,415,13.00% +107025,373,2206,State-funded primary,620,277,343,44.70%,55.30%,11,1.80%,48,7.70%,84,533,3,13.50%,86.00%,0.50%,29,33,620,5.30% +107026,373,2213,State-funded primary,179,72,107,40.20%,59.80%,2,1.10%,37,20.70%,12,166,1,6.70%,92.70%,0.60%,25,25,179,14.00% +107029,373,2221,State-funded primary,224,102,122,45.50%,54.50%,8,3.60%,24,10.70%,45,179,0,20.10%,79.90%,0.00%,14,14,224,6.30% +107033,373,2233,State-funded primary,412,212,200,51.50%,48.50%,10,2.40%,56,13.60%,26,386,0,6.30%,93.70%,0.00%,71,73,412,17.70% +107035,373,2239,State-funded primary,384,187,197,48.70%,51.30%,13,3.40%,56,14.60%,54,330,0,14.10%,85.90%,0.00%,20,21,384,5.50% +107036,373,2241,State-funded primary,281,160,121,56.90%,43.10%,2,0.70%,31,11.00%,9,272,0,3.20%,96.80%,0.00%,45,44,239,18.40% +107038,373,2252,State-funded primary,198,105,93,53.00%,47.00%,4,2.00%,13,6.60%,8,190,0,4.00%,96.00%,0.00%,55,51,157,32.50% +107039,373,2257,State-funded primary,420,221,199,52.60%,47.40%,5,1.20%,35,8.30%,14,406,0,3.30%,96.70%,0.00%,72,72,420,17.10% +107040,373,2261,State-funded primary,228,111,117,48.70%,51.30%,2,0.90%,49,21.50%,92,136,0,40.40%,59.60%,0.00%,72,76,228,33.30% +107043,373,2272,State-funded primary,260,140,120,53.80%,46.20%,13,5.00%,53,20.40%,232,28,0,89.20%,10.80%,0.00%,126,112,215,52.10% +107046,373,2279,State-funded primary,205,101,104,49.30%,50.70%,4,2.00%,30,14.60%,8,197,0,3.90%,96.10%,0.00%,58,60,205,29.30% +107047,373,2281,State-funded primary,443,212,231,47.90%,52.10%,5,1.10%,46,10.40%,22,421,0,5.00%,95.00%,0.00%,70,72,414,17.40% +107048,373,2283,State-funded primary,308,135,173,43.80%,56.20%,3,1.00%,35,11.40%,42,266,0,13.60%,86.40%,0.00%,6,6,270,2.20% +107051,373,2296,State-funded primary,325,156,169,48.00%,52.00%,3,0.90%,34,10.50%,10,315,0,3.10%,96.90%,0.00%,75,76,325,23.40% +107052,373,2297,State-funded primary,191,96,95,50.30%,49.70%,2,1.00%,50,26.20%,0,191,0,0.00%,100.00%,0.00%,28,28,191,14.70% +107055,373,2303,State-funded primary,292,154,138,52.70%,47.30%,9,3.10%,38,13.00%,9,283,0,3.10%,96.90%,0.00%,77,82,292,28.10% +107057,373,2306,State-funded primary,201,105,96,52.20%,47.80%,1,0.50%,25,12.40%,8,193,0,4.00%,96.00%,0.00%,52,31,122,25.40% +107060,373,2312,State-funded primary,207,102,105,49.30%,50.70%,2,1.00%,25,12.10%,8,199,0,3.90%,96.10%,0.00%,32,33,207,15.90% +107064,373,2319,State-funded primary,166,75,91,45.20%,54.80%,8,4.80%,32,19.30%,7,159,0,4.20%,95.80%,0.00%,53,48,135,35.60% +107066,373,2322,State-funded primary,454,230,224,50.70%,49.30%,9,2.00%,142,31.30%,136,318,0,30.00%,70.00%,0.00%,305,272,378,72.00% +107069,373,2325,State-funded primary,462,227,235,49.10%,50.90%,5,1.10%,81,17.50%,24,438,0,5.20%,94.80%,0.00%,162,146,411,35.50% +107073,373,2329,State-funded primary,223,106,117,47.50%,52.50%,2,0.90%,61,27.40%,208,15,0,93.30%,6.70%,0.00%,86,86,207,41.50% +107077,373,2334,State-funded primary,275,119,156,43.30%,56.70%,5,1.80%,45,16.40%,5,270,0,1.80%,98.20%,0.00%,83,85,244,34.80% +107081,373,2338,State-funded primary,423,210,213,49.60%,50.40%,6,1.40%,39,9.20%,92,331,0,21.70%,78.30%,0.00%,68,73,390,18.70% +107083,373,2340,State-funded primary,615,320,295,52.00%,48.00%,3,0.50%,58,9.40%,91,524,0,14.80%,85.20%,0.00%,191,198,615,32.20% +107085,373,2342,State-funded primary,216,107,109,49.50%,50.50%,5,2.30%,53,24.50%,6,210,0,2.80%,97.20%,0.00%,84,83,184,45.10% +107086,373,2343,State-funded primary,373,177,196,47.50%,52.50%,2,0.50%,47,12.60%,136,236,1,36.50%,63.30%,0.30%,142,133,333,39.90% +107087,373,2344,State-funded primary,612,307,305,50.20%,49.80%,12,2.00%,64,10.50%,72,522,18,11.80%,85.30%,2.90%,145,147,578,25.40% +107090,373,2347,State-funded primary,446,220,226,49.30%,50.70%,12,2.70%,81,18.20%,125,321,0,28.00%,72.00%,0.00%,223,220,412,53.40% +107092,373,2349,State-funded primary,408,190,218,46.60%,53.40%,4,1.00%,47,11.50%,39,369,0,9.60%,90.40%,0.00%,93,90,360,25.00% +107093,373,2350,State-funded primary,478,237,241,49.60%,50.40%,36,7.50%,117,24.50%,45,433,0,9.40%,90.60%,0.00%,212,208,411,50.60% +107094,373,2351,State-funded primary,423,210,213,49.60%,50.40%,3,0.70%,26,6.10%,105,318,0,24.80%,75.20%,0.00%,100,97,385,25.20% +107095,373,2352,State-funded primary,614,290,324,47.20%,52.80%,6,1.00%,78,12.70%,191,423,0,31.10%,68.90%,0.00%,97,96,575,16.70% +107098,373,2356,State-funded primary,621,310,311,49.90%,50.10%,16,2.60%,41,6.60%,82,539,0,13.20%,86.80%,0.00%,48,51,621,8.20% +107102,373,2360,State-funded primary,102,44,58,43.10%,56.90%,1,1.00%,26,25.50%,3,99,0,2.90%,97.10%,0.00%,62,58,86,67.40% +107106,373,3010,State-funded primary,215,108,107,50.20%,49.80%,1,0.50%,23,10.70%,1,214,0,0.50%,99.50%,0.00%,27,28,215,13.00% +107107,373,3428,State-funded primary,202,108,94,53.50%,46.50%,2,1.00%,32,15.80%,6,196,0,3.00%,97.00%,0.00%,52,54,202,26.70% +107117,373,3422,State-funded primary,176,84,92,47.70%,52.30%,2,1.10%,31,17.60%,4,172,0,2.30%,97.70%,0.00%,35,39,176,22.20% +107140,373,4259,State-funded secondary,1776,931,845,52.40%,47.60%,18,1.00%,198,11.10%,482,1293,1,27.10%,72.80%,0.10%,407,340,1135,30.00% +107150,373,5200,State-funded primary,197,108,89,54.80%,45.20%,4,2.00%,42,21.30%,33,163,1,16.80%,82.70%,0.50%,25,25,197,12.70% +107154,373,5204,State-funded primary,116,59,57,50.90%,49.10%,1,0.90%,9,7.80%,44,71,1,37.90%,61.20%,0.90%,11,11,116,9.50% +107158,373,5208,State-funded primary,234,118,116,50.40%,49.60%,2,0.90%,51,21.80%,91,143,0,38.90%,61.10%,0.00%,63,66,206,32.00% +107162,373,6001,Independent school,402,182,220,45.30%,54.70%,2,0.50%,104,25.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107163,373,6005,Independent school,793,91,702,11.50%,88.50%,1,0.10%,131,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107165,373,6017,Independent school,174,85,89,48.90%,51.10%,4,2.30%,28,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107166,373,6021,Independent school,777,777,0,100.00%,0.00%,3,0.40%,132,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107168,373,6027,Independent school,94,41,53,43.60%,56.40%,0,0.00%,22,23.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107169,373,7010,State-funded special school,302,62,240,20.50%,79.50%,302,100.00%,0,0.00%,33,266,3,10.90%,88.10%,1.00%,155,144,258,55.80% +107171,373,7013,State-funded special school,99,18,81,18.20%,81.80%,99,100.00%,0,0.00%,28,71,0,28.30%,71.70%,0.00%,42,42,99,42.40% +107177,373,7023,State-funded special school,96,36,60,37.50%,62.50%,96,100.00%,0,0.00%,31,57,8,32.30%,59.40%,8.30%,52,51,91,56.00% +107178,373,7024,State-funded special school,217,69,148,31.80%,68.20%,217,100.00%,0,0.00%,51,165,1,23.50%,76.00%,0.50%,123,94,170,55.30% +107180,373,7026,State-funded special school,103,42,61,40.80%,59.20%,103,100.00%,0,0.00%,32,70,1,31.10%,68.00%,1.00%,60,58,97,59.80% +107182,373,7036,State-funded special school,161,33,128,20.50%,79.50%,161,100.00%,0,0.00%,32,129,0,19.90%,80.10%,0.00%,89,89,161,55.30% +107185,380,1000,State-funded nursery,78,39,39,50.00%,50.00%,9,11.50%,30,38.50%,12,66,0,15.40%,84.60%,0.00%,11,0,0,0.00% +107186,380,1001,State-funded nursery,78,38,40,48.70%,51.30%,5,6.40%,8,10.30%,4,74,0,5.10%,94.90%,0.00%,9,0,0,0.00% +107187,380,1002,State-funded nursery,130,64,66,49.20%,50.80%,1,0.80%,0,0.00%,56,74,0,43.10%,56.90%,0.00%,1,0,0,0.00% +107188,380,1008,State-funded nursery,89,40,49,44.90%,55.10%,9,10.10%,30,33.70%,59,30,0,66.30%,33.70%,0.00%,0,0,0,0.00% +107189,380,1009,State-funded nursery,90,43,47,47.80%,52.20%,9,10.00%,16,17.80%,24,66,0,26.70%,73.30%,0.00%,3,0,0,0.00% +107190,380,1010,State-funded nursery,267,126,141,47.20%,52.80%,8,3.00%,19,7.10%,77,190,0,28.80%,71.20%,0.00%,3,0,0,0.00% +107204,380,2027,State-funded primary,417,212,205,50.80%,49.20%,6,1.40%,70,16.80%,286,126,5,68.60%,30.20%,1.20%,108,108,378,28.60% +107212,380,2043,State-funded primary,578,313,265,54.20%,45.80%,14,2.40%,77,13.30%,431,146,1,74.60%,25.30%,0.20%,184,187,536,34.90% +107218,380,2054,State-funded primary,447,225,222,50.30%,49.70%,8,1.80%,72,16.10%,270,177,0,60.40%,39.60%,0.00%,118,120,408,29.40% +107219,380,2055,State-funded primary,344,170,174,49.40%,50.60%,3,0.90%,43,12.50%,71,273,0,20.60%,79.40%,0.00%,79,82,311,26.40% +107220,380,2057,State-funded primary,504,253,251,50.20%,49.80%,27,5.40%,54,10.70%,79,425,0,15.70%,84.30%,0.00%,157,165,426,38.70% +107221,380,2058,State-funded primary,469,230,239,49.00%,51.00%,7,1.50%,61,13.00%,14,455,0,3.00%,97.00%,0.00%,49,53,419,12.60% +107224,380,2062,State-funded primary,414,202,212,48.80%,51.20%,15,3.60%,44,10.60%,23,383,8,5.60%,92.50%,1.90%,53,56,414,13.50% +107230,380,2071,State-funded primary,485,243,242,50.10%,49.90%,9,1.90%,71,14.60%,171,314,0,35.30%,64.70%,0.00%,114,120,422,28.40% +107233,380,2074,State-funded primary,684,363,321,53.10%,46.90%,8,1.20%,91,13.30%,73,611,0,10.70%,89.30%,0.00%,201,210,627,33.50% +107237,380,2081,State-funded primary,206,96,110,46.60%,53.40%,4,1.90%,21,10.20%,23,183,0,11.20%,88.80%,0.00%,37,39,206,18.90% +107238,380,2084,State-funded primary,446,220,226,49.30%,50.70%,7,1.60%,49,11.00%,42,404,0,9.40%,90.60%,0.00%,217,222,403,55.10% +107240,380,2087,State-funded primary,331,160,171,48.30%,51.70%,16,4.80%,44,13.30%,52,279,0,15.70%,84.30%,0.00%,169,170,261,65.10% +107241,380,2090,State-funded primary,424,213,211,50.20%,49.80%,4,0.90%,59,13.90%,167,257,0,39.40%,60.60%,0.00%,187,194,388,50.00% +107243,380,2094,State-funded primary,457,217,240,47.50%,52.50%,21,4.60%,82,17.90%,51,405,1,11.20%,88.60%,0.20%,216,204,421,48.50% +107246,380,2100,State-funded primary,211,113,98,53.60%,46.40%,9,4.30%,23,10.90%,3,208,0,1.40%,98.60%,0.00%,52,56,211,26.50% +107247,380,2101,State-funded primary,396,194,202,49.00%,51.00%,9,2.30%,47,11.90%,168,228,0,42.40%,57.60%,0.00%,97,102,349,29.20% +107248,380,2102,State-funded primary,271,149,122,55.00%,45.00%,6,2.20%,27,10.00%,136,135,0,50.20%,49.80%,0.00%,48,48,216,22.20% +107249,380,2103,State-funded primary,271,142,129,52.40%,47.60%,24,8.90%,25,9.20%,146,124,1,53.90%,45.80%,0.40%,100,102,216,47.20% +107250,380,2107,State-funded primary,438,224,214,51.10%,48.90%,6,1.40%,56,12.80%,198,240,0,45.20%,54.80%,0.00%,93,99,403,24.60% +107253,380,2111,State-funded primary,466,227,239,48.70%,51.30%,26,5.60%,58,12.40%,15,451,0,3.20%,96.80%,0.00%,59,63,431,14.60% +107255,380,2113,State-funded primary,546,274,272,50.20%,49.80%,5,0.90%,68,12.50%,27,519,0,4.90%,95.10%,0.00%,26,26,511,5.10% +107262,380,2124,State-funded primary,402,215,187,53.50%,46.50%,10,2.50%,110,27.40%,50,352,0,12.40%,87.60%,0.00%,177,181,372,48.70% +107265,380,2128,State-funded primary,380,186,194,48.90%,51.10%,16,4.20%,67,17.60%,38,342,0,10.00%,90.00%,0.00%,109,111,346,32.10% +107268,380,2134,State-funded primary,118,60,58,50.80%,49.20%,2,1.70%,10,8.50%,0,118,0,0.00%,100.00%,0.00%,8,11,102,10.80% +107270,380,2140,State-funded primary,417,235,182,56.40%,43.60%,17,4.10%,29,7.00%,21,396,0,5.00%,95.00%,0.00%,61,64,417,15.30% +107272,380,2145,State-funded primary,479,218,261,45.50%,54.50%,12,2.50%,31,6.50%,19,460,0,4.00%,96.00%,0.00%,76,77,443,17.40% +107273,380,2146,State-funded primary,631,292,339,46.30%,53.70%,5,0.80%,59,9.40%,21,610,0,3.30%,96.70%,0.00%,95,97,593,16.40% +107274,380,2147,State-funded primary,209,107,102,51.20%,48.80%,2,1.00%,23,11.00%,14,195,0,6.70%,93.30%,0.00%,20,20,209,9.60% +107275,380,2148,State-funded primary,290,143,147,49.30%,50.70%,3,1.00%,30,10.30%,112,178,0,38.60%,61.40%,0.00%,49,49,290,16.90% +107277,380,2150,State-funded primary,356,171,185,48.00%,52.00%,13,3.70%,31,8.70%,15,340,1,4.20%,95.50%,0.30%,35,35,328,10.70% +107281,380,2166,State-funded primary,192,100,92,52.10%,47.90%,4,2.10%,23,12.00%,12,180,0,6.30%,93.80%,0.00%,13,13,192,6.80% +107283,380,2168,State-funded primary,300,151,149,50.30%,49.70%,12,4.00%,51,17.00%,22,277,1,7.30%,92.30%,0.30%,74,76,300,25.30% +107286,380,2173,State-funded primary,188,90,98,47.90%,52.10%,3,1.60%,19,10.10%,3,185,0,1.60%,98.40%,0.00%,8,8,188,4.30% +107287,380,2174,State-funded primary,457,215,242,47.00%,53.00%,6,1.30%,42,9.20%,13,444,0,2.80%,97.20%,0.00%,45,47,415,11.30% +107293,380,2182,State-funded primary,490,226,264,46.10%,53.90%,42,8.60%,100,20.40%,419,71,0,85.50%,14.50%,0.00%,155,156,411,38.00% +107299,380,2192,State-funded primary,402,196,206,48.80%,51.20%,2,0.50%,50,12.40%,3,399,0,0.70%,99.30%,0.00%,11,11,402,2.70% +107303,380,3013,State-funded primary,421,209,212,49.60%,50.40%,11,2.60%,46,10.90%,183,237,1,43.50%,56.30%,0.20%,137,139,384,36.20% +107305,380,3021,State-funded primary,210,101,109,48.10%,51.90%,5,2.40%,27,12.90%,31,179,0,14.80%,85.20%,0.00%,71,71,210,33.80% +107307,380,3023,State-funded primary,409,195,214,47.70%,52.30%,5,1.20%,46,11.20%,15,394,0,3.70%,96.30%,0.00%,71,71,409,17.40% +107309,380,3026,State-funded primary,355,168,187,47.30%,52.70%,6,1.70%,12,3.40%,11,344,0,3.10%,96.90%,0.00%,15,21,355,5.90% +107313,380,3031,State-funded primary,199,94,105,47.20%,52.80%,2,1.00%,11,5.50%,1,198,0,0.50%,99.50%,0.00%,4,4,199,2.00% +107319,380,3301,State-funded primary,205,102,103,49.80%,50.20%,2,1.00%,34,16.60%,9,196,0,4.40%,95.60%,0.00%,54,55,205,26.80% +107320,380,3304,State-funded primary,417,215,202,51.60%,48.40%,12,2.90%,37,8.90%,12,405,0,2.90%,97.10%,0.00%,25,31,417,7.40% +107321,380,3308,State-funded primary,412,201,211,48.80%,51.20%,6,1.50%,69,16.70%,62,350,0,15.00%,85.00%,0.00%,88,89,412,21.60% +107323,380,3313,State-funded primary,448,218,230,48.70%,51.30%,8,1.80%,53,11.80%,308,140,0,68.80%,31.30%,0.00%,167,172,401,42.90% +107329,380,3347,State-funded primary,220,113,107,51.40%,48.60%,3,1.40%,21,9.50%,140,80,0,63.60%,36.40%,0.00%,82,84,198,42.40% +107336,380,3355,State-funded primary,230,121,109,52.60%,47.40%,4,1.70%,43,18.70%,51,179,0,22.20%,77.80%,0.00%,58,59,203,29.10% +107338,380,3362,State-funded primary,227,121,106,53.30%,46.70%,0,0.00%,43,18.90%,40,186,1,17.60%,81.90%,0.40%,69,74,216,34.30% +107339,380,3363,State-funded primary,358,177,181,49.40%,50.60%,9,2.50%,57,15.90%,299,59,0,83.50%,16.50%,0.00%,94,95,329,28.90% +107340,380,3365,State-funded primary,435,211,224,48.50%,51.50%,13,3.00%,54,12.40%,189,246,0,43.40%,56.60%,0.00%,116,118,370,31.90% +107395,380,4074,State-funded secondary,1467,729,738,49.70%,50.30%,90,6.10%,237,16.20%,99,1363,5,6.70%,92.90%,0.30%,341,348,1262,27.60% +107431,380,5200,State-funded primary,734,366,368,49.90%,50.10%,15,2.00%,207,28.20%,316,418,0,43.10%,56.90%,0.00%,149,154,626,24.60% +107432,380,5201,State-funded primary,235,105,130,44.70%,55.30%,2,0.90%,14,6.00%,11,224,0,4.70%,95.30%,0.00%,24,26,208,12.50% +107433,380,5202,State-funded primary,225,111,114,49.30%,50.70%,7,3.10%,41,18.20%,8,217,0,3.60%,96.40%,0.00%,52,54,208,26.00% +107434,380,5203,State-funded primary,239,99,140,41.40%,58.60%,7,2.90%,15,6.30%,8,231,0,3.30%,96.70%,0.00%,42,43,208,20.70% +107437,380,5206,State-funded primary,236,114,122,48.30%,51.70%,1,0.40%,24,10.20%,16,220,0,6.80%,93.20%,0.00%,28,27,212,12.70% +107438,380,5207,State-funded primary,118,64,54,54.20%,45.80%,2,1.70%,24,20.30%,5,113,0,4.20%,95.80%,0.00%,9,9,106,8.50% +107439,380,5400,State-funded secondary,1915,905,1010,47.30%,52.70%,23,1.20%,67,3.50%,332,1573,10,17.30%,82.10%,0.50%,367,352,1581,22.30% +107449,380,6017,Independent school,110,36,74,32.70%,67.30%,1,0.90%,1,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107450,380,6060,Independent school,117,72,45,61.50%,38.50%,0,0.00%,8,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107453,815,6101,Independent school,141,61,80,43.30%,56.70%,1,0.70%,15,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107455,380,6103,Independent school,1057,484,573,45.80%,54.20%,0,0.00%,147,13.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107458,380,6107,Independent school,145,70,75,48.30%,51.70%,0,0.00%,33,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107460,380,6109,Independent school,425,425,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107461,380,6110,Independent school,147,70,77,47.60%,52.40%,25,17.00%,15,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107478,381,2003,State-funded primary,211,113,98,53.60%,46.40%,9,4.30%,33,15.60%,24,187,0,11.40%,88.60%,0.00%,76,74,185,40.00% +107480,381,2006,State-funded primary,288,140,148,48.60%,51.40%,8,2.80%,29,10.10%,8,280,0,2.80%,97.20%,0.00%,28,29,288,10.10% +107482,381,2009,State-funded primary,379,184,195,48.50%,51.50%,18,4.70%,54,14.20%,177,201,1,46.70%,53.00%,0.30%,90,93,379,24.50% +107486,381,2015,State-funded primary,439,211,228,48.10%,51.90%,17,3.90%,63,14.40%,5,434,0,1.10%,98.90%,0.00%,47,47,404,11.60% +107487,381,2017,State-funded primary,590,314,276,53.20%,46.80%,10,1.70%,86,14.60%,398,192,0,67.50%,32.50%,0.00%,175,169,523,32.30% +107490,381,2021,State-funded primary,209,104,105,49.80%,50.20%,3,1.40%,16,7.70%,23,186,0,11.00%,89.00%,0.00%,40,40,209,19.10% +107495,381,2030,State-funded primary,137,65,72,47.40%,52.60%,1,0.70%,21,15.30%,3,134,0,2.20%,97.80%,0.00%,20,20,137,14.60% +107497,381,2033,State-funded primary,344,163,181,47.40%,52.60%,15,4.40%,50,14.50%,75,269,0,21.80%,78.20%,0.00%,173,168,306,54.90% +107499,381,2040,State-funded primary,198,99,99,50.00%,50.00%,3,1.50%,21,10.60%,5,193,0,2.50%,97.50%,0.00%,25,25,198,12.60% +107500,381,2042,State-funded primary,338,157,181,46.40%,53.60%,11,3.30%,13,3.80%,3,335,0,0.90%,99.10%,0.00%,68,70,313,22.40% +107501,381,5207,State-funded primary,415,210,205,50.60%,49.40%,5,1.20%,56,13.50%,35,380,0,8.40%,91.60%,0.00%,105,109,375,29.10% +107502,381,2046,State-funded primary,346,168,178,48.60%,51.40%,11,3.20%,70,20.20%,7,338,1,2.00%,97.70%,0.30%,80,71,315,22.50% +107505,381,2050,State-funded primary,180,81,99,45.00%,55.00%,3,1.70%,24,13.30%,6,174,0,3.30%,96.70%,0.00%,43,42,164,25.60% +107507,381,2054,State-funded primary,71,31,40,43.70%,56.30%,13,18.30%,6,8.50%,6,65,0,8.50%,91.50%,0.00%,9,10,60,16.70% +107510,381,2057,State-funded primary,51,18,33,35.30%,64.70%,0,0.00%,2,3.90%,6,45,0,11.80%,88.20%,0.00%,6,4,34,11.80% +107511,381,2058,State-funded primary,66,39,27,59.10%,40.90%,0,0.00%,3,4.50%,1,65,0,1.50%,98.50%,0.00%,5,6,66,9.10% +107512,381,2059,State-funded primary,88,40,48,45.50%,54.50%,5,5.70%,14,15.90%,2,86,0,2.30%,97.70%,0.00%,14,14,79,17.70% +107513,381,2060,State-funded primary,250,126,124,50.40%,49.60%,4,1.60%,40,16.00%,0,250,0,0.00%,100.00%,0.00%,22,22,250,8.80% +107514,381,2061,State-funded primary,194,92,102,47.40%,52.60%,6,3.10%,15,7.70%,4,190,0,2.10%,97.90%,0.00%,29,29,194,14.90% +107517,381,2065,State-funded primary,95,48,47,50.50%,49.50%,1,1.10%,5,5.30%,1,94,0,1.10%,98.90%,0.00%,6,6,95,6.30% +107518,381,2066,State-funded primary,159,78,81,49.10%,50.90%,5,3.10%,32,20.10%,4,155,0,2.50%,97.50%,0.00%,61,65,159,40.90% +107519,381,2067,State-funded primary,81,39,42,48.10%,51.90%,4,4.90%,5,6.20%,2,79,0,2.50%,97.50%,0.00%,25,23,65,35.40% +107520,381,2068,State-funded primary,188,84,104,44.70%,55.30%,3,1.60%,22,11.70%,1,187,0,0.50%,99.50%,0.00%,32,33,179,18.40% +107521,381,2069,State-funded primary,170,75,95,44.10%,55.90%,8,4.70%,30,17.60%,4,166,0,2.40%,97.60%,0.00%,62,61,149,40.90% +107522,381,2073,State-funded primary,202,98,104,48.50%,51.50%,4,2.00%,20,9.90%,5,197,0,2.50%,97.50%,0.00%,32,29,178,16.30% +107524,381,2075,State-funded primary,72,36,36,50.00%,50.00%,1,1.40%,15,20.80%,1,71,0,1.40%,98.60%,0.00%,12,12,72,16.70% +107525,381,2076,State-funded primary,192,84,108,43.80%,56.30%,22,11.50%,32,16.70%,8,184,0,4.20%,95.80%,0.00%,94,85,170,50.00% +107528,381,2081,State-funded primary,420,193,227,46.00%,54.00%,5,1.20%,28,6.70%,16,404,0,3.80%,96.20%,0.00%,24,26,420,6.20% +107529,381,2082,State-funded primary,143,75,68,52.40%,47.60%,6,4.20%,21,14.70%,7,135,1,4.90%,94.40%,0.70%,31,33,143,23.10% +107533,381,2087,State-funded primary,334,154,180,46.10%,53.90%,12,3.60%,37,11.10%,37,297,0,11.10%,88.90%,0.00%,125,120,308,39.00% +107534,381,2093,State-funded primary,487,236,251,48.50%,51.50%,25,5.10%,151,31.00%,14,473,0,2.90%,97.10%,0.00%,236,241,413,58.40% +107535,381,3001,State-funded primary,171,84,87,49.10%,50.90%,21,12.30%,27,15.80%,23,148,0,13.50%,86.50%,0.00%,102,103,171,60.20% +107537,381,3010,State-funded primary,75,29,46,38.70%,61.30%,2,2.70%,12,16.00%,0,75,0,0.00%,100.00%,0.00%,9,12,75,16.00% +107538,381,3011,State-funded primary,97,47,50,48.50%,51.50%,0,0.00%,14,14.40%,2,95,0,2.10%,97.90%,0.00%,10,10,97,10.30% +107540,381,3013,State-funded primary,190,94,96,49.50%,50.50%,0,0.00%,23,12.10%,2,188,0,1.10%,98.90%,0.00%,21,24,190,12.60% +107541,381,3014,State-funded primary,112,59,53,52.70%,47.30%,3,2.70%,23,20.50%,5,107,0,4.50%,95.50%,0.00%,61,56,102,54.90% +107547,381,3314,State-funded primary,208,103,105,49.50%,50.50%,4,1.90%,40,19.20%,7,201,0,3.40%,96.60%,0.00%,60,63,208,30.30% +107548,381,3315,State-funded primary,167,83,84,49.70%,50.30%,6,3.60%,27,16.20%,4,163,0,2.40%,97.60%,0.00%,44,52,167,31.10% +107550,381,3318,State-funded primary,177,80,97,45.20%,54.80%,9,5.10%,30,16.90%,13,164,0,7.30%,92.70%,0.00%,112,110,165,66.70% +107551,381,3319,State-funded primary,111,49,62,44.10%,55.90%,1,0.90%,11,9.90%,0,111,0,0.00%,100.00%,0.00%,14,11,92,12.00% +107552,381,3321,State-funded primary,193,95,98,49.20%,50.80%,0,0.00%,23,11.90%,2,191,0,1.00%,99.00%,0.00%,7,7,193,3.60% +107554,381,3323,State-funded primary,105,60,45,57.10%,42.90%,3,2.90%,13,12.40%,1,104,0,1.00%,99.00%,0.00%,36,40,105,38.10% +107556,381,3326,State-funded primary,254,130,124,51.20%,48.80%,5,2.00%,29,11.40%,11,243,0,4.30%,95.70%,0.00%,63,58,204,28.40% +107562,381,4022,State-funded secondary,1353,702,651,51.90%,48.10%,39,2.90%,255,18.80%,92,1257,4,6.80%,92.90%,0.30%,270,290,1353,21.40% +107564,381,4026,State-funded secondary,887,436,451,49.20%,50.80%,29,3.30%,125,14.10%,54,832,1,6.10%,93.80%,0.10%,234,252,887,28.40% +107569,381,5201,State-funded primary,212,103,109,48.60%,51.40%,6,2.80%,10,4.70%,18,193,1,8.50%,91.00%,0.50%,10,10,212,4.70% +107570,381,5202,State-funded primary,188,95,93,50.50%,49.50%,1,0.50%,16,8.50%,2,186,0,1.10%,98.90%,0.00%,26,26,188,13.80% +107582,381,6000,Independent school,199,89,110,44.70%,55.30%,0,0.00%,41,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107583,381,6001,Independent school,418,169,249,40.40%,59.60%,3,0.70%,87,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107585,381,6006,Independent school,266,125,141,47.00%,53.00%,2,0.80%,33,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107588,381,7009,State-funded special school,244,93,151,38.10%,61.90%,244,100.00%,0,0.00%,47,197,0,19.30%,80.70%,0.00%,97,75,165,45.50% +107589,381,7005,Non-maintained special school,78,0,78,0.00%,100.00%,78,100.00%,0,0.00%,1,77,0,1.30%,98.70%,0.00%,48,40,66,60.60% +107590,381,7008,State-funded special school,112,24,88,21.40%,78.60%,112,100.00%,0,0.00%,24,88,0,21.40%,78.60%,0.00%,55,55,112,49.10% +107591,381,7010,State-funded special school,104,29,75,27.90%,72.10%,104,100.00%,0,0.00%,8,96,0,7.70%,92.30%,0.00%,38,84,104,80.80% +107592,382,1005,State-funded nursery,88,44,44,50.00%,50.00%,0,0.00%,9,10.20%,46,42,0,52.30%,47.70%,0.00%,0,0,0,0.00% +107599,382,2004,State-funded primary,147,84,63,57.10%,42.90%,2,1.40%,20,13.60%,6,141,0,4.10%,95.90%,0.00%,31,31,125,24.80% +107600,382,2005,State-funded primary,215,106,109,49.30%,50.70%,4,1.90%,27,12.60%,85,130,0,39.50%,60.50%,0.00%,47,47,215,21.90% +107601,382,2006,State-funded primary,490,235,255,48.00%,52.00%,9,1.80%,98,20.00%,404,86,0,82.40%,17.60%,0.00%,124,134,402,33.30% +107602,382,2007,State-funded primary,228,107,121,46.90%,53.10%,2,0.90%,41,18.00%,149,79,0,65.40%,34.60%,0.00%,78,78,204,38.20% +107607,382,2013,State-funded primary,107,60,47,56.10%,43.90%,0,0.00%,9,8.40%,2,105,0,1.90%,98.10%,0.00%,26,26,107,24.30% +107608,382,2014,State-funded primary,240,100,140,41.70%,58.30%,5,2.10%,33,13.80%,6,234,0,2.50%,97.50%,0.00%,38,38,173,22.00% +107613,382,2023,State-funded primary,478,243,235,50.80%,49.20%,12,2.50%,99,20.70%,141,330,7,29.50%,69.00%,1.50%,168,177,455,38.90% +107615,382,2025,State-funded primary,390,193,197,49.50%,50.50%,6,1.50%,35,9.00%,169,205,16,43.30%,52.60%,4.10%,114,114,345,33.00% +107617,382,2028,State-funded primary,237,108,129,45.60%,54.40%,8,3.40%,27,11.40%,168,68,1,70.90%,28.70%,0.40%,55,55,207,26.60% +107620,382,2035,State-funded primary,300,143,157,47.70%,52.30%,15,5.00%,41,13.70%,114,186,0,38.00%,62.00%,0.00%,192,193,300,64.30% +107621,382,2036,State-funded primary,358,191,167,53.40%,46.60%,9,2.50%,39,10.90%,106,252,0,29.60%,70.40%,0.00%,101,104,358,29.10% +107622,382,2037,State-funded primary,321,141,180,43.90%,56.10%,13,4.00%,22,6.90%,108,213,0,33.60%,66.40%,0.00%,64,64,269,23.80% +107623,382,2038,State-funded primary,198,99,99,50.00%,50.00%,10,5.10%,34,17.20%,16,182,0,8.10%,91.90%,0.00%,90,92,198,46.50% +107626,382,2041,State-funded primary,574,274,300,47.70%,52.30%,12,2.10%,95,16.60%,471,103,0,82.10%,17.90%,0.00%,218,219,574,38.20% +107628,382,2043,State-funded primary,419,188,231,44.90%,55.10%,10,2.40%,66,15.80%,146,273,0,34.80%,65.20%,0.00%,197,199,395,50.40% +107630,382,2045,State-funded primary,212,113,99,53.30%,46.70%,5,2.40%,28,13.20%,27,185,0,12.70%,87.30%,0.00%,67,67,212,31.60% +107634,382,2056,State-funded primary,314,146,168,46.50%,53.50%,19,6.10%,21,6.70%,151,163,0,48.10%,51.90%,0.00%,90,91,314,29.00% +107639,382,2065,State-funded primary,162,65,97,40.10%,59.90%,6,3.70%,47,29.00%,57,104,1,35.20%,64.20%,0.60%,51,51,162,31.50% +107640,382,2066,State-funded primary,197,98,99,49.70%,50.30%,1,0.50%,31,15.70%,150,47,0,76.10%,23.90%,0.00%,74,78,197,39.60% +107641,382,2067,State-funded primary,235,113,122,48.10%,51.90%,1,0.40%,44,18.70%,203,32,0,86.40%,13.60%,0.00%,45,45,189,23.80% +107642,382,2068,State-funded primary,384,190,194,49.50%,50.50%,3,0.80%,15,3.90%,207,177,0,53.90%,46.10%,0.00%,74,74,354,20.90% +107643,382,2069,State-funded primary,83,35,48,42.20%,57.80%,4,4.80%,16,19.30%,0,83,0,0.00%,100.00%,0.00%,9,9,83,10.80% +107644,382,2073,State-funded primary,122,65,57,53.30%,46.70%,2,1.60%,16,13.10%,3,119,0,2.50%,97.50%,0.00%,20,20,122,16.40% +107645,382,2074,State-funded primary,82,38,44,46.30%,53.70%,0,0.00%,10,12.20%,0,82,0,0.00%,100.00%,0.00%,8,8,82,9.80% +107646,382,2075,State-funded primary,191,98,93,51.30%,48.70%,0,0.00%,19,9.90%,8,183,0,4.20%,95.80%,0.00%,59,60,191,31.40% +107647,382,2076,State-funded primary,77,34,43,44.20%,55.80%,7,9.10%,18,23.40%,1,76,0,1.30%,98.70%,0.00%,18,18,77,23.40% +107648,382,2077,State-funded primary,78,40,38,51.30%,48.70%,3,3.80%,13,16.70%,0,78,0,0.00%,100.00%,0.00%,8,9,78,11.50% +107651,382,2081,State-funded primary,139,70,69,50.40%,49.60%,2,1.40%,18,12.90%,2,137,0,1.40%,98.60%,0.00%,17,17,139,12.20% +107655,382,2085,State-funded primary,196,102,94,52.00%,48.00%,4,2.00%,31,15.80%,10,186,0,5.10%,94.90%,0.00%,32,32,196,16.30% +107656,382,2086,State-funded primary,91,48,43,52.70%,47.30%,2,2.20%,11,12.10%,0,91,0,0.00%,100.00%,0.00%,10,10,83,12.00% +107657,382,2087,State-funded primary,117,47,70,40.20%,59.80%,2,1.70%,9,7.70%,1,116,0,0.90%,99.10%,0.00%,11,11,117,9.40% +107658,382,2088,State-funded primary,75,36,39,48.00%,52.00%,3,4.00%,13,17.30%,0,75,0,0.00%,100.00%,0.00%,13,13,75,17.30% +107659,382,2089,State-funded primary,33,13,20,39.40%,60.60%,0,0.00%,1,3.00%,0,33,0,0.00%,100.00%,0.00%,0,0,33,0.00% +107660,382,2090,State-funded primary,220,110,110,50.00%,50.00%,2,0.90%,18,8.20%,3,217,0,1.40%,98.60%,0.00%,21,21,220,9.50% +107661,382,2091,State-funded primary,187,95,92,50.80%,49.20%,4,2.10%,33,17.60%,1,186,0,0.50%,99.50%,0.00%,40,40,187,21.40% +107663,382,2095,State-funded primary,163,80,83,49.10%,50.90%,2,1.20%,16,9.80%,1,162,0,0.60%,99.40%,0.00%,12,12,163,7.40% +107664,382,2096,State-funded primary,88,41,47,46.60%,53.40%,2,2.30%,16,18.20%,2,86,0,2.30%,97.70%,0.00%,9,9,88,10.20% +107665,382,2097,State-funded primary,340,164,176,48.20%,51.80%,8,2.40%,37,10.90%,12,328,0,3.50%,96.50%,0.00%,56,56,317,17.70% +107666,382,2099,State-funded primary,409,198,211,48.40%,51.60%,1,0.20%,52,12.70%,6,400,3,1.50%,97.80%,0.70%,26,26,409,6.40% +107667,382,2100,State-funded primary,83,38,45,45.80%,54.20%,4,4.80%,10,12.00%,0,83,0,0.00%,100.00%,0.00%,9,10,83,12.00% +107669,382,2102,State-funded primary,214,112,102,52.30%,47.70%,7,3.30%,17,7.90%,13,201,0,6.10%,93.90%,0.00%,71,71,204,34.80% +107670,382,2103,State-funded primary,183,84,99,45.90%,54.10%,13,7.10%,52,28.40%,13,170,0,7.10%,92.90%,0.00%,35,35,172,20.30% +107671,382,2108,State-funded primary,237,104,133,43.90%,56.10%,9,3.80%,21,8.90%,17,220,0,7.20%,92.80%,0.00%,62,62,210,29.50% +107674,382,2114,State-funded primary,244,123,121,50.40%,49.60%,4,1.60%,28,11.50%,10,234,0,4.10%,95.90%,0.00%,59,62,211,29.40% +107677,382,2120,State-funded primary,448,214,234,47.80%,52.20%,17,3.80%,44,9.80%,11,437,0,2.50%,97.50%,0.00%,41,42,416,10.10% +107678,382,2122,State-funded primary,276,132,144,47.80%,52.20%,3,1.10%,29,10.50%,212,64,0,76.80%,23.20%,0.00%,64,64,276,23.20% +107680,382,2125,State-funded primary,207,107,100,51.70%,48.30%,7,3.40%,18,8.70%,2,205,0,1.00%,99.00%,0.00%,17,17,207,8.20% +107682,382,2129,State-funded primary,280,144,136,51.40%,48.60%,6,2.10%,36,12.90%,254,25,1,90.70%,8.90%,0.40%,70,70,280,25.00% +107684,382,2134,State-funded primary,133,53,80,39.80%,60.20%,6,4.50%,49,36.80%,9,124,0,6.80%,93.20%,0.00%,65,65,118,55.10% +107685,382,2135,State-funded primary,414,214,200,51.70%,48.30%,9,2.20%,56,13.50%,29,385,0,7.00%,93.00%,0.00%,46,46,414,11.10% +107688,382,2139,State-funded primary,101,45,56,44.60%,55.40%,0,0.00%,18,17.80%,3,98,0,3.00%,97.00%,0.00%,12,13,101,12.90% +107690,382,2144,State-funded primary,151,72,79,47.70%,52.30%,4,2.60%,25,16.60%,111,40,0,73.50%,26.50%,0.00%,22,22,115,19.10% +107691,382,2145,State-funded primary,391,190,201,48.60%,51.40%,10,2.60%,52,13.30%,76,315,0,19.40%,80.60%,0.00%,118,118,349,33.80% +107693,382,2148,State-funded primary,283,137,146,48.40%,51.60%,7,2.50%,23,8.10%,2,281,0,0.70%,99.30%,0.00%,43,44,271,16.20% +107696,382,2151,State-funded primary,402,205,197,51.00%,49.00%,3,0.70%,52,12.90%,6,396,0,1.50%,98.50%,0.00%,72,74,402,18.40% +107697,382,2152,State-funded primary,551,257,294,46.60%,53.40%,17,3.10%,67,12.20%,82,469,0,14.90%,85.10%,0.00%,109,111,551,20.10% +107698,382,3000,State-funded primary,213,99,114,46.50%,53.50%,14,6.60%,26,12.20%,41,172,0,19.20%,80.80%,0.00%,98,99,193,51.30% +107699,382,3001,State-funded primary,417,189,228,45.30%,54.70%,5,1.20%,146,35.00%,368,48,1,88.20%,11.50%,0.20%,153,156,417,37.40% +107700,382,3002,State-funded primary,215,111,104,51.60%,48.40%,10,4.70%,28,13.00%,70,145,0,32.60%,67.40%,0.00%,93,93,191,48.70% +107701,382,3003,State-funded primary,168,78,90,46.40%,53.60%,11,6.50%,13,7.70%,90,78,0,53.60%,46.40%,0.00%,42,42,168,25.00% +107702,382,3004,State-funded primary,101,45,56,44.60%,55.40%,1,1.00%,22,21.80%,65,36,0,64.40%,35.60%,0.00%,18,18,77,23.40% +107705,382,3008,State-funded primary,298,144,154,48.30%,51.70%,5,1.70%,38,12.80%,196,102,0,65.80%,34.20%,0.00%,44,44,232,19.00% +107706,382,3009,State-funded primary,388,206,182,53.10%,46.90%,7,1.80%,54,13.90%,32,356,0,8.20%,91.80%,0.00%,120,122,388,31.40% +107707,382,3010,State-funded primary,561,284,277,50.60%,49.40%,17,3.00%,99,17.60%,445,116,0,79.30%,20.70%,0.00%,126,128,561,22.80% +107709,382,3014,State-funded primary,134,75,59,56.00%,44.00%,2,1.50%,10,7.50%,4,130,0,3.00%,97.00%,0.00%,21,21,134,15.70% +107710,382,3015,State-funded primary,342,173,169,50.60%,49.40%,4,1.20%,83,24.30%,294,48,0,86.00%,14.00%,0.00%,90,91,342,26.60% +107711,382,3016,State-funded primary,166,79,87,47.60%,52.40%,7,4.20%,19,11.40%,1,165,0,0.60%,99.40%,0.00%,18,19,166,11.40% +107713,382,3021,State-funded primary,210,98,112,46.70%,53.30%,4,1.90%,13,6.20%,0,210,0,0.00%,100.00%,0.00%,19,19,210,9.00% +107714,382,3022,State-funded primary,80,34,46,42.50%,57.50%,0,0.00%,10,12.50%,0,80,0,0.00%,100.00%,0.00%,25,25,80,31.30% +107715,382,3023,State-funded primary,176,78,98,44.30%,55.70%,3,1.70%,4,2.30%,0,176,0,0.00%,100.00%,0.00%,8,8,176,4.50% +107717,382,3027,State-funded primary,65,37,28,56.90%,43.10%,1,1.50%,7,10.80%,0,65,0,0.00%,100.00%,0.00%,3,3,65,4.60% +107718,382,3028,State-funded primary,416,219,197,52.60%,47.40%,6,1.40%,43,10.30%,1,415,0,0.20%,99.80%,0.00%,54,57,416,13.70% +107719,382,3032,State-funded primary,202,110,92,54.50%,45.50%,4,2.00%,29,14.40%,3,199,0,1.50%,98.50%,0.00%,23,23,202,11.40% +107721,382,3034,State-funded primary,238,109,129,45.80%,54.20%,6,2.50%,8,3.40%,2,236,0,0.80%,99.20%,0.00%,16,16,238,6.70% +107722,382,3036,State-funded primary,57,19,38,33.30%,66.70%,0,0.00%,10,17.50%,2,55,0,3.50%,96.50%,0.00%,8,8,57,14.00% +107723,382,3037,State-funded primary,416,213,203,51.20%,48.80%,6,1.40%,87,20.90%,18,398,0,4.30%,95.70%,0.00%,101,102,389,26.20% +107725,382,3041,State-funded primary,417,211,206,50.60%,49.40%,4,1.00%,25,6.00%,17,400,0,4.10%,95.90%,0.00%,19,19,417,4.60% +107727,382,3045,State-funded primary,197,90,107,45.70%,54.30%,3,1.50%,37,18.80%,12,185,0,6.10%,93.90%,0.00%,72,74,197,37.60% +107728,382,3046,State-funded primary,448,224,224,50.00%,50.00%,9,2.00%,58,12.90%,11,437,0,2.50%,97.50%,0.00%,72,73,413,17.70% +107730,382,3048,State-funded primary,454,215,239,47.40%,52.60%,5,1.10%,63,13.90%,2,452,0,0.40%,99.60%,0.00%,38,39,422,9.20% +107734,382,3314,State-funded primary,218,104,114,47.70%,52.30%,0,0.00%,27,12.40%,6,212,0,2.80%,97.20%,0.00%,36,39,218,17.90% +107736,382,3320,State-funded primary,198,89,109,44.90%,55.10%,1,0.50%,37,18.70%,50,148,0,25.30%,74.70%,0.00%,61,61,198,30.80% +107737,382,3321,State-funded primary,225,114,111,50.70%,49.30%,6,2.70%,69,30.70%,14,211,0,6.20%,93.80%,0.00%,57,57,199,28.60% +107739,382,3323,State-funded primary,200,100,100,50.00%,50.00%,8,4.00%,18,9.00%,4,196,0,2.00%,98.00%,0.00%,26,27,200,13.50% +107740,382,3324,State-funded primary,188,105,83,55.90%,44.10%,5,2.70%,51,27.10%,3,185,0,1.60%,98.40%,0.00%,34,34,188,18.10% +107741,382,3325,State-funded primary,122,72,50,59.00%,41.00%,2,1.60%,8,6.60%,0,122,0,0.00%,100.00%,0.00%,6,6,122,4.90% +107742,382,3326,State-funded primary,57,32,25,56.10%,43.90%,1,1.80%,8,14.00%,0,57,0,0.00%,100.00%,0.00%,2,2,57,3.50% +107745,382,3329,State-funded primary,129,61,68,47.30%,52.70%,2,1.60%,24,18.60%,2,127,0,1.60%,98.40%,0.00%,29,29,129,22.50% +107747,382,3332,State-funded primary,180,89,91,49.40%,50.60%,4,2.20%,39,21.70%,8,172,0,4.40%,95.60%,0.00%,46,47,165,28.50% +107756,382,4009,State-funded secondary,810,427,383,52.70%,47.30%,37,4.60%,139,17.20%,105,705,0,13.00%,87.00%,0.00%,388,374,726,51.50% +107769,382,4046,State-funded secondary,1314,651,663,49.50%,50.50%,20,1.50%,128,9.70%,27,1287,0,2.10%,97.90%,0.00%,210,221,1314,16.80% +107775,382,4057,State-funded secondary,930,418,512,44.90%,55.10%,21,2.30%,152,16.30%,551,379,0,59.20%,40.80%,0.00%,417,422,930,45.40% +107778,382,4061,State-funded secondary,953,433,520,45.40%,54.60%,26,2.70%,151,15.80%,103,849,1,10.80%,89.10%,0.10%,254,265,953,27.80% +107782,382,4613,State-funded secondary,898,430,468,47.90%,52.10%,34,3.80%,101,11.20%,109,675,114,12.10%,75.20%,12.70%,246,263,898,29.30% +107786,382,6005,Independent school,550,260,290,47.30%,52.70%,5,0.90%,45,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107787,382,6006,Independent school,114,61,53,53.50%,46.50%,1,0.90%,4,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107794,382,6017,Independent school,209,203,6,97.10%,2.90%,0,0.00%,13,6.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107795,382,6018,Independent school,24,14,10,58.30%,41.70%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +107796,382,7000,Non-maintained special school,39,23,16,59.00%,41.00%,33,84.60%,6,15.40%,3,35,1,7.70%,89.70%,2.60%,16,14,25,56.00% +107797,382,7001,State-funded special school,138,28,110,20.30%,79.70%,138,100.00%,0,0.00%,46,92,0,33.30%,66.70%,0.00%,61,52,120,43.30% +107799,382,7005,State-funded special school,206,48,158,23.30%,76.70%,206,100.00%,0,0.00%,38,168,0,18.40%,81.60%,0.00%,107,95,170,55.90% +107801,382,7010,State-funded special school,170,45,125,26.50%,73.50%,170,100.00%,0,0.00%,22,148,0,12.90%,87.10%,0.00%,84,90,170,52.90% +107802,382,7011,State-funded special school,119,56,63,47.10%,52.90%,119,100.00%,0,0.00%,73,46,0,61.30%,38.70%,0.00%,58,41,91,45.10% +107809,383,2270,State-funded primary,441,205,236,46.50%,53.50%,1,0.20%,48,10.90%,12,425,4,2.70%,96.40%,0.90%,52,49,380,12.90% +107810,383,2271,State-funded primary,311,163,148,52.40%,47.60%,9,2.90%,55,17.70%,8,303,0,2.60%,97.40%,0.00%,28,29,311,9.30% +107813,383,2275,State-funded primary,350,169,181,48.30%,51.70%,1,0.30%,26,7.40%,7,342,1,2.00%,97.70%,0.30%,32,35,310,11.30% +107817,383,2283,State-funded primary,212,110,102,51.90%,48.10%,2,0.90%,29,13.70%,22,187,3,10.40%,88.20%,1.40%,24,27,212,12.70% +107820,383,2286,State-funded primary,461,235,226,51.00%,49.00%,2,0.40%,33,7.20%,41,419,1,8.90%,90.90%,0.20%,39,39,419,9.30% +107824,383,2293,State-funded primary,464,245,219,52.80%,47.20%,1,0.20%,74,15.90%,65,399,0,14.00%,86.00%,0.00%,94,100,417,24.00% +107827,383,2302,State-funded primary,228,100,128,43.90%,56.10%,3,1.30%,48,21.10%,13,215,0,5.70%,94.30%,0.00%,39,40,187,21.40% +107828,383,2303,State-funded primary,302,156,146,51.70%,48.30%,7,2.30%,51,16.90%,5,297,0,1.70%,98.30%,0.00%,35,39,302,12.90% +107830,383,2308,State-funded primary,344,171,173,49.70%,50.30%,5,1.50%,36,10.50%,5,339,0,1.50%,98.50%,0.00%,28,30,309,9.70% +107831,383,2309,State-funded primary,458,236,222,51.50%,48.50%,8,1.70%,91,19.90%,25,433,0,5.50%,94.50%,0.00%,50,52,415,12.50% +107832,383,2312,State-funded primary,241,119,122,49.40%,50.60%,6,2.50%,56,23.20%,4,237,0,1.70%,98.30%,0.00%,49,46,208,22.10% +107834,383,2314,State-funded primary,435,216,219,49.70%,50.30%,1,0.20%,49,11.30%,6,429,0,1.40%,98.60%,0.00%,44,45,402,11.20% +107840,383,2324,State-funded primary,205,96,109,46.80%,53.20%,1,0.50%,56,27.30%,8,195,2,3.90%,95.10%,1.00%,38,40,205,19.50% +107842,383,2327,State-funded primary,321,165,156,51.40%,48.60%,6,1.90%,46,14.30%,14,306,1,4.40%,95.30%,0.30%,112,112,302,37.10% +107844,383,2329,State-funded primary,193,79,114,40.90%,59.10%,3,1.60%,18,9.30%,4,189,0,2.10%,97.90%,0.00%,11,12,193,6.20% +107845,383,2331,State-funded primary,468,220,248,47.00%,53.00%,7,1.50%,96,20.50%,199,269,0,42.50%,57.50%,0.00%,83,88,400,22.00% +107846,383,2334,State-funded primary,262,132,130,50.40%,49.60%,0,0.00%,43,16.40%,8,254,0,3.10%,96.90%,0.00%,6,6,231,2.60% +107847,383,2335,State-funded primary,446,211,235,47.30%,52.70%,1,0.20%,48,10.80%,15,421,10,3.40%,94.40%,2.20%,86,80,364,22.00% +107848,383,2336,State-funded primary,374,189,185,50.50%,49.50%,1,0.30%,67,17.90%,18,355,1,4.80%,94.90%,0.30%,63,65,339,19.20% +107849,383,2338,State-funded primary,417,198,219,47.50%,52.50%,1,0.20%,51,12.20%,4,412,1,1.00%,98.80%,0.20%,24,26,417,6.20% +107851,383,2342,State-funded primary,163,82,81,50.30%,49.70%,3,1.80%,51,31.30%,7,156,0,4.30%,95.70%,0.00%,62,65,163,39.90% +107854,383,2347,State-funded primary,235,118,117,50.20%,49.80%,3,1.30%,19,8.10%,7,228,0,3.00%,97.00%,0.00%,17,16,205,7.80% +107855,383,2348,State-funded primary,317,152,165,47.90%,52.10%,3,0.90%,37,11.70%,11,305,1,3.50%,96.20%,0.30%,6,7,317,2.20% +107858,383,2356,State-funded primary,119,60,59,50.40%,49.60%,0,0.00%,35,29.40%,7,112,0,5.90%,94.10%,0.00%,61,62,119,52.10% +107859,383,2358,State-funded primary,185,88,97,47.60%,52.40%,0,0.00%,26,14.10%,3,181,1,1.60%,97.80%,0.50%,28,27,160,16.90% +107860,383,2363,State-funded primary,419,199,220,47.50%,52.50%,4,1.00%,69,16.50%,19,398,2,4.50%,95.00%,0.50%,15,15,419,3.60% +107861,383,2364,State-funded primary,209,97,112,46.40%,53.60%,1,0.50%,38,18.20%,9,200,0,4.30%,95.70%,0.00%,8,9,209,4.30% +107862,383,2365,State-funded primary,208,91,117,43.80%,56.30%,1,0.50%,24,11.50%,4,204,0,1.90%,98.10%,0.00%,28,28,208,13.50% +107863,383,2369,State-funded primary,238,123,115,51.70%,48.30%,0,0.00%,28,11.80%,16,222,0,6.70%,93.30%,0.00%,30,30,209,14.40% +107866,383,2382,State-funded primary,467,240,227,51.40%,48.60%,3,0.60%,57,12.20%,48,419,0,10.30%,89.70%,0.00%,67,68,421,16.20% +107868,383,2385,State-funded primary,192,105,87,54.70%,45.30%,0,0.00%,14,7.30%,7,184,1,3.60%,95.80%,0.50%,10,10,192,5.20% +107869,383,2389,State-funded primary,221,106,115,48.00%,52.00%,3,1.40%,35,15.80%,1,220,0,0.50%,99.50%,0.00%,29,28,198,14.10% +107870,383,2390,State-funded primary,419,196,223,46.80%,53.20%,2,0.50%,33,7.90%,194,225,0,46.30%,53.70%,0.00%,30,31,419,7.40% +107873,383,2397,State-funded primary,454,217,237,47.80%,52.20%,1,0.20%,59,13.00%,11,443,0,2.40%,97.60%,0.00%,30,30,413,7.30% +107874,383,2398,State-funded primary,455,220,235,48.40%,51.60%,5,1.10%,78,17.10%,58,396,1,12.70%,87.00%,0.20%,95,97,418,23.20% +107876,383,2400,State-funded primary,210,116,94,55.20%,44.80%,0,0.00%,27,12.90%,3,207,0,1.40%,98.60%,0.00%,15,15,210,7.10% +107877,383,2401,State-funded primary,231,107,124,46.30%,53.70%,3,1.30%,36,15.60%,7,224,0,3.00%,97.00%,0.00%,50,45,205,22.00% +107879,383,2403,State-funded primary,243,118,125,48.60%,51.40%,3,1.20%,25,10.30%,2,241,0,0.80%,99.20%,0.00%,24,26,210,12.40% +107881,383,2405,State-funded primary,194,95,99,49.00%,51.00%,2,1.00%,28,14.40%,10,184,0,5.20%,94.80%,0.00%,18,19,194,9.80% +107883,383,2407,State-funded primary,329,147,182,44.70%,55.30%,3,0.90%,54,16.40%,127,200,2,38.60%,60.80%,0.60%,56,60,294,20.40% +107884,383,2408,State-funded primary,474,242,232,51.10%,48.90%,5,1.10%,54,11.40%,271,202,1,57.20%,42.60%,0.20%,168,168,416,40.40% +107885,383,2409,State-funded primary,265,129,136,48.70%,51.30%,2,0.80%,42,15.80%,194,69,2,73.20%,26.00%,0.80%,70,72,244,29.50% +107886,383,2410,State-funded primary,393,187,206,47.60%,52.40%,9,2.30%,54,13.70%,155,237,1,39.40%,60.30%,0.30%,138,144,358,40.20% +107887,383,2411,State-funded primary,223,108,115,48.40%,51.60%,3,1.30%,52,23.30%,52,171,0,23.30%,76.70%,0.00%,95,91,206,44.20% +107888,383,2412,State-funded primary,395,190,205,48.10%,51.90%,3,0.80%,101,25.60%,284,96,15,71.90%,24.30%,3.80%,163,165,395,41.80% +107889,383,2413,State-funded primary,200,88,112,44.00%,56.00%,0,0.00%,29,14.50%,99,101,0,49.50%,50.50%,0.00%,90,90,200,45.00% +107890,383,2414,State-funded primary,189,95,94,50.30%,49.70%,0,0.00%,26,13.80%,54,135,0,28.60%,71.40%,0.00%,46,49,189,25.90% +107891,383,2415,State-funded primary,364,188,176,51.60%,48.40%,1,0.30%,33,9.10%,242,120,2,66.50%,33.00%,0.50%,140,132,291,45.40% +107892,383,2416,State-funded primary,234,110,124,47.00%,53.00%,1,0.40%,34,14.50%,49,185,0,20.90%,79.10%,0.00%,23,21,209,10.00% +107893,383,2417,State-funded primary,332,151,181,45.50%,54.50%,3,0.90%,76,22.90%,85,247,0,25.60%,74.40%,0.00%,154,156,332,47.00% +107894,383,2418,State-funded primary,312,161,151,51.60%,48.40%,2,0.60%,39,12.50%,53,251,8,17.00%,80.40%,2.60%,69,75,312,24.00% +107896,383,2420,State-funded primary,417,205,212,49.20%,50.80%,22,5.30%,64,15.30%,70,345,2,16.80%,82.70%,0.50%,130,135,417,32.40% +107897,383,2421,State-funded primary,258,122,136,47.30%,52.70%,3,1.20%,34,13.20%,27,231,0,10.50%,89.50%,0.00%,7,7,210,3.30% +107901,383,2425,State-funded primary,689,299,390,43.40%,56.60%,3,0.40%,350,50.80%,532,139,18,77.20%,20.20%,2.60%,200,204,583,35.00% +107903,383,2427,State-funded primary,488,233,255,47.70%,52.30%,4,0.80%,72,14.80%,83,405,0,17.00%,83.00%,0.00%,71,73,446,16.40% +107904,383,2428,State-funded primary,671,332,339,49.50%,50.50%,8,1.20%,79,11.80%,106,565,0,15.80%,84.20%,0.00%,60,67,621,10.80% +107908,383,2432,State-funded primary,499,246,253,49.30%,50.70%,5,1.00%,39,7.80%,52,446,1,10.40%,89.40%,0.20%,31,31,452,6.90% +107909,383,2433,State-funded primary,419,201,218,48.00%,52.00%,4,1.00%,71,16.90%,204,213,2,48.70%,50.80%,0.50%,153,147,386,38.10% +107910,383,2434,State-funded primary,455,233,222,51.20%,48.80%,1,0.20%,57,12.50%,227,226,2,49.90%,49.70%,0.40%,62,65,415,15.70% +107912,383,2436,State-funded primary,484,241,243,49.80%,50.20%,5,1.00%,62,12.80%,138,345,1,28.50%,71.30%,0.20%,80,83,423,19.60% +107913,383,2437,State-funded primary,500,241,259,48.20%,51.80%,5,1.00%,91,18.20%,148,352,0,29.60%,70.40%,0.00%,49,54,431,12.50% +107914,383,2438,State-funded primary,417,200,217,48.00%,52.00%,4,1.00%,41,9.80%,99,317,1,23.70%,76.00%,0.20%,27,31,417,7.40% +107915,383,2439,State-funded primary,613,271,342,44.20%,55.80%,13,2.10%,87,14.20%,198,415,0,32.30%,67.70%,0.00%,128,133,576,23.10% +107916,383,2440,State-funded primary,211,95,116,45.00%,55.00%,1,0.50%,17,8.10%,50,161,0,23.70%,76.30%,0.00%,6,6,211,2.80% +107917,383,2441,State-funded primary,206,96,110,46.60%,53.40%,1,0.50%,22,10.70%,31,175,0,15.00%,85.00%,0.00%,3,3,206,1.50% +107920,383,2444,State-funded primary,473,231,242,48.80%,51.20%,2,0.40%,122,25.80%,54,419,0,11.40%,88.60%,0.00%,207,213,417,51.10% +107923,383,2447,State-funded primary,456,222,234,48.70%,51.30%,0,0.00%,104,22.80%,77,379,0,16.90%,83.10%,0.00%,245,235,416,56.50% +107924,383,2448,State-funded primary,242,116,126,47.90%,52.10%,6,2.50%,44,18.20%,30,212,0,12.40%,87.60%,0.00%,125,121,223,54.30% +107925,383,2449,State-funded primary,700,323,377,46.10%,53.90%,2,0.30%,136,19.40%,538,162,0,76.90%,23.10%,0.00%,278,280,624,44.90% +107926,383,2450,State-funded primary,726,364,362,50.10%,49.90%,4,0.60%,101,13.90%,674,52,0,92.80%,7.20%,0.00%,294,303,667,45.40% +107928,383,2452,State-funded primary,210,113,97,53.80%,46.20%,0,0.00%,51,24.30%,36,172,2,17.10%,81.90%,1.00%,127,131,210,62.40% +107932,383,2456,State-funded primary,234,116,118,49.60%,50.40%,0,0.00%,33,14.10%,21,213,0,9.00%,91.00%,0.00%,78,71,206,34.50% +107933,383,2457,State-funded primary,378,178,200,47.10%,52.90%,2,0.50%,86,22.80%,125,251,2,33.10%,66.40%,0.50%,217,208,344,60.50% +107934,383,2458,State-funded primary,256,140,116,54.70%,45.30%,2,0.80%,68,26.60%,18,238,0,7.00%,93.00%,0.00%,120,101,204,49.50% +107938,383,2462,State-funded primary,731,374,357,51.20%,48.80%,1,0.10%,153,20.90%,546,185,0,74.70%,25.30%,0.00%,278,290,619,46.80% +107940,383,2464,State-funded primary,208,90,118,43.30%,56.70%,1,0.50%,55,26.40%,11,197,0,5.30%,94.70%,0.00%,70,73,208,35.10% +107943,383,2467,State-funded primary,389,188,201,48.30%,51.70%,22,5.70%,105,27.00%,47,342,0,12.10%,87.90%,0.00%,159,168,389,43.20% +107944,383,2468,State-funded primary,327,172,155,52.60%,47.40%,2,0.60%,60,18.30%,38,289,0,11.60%,88.40%,0.00%,146,149,292,51.00% +107945,383,2469,State-funded primary,362,175,187,48.30%,51.70%,2,0.60%,66,18.20%,15,347,0,4.10%,95.90%,0.00%,98,102,323,31.60% +107946,383,2470,State-funded primary,677,336,341,49.60%,50.40%,2,0.30%,111,16.40%,142,535,0,21.00%,79.00%,0.00%,232,230,618,37.20% +107947,383,2471,State-funded primary,418,187,231,44.70%,55.30%,13,3.10%,79,18.90%,96,322,0,23.00%,77.00%,0.00%,204,219,418,52.40% +107949,383,2473,State-funded primary,465,222,243,47.70%,52.30%,2,0.40%,55,11.80%,299,166,0,64.30%,35.70%,0.00%,151,157,420,37.40% +107950,383,2474,State-funded primary,398,207,191,52.00%,48.00%,3,0.80%,61,15.30%,85,313,0,21.40%,78.60%,0.00%,194,191,359,53.20% +107951,383,2475,State-funded primary,469,246,223,52.50%,47.50%,4,0.90%,88,18.80%,230,234,5,49.00%,49.90%,1.10%,161,166,420,39.50% +107952,383,2476,State-funded primary,349,165,184,47.30%,52.70%,4,1.10%,45,12.90%,242,107,0,69.30%,30.70%,0.00%,159,155,314,49.40% +107954,383,2478,State-funded primary,316,154,162,48.70%,51.30%,2,0.60%,77,24.40%,20,291,5,6.30%,92.10%,1.60%,159,149,276,54.00% +107957,383,2481,State-funded primary,202,96,106,47.50%,52.50%,0,0.00%,32,15.80%,80,122,0,39.60%,60.40%,0.00%,45,46,178,25.80% +107958,383,2482,State-funded primary,447,223,224,49.90%,50.10%,0,0.00%,98,21.90%,65,381,1,14.50%,85.20%,0.20%,150,153,396,38.60% +107959,383,2483,State-funded primary,583,289,294,49.60%,50.40%,5,0.90%,207,35.50%,361,222,0,61.90%,38.10%,0.00%,181,195,525,37.10% +107962,383,2486,State-funded primary,510,271,239,53.10%,46.90%,1,0.20%,96,18.80%,201,309,0,39.40%,60.60%,0.00%,200,201,378,53.20% +107963,383,2487,State-funded primary,233,118,115,50.60%,49.40%,0,0.00%,67,28.80%,25,208,0,10.70%,89.30%,0.00%,113,125,200,62.50% +107964,383,2488,State-funded primary,433,198,235,45.70%,54.30%,4,0.90%,84,19.40%,24,409,0,5.50%,94.50%,0.00%,147,148,403,36.70% +107966,383,2490,State-funded primary,232,110,122,47.40%,52.60%,2,0.90%,43,18.50%,17,215,0,7.30%,92.70%,0.00%,59,62,208,29.80% +107967,383,2491,State-funded primary,217,105,112,48.40%,51.60%,0,0.00%,30,13.80%,27,190,0,12.40%,87.60%,0.00%,77,76,198,38.40% +107968,383,2492,State-funded primary,466,236,230,50.60%,49.40%,2,0.40%,52,11.20%,57,409,0,12.20%,87.80%,0.00%,104,108,418,25.80% +107969,383,2493,State-funded primary,458,228,230,49.80%,50.20%,1,0.20%,96,21.00%,100,358,0,21.80%,78.20%,0.00%,181,183,407,45.00% +107970,383,2494,State-funded primary,467,233,234,49.90%,50.10%,5,1.10%,147,31.50%,57,410,0,12.20%,87.80%,0.00%,163,168,394,42.60% +107972,383,2496,State-funded primary,327,172,155,52.60%,47.40%,3,0.90%,33,10.10%,27,299,1,8.30%,91.40%,0.30%,63,68,308,22.10% +107973,383,2497,State-funded primary,241,115,126,47.70%,52.30%,0,0.00%,44,18.30%,14,227,0,5.80%,94.20%,0.00%,71,72,210,34.30% +107975,383,2499,State-funded primary,418,216,202,51.70%,48.30%,1,0.20%,80,19.10%,44,374,0,10.50%,89.50%,0.00%,175,171,381,44.90% +107979,383,2503,State-funded primary,251,123,128,49.00%,51.00%,3,1.20%,41,16.30%,14,228,9,5.60%,90.80%,3.60%,76,76,208,36.50% +107981,383,2505,State-funded primary,451,224,227,49.70%,50.30%,7,1.60%,64,14.20%,37,414,0,8.20%,91.80%,0.00%,56,58,414,14.00% +107982,383,2506,State-funded primary,306,133,173,43.50%,56.50%,2,0.70%,42,13.70%,6,300,0,2.00%,98.00%,0.00%,49,54,306,17.60% +107984,383,2510,State-funded primary,626,289,337,46.20%,53.80%,8,1.30%,110,17.60%,84,542,0,13.40%,86.60%,0.00%,166,175,572,30.60% +107985,383,3030,State-funded primary,107,51,56,47.70%,52.30%,0,0.00%,18,16.80%,4,103,0,3.70%,96.30%,0.00%,17,18,107,16.80% +107986,383,3031,State-funded primary,319,157,162,49.20%,50.80%,3,0.90%,32,10.00%,10,308,1,3.10%,96.60%,0.30%,12,12,319,3.80% +107987,383,3033,State-funded primary,221,109,112,49.30%,50.70%,2,0.90%,39,17.60%,2,219,0,0.90%,99.10%,0.00%,20,21,198,10.60% +107989,383,3037,State-funded primary,101,49,52,48.50%,51.50%,1,1.00%,9,8.90%,7,94,0,6.90%,93.10%,0.00%,5,5,101,5.00% +107990,383,3038,State-funded primary,424,195,229,46.00%,54.00%,11,2.60%,70,16.50%,28,395,1,6.60%,93.20%,0.20%,38,41,424,9.70% +107995,383,3045,State-funded primary,132,73,59,55.30%,44.70%,0,0.00%,22,16.70%,8,124,0,6.10%,93.90%,0.00%,38,39,117,33.30% +107996,383,3046,State-funded primary,417,218,199,52.30%,47.70%,4,1.00%,36,8.60%,5,408,4,1.20%,97.80%,1.00%,22,25,417,6.00% +107997,383,3047,State-funded primary,139,65,74,46.80%,53.20%,0,0.00%,22,15.80%,7,132,0,5.00%,95.00%,0.00%,13,13,139,9.40% +108000,383,3051,State-funded primary,195,112,83,57.40%,42.60%,1,0.50%,24,12.30%,1,191,3,0.50%,97.90%,1.50%,15,15,195,7.70% +108001,383,3052,State-funded primary,188,104,84,55.30%,44.70%,4,2.10%,36,19.10%,94,94,0,50.00%,50.00%,0.00%,106,108,188,57.40% +108002,383,3053,State-funded primary,406,212,194,52.20%,47.80%,2,0.50%,83,20.40%,80,326,0,19.70%,80.30%,0.00%,187,177,366,48.40% +108003,383,3054,State-funded primary,399,193,206,48.40%,51.60%,4,1.00%,103,25.80%,37,362,0,9.30%,90.70%,0.00%,147,150,376,39.90% +108005,383,3056,State-funded primary,562,263,299,46.80%,53.20%,3,0.50%,98,17.40%,196,365,1,34.90%,64.90%,0.20%,226,227,500,45.40% +108007,383,3329,State-funded primary,243,118,125,48.60%,51.40%,2,0.80%,22,9.10%,33,209,1,13.60%,86.00%,0.40%,28,26,211,12.30% +108008,383,3350,State-funded primary,395,190,205,48.10%,51.90%,6,1.50%,47,11.90%,12,383,0,3.00%,97.00%,0.00%,60,63,395,15.90% +108009,383,3351,State-funded primary,105,40,65,38.10%,61.90%,1,1.00%,8,7.60%,0,105,0,0.00%,100.00%,0.00%,5,5,105,4.80% +108010,383,3356,State-funded primary,115,59,56,51.30%,48.70%,2,1.70%,11,9.60%,2,113,0,1.70%,98.30%,0.00%,6,6,115,5.20% +108011,383,3357,State-funded primary,208,99,109,47.60%,52.40%,0,0.00%,32,15.40%,2,206,0,1.00%,99.00%,0.00%,10,10,208,4.80% +108012,383,3358,State-funded primary,174,87,87,50.00%,50.00%,0,0.00%,25,14.40%,4,170,0,2.30%,97.70%,0.00%,3,3,174,1.70% +108016,383,3362,State-funded primary,238,106,132,44.50%,55.50%,0,0.00%,37,15.50%,40,198,0,16.80%,83.20%,0.00%,20,20,211,9.50% +108018,383,3364,State-funded primary,210,86,124,41.00%,59.00%,0,0.00%,46,21.90%,22,188,0,10.50%,89.50%,0.00%,19,20,210,9.50% +108020,383,3366,State-funded primary,230,109,121,47.40%,52.60%,0,0.00%,30,13.00%,8,222,0,3.50%,96.50%,0.00%,10,10,202,5.00% +108021,383,3367,State-funded primary,212,105,107,49.50%,50.50%,0,0.00%,47,22.20%,73,139,0,34.40%,65.60%,0.00%,24,26,212,12.30% +108024,383,3370,State-funded primary,268,119,149,44.40%,55.60%,3,1.10%,57,21.30%,78,188,2,29.10%,70.10%,0.70%,100,102,268,38.10% +108026,383,3372,State-funded primary,218,107,111,49.10%,50.90%,2,0.90%,41,18.80%,90,128,0,41.30%,58.70%,0.00%,75,72,189,38.10% +108028,383,3374,State-funded primary,201,102,99,50.70%,49.30%,0,0.00%,49,24.40%,94,107,0,46.80%,53.20%,0.00%,58,58,201,28.90% +108029,383,3375,State-funded primary,314,151,163,48.10%,51.90%,4,1.30%,39,12.40%,97,217,0,30.90%,69.10%,0.00%,78,81,314,25.80% +108030,383,3376,State-funded primary,228,128,100,56.10%,43.90%,0,0.00%,43,18.90%,27,201,0,11.80%,88.20%,0.00%,63,65,210,31.00% +108033,383,3379,State-funded primary,246,130,116,52.80%,47.20%,1,0.40%,44,17.90%,123,123,0,50.00%,50.00%,0.00%,45,48,221,21.70% +108036,383,3382,State-funded primary,208,97,111,46.60%,53.40%,1,0.50%,52,25.00%,77,131,0,37.00%,63.00%,0.00%,77,78,208,37.50% +108039,383,3385,State-funded primary,483,251,232,52.00%,48.00%,2,0.40%,81,16.80%,48,435,0,9.90%,90.10%,0.00%,65,66,421,15.70% +108041,383,3902,State-funded primary,207,100,107,48.30%,51.70%,1,0.50%,23,11.10%,12,195,0,5.80%,94.20%,0.00%,22,22,207,10.60% +108042,383,3903,State-funded primary,414,205,209,49.50%,50.50%,3,0.70%,41,9.90%,33,381,0,8.00%,92.00%,0.00%,32,33,414,8.00% +108043,383,3904,State-funded primary,201,88,113,43.80%,56.20%,2,1.00%,36,17.90%,20,181,0,10.00%,90.00%,0.00%,63,63,201,31.30% +108046,383,3907,State-funded primary,213,110,103,51.60%,48.40%,2,0.90%,36,16.90%,20,193,0,9.40%,90.60%,0.00%,10,10,213,4.70% +108047,383,3908,State-funded primary,400,206,194,51.50%,48.50%,3,0.80%,55,13.80%,75,322,3,18.80%,80.50%,0.80%,62,66,400,16.50% +108048,383,3909,State-funded primary,253,118,135,46.60%,53.40%,1,0.40%,40,15.80%,114,127,12,45.10%,50.20%,4.70%,134,117,207,56.50% +108050,383,3911,State-funded primary,260,131,129,50.40%,49.60%,3,1.20%,46,17.70%,238,22,0,91.50%,8.50%,0.00%,119,119,212,56.10% +108051,383,3912,State-funded primary,236,114,122,48.30%,51.70%,1,0.40%,31,13.10%,75,161,0,31.80%,68.20%,0.00%,34,39,210,18.60% +108052,383,3913,State-funded primary,466,209,257,44.80%,55.20%,18,3.90%,54,11.60%,241,224,1,51.70%,48.10%,0.20%,115,120,406,29.60% +108054,383,3915,State-funded primary,250,116,134,46.40%,53.60%,0,0.00%,28,11.20%,24,226,0,9.60%,90.40%,0.00%,19,20,211,9.50% +108055,383,4006,State-funded secondary,1464,734,730,50.10%,49.90%,9,0.60%,147,10.00%,518,944,2,35.40%,64.50%,0.10%,557,558,1311,42.60% +108057,383,4032,State-funded secondary,1600,775,825,48.40%,51.60%,30,1.90%,163,10.20%,423,1176,1,26.40%,73.50%,0.10%,280,269,1208,22.30% +108058,383,4040,State-funded secondary,1711,828,883,48.40%,51.60%,29,1.70%,202,11.80%,325,1368,18,19.00%,80.00%,1.10%,417,404,1447,27.90% +108059,383,4041,State-funded secondary,1477,734,743,49.70%,50.30%,40,2.70%,327,22.10%,397,1064,16,26.90%,72.00%,1.10%,393,439,1477,29.70% +108075,383,4062,State-funded secondary,1042,501,541,48.10%,51.90%,15,1.40%,164,15.70%,158,883,1,15.20%,84.70%,0.10%,277,271,890,30.40% +108076,383,4063,State-funded secondary,2522,1246,1276,49.40%,50.60%,51,2.00%,180,7.10%,613,1900,9,24.30%,75.30%,0.40%,378,349,1940,18.00% +108079,383,4102,State-funded secondary,1338,675,663,50.40%,49.60%,9,0.70%,181,13.50%,245,1093,0,18.30%,81.70%,0.00%,263,279,1095,25.50% +108083,383,4106,State-funded secondary,1544,733,811,47.50%,52.50%,16,1.00%,140,9.10%,83,1460,1,5.40%,94.60%,0.10%,231,243,1288,18.90% +108085,383,4108,State-funded secondary,1396,687,709,49.20%,50.80%,12,0.90%,196,14.00%,47,1349,0,3.40%,96.60%,0.00%,134,144,1153,12.50% +108088,383,4111,State-funded secondary,704,346,358,49.10%,50.90%,4,0.60%,123,17.50%,55,644,5,7.80%,91.50%,0.70%,167,188,704,26.70% +108095,383,4751,State-funded secondary,917,496,421,54.10%,45.90%,8,0.90%,92,10.00%,234,683,0,25.50%,74.50%,0.00%,141,156,917,17.00% +108097,383,4753,State-funded secondary,943,472,471,50.10%,49.90%,1,0.10%,133,14.10%,536,407,0,56.80%,43.20%,0.00%,366,405,943,42.90% +108100,383,5200,State-funded primary,130,71,59,54.60%,45.40%,2,1.50%,11,8.50%,1,129,0,0.80%,99.20%,0.00%,8,8,130,6.20% +108102,383,6002,Independent school,151,71,80,47.00%,53.00%,1,0.70%,14,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108103,383,6004,Independent school,230,110,120,47.80%,52.20%,0,0.00%,23,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108104,383,6007,Independent school,512,323,189,63.10%,36.90%,1,0.20%,128,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108108,383,6057,Independent school,153,74,79,48.40%,51.60%,1,0.70%,29,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108109,383,6098,Independent school,20,11,9,55.00%,45.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108110,383,6099,Independent school,15,10,5,66.70%,33.30%,0,0.00%,4,26.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108113,383,6112,Independent school,2095,995,1100,47.50%,52.50%,0,0.00%,415,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108114,383,6113,Independent school,1072,477,595,44.50%,55.50%,6,0.60%,7,0.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108117,383,6117,Independent school,314,168,146,53.50%,46.50%,15,4.80%,52,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108119,383,7015,State-funded special school,425,132,293,31.10%,68.90%,415,97.60%,10,2.40%,76,347,2,17.90%,81.60%,0.50%,213,199,356,55.90% +108120,383,7016,Non-maintained special school,56,18,38,32.10%,67.90%,53,94.60%,3,5.40%,3,53,0,5.40%,94.60%,0.00%,16,12,42,28.60% +108123,383,7062,State-funded special school,224,67,157,29.90%,70.10%,224,100.00%,0,0.00%,42,182,0,18.80%,81.30%,0.00%,130,93,160,58.10% +108133,383,7072,State-funded special school,410,93,317,22.70%,77.30%,409,99.80%,1,0.20%,48,362,0,11.70%,88.30%,0.00%,151,147,346,42.50% +108134,384,1002,State-funded nursery,69,28,41,40.60%,59.40%,4,5.80%,0,0.00%,4,65,0,5.80%,94.20%,0.00%,0,0,0,0.00% +108137,384,1005,State-funded nursery,96,39,57,40.60%,59.40%,0,0.00%,9,9.40%,4,92,0,4.20%,95.80%,0.00%,0,0,0,0.00% +108139,384,1100,State-funded AP school,71,21,50,29.60%,70.40%,8,11.30%,26,36.60%,4,63,4,5.60%,88.70%,5.60%,46,48,71,67.60% +108141,384,2039,State-funded primary,228,112,116,49.10%,50.90%,13,5.70%,31,13.60%,3,225,0,1.30%,98.70%,0.00%,57,57,228,25.00% +108148,384,2054,State-funded primary,158,66,92,41.80%,58.20%,10,6.30%,11,7.00%,8,150,0,5.10%,94.90%,0.00%,13,13,119,10.90% +108152,384,2060,State-funded primary,110,57,53,51.80%,48.20%,3,2.70%,13,11.80%,5,105,0,4.50%,95.50%,0.00%,12,13,105,12.40% +108158,384,2070,State-funded primary,189,95,94,50.30%,49.70%,8,4.20%,8,4.20%,3,186,0,1.60%,98.40%,0.00%,21,23,163,14.10% +108162,384,2076,State-funded primary,237,112,125,47.30%,52.70%,2,0.80%,27,11.40%,31,206,0,13.10%,86.90%,0.00%,24,25,203,12.30% +108164,384,2079,State-funded primary,277,145,132,52.30%,47.70%,5,1.80%,22,7.90%,29,248,0,10.50%,89.50%,0.00%,27,27,251,10.80% +108167,384,2084,State-funded primary,113,51,62,45.10%,54.90%,2,1.80%,13,11.50%,1,112,0,0.90%,99.10%,0.00%,4,4,104,3.80% +108171,384,2091,State-funded primary,211,105,106,49.80%,50.20%,7,3.30%,23,10.90%,7,204,0,3.30%,96.70%,0.00%,39,39,167,23.40% +108195,384,2128,State-funded primary,122,61,61,50.00%,50.00%,7,5.70%,36,29.50%,21,101,0,17.20%,82.80%,0.00%,44,45,105,42.90% +108200,384,2133,State-funded primary,206,105,101,51.00%,49.00%,8,3.90%,25,12.10%,15,191,0,7.30%,92.70%,0.00%,49,49,160,30.60% +108206,384,2150,State-funded primary,341,167,174,49.00%,51.00%,9,2.60%,108,31.70%,23,318,0,6.70%,93.30%,0.00%,65,69,308,22.40% +108208,384,2152,State-funded primary,332,156,176,47.00%,53.00%,13,3.90%,39,11.70%,16,316,0,4.80%,95.20%,0.00%,55,57,332,17.20% +108210,384,2154,State-funded primary,356,186,170,52.20%,47.80%,13,3.70%,46,12.90%,189,164,3,53.10%,46.10%,0.80%,65,65,312,20.80% +108211,384,2155,State-funded primary,207,113,94,54.60%,45.40%,13,6.30%,45,21.70%,17,190,0,8.20%,91.80%,0.00%,61,63,191,33.00% +108212,384,2156,State-funded primary,354,174,180,49.20%,50.80%,16,4.50%,51,14.40%,10,344,0,2.80%,97.20%,0.00%,54,56,312,17.90% +108215,384,2159,State-funded primary,224,103,121,46.00%,54.00%,3,1.30%,26,11.60%,38,185,1,17.00%,82.60%,0.40%,72,72,211,34.10% +108216,384,2160,State-funded primary,408,191,217,46.80%,53.20%,16,3.90%,72,17.60%,163,245,0,40.00%,60.00%,0.00%,137,141,350,40.30% +108218,384,2162,State-funded primary,416,198,218,47.60%,52.40%,15,3.60%,74,17.80%,53,363,0,12.70%,87.30%,0.00%,150,151,375,40.30% +108229,384,2173,State-funded primary,140,65,75,46.40%,53.60%,4,2.90%,24,17.10%,10,130,0,7.10%,92.90%,0.00%,39,39,109,35.80% +108236,384,2180,State-funded primary,175,83,92,47.40%,52.60%,7,4.00%,38,21.70%,13,162,0,7.40%,92.60%,0.00%,26,25,125,20.00% +108246,384,3010,State-funded primary,338,161,177,47.60%,52.40%,6,1.80%,53,15.70%,4,334,0,1.20%,98.80%,0.00%,35,39,338,11.50% +108247,384,3015,State-funded primary,285,121,164,42.50%,57.50%,1,0.40%,67,23.50%,23,262,0,8.10%,91.90%,0.00%,66,69,265,26.00% +108249,384,3018,State-funded primary,356,175,181,49.20%,50.80%,6,1.70%,67,18.80%,26,330,0,7.30%,92.70%,0.00%,166,168,356,47.20% +108252,384,3021,State-funded primary,240,118,122,49.20%,50.80%,17,7.10%,25,10.40%,40,200,0,16.70%,83.30%,0.00%,46,48,213,22.50% +108253,384,3301,State-funded primary,282,134,148,47.50%,52.50%,2,0.70%,32,11.30%,30,252,0,10.60%,89.40%,0.00%,44,45,257,17.50% +108255,384,3305,State-funded primary,206,104,102,50.50%,49.50%,10,4.90%,20,9.70%,57,149,0,27.70%,72.30%,0.00%,27,28,206,13.60% +108259,384,3318,State-funded primary,316,162,154,51.30%,48.70%,7,2.20%,26,8.20%,42,274,0,13.30%,86.70%,0.00%,54,54,257,21.00% +108260,384,3319,State-funded primary,360,158,202,43.90%,56.10%,8,2.20%,22,6.10%,16,344,0,4.40%,95.60%,0.00%,38,40,317,12.60% +108269,384,3338,State-funded primary,257,143,114,55.60%,44.40%,10,3.90%,15,5.80%,175,82,0,68.10%,31.90%,0.00%,56,59,205,28.80% +108270,384,3339,State-funded primary,618,280,338,45.30%,54.70%,17,2.80%,159,25.70%,177,441,0,28.60%,71.40%,0.00%,174,177,618,28.60% +108271,384,4006,State-funded secondary,1646,821,825,49.90%,50.10%,29,1.80%,303,18.40%,182,1464,0,11.10%,88.90%,0.00%,281,316,1646,19.20% +108300,384,6000,Independent school,494,229,265,46.40%,53.60%,21,4.30%,72,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108303,384,6027,Independent school,520,237,283,45.60%,54.40%,4,0.80%,106,20.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108305,384,6114,Independent school,777,777,0,100.00%,0.00%,1,0.10%,130,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108306,384,6115,Independent school,881,0,881,0.00%,100.00%,0,0.00%,135,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108307,384,6116,Independent school,148,79,69,53.40%,46.60%,0,0.00%,16,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108311,384,7002,State-funded special school,191,66,125,34.60%,65.40%,191,100.00%,0,0.00%,13,178,0,6.80%,93.20%,0.00%,77,61,139,43.90% +108320,390,1000,State-funded nursery,59,27,32,45.80%,54.20%,2,3.40%,8,13.60%,13,46,0,22.00%,78.00%,0.00%,0,0,0,0.00% +108321,390,2008,State-funded primary,328,154,174,47.00%,53.00%,10,3.00%,85,25.90%,60,268,0,18.30%,81.70%,0.00%,195,196,303,64.70% +108323,390,2012,State-funded primary,378,174,204,46.00%,54.00%,11,2.90%,26,6.90%,186,192,0,49.20%,50.80%,0.00%,190,190,354,53.70% +108326,390,2036,State-funded primary,221,114,107,51.60%,48.40%,6,2.70%,45,20.40%,74,147,0,33.50%,66.50%,0.00%,119,118,199,59.30% +108327,390,2039,State-funded primary,198,95,103,48.00%,52.00%,14,7.10%,23,11.60%,92,106,0,46.50%,53.50%,0.00%,98,100,198,50.50% +108329,390,2049,State-funded primary,240,115,125,47.90%,52.10%,5,2.10%,45,18.80%,6,234,0,2.50%,97.50%,0.00%,15,16,240,6.70% +108330,390,2051,State-funded primary,126,63,63,50.00%,50.00%,3,2.40%,52,41.30%,29,97,0,23.00%,77.00%,0.00%,86,83,111,74.80% +108332,390,2055,State-funded primary,167,82,85,49.10%,50.90%,2,1.20%,21,12.60%,4,163,0,2.40%,97.60%,0.00%,11,11,167,6.60% +108333,390,2056,State-funded primary,363,190,173,52.30%,47.70%,3,0.80%,54,14.90%,22,341,0,6.10%,93.90%,0.00%,85,86,363,23.70% +108336,390,2162,State-funded primary,195,94,101,48.20%,51.80%,2,1.00%,28,14.40%,11,184,0,5.60%,94.40%,0.00%,27,29,195,14.90% +108337,390,2163,State-funded primary,207,95,112,45.90%,54.10%,6,2.90%,41,19.80%,28,179,0,13.50%,86.50%,0.00%,72,72,167,43.10% +108338,390,2164,State-funded primary,415,195,220,47.00%,53.00%,6,1.40%,57,13.70%,26,389,0,6.30%,93.70%,0.00%,119,122,370,33.00% +108339,390,2167,State-funded primary,489,238,251,48.70%,51.30%,12,2.50%,66,13.50%,5,484,0,1.00%,99.00%,0.00%,54,56,426,13.10% +108340,390,2168,State-funded primary,199,98,101,49.20%,50.80%,7,3.50%,18,9.00%,4,194,1,2.00%,97.50%,0.50%,49,47,169,27.80% +108342,390,2172,State-funded primary,130,53,77,40.80%,59.20%,20,15.40%,19,14.60%,8,122,0,6.20%,93.80%,0.00%,77,75,116,64.70% +108346,390,2177,State-funded primary,361,174,187,48.20%,51.80%,7,1.90%,29,8.00%,1,360,0,0.30%,99.70%,0.00%,106,107,325,32.90% +108348,390,2181,State-funded primary,180,99,81,55.00%,45.00%,0,0.00%,29,16.10%,3,177,0,1.70%,98.30%,0.00%,35,36,162,22.20% +108349,390,2182,State-funded primary,190,93,97,48.90%,51.10%,1,0.50%,18,9.50%,9,181,0,4.70%,95.30%,0.00%,49,49,175,28.00% +108350,390,2184,State-funded primary,408,194,214,47.50%,52.50%,9,2.20%,44,10.80%,29,379,0,7.10%,92.90%,0.00%,64,62,375,16.50% +108351,390,2186,State-funded primary,123,74,49,60.20%,39.80%,3,2.40%,24,19.50%,12,111,0,9.80%,90.20%,0.00%,48,48,108,44.40% +108352,390,2188,State-funded primary,130,68,62,52.30%,47.70%,2,1.50%,28,21.50%,2,128,0,1.50%,98.50%,0.00%,36,28,91,30.80% +108355,390,2193,State-funded primary,129,66,63,51.20%,48.80%,1,0.80%,20,15.50%,1,128,0,0.80%,99.20%,0.00%,36,38,129,29.50% +108356,390,2194,State-funded primary,174,76,98,43.70%,56.30%,4,2.30%,34,19.50%,7,167,0,4.00%,96.00%,0.00%,33,39,161,24.20% +108357,390,2197,State-funded primary,210,103,107,49.00%,51.00%,3,1.40%,25,11.90%,6,204,0,2.90%,97.10%,0.00%,37,39,210,18.60% +108358,390,2198,State-funded primary,204,106,98,52.00%,48.00%,6,2.90%,64,31.40%,44,160,0,21.60%,78.40%,0.00%,119,121,174,69.50% +108359,390,2200,State-funded primary,236,120,116,50.80%,49.20%,3,1.30%,18,7.60%,45,191,0,19.10%,80.90%,0.00%,84,88,191,46.10% +108360,390,2205,State-funded primary,462,231,231,50.00%,50.00%,8,1.70%,120,26.00%,24,438,0,5.20%,94.80%,0.00%,122,123,396,31.10% +108361,390,2213,State-funded primary,170,85,85,50.00%,50.00%,1,0.60%,25,14.70%,15,155,0,8.80%,91.20%,0.00%,71,73,146,50.00% +108362,390,2214,State-funded primary,153,80,73,52.30%,47.70%,3,2.00%,28,18.30%,0,153,0,0.00%,100.00%,0.00%,25,25,135,18.50% +108363,390,2216,State-funded primary,206,93,113,45.10%,54.90%,2,1.00%,30,14.60%,2,204,0,1.00%,99.00%,0.00%,17,17,206,8.30% +108366,390,2219,State-funded primary,181,72,109,39.80%,60.20%,4,2.20%,18,9.90%,6,175,0,3.30%,96.70%,0.00%,58,59,181,32.60% +108368,390,2221,State-funded primary,352,174,178,49.40%,50.60%,9,2.60%,78,22.20%,144,203,5,40.90%,57.70%,1.40%,131,133,321,41.40% +108369,390,2222,State-funded primary,368,170,198,46.20%,53.80%,18,4.90%,63,17.10%,35,333,0,9.50%,90.50%,0.00%,89,89,328,27.10% +108371,390,2224,State-funded primary,259,118,141,45.60%,54.40%,6,2.30%,59,22.80%,10,249,0,3.90%,96.10%,0.00%,87,87,230,37.80% +108372,390,2225,State-funded primary,442,235,207,53.20%,46.80%,4,0.90%,62,14.00%,37,405,0,8.40%,91.60%,0.00%,133,133,405,32.80% +108373,390,2226,State-funded primary,170,90,80,52.90%,47.10%,1,0.60%,22,12.90%,18,151,1,10.60%,88.80%,0.60%,56,59,147,40.10% +108374,390,2227,State-funded primary,323,170,153,52.60%,47.40%,4,1.20%,60,18.60%,18,305,0,5.60%,94.40%,0.00%,86,90,290,31.00% +108375,390,2228,State-funded primary,152,75,77,49.30%,50.70%,4,2.60%,28,18.40%,13,139,0,8.60%,91.40%,0.00%,88,83,133,62.40% +108376,390,2229,State-funded primary,230,111,119,48.30%,51.70%,1,0.40%,56,24.30%,7,223,0,3.00%,97.00%,0.00%,94,96,203,47.30% +108378,390,2231,State-funded primary,236,122,114,51.70%,48.30%,1,0.40%,22,9.30%,6,230,0,2.50%,97.50%,0.00%,14,13,207,6.30% +108379,390,2232,State-funded primary,283,129,154,45.60%,54.40%,5,1.80%,37,13.10%,54,229,0,19.10%,80.90%,0.00%,168,172,252,68.30% +108380,390,2233,State-funded primary,255,123,132,48.20%,51.80%,11,4.30%,43,16.90%,90,165,0,35.30%,64.70%,0.00%,112,95,213,44.60% +108381,390,3001,State-funded primary,207,108,99,52.20%,47.80%,1,0.50%,38,18.40%,2,205,0,1.00%,99.00%,0.00%,7,8,207,3.90% +108391,390,3327,State-funded primary,101,52,49,51.50%,48.50%,1,1.00%,23,22.80%,1,100,0,1.00%,99.00%,0.00%,26,27,101,26.70% +108410,390,4041,State-funded secondary,939,492,447,52.40%,47.60%,22,2.30%,157,16.70%,132,806,1,14.10%,85.80%,0.10%,388,415,877,47.30% +108414,390,6002,Independent school,119,0,119,0.00%,100.00%,4,3.40%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108416,390,6004,Independent school,209,0,209,0.00%,100.00%,5,2.40%,15,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108419,390,6007,Independent school,114,114,0,100.00%,0.00%,2,1.80%,3,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108420,390,6900,State-funded secondary,1444,719,725,49.80%,50.20%,10,0.70%,148,10.20%,260,1135,49,18.00%,78.60%,3.40%,210,236,1198,19.70% +108426,390,7006,State-funded special school,71,9,62,12.70%,87.30%,71,100.00%,0,0.00%,1,70,0,1.40%,98.60%,0.00%,51,55,71,77.50% +108427,391,1000,State-funded nursery,102,47,55,46.10%,53.90%,0,0.00%,19,18.60%,53,48,1,52.00%,47.10%,1.00%,16,0,0,0.00% +108430,391,1004,State-funded nursery,74,37,37,50.00%,50.00%,0,0.00%,11,14.90%,6,68,0,8.10%,91.90%,0.00%,10,0,0,0.00% +108431,391,1005,State-funded nursery,147,75,72,51.00%,49.00%,0,0.00%,35,23.80%,29,118,0,19.70%,80.30%,0.00%,50,0,0,0.00% +108437,391,2000,State-funded primary,272,136,136,50.00%,50.00%,3,1.10%,24,8.80%,17,254,1,6.30%,93.40%,0.40%,29,36,239,15.10% +108438,391,2001,State-funded primary,337,156,181,46.30%,53.70%,7,2.10%,24,7.10%,73,263,1,21.70%,78.00%,0.30%,32,30,300,10.00% +108439,391,2002,State-funded primary,296,147,149,49.70%,50.30%,4,1.40%,21,7.10%,31,265,0,10.50%,89.50%,0.00%,13,14,296,4.70% +108440,391,2003,State-funded primary,333,168,165,50.50%,49.50%,11,3.30%,52,15.60%,35,295,3,10.50%,88.60%,0.90%,115,114,299,38.10% +108442,391,2005,State-funded primary,259,122,137,47.10%,52.90%,1,0.40%,12,4.60%,24,229,6,9.30%,88.40%,2.30%,14,15,227,6.60% +108443,391,2006,State-funded primary,268,133,135,49.60%,50.40%,1,0.40%,19,7.10%,36,217,15,13.40%,81.00%,5.60%,20,20,268,7.50% +108444,391,2009,State-funded primary,332,168,164,50.60%,49.40%,12,3.60%,59,17.80%,40,292,0,12.00%,88.00%,0.00%,69,63,299,21.10% +108446,391,2012,State-funded primary,349,158,191,45.30%,54.70%,3,0.90%,39,11.20%,27,322,0,7.70%,92.30%,0.00%,158,142,281,50.50% +108447,391,2013,State-funded primary,202,101,101,50.00%,50.00%,4,2.00%,29,14.40%,28,174,0,13.90%,86.10%,0.00%,86,87,202,43.10% +108449,391,2015,State-funded primary,312,147,165,47.10%,52.90%,3,1.00%,88,28.20%,26,286,0,8.30%,91.70%,0.00%,175,159,276,57.60% +108450,391,2016,State-funded primary,406,207,199,51.00%,49.00%,0,0.00%,33,8.10%,5,401,0,1.20%,98.80%,0.00%,85,86,406,21.20% +108451,391,2017,State-funded primary,202,101,101,50.00%,50.00%,1,0.50%,28,13.90%,3,199,0,1.50%,98.50%,0.00%,51,52,202,25.70% +108453,391,2020,State-funded primary,208,92,116,44.20%,55.80%,1,0.50%,61,29.30%,11,197,0,5.30%,94.70%,0.00%,91,78,184,42.40% +108454,391,2021,State-funded primary,281,154,127,54.80%,45.20%,9,3.20%,57,20.30%,31,250,0,11.00%,89.00%,0.00%,195,174,247,70.40% +108456,391,2030,State-funded primary,171,79,92,46.20%,53.80%,6,3.50%,69,40.40%,15,156,0,8.80%,91.20%,0.00%,128,115,153,75.20% +108457,391,2031,State-funded primary,401,200,201,49.90%,50.10%,10,2.50%,40,10.00%,6,395,0,1.50%,98.50%,0.00%,154,146,364,40.10% +108458,391,2032,State-funded primary,455,221,234,48.60%,51.40%,17,3.70%,100,22.00%,138,316,1,30.30%,69.50%,0.20%,353,327,409,80.00% +108459,391,2050,State-funded primary,459,227,232,49.50%,50.50%,17,3.70%,54,11.80%,91,368,0,19.80%,80.20%,0.00%,56,55,421,13.10% +108460,391,2080,State-funded primary,208,112,96,53.80%,46.20%,7,3.40%,28,13.50%,133,75,0,63.90%,36.10%,0.00%,124,124,208,59.60% +108461,391,2090,State-funded primary,470,223,247,47.40%,52.60%,12,2.60%,87,18.50%,424,46,0,90.20%,9.80%,0.00%,235,233,419,55.60% +108463,391,2100,State-funded primary,254,129,125,50.80%,49.20%,8,3.10%,29,11.40%,73,180,1,28.70%,70.90%,0.40%,87,79,201,39.30% +108465,391,2170,State-funded primary,410,191,219,46.60%,53.40%,7,1.70%,29,7.10%,56,353,1,13.70%,86.10%,0.20%,33,36,410,8.80% +108466,391,2210,State-funded primary,478,222,256,46.40%,53.60%,22,4.60%,151,31.60%,152,322,4,31.80%,67.40%,0.80%,239,221,422,52.40% +108468,391,2225,State-funded primary,207,115,92,55.60%,44.40%,14,6.80%,42,20.30%,59,147,1,28.50%,71.00%,0.50%,116,114,194,58.80% +108475,391,2670,State-funded primary,633,316,317,49.90%,50.10%,13,2.10%,63,10.00%,107,526,0,16.90%,83.10%,0.00%,149,145,578,25.10% +108476,391,2720,State-funded primary,227,107,120,47.10%,52.90%,6,2.60%,77,33.90%,96,131,0,42.30%,57.70%,0.00%,151,138,201,68.70% +108487,391,2960,State-funded primary,469,224,245,47.80%,52.20%,10,2.10%,84,17.90%,358,84,27,76.30%,17.90%,5.80%,192,190,417,45.60% +108491,391,2998,State-funded primary,437,202,235,46.20%,53.80%,4,0.90%,58,13.30%,74,363,0,16.90%,83.10%,0.00%,193,185,406,45.60% +108492,391,2999,State-funded primary,447,203,244,45.40%,54.60%,14,3.10%,47,10.50%,341,106,0,76.30%,23.70%,0.00%,267,244,396,61.60% +108493,391,3321,State-funded primary,129,69,60,53.50%,46.50%,5,3.90%,19,14.70%,85,41,3,65.90%,31.80%,2.30%,75,73,120,60.80% +108495,391,3471,State-funded primary,176,87,89,49.40%,50.60%,6,3.40%,17,9.70%,28,147,1,15.90%,83.50%,0.60%,35,32,148,21.60% +108502,391,3485,State-funded primary,266,122,144,45.90%,54.10%,9,3.40%,36,13.50%,165,90,11,62.00%,33.80%,4.10%,112,107,244,43.90% +108519,391,4190,State-funded secondary,572,283,289,49.50%,50.50%,20,3.50%,68,11.90%,101,471,0,17.70%,82.30%,0.00%,101,104,572,18.20% +108521,391,4305,State-funded secondary,512,256,256,50.00%,50.00%,9,1.80%,52,10.20%,66,446,0,12.90%,87.10%,0.00%,92,99,512,19.30% +108538,391,6001,Independent school,660,660,0,100.00%,0.00%,0,0.00%,68,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108540,391,6003,Independent school,289,110,179,38.10%,61.90%,0,0.00%,52,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108542,391,6012,Independent school,195,195,0,100.00%,0.00%,4,2.10%,26,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108544,391,6014,Independent school,373,0,373,0.00%,100.00%,3,0.80%,67,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108547,391,6035,Independent school,940,407,533,43.30%,56.70%,0,0.00%,98,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108549,391,6037,Independent school,1346,594,752,44.10%,55.90%,2,0.10%,130,9.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108551,391,7004,Non-maintained special school,86,25,61,29.10%,70.90%,83,96.50%,3,3.50%,1,85,0,1.20%,98.80%,0.00%,33,45,69,65.20% +108563,392,1001,State-funded nursery,82,41,41,50.00%,50.00%,1,1.20%,4,4.90%,2,80,0,2.40%,97.60%,0.00%,0,0,0,0.00% +108565,392,1100,State-funded AP school,167,71,96,42.50%,57.50%,68,40.70%,97,58.10%,2,165,0,1.20%,98.80%,0.00%,103,116,167,69.50% +108569,392,2000,State-funded primary,432,214,218,49.50%,50.50%,2,0.50%,20,4.60%,6,426,0,1.40%,98.60%,0.00%,38,40,432,9.30% +108571,392,2004,State-funded primary,200,82,118,41.00%,59.00%,17,8.50%,58,29.00%,21,179,0,10.50%,89.50%,0.00%,112,114,183,62.30% +108572,392,2008,State-funded primary,214,110,104,51.40%,48.60%,20,9.30%,64,29.90%,29,185,0,13.60%,86.40%,0.00%,110,110,168,65.50% +108573,392,2013,State-funded primary,484,245,239,50.60%,49.40%,6,1.20%,54,11.20%,9,475,0,1.90%,98.10%,0.00%,64,66,415,15.90% +108574,392,2016,State-funded primary,363,197,166,54.30%,45.70%,5,1.40%,78,21.50%,16,347,0,4.40%,95.60%,0.00%,137,139,327,42.50% +108575,392,2021,State-funded primary,160,86,74,53.80%,46.30%,2,1.30%,38,23.80%,2,158,0,1.30%,98.80%,0.00%,109,110,141,78.00% +108576,392,2022,State-funded primary,232,103,129,44.40%,55.60%,7,3.00%,32,13.80%,4,228,0,1.70%,98.30%,0.00%,45,46,210,21.90% +108577,392,2024,State-funded primary,183,84,99,45.90%,54.10%,17,9.30%,42,23.00%,10,173,0,5.50%,94.50%,0.00%,91,92,157,58.60% +108578,392,2026,State-funded primary,226,110,116,48.70%,51.30%,2,0.90%,17,7.50%,9,214,3,4.00%,94.70%,1.30%,20,22,204,10.80% +108579,392,2031,State-funded primary,406,205,201,50.50%,49.50%,3,0.70%,73,18.00%,38,368,0,9.40%,90.60%,0.00%,149,156,352,44.30% +108580,392,2032,State-funded primary,302,147,155,48.70%,51.30%,3,1.00%,33,10.90%,1,301,0,0.30%,99.70%,0.00%,86,90,276,32.60% +108581,392,2036,State-funded primary,467,241,226,51.60%,48.40%,19,4.10%,49,10.50%,25,442,0,5.40%,94.60%,0.00%,41,42,415,10.10% +108582,392,2037,State-funded primary,351,185,166,52.70%,47.30%,8,2.30%,17,4.80%,27,323,1,7.70%,92.00%,0.30%,37,37,313,11.80% +108583,392,2041,State-funded primary,272,131,141,48.20%,51.80%,4,1.50%,27,9.90%,30,242,0,11.00%,89.00%,0.00%,28,28,229,12.20% +108584,392,2042,State-funded primary,357,184,173,51.50%,48.50%,7,2.00%,38,10.60%,27,330,0,7.60%,92.40%,0.00%,100,100,279,35.80% +108585,392,2046,State-funded primary,350,177,173,50.60%,49.40%,2,0.60%,30,8.60%,11,339,0,3.10%,96.90%,0.00%,16,17,303,5.60% +108586,392,2048,State-funded primary,406,211,195,52.00%,48.00%,6,1.50%,43,10.60%,8,398,0,2.00%,98.00%,0.00%,86,90,371,24.30% +108587,392,2054,State-funded primary,452,185,267,40.90%,59.10%,4,0.90%,34,7.50%,13,439,0,2.90%,97.10%,0.00%,104,109,421,25.90% +108588,392,2055,State-funded primary,335,160,175,47.80%,52.20%,4,1.20%,39,11.60%,4,331,0,1.20%,98.80%,0.00%,21,21,296,7.10% +108589,392,2058,State-funded primary,503,257,246,51.10%,48.90%,1,0.20%,26,5.20%,21,482,0,4.20%,95.80%,0.00%,35,36,449,8.00% +108590,392,2059,State-funded primary,179,90,89,50.30%,49.70%,3,1.70%,13,7.30%,2,177,0,1.10%,98.90%,0.00%,3,3,151,2.00% +108591,392,2060,State-funded primary,329,171,158,52.00%,48.00%,8,2.40%,21,6.40%,5,324,0,1.50%,98.50%,0.00%,26,26,280,9.30% +108592,392,2062,State-funded primary,206,107,99,51.90%,48.10%,1,0.50%,40,19.40%,58,148,0,28.20%,71.80%,0.00%,132,133,175,76.00% +108594,392,2065,State-funded primary,370,177,193,47.80%,52.20%,9,2.40%,23,6.20%,15,355,0,4.10%,95.90%,0.00%,124,126,324,38.90% +108595,392,2068,State-funded primary,295,134,161,45.40%,54.60%,3,1.00%,77,26.10%,21,274,0,7.10%,92.90%,0.00%,148,150,295,50.80% +108596,392,2069,State-funded primary,227,117,110,51.50%,48.50%,4,1.80%,52,22.90%,68,159,0,30.00%,70.00%,0.00%,123,124,204,60.80% +108597,392,2070,State-funded primary,379,164,215,43.30%,56.70%,10,2.60%,76,20.10%,41,337,1,10.80%,88.90%,0.30%,189,192,332,57.80% +108599,392,2072,State-funded primary,319,159,160,49.80%,50.20%,6,1.90%,42,13.20%,10,309,0,3.10%,96.90%,0.00%,65,66,268,24.60% +108600,392,2074,State-funded primary,278,141,137,50.70%,49.30%,7,2.50%,10,3.60%,3,275,0,1.10%,98.90%,0.00%,11,12,233,5.20% +108602,392,2076,State-funded primary,335,156,179,46.60%,53.40%,5,1.50%,52,15.50%,19,316,0,5.70%,94.30%,0.00%,189,191,316,60.40% +108603,392,2077,State-funded primary,164,79,85,48.20%,51.80%,5,3.00%,38,23.20%,31,133,0,18.90%,81.10%,0.00%,81,81,164,49.40% +108604,392,2078,State-funded primary,472,218,254,46.20%,53.80%,20,4.20%,139,29.40%,18,454,0,3.80%,96.20%,0.00%,85,86,408,21.10% +108605,392,2079,State-funded primary,161,71,90,44.10%,55.90%,2,1.20%,27,16.80%,13,148,0,8.10%,91.90%,0.00%,69,69,147,46.90% +108606,392,2080,State-funded primary,187,96,91,51.30%,48.70%,3,1.60%,23,12.30%,10,177,0,5.30%,94.70%,0.00%,68,69,152,45.40% +108607,392,2081,State-funded primary,393,208,185,52.90%,47.10%,6,1.50%,71,18.10%,32,361,0,8.10%,91.90%,0.00%,143,144,334,43.10% +108608,392,2082,State-funded primary,458,215,243,46.90%,53.10%,13,2.80%,89,19.40%,19,439,0,4.10%,95.90%,0.00%,183,185,406,45.60% +108609,392,2083,State-funded primary,235,112,123,47.70%,52.30%,10,4.30%,29,12.30%,17,218,0,7.20%,92.80%,0.00%,83,83,203,40.90% +108610,392,2084,State-funded primary,298,158,140,53.00%,47.00%,8,2.70%,38,12.80%,27,271,0,9.10%,90.90%,0.00%,82,84,264,31.80% +108611,392,2085,State-funded primary,342,164,178,48.00%,52.00%,9,2.60%,62,18.10%,15,327,0,4.40%,95.60%,0.00%,138,139,342,40.60% +108612,392,2086,State-funded primary,178,91,87,51.10%,48.90%,10,5.60%,36,20.20%,5,173,0,2.80%,97.20%,0.00%,62,65,143,45.50% +108614,392,3301,State-funded primary,189,93,96,49.20%,50.80%,2,1.10%,39,20.60%,5,184,0,2.60%,97.40%,0.00%,72,79,171,46.20% +108615,392,3302,State-funded primary,212,107,105,50.50%,49.50%,6,2.80%,29,13.70%,14,198,0,6.60%,93.40%,0.00%,45,45,194,23.20% +108626,392,3321,State-funded primary,140,72,68,51.40%,48.60%,6,4.30%,27,19.30%,40,100,0,28.60%,71.40%,0.00%,60,61,140,43.60% +108627,392,4006,State-funded secondary,910,414,496,45.50%,54.50%,13,1.40%,105,11.50%,23,885,2,2.50%,97.30%,0.20%,123,135,910,14.80% +108628,392,4008,State-funded secondary,364,172,192,47.30%,52.70%,47,12.90%,72,19.80%,32,332,0,8.80%,91.20%,0.00%,215,235,364,64.60% +108635,392,4025,State-funded secondary,597,297,300,49.70%,50.30%,16,2.70%,65,10.90%,42,555,0,7.00%,93.00%,0.00%,112,121,597,20.30% +108636,392,4026,State-funded secondary,772,376,396,48.70%,51.30%,19,2.50%,64,8.30%,12,760,0,1.60%,98.40%,0.00%,31,35,772,4.50% +108637,392,4027,State-funded secondary,230,128,102,55.70%,44.30%,4,1.70%,41,17.80%,24,206,0,10.40%,89.60%,0.00%,82,91,230,39.60% +108638,392,4029,State-funded secondary,1695,811,884,47.80%,52.20%,28,1.70%,133,7.80%,78,1617,0,4.60%,95.40%,0.00%,127,101,1115,9.10% +108639,392,4030,State-funded secondary,1214,595,619,49.00%,51.00%,21,1.70%,96,7.90%,31,1183,0,2.60%,97.40%,0.00%,255,270,1079,25.00% +108640,392,4032,State-funded secondary,1011,481,530,47.60%,52.40%,19,1.90%,83,8.20%,96,915,0,9.50%,90.50%,0.00%,317,318,883,36.00% +108641,392,4033,State-funded secondary,1046,543,503,51.90%,48.10%,8,0.80%,165,15.80%,28,1016,2,2.70%,97.10%,0.20%,399,398,933,42.70% +108642,392,4034,State-funded secondary,490,250,240,51.00%,49.00%,9,1.80%,70,14.30%,31,459,0,6.30%,93.70%,0.00%,137,142,420,33.80% +108644,392,4038,State-funded secondary,846,400,446,47.30%,52.70%,39,4.60%,97,11.50%,27,818,1,3.20%,96.70%,0.10%,336,401,846,47.40% +108645,392,4039,State-funded secondary,906,447,459,49.30%,50.70%,30,3.30%,190,21.00%,52,854,0,5.70%,94.30%,0.00%,242,241,806,29.90% +108649,392,5400,State-funded secondary,354,174,180,49.20%,50.80%,7,2.00%,40,11.30%,12,342,0,3.40%,96.60%,0.00%,44,51,354,14.40% +108651,391,6009,Independent school,313,125,188,39.90%,60.10%,0,0.00%,22,7.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108652,392,7001,State-funded special school,155,48,107,31.00%,69.00%,152,98.10%,3,1.90%,2,153,0,1.30%,98.70%,0.00%,57,52,122,42.60% +108653,392,7002,State-funded special school,169,48,121,28.40%,71.60%,169,100.00%,0,0.00%,5,164,0,3.00%,97.00%,0.00%,93,98,169,58.00% +108655,392,7004,State-funded special school,121,23,98,19.00%,81.00%,121,100.00%,0,0.00%,7,114,0,5.80%,94.20%,0.00%,61,62,121,51.20% +108657,392,7006,Non-maintained special school,157,39,118,24.80%,75.20%,155,98.70%,2,1.30%,3,154,0,1.90%,98.10%,0.00%,59,51,119,42.90% +108661,393,1010,State-funded nursery,66,29,37,43.90%,56.10%,0,0.00%,6,9.10%,2,64,0,3.00%,97.00%,0.00%,0,0,0,0.00% +108663,393,1016,State-funded nursery,79,42,37,53.20%,46.80%,1,1.30%,4,5.10%,2,77,0,2.50%,97.50%,0.00%,0,0,0,0.00% +108665,393,1018,State-funded nursery,71,26,45,36.60%,63.40%,0,0.00%,6,8.50%,1,70,0,1.40%,98.60%,0.00%,0,0,0,0.00% +108666,393,1100,State-funded AP school,63,18,45,28.60%,71.40%,4,6.30%,59,93.70%,0,63,0,0.00%,100.00%,0.00%,45,54,63,85.70% +108668,393,2000,State-funded primary,281,150,131,53.40%,46.60%,4,1.40%,33,11.70%,116,165,0,41.30%,58.70%,0.00%,78,79,245,32.20% +108672,393,2015,State-funded primary,250,138,112,55.20%,44.80%,5,2.00%,43,17.20%,109,141,0,43.60%,56.40%,0.00%,155,155,225,68.90% +108673,393,2017,State-funded primary,613,315,298,51.40%,48.60%,5,0.80%,101,16.50%,7,604,2,1.10%,98.50%,0.30%,65,73,561,13.00% +108675,393,2020,State-funded primary,183,91,92,49.70%,50.30%,2,1.10%,52,28.40%,110,73,0,60.10%,39.90%,0.00%,84,85,158,53.80% +108676,393,2023,State-funded primary,246,127,119,51.60%,48.40%,3,1.20%,65,26.40%,27,219,0,11.00%,89.00%,0.00%,132,139,207,67.10% +108678,393,2028,State-funded primary,205,110,95,53.70%,46.30%,11,5.40%,47,22.90%,7,198,0,3.40%,96.60%,0.00%,129,142,205,69.30% +108682,393,2033,State-funded primary,238,119,119,50.00%,50.00%,9,3.80%,48,20.20%,7,231,0,2.90%,97.10%,0.00%,103,104,174,59.80% +108686,393,2040,State-funded primary,301,161,140,53.50%,46.50%,1,0.30%,47,15.60%,11,290,0,3.70%,96.30%,0.00%,80,80,301,26.60% +108687,393,2042,State-funded primary,230,105,125,45.70%,54.30%,4,1.70%,42,18.30%,2,228,0,0.90%,99.10%,0.00%,61,64,208,30.80% +108688,393,2043,State-funded primary,178,87,91,48.90%,51.10%,5,2.80%,22,12.40%,2,176,0,1.10%,98.90%,0.00%,12,12,178,6.70% +108692,393,2050,State-funded primary,234,114,120,48.70%,51.30%,4,1.70%,25,10.70%,1,232,1,0.40%,99.10%,0.40%,23,27,234,11.50% +108693,393,2055,State-funded primary,206,109,97,52.90%,47.10%,2,1.00%,25,12.10%,1,205,0,0.50%,99.50%,0.00%,44,44,206,21.40% +108694,393,2056,State-funded primary,247,126,121,51.00%,49.00%,5,2.00%,50,20.20%,3,244,0,1.20%,98.80%,0.00%,53,54,209,25.80% +108695,393,2063,State-funded primary,133,56,77,42.10%,57.90%,3,2.30%,24,18.00%,22,111,0,16.50%,83.50%,0.00%,91,85,121,70.20% +108698,393,2073,State-funded primary,265,127,138,47.90%,52.10%,4,1.50%,60,22.60%,12,253,0,4.50%,95.50%,0.00%,138,139,265,52.50% +108699,393,2075,State-funded primary,202,91,111,45.00%,55.00%,9,4.50%,48,23.80%,6,196,0,3.00%,97.00%,0.00%,95,100,180,55.60% +108700,393,2076,State-funded primary,251,120,131,47.80%,52.20%,11,4.40%,39,15.50%,7,232,12,2.80%,92.40%,4.80%,92,94,209,45.00% +108701,393,2080,State-funded primary,252,116,136,46.00%,54.00%,12,4.80%,60,23.80%,16,236,0,6.30%,93.70%,0.00%,129,131,252,52.00% +108704,393,2083,State-funded primary,440,220,220,50.00%,50.00%,7,1.60%,82,18.60%,18,422,0,4.10%,95.90%,0.00%,154,157,404,38.90% +108706,393,2085,State-funded primary,165,58,107,35.20%,64.80%,54,32.70%,36,21.80%,4,161,0,2.40%,97.60%,0.00%,79,84,165,50.90% +108711,393,3006,State-funded primary,205,94,111,45.90%,54.10%,3,1.50%,36,17.60%,3,202,0,1.50%,98.50%,0.00%,70,72,205,35.10% +108727,393,4006,State-funded secondary,1074,531,543,49.40%,50.60%,8,0.70%,221,20.60%,113,961,0,10.50%,89.50%,0.00%,455,550,1074,51.20% +108730,393,4019,State-funded secondary,1032,482,550,46.70%,53.30%,20,1.90%,218,21.10%,35,997,0,3.40%,96.60%,0.00%,478,507,1032,49.10% +108731,393,4026,State-funded secondary,849,393,456,46.30%,53.70%,11,1.30%,206,24.30%,45,804,0,5.30%,94.70%,0.00%,410,417,849,49.10% +108738,393,7000,State-funded special school,210,64,146,30.50%,69.50%,210,100.00%,0,0.00%,2,208,0,1.00%,99.00%,0.00%,112,121,210,57.60% +108741,393,7004,State-funded special school,201,74,127,36.80%,63.20%,201,100.00%,0,0.00%,4,197,0,2.00%,98.00%,0.00%,107,110,169,65.10% +108746,394,1003,State-funded nursery,107,43,64,40.20%,59.80%,0,0.00%,5,4.70%,4,103,0,3.70%,96.30%,0.00%,0,0,0,0.00% +108748,394,1006,State-funded nursery,99,44,55,44.40%,55.60%,0,0.00%,9,9.10%,4,95,0,4.00%,96.00%,0.00%,0,0,0,0.00% +108749,394,1007,State-funded nursery,78,42,36,53.80%,46.20%,0,0.00%,19,24.40%,2,76,0,2.60%,97.40%,0.00%,0,0,0,0.00% +108750,394,1008,State-funded nursery,76,39,37,51.30%,48.70%,0,0.00%,11,14.50%,0,76,0,0.00%,100.00%,0.00%,0,0,0,0.00% +108751,394,1009,State-funded nursery,73,41,32,56.20%,43.80%,0,0.00%,14,19.20%,1,72,0,1.40%,98.60%,0.00%,0,0,0,0.00% +108752,394,1011,State-funded nursery,124,64,60,51.60%,48.40%,0,0.00%,11,8.90%,2,122,0,1.60%,98.40%,0.00%,0,0,0,0.00% +108753,394,1012,State-funded nursery,129,67,62,51.90%,48.10%,3,2.30%,23,17.80%,1,128,0,0.80%,99.20%,0.00%,1,0,0,0.00% +108755,394,2002,State-funded primary,342,162,180,47.40%,52.60%,0,0.00%,54,15.80%,63,279,0,18.40%,81.60%,0.00%,90,90,342,26.30% +108757,394,2004,State-funded primary,231,103,128,44.60%,55.40%,1,0.40%,61,26.40%,0,231,0,0.00%,100.00%,0.00%,114,114,231,49.40% +108758,394,2010,State-funded primary,308,146,162,47.40%,52.60%,3,1.00%,56,18.20%,45,258,5,14.60%,83.80%,1.60%,107,108,250,43.20% +108763,394,2019,State-funded primary,343,177,166,51.60%,48.40%,8,2.30%,27,7.90%,6,337,0,1.70%,98.30%,0.00%,34,34,343,9.90% +108765,394,2021,State-funded primary,241,119,122,49.40%,50.60%,2,0.80%,54,22.40%,7,234,0,2.90%,97.10%,0.00%,108,108,202,53.50% +108766,394,2026,State-funded primary,198,101,97,51.00%,49.00%,2,1.00%,26,13.10%,2,196,0,1.00%,99.00%,0.00%,55,55,140,39.30% +108769,394,2035,State-funded primary,388,189,199,48.70%,51.30%,9,2.30%,109,28.10%,37,351,0,9.50%,90.50%,0.00%,190,194,297,65.30% +108772,394,2042,State-funded primary,347,179,168,51.60%,48.40%,5,1.40%,126,36.30%,108,239,0,31.10%,68.90%,0.00%,102,104,285,36.50% +108776,394,2070,State-funded primary,221,106,115,48.00%,52.00%,3,1.40%,33,14.90%,44,177,0,19.90%,80.10%,0.00%,65,65,195,33.30% +108783,394,2088,State-funded primary,220,105,115,47.70%,52.30%,1,0.50%,55,25.00%,1,219,0,0.50%,99.50%,0.00%,127,128,188,68.10% +108784,394,2089,State-funded primary,413,219,194,53.00%,47.00%,2,0.50%,28,6.80%,5,408,0,1.20%,98.80%,0.00%,76,76,413,18.40% +108786,394,2092,State-funded primary,226,115,111,50.90%,49.10%,6,2.70%,35,15.50%,9,217,0,4.00%,96.00%,0.00%,22,22,186,11.80% +108787,394,2093,State-funded primary,209,100,109,47.80%,52.20%,4,1.90%,36,17.20%,3,206,0,1.40%,98.60%,0.00%,90,93,209,44.50% +108792,394,2099,State-funded primary,378,178,200,47.10%,52.90%,6,1.60%,59,15.60%,17,361,0,4.50%,95.50%,0.00%,94,94,335,28.10% +108794,394,2104,State-funded primary,123,58,65,47.20%,52.80%,3,2.40%,11,8.90%,6,117,0,4.90%,95.10%,0.00%,40,41,111,36.90% +108795,394,2105,State-funded primary,303,151,152,49.80%,50.20%,7,2.30%,45,14.90%,9,294,0,3.00%,97.00%,0.00%,143,143,262,54.60% +108799,394,2115,State-funded primary,358,165,193,46.10%,53.90%,19,5.30%,83,23.20%,14,337,7,3.90%,94.10%,2.00%,159,162,358,45.30% +108803,394,2126,State-funded primary,191,92,99,48.20%,51.80%,4,2.10%,34,17.80%,1,190,0,0.50%,99.50%,0.00%,93,95,169,56.20% +108816,394,2153,State-funded primary,297,135,162,45.50%,54.50%,3,1.00%,11,3.70%,8,289,0,2.70%,97.30%,0.00%,17,17,272,6.30% +108817,394,2157,State-funded primary,209,104,105,49.80%,50.20%,8,3.80%,43,20.60%,15,194,0,7.20%,92.80%,0.00%,49,49,186,26.30% +108818,394,2158,State-funded primary,437,216,221,49.40%,50.60%,4,0.90%,56,12.80%,18,419,0,4.10%,95.90%,0.00%,48,48,388,12.40% +108819,394,2159,State-funded primary,427,204,223,47.80%,52.20%,4,0.90%,66,15.50%,224,203,0,52.50%,47.50%,0.00%,105,106,382,27.70% +108822,394,2167,State-funded primary,170,91,79,53.50%,46.50%,0,0.00%,40,23.50%,21,149,0,12.40%,87.60%,0.00%,95,96,136,70.60% +108826,394,2171,State-funded primary,237,113,124,47.70%,52.30%,6,2.50%,34,14.30%,3,234,0,1.30%,98.70%,0.00%,101,101,212,47.60% +108828,394,2174,State-funded primary,263,130,133,49.40%,50.60%,19,7.20%,39,14.80%,28,235,0,10.60%,89.40%,0.00%,124,124,241,51.50% +108830,394,2176,State-funded primary,414,199,215,48.10%,51.90%,4,1.00%,57,13.80%,6,408,0,1.40%,98.60%,0.00%,103,104,414,25.10% +108832,394,2178,State-funded primary,226,101,125,44.70%,55.30%,9,4.00%,40,17.70%,4,222,0,1.80%,98.20%,0.00%,92,92,197,46.70% +108833,394,2179,State-funded primary,180,92,88,51.10%,48.90%,1,0.60%,31,17.20%,5,175,0,2.80%,97.20%,0.00%,51,51,162,31.50% +108835,394,2181,State-funded primary,219,114,105,52.10%,47.90%,5,2.30%,46,21.00%,4,215,0,1.80%,98.20%,0.00%,121,121,199,60.80% +108836,394,3005,State-funded primary,290,149,141,51.40%,48.60%,9,3.10%,41,14.10%,4,286,0,1.40%,98.60%,0.00%,31,31,245,12.70% +108837,394,3301,State-funded primary,345,182,163,52.80%,47.20%,3,0.90%,49,14.20%,13,332,0,3.80%,96.20%,0.00%,25,26,313,8.30% +108843,394,3315,State-funded primary,231,118,113,51.10%,48.90%,5,2.20%,45,19.50%,13,218,0,5.60%,94.40%,0.00%,57,57,209,27.30% +108873,394,6003,Independent school,218,115,103,52.80%,47.20%,2,0.90%,53,24.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108877,394,6015,Independent school,45,10,35,22.20%,77.80%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108882,394,7016,State-funded special school,121,46,75,38.00%,62.00%,118,97.50%,3,2.50%,9,112,0,7.40%,92.60%,0.00%,54,54,118,45.80% +108886,873,6051,Independent school,51,21,30,41.20%,58.80%,44,86.30%,7,13.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +108892,212,1103,State-funded AP school,1,1,0,100.00%,0.00%,1,100.00%,0,0.00%,0,1,0,0.00%,100.00%,0.00%,0,0,1,0.00% +108893,801,1002,State-funded nursery,158,64,94,40.50%,59.50%,0,0.00%,45,28.50%,57,101,0,36.10%,63.90%,0.00%,37,0,0,0.00% +108894,801,1003,State-funded nursery,140,71,69,50.70%,49.30%,0,0.00%,5,3.60%,36,104,0,25.70%,74.30%,0.00%,23,0,0,0.00% +108895,801,1004,State-funded nursery,94,40,54,42.60%,57.40%,4,4.30%,16,17.00%,31,58,5,33.00%,61.70%,5.30%,20,0,0,0.00% +108896,801,1005,State-funded nursery,160,78,82,48.80%,51.30%,5,3.10%,22,13.80%,24,136,0,15.00%,85.00%,0.00%,40,0,0,0.00% +108898,801,1007,State-funded nursery,95,43,52,45.30%,54.70%,0,0.00%,15,15.80%,72,23,0,75.80%,24.20%,0.00%,23,0,0,0.00% +108900,801,1009,State-funded nursery,101,50,51,49.50%,50.50%,0,0.00%,14,13.90%,31,70,0,30.70%,69.30%,0.00%,22,0,0,0.00% +108901,801,1010,State-funded nursery,120,56,64,46.70%,53.30%,1,0.80%,15,12.50%,25,95,0,20.80%,79.20%,0.00%,22,0,0,0.00% +108902,801,1011,State-funded nursery,101,47,54,46.50%,53.50%,0,0.00%,14,13.90%,24,77,0,23.80%,76.20%,0.00%,30,0,0,0.00% +108904,801,1014,State-funded nursery,140,63,77,45.00%,55.00%,3,2.10%,12,8.60%,44,96,0,31.40%,68.60%,0.00%,26,0,0,0.00% +108905,801,1015,State-funded nursery,136,65,71,47.80%,52.20%,0,0.00%,19,14.00%,55,81,0,40.40%,59.60%,0.00%,23,0,0,0.00% +108906,801,1016,State-funded nursery,206,92,114,44.70%,55.30%,1,0.50%,15,7.30%,13,192,1,6.30%,93.20%,0.50%,79,0,0,0.00% +108910,801,2001,State-funded primary,417,205,212,49.20%,50.80%,5,1.20%,45,10.80%,43,374,0,10.30%,89.70%,0.00%,25,25,417,6.00% +108911,801,2003,State-funded primary,400,186,214,46.50%,53.50%,4,1.00%,37,9.30%,33,367,0,8.30%,91.80%,0.00%,36,37,400,9.30% +108912,801,2004,State-funded primary,788,383,405,48.60%,51.40%,5,0.60%,96,12.20%,75,713,0,9.50%,90.50%,0.00%,71,74,788,9.40% +108914,801,2006,State-funded primary,283,137,146,48.40%,51.60%,5,1.80%,52,18.40%,62,221,0,21.90%,78.10%,0.00%,101,101,283,35.70% +108919,801,2018,State-funded primary,202,99,103,49.00%,51.00%,9,4.50%,65,32.20%,32,170,0,15.80%,84.20%,0.00%,78,79,202,39.10% +108920,801,2020,State-funded primary,271,129,142,47.60%,52.40%,7,2.60%,37,13.70%,132,138,1,48.70%,50.90%,0.40%,101,105,271,38.70% +108921,801,2021,State-funded primary,224,91,133,40.60%,59.40%,8,3.60%,13,5.80%,94,125,5,42.00%,55.80%,2.20%,56,57,224,25.40% +108931,801,2037,State-funded primary,414,192,222,46.40%,53.60%,11,2.70%,54,13.00%,130,284,0,31.40%,68.60%,0.00%,99,102,414,24.60% +108934,801,2041,State-funded primary,223,93,130,41.70%,58.30%,1,0.40%,22,9.90%,15,208,0,6.70%,93.30%,0.00%,12,12,223,5.40% +108956,801,2069,State-funded primary,214,97,117,45.30%,54.70%,3,1.40%,31,14.50%,24,180,10,11.20%,84.10%,4.70%,37,30,180,16.70% +108960,801,2073,State-funded primary,218,105,113,48.20%,51.80%,0,0.00%,31,14.20%,16,202,0,7.30%,92.70%,0.00%,17,17,178,9.60% +108961,801,2074,State-funded primary,226,109,117,48.20%,51.80%,6,2.70%,48,21.20%,24,202,0,10.60%,89.40%,0.00%,23,26,226,11.50% +108964,801,2079,State-funded primary,616,324,292,52.60%,47.40%,6,1.00%,61,9.90%,86,501,29,14.00%,81.30%,4.70%,60,61,577,10.60% +108966,801,2081,State-funded primary,169,87,82,51.50%,48.50%,0,0.00%,30,17.80%,52,116,1,30.80%,68.60%,0.60%,50,51,169,30.20% +108970,801,2086,State-funded primary,192,99,93,51.60%,48.40%,1,0.50%,20,10.40%,81,111,0,42.20%,57.80%,0.00%,69,70,192,36.50% +108975,801,2098,State-funded primary,607,315,292,51.90%,48.10%,8,1.30%,82,13.50%,91,516,0,15.00%,85.00%,0.00%,101,114,607,18.80% +108980,801,2109,State-funded primary,208,93,115,44.70%,55.30%,4,1.90%,36,17.30%,40,168,0,19.20%,80.80%,0.00%,65,65,208,31.30% +108983,801,2115,State-funded primary,191,96,95,50.30%,49.70%,13,6.80%,36,18.80%,51,140,0,26.70%,73.30%,0.00%,67,58,154,37.70% +109007,800,2160,State-funded primary,162,78,84,48.10%,51.90%,14,8.60%,33,20.40%,11,151,0,6.80%,93.20%,0.00%,102,86,134,64.20% +109011,803,2168,State-funded primary,208,94,114,45.20%,54.80%,5,2.40%,27,13.00%,4,204,0,1.90%,98.10%,0.00%,13,15,208,7.20% +109014,803,2172,State-funded primary,205,101,104,49.30%,50.70%,8,3.90%,23,11.20%,62,141,2,30.20%,68.80%,1.00%,49,53,205,25.90% +109016,803,2174,State-funded primary,314,154,160,49.00%,51.00%,5,1.60%,38,12.10%,15,299,0,4.80%,95.20%,0.00%,47,48,314,15.30% +109017,803,2176,State-funded primary,496,237,259,47.80%,52.20%,8,1.60%,58,11.70%,113,381,2,22.80%,76.80%,0.40%,115,118,496,23.80% +109018,803,2179,State-funded primary,299,160,139,53.50%,46.50%,9,3.00%,53,17.70%,84,215,0,28.10%,71.90%,0.00%,85,90,299,30.10% +109019,803,2180,State-funded primary,182,95,87,52.20%,47.80%,10,5.50%,38,20.90%,11,170,1,6.00%,93.40%,0.50%,28,28,182,15.40% +109020,803,2181,State-funded primary,106,49,57,46.20%,53.80%,6,5.70%,20,18.90%,11,94,1,10.40%,88.70%,0.90%,53,54,106,50.90% +109023,803,2185,State-funded primary,218,112,106,51.40%,48.60%,5,2.30%,22,10.10%,2,213,3,0.90%,97.70%,1.40%,18,18,218,8.30% +109024,803,2186,State-funded primary,205,112,93,54.60%,45.40%,6,2.90%,19,9.30%,21,184,0,10.20%,89.80%,0.00%,9,10,205,4.90% +109025,803,2187,State-funded primary,106,50,56,47.20%,52.80%,3,2.80%,19,17.90%,1,105,0,0.90%,99.10%,0.00%,20,20,106,18.90% +109026,803,2188,State-funded primary,240,111,129,46.30%,53.80%,2,0.80%,33,13.80%,6,234,0,2.50%,97.50%,0.00%,32,32,240,13.30% +109028,803,2191,State-funded primary,233,115,117,49.40%,50.20%,6,2.60%,26,11.20%,9,224,0,3.90%,96.10%,0.00%,4,4,233,1.70% +109029,803,2192,State-funded primary,181,81,100,44.80%,55.20%,3,1.70%,17,9.40%,8,173,0,4.40%,95.60%,0.00%,0,0,181,0.00% +109030,803,2194,State-funded primary,406,207,199,51.00%,49.00%,11,2.70%,43,10.60%,11,395,0,2.70%,97.30%,0.00%,22,25,406,6.20% +109033,803,2199,State-funded primary,223,112,111,50.20%,49.80%,5,2.20%,11,4.90%,15,208,0,6.70%,93.30%,0.00%,18,19,223,8.50% +109034,803,2200,State-funded primary,340,153,187,45.00%,55.00%,6,1.80%,44,12.90%,28,312,0,8.20%,91.80%,0.00%,63,64,340,18.80% +109040,803,2208,State-funded primary,240,115,125,47.90%,52.10%,5,2.10%,31,12.90%,18,222,0,7.50%,92.50%,0.00%,24,25,240,10.40% +109046,803,2215,State-funded primary,237,123,114,51.90%,48.10%,0,0.00%,36,15.20%,33,201,3,13.90%,84.80%,1.30%,40,40,237,16.90% +109047,803,2216,State-funded primary,278,129,149,46.40%,53.60%,5,1.80%,23,8.30%,47,231,0,16.90%,83.10%,0.00%,94,98,278,35.30% +109049,803,2220,State-funded primary,180,86,94,47.80%,52.20%,1,0.60%,14,7.80%,11,169,0,6.10%,93.90%,0.00%,19,20,180,11.10% +109054,803,2227,State-funded primary,185,106,79,57.30%,42.70%,4,2.20%,29,15.70%,18,163,4,9.70%,88.10%,2.20%,23,25,185,13.50% +109057,803,2231,State-funded primary,178,84,94,47.20%,52.80%,5,2.80%,8,4.50%,5,173,0,2.80%,97.20%,0.00%,20,20,178,11.20% +109089,800,2270,State-funded primary,277,126,151,45.50%,54.50%,7,2.50%,50,18.10%,13,264,0,4.70%,95.30%,0.00%,52,52,277,18.80% +109090,802,2271,State-funded primary,129,62,67,48.10%,51.90%,5,3.90%,20,15.50%,6,123,0,4.70%,95.30%,0.00%,23,23,129,17.80% +109092,802,2273,State-funded primary,70,31,39,44.30%,55.70%,3,4.30%,13,18.60%,7,63,0,10.00%,90.00%,0.00%,14,14,67,20.90% +109108,802,2295,State-funded primary,415,197,218,47.50%,52.50%,3,0.70%,18,4.30%,16,399,0,3.90%,96.10%,0.00%,32,32,415,7.70% +109110,801,2299,State-funded primary,237,102,135,43.00%,57.00%,10,4.20%,54,22.80%,166,71,0,70.00%,30.00%,0.00%,105,106,237,44.70% +109113,803,2306,State-funded primary,205,107,98,52.20%,47.80%,11,5.40%,36,17.60%,5,200,0,2.40%,97.60%,0.00%,17,19,205,9.30% +109114,803,2308,State-funded primary,182,75,107,41.20%,58.80%,3,1.60%,40,22.00%,4,178,0,2.20%,97.80%,0.00%,26,26,182,14.30% +109116,801,2312,State-funded primary,833,407,426,48.90%,51.10%,4,0.50%,53,6.40%,214,619,0,25.70%,74.30%,0.00%,45,48,833,5.80% +109117,803,2313,State-funded primary,189,86,103,45.50%,54.50%,2,1.10%,30,15.90%,10,179,0,5.30%,94.70%,0.00%,50,52,189,27.50% +109118,801,2314,State-funded primary,436,207,229,47.50%,52.50%,7,1.60%,114,26.10%,112,311,13,25.70%,71.30%,3.00%,145,142,408,34.80% +109121,803,2317,State-funded primary,416,202,214,48.60%,51.40%,43,10.30%,46,11.10%,33,382,1,7.90%,91.80%,0.20%,27,29,416,7.00% +109126,803,2322,State-funded primary,166,82,84,49.40%,50.60%,6,3.60%,22,13.30%,29,136,1,17.50%,81.90%,0.60%,57,57,166,34.30% +109130,801,2326,State-funded primary,456,239,217,52.40%,47.60%,6,1.30%,110,24.10%,57,399,0,12.50%,87.50%,0.00%,229,212,408,52.00% +109132,801,2328,State-funded primary,612,284,328,46.40%,53.60%,13,2.10%,89,14.50%,92,520,0,15.00%,85.00%,0.00%,142,144,612,23.50% +109133,803,2329,State-funded primary,630,283,347,44.90%,55.10%,22,3.50%,99,15.70%,30,599,1,4.80%,95.10%,0.20%,62,64,630,10.20% +109134,803,2331,State-funded primary,412,202,210,49.00%,51.00%,9,2.20%,46,11.20%,18,393,1,4.40%,95.40%,0.20%,30,31,412,7.50% +109136,803,2333,State-funded primary,284,140,144,49.30%,50.70%,4,1.40%,28,9.90%,14,270,0,4.90%,95.10%,0.00%,27,31,284,10.90% +109140,801,3000,State-funded primary,211,107,104,50.70%,49.30%,4,1.90%,22,10.40%,48,162,1,22.70%,76.80%,0.50%,62,54,180,30.00% +109143,801,3008,State-funded primary,411,186,225,45.30%,54.70%,3,0.70%,65,15.80%,77,334,0,18.70%,81.30%,0.00%,74,75,411,18.20% +109144,801,3010,State-funded primary,54,24,30,44.40%,55.60%,5,9.30%,9,16.70%,32,22,0,59.30%,40.70%,0.00%,35,36,54,66.70% +109146,801,3014,State-funded primary,497,248,249,49.90%,50.10%,6,1.20%,58,11.70%,89,408,0,17.90%,82.10%,0.00%,36,41,497,8.20% +109157,803,3042,State-funded primary,306,146,160,47.70%,52.30%,9,2.90%,11,3.60%,46,259,1,15.00%,84.60%,0.30%,20,20,306,6.50% +109158,803,3043,State-funded primary,204,112,92,54.90%,45.10%,7,3.40%,17,8.30%,13,189,2,6.40%,92.60%,1.00%,8,9,204,4.40% +109159,803,3044,State-funded primary,383,188,195,49.10%,50.90%,7,1.80%,44,11.50%,8,375,0,2.10%,97.90%,0.00%,53,60,383,15.70% +109160,803,3045,State-funded primary,311,139,172,44.70%,55.30%,12,3.90%,44,14.10%,6,305,0,1.90%,98.10%,0.00%,16,16,311,5.10% +109161,803,3046,State-funded primary,81,47,34,58.00%,42.00%,0,0.00%,11,13.60%,3,78,0,3.70%,96.30%,0.00%,7,7,81,8.60% +109162,803,3047,State-funded primary,98,51,47,52.00%,48.00%,4,4.10%,13,13.30%,1,96,1,1.00%,98.00%,1.00%,26,26,98,26.50% +109163,803,3048,State-funded primary,287,128,159,44.60%,55.40%,9,3.10%,38,13.20%,12,274,1,4.20%,95.50%,0.30%,23,23,287,8.00% +109164,803,3049,State-funded primary,620,308,312,49.70%,50.30%,9,1.50%,26,4.20%,70,550,0,11.30%,88.70%,0.00%,45,45,620,7.30% +109165,803,3050,State-funded primary,288,134,154,46.50%,53.50%,11,3.80%,31,10.80%,17,271,0,5.90%,94.10%,0.00%,43,45,288,15.60% +109166,803,3051,State-funded primary,224,127,97,56.70%,43.30%,2,0.90%,24,10.70%,13,211,0,5.80%,94.20%,0.00%,13,13,224,5.80% +109167,803,3052,State-funded primary,345,144,201,41.70%,58.30%,7,2.00%,68,19.70%,44,301,0,12.80%,87.20%,0.00%,84,85,345,24.60% +109168,803,3053,State-funded primary,131,64,67,48.90%,51.10%,1,0.80%,14,10.70%,6,125,0,4.60%,95.40%,0.00%,8,8,131,6.10% +109169,803,3054,State-funded primary,52,28,24,53.80%,46.20%,0,0.00%,10,19.20%,1,51,0,1.90%,98.10%,0.00%,12,12,52,23.10% +109170,803,3055,State-funded primary,184,84,100,45.70%,54.30%,1,0.50%,9,4.90%,8,176,0,4.30%,95.70%,0.00%,10,10,184,5.40% +109171,803,3056,State-funded primary,192,94,98,49.00%,51.00%,1,0.50%,23,12.00%,3,189,0,1.60%,98.40%,0.00%,18,19,192,9.90% +109172,803,3057,State-funded primary,67,29,38,43.30%,56.70%,2,3.00%,16,23.90%,3,64,0,4.50%,95.50%,0.00%,10,10,67,14.90% +109174,803,3059,State-funded primary,225,104,121,46.20%,53.80%,11,4.90%,26,11.60%,3,222,0,1.30%,98.70%,0.00%,31,28,196,14.30% +109175,803,3061,State-funded primary,99,57,42,57.60%,42.40%,1,1.00%,9,9.10%,10,88,1,10.10%,88.90%,1.00%,5,6,99,6.10% +109176,803,3064,State-funded primary,202,99,103,49.00%,51.00%,4,2.00%,17,8.40%,7,195,0,3.50%,96.50%,0.00%,26,27,202,13.40% +109177,803,3065,State-funded primary,187,93,94,49.70%,50.30%,4,2.10%,25,13.40%,1,183,3,0.50%,97.90%,1.60%,27,27,187,14.40% +109178,803,3067,State-funded primary,167,79,88,47.30%,52.70%,8,4.80%,16,9.60%,18,147,2,10.80%,88.00%,1.20%,13,14,167,8.40% +109179,803,3070,State-funded primary,192,96,96,50.00%,50.00%,9,4.70%,20,10.40%,43,149,0,22.40%,77.60%,0.00%,21,21,192,10.90% +109180,803,3071,State-funded primary,68,31,37,45.60%,54.40%,2,2.90%,27,39.70%,1,67,0,1.50%,98.50%,0.00%,25,26,68,38.20% +109181,803,3072,State-funded primary,70,36,34,51.40%,48.60%,1,1.40%,11,15.70%,2,66,2,2.90%,94.30%,2.90%,10,10,70,14.30% +109182,803,3073,State-funded primary,122,55,67,45.10%,54.90%,3,2.50%,10,8.20%,0,121,1,0.00%,99.20%,0.80%,9,9,122,7.40% +109215,802,3113,State-funded primary,205,103,102,50.20%,49.80%,9,4.40%,17,8.30%,6,199,0,2.90%,97.10%,0.00%,28,29,205,14.10% +109225,803,3123,State-funded primary,190,98,92,51.60%,48.40%,5,2.60%,35,18.40%,15,175,0,7.90%,92.10%,0.00%,25,25,190,13.20% +109228,803,3126,State-funded primary,631,328,303,52.00%,48.00%,9,1.40%,73,11.60%,104,522,5,16.50%,82.70%,0.80%,60,62,631,9.80% +109229,803,3127,State-funded primary,342,165,177,48.20%,51.80%,6,1.80%,40,11.70%,17,323,2,5.00%,94.40%,0.60%,34,35,309,11.30% +109238,802,3349,State-funded primary,205,102,103,49.80%,50.20%,3,1.50%,21,10.20%,32,173,0,15.60%,84.40%,0.00%,17,18,189,9.50% +109241,802,3352,State-funded primary,187,90,97,48.10%,51.90%,3,1.60%,16,8.60%,3,184,0,1.60%,98.40%,0.00%,13,14,187,7.50% +109243,801,3400,State-funded primary,217,117,100,53.90%,46.10%,3,1.40%,29,13.40%,60,157,0,27.60%,72.40%,0.00%,100,96,196,49.00% +109244,801,3401,State-funded primary,177,92,85,52.00%,48.00%,6,3.40%,49,27.70%,57,120,0,32.20%,67.80%,0.00%,71,72,177,40.70% +109245,801,3402,State-funded primary,178,83,95,46.60%,53.40%,5,2.80%,8,4.50%,73,104,1,41.00%,58.40%,0.60%,17,17,178,9.60% +109247,801,3405,State-funded primary,200,106,94,53.00%,47.00%,0,0.00%,17,8.50%,66,134,0,33.00%,67.00%,0.00%,22,22,200,11.00% +109249,803,3410,State-funded primary,194,86,108,44.30%,55.70%,5,2.60%,13,6.70%,119,75,0,61.30%,38.70%,0.00%,7,7,194,3.60% +109251,801,3412,State-funded primary,211,113,98,53.60%,46.40%,0,0.00%,26,12.30%,80,131,0,37.90%,62.10%,0.00%,41,41,211,19.40% +109254,801,3415,State-funded primary,240,118,122,49.20%,50.80%,6,2.50%,44,18.30%,35,205,0,14.60%,85.40%,0.00%,22,23,208,11.10% +109255,801,3417,State-funded primary,400,206,194,51.50%,48.50%,7,1.80%,31,7.80%,79,320,1,19.80%,80.00%,0.30%,39,40,400,10.00% +109260,800,3424,State-funded primary,311,165,146,53.10%,46.90%,12,3.90%,33,10.60%,78,233,0,25.10%,74.90%,0.00%,34,34,311,10.90% +109261,800,3425,State-funded primary,198,96,102,48.50%,51.50%,5,2.50%,25,12.60%,53,145,0,26.80%,73.20%,0.00%,25,25,198,12.60% +109262,803,3431,State-funded primary,56,26,30,46.40%,53.60%,4,7.10%,14,25.00%,0,56,0,0.00%,100.00%,0.00%,10,10,56,17.90% +109263,803,3432,State-funded primary,205,99,106,48.30%,51.70%,2,1.00%,19,9.30%,9,190,6,4.40%,92.70%,2.90%,18,19,205,9.30% +109264,803,3433,State-funded primary,331,153,178,46.20%,53.80%,12,3.60%,52,15.70%,12,319,0,3.60%,96.40%,0.00%,38,39,331,11.80% +109265,803,3434,State-funded primary,174,95,79,54.60%,45.40%,4,2.30%,27,15.50%,55,113,6,31.60%,64.90%,3.40%,32,32,174,18.40% +109266,803,3435,State-funded primary,209,100,109,47.80%,52.20%,7,3.30%,18,8.60%,134,75,0,64.10%,35.90%,0.00%,22,24,209,11.50% +109267,803,3436,State-funded primary,200,104,96,52.00%,48.00%,11,5.50%,38,19.00%,48,152,0,24.00%,76.00%,0.00%,43,45,200,22.50% +109268,803,3437,State-funded primary,177,80,97,45.20%,54.80%,1,0.60%,25,14.10%,55,122,0,31.10%,68.90%,0.00%,33,33,177,18.60% +109269,803,3438,State-funded primary,211,95,116,45.00%,55.00%,5,2.40%,49,23.20%,45,166,0,21.30%,78.70%,0.00%,37,40,211,19.00% +109302,840,3518,State-funded primary,240,120,120,50.00%,50.00%,7,2.90%,52,21.70%,11,229,0,4.60%,95.40%,0.00%,136,137,240,57.10% +109319,803,4146,State-funded secondary,972,504,468,51.90%,48.10%,29,3.00%,132,13.60%,67,905,0,6.90%,93.10%,0.00%,111,125,855,14.60% +109327,801,4603,State-funded secondary,1784,939,845,52.60%,47.40%,47,2.60%,326,18.30%,312,1467,5,17.50%,82.20%,0.30%,248,212,1102,19.20% +109329,800,4608,State-funded secondary,1006,517,489,51.40%,48.60%,42,4.20%,73,7.30%,152,817,37,15.10%,81.20%,3.70%,132,134,840,16.00% +109331,801,4801,State-funded secondary,754,387,367,51.30%,48.70%,14,1.90%,144,19.10%,106,648,0,14.10%,85.90%,0.00%,210,241,754,32.00% +109334,801,6000,Independent school,1332,545,787,40.90%,59.10%,2,0.20%,244,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109335,801,6001,Independent school,733,354,379,48.30%,51.70%,14,1.90%,217,29.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109336,801,6002,Independent school,806,334,472,41.40%,58.60%,0,0.00%,134,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109337,801,6003,Independent school,546,546,0,100.00%,0.00%,0,0.00%,45,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109339,801,6005,Independent school,63,38,25,60.30%,39.70%,2,3.20%,9,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109341,801,6007,Independent school,6,3,3,50.00%,50.00%,2,33.30%,1,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109343,801,6009,Independent school,67,34,33,50.70%,49.30%,1,1.50%,14,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109345,801,6011,Independent school,82,38,44,46.30%,53.70%,3,3.70%,12,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109346,800,6000,Independent school,857,376,481,43.90%,56.10%,0,0.00%,211,24.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109347,800,6001,Independent school,608,248,360,40.80%,59.20%,2,0.30%,139,22.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109348,800,6002,Independent school,607,607,0,100.00%,0.00%,4,0.70%,90,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109349,800,6003,Independent school,456,214,242,46.90%,53.10%,1,0.20%,99,21.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109350,800,6004,Independent school,259,128,131,49.40%,50.60%,7,2.70%,41,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109353,803,6000,Independent school,30,7,23,23.30%,76.70%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109357,803,6004,Independent school,274,125,149,45.60%,54.40%,4,1.50%,44,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109360,800,6008,Independent school,396,177,219,44.70%,55.30%,0,0.00%,110,27.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109361,802,6001,Independent school,267,113,154,42.30%,57.70%,2,0.70%,36,13.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109362,802,6002,Independent school,616,308,308,50.00%,50.00%,2,0.30%,166,26.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109363,802,6003,Independent school,125,58,67,46.40%,53.60%,0,0.00%,7,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109369,801,6013,Independent school,1368,624,744,45.60%,54.40%,4,0.30%,245,17.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109370,801,6014,Independent school,776,62,714,8.00%,92.00%,1,0.10%,100,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109371,801,6015,Independent school,763,763,0,100.00%,0.00%,0,0.00%,124,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109374,800,6010,Independent school,1175,525,650,44.70%,55.30%,3,0.30%,151,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109379,800,6012,Independent school,330,158,172,47.90%,52.10%,3,0.90%,77,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109382,801,6019,Independent school,51,18,33,35.30%,64.70%,47,92.20%,4,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109385,801,7000,State-funded special school,48,23,25,47.90%,52.10%,47,97.90%,1,2.10%,19,29,0,39.60%,60.40%,0.00%,20,22,46,47.80% +109386,801,7002,State-funded special school,169,38,131,22.50%,77.50%,169,100.00%,0,0.00%,30,139,0,17.80%,82.20%,0.00%,77,78,156,50.00% +109391,801,7011,State-funded special school,66,32,34,48.50%,51.50%,66,100.00%,0,0.00%,16,50,0,24.20%,75.80%,0.00%,28,22,47,46.80% +109393,801,7014,State-funded special school,149,59,90,39.60%,60.40%,149,100.00%,0,0.00%,14,135,0,9.40%,90.60%,0.00%,84,69,117,59.00% +109403,803,7028,State-funded special school,161,42,119,26.10%,73.90%,161,100.00%,0,0.00%,22,139,0,13.70%,86.30%,0.00%,43,36,117,30.80% +109406,802,7036,State-funded special school,182,65,117,35.70%,64.30%,182,100.00%,0,0.00%,8,174,0,4.40%,95.60%,0.00%,72,72,171,42.10% +109407,802,7037,State-funded special school,141,48,93,34.00%,66.00%,140,99.30%,1,0.70%,5,135,1,3.50%,95.70%,0.70%,58,47,108,43.50% +109409,802,7039,State-funded special school,84,39,45,46.40%,53.60%,84,100.00%,0,0.00%,7,77,0,8.30%,91.70%,0.00%,28,26,69,37.70% +109410,801,7042,State-funded special school,164,48,116,29.30%,70.70%,164,100.00%,0,0.00%,75,88,1,45.70%,53.70%,0.60%,100,84,135,62.20% +109413,822,1000,State-funded nursery,156,82,74,52.60%,47.40%,0,0.00%,13,8.30%,50,106,0,32.10%,67.90%,0.00%,15,0,2,0.00% +109415,823,1002,State-funded nursery,96,46,50,47.90%,52.10%,0,0.00%,6,6.30%,15,81,0,15.60%,84.40%,0.00%,0,0,0,0.00% +109417,822,1009,State-funded nursery,122,57,65,46.70%,53.30%,0,0.00%,14,11.50%,51,71,0,41.80%,58.20%,0.00%,13,0,5,0.00% +109418,821,1012,State-funded nursery,130,59,71,45.40%,54.60%,2,1.50%,38,29.20%,65,65,0,50.00%,50.00%,0.00%,1,0,0,0.00% +109419,821,1014,State-funded nursery,129,51,78,39.50%,60.50%,3,2.30%,41,31.80%,89,39,1,69.00%,30.20%,0.80%,44,3,3,100.00% +109420,821,1015,State-funded nursery,174,83,91,47.70%,52.30%,5,2.90%,17,9.80%,32,142,0,18.40%,81.60%,0.00%,1,0,5,0.00% +109421,821,1016,State-funded nursery,111,47,64,42.30%,57.70%,1,0.90%,30,27.00%,46,65,0,41.40%,58.60%,0.00%,35,0,0,0.00% +109422,823,1017,State-funded nursery,125,80,45,64.00%,36.00%,1,0.80%,12,9.60%,52,73,0,41.60%,58.40%,0.00%,0,0,0,0.00% +109423,821,1018,State-funded nursery,116,56,60,48.30%,51.70%,0,0.00%,19,16.40%,61,55,0,52.60%,47.40%,0.00%,39,0,1,0.00% +109428,823,2002,State-funded primary,121,62,59,51.20%,48.80%,5,4.10%,12,9.90%,3,118,0,2.50%,97.50%,0.00%,2,2,121,1.70% +109429,823,2003,State-funded primary,399,191,208,47.90%,52.10%,3,0.80%,30,7.50%,11,388,0,2.80%,97.20%,0.00%,45,42,351,12.00% +109432,822,2006,State-funded primary,426,209,217,49.10%,50.90%,14,3.30%,57,13.40%,192,234,0,45.10%,54.90%,0.00%,130,131,383,34.20% +109433,822,2007,State-funded primary,270,125,145,46.30%,53.70%,9,3.30%,45,16.70%,81,189,0,30.00%,70.00%,0.00%,75,76,255,29.80% +109435,822,2009,State-funded primary,679,314,365,46.20%,53.80%,14,2.10%,33,4.90%,132,546,1,19.40%,80.40%,0.10%,58,59,628,9.40% +109436,822,2013,State-funded primary,202,92,110,45.50%,54.50%,12,5.90%,27,13.40%,166,36,0,82.20%,17.80%,0.00%,42,42,176,23.90% +109440,823,2032,State-funded primary,163,80,83,49.10%,50.90%,7,4.30%,18,11.00%,2,161,0,1.20%,98.80%,0.00%,22,22,146,15.10% +109442,822,2035,State-funded primary,125,72,53,57.60%,42.40%,0,0.00%,12,9.60%,8,117,0,6.40%,93.60%,0.00%,26,26,125,20.80% +109443,822,2036,State-funded primary,80,40,40,50.00%,50.00%,1,1.30%,11,13.80%,1,79,0,1.30%,98.80%,0.00%,7,7,80,8.80% +109444,823,2038,State-funded primary,336,153,183,45.50%,54.50%,4,1.20%,60,17.90%,151,185,0,44.90%,55.10%,0.00%,32,33,296,11.10% +109446,822,2041,State-funded primary,363,169,194,46.60%,53.40%,9,2.50%,58,16.00%,40,323,0,11.00%,89.00%,0.00%,53,46,311,14.80% +109451,822,2048,State-funded primary,93,52,41,55.90%,44.10%,5,5.40%,18,19.40%,1,92,0,1.10%,98.90%,0.00%,9,8,76,10.50% +109452,823,2049,State-funded primary,305,144,161,47.20%,52.80%,6,2.00%,23,7.50%,6,297,2,2.00%,97.40%,0.70%,21,22,265,8.30% +109456,823,2055,State-funded primary,142,70,72,49.30%,50.70%,3,2.10%,26,18.30%,8,134,0,5.60%,94.40%,0.00%,6,6,113,5.30% +109457,823,2056,State-funded primary,247,118,129,47.80%,52.20%,12,4.90%,12,4.90%,3,244,0,1.20%,98.80%,0.00%,17,17,210,8.10% +109458,823,2057,State-funded primary,137,74,63,54.00%,46.00%,3,2.20%,14,10.20%,1,136,0,0.70%,99.30%,0.00%,27,25,107,23.40% +109459,823,2058,State-funded primary,378,177,201,46.80%,53.20%,4,1.10%,47,12.40%,88,289,1,23.30%,76.50%,0.30%,57,59,323,18.30% +109460,823,2059,State-funded primary,49,26,23,53.10%,46.90%,6,12.20%,6,12.20%,1,47,1,2.00%,95.90%,2.00%,5,5,49,10.20% +109461,822,2061,State-funded primary,369,171,198,46.30%,53.70%,14,3.80%,83,22.50%,108,261,0,29.30%,70.70%,0.00%,98,102,369,27.60% +109462,822,2062,State-funded primary,411,185,226,45.00%,55.00%,11,2.70%,45,10.90%,103,308,0,25.10%,74.90%,0.00%,50,51,411,12.40% +109463,822,2063,State-funded primary,440,235,205,53.40%,46.60%,8,1.80%,46,10.50%,99,340,1,22.50%,77.30%,0.20%,56,56,408,13.70% +109464,822,2064,State-funded primary,405,204,201,50.40%,49.60%,13,3.20%,79,19.50%,149,246,10,36.80%,60.70%,2.50%,115,108,345,31.30% +109466,823,2067,State-funded primary,282,137,145,48.60%,51.40%,2,0.70%,43,15.20%,15,267,0,5.30%,94.70%,0.00%,33,33,282,11.70% +109468,823,2070,State-funded primary,96,42,54,43.80%,56.30%,2,2.10%,13,13.50%,2,94,0,2.10%,97.90%,0.00%,8,8,85,9.40% +109469,823,2072,State-funded primary,142,71,71,50.00%,50.00%,5,3.50%,15,10.60%,4,138,0,2.80%,97.20%,0.00%,13,13,142,9.20% +109471,823,2111,State-funded primary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +109472,823,2112,State-funded primary,165,78,87,47.30%,52.70%,5,3.00%,14,8.50%,4,161,0,2.40%,97.60%,0.00%,25,22,133,16.50% +109473,823,5204,State-funded primary,119,58,61,48.70%,51.30%,5,4.20%,18,15.10%,0,119,0,0.00%,100.00%,0.00%,14,14,99,14.10% +109475,823,2117,State-funded primary,280,145,135,51.80%,48.20%,6,2.10%,34,12.10%,3,277,0,1.10%,98.90%,0.00%,42,42,280,15.00% +109476,823,2118,State-funded primary,28,14,14,50.00%,50.00%,0,0.00%,6,21.40%,1,27,0,3.60%,96.40%,0.00%,5,5,20,25.00% +109477,823,2119,State-funded primary,214,98,116,45.80%,54.20%,10,4.70%,53,24.80%,8,206,0,3.70%,96.30%,0.00%,48,50,194,25.80% +109479,823,2121,State-funded primary,516,260,256,50.40%,49.60%,15,2.90%,58,11.20%,11,505,0,2.10%,97.90%,0.00%,64,67,450,14.90% +109480,823,2122,State-funded primary,137,70,67,51.10%,48.90%,4,2.90%,12,8.80%,1,136,0,0.70%,99.30%,0.00%,13,13,119,10.90% +109481,823,2124,State-funded primary,62,22,40,35.50%,64.50%,9,14.50%,2,3.20%,4,58,0,6.50%,93.50%,0.00%,7,7,54,13.00% +109482,823,2125,State-funded primary,113,55,58,48.70%,51.30%,3,2.70%,21,18.60%,5,107,1,4.40%,94.70%,0.90%,13,14,93,15.10% +109483,822,2128,State-funded primary,202,99,103,49.00%,51.00%,4,2.00%,29,14.40%,21,181,0,10.40%,89.60%,0.00%,50,50,202,24.80% +109484,823,2129,State-funded primary,401,195,206,48.60%,51.40%,7,1.70%,11,2.70%,3,398,0,0.70%,99.30%,0.00%,41,41,401,10.20% +109486,822,2135,State-funded primary,81,38,43,46.90%,53.10%,2,2.50%,5,6.20%,5,76,0,6.20%,93.80%,0.00%,18,18,71,25.40% +109487,823,2136,State-funded primary,67,33,34,49.30%,50.70%,0,0.00%,4,6.00%,1,66,0,1.50%,98.50%,0.00%,3,3,66,4.50% +109489,822,5205,State-funded primary,85,36,49,42.40%,57.60%,3,3.50%,13,15.30%,1,84,0,1.20%,98.80%,0.00%,14,16,85,18.80% +109492,822,2141,State-funded primary,198,102,96,51.50%,48.50%,11,5.60%,44,22.20%,13,185,0,6.60%,93.40%,0.00%,33,33,198,16.70% +109493,823,2143,State-funded primary,57,29,28,50.90%,49.10%,1,1.80%,11,19.30%,3,54,0,5.30%,94.70%,0.00%,3,3,57,5.30% +109494,822,2144,State-funded primary,607,303,304,49.90%,50.10%,18,3.00%,48,7.90%,65,542,0,10.70%,89.30%,0.00%,97,96,561,17.10% +109495,823,2146,State-funded primary,449,232,217,51.70%,48.30%,4,0.90%,44,9.80%,9,440,0,2.00%,98.00%,0.00%,27,27,449,6.00% +109499,823,2152,State-funded primary,203,99,104,48.80%,51.20%,5,2.50%,25,12.30%,39,164,0,19.20%,80.80%,0.00%,14,14,150,9.30% +109502,822,2156,State-funded primary,767,374,393,48.80%,51.20%,19,2.50%,91,11.90%,444,323,0,57.90%,42.10%,0.00%,302,282,650,43.40% +109503,822,2163,State-funded primary,238,114,124,47.90%,52.10%,6,2.50%,35,14.70%,42,196,0,17.60%,82.40%,0.00%,43,46,238,19.30% +109504,823,2166,State-funded primary,294,154,140,52.40%,47.60%,6,2.00%,27,9.20%,100,194,0,34.00%,66.00%,0.00%,49,53,248,21.40% +109506,822,2173,State-funded primary,436,220,216,50.50%,49.50%,9,2.10%,23,5.30%,31,405,0,7.10%,92.90%,0.00%,48,45,407,11.10% +109507,823,2174,State-funded primary,161,76,85,47.20%,52.80%,6,3.70%,45,28.00%,2,159,0,1.20%,98.80%,0.00%,17,17,124,13.70% +109508,823,2176,State-funded primary,363,152,211,41.90%,58.10%,7,1.90%,48,13.20%,56,307,0,15.40%,84.60%,0.00%,65,59,285,20.70% +109509,823,2177,State-funded primary,435,196,239,45.10%,54.90%,7,1.60%,38,8.70%,41,394,0,9.40%,90.60%,0.00%,57,58,382,15.20% +109512,822,2183,State-funded primary,521,264,257,50.70%,49.30%,7,1.30%,84,16.10%,76,445,0,14.60%,85.40%,0.00%,86,84,469,17.90% +109513,823,2184,State-funded primary,179,88,91,49.20%,50.80%,18,10.10%,19,10.60%,1,178,0,0.60%,99.40%,0.00%,13,12,151,7.90% +109515,823,2188,State-funded primary,168,64,104,38.10%,61.90%,0,0.00%,17,10.10%,7,161,0,4.20%,95.80%,0.00%,7,7,145,4.80% +109521,823,2201,State-funded primary,280,142,138,50.70%,49.30%,5,1.80%,30,10.70%,22,258,0,7.90%,92.10%,0.00%,39,37,261,14.20% +109522,823,2202,State-funded primary,391,193,198,49.40%,50.60%,31,7.90%,110,28.10%,17,374,0,4.30%,95.70%,0.00%,108,109,355,30.70% +109523,823,2203,State-funded primary,305,139,166,45.60%,54.40%,4,1.30%,34,11.10%,13,292,0,4.30%,95.70%,0.00%,15,17,272,6.30% +109527,823,2213,State-funded primary,277,137,140,49.50%,50.50%,3,1.10%,37,13.40%,12,265,0,4.30%,95.70%,0.00%,30,30,241,12.40% +109529,823,2218,State-funded primary,53,23,30,43.40%,56.60%,1,1.90%,2,3.80%,3,50,0,5.70%,94.30%,0.00%,0,0,51,0.00% +109534,821,2225,State-funded primary,625,295,330,47.20%,52.80%,22,3.50%,87,13.90%,539,86,0,86.20%,13.80%,0.00%,141,155,625,24.80% +109540,821,2231,State-funded primary,352,168,184,47.70%,52.30%,8,2.30%,45,12.80%,228,124,0,64.80%,35.20%,0.00%,91,99,352,28.10% +109546,821,2237,State-funded primary,681,317,364,46.50%,53.50%,23,3.40%,166,24.40%,653,28,0,95.90%,4.10%,0.00%,154,159,681,23.30% +109548,821,2239,State-funded primary,369,182,187,49.30%,50.70%,8,2.20%,67,18.20%,208,151,10,56.40%,40.90%,2.70%,133,137,369,37.10% +109552,821,2243,State-funded primary,805,394,411,48.90%,51.10%,20,2.50%,150,18.60%,444,358,3,55.20%,44.50%,0.40%,226,243,805,30.20% +109553,821,2244,State-funded primary,451,206,245,45.70%,54.30%,14,3.10%,70,15.50%,193,258,0,42.80%,57.20%,0.00%,100,102,423,24.10% +109556,821,2247,State-funded primary,539,270,269,50.10%,49.90%,10,1.90%,54,10.00%,210,326,3,39.00%,60.50%,0.60%,128,132,539,24.50% +109558,821,2250,State-funded primary,536,259,277,48.30%,51.70%,9,1.70%,35,6.50%,201,335,0,37.50%,62.50%,0.00%,156,159,536,29.70% +109560,821,2252,State-funded primary,543,259,284,47.70%,52.30%,7,1.30%,122,22.50%,205,337,1,37.80%,62.10%,0.20%,156,162,543,29.80% +109562,821,2254,State-funded primary,457,214,243,46.80%,53.20%,15,3.30%,93,20.40%,283,171,3,61.90%,37.40%,0.70%,113,120,457,26.30% +109564,821,2256,State-funded primary,612,305,307,49.80%,50.20%,12,2.00%,86,14.10%,146,466,0,23.90%,76.10%,0.00%,101,107,612,17.50% +109567,821,2259,State-funded primary,1019,492,527,48.30%,51.70%,18,1.80%,98,9.60%,431,583,5,42.30%,57.20%,0.50%,217,227,1019,22.30% +109570,821,2262,State-funded primary,354,174,180,49.20%,50.80%,15,4.20%,42,11.90%,114,240,0,32.20%,67.80%,0.00%,55,56,354,15.80% +109571,821,2263,State-funded primary,378,178,200,47.10%,52.90%,20,5.30%,54,14.30%,187,191,0,49.50%,50.50%,0.00%,140,141,347,40.60% +109572,821,2264,State-funded primary,559,259,300,46.30%,53.70%,7,1.30%,46,8.20%,499,60,0,89.30%,10.70%,0.00%,148,155,559,27.70% +109574,821,2266,State-funded primary,416,219,197,52.60%,47.40%,8,1.90%,47,11.30%,245,170,1,58.90%,40.90%,0.20%,155,162,390,41.50% +109575,821,2267,State-funded primary,240,101,139,42.10%,57.90%,4,1.70%,42,17.50%,46,194,0,19.20%,80.80%,0.00%,43,48,240,20.00% +109578,821,2271,State-funded primary,358,162,196,45.30%,54.70%,8,2.20%,47,13.10%,183,175,0,51.10%,48.90%,0.00%,115,118,358,33.00% +109579,821,2272,State-funded primary,599,321,278,53.60%,46.40%,32,5.30%,53,8.80%,314,270,15,52.40%,45.10%,2.50%,124,131,595,22.00% +109581,821,2274,State-funded primary,298,152,146,51.00%,49.00%,12,4.00%,38,12.80%,160,138,0,53.70%,46.30%,0.00%,81,82,268,30.60% +109583,821,2276,State-funded primary,255,121,134,47.50%,52.50%,5,2.00%,33,12.90%,62,193,0,24.30%,75.70%,0.00%,29,23,182,12.60% +109584,821,2278,State-funded primary,368,175,193,47.60%,52.40%,5,1.40%,151,41.00%,211,156,1,57.30%,42.40%,0.30%,73,73,368,19.80% +109585,823,2279,State-funded primary,409,195,214,47.70%,52.30%,12,2.90%,41,10.00%,183,226,0,44.70%,55.30%,0.00%,72,75,364,20.60% +109588,821,2283,State-funded primary,614,271,343,44.10%,55.90%,22,3.60%,94,15.30%,151,463,0,24.60%,75.40%,0.00%,143,160,614,26.10% +109590,822,2287,State-funded primary,79,40,39,50.60%,49.40%,2,2.50%,7,8.90%,0,79,0,0.00%,100.00%,0.00%,10,10,79,12.70% +109591,823,2289,State-funded primary,714,339,375,47.50%,52.50%,22,3.10%,81,11.30%,74,640,0,10.40%,89.60%,0.00%,50,50,568,8.80% +109594,821,2293,State-funded primary,403,191,212,47.40%,52.60%,24,6.00%,60,14.90%,142,260,1,35.20%,64.50%,0.20%,51,56,403,13.90% +109595,823,3001,State-funded primary,792,389,403,49.10%,50.90%,21,2.70%,115,14.50%,39,753,0,4.90%,95.10%,0.00%,93,93,792,11.70% +109599,823,3006,State-funded primary,59,30,29,50.80%,49.20%,4,6.80%,11,18.60%,1,58,0,1.70%,98.30%,0.00%,5,5,59,8.50% +109603,822,3011,State-funded primary,213,104,109,48.80%,51.20%,6,2.80%,19,8.90%,13,200,0,6.10%,93.90%,0.00%,20,18,188,9.60% +109604,823,3012,State-funded primary,224,110,114,49.10%,50.90%,18,8.00%,26,11.60%,8,216,0,3.60%,96.40%,0.00%,29,29,196,14.80% +109605,823,3013,State-funded primary,269,133,136,49.40%,50.60%,15,5.60%,29,10.80%,2,267,0,0.70%,99.30%,0.00%,32,33,269,12.30% +109609,823,3017,State-funded primary,45,17,28,37.80%,62.20%,1,2.20%,10,22.20%,0,45,0,0.00%,100.00%,0.00%,4,4,45,8.90% +109610,822,3018,State-funded primary,94,46,48,48.90%,51.10%,2,2.10%,21,22.30%,2,92,0,2.10%,97.90%,0.00%,7,7,94,7.40% +109611,822,3020,State-funded primary,451,230,221,51.00%,49.00%,11,2.40%,42,9.30%,19,430,2,4.20%,95.30%,0.40%,46,48,451,10.60% +109613,822,3023,State-funded primary,58,26,32,44.80%,55.20%,0,0.00%,6,10.30%,0,58,0,0.00%,100.00%,0.00%,6,6,58,10.30% +109615,823,3302,State-funded primary,120,67,53,55.80%,44.20%,2,1.70%,27,22.50%,2,118,0,1.70%,98.30%,0.00%,18,18,99,18.20% +109617,823,3307,State-funded primary,137,74,63,54.00%,46.00%,1,0.70%,9,6.60%,5,132,0,3.60%,96.40%,0.00%,9,7,109,6.40% +109618,823,3310,State-funded primary,118,66,52,55.90%,44.10%,4,3.40%,16,13.60%,3,115,0,2.50%,97.50%,0.00%,10,10,118,8.50% +109619,823,3313,State-funded primary,261,131,130,50.20%,49.80%,7,2.70%,21,8.00%,27,234,0,10.30%,89.70%,0.00%,16,16,217,7.40% +109622,822,3326,State-funded primary,80,39,41,48.80%,51.30%,1,1.30%,9,11.30%,3,77,0,3.80%,96.30%,0.00%,9,9,80,11.30% +109624,822,3328,State-funded primary,182,86,96,47.30%,52.70%,2,1.10%,16,8.80%,5,177,0,2.70%,97.30%,0.00%,14,13,166,7.80% +109626,823,3331,State-funded primary,68,37,31,54.40%,45.60%,3,4.40%,6,8.80%,3,65,0,4.40%,95.60%,0.00%,5,5,68,7.40% +109627,822,3332,State-funded primary,42,21,21,50.00%,50.00%,4,9.50%,6,14.30%,1,41,0,2.40%,97.60%,0.00%,10,10,38,26.30% +109628,822,3334,State-funded primary,149,76,73,51.00%,49.00%,2,1.30%,4,2.70%,12,137,0,8.10%,91.90%,0.00%,38,37,136,27.20% +109633,821,3354,State-funded primary,313,163,150,52.10%,47.90%,12,3.80%,38,12.10%,112,201,0,35.80%,64.20%,0.00%,105,113,313,36.10% +109635,821,3356,State-funded primary,732,347,385,47.40%,52.60%,11,1.50%,95,13.00%,261,469,2,35.70%,64.10%,0.30%,119,127,732,17.30% +109640,821,3361,State-funded primary,391,177,214,45.30%,54.70%,6,1.50%,40,10.20%,152,239,0,38.90%,61.10%,0.00%,62,68,391,17.40% +109661,822,4050,State-funded secondary,711,366,345,51.50%,48.50%,36,5.10%,59,8.30%,147,563,1,20.70%,79.20%,0.10%,127,144,711,20.30% +109664,823,3353,State-funded primary,310,142,168,45.80%,54.20%,8,2.60%,44,14.20%,13,297,0,4.20%,95.80%,0.00%,53,58,289,20.10% +109666,822,4072,State-funded primary,210,101,109,48.10%,51.90%,4,1.90%,27,12.90%,175,33,2,83.30%,15.70%,1.00%,27,27,210,12.90% +109669,823,4078,State-funded secondary,1155,555,600,48.10%,51.90%,39,3.40%,262,22.70%,31,1124,0,2.70%,97.30%,0.00%,213,215,1061,20.30% +109676,823,4092,State-funded secondary,142,72,70,50.70%,49.30%,7,4.90%,33,23.20%,0,142,0,0.00%,100.00%,0.00%,19,19,142,13.40% +109686,821,4111,State-funded secondary,1008,516,492,51.20%,48.80%,33,3.30%,152,15.10%,231,777,0,22.90%,77.10%,0.00%,327,360,1008,35.70% +109689,823,4120,State-funded secondary,598,306,292,51.20%,48.80%,21,3.50%,90,15.10%,32,566,0,5.40%,94.60%,0.00%,77,81,598,13.50% +109690,822,4124,State-funded secondary,1275,662,613,51.90%,48.10%,34,2.70%,162,12.70%,694,578,3,54.40%,45.30%,0.20%,384,357,1077,33.10% +109694,823,4502,State-funded secondary,548,262,286,47.80%,52.20%,18,3.30%,114,20.80%,24,524,0,4.40%,95.60%,0.00%,127,137,548,25.00% +109702,821,5201,State-funded primary,236,125,111,53.00%,47.00%,7,3.00%,32,13.60%,79,157,0,33.50%,66.50%,0.00%,62,66,236,28.00% +109703,823,5202,State-funded primary,205,101,104,49.30%,50.70%,8,3.90%,29,14.10%,46,159,0,22.40%,77.60%,0.00%,28,29,205,14.10% +109707,821,5403,State-funded secondary,1054,501,553,47.50%,52.50%,18,1.70%,105,10.00%,459,595,0,43.50%,56.50%,0.00%,280,330,1054,31.30% +109709,821,5405,State-funded secondary,1045,529,516,50.60%,49.40%,16,1.50%,171,16.40%,343,701,1,32.80%,67.10%,0.10%,400,443,1045,42.40% +109715,822,6010,Independent school,325,159,166,48.90%,51.10%,0,0.00%,73,22.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109717,822,6004,Independent school,673,280,393,41.60%,58.40%,15,2.20%,178,26.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109718,822,6002,Independent school,1116,0,1116,0.00%,100.00%,0,0.00%,164,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109720,822,6000,Independent school,112,53,59,47.30%,52.70%,0,0.00%,17,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109726,821,6000,Independent school,152,79,73,52.00%,48.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109727,822,6012,Independent school,985,985,0,100.00%,0.00%,3,0.30%,97,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109728,822,6011,Independent school,1288,577,711,44.80%,55.20%,4,0.30%,186,14.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109739,823,7009,State-funded special school,243,70,170,28.80%,70.00%,243,100.00%,0,0.00%,3,240,0,1.20%,98.80%,0.00%,85,70,198,35.40% +109742,822,7012,State-funded special school,95,39,56,41.10%,58.90%,95,100.00%,0,0.00%,20,75,0,21.10%,78.90%,0.00%,33,27,72,37.50% +109743,821,7014,State-funded special school,280,52,228,18.60%,81.40%,280,100.00%,0,0.00%,54,225,1,19.30%,80.40%,0.40%,86,93,280,33.20% +109744,821,7015,State-funded special school,262,86,176,32.80%,67.20%,262,100.00%,0,0.00%,143,119,0,54.60%,45.40%,0.00%,105,90,191,47.10% +109745,821,7016,State-funded special school,163,70,93,42.90%,57.10%,127,77.90%,36,22.10%,76,84,3,46.60%,51.50%,1.80%,52,54,153,35.30% +109746,823,7017,State-funded special school,300,91,209,30.30%,69.70%,300,100.00%,0,0.00%,44,256,0,14.70%,85.30%,0.00%,96,86,267,32.20% +109748,870,1000,State-funded nursery,129,67,62,51.90%,48.10%,0,0.00%,29,22.50%,23,106,0,17.80%,82.20%,0.00%,36,0,0,0.00% +109749,870,1001,State-funded nursery,52,27,25,51.90%,48.10%,1,1.90%,5,9.60%,11,41,0,21.20%,78.80%,0.00%,4,0,0,0.00% +109750,870,1003,State-funded nursery,52,28,24,53.80%,46.20%,0,0.00%,5,9.60%,15,37,0,28.80%,71.20%,0.00%,7,0,0,0.00% +109751,870,1004,State-funded nursery,103,43,60,41.70%,58.30%,4,3.90%,29,28.20%,42,60,1,40.80%,58.30%,1.00%,20,0,0,0.00% +109752,870,1006,State-funded nursery,69,28,41,40.60%,59.40%,4,5.80%,11,15.90%,35,34,0,50.70%,49.30%,0.00%,13,0,0,0.00% +109754,868,1011,State-funded nursery,57,34,23,59.60%,40.40%,0,0.00%,6,10.50%,2,55,0,3.50%,96.50%,0.00%,0,0,0,0.00% +109755,869,1012,State-funded nursery,104,45,59,43.30%,56.70%,1,1.00%,23,22.10%,11,93,0,10.60%,89.40%,0.00%,13,0,0,0.00% +109756,868,1013,State-funded nursery,70,34,36,48.60%,51.40%,1,1.40%,8,11.40%,23,47,0,32.90%,67.10%,0.00%,0,0,0,0.00% +109757,869,1014,State-funded nursery,125,58,67,46.40%,53.60%,0,0.00%,34,27.20%,40,84,1,32.00%,67.20%,0.80%,0,0,0,0.00% +109758,868,1016,State-funded nursery,142,72,70,50.70%,49.30%,0,0.00%,21,14.80%,33,109,0,23.20%,76.80%,0.00%,0,0,0,0.00% +109759,872,1017,State-funded nursery,122,57,65,46.70%,53.30%,2,1.60%,8,6.60%,28,94,0,23.00%,77.00%,0.00%,0,0,0,0.00% +109760,871,1020,State-funded nursery,101,44,57,43.60%,56.40%,0,0.00%,31,30.70%,56,44,1,55.40%,43.60%,1.00%,0,0,0,0.00% +109761,871,1021,State-funded nursery,123,60,63,48.80%,51.20%,0,0.00%,20,16.30%,102,21,0,82.90%,17.10%,0.00%,0,0,0,0.00% +109762,871,1022,State-funded nursery,116,55,61,47.40%,52.60%,0,0.00%,24,20.70%,41,75,0,35.30%,64.70%,0.00%,0,0,0,0.00% +109763,871,1023,State-funded nursery,97,42,55,43.30%,56.70%,1,1.00%,13,13.40%,52,45,0,53.60%,46.40%,0.00%,0,0,0,0.00% +109765,871,1025,State-funded nursery,89,44,45,49.40%,50.60%,2,2.20%,11,12.40%,51,37,1,57.30%,41.60%,1.10%,0,0,0,0.00% +109774,315,6588,Independent school,134,73,61,54.50%,45.50%,1,0.70%,6,4.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +109776,870,2000,State-funded primary,687,346,341,50.40%,49.60%,4,0.60%,80,11.60%,292,391,4,42.50%,56.90%,0.60%,143,141,622,22.70% +109778,870,2003,State-funded primary,413,193,220,46.70%,53.30%,6,1.50%,38,9.20%,93,319,1,22.50%,77.20%,0.20%,16,18,413,4.40% +109779,870,2005,State-funded primary,264,126,138,47.70%,52.30%,3,1.10%,44,16.70%,153,111,0,58.00%,42.00%,0.00%,57,52,206,25.20% +109780,870,2006,State-funded primary,408,200,208,49.00%,51.00%,27,6.60%,43,10.50%,223,181,4,54.70%,44.40%,1.00%,89,86,382,22.50% +109781,870,2007,State-funded primary,357,172,185,48.20%,51.80%,11,3.10%,59,16.50%,112,245,0,31.40%,68.60%,0.00%,102,140,357,39.20% +109782,870,2008,State-funded primary,312,156,156,50.00%,50.00%,15,4.80%,48,15.40%,129,183,0,41.30%,58.70%,0.00%,92,85,264,32.20% +109786,870,2016,State-funded primary,249,134,115,53.80%,46.20%,14,5.60%,39,15.70%,144,104,1,57.80%,41.80%,0.40%,76,68,206,33.00% +109787,870,2018,State-funded primary,227,109,118,48.00%,52.00%,8,3.50%,20,8.80%,171,56,0,75.30%,24.70%,0.00%,34,32,207,15.50% +109788,870,2019,State-funded primary,391,205,186,52.40%,47.60%,8,2.00%,59,15.10%,80,303,8,20.50%,77.50%,2.00%,22,23,391,5.90% +109789,870,2020,State-funded primary,426,218,208,51.20%,48.80%,10,2.30%,94,22.10%,111,315,0,26.10%,73.90%,0.00%,146,146,400,36.50% +109790,870,2021,State-funded primary,410,203,207,49.50%,50.50%,6,1.50%,46,11.20%,39,371,0,9.50%,90.50%,0.00%,92,93,410,22.70% +109793,870,2024,State-funded primary,455,233,222,51.20%,48.80%,14,3.10%,41,9.00%,178,275,2,39.10%,60.40%,0.40%,74,78,416,18.80% +109794,870,2026,State-funded primary,414,203,211,49.00%,51.00%,6,1.40%,31,7.50%,172,242,0,41.50%,58.50%,0.00%,18,20,414,4.80% +109795,870,2027,State-funded primary,585,284,301,48.50%,51.50%,14,2.40%,26,4.40%,141,443,1,24.10%,75.70%,0.20%,97,103,585,17.60% +109796,870,2029,State-funded primary,413,183,230,44.30%,55.70%,12,2.90%,49,11.90%,126,287,0,30.50%,69.50%,0.00%,132,136,413,32.90% +109799,870,2034,State-funded primary,337,169,168,50.10%,49.90%,9,2.70%,73,21.70%,62,275,0,18.40%,81.60%,0.00%,152,147,322,45.70% +109800,870,2036,State-funded primary,374,186,188,49.70%,50.30%,36,9.60%,65,17.40%,91,283,0,24.30%,75.70%,0.00%,87,88,374,23.50% +109802,869,2050,State-funded primary,60,28,32,46.70%,53.30%,0,0.00%,13,21.70%,13,47,0,21.70%,78.30%,0.00%,18,18,60,30.00% +109805,867,2057,State-funded primary,202,104,98,51.50%,48.50%,8,4.00%,35,17.30%,44,158,0,21.80%,78.20%,0.00%,31,33,202,16.30% +109807,867,2060,State-funded primary,649,325,324,50.10%,49.90%,22,3.40%,66,10.20%,183,466,0,28.20%,71.80%,0.00%,121,129,597,21.60% +109810,869,2063,State-funded primary,192,103,89,53.60%,46.40%,2,1.00%,21,10.90%,4,188,0,2.10%,97.90%,0.00%,14,15,192,7.80% +109811,869,2064,State-funded primary,81,37,44,45.70%,54.30%,0,0.00%,7,8.60%,12,69,0,14.80%,85.20%,0.00%,5,6,81,7.40% +109813,869,2066,State-funded primary,61,35,26,57.40%,42.60%,0,0.00%,9,14.80%,4,57,0,6.60%,93.40%,0.00%,2,2,61,3.30% +109815,869,2068,State-funded primary,191,92,99,48.20%,51.80%,3,1.60%,23,12.00%,7,184,0,3.70%,96.30%,0.00%,13,16,191,8.40% +109816,869,2069,State-funded primary,363,174,189,47.90%,52.10%,7,1.90%,68,18.70%,20,343,0,5.50%,94.50%,0.00%,93,97,363,26.70% +109817,869,2070,State-funded primary,52,24,28,46.20%,53.80%,1,1.90%,9,17.30%,5,47,0,9.60%,90.40%,0.00%,11,11,52,21.20% +109818,868,2071,State-funded primary,240,107,133,44.60%,55.40%,2,0.80%,29,12.10%,54,186,0,22.50%,77.50%,0.00%,30,31,239,13.00% +109819,868,2072,State-funded primary,394,180,214,45.70%,54.30%,7,1.80%,25,6.30%,68,325,1,17.30%,82.50%,0.30%,41,44,394,11.20% +109820,868,2074,State-funded primary,397,194,203,48.90%,51.10%,28,7.10%,48,12.10%,233,164,0,58.70%,41.30%,0.00%,146,144,359,40.10% +109821,868,2077,State-funded primary,404,193,211,47.80%,52.20%,16,4.00%,45,11.10%,63,340,1,15.60%,84.20%,0.20%,85,87,404,21.50% +109825,869,2083,State-funded primary,362,185,177,51.10%,48.90%,8,2.20%,74,20.40%,36,324,2,9.90%,89.50%,0.60%,43,43,362,11.90% +109826,869,2084,State-funded primary,286,138,148,48.30%,51.70%,2,0.70%,21,7.30%,32,252,2,11.20%,88.10%,0.70%,20,20,232,8.60% +109827,868,2085,State-funded primary,160,83,77,51.90%,48.10%,2,1.30%,19,11.90%,3,157,0,1.90%,98.10%,0.00%,21,21,160,13.10% +109828,867,2087,State-funded primary,498,235,263,47.20%,52.80%,7,1.40%,82,16.50%,75,417,6,15.10%,83.70%,1.20%,40,43,472,9.10% +109829,872,2088,State-funded primary,270,131,139,48.50%,51.50%,3,1.10%,43,15.90%,59,211,0,21.90%,78.10%,0.00%,13,13,237,5.50% +109830,872,2089,State-funded primary,212,111,101,52.40%,47.60%,14,6.60%,13,6.10%,24,188,0,11.30%,88.70%,0.00%,55,56,212,26.40% +109832,868,2092,State-funded primary,145,72,73,49.70%,50.30%,3,2.10%,17,11.70%,4,141,0,2.80%,97.20%,0.00%,12,12,145,8.30% +109833,868,2096,State-funded primary,229,117,112,51.10%,48.90%,4,1.70%,19,8.30%,47,182,0,20.50%,79.50%,0.00%,29,33,202,16.30% +109835,867,2099,State-funded primary,201,98,103,48.80%,51.20%,3,1.50%,37,18.40%,31,170,0,15.40%,84.60%,0.00%,20,21,201,10.40% +109836,872,2100,State-funded primary,299,154,145,51.50%,48.50%,3,1.00%,45,15.10%,93,206,0,31.10%,68.90%,0.00%,39,46,277,16.60% +109842,868,2108,State-funded primary,363,186,177,51.20%,48.80%,15,4.10%,60,16.50%,64,299,0,17.60%,82.40%,0.00%,57,60,363,16.50% +109843,868,2109,State-funded primary,164,79,85,48.20%,51.80%,6,3.70%,21,12.80%,25,139,0,15.20%,84.80%,0.00%,23,27,164,16.50% +109844,869,2110,State-funded primary,423,190,233,44.90%,55.10%,5,1.20%,27,6.40%,33,386,4,7.80%,91.30%,0.90%,29,29,423,6.90% +109845,869,2111,State-funded primary,235,123,112,52.30%,47.70%,10,4.30%,50,21.30%,32,203,0,13.60%,86.40%,0.00%,41,43,235,18.30% +109846,868,2112,State-funded primary,265,133,132,50.20%,49.80%,9,3.40%,30,11.30%,48,217,0,18.10%,81.90%,0.00%,33,34,265,12.80% +109847,867,2113,State-funded primary,235,123,112,52.30%,47.70%,7,3.00%,13,5.50%,16,215,4,6.80%,91.50%,1.70%,7,8,209,3.80% +109850,872,2116,State-funded primary,315,170,145,54.00%,46.00%,12,3.80%,24,7.60%,149,166,0,47.30%,52.70%,0.00%,12,12,315,3.80% +109853,869,2119,State-funded primary,213,111,102,52.10%,47.90%,0,0.00%,28,13.10%,25,188,0,11.70%,88.30%,0.00%,21,21,213,9.90% +109855,872,2121,State-funded primary,182,87,95,47.80%,52.20%,11,6.00%,17,9.30%,58,124,0,31.90%,68.10%,0.00%,18,18,182,9.90% +109856,868,2123,State-funded primary,211,90,121,42.70%,57.30%,3,1.40%,8,3.80%,8,203,0,3.80%,96.20%,0.00%,27,27,211,12.80% +109858,869,2125,State-funded primary,235,121,114,51.50%,48.50%,5,2.10%,39,16.60%,24,205,6,10.20%,87.20%,2.60%,68,74,235,31.50% +109861,869,2128,State-funded primary,233,117,116,50.20%,49.80%,3,1.30%,40,17.20%,49,184,0,21.00%,79.00%,0.00%,66,67,213,31.50% +109863,872,2130,State-funded primary,258,126,132,48.80%,51.20%,18,7.00%,29,11.20%,29,229,0,11.20%,88.80%,0.00%,22,23,258,8.90% +109864,869,2131,State-funded primary,218,107,111,49.10%,50.90%,6,2.80%,21,9.60%,37,181,0,17.00%,83.00%,0.00%,14,14,178,7.90% +109866,869,2133,State-funded primary,343,162,181,47.20%,52.80%,6,1.70%,35,10.20%,43,298,2,12.50%,86.90%,0.60%,37,38,311,12.20% +109867,867,2135,State-funded primary,395,201,194,50.90%,49.10%,6,1.50%,22,5.60%,50,345,0,12.70%,87.30%,0.00%,26,27,395,6.80% +109869,872,2137,State-funded primary,298,158,140,53.00%,47.00%,5,1.70%,27,9.10%,89,209,0,29.90%,70.10%,0.00%,27,27,266,10.20% +109870,867,2138,State-funded primary,545,274,271,50.30%,49.70%,22,4.00%,62,11.40%,75,470,0,13.80%,86.20%,0.00%,56,58,510,11.40% +109871,869,2140,State-funded primary,426,213,213,50.00%,50.00%,5,1.20%,72,16.90%,33,391,2,7.70%,91.80%,0.50%,30,30,426,7.00% +109873,868,2143,State-funded primary,207,111,96,53.60%,46.40%,10,4.80%,18,8.70%,15,191,1,7.20%,92.30%,0.50%,23,24,185,13.00% +109875,869,2145,State-funded primary,116,69,47,59.50%,40.50%,2,1.70%,15,12.90%,17,99,0,14.70%,85.30%,0.00%,15,15,116,12.90% +109876,872,2146,State-funded primary,406,207,199,51.00%,49.00%,9,2.20%,37,9.10%,88,318,0,21.70%,78.30%,0.00%,29,30,406,7.40% +109877,872,2148,State-funded primary,218,107,111,49.10%,50.90%,6,2.80%,17,7.80%,27,191,0,12.40%,87.60%,0.00%,44,46,218,21.10% +109878,872,2149,State-funded primary,320,150,170,46.90%,53.10%,13,4.10%,28,8.80%,41,279,0,12.80%,87.20%,0.00%,25,25,320,7.80% +109883,867,2154,State-funded primary,216,103,113,47.70%,52.30%,4,1.90%,21,9.70%,13,203,0,6.00%,94.00%,0.00%,13,13,194,6.70% +109884,868,2155,State-funded primary,95,41,54,43.20%,56.80%,1,1.10%,17,17.90%,21,74,0,22.10%,77.90%,0.00%,17,18,79,22.80% +109887,869,2158,State-funded primary,206,97,109,47.10%,52.90%,5,2.40%,28,13.60%,37,169,0,18.00%,82.00%,0.00%,44,44,153,28.80% +109888,868,2159,State-funded primary,420,214,206,51.00%,49.00%,13,3.10%,19,4.50%,119,300,1,28.30%,71.40%,0.20%,31,33,420,7.90% +109889,872,2160,State-funded primary,167,81,86,48.50%,51.50%,8,4.80%,19,11.40%,10,157,0,6.00%,94.00%,0.00%,18,18,167,10.80% +109890,872,2161,State-funded primary,238,111,127,46.60%,53.40%,12,5.00%,27,11.30%,31,207,0,13.00%,87.00%,0.00%,14,17,238,7.10% +109893,867,2165,State-funded primary,419,199,220,47.50%,52.50%,18,4.30%,24,5.70%,66,353,0,15.80%,84.20%,0.00%,51,52,390,13.30% +109896,869,2174,State-funded primary,215,97,118,45.10%,54.90%,6,2.80%,27,12.60%,11,204,0,5.10%,94.90%,0.00%,14,14,215,6.50% +109898,869,2180,State-funded primary,202,93,109,46.00%,54.00%,6,3.00%,26,12.90%,42,156,4,20.80%,77.20%,2.00%,41,44,202,21.80% +109907,868,2202,State-funded primary,351,168,183,47.90%,52.10%,9,2.60%,83,23.60%,37,314,0,10.50%,89.50%,0.00%,69,69,351,19.70% +109920,870,2226,State-funded primary,688,319,369,46.40%,53.60%,13,1.90%,27,3.90%,496,192,0,72.10%,27.90%,0.00%,98,97,618,15.70% +109921,872,2227,State-funded primary,436,229,207,52.50%,47.50%,9,2.10%,46,10.60%,133,303,0,30.50%,69.50%,0.00%,19,20,436,4.60% +109922,867,2228,State-funded primary,419,173,246,41.30%,58.70%,6,1.40%,52,12.40%,41,378,0,9.80%,90.20%,0.00%,53,53,370,14.30% +109923,869,2231,State-funded primary,180,88,92,48.90%,51.10%,9,5.00%,27,15.00%,15,162,3,8.30%,90.00%,1.70%,35,35,180,19.40% +109924,872,2232,State-funded primary,109,56,53,51.40%,48.60%,3,2.80%,4,3.70%,7,102,0,6.40%,93.60%,0.00%,10,10,92,10.90% +109925,870,2233,State-funded primary,137,64,73,46.70%,53.30%,1,0.70%,29,21.20%,26,111,0,19.00%,81.00%,0.00%,18,18,137,13.10% +109926,870,2234,State-funded primary,345,179,166,51.90%,48.10%,6,1.70%,51,14.80%,71,274,0,20.60%,79.40%,0.00%,74,78,345,22.60% +109927,872,2235,State-funded primary,417,177,240,42.40%,57.60%,16,3.80%,23,5.50%,185,232,0,44.40%,55.60%,0.00%,22,22,381,5.80% +109929,872,2237,State-funded primary,632,319,313,50.50%,49.50%,12,1.90%,46,7.30%,329,297,6,52.10%,47.00%,0.90%,33,33,632,5.20% +109930,872,2238,State-funded primary,460,219,241,47.60%,52.40%,15,3.30%,38,8.30%,137,323,0,29.80%,70.20%,0.00%,33,34,422,8.10% +109931,869,2239,State-funded primary,259,124,135,47.90%,52.10%,4,1.50%,18,6.90%,43,216,0,16.60%,83.40%,0.00%,46,49,223,22.00% +109932,869,2240,State-funded primary,279,136,143,48.70%,51.30%,4,1.40%,43,15.40%,42,237,0,15.10%,84.90%,0.00%,74,76,279,27.20% +109937,869,2246,State-funded primary,428,196,232,45.80%,54.20%,10,2.30%,44,10.30%,47,381,0,11.00%,89.00%,0.00%,48,47,393,12.00% +109938,868,2247,State-funded primary,228,115,113,50.40%,49.60%,8,3.50%,19,8.30%,99,129,0,43.40%,56.60%,0.00%,69,67,210,31.90% +109940,869,2249,State-funded primary,194,108,86,55.70%,44.30%,2,1.00%,11,5.70%,26,168,0,13.40%,86.60%,0.00%,41,40,177,22.60% +109941,867,2250,State-funded primary,426,205,221,48.10%,51.90%,10,2.30%,59,13.80%,114,312,0,26.80%,73.20%,0.00%,84,86,395,21.80% +109942,867,2251,State-funded primary,634,290,344,45.70%,54.30%,19,3.00%,34,5.40%,95,537,2,15.00%,84.70%,0.30%,121,115,597,19.30% +109943,871,2252,State-funded primary,691,340,351,49.20%,50.80%,11,1.60%,90,13.00%,389,302,0,56.30%,43.70%,0.00%,154,156,624,25.00% +109944,870,2253,State-funded primary,313,151,162,48.20%,51.80%,12,3.80%,66,21.10%,78,235,0,24.90%,75.10%,0.00%,133,132,271,48.70% +109945,870,3000,State-funded primary,60,31,29,51.70%,48.30%,0,0.00%,6,10.00%,15,45,0,25.00%,75.00%,0.00%,5,5,60,8.30% +109947,869,3004,State-funded primary,122,72,50,59.00%,41.00%,3,2.50%,15,12.30%,5,117,0,4.10%,95.90%,0.00%,24,25,122,20.50% +109949,869,3006,State-funded primary,177,85,92,48.00%,52.00%,3,1.70%,14,7.90%,5,172,0,2.80%,97.20%,0.00%,7,7,146,4.80% +109950,869,3007,State-funded primary,46,20,26,43.50%,56.50%,1,2.20%,14,30.40%,3,43,0,6.50%,93.50%,0.00%,17,17,46,37.00% +109952,868,3011,State-funded primary,125,62,63,49.60%,50.40%,3,2.40%,22,17.60%,0,125,0,0.00%,100.00%,0.00%,3,3,125,2.40% +109954,869,3013,State-funded primary,60,34,26,56.70%,43.30%,2,3.30%,12,20.00%,0,60,0,0.00%,100.00%,0.00%,9,9,60,15.00% +109955,869,3014,State-funded primary,121,68,53,56.20%,43.80%,2,1.70%,20,16.50%,2,119,0,1.70%,98.30%,0.00%,18,18,121,14.90% +109956,869,3015,State-funded primary,205,93,112,45.40%,54.60%,3,1.50%,27,13.20%,7,198,0,3.40%,96.60%,0.00%,17,19,205,9.30% +109957,869,3016,State-funded primary,24,14,10,58.30%,41.70%,1,4.20%,8,33.30%,0,24,0,0.00%,100.00%,0.00%,5,5,24,20.80% +109958,869,3018,State-funded primary,188,98,90,52.10%,47.90%,2,1.10%,24,12.80%,3,185,0,1.60%,98.40%,0.00%,7,7,188,3.70% +109959,869,3020,State-funded primary,186,94,92,50.50%,49.50%,6,3.20%,24,12.90%,6,180,0,3.20%,96.80%,0.00%,50,52,186,28.00% +109960,868,3021,State-funded primary,194,93,101,47.90%,52.10%,9,4.60%,15,7.70%,5,188,1,2.60%,96.90%,0.50%,10,10,194,5.20% +109961,868,3022,State-funded primary,208,99,109,47.60%,52.40%,4,1.90%,12,5.80%,8,200,0,3.80%,96.20%,0.00%,9,9,208,4.30% +109962,867,3023,State-funded primary,210,90,120,42.90%,57.10%,5,2.40%,15,7.10%,31,179,0,14.80%,85.20%,0.00%,13,13,210,6.20% +109963,869,3024,State-funded primary,74,40,34,54.10%,45.90%,0,0.00%,9,12.20%,1,72,1,1.40%,97.30%,1.40%,4,4,74,5.40% +109964,869,3026,State-funded primary,72,41,31,56.90%,43.10%,2,2.80%,18,25.00%,1,71,0,1.40%,98.60%,0.00%,15,15,72,20.80% +109967,869,3029,State-funded primary,137,65,72,47.40%,52.60%,1,0.70%,28,20.40%,7,130,0,5.10%,94.90%,0.00%,36,37,137,27.00% +109969,868,3031,State-funded primary,208,96,112,46.20%,53.80%,2,1.00%,36,17.30%,102,106,0,49.00%,51.00%,0.00%,19,17,172,9.90% +109971,869,3036,State-funded primary,104,56,48,53.80%,46.20%,0,0.00%,20,19.20%,13,91,0,12.50%,87.50%,0.00%,14,16,99,16.20% +109973,867,3038,State-funded primary,193,94,99,48.70%,51.30%,8,4.10%,11,5.70%,2,191,0,1.00%,99.00%,0.00%,9,9,193,4.70% +109974,869,3039,State-funded primary,90,49,41,54.40%,45.60%,1,1.10%,13,14.40%,13,77,0,14.40%,85.60%,0.00%,21,22,90,24.40% +109975,869,3040,State-funded primary,56,31,25,55.40%,44.60%,0,0.00%,14,25.00%,2,54,0,3.60%,96.40%,0.00%,10,10,56,17.90% +109976,872,3041,State-funded primary,362,181,181,50.00%,50.00%,6,1.70%,46,12.70%,72,290,0,19.90%,80.10%,0.00%,43,44,362,12.20% +109977,869,3042,State-funded primary,238,120,118,50.40%,49.60%,6,2.50%,39,16.40%,16,222,0,6.70%,93.30%,0.00%,19,21,238,8.80% +109978,869,3043,State-funded primary,172,80,92,46.50%,53.50%,3,1.70%,22,12.80%,9,163,0,5.20%,94.80%,0.00%,15,15,172,8.70% +109979,869,3044,State-funded primary,97,49,48,50.50%,49.50%,2,2.10%,5,5.20%,2,95,0,2.10%,97.90%,0.00%,3,3,97,3.10% +109980,869,3045,State-funded primary,336,150,186,44.60%,55.40%,21,6.30%,42,12.50%,31,305,0,9.20%,90.80%,0.00%,55,57,319,17.90% +109982,867,3047,State-funded primary,450,213,237,47.30%,52.70%,7,1.60%,40,8.90%,58,392,0,12.90%,87.10%,0.00%,18,18,415,4.30% +109984,869,3049,State-funded primary,72,34,38,47.20%,52.80%,1,1.40%,11,15.30%,2,70,0,2.80%,97.20%,0.00%,10,11,72,15.30% +109987,872,3055,State-funded primary,380,187,193,49.20%,50.80%,2,0.50%,44,11.60%,101,279,0,26.60%,73.40%,0.00%,37,37,380,9.70% +109988,872,3056,State-funded primary,316,143,173,45.30%,54.70%,8,2.50%,37,11.70%,78,238,0,24.70%,75.30%,0.00%,47,47,316,14.90% +109989,872,3057,State-funded primary,118,51,67,43.20%,56.80%,7,5.90%,11,9.30%,8,110,0,6.80%,93.20%,0.00%,12,12,118,10.20% +109993,872,3061,State-funded primary,171,84,87,49.10%,50.90%,6,3.50%,29,17.00%,22,148,1,12.90%,86.50%,0.60%,18,18,171,10.50% +109994,867,3062,State-funded primary,197,102,95,51.80%,48.20%,5,2.50%,17,8.60%,21,176,0,10.70%,89.30%,0.00%,11,13,197,6.60% +109995,871,3070,State-funded primary,677,339,338,50.10%,49.90%,8,1.20%,83,12.30%,487,181,9,71.90%,26.70%,1.30%,159,164,626,26.20% +109996,868,3072,State-funded primary,97,43,54,44.30%,55.70%,2,2.10%,13,13.40%,7,90,0,7.20%,92.80%,0.00%,17,17,75,22.70% +109997,868,3074,State-funded primary,146,64,82,43.80%,56.20%,5,3.40%,21,14.40%,20,126,0,13.70%,86.30%,0.00%,8,8,146,5.50% +109999,867,3076,State-funded primary,415,217,198,52.30%,47.70%,4,1.00%,22,5.30%,44,371,0,10.60%,89.40%,0.00%,16,16,415,3.90% +110003,870,3302,State-funded primary,207,98,109,47.30%,52.70%,7,3.40%,24,11.60%,65,142,0,31.40%,68.60%,0.00%,41,43,184,23.40% +110004,870,3304,State-funded primary,439,211,228,48.10%,51.90%,16,3.60%,69,15.70%,198,241,0,45.10%,54.90%,0.00%,72,75,407,18.40% +110005,870,3305,State-funded primary,312,148,164,47.40%,52.60%,32,10.30%,73,23.40%,108,203,1,34.60%,65.10%,0.30%,112,112,292,38.40% +110006,869,3306,State-funded primary,302,154,148,51.00%,49.00%,2,0.70%,36,11.90%,77,224,1,25.50%,74.20%,0.30%,11,11,302,3.60% +110007,869,3310,State-funded primary,145,66,79,45.50%,54.50%,6,4.10%,25,17.20%,2,143,0,1.40%,98.60%,0.00%,17,19,145,13.10% +110008,869,3311,State-funded primary,97,51,46,52.60%,47.40%,1,1.00%,6,6.20%,4,93,0,4.10%,95.90%,0.00%,7,7,97,7.20% +110010,867,3313,State-funded primary,213,110,103,51.60%,48.40%,7,3.30%,32,15.00%,28,180,5,13.10%,84.50%,2.30%,18,19,213,8.90% +110011,869,3314,State-funded primary,111,56,55,50.50%,49.50%,2,1.80%,16,14.40%,7,104,0,6.30%,93.70%,0.00%,8,9,111,8.10% +110012,872,3315,State-funded primary,103,51,52,49.50%,50.50%,1,1.00%,12,11.70%,8,95,0,7.80%,92.20%,0.00%,2,2,103,1.90% +110013,869,3316,State-funded primary,253,127,126,50.20%,49.80%,2,0.80%,39,15.40%,60,193,0,23.70%,76.30%,0.00%,36,36,253,14.20% +110014,868,3318,State-funded primary,104,45,59,43.30%,56.70%,5,4.80%,17,16.30%,2,102,0,1.90%,98.10%,0.00%,3,3,104,2.90% +110015,872,3319,State-funded primary,210,106,104,50.50%,49.50%,4,1.90%,33,15.70%,11,199,0,5.20%,94.80%,0.00%,18,18,210,8.60% +110017,869,3321,State-funded primary,90,46,44,51.10%,48.90%,2,2.20%,11,12.20%,4,86,0,4.40%,95.60%,0.00%,9,9,90,10.00% +110018,868,3322,State-funded primary,210,106,104,50.50%,49.50%,5,2.40%,30,14.30%,10,199,1,4.80%,94.80%,0.50%,17,17,210,8.10% +110019,868,3323,State-funded primary,202,102,100,50.50%,49.50%,1,0.50%,13,6.40%,16,179,7,7.90%,88.60%,3.50%,24,26,202,12.90% +110020,868,3324,State-funded primary,181,90,91,49.70%,50.30%,11,6.10%,5,2.80%,10,171,0,5.50%,94.50%,0.00%,16,16,181,8.80% +110021,869,3325,State-funded primary,103,47,56,45.60%,54.40%,3,2.90%,5,4.90%,2,100,1,1.90%,97.10%,1.00%,5,5,103,4.90% +110023,868,3327,State-funded primary,139,76,63,54.70%,45.30%,5,3.60%,7,5.00%,13,126,0,9.40%,90.60%,0.00%,14,15,139,10.80% +110025,869,3331,State-funded primary,101,49,52,48.50%,51.50%,1,1.00%,13,12.90%,1,100,0,1.00%,99.00%,0.00%,4,4,101,4.00% +110026,869,3332,State-funded primary,88,32,56,36.40%,63.60%,2,2.30%,12,13.60%,1,87,0,1.10%,98.90%,0.00%,3,3,88,3.40% +110027,867,3333,State-funded primary,211,93,118,44.10%,55.90%,6,2.80%,28,13.30%,61,150,0,28.90%,71.10%,0.00%,12,13,211,6.20% +110031,868,3338,State-funded primary,269,148,121,55.00%,45.00%,10,3.70%,27,10.00%,53,216,0,19.70%,80.30%,0.00%,21,23,269,8.60% +110035,871,3353,State-funded primary,484,250,234,51.70%,48.30%,4,0.80%,50,10.30%,132,352,0,27.30%,72.70%,0.00%,64,65,448,14.50% +110037,869,3358,State-funded primary,196,99,97,50.50%,49.50%,6,3.10%,25,12.80%,16,180,0,8.20%,91.80%,0.00%,5,5,196,2.60% +110038,870,3360,State-funded primary,135,65,70,48.10%,51.90%,2,1.50%,11,8.10%,27,108,0,20.00%,80.00%,0.00%,12,12,135,8.90% +110041,872,3368,State-funded primary,420,199,221,47.40%,52.60%,16,3.80%,23,5.50%,104,316,0,24.80%,75.20%,0.00%,28,29,420,6.90% +110048,869,4031,State-funded secondary,1250,605,645,48.40%,51.60%,31,2.50%,154,12.30%,57,1191,2,4.60%,95.30%,0.20%,118,150,1026,14.60% +110062,872,4051,State-funded secondary,1436,730,706,50.80%,49.20%,51,3.60%,153,10.70%,325,1106,5,22.60%,77.00%,0.30%,218,226,1224,18.50% +110063,869,4052,State-funded secondary,1660,847,813,51.00%,49.00%,26,1.60%,203,12.20%,218,1425,17,13.10%,85.80%,1.00%,260,254,1320,19.20% +110069,867,4059,State-funded secondary,1475,685,790,46.40%,53.60%,71,4.80%,247,16.70%,301,1174,0,20.40%,79.60%,0.00%,224,231,1270,18.20% +110078,871,4089,State-funded secondary,1096,494,602,45.10%,54.90%,29,2.60%,89,8.10%,496,596,4,45.30%,54.40%,0.40%,256,304,932,32.60% +110084,871,4700,State-funded secondary,1087,499,588,45.90%,54.10%,3,0.30%,50,4.60%,339,738,10,31.20%,67.90%,0.90%,37,39,738,5.30% +110086,868,4704,State-funded secondary,480,230,250,47.90%,52.10%,15,3.10%,35,7.30%,59,419,2,12.30%,87.30%,0.40%,40,46,480,9.60% +110089,871,5201,State-funded primary,695,309,386,44.50%,55.50%,85,12.20%,113,16.30%,211,469,15,30.40%,67.50%,2.20%,141,137,648,21.10% +110090,871,5202,State-funded primary,451,233,218,51.70%,48.30%,6,1.30%,41,9.10%,175,272,4,38.80%,60.30%,0.90%,40,43,422,10.20% +110093,869,5205,State-funded primary,201,95,106,47.30%,52.70%,4,2.00%,13,6.50%,74,127,0,36.80%,63.20%,0.00%,22,22,181,12.20% +110094,869,5206,State-funded primary,235,110,125,46.80%,53.20%,4,1.70%,20,8.50%,158,75,2,67.20%,31.90%,0.90%,18,18,212,8.50% +110095,871,5207,State-funded primary,200,91,109,45.50%,54.50%,3,1.50%,16,8.00%,111,89,0,55.50%,44.50%,0.00%,30,29,179,16.20% +110102,869,5406,State-funded secondary,1363,662,701,48.60%,51.40%,25,1.80%,118,8.70%,20,1332,11,1.50%,97.70%,0.80%,106,96,1047,9.20% +110107,870,5411,State-funded secondary,994,497,497,50.00%,50.00%,45,4.50%,57,5.70%,409,579,6,41.10%,58.20%,0.60%,157,175,895,19.60% +110109,870,6000,Independent school,410,410,0,100.00%,0.00%,0,0.00%,76,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110110,870,6001,Independent school,538,222,316,41.30%,58.70%,2,0.40%,107,19.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110111,870,6002,Independent school,590,254,336,43.10%,56.90%,1,0.20%,104,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110112,870,6003,Independent school,69,38,31,55.10%,44.90%,1,1.40%,19,27.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110114,870,6005,Independent school,107,19,88,17.80%,82.20%,1,0.90%,15,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110117,867,6000,Independent school,238,238,0,100.00%,0.00%,0,0.00%,72,30.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110118,868,6000,Independent school,225,0,225,0.00%,100.00%,0,0.00%,58,25.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110119,868,6001,Independent school,268,268,0,100.00%,0.00%,0,0.00%,72,26.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110120,868,6002,Independent school,393,393,0,100.00%,0.00%,0,0.00%,81,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110121,869,6000,Independent school,825,322,503,39.00%,61.00%,0,0.00%,153,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110122,869,6001,Independent school,310,155,155,50.00%,50.00%,0,0.00%,29,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110123,869,6002,Independent school,551,551,0,100.00%,0.00%,0,0.00%,92,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110124,868,6003,Independent school,120,53,67,44.20%,55.80%,1,0.80%,26,21.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110125,867,6001,Independent school,1097,498,599,45.40%,54.60%,1,0.10%,194,17.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110126,868,6004,Independent school,443,187,256,42.20%,57.80%,0,0.00%,57,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110127,869,6003,Independent school,307,153,154,49.80%,50.20%,3,1.00%,66,21.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110128,869,6004,Independent school,488,397,91,81.40%,18.60%,5,1.00%,48,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110130,868,6005,Independent school,303,200,103,66.00%,34.00%,1,0.30%,45,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110131,868,6006,Independent school,333,118,215,35.40%,64.60%,0,0.00%,14,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110132,869,6005,Independent school,464,175,289,37.70%,62.30%,0,0.00%,232,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110133,867,6002,Independent school,376,163,213,43.40%,56.60%,0,0.00%,96,25.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110134,868,6007,Independent school,99,0,99,0.00%,100.00%,0,0.00%,17,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110135,867,6003,Independent school,633,278,355,43.90%,56.10%,0,0.00%,103,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110136,872,6000,Independent school,347,197,150,56.80%,43.20%,3,0.90%,86,24.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110137,872,6001,Independent school,759,337,422,44.40%,55.60%,1,0.10%,106,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110138,872,6002,Independent school,185,0,185,0.00%,100.00%,0,0.00%,35,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110140,869,6007,Independent school,272,84,188,30.90%,69.10%,0,0.00%,50,18.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110141,867,6004,Independent school,89,41,48,46.10%,53.90%,0,0.00%,9,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110142,872,6003,Independent school,263,124,139,47.10%,52.90%,1,0.40%,19,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110145,868,6009,Independent school,106,98,8,92.50%,7.50%,0,0.00%,21,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110148,872,6004,Independent school,667,307,360,46.00%,54.00%,7,1.00%,145,21.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110151,872,6006,Independent school,790,81,709,10.30%,89.70%,0,0.00%,71,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110152,868,6013,Independent school,439,431,8,98.20%,1.80%,2,0.50%,55,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110153,868,6014,Independent school,964,362,602,37.60%,62.40%,15,1.60%,168,17.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110154,872,6007,Independent school,229,123,106,53.70%,46.30%,0,0.00%,30,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110155,872,6008,Independent school,708,313,395,44.20%,55.80%,0,0.00%,113,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110158,868,6016,Independent school,1344,0,1344,0.00%,100.00%,1,0.10%,214,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110159,867,6005,Independent school,839,355,484,42.30%,57.70%,3,0.40%,156,18.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110160,871,6000,Independent school,222,113,109,50.90%,49.10%,0,0.00%,25,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110161,868,6017,Independent school,208,106,102,51.00%,49.00%,1,0.50%,17,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110162,871,6001,Independent school,229,85,144,37.10%,62.90%,2,0.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110163,872,6010,Independent school,235,99,136,42.10%,57.90%,0,0.00%,66,28.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110165,870,6008,Independent school,1006,1006,0,100.00%,0.00%,0,0.00%,69,6.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110169,869,6009,Independent school,84,38,46,45.20%,54.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110172,867,6006,Independent school,33,14,19,42.40%,57.60%,3,9.10%,8,24.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110177,870,6009,Independent school,72,32,40,44.40%,55.60%,0,0.00%,2,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110178,867,6580,Independent school,15,0,15,0.00%,100.00%,10,66.70%,5,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110180,869,7005,Non-maintained special school,202,94,108,46.50%,53.50%,199,98.50%,3,1.50%,61,141,0,30.20%,69.80%,0.00%,39,28,122,23.00% +110181,872,7006,Non-maintained special school,85,29,56,34.10%,65.90%,85,100.00%,0,0.00%,1,84,0,1.20%,98.80%,0.00%,35,40,84,47.60% +110182,869,7007,State-funded special school,175,51,124,29.10%,70.90%,175,100.00%,0,0.00%,15,160,0,8.60%,91.40%,0.00%,79,66,144,45.80% +110183,868,7009,State-funded special school,291,84,207,28.90%,71.10%,285,97.90%,6,2.10%,72,219,0,24.70%,75.30%,0.00%,96,91,229,39.70% +110186,869,7028,State-funded special school,238,71,167,29.80%,70.20%,238,100.00%,0,0.00%,38,200,0,16.00%,84.00%,0.00%,77,69,195,35.40% +110187,872,7029,State-funded special school,273,88,185,32.20%,67.80%,273,100.00%,0,0.00%,27,246,0,9.90%,90.10%,0.00%,48,46,234,19.70% +110190,867,7032,State-funded special school,198,52,146,26.30%,73.70%,198,100.00%,0,0.00%,25,173,0,12.60%,87.40%,0.00%,71,63,163,38.70% +110193,870,7036,State-funded special school,35,6,29,17.10%,82.90%,35,100.00%,0,0.00%,1,34,0,2.90%,97.10%,0.00%,25,25,35,71.40% +110195,825,1000,State-funded nursery,71,35,36,49.30%,50.70%,6,8.50%,12,16.90%,22,49,0,31.00%,69.00%,0.00%,0,0,0,0.00% +110197,826,1003,State-funded nursery,83,36,47,43.40%,56.60%,0,0.00%,23,27.70%,28,55,0,33.70%,66.30%,0.00%,0,0,0,0.00% +110199,825,1005,State-funded nursery,178,83,95,46.60%,53.40%,4,2.20%,48,27.00%,69,106,3,38.80%,59.60%,1.70%,0,0,0,0.00% +110206,825,2001,State-funded primary,704,339,365,48.20%,51.80%,40,5.70%,163,23.20%,368,336,0,52.30%,47.70%,0.00%,218,220,627,35.10% +110208,825,2007,State-funded primary,28,13,15,46.40%,53.60%,2,7.10%,7,25.00%,3,25,0,10.70%,89.30%,0.00%,13,13,28,46.40% +110209,825,2008,State-funded primary,172,81,91,47.10%,52.90%,4,2.30%,15,8.70%,9,163,0,5.20%,94.80%,0.00%,6,6,172,3.50% +110213,826,2015,State-funded primary,38,20,18,52.60%,47.40%,0,0.00%,2,5.30%,0,38,0,0.00%,100.00%,0.00%,5,5,38,13.20% +110214,825,2016,State-funded primary,209,103,106,49.30%,50.70%,4,1.90%,9,4.30%,12,195,2,5.70%,93.30%,1.00%,20,20,173,11.60% +110215,825,2019,State-funded primary,216,120,96,55.60%,44.40%,2,0.90%,28,13.00%,3,213,0,1.40%,98.60%,0.00%,22,22,216,10.20% +110216,825,2020,State-funded primary,96,40,56,41.70%,58.30%,5,5.20%,4,4.20%,21,75,0,21.90%,78.10%,0.00%,8,8,96,8.30% +110217,825,2021,State-funded primary,226,112,114,49.60%,50.40%,8,3.50%,41,18.10%,85,138,3,37.60%,61.10%,1.30%,39,39,173,22.50% +110219,825,2027,State-funded primary,78,42,36,53.80%,46.20%,3,3.80%,11,14.10%,6,72,0,7.70%,92.30%,0.00%,13,13,78,16.70% +110222,825,2030,State-funded primary,41,20,21,48.80%,51.20%,1,2.40%,4,9.80%,1,40,0,2.40%,97.60%,0.00%,3,3,41,7.30% +110223,825,2031,State-funded primary,61,29,32,47.50%,52.50%,0,0.00%,4,6.60%,6,55,0,9.80%,90.20%,0.00%,3,3,61,4.90% +110227,825,2037,State-funded primary,70,27,43,38.60%,61.40%,1,1.40%,8,11.40%,2,67,1,2.90%,95.70%,1.40%,1,1,70,1.40% +110228,825,2038,State-funded primary,192,87,105,45.30%,54.70%,5,2.60%,23,12.00%,1,191,0,0.50%,99.50%,0.00%,42,43,192,22.40% +110229,825,2040,State-funded primary,91,39,52,42.90%,57.10%,2,2.20%,18,19.80%,7,84,0,7.70%,92.30%,0.00%,14,14,91,15.40% +110230,826,2042,State-funded primary,279,145,134,52.00%,48.00%,3,1.10%,32,11.50%,20,259,0,7.20%,92.80%,0.00%,51,55,279,19.70% +110231,826,2043,State-funded primary,164,83,81,50.60%,49.40%,2,1.20%,15,9.10%,15,147,2,9.10%,89.60%,1.20%,11,11,164,6.70% +110234,825,2049,State-funded primary,168,84,84,50.00%,50.00%,6,3.60%,27,16.10%,50,118,0,29.80%,70.20%,0.00%,49,49,138,35.50% +110237,825,2059,State-funded primary,65,30,35,46.20%,53.80%,0,0.00%,4,6.20%,1,64,0,1.50%,98.50%,0.00%,4,4,65,6.20% +110239,825,2061,State-funded primary,220,102,118,46.40%,53.60%,11,5.00%,42,19.10%,24,196,0,10.90%,89.10%,0.00%,58,58,220,26.40% +110240,826,2062,State-funded primary,168,85,83,50.60%,49.40%,2,1.20%,24,14.30%,93,75,0,55.40%,44.60%,0.00%,47,47,135,34.80% +110241,825,2065,State-funded primary,72,37,35,51.40%,48.60%,1,1.40%,12,16.70%,2,70,0,2.80%,97.20%,0.00%,3,4,72,5.60% +110242,826,2067,State-funded primary,159,79,80,49.70%,50.30%,0,0.00%,18,11.30%,2,157,0,1.30%,98.70%,0.00%,31,31,159,19.50% +110243,825,2068,State-funded primary,233,124,109,53.20%,46.80%,4,1.70%,15,6.40%,11,222,0,4.70%,95.30%,0.00%,12,13,209,6.20% +110244,825,2071,State-funded primary,237,120,117,50.60%,49.40%,5,2.10%,25,10.50%,27,209,1,11.40%,88.20%,0.40%,9,9,217,4.10% +110247,825,2084,State-funded primary,135,65,70,48.10%,51.90%,4,3.00%,16,11.90%,5,130,0,3.70%,96.30%,0.00%,15,15,135,11.10% +110248,825,2107,State-funded primary,216,90,126,41.70%,58.30%,9,4.20%,32,14.80%,12,204,0,5.60%,94.40%,0.00%,45,47,184,25.50% +110249,825,2108,State-funded primary,219,124,95,56.60%,43.40%,12,5.50%,20,9.10%,16,203,0,7.30%,92.70%,0.00%,42,42,219,19.20% +110252,826,2112,State-funded primary,215,120,95,55.80%,44.20%,2,0.90%,28,13.00%,21,194,0,9.80%,90.20%,0.00%,33,34,178,19.10% +110253,825,2113,State-funded primary,33,15,18,45.50%,54.50%,1,3.00%,2,6.10%,3,30,0,9.10%,90.90%,0.00%,4,4,33,12.10% +110255,825,2115,State-funded primary,174,91,83,52.30%,47.70%,0,0.00%,15,8.60%,14,159,1,8.00%,91.40%,0.60%,10,10,174,5.70% +110256,826,2121,State-funded primary,413,206,207,49.90%,50.10%,4,1.00%,31,7.50%,136,276,1,32.90%,66.80%,0.20%,121,128,413,31.00% +110257,826,2122,State-funded primary,328,163,165,49.70%,50.30%,8,2.40%,31,9.50%,120,207,1,36.60%,63.10%,0.30%,59,59,257,23.00% +110260,825,2126,State-funded primary,241,129,112,53.50%,46.50%,3,1.20%,57,23.70%,113,127,1,46.90%,52.70%,0.40%,54,54,205,26.30% +110261,825,2132,State-funded primary,229,103,126,45.00%,55.00%,5,2.20%,29,12.70%,79,150,0,34.50%,65.50%,0.00%,81,82,207,39.60% +110265,825,2142,State-funded primary,232,111,121,47.80%,52.20%,13,5.60%,25,10.80%,14,218,0,6.00%,94.00%,0.00%,35,36,232,15.50% +110268,825,2150,State-funded primary,174,78,96,44.80%,55.20%,5,2.90%,10,5.70%,14,160,0,8.00%,92.00%,0.00%,8,8,174,4.60% +110269,825,2151,State-funded primary,179,82,97,45.80%,54.20%,3,1.70%,25,14.00%,17,161,1,9.50%,89.90%,0.60%,27,27,179,15.10% +110270,825,2152,State-funded primary,244,114,130,46.70%,53.30%,10,4.10%,35,14.30%,44,200,0,18.00%,82.00%,0.00%,43,43,244,17.60% +110271,825,2153,State-funded primary,247,127,120,51.40%,48.60%,4,1.60%,20,8.10%,53,194,0,21.50%,78.50%,0.00%,3,4,221,1.80% +110274,825,2157,State-funded primary,239,116,123,48.50%,51.50%,12,5.00%,52,21.80%,27,212,0,11.30%,88.70%,0.00%,72,73,239,30.50% +110276,825,2162,State-funded primary,558,284,274,50.90%,49.10%,16,2.90%,77,13.80%,204,354,0,36.60%,63.40%,0.00%,141,142,484,29.30% +110277,825,5208,State-funded primary,461,228,233,49.50%,50.50%,9,2.00%,44,9.50%,20,439,2,4.30%,95.20%,0.40%,8,8,431,1.90% +110278,825,2167,State-funded primary,144,68,76,47.20%,52.80%,5,3.50%,11,7.60%,6,138,0,4.20%,95.80%,0.00%,18,18,144,12.50% +110279,825,2168,State-funded primary,213,106,107,49.80%,50.20%,6,2.80%,34,16.00%,36,177,0,16.90%,83.10%,0.00%,43,44,213,20.70% +110282,825,2175,State-funded primary,459,244,215,53.20%,46.80%,4,0.90%,22,4.80%,72,387,0,15.70%,84.30%,0.00%,27,26,359,7.20% +110283,825,2176,State-funded primary,173,82,91,47.40%,52.60%,14,8.10%,20,11.60%,18,155,0,10.40%,89.60%,0.00%,39,39,173,22.50% +110284,825,2179,State-funded primary,178,93,85,52.20%,47.80%,2,1.10%,16,9.00%,29,149,0,16.30%,83.70%,0.00%,23,23,178,12.90% +110287,825,2182,State-funded primary,239,118,121,49.40%,50.60%,6,2.50%,36,15.10%,19,220,0,7.90%,92.10%,0.00%,32,32,239,13.40% +110289,825,2184,State-funded primary,465,201,264,43.20%,56.80%,13,2.80%,68,14.60%,320,145,0,68.80%,31.20%,0.00%,103,104,416,25.00% +110291,825,2186,State-funded primary,415,222,193,53.50%,46.50%,12,2.90%,26,6.30%,39,376,0,9.40%,90.60%,0.00%,30,31,415,7.50% +110293,825,2189,State-funded primary,293,152,141,51.90%,48.10%,5,1.70%,14,4.80%,17,276,0,5.80%,94.20%,0.00%,17,17,266,6.40% +110294,825,2191,State-funded primary,208,103,105,49.50%,50.50%,1,0.50%,13,6.30%,59,149,0,28.40%,71.60%,0.00%,16,14,180,7.80% +110297,825,2196,State-funded primary,165,85,80,51.50%,48.50%,3,1.80%,27,16.40%,13,152,0,7.90%,92.10%,0.00%,17,17,165,10.30% +110298,825,2197,State-funded primary,213,98,115,46.00%,54.00%,4,1.90%,30,14.10%,23,190,0,10.80%,89.20%,0.00%,21,22,213,10.30% +110299,825,2199,State-funded primary,418,211,207,50.50%,49.50%,9,2.20%,42,10.00%,25,393,0,6.00%,94.00%,0.00%,26,26,418,6.20% +110300,825,2200,State-funded primary,255,122,133,47.80%,52.20%,7,2.70%,27,10.60%,25,226,4,9.80%,88.60%,1.60%,18,21,255,8.20% +110303,825,2203,State-funded primary,257,131,126,51.00%,49.00%,6,2.30%,43,16.70%,37,218,2,14.40%,84.80%,0.80%,24,25,257,9.70% +110304,825,2204,State-funded primary,206,99,107,48.10%,51.90%,13,6.30%,38,18.40%,6,200,0,2.90%,97.10%,0.00%,24,24,206,11.70% +110313,825,2219,State-funded primary,501,235,266,46.90%,53.10%,10,2.00%,102,20.40%,216,285,0,43.10%,56.90%,0.00%,116,118,421,28.00% +110314,825,2220,State-funded primary,432,222,210,51.40%,48.60%,9,2.10%,26,6.00%,32,400,0,7.40%,92.60%,0.00%,16,17,432,3.90% +110320,825,2228,State-funded primary,141,74,67,52.50%,47.50%,4,2.80%,31,22.00%,6,135,0,4.30%,95.70%,0.00%,48,49,116,42.20% +110324,825,2233,State-funded primary,174,85,89,48.90%,51.10%,4,2.30%,22,12.60%,69,103,2,39.70%,59.20%,1.10%,61,61,174,35.10% +110326,825,2235,State-funded primary,300,134,166,44.70%,55.30%,25,8.30%,52,17.30%,28,271,1,9.30%,90.30%,0.30%,47,48,275,17.50% +110327,826,2238,State-funded primary,204,98,106,48.00%,52.00%,3,1.50%,29,14.20%,64,140,0,31.40%,68.60%,0.00%,72,77,204,37.70% +110328,825,2242,State-funded primary,175,73,102,41.70%,58.30%,4,2.30%,25,14.30%,25,150,0,14.30%,85.70%,0.00%,28,28,175,16.00% +110329,825,2245,State-funded primary,368,165,203,44.80%,55.20%,6,1.60%,45,12.20%,39,329,0,10.60%,89.40%,0.00%,62,64,368,17.40% +110330,826,2247,State-funded primary,141,72,69,51.10%,48.90%,0,0.00%,21,14.90%,41,98,2,29.10%,69.50%,1.40%,32,32,123,26.00% +110332,825,2250,State-funded primary,391,185,206,47.30%,52.70%,23,5.90%,49,12.50%,21,370,0,5.40%,94.60%,0.00%,51,52,391,13.30% +110333,825,2251,State-funded primary,207,109,98,52.70%,47.30%,7,3.40%,18,8.70%,17,190,0,8.20%,91.80%,0.00%,26,27,207,13.00% +110335,825,2254,State-funded primary,211,116,95,55.00%,45.00%,8,3.80%,16,7.60%,19,192,0,9.00%,91.00%,0.00%,29,29,211,13.70% +110336,825,2255,State-funded primary,205,105,100,51.20%,48.80%,8,3.90%,11,5.40%,26,179,0,12.70%,87.30%,0.00%,7,8,205,3.90% +110338,825,2261,State-funded primary,209,114,95,54.50%,45.50%,4,1.90%,26,12.40%,13,196,0,6.20%,93.80%,0.00%,9,9,209,4.30% +110342,825,2269,State-funded primary,418,213,205,51.00%,49.00%,4,1.00%,64,15.30%,25,393,0,6.00%,94.00%,0.00%,49,49,392,12.50% +110343,825,2270,State-funded primary,199,95,104,47.70%,52.30%,4,2.00%,21,10.60%,42,157,0,21.10%,78.90%,0.00%,33,33,163,20.20% +110344,825,2271,State-funded primary,202,102,100,50.50%,49.50%,2,1.00%,30,14.90%,20,182,0,9.90%,90.10%,0.00%,16,16,177,9.00% +110345,826,2272,State-funded primary,130,68,62,52.30%,47.70%,3,2.30%,39,30.00%,46,83,1,35.40%,63.80%,0.80%,69,70,130,53.80% +110347,825,2276,State-funded primary,368,181,187,49.20%,50.80%,11,3.00%,59,16.00%,31,337,0,8.40%,91.60%,0.00%,49,51,368,13.90% +110351,825,2280,State-funded primary,369,183,186,49.60%,50.40%,13,3.50%,58,15.70%,84,285,0,22.80%,77.20%,0.00%,51,53,369,14.40% +110353,825,2282,State-funded primary,240,113,127,47.10%,52.90%,4,1.70%,27,11.30%,74,166,0,30.80%,69.20%,0.00%,5,5,240,2.10% +110355,826,2285,State-funded primary,315,154,161,48.90%,51.10%,8,2.50%,33,10.50%,127,186,2,40.30%,59.00%,0.60%,136,127,294,43.20% +110356,825,2286,State-funded primary,711,363,348,51.10%,48.90%,29,4.10%,113,15.90%,205,501,5,28.80%,70.50%,0.70%,156,161,636,25.30% +110358,825,2288,State-funded primary,821,385,436,46.90%,53.10%,30,3.70%,86,10.50%,290,528,3,35.30%,64.30%,0.40%,160,167,821,20.30% +110359,825,2289,State-funded primary,308,134,174,43.50%,56.50%,11,3.60%,37,12.00%,91,217,0,29.50%,70.50%,0.00%,39,39,268,14.60% +110360,825,2292,State-funded primary,394,186,208,47.20%,52.80%,5,1.30%,23,5.80%,28,366,0,7.10%,92.90%,0.00%,41,48,354,13.60% +110363,826,2299,State-funded primary,182,86,96,47.30%,52.70%,8,4.40%,15,8.20%,103,79,0,56.60%,43.40%,0.00%,62,63,182,34.60% +110365,826,2301,State-funded primary,311,138,173,44.40%,55.60%,4,1.30%,37,11.90%,91,220,0,29.30%,70.70%,0.00%,119,130,311,41.80% +110366,826,2303,State-funded primary,341,152,189,44.60%,55.40%,9,2.60%,39,11.40%,73,267,1,21.40%,78.30%,0.30%,103,105,341,30.80% +110367,826,2305,State-funded primary,225,117,108,52.00%,48.00%,6,2.70%,35,15.60%,56,169,0,24.90%,75.10%,0.00%,117,123,225,54.70% +110368,826,2306,State-funded primary,69,38,31,55.10%,44.90%,3,4.30%,7,10.10%,30,39,0,43.50%,56.50%,0.00%,30,30,69,43.50% +110369,826,2309,State-funded primary,242,108,134,44.60%,55.40%,5,2.10%,49,20.20%,48,194,0,19.80%,80.20%,0.00%,87,89,242,36.80% +110372,826,2313,State-funded primary,90,39,51,43.30%,56.70%,2,2.20%,2,2.20%,52,38,0,57.80%,42.20%,0.00%,8,8,62,12.90% +110374,825,2315,State-funded primary,156,81,75,51.90%,48.10%,5,3.20%,26,16.70%,29,127,0,18.60%,81.40%,0.00%,38,38,156,24.40% +110375,826,2316,State-funded primary,82,40,42,48.80%,51.20%,6,7.30%,9,11.00%,39,43,0,47.60%,52.40%,0.00%,33,36,82,43.90% +110376,825,2317,State-funded primary,220,107,113,48.60%,51.40%,3,1.40%,27,12.30%,19,201,0,8.60%,91.40%,0.00%,31,32,220,14.50% +110379,826,2320,State-funded primary,183,81,102,44.30%,55.70%,9,4.90%,23,12.60%,75,102,6,41.00%,55.70%,3.30%,49,51,118,43.20% +110380,826,2322,State-funded primary,81,43,38,53.10%,46.90%,0,0.00%,13,16.00%,37,44,0,45.70%,54.30%,0.00%,29,29,81,35.80% +110381,826,2323,State-funded primary,300,147,153,49.00%,51.00%,9,3.00%,28,9.30%,60,239,1,20.00%,79.70%,0.30%,68,69,300,23.00% +110382,826,2324,State-funded primary,81,35,46,43.20%,56.80%,4,4.90%,16,19.80%,20,61,0,24.70%,75.30%,0.00%,23,23,81,28.40% +110385,826,2327,State-funded primary,340,170,170,50.00%,50.00%,7,2.10%,69,20.30%,156,184,0,45.90%,54.10%,0.00%,95,97,340,28.50% +110388,826,2330,State-funded primary,367,171,196,46.60%,53.40%,10,2.70%,48,13.10%,109,258,0,29.70%,70.30%,0.00%,61,62,367,16.90% +110391,825,2333,State-funded primary,212,99,113,46.70%,53.30%,14,6.60%,26,12.30%,15,197,0,7.10%,92.90%,0.00%,15,16,212,7.50% +110393,825,2335,State-funded primary,323,152,171,47.10%,52.90%,3,0.90%,33,10.20%,15,308,0,4.60%,95.40%,0.00%,23,25,323,7.70% +110394,826,2336,State-funded primary,419,206,213,49.20%,50.80%,7,1.70%,39,9.30%,132,287,0,31.50%,68.50%,0.00%,75,77,419,18.40% +110395,826,2337,State-funded primary,298,156,142,52.30%,47.70%,6,2.00%,42,14.10%,29,268,1,9.70%,89.90%,0.30%,42,42,298,14.10% +110398,825,2345,State-funded primary,230,101,129,43.90%,56.10%,19,8.30%,19,8.30%,31,199,0,13.50%,86.50%,0.00%,58,59,230,25.70% +110399,826,2346,State-funded primary,306,157,149,51.30%,48.70%,4,1.30%,40,13.10%,43,262,1,14.10%,85.60%,0.30%,50,50,258,19.40% +110400,826,2347,State-funded primary,178,77,101,43.30%,56.70%,1,0.60%,32,18.00%,53,124,1,29.80%,69.70%,0.60%,21,21,178,11.80% +110401,826,2348,State-funded primary,271,131,140,48.30%,51.70%,3,1.10%,53,19.60%,67,204,0,24.70%,75.30%,0.00%,75,76,271,28.00% +110403,825,2352,State-funded primary,458,240,218,52.40%,47.60%,25,5.50%,57,12.40%,207,250,1,45.20%,54.60%,0.20%,97,97,416,23.30% +110404,826,3000,State-funded primary,199,104,95,52.30%,47.70%,3,1.50%,35,17.60%,28,170,1,14.10%,85.40%,0.50%,67,68,199,34.20% +110405,826,3003,State-funded primary,16,6,10,37.50%,62.50%,0,0.00%,2,12.50%,0,16,0,0.00%,100.00%,0.00%,2,2,16,12.50% +110406,826,3004,State-funded primary,32,11,21,34.40%,65.60%,0,0.00%,3,9.40%,3,29,0,9.40%,90.60%,0.00%,1,1,32,3.10% +110407,826,3005,State-funded primary,18,10,8,55.60%,44.40%,0,0.00%,0,0.00%,1,17,0,5.60%,94.40%,0.00%,3,3,18,16.70% +110408,826,3006,State-funded primary,26,17,9,65.40%,34.60%,0,0.00%,4,15.40%,1,25,0,3.80%,96.20%,0.00%,4,4,26,15.40% +110410,825,3008,State-funded primary,147,63,84,42.90%,57.10%,5,3.40%,23,15.60%,5,142,0,3.40%,96.60%,0.00%,10,10,147,6.80% +110411,825,3012,State-funded primary,170,82,88,48.20%,51.80%,5,2.90%,22,12.90%,1,169,0,0.60%,99.40%,0.00%,28,28,170,16.50% +110412,825,3014,State-funded primary,98,51,47,52.00%,48.00%,6,6.10%,16,16.30%,1,97,0,1.00%,99.00%,0.00%,14,15,98,15.30% +110414,825,3017,State-funded primary,196,89,107,45.40%,54.60%,3,1.50%,24,12.20%,4,192,0,2.00%,98.00%,0.00%,36,36,196,18.40% +110415,825,3018,State-funded primary,55,34,21,61.80%,38.20%,2,3.60%,23,41.80%,1,54,0,1.80%,98.20%,0.00%,11,11,55,20.00% +110417,825,3022,State-funded primary,370,177,193,47.80%,52.20%,17,4.60%,27,7.30%,49,320,1,13.20%,86.50%,0.30%,45,46,370,12.40% +110419,825,3025,State-funded primary,282,144,138,51.10%,48.90%,4,1.40%,35,12.40%,13,269,0,4.60%,95.40%,0.00%,36,37,282,13.10% +110420,825,3028,State-funded primary,209,95,114,45.50%,54.50%,9,4.30%,37,17.70%,15,194,0,7.20%,92.80%,0.00%,34,34,209,16.30% +110421,825,3029,State-funded primary,360,181,179,50.30%,49.70%,8,2.20%,44,12.20%,24,336,0,6.70%,93.30%,0.00%,32,35,360,9.70% +110422,825,3030,State-funded primary,199,96,103,48.20%,51.80%,11,5.50%,29,14.60%,15,184,0,7.50%,92.50%,0.00%,23,23,199,11.60% +110423,825,3031,State-funded primary,211,99,112,46.90%,53.10%,3,1.40%,31,14.70%,11,200,0,5.20%,94.80%,0.00%,27,27,211,12.80% +110424,825,3033,State-funded primary,176,81,95,46.00%,54.00%,1,0.60%,18,10.20%,44,132,0,25.00%,75.00%,0.00%,26,26,176,14.80% +110426,825,3035,State-funded primary,40,18,22,45.00%,55.00%,2,5.00%,8,20.00%,1,39,0,2.50%,97.50%,0.00%,2,2,40,5.00% +110428,825,3037,State-funded primary,26,11,15,42.30%,57.70%,2,7.70%,1,3.80%,1,25,0,3.80%,96.20%,0.00%,4,4,26,15.40% +110433,825,3044,State-funded primary,179,87,92,48.60%,51.40%,2,1.10%,15,8.40%,28,151,0,15.60%,84.40%,0.00%,8,8,179,4.50% +110434,825,3046,State-funded primary,204,95,109,46.60%,53.40%,14,6.90%,30,14.70%,6,198,0,2.90%,97.10%,0.00%,34,34,204,16.70% +110435,825,3053,State-funded primary,269,130,139,48.30%,51.70%,4,1.50%,57,21.20%,28,241,0,10.40%,89.60%,0.00%,70,72,253,28.50% +110437,825,3056,State-funded primary,109,58,51,53.20%,46.80%,1,0.90%,12,11.00%,9,100,0,8.30%,91.70%,0.00%,19,18,93,19.40% +110438,825,3057,State-funded primary,72,45,27,62.50%,37.50%,0,0.00%,3,4.20%,3,69,0,4.20%,95.80%,0.00%,7,7,72,9.70% +110439,826,3058,State-funded primary,381,186,195,48.80%,51.20%,4,1.00%,33,8.70%,108,273,0,28.30%,71.70%,0.00%,59,62,346,17.90% +110440,825,3061,State-funded primary,204,99,105,48.50%,51.50%,5,2.50%,27,13.20%,11,193,0,5.40%,94.60%,0.00%,21,22,204,10.80% +110442,825,3065,State-funded primary,64,31,33,48.40%,51.60%,4,6.30%,14,21.90%,8,56,0,12.50%,87.50%,0.00%,10,10,62,16.10% +110443,826,3066,State-funded primary,14,8,6,57.10%,42.90%,0,0.00%,0,0.00%,1,13,0,7.10%,92.90%,0.00%,3,3,14,21.40% +110444,825,3068,State-funded primary,44,24,20,54.50%,45.50%,1,2.30%,5,11.40%,1,43,0,2.30%,97.70%,0.00%,3,3,44,6.80% +110445,825,3072,State-funded primary,195,100,95,51.30%,48.70%,4,2.10%,24,12.30%,6,185,4,3.10%,94.90%,2.10%,29,32,195,16.40% +110446,825,3073,State-funded primary,180,87,93,48.30%,51.70%,5,2.80%,12,6.70%,10,170,0,5.60%,94.40%,0.00%,20,20,180,11.10% +110447,825,3074,State-funded primary,164,77,87,47.00%,53.00%,3,1.80%,17,10.40%,18,146,0,11.00%,89.00%,0.00%,31,31,164,18.90% +110448,825,3100,State-funded primary,96,41,55,42.70%,57.30%,7,7.30%,14,14.60%,0,96,0,0.00%,100.00%,0.00%,9,10,96,10.40% +110449,825,3101,State-funded primary,375,188,187,50.10%,49.90%,10,2.70%,43,11.50%,12,363,0,3.20%,96.80%,0.00%,91,92,348,26.40% +110450,825,3102,State-funded primary,266,143,123,53.80%,46.20%,8,3.00%,42,15.80%,21,245,0,7.90%,92.10%,0.00%,67,68,217,31.30% +110451,825,3305,State-funded primary,115,63,52,54.80%,45.20%,2,1.70%,19,16.50%,3,112,0,2.60%,97.40%,0.00%,9,10,115,8.70% +110452,825,3309,State-funded primary,184,82,102,44.60%,55.40%,5,2.70%,21,11.40%,4,180,0,2.20%,97.80%,0.00%,6,6,184,3.30% +110454,825,3315,State-funded primary,25,12,13,48.00%,52.00%,0,0.00%,6,24.00%,3,22,0,12.00%,88.00%,0.00%,4,4,23,17.40% +110455,825,3320,State-funded primary,333,157,176,47.10%,52.90%,7,2.10%,43,12.90%,63,269,1,18.90%,80.80%,0.30%,21,21,332,6.30% +110457,825,3325,State-funded primary,42,21,21,50.00%,50.00%,2,4.80%,5,11.90%,3,39,0,7.10%,92.90%,0.00%,1,1,42,2.40% +110459,825,3328,State-funded primary,395,216,179,54.70%,45.30%,4,1.00%,32,8.10%,49,346,0,12.40%,87.60%,0.00%,21,23,395,5.80% +110460,825,3329,State-funded primary,77,40,37,51.90%,48.10%,2,2.60%,25,32.50%,6,71,0,7.80%,92.20%,0.00%,20,21,68,30.90% +110461,825,3330,State-funded primary,120,71,49,59.20%,40.80%,3,2.50%,1,0.80%,9,111,0,7.50%,92.50%,0.00%,10,10,120,8.30% +110462,825,3333,State-funded primary,200,102,98,51.00%,49.00%,9,4.50%,35,17.50%,33,167,0,16.50%,83.50%,0.00%,20,20,187,10.70% +110463,825,3334,State-funded primary,209,106,103,50.70%,49.30%,2,1.00%,15,7.20%,45,164,0,21.50%,78.50%,0.00%,33,34,209,16.30% +110464,825,3335,State-funded primary,85,38,47,44.70%,55.30%,3,3.50%,11,12.90%,7,78,0,8.20%,91.80%,0.00%,9,9,85,10.60% +110466,825,3337,State-funded primary,59,31,28,52.50%,47.50%,0,0.00%,13,22.00%,2,57,0,3.40%,96.60%,0.00%,3,3,59,5.10% +110467,825,3339,State-funded primary,85,38,47,44.70%,55.30%,6,7.10%,4,4.70%,0,85,0,0.00%,100.00%,0.00%,9,9,85,10.60% +110468,825,3340,State-funded primary,41,22,19,53.70%,46.30%,0,0.00%,1,2.40%,2,39,0,4.90%,95.10%,0.00%,5,5,41,12.20% +110469,825,3342,State-funded primary,238,115,123,48.30%,51.70%,3,1.30%,23,9.70%,15,223,0,6.30%,93.70%,0.00%,13,13,210,6.20% +110471,825,3347,State-funded primary,348,176,172,50.60%,49.40%,14,4.00%,45,12.90%,42,306,0,12.10%,87.90%,0.00%,27,28,348,8.00% +110476,826,3369,State-funded primary,265,129,136,48.70%,51.30%,1,0.40%,33,12.50%,103,161,1,38.90%,60.80%,0.40%,30,30,265,11.30% +110481,826,3377,State-funded primary,187,90,97,48.10%,51.90%,2,1.10%,21,11.20%,87,100,0,46.50%,53.50%,0.00%,45,45,176,25.60% +110482,826,3378,State-funded primary,397,221,176,55.70%,44.30%,5,1.30%,63,15.90%,209,188,0,52.60%,47.40%,0.00%,117,113,354,31.90% +110483,826,3379,State-funded primary,390,199,191,51.00%,49.00%,3,0.80%,71,18.20%,133,253,4,34.10%,64.90%,1.00%,62,66,348,19.00% +110484,825,4004,State-funded secondary,1176,570,606,48.50%,51.50%,36,3.10%,202,17.20%,71,1105,0,6.00%,94.00%,0.00%,173,174,1049,16.60% +110488,825,4034,State-funded secondary,1404,685,719,48.80%,51.20%,41,2.90%,180,12.80%,320,1076,8,22.80%,76.60%,0.60%,248,240,1238,19.40% +110500,825,4072,State-funded secondary,762,399,363,52.40%,47.60%,32,4.20%,127,16.70%,477,285,0,62.60%,37.40%,0.00%,210,232,754,30.80% +110516,825,4701,State-funded secondary,2101,1079,1022,51.40%,48.60%,57,2.70%,238,11.30%,731,1367,3,34.80%,65.10%,0.10%,244,269,1981,13.60% +110517,826,4702,State-funded secondary,1861,884,977,47.50%,52.50%,83,4.50%,139,7.50%,1095,765,1,58.80%,41.10%,0.10%,391,379,1454,26.10% +110518,825,5200,State-funded primary,317,172,145,54.30%,45.70%,10,3.20%,31,9.80%,11,306,0,3.50%,96.50%,0.00%,51,51,317,16.10% +110519,825,5201,State-funded primary,212,105,107,49.50%,50.50%,5,2.40%,24,11.30%,6,206,0,2.80%,97.20%,0.00%,34,35,212,16.50% +110522,825,5204,State-funded primary,475,242,233,50.90%,49.10%,14,2.90%,92,19.40%,313,162,0,65.90%,34.10%,0.00%,137,140,417,33.60% +110523,825,5205,State-funded primary,256,128,128,50.00%,50.00%,10,3.90%,41,16.00%,76,180,0,29.70%,70.30%,0.00%,34,35,256,13.70% +110524,825,5206,State-funded primary,205,108,97,52.70%,47.30%,2,1.00%,18,8.80%,43,162,0,21.00%,79.00%,0.00%,43,46,205,22.40% +110532,826,5406,State-funded secondary,1223,600,623,49.10%,50.90%,33,2.70%,157,12.80%,184,1039,0,15.00%,85.00%,0.00%,373,376,1049,35.80% +110533,825,5407,State-funded secondary,1111,518,593,46.60%,53.40%,49,4.40%,130,11.70%,25,1084,2,2.30%,97.60%,0.20%,137,135,970,13.90% +110536,825,6015,Independent school,493,183,310,37.10%,62.90%,5,1.00%,163,33.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110537,825,6004,Independent school,334,0,334,0.00%,100.00%,0,0.00%,33,9.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110538,825,6019,Independent school,282,276,6,97.90%,2.10%,0,0.00%,16,5.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110539,825,6021,Independent school,158,152,6,96.20%,3.80%,15,9.50%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110540,825,6009,Independent school,245,0,245,0.00%,100.00%,0,0.00%,54,22.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110541,825,6005,Independent school,361,109,252,30.20%,69.80%,2,0.60%,47,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110543,825,6020,Independent school,328,328,0,100.00%,0.00%,0,0.00%,27,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110544,825,6006,Independent school,425,425,0,100.00%,0.00%,7,1.60%,173,40.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110545,825,6017,Independent school,613,613,0,100.00%,0.00%,2,0.30%,78,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110546,825,6007,Independent school,428,421,7,98.40%,1.60%,0,0.00%,14,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110547,825,6018,Independent school,650,650,0,100.00%,0.00%,0,0.00%,80,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110548,825,6001,Independent school,902,368,534,40.80%,59.20%,0,0.00%,86,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110549,825,6010,Independent school,408,408,0,100.00%,0.00%,2,0.50%,46,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110550,825,6002,Independent school,379,164,215,43.30%,56.70%,2,0.50%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110551,825,6022,Independent school,272,113,159,41.50%,58.50%,3,1.10%,28,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110552,825,6027,Independent school,383,181,202,47.30%,52.70%,2,0.50%,62,16.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110553,825,6029,Independent school,516,0,516,0.00%,100.00%,1,0.20%,80,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110554,825,6014,Independent school,113,43,70,38.10%,61.90%,2,1.80%,33,29.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110555,825,6026,Independent school,276,0,276,0.00%,100.00%,2,0.70%,40,14.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110556,825,6000,Independent school,259,119,140,45.90%,54.10%,0,0.00%,29,11.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110557,825,6016,Independent school,112,44,68,39.30%,60.70%,0,0.00%,17,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110558,825,6023,Independent school,176,88,88,50.00%,50.00%,5,2.80%,23,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110563,825,6003,Independent school,300,137,163,45.70%,54.30%,2,0.70%,45,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110564,825,6011,Independent school,29,11,18,37.90%,62.10%,29,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110565,826,6004,Independent school,346,163,183,47.10%,52.90%,1,0.30%,8,2.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110567,826,6001,Independent school,335,156,179,46.60%,53.40%,1,0.30%,27,8.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110570,825,6013,Independent school,28,12,16,42.90%,57.10%,0,0.00%,5,17.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110571,826,6002,Independent school,208,101,107,48.60%,51.40%,0,0.00%,16,7.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110575,826,7009,State-funded special school,157,55,102,35.00%,65.00%,157,100.00%,0,0.00%,20,137,0,12.70%,87.30%,0.00%,62,53,130,40.80% +110576,825,7010,State-funded special school,161,38,123,23.60%,76.40%,161,100.00%,0,0.00%,43,118,0,26.70%,73.30%,0.00%,63,48,115,41.70% +110578,825,7013,State-funded special school,199,67,132,33.70%,66.30%,199,100.00%,0,0.00%,60,136,3,30.20%,68.30%,1.50%,57,48,177,27.10% +110579,825,7014,State-funded special school,211,3,208,1.40%,98.60%,211,100.00%,0,0.00%,20,191,0,9.50%,90.50%,0.00%,78,58,158,36.70% +110580,826,7015,State-funded special school,63,10,53,15.90%,84.10%,63,100.00%,0,0.00%,8,55,0,12.70%,87.30%,0.00%,41,46,63,73.00% +110581,825,7016,State-funded special school,100,24,76,24.00%,76.00%,100,100.00%,0,0.00%,22,78,0,22.00%,78.00%,0.00%,46,29,69,42.00% +110582,825,7018,State-funded special school,111,25,86,22.50%,77.50%,110,99.10%,1,0.90%,31,80,0,27.90%,72.10%,0.00%,28,26,98,26.50% +110584,826,7021,State-funded special school,198,34,164,17.20%,82.80%,198,100.00%,0,0.00%,49,148,1,24.70%,74.70%,0.50%,72,69,172,40.10% +110585,825,7023,State-funded special school,193,66,127,34.20%,65.80%,193,100.00%,0,0.00%,5,187,1,2.60%,96.90%,0.50%,53,45,155,29.00% +110587,826,7026,State-funded special school,226,64,162,28.30%,71.70%,226,100.00%,0,0.00%,47,179,0,20.80%,79.20%,0.00%,69,83,175,47.40% +110588,825,7028,State-funded special school,238,58,180,24.40%,75.60%,238,100.00%,0,0.00%,56,182,0,23.50%,76.50%,0.00%,78,80,236,33.90% +110592,826,7034,State-funded special school,171,71,100,41.50%,58.50%,171,100.00%,0,0.00%,52,119,0,30.40%,69.60%,0.00%,65,60,144,41.70% +110593,873,1001,State-funded nursery,71,40,31,56.30%,43.70%,0,0.00%,5,7.00%,27,44,0,38.00%,62.00%,0.00%,0,0,0,0.00% +110594,873,1002,State-funded nursery,117,56,61,47.90%,52.10%,2,1.70%,0,0.00%,43,74,0,36.80%,63.20%,0.00%,5,0,0,0.00% +110595,873,1003,State-funded nursery,115,63,52,54.80%,45.20%,3,2.60%,6,5.20%,11,104,0,9.60%,90.40%,0.00%,8,0,0,0.00% +110596,873,1005,State-funded nursery,77,37,40,48.10%,51.90%,0,0.00%,13,16.90%,21,56,0,27.30%,72.70%,0.00%,1,0,0,0.00% +110597,873,1006,State-funded nursery,103,55,48,53.40%,46.60%,1,1.00%,13,12.60%,39,64,0,37.90%,62.10%,0.00%,4,0,0,0.00% +110598,873,1007,State-funded nursery,85,36,49,42.40%,57.60%,1,1.20%,14,16.50%,32,53,0,37.60%,62.40%,0.00%,0,0,0,0.00% +110599,874,1008,State-funded nursery,136,58,78,42.60%,57.40%,3,2.20%,18,13.20%,19,117,0,14.00%,86.00%,0.00%,0,0,0,0.00% +110602,873,2002,State-funded primary,386,202,184,52.30%,47.70%,11,2.80%,28,7.30%,20,358,8,5.20%,92.70%,2.10%,74,74,386,19.20% +110603,873,2004,State-funded primary,202,111,91,55.00%,45.00%,4,2.00%,8,4.00%,45,157,0,22.30%,77.70%,0.00%,34,36,202,17.80% +110604,873,2006,State-funded primary,479,232,247,48.40%,51.60%,18,3.80%,57,11.90%,45,427,7,9.40%,89.10%,1.50%,92,96,479,20.00% +110606,873,2010,State-funded primary,112,55,57,49.10%,50.90%,6,5.40%,20,17.90%,8,102,2,7.10%,91.10%,1.80%,15,15,112,13.40% +110607,873,2011,State-funded primary,90,39,51,43.30%,56.70%,0,0.00%,12,13.30%,3,87,0,3.30%,96.70%,0.00%,10,10,90,11.10% +110608,873,2012,State-funded primary,91,42,49,46.20%,53.80%,4,4.40%,16,17.60%,2,89,0,2.20%,97.80%,0.00%,24,25,91,27.50% +110611,873,2016,State-funded primary,136,56,80,41.20%,58.80%,3,2.20%,21,15.40%,27,109,0,19.90%,80.10%,0.00%,23,23,136,16.90% +110612,873,2018,State-funded primary,118,62,56,52.50%,47.50%,5,4.20%,20,16.90%,17,98,3,14.40%,83.10%,2.50%,27,28,118,23.70% +110614,873,2028,State-funded primary,402,187,215,46.50%,53.50%,19,4.70%,44,10.90%,28,354,20,7.00%,88.10%,5.00%,91,92,402,22.90% +110615,873,2029,State-funded primary,209,105,104,50.20%,49.80%,9,4.30%,34,16.30%,7,194,8,3.30%,92.80%,3.80%,35,37,209,17.70% +110616,873,2031,State-funded primary,213,96,117,45.10%,54.90%,6,2.80%,9,4.20%,11,191,11,5.20%,89.70%,5.20%,31,31,213,14.60% +110617,873,2033,State-funded primary,368,189,179,51.40%,48.60%,13,3.50%,34,9.20%,32,320,16,8.70%,87.00%,4.30%,38,38,368,10.30% +110620,873,2046,State-funded primary,303,159,144,52.50%,47.50%,11,3.60%,34,11.20%,12,288,3,4.00%,95.00%,1.00%,20,22,303,7.30% +110621,873,2048,State-funded primary,490,242,248,49.40%,50.60%,8,1.60%,35,7.10%,53,426,11,10.80%,86.90%,2.20%,94,95,490,19.40% +110622,873,2054,State-funded primary,342,166,176,48.50%,51.50%,7,2.00%,38,11.10%,28,285,29,8.20%,83.30%,8.50%,75,77,342,22.50% +110626,873,2059,State-funded primary,212,101,111,47.60%,52.40%,2,0.90%,21,9.90%,41,171,0,19.30%,80.70%,0.00%,22,22,212,10.40% +110627,873,2060,State-funded primary,99,60,39,60.60%,39.40%,7,7.10%,13,13.10%,2,97,0,2.00%,98.00%,0.00%,34,35,99,35.40% +110630,873,2064,State-funded primary,102,56,46,54.90%,45.10%,11,10.80%,17,16.70%,5,97,0,4.90%,95.10%,0.00%,22,22,85,25.90% +110631,873,2065,State-funded primary,201,91,110,45.30%,54.70%,4,2.00%,28,13.90%,7,194,0,3.50%,96.50%,0.00%,53,53,201,26.40% +110632,873,2066,State-funded primary,208,109,99,52.40%,47.60%,5,2.40%,19,9.10%,0,208,0,0.00%,100.00%,0.00%,27,30,208,14.40% +110633,873,2068,State-funded primary,89,51,38,57.30%,42.70%,1,1.10%,22,24.70%,4,85,0,4.50%,95.50%,0.00%,32,33,89,37.10% +110635,873,2070,State-funded primary,286,147,139,51.40%,48.60%,5,1.70%,21,7.30%,19,267,0,6.60%,93.40%,0.00%,60,60,286,21.00% +110637,873,2074,State-funded primary,409,225,184,55.00%,45.00%,10,2.40%,45,11.00%,45,363,1,11.00%,88.80%,0.20%,100,102,409,24.90% +110638,873,2075,State-funded primary,241,121,120,50.20%,49.80%,13,5.40%,26,10.80%,6,235,0,2.50%,97.50%,0.00%,75,77,241,32.00% +110643,873,2082,State-funded primary,190,90,100,47.40%,52.60%,0,0.00%,24,12.60%,7,183,0,3.70%,96.30%,0.00%,76,77,190,40.50% +110644,873,2083,State-funded primary,100,53,47,53.00%,47.00%,9,9.00%,14,14.00%,7,93,0,7.00%,93.00%,0.00%,25,26,100,26.00% +110645,873,2084,State-funded primary,178,84,94,47.20%,52.80%,4,2.20%,23,12.90%,5,172,1,2.80%,96.60%,0.60%,45,45,178,25.30% +110649,873,2091,State-funded primary,193,91,102,47.20%,52.80%,8,4.10%,37,19.20%,57,136,0,29.50%,70.50%,0.00%,55,55,167,32.90% +110657,873,2107,State-funded primary,398,207,191,52.00%,48.00%,8,2.00%,31,7.80%,191,203,4,48.00%,51.00%,1.00%,68,70,398,17.60% +110658,873,2109,State-funded primary,230,118,112,51.30%,48.70%,2,0.90%,8,3.50%,62,166,2,27.00%,72.20%,0.90%,22,22,230,9.60% +110663,873,2115,State-funded primary,377,198,179,52.50%,47.50%,19,5.00%,72,19.10%,103,273,1,27.30%,72.40%,0.30%,158,160,377,42.40% +110664,873,2118,State-funded primary,371,183,188,49.30%,50.70%,6,1.60%,49,13.20%,88,280,3,23.70%,75.50%,0.80%,144,146,371,39.40% +110665,873,2119,State-funded primary,237,110,127,46.40%,53.60%,26,11.00%,53,22.40%,82,152,3,34.60%,64.10%,1.30%,49,49,215,22.80% +110666,873,2121,State-funded primary,404,203,201,50.20%,49.80%,24,5.90%,35,8.70%,153,247,4,37.90%,61.10%,1.00%,62,64,404,15.80% +110668,873,2123,State-funded primary,251,123,128,49.00%,51.00%,12,4.80%,41,16.30%,83,168,0,33.10%,66.90%,0.00%,88,90,223,40.40% +110673,873,2205,State-funded primary,96,46,50,47.90%,52.10%,6,6.30%,14,14.60%,9,87,0,9.40%,90.60%,0.00%,20,21,96,21.90% +110676,873,2208,State-funded primary,228,103,125,45.20%,54.80%,7,3.10%,24,10.50%,12,216,0,5.30%,94.70%,0.00%,37,37,212,17.50% +110679,873,2211,State-funded primary,283,132,151,46.60%,53.40%,6,2.10%,35,12.40%,12,271,0,4.20%,95.80%,0.00%,46,49,283,17.30% +110680,873,2212,State-funded primary,177,89,88,50.30%,49.70%,12,6.80%,25,14.10%,6,171,0,3.40%,96.60%,0.00%,10,11,177,6.20% +110683,874,2215,State-funded primary,440,228,212,51.80%,48.20%,10,2.30%,46,10.50%,170,270,0,38.60%,61.40%,0.00%,159,161,417,38.60% +110685,873,2217,State-funded primary,122,65,57,53.30%,46.70%,8,6.60%,17,13.90%,5,117,0,4.10%,95.90%,0.00%,22,25,122,20.50% +110687,873,2219,State-funded primary,238,116,122,48.70%,51.30%,7,2.90%,19,8.00%,10,228,0,4.20%,95.80%,0.00%,48,49,238,20.60% +110691,874,2223,State-funded primary,578,278,300,48.10%,51.90%,17,2.90%,111,19.20%,156,422,0,27.00%,73.00%,0.00%,188,190,578,32.90% +110698,873,2232,State-funded primary,271,130,141,48.00%,52.00%,13,4.80%,28,10.30%,87,184,0,32.10%,67.90%,0.00%,57,58,271,21.40% +110702,873,2239,State-funded primary,329,164,165,49.80%,50.20%,15,4.60%,32,9.70%,22,306,1,6.70%,93.00%,0.30%,84,88,329,26.70% +110703,873,2240,State-funded primary,175,88,87,50.30%,49.70%,10,5.70%,47,26.90%,14,161,0,8.00%,92.00%,0.00%,27,29,175,16.60% +110705,874,2244,State-funded primary,216,113,103,52.30%,47.70%,6,2.80%,26,12.00%,23,193,0,10.60%,89.40%,0.00%,57,59,216,27.30% +110707,873,2246,State-funded primary,205,96,109,46.80%,53.20%,7,3.40%,17,8.30%,80,125,0,39.00%,61.00%,0.00%,29,29,165,17.60% +110710,874,2251,State-funded primary,357,169,188,47.30%,52.70%,3,0.80%,37,10.40%,66,291,0,18.50%,81.50%,0.00%,62,62,357,17.40% +110713,873,2254,State-funded primary,131,60,71,45.80%,54.20%,6,4.60%,12,9.20%,5,126,0,3.80%,96.20%,0.00%,26,26,131,19.80% +110714,873,2255,State-funded primary,184,90,94,48.90%,51.10%,11,6.00%,12,6.50%,13,171,0,7.10%,92.90%,0.00%,33,33,184,17.90% +110717,873,2260,State-funded primary,61,24,37,39.30%,60.70%,4,6.60%,10,16.40%,5,56,0,8.20%,91.80%,0.00%,10,10,61,16.40% +110722,874,2269,State-funded primary,196,93,103,47.40%,52.60%,7,3.60%,8,4.10%,95,98,3,48.50%,50.00%,1.50%,39,39,171,22.80% +110723,874,2270,State-funded primary,241,116,125,48.10%,51.90%,4,1.70%,32,13.30%,194,47,0,80.50%,19.50%,0.00%,60,60,241,24.90% +110733,873,2293,State-funded primary,324,165,159,50.90%,49.10%,10,3.10%,33,10.20%,18,306,0,5.60%,94.40%,0.00%,56,59,324,18.20% +110734,874,2295,State-funded primary,208,84,124,40.40%,59.60%,9,4.30%,32,15.40%,33,175,0,15.90%,84.10%,0.00%,56,56,208,26.90% +110743,874,2307,State-funded primary,364,165,199,45.30%,54.70%,5,1.40%,60,16.50%,140,224,0,38.50%,61.50%,0.00%,152,153,364,42.00% +110746,873,2312,State-funded primary,213,90,123,42.30%,57.70%,13,6.10%,11,5.20%,104,108,1,48.80%,50.70%,0.50%,28,28,184,15.20% +110747,874,2313,State-funded primary,203,105,98,51.70%,48.30%,2,1.00%,34,16.70%,87,116,0,42.90%,57.10%,0.00%,111,112,203,55.20% +110748,873,2315,State-funded primary,494,255,239,51.60%,48.40%,15,3.00%,66,13.40%,77,414,3,15.60%,83.80%,0.60%,75,76,474,16.00% +110750,873,2317,State-funded primary,666,328,338,49.20%,50.80%,17,2.60%,103,15.50%,170,496,0,25.50%,74.50%,0.00%,106,99,627,15.80% +110754,873,2321,State-funded primary,448,219,229,48.90%,51.10%,24,5.40%,67,15.00%,36,394,18,8.00%,87.90%,4.00%,92,96,448,21.40% +110756,874,2325,State-funded primary,613,300,313,48.90%,51.10%,10,1.60%,105,17.10%,478,135,0,78.00%,22.00%,0.00%,232,232,613,37.80% +110758,873,2327,State-funded primary,394,215,179,54.60%,45.40%,4,1.00%,32,8.10%,10,384,0,2.50%,97.50%,0.00%,76,76,394,19.30% +110759,873,2328,State-funded primary,281,134,147,47.70%,52.30%,7,2.50%,40,14.20%,40,236,5,14.20%,84.00%,1.80%,40,44,281,15.70% +110760,873,2329,State-funded primary,144,64,80,44.40%,55.60%,21,14.60%,18,12.50%,35,109,0,24.30%,75.70%,0.00%,52,52,144,36.10% +110762,873,2331,State-funded primary,84,33,51,39.30%,60.70%,3,3.60%,13,15.50%,3,81,0,3.60%,96.40%,0.00%,35,35,77,45.50% +110763,873,2333,State-funded primary,428,208,220,48.60%,51.40%,11,2.60%,36,8.40%,225,202,1,52.60%,47.20%,0.20%,72,72,404,17.80% +110765,873,2335,State-funded primary,207,102,105,49.30%,50.70%,3,1.40%,30,14.50%,97,110,0,46.90%,53.10%,0.00%,16,16,207,7.70% +110766,873,2336,State-funded primary,402,197,205,49.00%,51.00%,7,1.70%,85,21.10%,117,283,2,29.10%,70.40%,0.50%,115,115,369,31.20% +110771,873,2442,State-funded primary,107,52,55,48.60%,51.40%,2,1.90%,9,8.40%,3,104,0,2.80%,97.20%,0.00%,11,11,107,10.30% +110772,873,2443,State-funded primary,401,191,210,47.60%,52.40%,17,4.20%,38,9.50%,112,289,0,27.90%,72.10%,0.00%,50,55,401,13.70% +110773,873,2444,State-funded primary,374,187,187,50.00%,50.00%,15,4.00%,26,7.00%,59,314,1,15.80%,84.00%,0.30%,37,37,374,9.90% +110775,873,2446,State-funded primary,385,189,196,49.10%,50.90%,13,3.40%,61,15.80%,197,188,0,51.20%,48.80%,0.00%,169,169,385,43.90% +110778,874,2449,State-funded primary,434,214,220,49.30%,50.70%,8,1.80%,97,22.40%,181,253,0,41.70%,58.30%,0.00%,212,214,434,49.30% +110781,873,3001,State-funded primary,132,62,70,47.00%,53.00%,6,4.50%,8,6.10%,23,108,1,17.40%,81.80%,0.80%,19,19,132,14.40% +110783,873,3004,State-funded primary,84,44,40,52.40%,47.60%,3,3.60%,15,17.90%,6,78,0,7.10%,92.90%,0.00%,12,12,84,14.30% +110784,873,3008,State-funded primary,136,71,65,52.20%,47.80%,3,2.20%,10,7.40%,2,132,2,1.50%,97.10%,1.50%,15,17,126,13.50% +110785,873,3009,State-funded primary,141,63,78,44.70%,55.30%,2,1.40%,16,11.30%,8,130,3,5.70%,92.20%,2.10%,20,20,141,14.20% +110786,873,3011,State-funded primary,107,38,69,35.50%,64.50%,8,7.50%,13,12.10%,18,89,0,16.80%,83.20%,0.00%,17,17,107,15.90% +110787,873,3012,State-funded primary,69,33,36,47.80%,52.20%,1,1.40%,15,21.70%,14,55,0,20.30%,79.70%,0.00%,11,11,69,15.90% +110788,873,3014,State-funded primary,418,206,212,49.30%,50.70%,11,2.60%,57,13.60%,21,396,1,5.00%,94.70%,0.20%,58,58,418,13.90% +110789,873,3017,State-funded primary,96,50,46,52.10%,47.90%,1,1.00%,15,15.60%,7,89,0,7.30%,92.70%,0.00%,11,12,87,13.80% +110791,873,3022,State-funded primary,207,108,99,52.20%,47.80%,5,2.40%,40,19.30%,10,197,0,4.80%,95.20%,0.00%,25,25,207,12.10% +110793,873,3029,State-funded primary,172,91,81,52.90%,47.10%,2,1.20%,51,29.70%,5,166,1,2.90%,96.50%,0.60%,34,34,172,19.80% +110795,873,3032,State-funded primary,203,98,105,48.30%,51.70%,6,3.00%,18,8.90%,18,166,19,8.90%,81.80%,9.40%,22,25,203,12.30% +110796,873,3035,State-funded primary,143,64,79,44.80%,55.20%,3,2.10%,15,10.50%,10,133,0,7.00%,93.00%,0.00%,19,19,143,13.30% +110798,873,3041,State-funded primary,182,83,99,45.60%,54.40%,4,2.20%,17,9.30%,26,155,1,14.30%,85.20%,0.50%,26,26,182,14.30% +110801,873,3050,State-funded primary,193,98,95,50.80%,49.20%,8,4.10%,26,13.50%,96,96,1,49.70%,49.70%,0.50%,38,36,166,21.70% +110802,873,3052,State-funded primary,255,126,129,49.40%,50.60%,16,6.30%,31,12.20%,8,245,2,3.10%,96.10%,0.80%,49,51,255,20.00% +110803,873,3053,State-funded primary,92,53,39,57.60%,42.40%,6,6.50%,15,16.30%,10,82,0,10.90%,89.10%,0.00%,11,11,92,12.00% +110804,873,3054,State-funded primary,116,60,56,51.70%,48.30%,8,6.90%,19,16.40%,3,113,0,2.60%,97.40%,0.00%,20,20,116,17.20% +110807,873,3058,State-funded primary,308,156,152,50.60%,49.40%,17,5.50%,43,14.00%,23,285,0,7.50%,92.50%,0.00%,67,69,308,22.40% +110809,873,3061,State-funded primary,204,98,106,48.00%,52.00%,10,4.90%,41,20.10%,6,198,0,2.90%,97.10%,0.00%,34,35,204,17.20% +110812,873,3065,State-funded primary,94,50,44,53.20%,46.80%,2,2.10%,21,22.30%,2,92,0,2.10%,97.90%,0.00%,13,13,94,13.80% +110813,873,3066,State-funded primary,44,21,23,47.70%,52.30%,0,0.00%,7,15.90%,0,44,0,0.00%,100.00%,0.00%,10,10,44,22.70% +110814,873,3067,State-funded primary,149,64,85,43.00%,57.00%,1,0.70%,21,14.10%,5,144,0,3.40%,96.60%,0.00%,13,15,149,10.10% +110815,873,3068,State-funded primary,109,55,54,50.50%,49.50%,1,0.90%,8,7.30%,2,107,0,1.80%,98.20%,0.00%,15,15,109,13.80% +110817,873,3071,State-funded primary,205,95,110,46.30%,53.70%,3,1.50%,22,10.70%,9,192,4,4.40%,93.70%,2.00%,18,19,205,9.30% +110820,873,3074,State-funded primary,227,106,121,46.70%,53.30%,7,3.10%,13,5.70%,22,205,0,9.70%,90.30%,0.00%,47,47,199,23.60% +110823,874,3077,State-funded primary,170,70,100,41.20%,58.80%,3,1.80%,17,10.00%,6,164,0,3.50%,96.50%,0.00%,25,25,170,14.70% +110824,874,3078,State-funded primary,195,98,97,50.30%,49.70%,6,3.10%,17,8.70%,22,173,0,11.30%,88.70%,0.00%,23,23,195,11.80% +110825,874,3079,State-funded primary,450,226,224,50.20%,49.80%,4,0.90%,41,9.10%,62,388,0,13.80%,86.20%,0.00%,110,112,450,24.90% +110826,874,3080,State-funded primary,202,97,105,48.00%,52.00%,11,5.40%,30,14.90%,7,195,0,3.50%,96.50%,0.00%,42,42,202,20.80% +110827,873,3081,State-funded primary,106,50,56,47.20%,52.80%,3,2.80%,13,12.30%,1,105,0,0.90%,99.10%,0.00%,13,13,106,12.30% +110829,873,3301,State-funded primary,103,56,47,54.40%,45.60%,6,5.80%,5,4.90%,23,80,0,22.30%,77.70%,0.00%,5,6,103,5.80% +110830,873,3308,State-funded primary,124,65,59,52.40%,47.60%,3,2.40%,7,5.60%,21,101,2,16.90%,81.50%,1.60%,11,11,124,8.90% +110831,873,3310,State-funded primary,211,115,96,54.50%,45.50%,6,2.80%,15,7.10%,15,196,0,7.10%,92.90%,0.00%,21,21,211,10.00% +110832,873,3317,State-funded primary,156,79,77,50.60%,49.40%,3,1.90%,6,3.80%,8,144,4,5.10%,92.30%,2.60%,33,33,156,21.20% +110834,873,3325,State-funded primary,181,99,82,54.70%,45.30%,7,3.90%,32,17.70%,27,153,1,14.90%,84.50%,0.60%,77,80,181,44.20% +110836,873,3331,State-funded primary,125,51,74,40.80%,59.20%,1,0.80%,12,9.60%,3,122,0,2.40%,97.60%,0.00%,26,26,125,20.80% +110837,873,3350,State-funded primary,117,57,60,48.70%,51.30%,3,2.60%,18,15.40%,37,77,3,31.60%,65.80%,2.60%,16,16,117,13.70% +110839,873,3356,State-funded primary,168,76,92,45.20%,54.80%,1,0.60%,18,10.70%,66,101,1,39.30%,60.10%,0.60%,40,40,168,23.80% +110840,873,3358,State-funded primary,270,127,143,47.00%,53.00%,4,1.50%,37,13.70%,64,196,10,23.70%,72.60%,3.70%,80,81,270,30.00% +110841,873,3360,State-funded primary,210,94,116,44.80%,55.20%,4,1.90%,16,7.60%,124,86,0,59.00%,41.00%,0.00%,13,14,210,6.70% +110847,873,3368,State-funded primary,138,65,73,47.10%,52.90%,2,1.40%,11,8.00%,3,135,0,2.20%,97.80%,0.00%,16,16,138,11.60% +110850,873,3373,State-funded primary,95,49,46,51.60%,48.40%,0,0.00%,4,4.20%,1,94,0,1.10%,98.90%,0.00%,11,11,95,11.60% +110851,874,3374,State-funded primary,198,100,98,50.50%,49.50%,3,1.50%,18,9.10%,21,177,0,10.60%,89.40%,0.00%,28,28,198,14.10% +110852,874,3376,State-funded primary,420,200,220,47.60%,52.40%,12,2.90%,43,10.20%,369,51,0,87.90%,12.10%,0.00%,96,99,420,23.60% +110853,874,3377,State-funded primary,228,110,118,48.20%,51.80%,8,3.50%,38,16.70%,81,147,0,35.50%,64.50%,0.00%,77,79,228,34.60% +110856,874,3380,State-funded primary,468,227,241,48.50%,51.50%,6,1.30%,84,17.90%,181,287,0,38.70%,61.30%,0.00%,179,184,400,46.00% +110882,874,4081,State-funded secondary,1082,533,549,49.30%,50.70%,39,3.60%,155,14.30%,171,905,6,15.80%,83.60%,0.60%,320,347,974,35.60% +110888,873,5200,State-funded primary,183,98,85,53.60%,46.40%,5,2.70%,20,10.90%,2,179,2,1.10%,97.80%,1.10%,22,24,183,13.10% +110907,874,5413,State-funded secondary,797,352,445,44.20%,55.80%,29,3.60%,62,7.80%,395,400,2,49.60%,50.20%,0.30%,202,198,666,29.70% +110910,874,6000,Independent school,551,288,263,52.30%,47.70%,2,0.40%,64,11.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110911,873,6000,Independent school,405,142,263,35.10%,64.90%,0,0.00%,82,20.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110912,873,6001,Independent school,677,677,0,100.00%,0.00%,0,0.00%,222,32.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110913,873,6002,Independent school,575,261,314,45.40%,54.60%,3,0.50%,76,13.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110914,873,6003,Independent school,567,236,331,41.60%,58.40%,0,0.00%,120,21.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110915,873,6004,Independent school,458,200,258,43.70%,56.30%,8,1.70%,70,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110916,873,6005,Independent school,1100,523,577,47.50%,52.50%,1,0.10%,54,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110920,873,6008,Independent school,37,9,28,24.30%,75.70%,37,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110921,873,6009,Independent school,389,161,228,41.40%,58.60%,3,0.80%,93,23.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110923,873,6010,Independent school,1705,803,902,47.10%,52.90%,1,0.10%,322,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110924,873,6011,Independent school,1665,860,805,51.70%,48.30%,3,0.20%,132,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110925,873,6012,Independent school,1065,519,546,48.70%,51.30%,1,0.10%,144,13.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110926,873,6013,Independent school,568,265,303,46.70%,53.30%,3,0.50%,95,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110928,873,6015,Independent school,111,58,53,52.30%,47.70%,2,1.80%,8,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110930,873,6017,Independent school,220,99,121,45.00%,55.00%,1,0.50%,71,32.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110932,873,6019,Independent school,128,62,66,48.40%,51.60%,0,0.00%,8,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110935,873,6022,Independent school,493,339,154,68.80%,31.20%,0,0.00%,14,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +110943,874,7013,State-funded special school,171,66,105,38.60%,61.40%,171,100.00%,0,0.00%,38,133,0,22.20%,77.80%,0.00%,78,78,151,51.70% +110948,874,7020,State-funded special school,207,48,159,23.20%,76.80%,207,100.00%,0,0.00%,57,147,3,27.50%,71.00%,1.40%,101,96,193,49.70% +110951,873,7023,State-funded special school,119,50,69,42.00%,58.00%,119,100.00%,0,0.00%,5,114,0,4.20%,95.80%,0.00%,54,47,104,45.20% +110953,895,1001,State-funded nursery,68,39,29,57.40%,42.60%,0,0.00%,9,13.20%,53,15,0,77.90%,22.10%,0.00%,0,0,0,0.00% +110956,877,1004,State-funded nursery,104,44,60,42.30%,57.70%,0,0.00%,28,26.90%,22,82,0,21.20%,78.80%,0.00%,6,0,0,0.00% +110957,876,1005,State-funded nursery,48,25,23,52.10%,47.90%,0,0.00%,6,12.50%,3,45,0,6.30%,93.80%,0.00%,0,0,0,0.00% +110958,876,1006,State-funded nursery,90,46,44,51.10%,48.90%,1,1.10%,13,14.40%,1,89,0,1.10%,98.90%,0.00%,0,0,0,0.00% +110959,876,1007,State-funded nursery,63,30,33,47.60%,52.40%,2,3.20%,7,11.10%,3,60,0,4.80%,95.20%,0.00%,0,0,0,0.00% +110971,877,2013,State-funded primary,358,171,187,47.80%,52.20%,21,5.90%,34,9.50%,82,276,0,22.90%,77.10%,0.00%,162,163,325,50.20% +110972,877,2015,State-funded primary,271,137,134,50.60%,49.40%,30,11.10%,61,22.50%,69,202,0,25.50%,74.50%,0.00%,143,143,226,63.30% +110976,896,2055,State-funded primary,418,192,226,45.90%,54.10%,3,0.70%,61,14.60%,59,359,0,14.10%,85.90%,0.00%,48,50,418,12.00% +110983,896,2065,State-funded primary,174,78,96,44.80%,55.20%,10,5.70%,42,24.10%,15,159,0,8.60%,91.40%,0.00%,70,72,174,41.40% +110987,896,2100,State-funded primary,186,97,89,52.20%,47.80%,4,2.20%,28,15.10%,8,178,0,4.30%,95.70%,0.00%,57,60,165,36.40% +110989,877,2103,State-funded primary,193,98,95,50.80%,49.20%,4,2.10%,14,7.30%,17,176,0,8.80%,91.20%,0.00%,36,36,193,18.70% +110990,876,2104,State-funded primary,206,87,119,42.20%,57.80%,6,2.90%,27,13.10%,3,203,0,1.50%,98.50%,0.00%,14,14,206,6.80% +110992,876,2107,State-funded primary,200,106,94,53.00%,47.00%,0,0.00%,30,15.00%,4,196,0,2.00%,98.00%,0.00%,66,66,200,33.00% +110993,896,2108,State-funded primary,99,48,51,48.50%,51.50%,6,6.10%,19,19.20%,0,99,0,0.00%,100.00%,0.00%,13,17,99,17.20% +110995,896,2111,State-funded primary,197,100,97,50.80%,49.20%,7,3.60%,22,11.20%,2,195,0,1.00%,99.00%,0.00%,8,8,170,4.70% +110996,877,2112,State-funded primary,402,196,206,48.80%,51.20%,2,0.50%,16,4.00%,25,377,0,6.20%,93.80%,0.00%,68,68,402,16.90% +111000,877,2116,State-funded primary,172,82,90,47.70%,52.30%,1,0.60%,22,12.80%,8,164,0,4.70%,95.30%,0.00%,31,32,172,18.60% +111001,877,2117,State-funded primary,306,155,151,50.70%,49.30%,4,1.30%,22,7.20%,21,285,0,6.90%,93.10%,0.00%,52,49,226,21.70% +111002,876,2118,State-funded primary,142,67,75,47.20%,52.80%,11,7.70%,22,15.50%,4,138,0,2.80%,97.20%,0.00%,44,46,142,32.40% +111003,896,2119,State-funded primary,102,52,50,51.00%,49.00%,4,3.90%,9,8.80%,0,102,0,0.00%,100.00%,0.00%,12,13,102,12.70% +111004,896,2123,State-funded primary,206,106,100,51.50%,48.50%,1,0.50%,21,10.20%,2,204,0,1.00%,99.00%,0.00%,25,25,206,12.10% +111008,895,2129,State-funded primary,203,109,94,53.70%,46.30%,11,5.40%,19,9.40%,9,194,0,4.40%,95.60%,0.00%,13,13,203,6.40% +111009,895,2131,State-funded primary,117,57,60,48.70%,51.30%,5,4.30%,31,26.50%,10,107,0,8.50%,91.50%,0.00%,22,23,117,19.70% +111023,895,2152,State-funded primary,280,135,145,48.20%,51.80%,4,1.40%,25,8.90%,3,277,0,1.10%,98.90%,0.00%,3,3,280,1.10% +111031,895,2161,State-funded primary,190,79,111,41.60%,58.40%,13,6.80%,11,5.80%,10,180,0,5.30%,94.70%,0.00%,11,11,190,5.80% +111033,895,2163,State-funded primary,200,107,93,53.50%,46.50%,8,4.00%,18,9.00%,6,194,0,3.00%,97.00%,0.00%,59,60,200,30.00% +111039,895,2169,State-funded primary,236,115,121,48.70%,51.30%,2,0.80%,25,10.60%,5,231,0,2.10%,97.90%,0.00%,41,39,202,19.30% +111044,895,2175,State-funded primary,246,123,123,50.00%,50.00%,13,5.30%,28,11.40%,9,235,2,3.70%,95.50%,0.80%,50,52,214,24.30% +111052,896,2183,State-funded primary,205,98,107,47.80%,52.20%,2,1.00%,49,23.90%,4,201,0,2.00%,98.00%,0.00%,41,45,205,22.00% +111053,896,2186,State-funded primary,338,157,181,46.40%,53.60%,7,2.10%,72,21.30%,36,302,0,10.70%,89.30%,0.00%,101,103,338,30.50% +111054,896,2187,State-funded primary,240,134,106,55.80%,44.20%,9,3.80%,40,16.70%,2,238,0,0.80%,99.20%,0.00%,40,41,207,19.80% +111055,896,2189,State-funded primary,96,50,46,52.10%,47.90%,3,3.10%,10,10.40%,3,93,0,3.10%,96.90%,0.00%,12,12,88,13.60% +111056,896,2190,State-funded primary,126,68,58,54.00%,46.00%,8,6.30%,7,5.60%,3,123,0,2.40%,97.60%,0.00%,13,14,126,11.10% +111057,896,2191,State-funded primary,560,273,287,48.80%,51.30%,14,2.50%,74,13.20%,25,511,24,4.50%,91.30%,4.30%,156,154,511,30.10% +111061,895,2201,State-funded primary,235,95,140,40.40%,59.60%,10,4.30%,55,23.40%,84,150,1,35.70%,63.80%,0.40%,84,82,207,39.60% +111074,895,2220,State-funded primary,137,57,80,41.60%,58.40%,5,3.60%,12,8.80%,0,137,0,0.00%,100.00%,0.00%,10,10,137,7.30% +111078,895,2225,State-funded primary,130,62,68,47.70%,52.30%,5,3.80%,14,10.80%,1,129,0,0.80%,99.20%,0.00%,30,31,130,23.80% +111079,895,2227,State-funded primary,245,129,116,52.70%,47.30%,6,2.40%,18,7.30%,15,230,0,6.10%,93.90%,0.00%,51,53,214,24.80% +111080,895,2228,State-funded primary,382,198,184,51.80%,48.20%,15,3.90%,26,6.80%,8,374,0,2.10%,97.90%,0.00%,27,30,382,7.90% +111082,896,2233,State-funded primary,203,103,100,50.70%,49.30%,5,2.50%,22,10.80%,7,196,0,3.40%,96.60%,0.00%,20,20,203,9.90% +111084,896,2235,State-funded primary,249,129,120,51.80%,48.20%,12,4.80%,89,35.70%,49,200,0,19.70%,80.30%,0.00%,75,70,213,32.90% +111085,896,2237,State-funded primary,364,183,181,50.30%,49.70%,3,0.80%,54,14.80%,91,273,0,25.00%,75.00%,0.00%,153,156,326,47.90% +111087,896,2240,State-funded primary,409,215,194,52.60%,47.40%,6,1.50%,36,8.80%,12,397,0,2.90%,97.10%,0.00%,56,59,409,14.40% +111093,896,2247,State-funded primary,412,190,222,46.10%,53.90%,12,2.90%,63,15.30%,31,381,0,7.50%,92.50%,0.00%,39,41,386,10.60% +111096,895,2256,State-funded primary,158,71,87,44.90%,55.10%,4,2.50%,13,8.20%,1,157,0,0.60%,99.40%,0.00%,7,13,158,8.20% +111100,896,2260,State-funded primary,209,99,110,47.40%,52.60%,15,7.20%,35,16.70%,56,150,3,26.80%,71.80%,1.40%,51,51,190,26.80% +111103,896,2268,State-funded primary,275,138,137,50.20%,49.80%,14,5.10%,19,6.90%,3,272,0,1.10%,98.90%,0.00%,58,58,275,21.10% +111106,896,2272,State-funded primary,195,97,98,49.70%,50.30%,5,2.60%,9,4.60%,4,191,0,2.10%,97.90%,0.00%,7,7,195,3.60% +111107,896,2273,State-funded primary,298,146,152,49.00%,51.00%,10,3.40%,7,2.30%,5,293,0,1.70%,98.30%,0.00%,43,40,275,14.50% +111108,896,2274,State-funded primary,245,118,127,48.20%,51.80%,4,1.60%,20,8.20%,7,238,0,2.90%,97.10%,0.00%,19,22,217,10.10% +111109,896,2275,State-funded primary,137,65,72,47.40%,52.60%,4,2.90%,1,0.70%,2,135,0,1.50%,98.50%,0.00%,8,8,137,5.80% +111112,896,2279,State-funded primary,182,94,88,51.60%,48.40%,3,1.60%,29,15.90%,4,178,0,2.20%,97.80%,0.00%,40,42,182,23.10% +111114,876,2281,State-funded primary,207,103,104,49.80%,50.20%,8,3.90%,18,8.70%,1,206,0,0.50%,99.50%,0.00%,41,43,207,20.80% +111116,876,2283,State-funded primary,177,96,81,54.20%,45.80%,4,2.30%,17,9.60%,11,166,0,6.20%,93.80%,0.00%,88,89,160,55.60% +111119,896,2288,State-funded primary,418,212,206,50.70%,49.30%,8,1.90%,33,7.90%,33,385,0,7.90%,92.10%,0.00%,29,32,418,7.70% +111124,876,2295,State-funded primary,144,68,76,47.20%,52.80%,27,18.80%,53,36.80%,2,142,0,1.40%,98.60%,0.00%,84,86,144,59.70% +111125,876,2297,State-funded primary,111,46,65,41.40%,58.60%,14,12.60%,16,14.40%,11,100,0,9.90%,90.10%,0.00%,83,83,111,74.80% +111126,896,2298,State-funded primary,170,79,91,46.50%,53.50%,2,1.20%,8,4.70%,1,169,0,0.60%,99.40%,0.00%,13,13,170,7.60% +111129,896,2301,State-funded primary,203,95,108,46.80%,53.20%,2,1.00%,34,16.70%,6,197,0,3.00%,97.00%,0.00%,34,36,203,17.70% +111133,896,2311,State-funded primary,432,210,222,48.60%,51.40%,17,3.90%,94,21.80%,16,416,0,3.70%,96.30%,0.00%,181,186,361,51.50% +111138,877,2317,State-funded primary,185,96,89,51.90%,48.10%,6,3.20%,19,10.30%,20,165,0,10.80%,89.20%,0.00%,15,17,185,9.20% +111141,876,2325,State-funded primary,215,103,112,47.90%,52.10%,6,2.80%,25,11.60%,4,211,0,1.90%,98.10%,0.00%,43,43,215,20.00% +111143,895,2328,State-funded primary,205,99,106,48.30%,51.70%,4,2.00%,36,17.60%,42,163,0,20.50%,79.50%,0.00%,39,40,205,19.50% +111144,896,2329,State-funded primary,450,210,240,46.70%,53.30%,4,0.90%,61,13.60%,16,434,0,3.60%,96.40%,0.00%,31,38,404,9.40% +111147,895,2332,State-funded primary,206,88,118,42.70%,57.30%,5,2.40%,28,13.60%,3,203,0,1.50%,98.50%,0.00%,13,13,206,6.30% +111149,896,2334,State-funded primary,214,101,113,47.20%,52.80%,5,2.30%,18,8.40%,16,198,0,7.50%,92.50%,0.00%,11,11,214,5.10% +111150,877,2335,State-funded primary,220,112,108,50.90%,49.10%,4,1.80%,22,10.00%,14,206,0,6.40%,93.60%,0.00%,22,22,203,10.80% +111159,895,2349,State-funded primary,246,132,114,53.70%,46.30%,4,1.60%,11,4.50%,4,242,0,1.60%,98.40%,0.00%,22,21,215,9.80% +111160,896,2350,State-funded primary,312,163,149,52.20%,47.80%,4,1.30%,14,4.50%,7,305,0,2.20%,97.80%,0.00%,23,26,273,9.50% +111167,895,2367,State-funded primary,209,96,113,45.90%,54.10%,9,4.30%,0,0.00%,2,207,0,1.00%,99.00%,0.00%,10,11,209,5.30% +111169,876,2376,State-funded primary,191,87,104,45.50%,54.50%,1,0.50%,40,20.90%,2,189,0,1.00%,99.00%,0.00%,37,37,191,19.40% +111170,895,2377,State-funded primary,212,100,112,47.20%,52.80%,5,2.40%,45,21.20%,137,75,0,64.60%,35.40%,0.00%,70,70,212,33.00% +111171,895,2378,State-funded primary,213,94,119,44.10%,55.90%,7,3.30%,13,6.10%,6,207,0,2.80%,97.20%,0.00%,11,11,213,5.20% +111174,876,2381,State-funded primary,131,69,62,52.70%,47.30%,3,2.30%,45,34.40%,7,124,0,5.30%,94.70%,0.00%,88,92,131,70.20% +111175,876,2382,State-funded primary,158,86,72,54.40%,45.60%,14,8.90%,27,17.10%,1,157,0,0.60%,99.40%,0.00%,32,33,158,20.90% +111176,876,2383,State-funded primary,180,98,82,54.40%,45.60%,7,3.90%,73,40.60%,12,168,0,6.70%,93.30%,0.00%,109,110,180,61.10% +111177,876,2387,State-funded primary,159,84,75,52.80%,47.20%,6,3.80%,66,41.50%,5,154,0,3.10%,96.90%,0.00%,89,90,159,56.60% +111180,877,2402,State-funded primary,217,95,122,43.80%,56.20%,4,1.80%,19,8.80%,8,209,0,3.70%,96.30%,0.00%,37,38,217,17.50% +111188,876,2415,State-funded primary,278,145,133,52.20%,47.80%,3,1.10%,27,9.70%,15,263,0,5.40%,94.60%,0.00%,47,47,278,16.90% +111189,877,2416,State-funded primary,191,102,89,53.40%,46.60%,2,1.00%,27,14.10%,10,181,0,5.20%,94.80%,0.00%,46,46,191,24.10% +111195,877,2423,State-funded primary,205,99,106,48.30%,51.70%,2,1.00%,12,5.90%,9,196,0,4.40%,95.60%,0.00%,17,18,205,8.80% +111197,876,2425,State-funded primary,615,297,318,48.30%,51.70%,5,0.80%,111,18.00%,52,563,0,8.50%,91.50%,0.00%,228,230,615,37.40% +111199,876,2428,State-funded primary,418,212,206,50.70%,49.30%,3,0.70%,34,8.10%,18,400,0,4.30%,95.70%,0.00%,36,37,418,8.90% +111202,877,2433,State-funded primary,233,129,104,55.40%,44.60%,1,0.40%,66,28.30%,35,198,0,15.00%,85.00%,0.00%,121,115,209,55.00% +111203,895,2664,State-funded primary,177,92,85,52.00%,48.00%,9,5.10%,7,4.00%,0,177,0,0.00%,100.00%,0.00%,11,11,177,6.20% +111204,877,2677,State-funded primary,399,164,235,41.10%,58.90%,9,2.30%,58,14.50%,43,356,0,10.80%,89.20%,0.00%,129,132,399,33.10% +111209,896,2688,State-funded primary,293,130,163,44.40%,55.60%,5,1.70%,56,19.10%,34,259,0,11.60%,88.40%,0.00%,39,41,266,15.40% +111210,876,2689,State-funded primary,104,52,52,50.00%,50.00%,2,1.90%,20,19.20%,2,102,0,1.90%,98.10%,0.00%,66,67,89,75.30% +111211,895,2693,State-funded primary,472,241,231,51.10%,48.90%,15,3.20%,44,9.30%,172,300,0,36.40%,63.60%,0.00%,174,163,396,41.20% +111212,896,2695,State-funded primary,381,165,216,43.30%,56.70%,3,0.80%,16,4.20%,19,362,0,5.00%,95.00%,0.00%,53,55,346,15.90% +111214,877,2697,State-funded primary,409,205,204,50.10%,49.90%,5,1.20%,50,12.20%,111,298,0,27.10%,72.90%,0.00%,77,82,409,20.00% +111216,895,2699,State-funded primary,598,299,299,50.00%,50.00%,35,5.90%,77,12.90%,61,537,0,10.20%,89.80%,0.00%,111,114,598,19.10% +111217,876,2700,State-funded primary,120,69,51,57.50%,42.50%,4,3.30%,36,30.00%,3,117,0,2.50%,97.50%,0.00%,73,75,120,62.50% +111218,896,2701,State-funded primary,468,214,254,45.70%,54.30%,30,6.40%,151,32.30%,55,413,0,11.80%,88.20%,0.00%,202,197,429,45.90% +111219,895,2702,State-funded primary,295,147,148,49.80%,50.20%,15,5.10%,34,11.50%,131,164,0,44.40%,55.60%,0.00%,118,121,295,41.00% +111225,896,2708,State-funded primary,211,98,113,46.40%,53.60%,5,2.40%,30,14.20%,8,203,0,3.80%,96.20%,0.00%,37,39,172,22.70% +111227,895,2710,State-funded primary,412,206,206,50.00%,50.00%,5,1.20%,10,2.40%,20,392,0,4.90%,95.10%,0.00%,8,8,412,1.90% +111229,876,2712,State-funded primary,199,91,108,45.70%,54.30%,7,3.50%,37,18.60%,13,186,0,6.50%,93.50%,0.00%,119,120,199,60.30% +111230,896,2713,State-funded primary,209,98,111,46.90%,53.10%,11,5.30%,8,3.80%,9,200,0,4.30%,95.70%,0.00%,14,15,209,7.20% +111233,895,2716,State-funded primary,171,80,91,46.80%,53.20%,10,5.80%,13,7.60%,17,154,0,9.90%,90.10%,0.00%,82,82,152,53.90% +111234,877,2717,State-funded primary,639,292,347,45.70%,54.30%,8,1.30%,48,7.50%,62,569,8,9.70%,89.00%,1.30%,50,50,639,7.80% +111235,896,2718,State-funded primary,420,215,205,51.20%,48.80%,13,3.10%,20,4.80%,8,412,0,1.90%,98.10%,0.00%,26,26,420,6.20% +111236,896,2719,State-funded primary,215,109,106,50.70%,49.30%,6,2.80%,13,6.00%,0,215,0,0.00%,100.00%,0.00%,23,23,215,10.70% +111240,876,2723,State-funded primary,102,56,46,54.90%,45.10%,3,2.90%,21,20.60%,2,100,0,2.00%,98.00%,0.00%,53,53,102,52.00% +111244,876,3050,State-funded primary,101,59,42,58.40%,41.60%,0,0.00%,35,34.70%,4,97,0,4.00%,96.00%,0.00%,61,61,101,60.40% +111245,896,3101,State-funded primary,208,101,107,48.60%,51.40%,3,1.40%,7,3.40%,1,207,0,0.50%,99.50%,0.00%,8,8,208,3.80% +111246,896,5204,State-funded primary,70,32,38,45.70%,54.30%,0,0.00%,1,1.40%,1,69,0,1.40%,98.60%,0.00%,7,7,64,10.90% +111247,896,3103,State-funded primary,226,98,128,43.40%,56.60%,2,0.90%,9,4.00%,3,223,0,1.30%,98.70%,0.00%,10,10,200,5.00% +111248,896,3104,State-funded primary,56,29,27,51.80%,48.20%,1,1.80%,1,1.80%,1,55,0,1.80%,98.20%,0.00%,10,10,50,20.00% +111249,896,3105,State-funded primary,105,52,53,49.50%,50.50%,2,1.90%,9,8.60%,1,104,0,1.00%,99.00%,0.00%,15,15,105,14.30% +111252,895,3113,State-funded primary,189,94,95,49.70%,50.30%,8,4.20%,24,12.70%,1,188,0,0.50%,99.50%,0.00%,26,27,189,14.30% +111254,895,3115,State-funded primary,71,46,25,64.80%,35.20%,5,7.00%,5,7.00%,4,67,0,5.60%,94.40%,0.00%,6,6,71,8.50% +111255,895,3120,State-funded primary,107,55,52,51.40%,48.60%,2,1.90%,15,14.00%,2,105,0,1.90%,98.10%,0.00%,15,15,107,14.00% +111256,895,3121,State-funded primary,367,175,192,47.70%,52.30%,15,4.10%,38,10.40%,13,354,0,3.50%,96.50%,0.00%,37,38,367,10.40% +111260,896,3132,State-funded primary,283,153,130,54.10%,45.90%,5,1.80%,29,10.20%,12,271,0,4.20%,95.80%,0.00%,16,16,283,5.70% +111262,896,3134,State-funded primary,209,103,106,49.30%,50.70%,5,2.40%,25,12.00%,1,208,0,0.50%,99.50%,0.00%,56,56,181,30.90% +111263,896,3135,State-funded primary,136,70,66,51.50%,48.50%,4,2.90%,29,21.30%,7,129,0,5.10%,94.90%,0.00%,42,42,136,30.90% +111268,895,3142,State-funded primary,143,68,75,47.60%,52.40%,1,0.70%,9,6.30%,1,142,0,0.70%,99.30%,0.00%,13,14,143,9.80% +111270,896,3149,State-funded primary,48,32,16,66.70%,33.30%,3,6.30%,6,12.50%,4,44,0,8.30%,91.70%,0.00%,12,13,48,27.10% +111271,896,3150,State-funded primary,100,63,37,63.00%,37.00%,1,1.00%,5,5.00%,1,99,0,1.00%,99.00%,0.00%,15,15,100,15.00% +111272,896,3151,State-funded primary,86,39,47,45.30%,54.70%,1,1.20%,9,10.50%,4,82,0,4.70%,95.30%,0.00%,5,7,86,8.10% +111273,896,3152,State-funded primary,207,103,104,49.80%,50.20%,6,2.90%,10,4.80%,4,203,0,1.90%,98.10%,0.00%,6,6,207,2.90% +111277,895,3157,State-funded primary,197,100,97,50.80%,49.20%,4,2.00%,16,8.10%,7,190,0,3.60%,96.40%,0.00%,16,16,197,8.10% +111281,896,3163,State-funded primary,88,47,41,53.40%,46.60%,1,1.10%,19,21.60%,0,88,0,0.00%,100.00%,0.00%,13,13,75,17.30% +111282,896,3164,State-funded primary,276,134,142,48.60%,51.40%,7,2.50%,41,14.90%,10,266,0,3.60%,96.40%,0.00%,47,45,243,18.50% +111283,896,3165,State-funded primary,74,37,37,50.00%,50.00%,1,1.40%,12,16.20%,0,74,0,0.00%,100.00%,0.00%,2,2,69,2.90% +111284,896,3166,State-funded primary,114,56,58,49.10%,50.90%,2,1.80%,5,4.40%,0,114,0,0.00%,100.00%,0.00%,7,7,103,6.80% +111285,896,3167,State-funded primary,118,60,58,50.80%,49.20%,2,1.70%,9,7.60%,1,117,0,0.80%,99.20%,0.00%,9,8,102,7.80% +111286,896,3168,State-funded primary,34,13,21,38.20%,61.80%,1,2.90%,7,20.60%,3,31,0,8.80%,91.20%,0.00%,3,3,34,8.80% +111287,895,3169,State-funded primary,120,62,58,51.70%,48.30%,2,1.70%,26,21.70%,14,106,0,11.70%,88.30%,0.00%,10,10,120,8.30% +111289,896,3171,State-funded primary,200,105,95,52.50%,47.50%,7,3.50%,23,11.50%,7,192,1,3.50%,96.00%,0.50%,37,40,200,20.00% +111290,896,3172,State-funded primary,525,254,271,48.40%,51.60%,11,2.10%,38,7.20%,212,310,3,40.40%,59.00%,0.60%,133,134,472,28.40% +111294,876,3176,State-funded primary,186,96,90,51.60%,48.40%,6,3.20%,35,18.80%,0,186,0,0.00%,100.00%,0.00%,50,51,186,27.40% +111296,877,3302,State-funded primary,370,169,201,45.70%,54.30%,5,1.40%,25,6.80%,114,255,1,30.80%,68.90%,0.30%,136,136,352,38.60% +111298,877,3308,State-funded primary,206,102,104,49.50%,50.50%,2,1.00%,44,21.40%,52,154,0,25.20%,74.80%,0.00%,96,101,170,59.40% +111299,877,3310,State-funded primary,161,80,81,49.70%,50.30%,2,1.20%,31,19.30%,62,99,0,38.50%,61.50%,0.00%,89,89,161,55.30% +111301,877,3313,State-funded primary,207,100,107,48.30%,51.70%,1,0.50%,39,18.80%,13,194,0,6.30%,93.70%,0.00%,102,103,207,49.80% +111304,877,3316,State-funded primary,174,91,83,52.30%,47.70%,2,1.10%,22,12.60%,33,141,0,19.00%,81.00%,0.00%,90,92,160,57.50% +111305,877,3400,State-funded primary,173,85,88,49.10%,50.90%,6,3.50%,32,18.50%,34,139,0,19.70%,80.30%,0.00%,61,63,173,36.40% +111306,877,3401,State-funded primary,197,85,112,43.10%,56.90%,6,3.00%,47,23.90%,84,112,1,42.60%,56.90%,0.50%,47,48,197,24.40% +111307,877,3402,State-funded primary,219,115,104,52.50%,47.50%,1,0.50%,28,12.80%,119,100,0,54.30%,45.70%,0.00%,54,54,199,27.10% +111308,877,3404,State-funded primary,227,102,125,44.90%,55.10%,4,1.80%,47,20.70%,73,154,0,32.20%,67.80%,0.00%,70,73,206,35.40% +111309,877,3409,State-funded primary,171,85,86,49.70%,50.30%,3,1.80%,31,18.10%,75,96,0,43.90%,56.10%,0.00%,54,56,161,34.80% +111310,877,3410,State-funded primary,208,110,98,52.90%,47.10%,4,1.90%,34,16.30%,55,153,0,26.40%,73.60%,0.00%,82,82,208,39.40% +111311,896,3415,State-funded primary,185,91,94,49.20%,50.80%,2,1.10%,36,19.50%,42,143,0,22.70%,77.30%,0.00%,75,75,185,40.50% +111312,896,3500,State-funded primary,77,37,40,48.10%,51.90%,1,1.30%,9,11.70%,0,77,0,0.00%,100.00%,0.00%,5,5,77,6.50% +111313,896,3501,State-funded primary,165,83,82,50.30%,49.70%,2,1.20%,18,10.90%,4,161,0,2.40%,97.60%,0.00%,34,36,165,21.80% +111314,876,3502,State-funded primary,115,67,48,58.30%,41.70%,4,3.50%,24,20.90%,25,90,0,21.70%,78.30%,0.00%,68,72,115,62.60% +111315,877,3505,State-funded primary,422,185,237,43.80%,56.20%,6,1.40%,24,5.70%,9,413,0,2.10%,97.90%,0.00%,21,26,422,6.20% +111316,876,3506,State-funded primary,192,92,100,47.90%,52.10%,2,1.00%,41,21.40%,2,190,0,1.00%,99.00%,0.00%,78,78,192,40.60% +111317,896,3507,State-funded primary,71,34,37,47.90%,52.10%,10,14.10%,11,15.50%,1,70,0,1.40%,98.60%,0.00%,13,13,69,18.80% +111318,877,3508,State-funded primary,239,120,119,50.20%,49.80%,6,2.50%,10,4.20%,17,222,0,7.10%,92.90%,0.00%,29,32,205,15.60% +111319,876,3509,State-funded primary,126,59,67,46.80%,53.20%,4,3.20%,22,17.50%,7,119,0,5.60%,94.40%,0.00%,40,40,126,31.70% +111320,876,3510,State-funded primary,204,94,110,46.10%,53.90%,5,2.50%,21,10.30%,4,200,0,2.00%,98.00%,0.00%,44,44,204,21.60% +111321,876,3511,State-funded primary,109,54,55,49.50%,50.50%,2,1.80%,31,28.40%,20,89,0,18.30%,81.70%,0.00%,75,76,109,69.70% +111322,877,3512,State-funded primary,167,78,89,46.70%,53.30%,3,1.80%,30,18.00%,15,152,0,9.00%,91.00%,0.00%,12,12,167,7.20% +111323,895,3513,State-funded primary,210,97,113,46.20%,53.80%,9,4.30%,26,12.40%,41,169,0,19.50%,80.50%,0.00%,55,55,210,26.20% +111324,895,3516,State-funded primary,107,54,53,50.50%,49.50%,6,5.60%,10,9.30%,4,103,0,3.70%,96.30%,0.00%,10,10,107,9.30% +111325,895,3518,State-funded primary,350,186,164,53.10%,46.90%,9,2.60%,19,5.40%,16,334,0,4.60%,95.40%,0.00%,10,10,314,3.20% +111326,895,3520,State-funded primary,66,35,31,53.00%,47.00%,5,7.60%,10,15.20%,0,66,0,0.00%,100.00%,0.00%,3,3,66,4.50% +111327,895,3521,State-funded primary,47,22,25,46.80%,53.20%,4,8.50%,2,4.30%,3,44,0,6.40%,93.60%,0.00%,11,11,47,23.40% +111329,895,3524,State-funded primary,180,91,89,50.60%,49.40%,6,3.30%,14,7.80%,4,176,0,2.20%,97.80%,0.00%,33,34,180,18.90% +111331,895,3526,State-funded primary,287,141,146,49.10%,50.90%,9,3.10%,27,9.40%,17,270,0,5.90%,94.10%,0.00%,42,46,287,16.00% +111334,895,3530,State-funded primary,187,95,92,50.80%,49.20%,21,11.20%,27,14.40%,9,178,0,4.80%,95.20%,0.00%,39,43,187,23.00% +111336,896,3532,State-funded primary,43,27,16,62.80%,37.20%,0,0.00%,4,9.30%,1,42,0,2.30%,97.70%,0.00%,4,4,43,9.30% +111337,896,3533,State-funded primary,204,100,104,49.00%,51.00%,3,1.50%,23,11.30%,3,201,0,1.50%,98.50%,0.00%,15,15,204,7.40% +111338,896,3534,State-funded primary,166,80,86,48.20%,51.80%,3,1.80%,20,12.00%,0,166,0,0.00%,100.00%,0.00%,13,13,166,7.80% +111339,895,3536,State-funded primary,210,106,104,50.50%,49.50%,7,3.30%,12,5.70%,12,198,0,5.70%,94.30%,0.00%,10,10,210,4.80% +111340,895,3537,State-funded primary,194,94,100,48.50%,51.50%,9,4.60%,20,10.30%,16,178,0,8.20%,91.80%,0.00%,30,30,194,15.50% +111341,896,3538,State-funded primary,192,107,85,55.70%,44.30%,2,1.00%,21,10.90%,18,174,0,9.40%,90.60%,0.00%,18,19,192,9.90% +111342,895,3541,State-funded primary,595,297,298,49.90%,50.10%,20,3.40%,39,6.60%,239,356,0,40.20%,59.80%,0.00%,110,113,559,20.20% +111343,895,3543,State-funded primary,93,45,48,48.40%,51.60%,1,1.10%,5,5.40%,0,93,0,0.00%,100.00%,0.00%,10,10,84,11.90% +111347,895,3547,State-funded primary,204,96,108,47.10%,52.90%,2,1.00%,16,7.80%,25,179,0,12.30%,87.70%,0.00%,29,32,204,15.70% +111349,896,3550,State-funded primary,102,41,61,40.20%,59.80%,7,6.90%,12,11.80%,10,92,0,9.80%,90.20%,0.00%,8,12,102,11.80% +111350,896,3551,State-funded primary,113,61,52,54.00%,46.00%,3,2.70%,5,4.40%,10,103,0,8.80%,91.20%,0.00%,5,5,99,5.10% +111351,896,3552,State-funded primary,200,98,102,49.00%,51.00%,6,3.00%,16,8.00%,8,192,0,4.00%,96.00%,0.00%,45,45,200,22.50% +111357,896,3558,State-funded primary,209,103,106,49.30%,50.70%,4,1.90%,12,5.70%,14,195,0,6.70%,93.30%,0.00%,34,34,209,16.30% +111358,895,3559,State-funded primary,198,90,108,45.50%,54.50%,8,4.00%,14,7.10%,23,175,0,11.60%,88.40%,0.00%,20,20,198,10.10% +111360,895,3562,State-funded primary,161,84,77,52.20%,47.80%,7,4.30%,14,8.70%,10,151,0,6.20%,93.80%,0.00%,30,30,161,18.60% +111363,877,3601,State-funded primary,345,174,171,50.40%,49.60%,6,1.70%,51,14.80%,27,318,0,7.80%,92.20%,0.00%,78,79,322,24.50% +111365,877,3603,State-funded primary,204,106,98,52.00%,48.00%,5,2.50%,19,9.30%,8,196,0,3.90%,96.10%,0.00%,21,21,204,10.30% +111366,877,3609,State-funded primary,214,110,104,51.40%,48.60%,3,1.40%,23,10.70%,23,191,0,10.70%,89.30%,0.00%,28,29,214,13.60% +111367,877,3610,State-funded primary,143,69,74,48.30%,51.70%,5,3.50%,24,16.80%,12,131,0,8.40%,91.60%,0.00%,37,36,132,27.30% +111368,877,3611,State-funded primary,133,60,73,45.10%,54.90%,1,0.80%,12,9.00%,8,125,0,6.00%,94.00%,0.00%,18,19,122,15.60% +111369,877,3612,State-funded primary,216,104,112,48.10%,51.90%,3,1.40%,30,13.90%,53,163,0,24.50%,75.50%,0.00%,33,33,216,15.30% +111370,877,3613,State-funded primary,209,93,116,44.50%,55.50%,3,1.40%,22,10.50%,28,181,0,13.40%,86.60%,0.00%,19,19,209,9.10% +111371,876,3614,State-funded primary,309,149,160,48.20%,51.80%,5,1.60%,56,18.10%,5,277,27,1.60%,89.60%,8.70%,91,93,309,30.10% +111372,876,3615,State-funded primary,229,116,113,50.70%,49.30%,2,0.90%,34,14.80%,4,193,32,1.70%,84.30%,14.00%,56,56,229,24.50% +111373,877,3622,State-funded primary,271,133,138,49.10%,50.90%,5,1.80%,25,9.20%,26,245,0,9.60%,90.40%,0.00%,29,30,271,11.10% +111376,877,3627,State-funded primary,129,64,65,49.60%,50.40%,4,3.10%,21,16.30%,15,114,0,11.60%,88.40%,0.00%,18,18,129,14.00% +111377,877,3629,State-funded primary,194,96,98,49.50%,50.50%,2,1.00%,47,24.20%,59,135,0,30.40%,69.60%,0.00%,103,104,194,53.60% +111378,876,3632,State-funded primary,187,94,93,50.30%,49.70%,4,2.10%,46,24.60%,5,176,6,2.70%,94.10%,3.20%,102,102,187,54.50% +111379,896,3633,State-funded primary,121,61,60,50.40%,49.60%,2,1.70%,13,10.70%,12,109,0,9.90%,90.10%,0.00%,11,11,121,9.10% +111380,876,3637,State-funded primary,199,106,93,53.30%,46.70%,2,1.00%,34,17.10%,9,190,0,4.50%,95.50%,0.00%,85,86,199,43.20% +111381,877,3638,State-funded primary,309,146,163,47.20%,52.80%,3,1.00%,43,13.90%,34,275,0,11.00%,89.00%,0.00%,110,111,309,35.90% +111382,877,3639,State-funded primary,213,121,92,56.80%,43.20%,1,0.50%,22,10.30%,7,206,0,3.30%,96.70%,0.00%,20,21,213,9.90% +111383,876,3640,State-funded primary,285,150,135,52.60%,47.40%,5,1.80%,49,17.20%,7,278,0,2.50%,97.50%,0.00%,58,63,285,22.10% +111384,896,3641,State-funded primary,329,170,159,51.70%,48.30%,6,1.80%,31,9.40%,85,244,0,25.80%,74.20%,0.00%,35,38,329,11.60% +111385,877,3642,State-funded primary,606,305,301,50.30%,49.70%,6,1.00%,30,5.00%,106,499,1,17.50%,82.30%,0.20%,49,50,606,8.30% +111386,896,3643,State-funded primary,334,150,184,44.90%,55.10%,16,4.80%,10,3.00%,30,304,0,9.00%,91.00%,0.00%,53,52,302,17.20% +111387,896,3645,State-funded primary,324,164,160,50.60%,49.40%,2,0.60%,30,9.30%,12,311,1,3.70%,96.00%,0.30%,18,18,324,5.60% +111388,896,3646,State-funded primary,185,101,84,54.60%,45.40%,4,2.20%,28,15.10%,43,142,0,23.20%,76.80%,0.00%,57,57,163,35.00% +111389,896,3800,State-funded primary,279,147,132,52.70%,47.30%,9,3.20%,47,16.80%,40,238,1,14.30%,85.30%,0.40%,81,82,257,31.90% +111390,876,3648,State-funded primary,269,120,149,44.60%,55.40%,2,0.70%,65,24.20%,15,254,0,5.60%,94.40%,0.00%,140,142,269,52.80% +111391,876,3649,State-funded primary,232,110,122,47.40%,52.60%,3,1.30%,38,16.40%,67,165,0,28.90%,71.10%,0.00%,107,107,210,51.00% +111392,876,3650,State-funded primary,217,99,118,45.60%,54.40%,6,2.80%,37,17.10%,2,215,0,0.90%,99.10%,0.00%,68,68,217,31.30% +111393,876,3651,State-funded primary,240,121,119,50.40%,49.60%,6,2.50%,52,21.70%,10,230,0,4.20%,95.80%,0.00%,119,119,240,49.60% +111394,876,3177,State-funded primary,419,209,210,49.90%,50.10%,9,2.10%,12,2.90%,1,417,1,0.20%,99.50%,0.20%,27,28,419,6.70% +111396,896,4006,State-funded secondary,716,321,395,44.80%,55.20%,36,5.00%,157,21.90%,43,673,0,6.00%,94.00%,0.00%,336,353,716,49.30% +111414,896,4132,State-funded secondary,1161,554,607,47.70%,52.30%,18,1.60%,158,13.60%,17,1143,1,1.50%,98.40%,0.10%,198,226,1161,19.50% +111417,895,4139,State-funded secondary,703,352,351,50.10%,49.90%,20,2.80%,81,11.50%,188,515,0,26.70%,73.30%,0.00%,222,228,703,32.40% +111419,895,4143,State-funded secondary,1176,658,518,56.00%,44.00%,42,3.60%,125,10.60%,86,1090,0,7.30%,92.70%,0.00%,226,241,1050,23.00% +111422,896,4153,State-funded secondary,1737,840,897,48.40%,51.60%,27,1.60%,206,11.90%,149,1587,1,8.60%,91.40%,0.10%,234,221,1403,15.80% +111424,896,4158,State-funded secondary,1279,636,642,49.70%,50.20%,20,1.60%,67,5.20%,27,1252,0,2.10%,97.90%,0.00%,105,117,1053,11.10% +111429,896,4167,State-funded secondary,1541,739,802,48.00%,52.00%,13,0.80%,164,10.60%,83,1458,0,5.40%,94.60%,0.00%,346,370,1384,26.70% +111430,877,4200,State-funded secondary,1181,593,588,50.20%,49.80%,32,2.70%,131,11.10%,28,1151,2,2.40%,97.50%,0.20%,175,187,1181,15.80% +111440,896,4221,State-funded secondary,1338,684,654,51.10%,48.90%,17,1.30%,155,11.60%,27,1309,2,2.00%,97.80%,0.10%,196,217,1153,18.80% +111443,895,4225,State-funded secondary,2157,1020,1137,47.30%,52.70%,81,3.80%,190,8.80%,168,1956,33,7.80%,90.70%,1.50%,214,214,1727,12.40% +111450,896,4610,State-funded secondary,1208,587,621,48.60%,51.40%,33,2.70%,62,5.10%,105,1063,40,8.70%,88.00%,3.30%,138,149,1050,14.20% +111451,896,4611,State-funded secondary,936,459,477,49.00%,51.00%,43,4.60%,156,16.70%,67,869,0,7.20%,92.80%,0.00%,279,290,844,34.40% +111454,877,4622,State-funded secondary,1207,595,612,49.30%,50.70%,53,4.40%,165,13.70%,249,958,0,20.60%,79.40%,0.00%,176,199,1207,16.50% +111456,877,4624,State-funded secondary,819,423,396,51.60%,48.40%,17,2.10%,112,13.70%,150,669,0,18.30%,81.70%,0.00%,190,207,819,25.30% +111457,876,4625,State-funded secondary,1282,695,587,54.20%,45.80%,17,1.30%,40,3.10%,81,1201,0,6.30%,93.70%,0.00%,510,541,1282,42.20% +111459,895,5200,State-funded primary,63,32,31,50.80%,49.20%,2,3.20%,15,23.80%,0,63,0,0.00%,100.00%,0.00%,5,5,63,7.90% +111461,896,5202,State-funded primary,207,100,107,48.30%,51.70%,7,3.40%,8,3.90%,48,159,0,23.20%,76.80%,0.00%,25,25,207,12.10% +111462,895,5203,State-funded primary,35,16,19,45.70%,54.30%,2,5.70%,10,28.60%,1,34,0,2.90%,97.10%,0.00%,7,7,35,20.00% +111468,895,6002,Independent school,264,112,152,42.40%,57.60%,7,2.70%,17,6.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111470,896,6004,Independent school,122,47,75,38.50%,61.50%,1,0.80%,18,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111471,896,6005,Independent school,1218,582,636,47.80%,52.20%,1,0.10%,105,8.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111472,895,6006,Independent school,258,122,136,47.30%,52.70%,2,0.80%,57,22.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111473,895,6007,Independent school,1292,558,734,43.20%,56.80%,6,0.50%,285,22.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111474,895,6008,Independent school,219,89,130,40.60%,59.40%,62,28.30%,54,24.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111477,895,6011,Independent school,127,63,64,49.60%,50.40%,3,2.40%,12,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111478,895,6012,Independent school,448,448,0,100.00%,0.00%,1,0.20%,122,27.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111479,895,6013,Independent school,73,33,40,45.20%,54.80%,0,0.00%,5,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111481,895,6015,Independent school,290,125,165,43.10%,56.90%,3,1.00%,27,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111482,896,6016,Independent school,232,182,50,78.40%,21.60%,3,1.30%,24,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111483,896,6017,Independent school,252,119,133,47.20%,52.80%,7,2.80%,74,29.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111484,896,6018,Independent school,510,224,286,43.90%,56.10%,2,0.40%,193,37.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111485,896,6019,Independent school,1134,442,692,39.00%,61.00%,1,0.10%,205,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111486,896,6020,Independent school,450,450,0,100.00%,0.00%,1,0.20%,98,21.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111494,896,7000,State-funded special school,117,33,84,28.20%,71.80%,117,100.00%,0,0.00%,9,108,0,7.70%,92.30%,0.00%,37,32,95,33.70% +111495,877,7001,State-funded special school,221,78,143,35.30%,64.70%,221,100.00%,0,0.00%,8,213,0,3.60%,96.40%,0.00%,79,75,196,38.30% +111496,877,7002,State-funded special school,124,44,80,35.50%,64.50%,124,100.00%,0,0.00%,19,105,0,15.30%,84.70%,0.00%,51,46,109,42.20% +111498,877,7100,Non-maintained special school,41,5,36,12.20%,87.80%,41,100.00%,0,0.00%,0,41,0,0.00%,100.00%,0.00%,41,41,41,100.00% +111499,895,7101,Non-maintained special school,18,0,18,0.00%,100.00%,18,100.00%,0,0.00%,1,17,0,5.60%,94.40%,0.00%,3,3,18,16.70% +111501,877,7103,State-funded special school,58,10,48,17.20%,82.80%,58,100.00%,0,0.00%,0,57,1,0.00%,98.30%,1.70%,45,47,58,81.00% +111503,896,7106,State-funded special school,116,12,104,10.30%,89.70%,116,100.00%,0,0.00%,3,113,0,2.60%,97.40%,0.00%,47,36,88,40.90% +111504,896,7108,State-funded special school,171,60,111,35.10%,64.90%,171,100.00%,0,0.00%,5,166,0,2.90%,97.10%,0.00%,75,74,162,45.70% +111505,896,7109,State-funded special school,133,60,73,45.10%,54.90%,132,99.20%,1,0.80%,5,128,0,3.80%,96.20%,0.00%,36,32,110,29.10% +111507,895,7111,State-funded special school,213,61,152,28.60%,71.40%,213,100.00%,0,0.00%,18,195,0,8.50%,91.50%,0.00%,67,57,178,32.00% +111508,895,7112,State-funded special school,116,32,84,27.60%,72.40%,116,100.00%,0,0.00%,12,103,1,10.30%,88.80%,0.90%,40,38,98,38.80% +111510,896,7115,State-funded special school,48,15,33,31.30%,68.80%,48,100.00%,0,0.00%,4,44,0,8.30%,91.70%,0.00%,14,14,48,29.20% +111511,896,7118,State-funded special school,142,53,89,37.30%,62.70%,142,100.00%,0,0.00%,10,132,0,7.00%,93.00%,0.00%,52,53,134,39.60% +111513,896,7120,State-funded special school,52,9,43,17.30%,82.70%,52,100.00%,0,0.00%,4,48,0,7.70%,92.30%,0.00%,19,20,52,38.50% +111514,876,7200,State-funded special school,89,37,52,41.60%,58.40%,88,98.90%,0,0.00%,1,88,0,1.10%,98.90%,0.00%,54,54,86,62.80% +111515,876,7202,State-funded special school,116,17,99,14.70%,85.30%,116,100.00%,0,0.00%,0,116,0,0.00%,100.00%,0.00%,62,52,95,54.70% +111517,896,7208,State-funded special school,83,18,65,21.70%,78.30%,83,100.00%,0,0.00%,0,83,0,0.00%,100.00%,0.00%,52,58,83,69.90% +111523,808,2004,State-funded primary,80,36,44,45.00%,55.00%,3,3.80%,22,27.50%,7,73,0,8.80%,91.30%,0.00%,44,44,68,64.70% +111524,808,2005,State-funded primary,436,220,216,50.50%,49.50%,28,6.40%,84,19.30%,14,422,0,3.20%,96.80%,0.00%,152,151,382,39.50% +111531,807,2016,State-funded primary,109,61,48,56.00%,44.00%,1,0.90%,25,22.90%,1,108,0,0.90%,99.10%,0.00%,57,57,85,67.10% +111533,807,2018,State-funded primary,186,97,89,52.20%,47.80%,2,1.10%,16,8.60%,0,186,0,0.00%,100.00%,0.00%,24,25,163,15.30% +111539,808,2030,State-funded primary,227,111,116,48.90%,51.10%,11,4.80%,80,35.20%,145,81,1,63.90%,35.70%,0.40%,127,128,201,63.70% +111540,808,2032,State-funded primary,283,133,150,47.00%,53.00%,4,1.40%,55,19.40%,194,89,0,68.60%,31.40%,0.00%,132,129,248,52.00% +111549,808,2056,State-funded primary,365,155,210,42.50%,57.50%,17,4.70%,47,12.90%,11,354,0,3.00%,97.00%,0.00%,57,67,331,20.20% +111550,808,2057,State-funded primary,416,199,217,47.80%,52.20%,7,1.70%,55,13.20%,3,413,0,0.70%,99.30%,0.00%,125,119,373,31.90% +111562,808,2080,State-funded primary,198,103,95,52.00%,48.00%,6,3.00%,12,6.10%,7,191,0,3.50%,96.50%,0.00%,17,17,167,10.20% +111577,806,2120,State-funded primary,457,206,251,45.10%,54.90%,12,2.60%,65,14.20%,71,386,0,15.50%,84.50%,0.00%,275,277,414,66.90% +111580,806,2124,State-funded primary,362,177,185,48.90%,51.10%,3,0.80%,42,11.60%,244,118,0,67.40%,32.60%,0.00%,239,243,313,77.60% +111581,805,2126,State-funded primary,109,61,48,56.00%,44.00%,2,1.80%,26,23.90%,3,106,0,2.80%,97.20%,0.00%,58,60,97,61.90% +111585,806,2138,State-funded primary,326,157,169,48.20%,51.80%,2,0.60%,45,13.80%,20,306,0,6.10%,93.90%,0.00%,148,152,292,52.10% +111586,806,2139,State-funded primary,488,268,220,54.90%,45.10%,4,0.80%,26,5.30%,13,475,0,2.70%,97.30%,0.00%,47,47,417,11.30% +111587,806,2141,State-funded primary,634,299,335,47.20%,52.80%,5,0.80%,191,30.10%,383,251,0,60.40%,39.60%,0.00%,262,259,583,44.40% +111590,805,2153,State-funded primary,296,145,151,49.00%,51.00%,4,1.40%,28,9.50%,122,174,0,41.20%,58.80%,0.00%,151,153,227,67.40% +111600,805,2187,State-funded primary,468,225,243,48.10%,51.90%,2,0.40%,36,7.70%,4,462,2,0.90%,98.70%,0.40%,77,78,398,19.60% +111601,805,2189,State-funded primary,484,202,282,41.70%,58.30%,21,4.30%,110,22.70%,8,476,0,1.70%,98.30%,0.00%,183,185,419,44.20% +111612,805,2236,State-funded primary,459,229,230,49.90%,50.10%,2,0.40%,68,14.80%,8,451,0,1.70%,98.30%,0.00%,95,97,394,24.60% +111614,805,2238,State-funded primary,379,199,180,52.50%,47.50%,3,0.80%,67,17.70%,2,377,0,0.50%,99.50%,0.00%,89,89,339,26.30% +111618,807,2311,State-funded primary,315,162,153,51.40%,48.60%,3,1.00%,72,22.90%,0,315,0,0.00%,100.00%,0.00%,121,124,254,48.80% +111626,806,2326,State-funded primary,357,181,176,50.70%,49.30%,6,1.70%,96,26.90%,11,346,0,3.10%,96.90%,0.00%,207,206,297,69.40% +111632,806,2332,State-funded primary,648,332,316,51.20%,48.80%,8,1.20%,57,8.80%,11,637,0,1.70%,98.30%,0.00%,357,364,524,69.50% +111638,807,2339,State-funded primary,385,179,206,46.50%,53.50%,3,0.80%,69,17.90%,6,379,0,1.60%,98.40%,0.00%,78,81,336,24.10% +111640,805,2341,State-funded primary,268,120,148,44.80%,55.20%,5,1.90%,56,20.90%,8,260,0,3.00%,97.00%,0.00%,149,149,209,71.30% +111644,808,2345,State-funded primary,361,181,180,50.10%,49.90%,3,0.80%,54,15.00%,92,269,0,25.50%,74.50%,0.00%,170,173,325,53.20% +111660,808,2363,State-funded primary,315,163,152,51.70%,48.30%,6,1.90%,30,9.50%,47,268,0,14.90%,85.10%,0.00%,156,159,257,61.90% +111661,805,2364,State-funded primary,398,185,213,46.50%,53.50%,12,3.00%,47,11.80%,8,390,0,2.00%,98.00%,0.00%,218,221,323,68.40% +111662,807,2365,State-funded primary,412,205,207,49.80%,50.20%,3,0.70%,39,9.50%,2,410,0,0.50%,99.50%,0.00%,43,45,353,12.70% +111667,808,3000,State-funded primary,511,252,259,49.30%,50.70%,7,1.40%,39,7.60%,0,511,0,0.00%,100.00%,0.00%,51,53,454,11.70% +111668,808,3001,State-funded primary,321,160,161,49.80%,50.20%,32,10.00%,27,8.40%,7,314,0,2.20%,97.80%,0.00%,198,200,269,74.30% +111720,808,3392,State-funded primary,160,85,75,53.10%,46.90%,2,1.30%,10,6.30%,9,151,0,5.60%,94.40%,0.00%,38,39,144,27.10% +111731,808,4102,State-funded secondary,1484,780,704,52.60%,47.40%,36,2.40%,147,9.90%,15,1467,2,1.00%,98.90%,0.10%,351,410,1484,27.60% +111748,805,4133,State-funded secondary,1352,646,706,47.80%,52.20%,72,5.30%,258,19.10%,58,1294,0,4.30%,95.70%,0.00%,345,372,1352,27.50% +111767,808,6000,Independent school,338,143,195,42.30%,57.70%,0,0.00%,64,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111768,808,6001,Independent school,307,174,133,56.70%,43.30%,3,1.00%,50,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111769,808,6002,Independent school,795,393,402,49.40%,50.60%,1,0.10%,182,22.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111771,808,6003,Independent school,394,192,202,48.70%,51.30%,0,0.00%,14,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +111773,806,7003,State-funded special school,160,30,130,18.80%,81.30%,154,96.30%,6,3.80%,10,150,0,6.30%,93.80%,0.00%,75,57,116,49.10% +111775,806,7005,State-funded special school,94,13,81,13.80%,86.20%,94,100.00%,0,0.00%,1,93,0,1.10%,98.90%,0.00%,69,70,94,74.50% +111777,807,7008,State-funded special school,183,69,114,37.70%,62.30%,170,92.90%,13,7.10%,13,170,0,7.10%,92.90%,0.00%,88,80,150,53.30% +111789,908,1000,State-funded nursery,73,28,45,38.40%,61.60%,3,4.10%,31,42.50%,1,72,0,1.40%,98.60%,0.00%,3,0,0,0.00% +111790,908,1001,State-funded nursery,90,38,52,42.20%,57.80%,2,2.20%,15,16.70%,6,84,0,6.70%,93.30%,0.00%,3,0,0,0.00% +111791,908,2003,State-funded primary,67,36,31,53.70%,46.30%,1,1.50%,12,17.90%,1,66,0,1.50%,98.50%,0.00%,9,9,67,13.40% +111792,908,2004,State-funded primary,123,67,56,54.50%,45.50%,2,1.60%,18,14.60%,1,121,1,0.80%,98.40%,0.80%,38,40,123,32.50% +111794,908,2006,State-funded primary,190,97,93,51.10%,48.90%,12,6.30%,15,7.90%,2,186,2,1.10%,97.90%,1.10%,56,56,190,29.50% +111800,908,2018,State-funded primary,241,123,118,51.00%,49.00%,2,0.80%,34,14.10%,1,240,0,0.40%,99.60%,0.00%,81,86,241,35.70% +111803,908,2025,State-funded primary,39,25,14,64.10%,35.90%,1,2.60%,4,10.30%,1,38,0,2.60%,97.40%,0.00%,5,5,39,12.80% +111813,908,2109,State-funded primary,66,25,41,37.90%,62.10%,0,0.00%,24,36.40%,1,62,3,1.50%,93.90%,4.50%,18,18,66,27.30% +111818,908,2116,State-funded primary,142,72,70,50.70%,49.30%,4,2.80%,22,15.50%,2,139,1,1.40%,97.90%,0.70%,15,15,142,10.60% +111826,908,2126,State-funded primary,93,39,54,41.90%,58.10%,2,2.20%,31,33.30%,3,87,3,3.20%,93.50%,3.20%,16,17,93,18.30% +111840,908,2219,State-funded primary,156,75,81,48.10%,51.90%,9,5.80%,26,16.70%,1,155,0,0.60%,99.40%,0.00%,57,57,156,36.50% +111841,908,2221,State-funded primary,312,143,169,45.80%,54.20%,8,2.60%,20,6.40%,6,306,0,1.90%,98.10%,0.00%,87,87,312,27.90% +111846,908,2227,State-funded primary,108,55,53,50.90%,49.10%,2,1.90%,21,19.40%,4,102,2,3.70%,94.40%,1.90%,16,16,108,14.80% +111849,908,2230,State-funded primary,406,209,197,51.50%,48.50%,12,3.00%,50,12.30%,2,404,0,0.50%,99.50%,0.00%,85,87,406,21.40% +111851,908,2232,State-funded primary,173,86,87,49.70%,50.30%,4,2.30%,18,10.40%,0,173,0,0.00%,100.00%,0.00%,26,26,173,15.00% +111861,908,2302,State-funded primary,204,102,102,50.00%,50.00%,1,0.50%,32,15.70%,4,199,1,2.00%,97.50%,0.50%,15,17,204,8.30% +111863,908,2306,State-funded primary,161,91,70,56.50%,43.50%,2,1.20%,12,7.50%,1,152,8,0.60%,94.40%,5.00%,12,12,161,7.50% +111864,908,2307,State-funded primary,205,104,101,50.70%,49.30%,1,0.50%,24,11.70%,4,196,5,2.00%,95.60%,2.40%,38,38,205,18.50% +111871,908,2317,State-funded primary,148,71,77,48.00%,52.00%,3,2.00%,20,13.50%,3,139,6,2.00%,93.90%,4.10%,28,28,148,18.90% +111872,908,2318,State-funded primary,198,105,93,53.00%,47.00%,0,0.00%,23,11.60%,2,196,0,1.00%,99.00%,0.00%,13,14,198,7.10% +111875,908,2321,State-funded primary,318,146,172,45.90%,54.10%,10,3.10%,40,12.60%,17,301,0,5.30%,94.70%,0.00%,52,54,318,17.00% +111880,908,2400,State-funded primary,188,97,91,51.60%,48.40%,2,1.10%,23,12.20%,2,183,3,1.10%,97.30%,1.60%,26,28,188,14.90% +111882,908,2403,State-funded primary,113,50,63,44.20%,55.80%,0,0.00%,16,14.20%,4,109,0,3.50%,96.50%,0.00%,14,14,113,12.40% +111899,908,2441,State-funded primary,156,65,91,41.70%,58.30%,3,1.90%,23,14.70%,1,137,18,0.60%,87.80%,11.50%,34,36,156,23.10% +111901,908,2444,State-funded primary,65,35,30,53.80%,46.20%,1,1.50%,2,3.10%,0,65,0,0.00%,100.00%,0.00%,7,7,65,10.80% +111912,908,2504,State-funded primary,60,35,25,58.30%,41.70%,0,0.00%,8,13.30%,0,60,0,0.00%,100.00%,0.00%,14,14,60,23.30% +111914,908,2507,State-funded primary,116,57,59,49.10%,50.90%,2,1.70%,11,9.50%,0,116,0,0.00%,100.00%,0.00%,12,12,116,10.30% +111929,908,2606,State-funded primary,59,34,25,57.60%,42.40%,1,1.70%,8,13.60%,2,56,1,3.40%,94.90%,1.70%,16,17,59,28.80% +111930,908,2608,State-funded primary,150,73,77,48.70%,51.30%,6,4.00%,11,7.30%,0,150,0,0.00%,100.00%,0.00%,37,37,150,24.70% +111933,908,2613,State-funded primary,57,18,39,31.60%,68.40%,3,5.30%,9,15.80%,3,54,0,5.30%,94.70%,0.00%,10,10,57,17.50% +111941,908,2627,State-funded primary,99,46,53,46.50%,53.50%,0,0.00%,8,8.10%,0,97,2,0.00%,98.00%,2.00%,8,10,99,10.10% +111947,908,2633,State-funded primary,114,61,53,53.50%,46.50%,2,1.80%,17,14.90%,1,102,11,0.90%,89.50%,9.60%,16,16,114,14.00% +111948,908,2634,State-funded primary,187,97,90,51.90%,48.10%,2,1.10%,37,19.80%,5,182,0,2.70%,97.30%,0.00%,34,36,187,19.30% +111951,908,2701,State-funded primary,64,40,24,62.50%,37.50%,0,0.00%,12,18.80%,2,60,2,3.10%,93.80%,3.10%,10,10,64,15.60% +111960,908,2713,State-funded primary,90,43,47,47.80%,52.20%,2,2.20%,7,7.80%,2,87,1,2.20%,96.70%,1.10%,24,25,90,27.80% +111963,908,2718,State-funded primary,107,53,54,49.50%,50.50%,0,0.00%,22,20.60%,1,99,7,0.90%,92.50%,6.50%,20,21,107,19.60% +111964,908,2719,State-funded primary,96,50,46,52.10%,47.90%,1,1.00%,3,3.10%,0,96,0,0.00%,100.00%,0.00%,9,9,96,9.40% +111966,908,2723,State-funded primary,389,203,186,52.20%,47.80%,14,3.60%,60,15.40%,10,379,0,2.60%,97.40%,0.00%,100,102,389,26.20% +111967,908,2724,State-funded primary,197,103,94,52.30%,47.70%,4,2.00%,28,14.20%,1,191,5,0.50%,97.00%,2.50%,22,22,197,11.20% +111968,908,2725,State-funded primary,235,99,136,42.10%,57.90%,2,0.90%,40,17.00%,4,231,0,1.70%,98.30%,0.00%,31,29,192,15.10% +111969,908,2726,State-funded primary,336,164,172,48.80%,51.20%,7,2.10%,53,15.80%,10,322,4,3.00%,95.80%,1.20%,81,85,336,25.30% +111972,908,2730,State-funded primary,395,188,207,47.60%,52.40%,27,6.80%,44,11.10%,4,391,0,1.00%,99.00%,0.00%,62,66,395,16.70% +111975,908,2736,State-funded primary,161,75,86,46.60%,53.40%,0,0.00%,21,13.00%,1,148,12,0.60%,91.90%,7.50%,24,25,161,15.50% +111978,908,2741,State-funded primary,210,103,107,49.00%,51.00%,3,1.40%,15,7.10%,1,209,0,0.50%,99.50%,0.00%,15,15,210,7.10% +111982,908,2746,State-funded primary,78,35,43,44.90%,55.10%,3,3.80%,13,16.70%,0,76,2,0.00%,97.40%,2.60%,13,13,78,16.70% +111983,908,2747,State-funded primary,384,205,179,53.40%,46.60%,8,2.10%,56,14.60%,7,364,13,1.80%,94.80%,3.40%,72,73,384,19.00% +111988,908,3033,State-funded primary,95,43,52,45.30%,54.70%,1,1.10%,14,14.70%,1,92,2,1.10%,96.80%,2.10%,16,16,85,18.80% +111990,908,3091,State-funded primary,207,102,105,49.30%,50.70%,5,2.40%,30,14.50%,2,205,0,1.00%,99.00%,0.00%,38,39,207,18.80% +111996,908,3300,State-funded primary,39,16,23,41.00%,59.00%,0,0.00%,12,30.80%,0,39,0,0.00%,100.00%,0.00%,19,20,39,51.30% +111998,908,3302,State-funded primary,133,70,63,52.60%,47.40%,1,0.80%,19,14.30%,7,126,0,5.30%,94.70%,0.00%,46,49,133,36.80% +112002,908,3385,State-funded primary,135,69,66,51.10%,48.90%,3,2.20%,10,7.40%,0,135,0,0.00%,100.00%,0.00%,16,17,135,12.60% +112034,908,3888,State-funded primary,194,96,98,49.50%,50.50%,6,3.10%,33,17.00%,4,190,0,2.10%,97.90%,0.00%,29,30,194,15.50% +112041,908,4144,State-funded secondary,752,387,365,51.50%,48.50%,10,1.30%,131,17.40%,24,702,26,3.20%,93.40%,3.50%,162,173,699,24.70% +112045,908,4150,State-funded secondary,1161,577,584,49.70%,50.30%,21,1.80%,159,13.70%,8,1101,52,0.70%,94.80%,4.50%,199,212,1022,20.70% +112054,908,4159,State-funded secondary,1452,693,759,47.70%,52.30%,45,3.10%,306,21.10%,29,1423,0,2.00%,98.00%,0.00%,339,374,1452,25.80% +112055,908,4160,State-funded secondary,1508,709,799,47.00%,53.00%,53,3.50%,207,13.70%,28,1477,3,1.90%,97.90%,0.20%,239,263,1508,17.40% +112067,908,4173,State-funded secondary,809,386,423,47.70%,52.30%,16,2.00%,190,23.50%,22,774,13,2.70%,95.70%,1.60%,246,272,809,33.60% +112071,908,6040,Independent school,248,131,117,52.80%,47.20%,1,0.40%,43,17.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112075,908,6076,Independent school,91,37,54,40.70%,59.30%,1,1.10%,7,7.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112076,908,6079,Independent school,829,325,504,39.20%,60.80%,0,0.00%,238,28.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112077,908,6080,Independent school,403,403,0,100.00%,0.00%,0,0.00%,61,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112081,908,6086,Independent school,298,116,182,38.90%,61.10%,0,0.00%,73,24.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112082,908,6089,Independent school,78,34,44,43.60%,56.40%,0,0.00%,16,20.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112088,909,1001,State-funded nursery,37,15,22,40.50%,59.50%,0,0.00%,1,2.70%,1,36,0,2.70%,97.30%,0.00%,0,0,0,0.00% +112089,909,1002,State-funded nursery,49,23,26,46.90%,53.10%,0,0.00%,7,14.30%,1,48,0,2.00%,98.00%,0.00%,10,0,0,0.00% +112090,909,1003,State-funded nursery,42,19,23,45.20%,54.80%,0,0.00%,6,14.30%,1,41,0,2.40%,97.60%,0.00%,0,0,0,0.00% +112091,909,1005,State-funded nursery,79,37,42,46.80%,53.20%,2,2.50%,0,0.00%,2,77,0,2.50%,97.50%,0.00%,0,0,0,0.00% +112093,909,1011,State-funded nursery,80,33,47,41.30%,58.80%,2,2.50%,9,11.30%,6,74,0,7.50%,92.50%,0.00%,0,0,0,0.00% +112095,909,1100,State-funded AP school,42,5,37,11.90%,88.10%,14,33.30%,28,66.70%,1,41,0,2.40%,97.60%,0.00%,20,25,42,59.50% +112096,909,1103,State-funded AP school,26,9,17,34.60%,65.40%,5,19.20%,21,80.80%,0,26,0,0.00%,100.00%,0.00%,15,19,26,73.10% +112098,909,1105,State-funded AP school,44,11,33,25.00%,75.00%,18,40.90%,26,59.10%,0,42,2,0.00%,95.50%,4.50%,27,30,44,68.20% +112100,909,2001,State-funded primary,20,9,11,45.00%,55.00%,1,5.00%,1,5.00%,1,19,0,5.00%,95.00%,0.00%,5,6,19,31.60% +112101,909,2004,State-funded primary,100,56,44,56.00%,44.00%,1,1.00%,20,20.00%,0,100,0,0.00%,100.00%,0.00%,19,20,100,20.00% +112102,909,2005,State-funded primary,75,34,41,45.30%,54.70%,0,0.00%,17,22.70%,0,75,0,0.00%,100.00%,0.00%,6,7,65,10.80% +112103,909,2008,State-funded primary,19,10,9,52.60%,47.40%,1,5.30%,3,15.80%,0,19,0,0.00%,100.00%,0.00%,5,5,16,31.30% +112104,909,2010,State-funded primary,69,42,27,60.90%,39.10%,2,2.90%,13,18.80%,0,69,0,0.00%,100.00%,0.00%,3,4,62,6.50% +112106,909,2014,State-funded primary,108,54,54,50.00%,50.00%,2,1.90%,3,2.80%,0,108,0,0.00%,100.00%,0.00%,6,6,96,6.30% +112107,909,2019,State-funded primary,104,51,53,49.00%,51.00%,2,1.90%,8,7.70%,1,103,0,1.00%,99.00%,0.00%,11,12,104,11.50% +112108,909,2020,State-funded primary,192,102,90,53.10%,46.90%,5,2.60%,13,6.80%,0,192,0,0.00%,100.00%,0.00%,11,11,192,5.70% +112110,909,2027,State-funded primary,30,18,12,60.00%,40.00%,1,3.30%,9,30.00%,3,27,0,10.00%,90.00%,0.00%,12,12,30,40.00% +112111,909,2028,State-funded primary,47,21,26,44.70%,55.30%,0,0.00%,3,6.40%,0,47,0,0.00%,100.00%,0.00%,1,1,38,2.60% +112112,909,2032,State-funded primary,32,13,19,40.60%,59.40%,1,3.10%,6,18.80%,0,32,0,0.00%,100.00%,0.00%,6,6,29,20.70% +112113,909,2033,State-funded primary,66,30,36,45.50%,54.50%,0,0.00%,8,12.10%,0,66,0,0.00%,100.00%,0.00%,4,5,59,8.50% +112114,909,2035,State-funded primary,87,52,35,59.80%,40.20%,3,3.40%,8,9.20%,0,87,0,0.00%,100.00%,0.00%,7,7,72,9.70% +112116,909,2040,State-funded primary,20,6,14,30.00%,70.00%,1,5.00%,3,15.00%,0,20,0,0.00%,100.00%,0.00%,2,2,20,10.00% +112117,909,2045,State-funded primary,157,66,91,42.00%,58.00%,6,3.80%,39,24.80%,41,115,1,26.10%,73.20%,0.60%,38,39,130,30.00% +112118,909,2046,State-funded primary,198,89,109,44.90%,55.10%,15,7.60%,39,19.70%,28,170,0,14.10%,85.90%,0.00%,50,51,198,25.80% +112119,909,5225,State-funded primary,53,26,27,49.10%,50.90%,2,3.80%,7,13.20%,3,50,0,5.70%,94.30%,0.00%,3,3,48,6.30% +112120,909,2054,State-funded primary,102,45,57,44.10%,55.90%,2,2.00%,12,11.80%,1,101,0,1.00%,99.00%,0.00%,8,8,87,9.20% +112121,909,2058,State-funded primary,82,48,34,58.50%,41.50%,0,0.00%,7,8.50%,1,81,0,1.20%,98.80%,0.00%,3,3,70,4.30% +112122,909,2059,State-funded primary,156,74,82,47.40%,52.60%,2,1.30%,9,5.80%,5,151,0,3.20%,96.80%,0.00%,23,24,149,16.10% +112123,909,2060,State-funded primary,116,57,59,49.10%,50.90%,3,2.60%,8,6.90%,4,112,0,3.40%,96.60%,0.00%,11,12,105,11.40% +112125,909,2069,State-funded primary,235,123,112,52.30%,47.70%,12,5.10%,28,11.90%,4,231,0,1.70%,98.30%,0.00%,30,31,235,13.20% +112126,909,2070,State-funded primary,191,101,90,52.90%,47.10%,11,5.80%,17,8.90%,7,184,0,3.70%,96.30%,0.00%,18,18,161,11.20% +112127,909,2071,State-funded primary,188,90,98,47.90%,52.10%,4,2.10%,23,12.20%,1,187,0,0.50%,99.50%,0.00%,41,41,152,27.00% +112129,909,2103,State-funded primary,72,50,22,69.40%,30.60%,2,2.80%,2,2.80%,0,72,0,0.00%,100.00%,0.00%,9,10,57,17.50% +112132,909,2117,State-funded primary,84,44,40,52.40%,47.60%,4,4.80%,28,33.30%,2,82,0,2.40%,97.60%,0.00%,19,19,52,36.50% +112136,909,2126,State-funded primary,122,52,70,42.60%,57.40%,5,4.10%,18,14.80%,5,117,0,4.10%,95.90%,0.00%,69,73,122,59.80% +112137,909,2127,State-funded primary,67,36,31,53.70%,46.30%,0,0.00%,10,14.90%,4,63,0,6.00%,94.00%,0.00%,16,16,46,34.80% +112138,909,5226,State-funded primary,64,36,28,56.30%,43.80%,0,0.00%,12,18.80%,0,64,0,0.00%,100.00%,0.00%,30,26,52,50.00% +112143,909,2143,State-funded primary,65,34,31,52.30%,47.70%,4,6.20%,7,10.80%,9,56,0,13.80%,86.20%,0.00%,14,13,47,27.70% +112144,909,2144,State-funded primary,312,148,164,47.40%,52.60%,10,3.20%,37,11.90%,9,303,0,2.90%,97.10%,0.00%,69,70,207,33.80% +112145,909,2146,State-funded primary,264,130,134,49.20%,50.80%,12,4.50%,56,21.20%,12,252,0,4.50%,95.50%,0.00%,120,123,264,46.60% +112146,909,2147,State-funded primary,208,105,103,50.50%,49.50%,6,2.90%,9,4.30%,1,204,3,0.50%,98.10%,1.40%,26,27,178,15.20% +112147,909,2148,State-funded primary,254,140,114,55.10%,44.90%,11,4.30%,28,11.00%,4,250,0,1.60%,98.40%,0.00%,54,59,254,23.20% +112155,909,2207,State-funded primary,208,93,115,44.70%,55.30%,6,2.90%,15,7.20%,2,206,0,1.00%,99.00%,0.00%,35,35,208,16.80% +112156,909,2211,State-funded primary,135,63,72,46.70%,53.30%,5,3.70%,27,20.00%,1,134,0,0.70%,99.30%,0.00%,27,27,135,20.00% +112157,909,2212,State-funded primary,159,79,80,49.70%,50.30%,8,5.00%,15,9.40%,0,158,1,0.00%,99.40%,0.60%,21,23,159,14.50% +112158,909,2216,State-funded primary,55,28,27,50.90%,49.10%,2,3.60%,10,18.20%,0,55,0,0.00%,100.00%,0.00%,13,13,55,23.60% +112159,909,2219,State-funded primary,79,36,43,45.60%,54.40%,4,5.10%,12,15.20%,0,79,0,0.00%,100.00%,0.00%,22,26,79,32.90% +112160,909,2220,State-funded primary,111,62,49,55.90%,44.10%,4,3.60%,21,18.90%,4,107,0,3.60%,96.40%,0.00%,38,39,111,35.10% +112161,909,2222,State-funded primary,82,38,44,46.30%,53.70%,2,2.40%,12,14.60%,0,82,0,0.00%,100.00%,0.00%,15,15,71,21.10% +112162,909,2223,State-funded primary,113,58,55,51.30%,48.70%,4,3.50%,14,12.40%,3,110,0,2.70%,97.30%,0.00%,9,9,105,8.60% +112163,909,2224,State-funded primary,117,57,60,48.70%,51.30%,7,6.00%,20,17.10%,3,114,0,2.60%,97.40%,0.00%,18,20,111,18.00% +112164,909,2225,State-funded primary,193,89,104,46.10%,53.90%,7,3.60%,12,6.20%,1,192,0,0.50%,99.50%,0.00%,14,14,161,8.70% +112166,909,2227,State-funded primary,45,24,21,53.30%,46.70%,1,2.20%,9,20.00%,2,43,0,4.40%,95.60%,0.00%,8,8,41,19.50% +112167,909,2228,State-funded primary,226,126,100,55.80%,44.20%,12,5.30%,39,17.30%,3,223,0,1.30%,98.70%,0.00%,43,44,208,21.20% +112169,909,2230,State-funded primary,117,61,56,52.10%,47.90%,5,4.30%,12,10.30%,8,109,0,6.80%,93.20%,0.00%,24,24,83,28.90% +112170,909,2231,State-funded primary,107,45,62,42.10%,57.90%,6,5.60%,16,15.00%,7,100,0,6.50%,93.50%,0.00%,44,46,107,43.00% +112175,909,2237,State-funded primary,435,212,223,48.70%,51.30%,13,3.00%,50,11.50%,16,419,0,3.70%,96.30%,0.00%,46,46,381,12.10% +112176,909,2301,State-funded primary,65,34,31,52.30%,47.70%,0,0.00%,10,15.40%,0,65,0,0.00%,100.00%,0.00%,10,13,65,20.00% +112177,909,2302,State-funded primary,79,31,48,39.20%,60.80%,1,1.30%,6,7.60%,0,79,0,0.00%,100.00%,0.00%,19,19,79,24.10% +112178,909,2305,State-funded primary,83,45,38,54.20%,45.80%,1,1.20%,11,13.30%,0,83,0,0.00%,100.00%,0.00%,7,7,74,9.50% +112179,909,2308,State-funded primary,136,63,73,46.30%,53.70%,3,2.20%,17,12.50%,5,131,0,3.70%,96.30%,0.00%,11,13,116,11.20% +112180,909,2310,State-funded primary,231,115,116,49.80%,50.20%,2,0.90%,19,8.20%,5,226,0,2.20%,97.80%,0.00%,45,46,214,21.50% +112181,909,2311,State-funded primary,34,16,18,47.10%,52.90%,0,0.00%,5,14.70%,1,33,0,2.90%,97.10%,0.00%,8,8,30,26.70% +112182,909,2313,State-funded primary,88,51,37,58.00%,42.00%,2,2.30%,11,12.50%,0,88,0,0.00%,100.00%,0.00%,7,7,81,8.60% +112183,909,2314,State-funded primary,9,3,6,33.30%,66.70%,0,0.00%,1,11.10%,0,9,0,0.00%,100.00%,0.00%,0,3,9,33.30% +112184,909,2315,State-funded primary,178,87,91,48.90%,51.10%,2,1.10%,14,7.90%,7,171,0,3.90%,96.10%,0.00%,12,16,155,10.30% +112190,909,2321,State-funded primary,441,225,216,51.00%,49.00%,5,1.10%,46,10.40%,16,425,0,3.60%,96.40%,0.00%,37,43,377,11.40% +112191,909,2322,State-funded primary,92,44,48,47.80%,52.20%,3,3.30%,16,17.40%,15,77,0,16.30%,83.70%,0.00%,10,12,83,14.50% +112192,909,2403,State-funded primary,119,69,50,58.00%,42.00%,4,3.40%,4,3.40%,4,115,0,3.40%,96.60%,0.00%,25,26,74,35.10% +112193,909,2404,State-funded primary,65,35,30,53.80%,46.20%,5,7.70%,5,7.70%,0,65,0,0.00%,100.00%,0.00%,1,2,55,3.60% +112195,909,2407,State-funded primary,49,31,18,63.30%,36.70%,1,2.00%,2,4.10%,0,49,0,0.00%,100.00%,0.00%,0,0,49,0.00% +112197,909,2413,State-funded primary,185,87,98,47.00%,53.00%,5,2.70%,2,1.10%,1,184,0,0.50%,99.50%,0.00%,5,7,114,6.10% +112198,909,2414,State-funded primary,137,78,59,56.90%,43.10%,8,5.80%,22,16.10%,0,137,0,0.00%,100.00%,0.00%,24,26,137,19.00% +112199,909,2502,State-funded primary,106,51,55,48.10%,51.90%,4,3.80%,35,33.00%,3,103,0,2.80%,97.20%,0.00%,49,51,106,48.10% +112206,909,2509,State-funded primary,161,79,82,49.10%,50.90%,21,13.00%,39,24.20%,9,152,0,5.60%,94.40%,0.00%,86,90,161,55.90% +112207,909,2511,State-funded primary,199,101,98,50.80%,49.20%,5,2.50%,8,4.00%,1,197,1,0.50%,99.00%,0.50%,28,29,199,14.60% +112208,909,2512,State-funded primary,118,68,50,57.60%,42.40%,8,6.80%,19,16.10%,4,114,0,3.40%,96.60%,0.00%,43,43,102,42.20% +112210,909,2514,State-funded primary,214,101,113,47.20%,52.80%,2,0.90%,18,8.40%,6,208,0,2.80%,97.20%,0.00%,18,18,169,10.70% +112211,909,2515,State-funded primary,194,85,109,43.80%,56.20%,7,3.60%,40,20.60%,0,194,0,0.00%,100.00%,0.00%,36,36,194,18.60% +112212,909,2518,State-funded primary,191,93,98,48.70%,51.30%,2,1.00%,27,14.10%,2,189,0,1.00%,99.00%,0.00%,27,28,158,17.70% +112213,909,2521,State-funded primary,275,136,139,49.50%,50.50%,9,3.30%,20,7.30%,15,260,0,5.50%,94.50%,0.00%,11,12,213,5.60% +112216,909,2606,State-funded primary,248,132,116,53.20%,46.80%,16,6.50%,41,16.50%,26,222,0,10.50%,89.50%,0.00%,83,86,248,34.70% +112217,909,2607,State-funded primary,238,111,127,46.60%,53.40%,16,6.70%,29,12.20%,22,216,0,9.20%,90.80%,0.00%,68,71,166,42.80% +112219,909,2609,State-funded primary,329,154,175,46.80%,53.20%,6,1.80%,8,2.40%,24,305,0,7.30%,92.70%,0.00%,70,71,329,21.60% +112224,909,2618,State-funded primary,238,116,122,48.70%,51.30%,3,1.30%,35,14.70%,2,236,0,0.80%,99.20%,0.00%,35,37,238,15.50% +112226,909,2620,State-funded primary,215,109,106,50.70%,49.30%,4,1.90%,27,12.60%,9,206,0,4.20%,95.80%,0.00%,27,27,180,15.00% +112228,909,2622,State-funded primary,435,226,209,52.00%,48.00%,12,2.80%,39,9.00%,10,425,0,2.30%,97.70%,0.00%,73,73,435,16.80% +112229,909,2623,State-funded primary,332,169,163,50.90%,49.10%,7,2.10%,37,11.10%,19,313,0,5.70%,94.30%,0.00%,43,47,332,14.20% +112230,909,2625,State-funded primary,289,143,146,49.50%,50.50%,11,3.80%,46,15.90%,16,273,0,5.50%,94.50%,0.00%,31,31,224,13.80% +112231,909,2626,State-funded primary,207,105,102,50.70%,49.30%,2,1.00%,18,8.70%,122,85,0,58.90%,41.10%,0.00%,57,58,189,30.70% +112232,909,2627,State-funded primary,223,110,113,49.30%,50.70%,16,7.20%,34,15.20%,6,217,0,2.70%,97.30%,0.00%,38,40,200,20.00% +112233,909,2700,State-funded primary,152,76,76,50.00%,50.00%,4,2.60%,12,7.90%,3,149,0,2.00%,98.00%,0.00%,13,14,128,10.90% +112234,909,2701,State-funded primary,94,43,51,45.70%,54.30%,3,3.20%,13,13.80%,5,89,0,5.30%,94.70%,0.00%,23,26,94,27.70% +112235,909,2703,State-funded primary,181,74,107,40.90%,59.10%,7,3.90%,25,13.80%,3,178,0,1.70%,98.30%,0.00%,33,34,160,21.30% +112236,909,2704,State-funded primary,141,75,66,53.20%,46.80%,8,5.70%,35,24.80%,10,131,0,7.10%,92.90%,0.00%,47,47,141,33.30% +112238,909,2706,State-funded primary,43,24,19,55.80%,44.20%,1,2.30%,12,27.90%,0,43,0,0.00%,100.00%,0.00%,1,2,43,4.70% +112239,909,2707,State-funded primary,93,51,42,54.80%,45.20%,7,7.50%,14,15.10%,0,93,0,0.00%,100.00%,0.00%,36,37,83,44.60% +112240,909,2708,State-funded primary,24,13,11,54.20%,45.80%,2,8.30%,0,0.00%,0,24,0,0.00%,100.00%,0.00%,11,11,22,50.00% +112242,909,2710,State-funded primary,431,200,231,46.40%,53.60%,19,4.40%,76,17.60%,42,389,0,9.70%,90.30%,0.00%,119,121,403,30.00% +112243,909,2711,State-funded primary,376,165,211,43.90%,56.10%,16,4.30%,18,4.80%,10,366,0,2.70%,97.30%,0.00%,123,125,343,36.40% +112244,909,2712,State-funded primary,440,224,216,50.90%,49.10%,14,3.20%,79,18.00%,8,432,0,1.80%,98.20%,0.00%,39,41,397,10.30% +112245,909,3002,State-funded primary,78,40,38,51.30%,48.70%,2,2.60%,19,24.40%,0,78,0,0.00%,100.00%,0.00%,3,3,78,3.80% +112246,909,3007,State-funded primary,202,111,91,55.00%,45.00%,4,2.00%,25,12.40%,2,200,0,1.00%,99.00%,0.00%,20,20,202,9.90% +112248,909,3013,State-funded primary,158,72,86,45.60%,54.40%,4,2.50%,16,10.10%,2,156,0,1.30%,98.70%,0.00%,3,3,143,2.10% +112249,909,3014,State-funded primary,55,22,33,40.00%,60.00%,0,0.00%,10,18.20%,1,54,0,1.80%,98.20%,0.00%,11,13,55,23.60% +112250,909,3015,State-funded primary,193,88,105,45.60%,54.40%,10,5.20%,18,9.30%,2,191,0,1.00%,99.00%,0.00%,10,10,193,5.20% +112251,909,3017,State-funded primary,31,17,14,54.80%,45.20%,0,0.00%,1,3.20%,1,30,0,3.20%,96.80%,0.00%,0,0,25,0.00% +112252,909,3018,State-funded primary,107,47,60,43.90%,56.10%,0,0.00%,12,11.20%,2,105,0,1.90%,98.10%,0.00%,7,7,94,7.40% +112253,909,3019,State-funded primary,63,28,35,44.40%,55.60%,0,0.00%,0,0.00%,0,63,0,0.00%,100.00%,0.00%,5,5,59,8.50% +112254,909,3020,State-funded primary,88,32,56,36.40%,63.60%,0,0.00%,12,13.60%,2,86,0,2.30%,97.70%,0.00%,2,3,71,4.20% +112255,909,3021,State-funded primary,144,75,69,52.10%,47.90%,1,0.70%,18,12.50%,1,143,0,0.70%,99.30%,0.00%,17,18,134,13.40% +112256,909,3023,State-funded primary,24,11,13,45.80%,54.20%,1,4.20%,4,16.70%,0,24,0,0.00%,100.00%,0.00%,3,3,15,20.00% +112257,909,3030,State-funded primary,59,32,27,54.20%,45.80%,0,0.00%,2,3.40%,5,54,0,8.50%,91.50%,0.00%,1,1,46,2.20% +112258,909,3031,State-funded primary,142,57,85,40.10%,59.90%,9,6.30%,25,17.60%,0,142,0,0.00%,100.00%,0.00%,9,9,133,6.80% +112259,909,3032,State-funded primary,47,19,28,40.40%,59.60%,0,0.00%,6,12.80%,2,45,0,4.30%,95.70%,0.00%,5,5,36,13.90% +112262,909,3054,State-funded primary,94,45,49,47.90%,52.10%,2,2.10%,7,7.40%,2,92,0,2.10%,97.90%,0.00%,8,8,79,10.10% +112263,909,3056,State-funded primary,114,58,56,50.90%,49.10%,6,5.30%,12,10.50%,3,111,0,2.60%,97.40%,0.00%,7,8,103,7.80% +112264,909,3057,State-funded primary,97,50,47,51.50%,48.50%,4,4.10%,18,18.60%,7,90,0,7.20%,92.80%,0.00%,12,12,97,12.40% +112265,909,3058,State-funded primary,96,47,49,49.00%,51.00%,5,5.20%,25,26.00%,2,94,0,2.10%,97.90%,0.00%,5,6,86,7.00% +112266,909,3059,State-funded primary,47,22,25,46.80%,53.20%,2,4.30%,5,10.60%,0,47,0,0.00%,100.00%,0.00%,3,3,42,7.10% +112267,909,3061,State-funded primary,12,5,7,41.70%,58.30%,1,8.30%,2,16.70%,0,12,0,0.00%,100.00%,0.00%,0,1,12,8.30% +112269,909,3064,State-funded primary,101,44,57,43.60%,56.40%,1,1.00%,15,14.90%,6,95,0,5.90%,94.10%,0.00%,10,10,101,9.90% +112270,909,3100,State-funded primary,141,67,74,47.50%,52.50%,4,2.80%,13,9.20%,2,139,0,1.40%,98.60%,0.00%,1,1,141,0.70% +112271,909,3101,State-funded primary,89,44,45,49.40%,50.60%,3,3.40%,9,10.10%,0,89,0,0.00%,100.00%,0.00%,9,10,77,13.00% +112272,909,3102,State-funded primary,203,103,100,50.70%,49.30%,20,9.90%,37,18.20%,3,200,0,1.50%,98.50%,0.00%,46,46,187,24.60% +112273,909,3103,State-funded primary,55,26,29,47.30%,52.70%,2,3.60%,5,9.10%,1,54,0,1.80%,98.20%,0.00%,14,14,46,30.40% +112274,909,3112,State-funded primary,284,139,145,48.90%,51.10%,13,4.60%,19,6.70%,4,280,0,1.40%,98.60%,0.00%,35,39,250,15.60% +112275,909,3114,State-funded primary,54,24,30,44.40%,55.60%,2,3.70%,1,1.90%,0,54,0,0.00%,100.00%,0.00%,6,6,54,11.10% +112277,909,3116,State-funded primary,208,94,114,45.20%,54.80%,2,1.00%,23,11.10%,3,205,0,1.40%,98.60%,0.00%,35,35,208,16.80% +112279,909,3122,State-funded primary,65,28,37,43.10%,56.90%,4,6.20%,15,23.10%,1,64,0,1.50%,98.50%,0.00%,9,9,59,15.30% +112280,909,3123,State-funded primary,175,97,78,55.40%,44.60%,1,0.60%,17,9.70%,14,161,0,8.00%,92.00%,0.00%,12,12,143,8.40% +112281,909,3124,State-funded primary,72,29,43,40.30%,59.70%,5,6.90%,11,15.30%,0,72,0,0.00%,100.00%,0.00%,6,6,64,9.40% +112282,909,3125,State-funded primary,111,50,61,45.00%,55.00%,2,1.80%,7,6.30%,7,104,0,6.30%,93.70%,0.00%,11,13,96,13.50% +112283,909,3126,State-funded primary,60,26,34,43.30%,56.70%,4,6.70%,9,15.00%,2,58,0,3.30%,96.70%,0.00%,6,6,60,10.00% +112284,909,3128,State-funded primary,196,107,89,54.60%,45.40%,5,2.60%,26,13.30%,0,196,0,0.00%,100.00%,0.00%,17,17,196,8.70% +112286,909,3130,State-funded primary,55,29,26,52.70%,47.30%,5,9.10%,6,10.90%,0,55,0,0.00%,100.00%,0.00%,1,1,48,2.10% +112287,909,3132,State-funded primary,135,63,72,46.70%,53.30%,0,0.00%,23,17.00%,4,131,0,3.00%,97.00%,0.00%,11,11,111,9.90% +112289,909,3150,State-funded primary,253,111,142,43.90%,56.10%,16,6.30%,48,19.00%,8,245,0,3.20%,96.80%,0.00%,103,105,196,53.60% +112290,909,3200,State-funded primary,33,27,6,81.80%,18.20%,0,0.00%,12,36.40%,0,33,0,0.00%,100.00%,0.00%,6,6,26,23.10% +112293,909,3204,State-funded primary,54,30,24,55.60%,44.40%,2,3.70%,5,9.30%,0,54,0,0.00%,100.00%,0.00%,3,3,54,5.60% +112294,909,3206,State-funded primary,115,48,67,41.70%,58.30%,1,0.90%,12,10.40%,2,113,0,1.70%,98.30%,0.00%,6,6,115,5.20% +112296,909,3209,State-funded primary,70,26,44,37.10%,62.90%,3,4.30%,22,31.40%,0,68,2,0.00%,97.10%,2.90%,21,23,64,35.90% +112297,909,3210,State-funded primary,138,58,80,42.00%,58.00%,5,3.60%,14,10.10%,9,129,0,6.50%,93.50%,0.00%,13,13,106,12.30% +112298,909,3211,State-funded primary,160,74,86,46.30%,53.80%,4,2.50%,20,12.50%,3,157,0,1.90%,98.10%,0.00%,18,20,160,12.50% +112299,909,3212,State-funded primary,143,75,68,52.40%,47.60%,5,3.50%,7,4.90%,0,143,0,0.00%,100.00%,0.00%,6,6,129,4.70% +112300,909,3301,State-funded primary,51,24,27,47.10%,52.90%,3,5.90%,4,7.80%,0,51,0,0.00%,100.00%,0.00%,11,11,46,23.90% +112301,909,3304,State-funded primary,68,35,33,51.50%,48.50%,3,4.40%,7,10.30%,0,68,0,0.00%,100.00%,0.00%,8,10,68,14.70% +112302,909,3305,State-funded primary,40,20,20,50.00%,50.00%,3,7.50%,4,10.00%,0,40,0,0.00%,100.00%,0.00%,0,0,34,0.00% +112303,909,3309,State-funded primary,84,37,47,44.00%,56.00%,0,0.00%,16,19.00%,0,84,0,0.00%,100.00%,0.00%,7,8,84,9.50% +112305,909,3315,State-funded primary,111,63,48,56.80%,43.20%,4,3.60%,17,15.30%,16,94,1,14.40%,84.70%,0.90%,18,18,111,16.20% +112306,909,3316,State-funded primary,61,27,34,44.30%,55.70%,0,0.00%,6,9.80%,0,61,0,0.00%,100.00%,0.00%,0,0,61,0.00% +112307,909,3319,State-funded primary,130,62,68,47.70%,52.30%,4,3.10%,9,6.90%,3,127,0,2.30%,97.70%,0.00%,6,7,118,5.90% +112308,909,3322,State-funded primary,56,24,32,42.90%,57.10%,0,0.00%,7,12.50%,0,56,0,0.00%,100.00%,0.00%,0,0,56,0.00% +112309,909,3324,State-funded primary,76,35,41,46.10%,53.90%,1,1.30%,16,21.10%,0,76,0,0.00%,100.00%,0.00%,6,6,57,10.50% +112310,909,3328,State-funded primary,115,65,50,56.50%,43.50%,3,2.60%,24,20.90%,10,105,0,8.70%,91.30%,0.00%,29,32,96,33.30% +112313,909,3354,State-funded primary,52,29,23,55.80%,44.20%,0,0.00%,13,25.00%,0,52,0,0.00%,100.00%,0.00%,3,4,49,8.20% +112314,909,3355,State-funded primary,90,38,52,42.20%,57.80%,1,1.10%,11,12.20%,11,79,0,12.20%,87.80%,0.00%,12,15,75,20.00% +112315,909,3356,State-funded primary,23,11,12,47.80%,52.20%,0,0.00%,5,21.70%,0,23,0,0.00%,100.00%,0.00%,1,1,21,4.80% +112316,909,3357,State-funded primary,63,34,29,54.00%,46.00%,1,1.60%,13,20.60%,0,63,0,0.00%,100.00%,0.00%,5,6,58,10.30% +112317,909,3358,State-funded primary,96,44,52,45.80%,54.20%,1,1.00%,17,17.70%,3,93,0,3.10%,96.90%,0.00%,6,6,88,6.80% +112318,909,3359,State-funded primary,84,51,33,60.70%,39.30%,3,3.60%,6,7.10%,0,84,0,0.00%,100.00%,0.00%,9,9,69,13.00% +112319,909,3360,State-funded primary,83,40,43,48.20%,51.80%,2,2.40%,13,15.70%,13,70,0,15.70%,84.30%,0.00%,4,7,70,10.00% +112320,909,3361,State-funded primary,91,46,45,50.50%,49.50%,3,3.30%,24,26.40%,0,91,0,0.00%,100.00%,0.00%,2,4,77,5.20% +112321,909,3362,State-funded primary,25,15,10,60.00%,40.00%,3,12.00%,7,28.00%,2,23,0,8.00%,92.00%,0.00%,8,8,22,36.40% +112322,909,3365,State-funded primary,227,110,117,48.50%,51.50%,6,2.60%,40,17.60%,13,214,0,5.70%,94.30%,0.00%,40,41,199,20.60% +112323,909,3367,State-funded primary,235,124,111,52.80%,47.20%,5,2.10%,32,13.60%,4,231,0,1.70%,98.30%,0.00%,11,14,211,6.60% +112324,909,3368,State-funded primary,113,57,56,50.40%,49.60%,2,1.80%,7,6.20%,0,113,0,0.00%,100.00%,0.00%,8,8,102,7.80% +112325,909,3370,State-funded primary,161,71,90,44.10%,55.90%,4,2.50%,18,11.20%,6,155,0,3.70%,96.30%,0.00%,11,13,161,8.10% +112326,909,3372,State-funded primary,35,15,20,42.90%,57.10%,1,2.90%,4,11.40%,6,29,0,17.10%,82.90%,0.00%,2,3,35,8.60% +112327,909,3373,State-funded primary,38,20,18,52.60%,47.40%,1,2.60%,5,13.20%,0,38,0,0.00%,100.00%,0.00%,0,0,31,0.00% +112328,909,3374,State-funded primary,93,51,42,54.80%,45.20%,3,3.20%,15,16.10%,3,90,0,3.20%,96.80%,0.00%,12,12,79,15.20% +112331,909,3381,State-funded primary,41,22,19,53.70%,46.30%,2,4.90%,8,19.50%,1,40,0,2.40%,97.60%,0.00%,5,5,36,13.90% +112332,909,3400,State-funded primary,51,29,22,56.90%,43.10%,3,5.90%,5,9.80%,0,51,0,0.00%,100.00%,0.00%,10,10,45,22.20% +112333,909,3401,State-funded primary,29,11,18,37.90%,62.10%,1,3.40%,9,31.00%,1,28,0,3.40%,96.60%,0.00%,11,10,27,37.00% +112338,909,3414,State-funded primary,204,112,92,54.90%,45.10%,6,2.90%,27,13.20%,3,201,0,1.50%,98.50%,0.00%,72,75,163,46.00% +112340,909,3416,State-funded primary,201,93,108,46.30%,53.70%,6,3.00%,20,10.00%,15,183,3,7.50%,91.00%,1.50%,50,50,201,24.90% +112342,909,3451,State-funded primary,55,27,28,49.10%,50.90%,0,0.00%,3,5.50%,0,55,0,0.00%,100.00%,0.00%,9,9,55,16.40% +112343,909,3452,State-funded primary,62,23,39,37.10%,62.90%,2,3.20%,25,40.30%,2,60,0,3.20%,96.80%,0.00%,5,7,57,12.30% +112345,909,3500,State-funded primary,73,34,39,46.60%,53.40%,2,2.70%,18,24.70%,1,72,0,1.40%,98.60%,0.00%,2,3,73,4.10% +112348,909,3506,State-funded primary,207,94,113,45.40%,54.60%,3,1.40%,35,16.90%,8,199,0,3.90%,96.10%,0.00%,42,45,166,27.10% +112349,909,3508,State-funded primary,25,16,9,64.00%,36.00%,1,4.00%,5,20.00%,3,22,0,12.00%,88.00%,0.00%,5,5,20,25.00% +112350,909,3510,State-funded primary,44,17,27,38.60%,61.40%,5,11.40%,12,27.30%,2,42,0,4.50%,95.50%,0.00%,11,12,44,27.30% +112351,909,3514,State-funded primary,178,91,87,51.10%,48.90%,13,7.30%,23,12.90%,0,178,0,0.00%,100.00%,0.00%,32,35,178,19.70% +112352,909,3516,State-funded primary,57,31,26,54.40%,45.60%,2,3.50%,10,17.50%,1,56,0,1.80%,98.20%,0.00%,4,4,51,7.80% +112353,909,3519,State-funded primary,197,105,92,53.30%,46.70%,5,2.50%,15,7.60%,12,185,0,6.10%,93.90%,0.00%,55,55,177,31.10% +112354,909,3520,State-funded primary,242,123,119,50.80%,49.20%,15,6.20%,12,5.00%,8,234,0,3.30%,96.70%,0.00%,85,91,242,37.60% +112355,909,3521,State-funded primary,278,151,127,54.30%,45.70%,6,2.20%,31,11.20%,9,269,0,3.20%,96.80%,0.00%,45,45,177,25.40% +112356,909,3550,State-funded primary,67,33,34,49.30%,50.70%,0,0.00%,8,11.90%,1,66,0,1.50%,98.50%,0.00%,7,7,67,10.40% +112361,909,3557,State-funded primary,99,51,48,51.50%,48.50%,2,2.00%,20,20.20%,0,99,0,0.00%,100.00%,0.00%,10,11,99,11.10% +112362,909,3601,State-funded primary,123,55,68,44.70%,55.30%,5,4.10%,13,10.60%,6,117,0,4.90%,95.10%,0.00%,55,61,123,49.60% +112364,909,3603,State-funded primary,204,116,88,56.90%,43.10%,10,4.90%,29,14.20%,4,200,0,2.00%,98.00%,0.00%,14,16,180,8.90% +112366,909,3607,State-funded primary,224,121,103,54.00%,46.00%,7,3.10%,6,2.70%,9,215,0,4.00%,96.00%,0.00%,12,12,198,6.10% +112369,909,3652,State-funded primary,230,106,124,46.10%,53.90%,10,4.30%,40,17.40%,49,181,0,21.30%,78.70%,0.00%,60,60,209,28.70% +112372,909,3656,State-funded primary,81,32,49,39.50%,60.50%,6,7.40%,6,7.40%,1,80,0,1.20%,98.80%,0.00%,12,12,81,14.80% +112375,909,4001,State-funded secondary,147,68,79,46.30%,53.70%,9,6.10%,56,38.10%,0,147,0,0.00%,100.00%,0.00%,37,41,147,27.90% +112377,909,4008,State-funded secondary,137,65,72,47.40%,52.60%,9,6.60%,55,40.10%,1,136,0,0.70%,99.30%,0.00%,49,52,137,38.00% +112378,909,4011,State-funded secondary,81,41,40,50.60%,49.40%,3,3.70%,21,25.90%,0,81,0,0.00%,100.00%,0.00%,19,23,81,28.40% +112379,909,4056,State-funded secondary,469,225,242,48.00%,51.60%,9,1.90%,41,8.70%,64,405,0,13.60%,86.40%,0.00%,49,50,411,12.20% +112382,909,4104,State-funded secondary,794,398,396,50.10%,49.90%,28,3.50%,56,7.10%,19,775,0,2.40%,97.60%,0.00%,271,279,721,38.70% +112383,909,4150,State-funded secondary,797,404,393,50.70%,49.30%,22,2.80%,87,10.90%,10,787,0,1.30%,98.70%,0.00%,112,130,797,16.30% +112384,909,4151,State-funded secondary,241,110,131,45.60%,54.40%,21,8.70%,41,17.00%,6,235,0,2.50%,97.50%,0.00%,25,30,241,12.40% +112385,909,4152,State-funded secondary,1339,684,655,51.10%,48.90%,35,2.60%,158,11.80%,40,1299,0,3.00%,97.00%,0.00%,120,128,1051,12.20% +112388,909,4204,State-funded secondary,503,235,268,46.70%,53.30%,25,5.00%,65,12.90%,6,495,2,1.20%,98.40%,0.40%,95,101,469,21.50% +112393,909,4310,State-funded secondary,1520,755,765,49.70%,50.30%,60,3.90%,193,12.70%,90,1412,18,5.90%,92.90%,1.20%,202,220,1330,16.50% +112397,909,4501,State-funded secondary,1219,639,580,52.40%,47.60%,25,2.10%,130,10.70%,31,1187,1,2.50%,97.40%,0.10%,138,136,1003,13.60% +112398,909,4622,State-funded secondary,1086,553,533,50.90%,49.10%,52,4.80%,77,7.10%,32,1052,2,2.90%,96.90%,0.20%,259,255,926,27.50% +112399,909,4630,State-funded secondary,644,340,304,52.80%,47.20%,17,2.60%,75,11.60%,78,566,0,12.10%,87.90%,0.00%,203,202,596,33.90% +112402,909,5200,State-funded primary,134,67,67,50.00%,50.00%,2,1.50%,17,12.70%,1,133,0,0.70%,99.30%,0.00%,5,6,123,4.90% +112403,909,5201,State-funded primary,246,116,130,47.20%,52.80%,4,1.60%,49,19.90%,9,236,1,3.70%,95.90%,0.40%,22,25,246,10.20% +112404,909,5202,State-funded primary,161,78,83,48.40%,51.60%,2,1.20%,18,11.20%,2,159,0,1.20%,98.80%,0.00%,17,18,132,13.60% +112405,909,5203,State-funded primary,209,101,108,48.30%,51.70%,11,5.30%,17,8.10%,4,205,0,1.90%,98.10%,0.00%,63,64,183,35.00% +112406,909,5204,State-funded primary,68,38,30,55.90%,44.10%,4,5.90%,22,32.40%,3,65,0,4.40%,95.60%,0.00%,8,8,68,11.80% +112408,909,5206,State-funded primary,193,92,101,47.70%,52.30%,10,5.20%,29,15.00%,8,185,0,4.10%,95.90%,0.00%,33,33,175,18.90% +112409,909,5207,State-funded primary,167,81,86,48.50%,51.50%,4,2.40%,14,8.40%,1,166,0,0.60%,99.40%,0.00%,12,12,141,8.50% +112410,909,5208,State-funded primary,72,37,35,51.40%,48.60%,2,2.80%,4,5.60%,3,69,0,4.20%,95.80%,0.00%,1,1,60,1.70% +112412,909,5210,State-funded primary,228,111,117,48.70%,51.30%,5,2.20%,37,16.20%,3,225,0,1.30%,98.70%,0.00%,16,18,200,9.00% +112414,909,5212,State-funded primary,47,19,28,40.40%,59.60%,0,0.00%,8,17.00%,0,47,0,0.00%,100.00%,0.00%,5,5,40,12.50% +112415,909,5213,State-funded primary,73,33,40,45.20%,54.80%,3,4.10%,11,15.10%,0,73,0,0.00%,100.00%,0.00%,7,7,62,11.30% +112417,909,5215,State-funded primary,58,27,31,46.60%,53.40%,2,3.40%,6,10.30%,2,56,0,3.40%,96.60%,0.00%,9,9,53,17.00% +112419,909,5217,State-funded primary,55,32,23,58.20%,41.80%,0,0.00%,11,20.00%,0,55,0,0.00%,100.00%,0.00%,1,1,53,1.90% +112420,909,5218,State-funded primary,104,49,55,47.10%,52.90%,1,1.00%,18,17.30%,5,99,0,4.80%,95.20%,0.00%,4,4,94,4.30% +112423,909,5221,State-funded primary,480,235,245,49.00%,51.00%,18,3.80%,50,10.40%,71,409,0,14.80%,85.20%,0.00%,94,99,441,22.40% +112442,909,6001,Independent school,169,74,95,43.80%,56.20%,2,1.20%,11,6.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112445,909,6005,Independent school,195,108,87,55.40%,44.60%,0,0.00%,32,16.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112446,909,6008,Independent school,328,155,173,47.30%,52.70%,4,1.20%,64,19.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112451,909,6026,Independent school,580,216,364,37.20%,62.80%,1,0.20%,183,31.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112452,909,6027,Independent school,59,0,59,0.00%,100.00%,56,94.90%,3,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112453,909,6032,Independent school,361,175,186,48.50%,51.50%,4,1.10%,73,20.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112456,815,6041,Independent school,88,30,58,34.10%,65.90%,79,89.80%,9,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112459,909,6041,Independent school,101,48,53,47.50%,52.50%,1,1.00%,12,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112461,909,6044,Independent school,78,17,61,21.80%,78.20%,77,98.70%,1,1.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +112464,909,7002,State-funded special school,218,61,157,28.00%,72.00%,218,100.00%,0,0.00%,7,211,0,3.20%,96.80%,0.00%,91,87,194,44.80% +112465,909,7006,State-funded special school,118,48,70,40.70%,59.30%,114,96.60%,4,3.40%,4,113,1,3.40%,95.80%,0.80%,37,32,89,36.00% +112466,909,7013,State-funded special school,84,34,50,40.50%,59.50%,84,100.00%,0,0.00%,1,83,0,1.20%,98.80%,0.00%,27,35,68,51.50% +112469,830,1001,State-funded nursery,102,57,45,55.90%,44.10%,0,0.00%,38,37.30%,3,99,0,2.90%,97.10%,0.00%,14,0,0,0.00% +112470,830,1002,State-funded nursery,51,21,30,41.20%,58.80%,0,0.00%,13,25.50%,0,51,0,0.00%,100.00%,0.00%,16,0,0,0.00% +112471,831,1005,State-funded nursery,68,34,34,50.00%,50.00%,1,1.50%,11,16.20%,22,46,0,32.40%,67.60%,0.00%,0,0,0,0.00% +112472,831,1006,State-funded nursery,77,39,38,50.60%,49.40%,3,3.90%,22,28.60%,13,64,0,16.90%,83.10%,0.00%,0,0,0,0.00% +112474,831,1008,State-funded nursery,73,43,30,58.90%,41.10%,0,0.00%,16,21.90%,43,30,0,58.90%,41.10%,0.00%,1,0,0,0.00% +112475,831,1009,State-funded nursery,85,41,44,48.20%,51.80%,0,0.00%,19,22.40%,29,56,0,34.10%,65.90%,0.00%,0,0,0,0.00% +112476,831,1010,State-funded nursery,84,33,51,39.30%,60.70%,0,0.00%,12,14.30%,44,40,0,52.40%,47.60%,0.00%,0,0,0,0.00% +112477,830,1012,State-funded nursery,46,30,16,65.20%,34.80%,0,0.00%,3,6.50%,1,45,0,2.20%,97.80%,0.00%,0,0,0,0.00% +112478,830,1013,State-funded nursery,113,47,66,41.60%,58.40%,2,1.80%,6,5.30%,4,108,1,3.50%,95.60%,0.90%,19,0,0,0.00% +112479,831,1014,State-funded nursery,64,30,34,46.90%,53.10%,0,0.00%,25,39.10%,13,51,0,20.30%,79.70%,0.00%,0,0,0,0.00% +112480,831,1015,State-funded nursery,77,30,47,39.00%,61.00%,0,0.00%,1,1.30%,8,69,0,10.40%,89.60%,0.00%,4,0,0,0.00% +112481,830,1016,State-funded nursery,56,31,25,55.40%,44.60%,0,0.00%,6,10.70%,1,55,0,1.80%,98.20%,0.00%,9,0,0,0.00% +112483,830,1018,State-funded nursery,67,33,34,49.30%,50.70%,1,1.50%,2,3.00%,6,61,0,9.00%,91.00%,0.00%,13,0,0,0.00% +112484,830,1019,State-funded nursery,78,34,44,43.60%,56.40%,0,0.00%,9,11.50%,5,73,0,6.40%,93.60%,0.00%,6,0,0,0.00% +112485,830,1020,State-funded nursery,98,50,48,51.00%,49.00%,0,0.00%,33,33.70%,4,94,0,4.10%,95.90%,0.00%,22,0,0,0.00% +112492,830,2000,State-funded primary,185,89,96,48.10%,51.90%,7,3.80%,41,22.20%,13,172,0,7.00%,93.00%,0.00%,83,89,185,48.10% +112493,830,2002,State-funded primary,154,79,75,51.30%,48.70%,6,3.90%,60,39.00%,5,146,3,3.20%,94.80%,1.90%,61,61,154,39.60% +112494,830,2003,State-funded primary,220,95,125,43.20%,56.80%,4,1.80%,60,27.30%,6,214,0,2.70%,97.30%,0.00%,92,106,220,48.20% +112496,830,2006,State-funded primary,219,101,118,46.10%,53.90%,3,1.40%,60,27.40%,10,209,0,4.60%,95.40%,0.00%,77,70,181,38.70% +112500,830,2010,State-funded primary,398,205,193,51.50%,48.50%,7,1.80%,58,14.60%,4,394,0,1.00%,99.00%,0.00%,86,88,398,22.10% +112501,830,2017,State-funded primary,220,114,106,51.80%,48.20%,3,1.40%,20,9.10%,0,220,0,0.00%,100.00%,0.00%,37,38,220,17.30% +112502,830,2018,State-funded primary,189,106,83,56.10%,43.90%,0,0.00%,22,11.60%,0,189,0,0.00%,100.00%,0.00%,17,19,189,10.10% +112503,830,2019,State-funded primary,152,74,78,48.70%,51.30%,1,0.70%,49,32.20%,9,143,0,5.90%,94.10%,0.00%,67,61,135,45.20% +112504,830,2021,State-funded primary,69,33,36,47.80%,52.20%,0,0.00%,21,30.40%,1,68,0,1.40%,98.60%,0.00%,10,10,69,14.50% +112505,830,2022,State-funded primary,203,86,117,42.40%,57.60%,3,1.50%,27,13.30%,7,196,0,3.40%,96.60%,0.00%,41,42,203,20.70% +112506,830,2041,State-funded primary,121,64,57,52.90%,47.10%,1,0.80%,21,17.40%,3,118,0,2.50%,97.50%,0.00%,42,39,106,36.80% +112507,830,2043,State-funded primary,139,71,68,51.10%,48.90%,1,0.70%,18,12.90%,2,134,3,1.40%,96.40%,2.20%,26,27,139,19.40% +112508,830,2044,State-funded primary,67,26,41,38.80%,61.20%,0,0.00%,26,38.80%,1,66,0,1.50%,98.50%,0.00%,20,20,67,29.90% +112509,830,2045,State-funded primary,269,124,145,46.10%,53.90%,4,1.50%,57,21.20%,24,245,0,8.90%,91.10%,0.00%,144,137,236,58.10% +112510,830,2046,State-funded primary,133,65,68,48.90%,51.10%,3,2.30%,27,20.30%,0,133,0,0.00%,100.00%,0.00%,49,49,122,40.20% +112511,830,2048,State-funded primary,231,106,125,45.90%,54.10%,0,0.00%,47,20.30%,11,220,0,4.80%,95.20%,0.00%,62,59,185,31.90% +112512,830,2049,State-funded primary,42,13,29,31.00%,69.00%,0,0.00%,10,23.80%,2,40,0,4.80%,95.20%,0.00%,13,13,42,31.00% +112513,830,2050,State-funded primary,104,56,48,53.80%,46.20%,2,1.90%,12,11.50%,1,103,0,1.00%,99.00%,0.00%,8,8,104,7.70% +112514,830,2051,State-funded primary,50,20,30,40.00%,60.00%,0,0.00%,11,22.00%,0,50,0,0.00%,100.00%,0.00%,8,8,50,16.00% +112515,830,2052,State-funded primary,46,18,28,39.10%,60.90%,1,2.20%,9,19.60%,0,46,0,0.00%,100.00%,0.00%,12,12,46,26.10% +112516,830,2053,State-funded primary,403,197,206,48.90%,51.10%,8,2.00%,42,10.40%,0,401,2,0.00%,99.50%,0.50%,58,60,403,14.90% +112519,830,2057,State-funded primary,164,74,90,45.10%,54.90%,2,1.20%,29,17.70%,6,158,0,3.70%,96.30%,0.00%,54,47,128,36.70% +112520,830,2058,State-funded primary,348,170,178,48.90%,51.10%,4,1.10%,39,11.20%,7,341,0,2.00%,98.00%,0.00%,50,54,348,15.50% +112521,830,2060,State-funded primary,238,128,110,53.80%,46.20%,5,2.10%,58,24.40%,15,223,0,6.30%,93.70%,0.00%,71,72,238,30.30% +112522,830,2061,State-funded primary,160,70,90,43.80%,56.30%,2,1.30%,23,14.40%,6,154,0,3.80%,96.30%,0.00%,50,50,160,31.30% +112523,830,2062,State-funded primary,287,145,142,50.50%,49.50%,6,2.10%,48,16.70%,5,282,0,1.70%,98.30%,0.00%,68,70,287,24.40% +112525,830,2068,State-funded primary,35,25,10,71.40%,28.60%,0,0.00%,3,8.60%,0,35,0,0.00%,100.00%,0.00%,3,3,35,8.60% +112526,830,2072,State-funded primary,104,54,50,51.90%,48.10%,1,1.00%,8,7.70%,0,104,0,0.00%,100.00%,0.00%,22,23,104,22.10% +112527,830,5211,State-funded primary,246,137,109,55.70%,44.30%,3,1.20%,93,37.80%,2,243,1,0.80%,98.80%,0.40%,37,36,222,16.20% +112530,830,2076,State-funded primary,248,128,120,51.60%,48.40%,1,0.40%,35,14.10%,11,237,0,4.40%,95.60%,0.00%,90,93,219,42.50% +112532,830,2079,State-funded primary,353,183,170,51.80%,48.20%,3,0.80%,66,18.70%,3,350,0,0.80%,99.20%,0.00%,116,122,353,34.60% +112533,830,2080,State-funded primary,300,136,164,45.30%,54.70%,3,1.00%,27,9.00%,7,293,0,2.30%,97.70%,0.00%,67,67,229,29.30% +112534,830,2082,State-funded primary,77,30,47,39.00%,61.00%,0,0.00%,45,58.40%,2,75,0,2.60%,97.40%,0.00%,22,22,77,28.60% +112535,830,2083,State-funded primary,74,42,32,56.80%,43.20%,0,0.00%,4,5.40%,2,72,0,2.70%,97.30%,0.00%,6,6,74,8.10% +112536,830,2084,State-funded primary,136,59,77,43.40%,56.60%,1,0.70%,12,8.80%,2,124,10,1.50%,91.20%,7.40%,13,13,136,9.60% +112537,830,2085,State-funded primary,75,30,45,40.00%,60.00%,0,0.00%,8,10.70%,0,75,0,0.00%,100.00%,0.00%,8,8,75,10.70% +112538,830,2086,State-funded primary,165,74,91,44.80%,55.20%,2,1.20%,15,9.10%,4,161,0,2.40%,97.60%,0.00%,58,55,146,37.70% +112539,830,2089,State-funded primary,351,164,187,46.70%,53.30%,2,0.60%,64,18.20%,6,345,0,1.70%,98.30%,0.00%,51,56,351,16.00% +112540,830,2091,State-funded primary,240,116,124,48.30%,51.70%,0,0.00%,12,5.00%,8,232,0,3.30%,96.70%,0.00%,33,33,240,13.80% +112541,830,2092,State-funded primary,205,94,111,45.90%,54.10%,2,1.00%,25,12.20%,3,197,5,1.50%,96.10%,2.40%,18,19,205,9.30% +112543,830,2095,State-funded primary,110,54,56,49.10%,50.90%,0,0.00%,17,15.50%,8,102,0,7.30%,92.70%,0.00%,28,27,93,29.00% +112544,830,2097,State-funded primary,143,69,74,48.30%,51.70%,2,1.40%,23,16.10%,1,138,4,0.70%,96.50%,2.80%,24,24,143,16.80% +112545,830,2101,State-funded primary,211,103,108,48.80%,51.20%,0,0.00%,41,19.40%,2,209,0,0.90%,99.10%,0.00%,54,57,179,31.80% +112546,830,2102,State-funded primary,189,98,91,51.90%,48.10%,1,0.50%,28,14.80%,3,185,1,1.60%,97.90%,0.50%,30,31,189,16.40% +112547,830,2103,State-funded primary,60,31,29,51.70%,48.30%,0,0.00%,14,23.30%,0,60,0,0.00%,100.00%,0.00%,17,17,60,28.30% +112548,830,2104,State-funded primary,256,129,127,50.40%,49.60%,5,2.00%,60,23.40%,5,251,0,2.00%,98.00%,0.00%,134,140,256,54.70% +112549,830,2105,State-funded primary,313,169,144,54.00%,46.00%,2,0.60%,46,14.70%,24,286,3,7.70%,91.40%,1.00%,41,46,313,14.70% +112550,830,2106,State-funded primary,57,34,23,59.60%,40.40%,1,1.80%,14,24.60%,5,52,0,8.80%,91.20%,0.00%,7,7,57,12.30% +112551,830,2107,State-funded primary,207,114,93,55.10%,44.90%,2,1.00%,23,11.10%,9,198,0,4.30%,95.70%,0.00%,17,17,207,8.20% +112552,830,2109,State-funded primary,115,63,52,54.80%,45.20%,2,1.70%,24,20.90%,7,105,3,6.10%,91.30%,2.60%,21,21,115,18.30% +112553,830,2113,State-funded primary,247,123,124,49.80%,50.20%,3,1.20%,85,34.40%,8,239,0,3.20%,96.80%,0.00%,101,95,216,44.00% +112554,830,2115,State-funded primary,198,107,91,54.00%,46.00%,1,0.50%,16,8.10%,1,197,0,0.50%,99.50%,0.00%,35,36,198,18.20% +112561,830,2124,State-funded primary,120,62,58,51.70%,48.30%,3,2.50%,18,15.00%,0,120,0,0.00%,100.00%,0.00%,48,49,120,40.80% +112562,830,2125,State-funded primary,49,18,31,36.70%,63.30%,0,0.00%,7,14.30%,0,49,0,0.00%,100.00%,0.00%,14,14,49,28.60% +112563,830,2126,State-funded primary,239,115,124,48.10%,51.90%,8,3.30%,114,47.70%,5,234,0,2.10%,97.90%,0.00%,95,92,212,43.40% +112565,830,2131,State-funded primary,55,26,29,47.30%,52.70%,0,0.00%,5,9.10%,0,50,5,0.00%,90.90%,9.10%,6,6,55,10.90% +112566,830,2132,State-funded primary,53,24,29,45.30%,54.70%,1,1.90%,11,20.80%,0,53,0,0.00%,100.00%,0.00%,5,6,53,11.30% +112569,830,2138,State-funded primary,296,138,158,46.60%,53.40%,9,3.00%,84,28.40%,12,283,1,4.10%,95.60%,0.30%,205,209,296,70.60% +112570,830,2139,State-funded primary,275,125,150,45.50%,54.50%,4,1.50%,67,24.40%,14,261,0,5.10%,94.90%,0.00%,135,135,188,71.80% +112571,830,2141,State-funded primary,316,132,184,41.80%,58.20%,6,1.90%,44,13.90%,4,309,3,1.30%,97.80%,0.90%,105,111,316,35.10% +112572,830,2142,State-funded primary,221,110,111,49.80%,50.20%,2,0.90%,52,23.50%,1,220,0,0.50%,99.50%,0.00%,81,86,221,38.90% +112575,830,2146,State-funded primary,297,139,158,46.80%,53.20%,0,0.00%,55,18.50%,11,284,2,3.70%,95.60%,0.70%,99,85,241,35.30% +112577,830,2149,State-funded primary,126,58,68,46.00%,54.00%,0,0.00%,15,11.90%,0,126,0,0.00%,100.00%,0.00%,24,21,102,20.60% +112578,830,2150,State-funded primary,124,47,77,37.90%,62.10%,1,0.80%,51,41.10%,3,121,0,2.40%,97.60%,0.00%,52,53,124,42.70% +112579,830,2151,State-funded primary,148,71,77,48.00%,52.00%,1,0.70%,34,23.00%,3,145,0,2.00%,98.00%,0.00%,36,35,117,29.90% +112580,830,2153,State-funded primary,218,107,111,49.10%,50.90%,2,0.90%,22,10.10%,1,217,0,0.50%,99.50%,0.00%,7,11,218,5.00% +112582,830,2157,State-funded primary,232,107,125,46.10%,53.90%,0,0.00%,37,15.90%,11,219,2,4.70%,94.40%,0.90%,85,88,232,37.90% +112583,830,2159,State-funded primary,212,97,115,45.80%,54.20%,2,0.90%,15,7.10%,9,203,0,4.20%,95.80%,0.00%,61,46,164,28.00% +112584,830,2160,State-funded primary,432,205,227,47.50%,52.50%,5,1.20%,103,23.80%,15,417,0,3.50%,96.50%,0.00%,129,132,396,33.30% +112585,830,2161,State-funded primary,425,185,240,43.50%,56.50%,7,1.60%,57,13.40%,15,410,0,3.50%,96.50%,0.00%,135,130,390,33.30% +112589,830,2169,State-funded primary,31,19,12,61.30%,38.70%,0,0.00%,4,12.90%,1,30,0,3.20%,96.80%,0.00%,7,7,31,22.60% +112591,830,2172,State-funded primary,202,112,90,55.40%,44.60%,1,0.50%,15,7.40%,5,190,7,2.50%,94.10%,3.50%,40,40,202,19.80% +112592,830,2173,State-funded primary,83,47,36,56.60%,43.40%,0,0.00%,16,19.30%,0,83,0,0.00%,100.00%,0.00%,17,17,83,20.50% +112593,830,2174,State-funded primary,259,130,129,50.20%,49.80%,6,2.30%,26,10.00%,7,252,0,2.70%,97.30%,0.00%,36,37,259,14.30% +112594,830,2175,State-funded primary,175,89,86,50.90%,49.10%,3,1.70%,6,3.40%,2,173,0,1.10%,98.90%,0.00%,20,20,175,11.40% +112595,830,2177,State-funded primary,80,42,38,52.50%,47.50%,0,0.00%,6,7.50%,3,77,0,3.80%,96.30%,0.00%,10,10,80,12.50% +112596,830,2178,State-funded primary,106,60,46,56.60%,43.40%,1,0.90%,5,4.70%,1,105,0,0.90%,99.10%,0.00%,19,20,106,18.90% +112597,830,2179,State-funded primary,210,111,99,52.90%,47.10%,0,0.00%,49,23.30%,3,203,4,1.40%,96.70%,1.90%,47,48,210,22.90% +112599,830,2181,State-funded primary,83,35,48,42.20%,57.80%,1,1.20%,12,14.50%,1,82,0,1.20%,98.80%,0.00%,28,28,83,33.70% +112600,830,2182,State-funded primary,80,35,45,43.80%,56.30%,0,0.00%,24,30.00%,1,79,0,1.30%,98.80%,0.00%,29,30,80,37.50% +112603,830,2186,State-funded primary,207,102,105,49.30%,50.70%,2,1.00%,28,13.50%,5,202,0,2.40%,97.60%,0.00%,55,56,207,27.10% +112604,830,2187,State-funded primary,20,9,11,45.00%,55.00%,0,0.00%,4,20.00%,0,20,0,0.00%,100.00%,0.00%,3,3,20,15.00% +112605,830,2190,State-funded primary,217,98,119,45.20%,54.80%,11,5.10%,44,20.30%,4,213,0,1.80%,98.20%,0.00%,65,61,187,32.60% +112606,830,2191,State-funded primary,203,99,104,48.80%,51.20%,3,1.50%,28,13.80%,0,203,0,0.00%,100.00%,0.00%,26,26,203,12.80% +112610,830,2196,State-funded primary,231,130,101,56.30%,43.70%,1,0.40%,46,19.90%,17,214,0,7.40%,92.60%,0.00%,94,89,204,43.60% +112611,830,2201,State-funded primary,330,163,167,49.40%,50.60%,10,3.00%,42,12.70%,3,327,0,0.90%,99.10%,0.00%,129,135,330,40.90% +112612,830,2202,State-funded primary,169,75,94,44.40%,55.60%,2,1.20%,19,11.20%,4,165,0,2.40%,97.60%,0.00%,95,95,169,56.20% +112614,830,2210,State-funded primary,239,108,131,45.20%,54.80%,4,1.70%,8,3.30%,20,197,22,8.40%,82.40%,9.20%,82,79,207,38.20% +112615,830,2211,State-funded primary,92,48,44,52.20%,47.80%,0,0.00%,8,8.70%,0,92,0,0.00%,100.00%,0.00%,15,15,92,16.30% +112617,830,2213,State-funded primary,98,47,51,48.00%,52.00%,3,3.10%,13,13.30%,0,98,0,0.00%,100.00%,0.00%,25,27,98,27.60% +112619,830,2219,State-funded primary,167,69,98,41.30%,58.70%,5,3.00%,57,34.10%,28,139,0,16.80%,83.20%,0.00%,93,94,167,56.30% +112620,830,2223,State-funded primary,166,86,80,51.80%,48.20%,3,1.80%,28,16.90%,0,166,0,0.00%,100.00%,0.00%,53,53,166,31.90% +112621,830,2224,State-funded primary,218,111,107,50.90%,49.10%,1,0.50%,40,18.30%,9,209,0,4.10%,95.90%,0.00%,83,84,185,45.40% +112623,830,2227,State-funded primary,177,83,94,46.90%,53.10%,5,2.80%,26,14.70%,8,166,3,4.50%,93.80%,1.70%,61,63,177,35.60% +112624,830,2228,State-funded primary,391,194,197,49.60%,50.40%,6,1.50%,105,26.90%,18,373,0,4.60%,95.40%,0.00%,153,162,391,41.40% +112625,830,2229,State-funded primary,137,58,79,42.30%,57.70%,3,2.20%,25,18.20%,0,137,0,0.00%,100.00%,0.00%,11,11,137,8.00% +112627,830,2239,State-funded primary,149,76,73,51.00%,49.00%,7,4.70%,33,22.10%,3,146,0,2.00%,98.00%,0.00%,96,97,149,65.10% +112629,830,2242,State-funded primary,140,79,61,56.40%,43.60%,0,0.00%,22,15.70%,10,125,5,7.10%,89.30%,3.60%,72,58,103,56.30% +112630,830,2243,State-funded primary,185,98,87,53.00%,47.00%,3,1.60%,42,22.70%,11,174,0,5.90%,94.10%,0.00%,87,76,155,49.00% +112631,830,2244,State-funded primary,53,24,29,45.30%,54.70%,2,3.80%,8,15.10%,0,53,0,0.00%,100.00%,0.00%,13,13,53,24.50% +112632,830,2245,State-funded primary,106,58,48,54.70%,45.30%,4,3.80%,19,17.90%,3,103,0,2.80%,97.20%,0.00%,38,34,91,37.40% +112635,830,2253,State-funded primary,298,144,154,48.30%,51.70%,5,1.70%,71,23.80%,2,296,0,0.70%,99.30%,0.00%,132,139,298,46.60% +112636,830,2254,State-funded primary,221,106,115,48.00%,52.00%,2,0.90%,36,16.30%,16,205,0,7.20%,92.80%,0.00%,78,79,198,39.90% +112637,830,2255,State-funded primary,157,83,74,52.90%,47.10%,1,0.60%,14,8.90%,13,144,0,8.30%,91.70%,0.00%,40,40,157,25.50% +112639,830,2257,State-funded primary,173,88,85,50.90%,49.10%,3,1.70%,29,16.80%,2,171,0,1.20%,98.80%,0.00%,44,47,173,27.20% +112640,830,2258,State-funded primary,186,101,85,54.30%,45.70%,2,1.10%,19,10.20%,4,182,0,2.20%,97.80%,0.00%,40,35,150,23.30% +112642,830,2260,State-funded primary,49,32,17,65.30%,34.70%,0,0.00%,22,44.90%,0,49,0,0.00%,100.00%,0.00%,21,21,49,42.90% +112643,830,2262,State-funded primary,42,19,23,45.20%,54.80%,0,0.00%,11,26.20%,0,42,0,0.00%,100.00%,0.00%,15,15,31,48.40% +112646,830,2266,State-funded primary,89,41,48,46.10%,53.90%,4,4.50%,7,7.90%,0,89,0,0.00%,100.00%,0.00%,3,3,78,3.80% +112647,830,2268,State-funded primary,129,49,80,38.00%,62.00%,15,11.60%,23,17.80%,5,122,2,3.90%,94.60%,1.60%,31,32,129,24.80% +112648,830,2269,State-funded primary,94,47,47,50.00%,50.00%,5,5.30%,2,2.10%,2,92,0,2.10%,97.90%,0.00%,24,24,91,26.40% +112649,830,2270,State-funded primary,265,139,126,52.50%,47.50%,4,1.50%,44,16.60%,2,263,0,0.80%,99.20%,0.00%,101,101,234,43.20% +112651,830,2274,State-funded primary,345,176,169,51.00%,49.00%,5,1.40%,14,4.10%,4,338,3,1.20%,98.00%,0.90%,38,39,345,11.30% +112652,830,2275,State-funded primary,125,72,53,57.60%,42.40%,1,0.80%,30,24.00%,3,122,0,2.40%,97.60%,0.00%,30,32,125,25.60% +112653,830,2276,State-funded primary,19,12,7,63.20%,36.80%,1,5.30%,1,5.30%,0,19,0,0.00%,100.00%,0.00%,6,6,19,31.60% +112654,830,2277,State-funded primary,94,44,50,46.80%,53.20%,1,1.10%,26,27.70%,3,91,0,3.20%,96.80%,0.00%,27,29,94,30.90% +112655,830,2278,State-funded primary,243,133,110,54.70%,45.30%,4,1.60%,22,9.10%,8,235,0,3.30%,96.70%,0.00%,106,106,243,43.60% +112656,830,2279,State-funded primary,76,38,38,50.00%,50.00%,2,2.60%,16,21.10%,0,76,0,0.00%,100.00%,0.00%,15,15,76,19.70% +112659,830,2283,State-funded primary,94,52,42,55.30%,44.70%,0,0.00%,15,16.00%,5,89,0,5.30%,94.70%,0.00%,50,53,94,56.40% +112660,830,2285,State-funded primary,210,100,110,47.60%,52.40%,1,0.50%,38,18.10%,16,194,0,7.60%,92.40%,0.00%,115,72,130,55.40% +112661,830,2286,State-funded primary,186,94,92,50.50%,49.50%,2,1.10%,38,20.40%,9,177,0,4.80%,95.20%,0.00%,107,109,186,58.60% +112663,830,2288,State-funded primary,379,176,203,46.40%,53.60%,3,0.80%,36,9.50%,15,364,0,4.00%,96.00%,0.00%,98,113,379,29.80% +112664,830,2289,State-funded primary,341,164,177,48.10%,51.90%,1,0.30%,29,8.50%,26,315,0,7.60%,92.40%,0.00%,80,73,283,25.80% +112665,830,2290,State-funded primary,334,165,169,49.40%,50.60%,4,1.20%,27,8.10%,29,303,2,8.70%,90.70%,0.60%,57,58,305,19.00% +112667,830,2293,State-funded primary,432,207,225,47.90%,52.10%,8,1.90%,47,10.90%,20,412,0,4.60%,95.40%,0.00%,129,130,394,33.00% +112670,830,2296,State-funded primary,240,110,130,45.80%,54.20%,6,2.50%,35,14.60%,29,211,0,12.10%,87.90%,0.00%,66,61,214,28.50% +112672,830,2306,State-funded primary,215,94,121,43.70%,56.30%,0,0.00%,31,14.40%,34,181,0,15.80%,84.20%,0.00%,63,55,179,30.70% +112673,830,2307,State-funded primary,212,105,107,49.50%,50.50%,0,0.00%,13,6.10%,6,206,0,2.80%,97.20%,0.00%,31,31,180,17.20% +112675,830,2310,State-funded primary,380,177,203,46.60%,53.40%,3,0.80%,63,16.60%,7,373,0,1.80%,98.20%,0.00%,156,134,316,42.40% +112676,830,2314,State-funded primary,43,16,27,37.20%,62.80%,0,0.00%,11,25.60%,0,42,1,0.00%,97.70%,2.30%,27,17,29,58.60% +112677,830,2315,State-funded primary,140,63,77,45.00%,55.00%,3,2.10%,34,24.30%,13,127,0,9.30%,90.70%,0.00%,42,42,140,30.00% +112678,830,2317,State-funded primary,208,97,111,46.60%,53.40%,4,1.90%,40,19.20%,18,185,5,8.70%,88.90%,2.40%,67,69,208,33.20% +112679,830,2321,State-funded primary,214,102,112,47.70%,52.30%,4,1.90%,41,19.20%,3,210,1,1.40%,98.10%,0.50%,50,51,214,23.80% +112680,830,2326,State-funded primary,147,72,75,49.00%,51.00%,1,0.70%,13,8.80%,6,140,1,4.10%,95.20%,0.70%,18,18,147,12.20% +112682,830,2329,State-funded primary,274,143,131,52.20%,47.80%,6,2.20%,46,16.80%,39,235,0,14.20%,85.80%,0.00%,97,101,274,36.90% +112685,830,2332,State-funded primary,177,89,88,50.30%,49.70%,3,1.70%,21,11.90%,4,173,0,2.30%,97.70%,0.00%,29,30,177,16.90% +112686,830,2333,State-funded primary,138,69,69,50.00%,50.00%,3,2.20%,18,13.00%,14,122,2,10.10%,88.40%,1.40%,45,44,121,36.40% +112687,830,2336,State-funded primary,104,38,66,36.50%,63.50%,3,2.90%,15,14.40%,2,102,0,1.90%,98.10%,0.00%,52,52,104,50.00% +112688,830,2338,State-funded primary,161,76,85,47.20%,52.80%,1,0.60%,26,16.10%,5,155,1,3.10%,96.30%,0.60%,34,32,128,25.00% +112690,830,2344,State-funded primary,319,159,160,49.80%,50.20%,3,0.90%,36,11.30%,9,310,0,2.80%,97.20%,0.00%,27,29,319,9.10% +112691,830,2349,State-funded primary,245,135,110,55.10%,44.90%,1,0.40%,37,15.10%,8,237,0,3.30%,96.70%,0.00%,55,55,245,22.40% +112692,830,2351,State-funded primary,143,75,68,52.40%,47.60%,0,0.00%,25,17.50%,1,141,1,0.70%,98.60%,0.70%,51,51,143,35.70% +112696,830,2358,State-funded primary,74,37,37,50.00%,50.00%,0,0.00%,9,12.20%,4,70,0,5.40%,94.60%,0.00%,18,17,56,30.40% +112697,830,2359,State-funded primary,276,130,146,47.10%,52.90%,6,2.20%,40,14.50%,2,274,0,0.70%,99.30%,0.00%,37,37,276,13.40% +112698,830,2361,State-funded primary,147,78,69,53.10%,46.90%,2,1.40%,17,11.60%,8,139,0,5.40%,94.60%,0.00%,49,49,147,33.30% +112699,830,2362,State-funded primary,204,92,112,45.10%,54.90%,0,0.00%,27,13.20%,4,200,0,2.00%,98.00%,0.00%,107,78,147,53.10% +112701,830,2368,State-funded primary,212,107,105,50.50%,49.50%,2,0.90%,37,17.50%,6,206,0,2.80%,97.20%,0.00%,32,32,212,15.10% +112705,830,2372,State-funded primary,189,102,87,54.00%,46.00%,3,1.60%,52,27.50%,19,170,0,10.10%,89.90%,0.00%,96,90,166,54.20% +112706,830,2373,State-funded primary,303,152,151,50.20%,49.80%,3,1.00%,22,7.30%,1,302,0,0.30%,99.70%,0.00%,30,30,303,9.90% +112708,830,2375,State-funded primary,162,80,82,49.40%,50.60%,0,0.00%,31,19.10%,10,152,0,6.20%,93.80%,0.00%,61,60,137,43.80% +112710,830,2377,State-funded primary,78,41,37,52.60%,47.40%,6,7.70%,6,7.70%,0,76,2,0.00%,97.40%,2.60%,13,13,78,16.70% +112717,831,2405,State-funded primary,245,123,122,50.20%,49.80%,7,2.90%,35,14.30%,139,105,1,56.70%,42.90%,0.40%,107,117,207,56.50% +112720,831,2409,State-funded primary,549,270,279,49.20%,50.80%,16,2.90%,38,6.90%,428,121,0,78.00%,22.00%,0.00%,251,264,549,48.10% +112728,831,2424,State-funded primary,267,146,121,54.70%,45.30%,2,0.70%,33,12.40%,205,62,0,76.80%,23.20%,0.00%,173,178,267,66.70% +112733,831,2429,State-funded primary,189,93,96,49.20%,50.80%,1,0.50%,16,8.50%,150,39,0,79.40%,20.60%,0.00%,50,50,137,36.50% +112739,831,2436,State-funded primary,418,204,214,48.80%,51.20%,25,6.00%,43,10.30%,44,366,8,10.50%,87.60%,1.90%,99,106,418,25.40% +112740,831,2439,State-funded primary,190,91,99,47.90%,52.10%,0,0.00%,24,12.60%,14,173,3,7.40%,91.10%,1.60%,16,16,190,8.40% +112744,831,2443,State-funded primary,324,149,175,46.00%,54.00%,8,2.50%,42,13.00%,29,295,0,9.00%,91.00%,0.00%,102,106,250,42.40% +112745,831,2444,State-funded primary,223,116,107,52.00%,48.00%,7,3.10%,27,12.10%,48,175,0,21.50%,78.50%,0.00%,70,72,191,37.70% +112749,831,2449,State-funded primary,253,121,132,47.80%,52.20%,3,1.20%,60,23.70%,16,237,0,6.30%,93.70%,0.00%,83,70,199,35.20% +112752,831,2452,State-funded primary,164,79,85,48.20%,51.80%,4,2.40%,19,11.60%,26,138,0,15.90%,84.10%,0.00%,73,75,144,52.10% +112756,831,2457,State-funded primary,363,174,189,47.90%,52.10%,17,4.70%,60,16.50%,139,224,0,38.30%,61.70%,0.00%,101,113,363,31.10% +112757,831,2458,State-funded primary,270,128,142,47.40%,52.60%,15,5.60%,55,20.40%,137,132,1,50.70%,48.90%,0.40%,55,55,270,20.40% +112758,831,2459,State-funded primary,384,196,188,51.00%,49.00%,12,3.10%,44,11.50%,119,265,0,31.00%,69.00%,0.00%,31,34,384,8.90% +112759,831,2462,State-funded primary,283,140,143,49.50%,50.50%,1,0.40%,83,29.30%,37,235,11,13.10%,83.00%,3.90%,80,71,244,29.10% +112765,831,2469,State-funded primary,421,202,219,48.00%,52.00%,11,2.60%,48,11.40%,24,393,4,5.70%,93.30%,1.00%,21,24,421,5.70% +112767,831,2473,State-funded primary,311,147,164,47.30%,52.70%,7,2.30%,71,22.80%,33,278,0,10.60%,89.40%,0.00%,98,87,258,33.70% +112770,831,2505,State-funded primary,651,310,341,47.60%,52.40%,18,2.80%,62,9.50%,296,355,0,45.50%,54.50%,0.00%,229,231,601,38.40% +112773,830,2511,State-funded primary,173,81,92,46.80%,53.20%,12,6.90%,22,12.70%,1,167,5,0.60%,96.50%,2.90%,24,25,173,14.50% +112781,830,2618,State-funded primary,355,188,167,53.00%,47.00%,9,2.50%,36,10.10%,102,253,0,28.70%,71.30%,0.00%,80,85,355,23.90% +112785,830,2622,State-funded primary,251,129,122,51.40%,48.60%,3,1.20%,18,7.20%,19,232,0,7.60%,92.40%,0.00%,46,49,234,20.90% +112786,830,2623,State-funded primary,79,40,39,50.60%,49.40%,2,2.50%,10,12.70%,0,79,0,0.00%,100.00%,0.00%,4,5,79,6.30% +112787,830,2624,State-funded primary,318,145,173,45.60%,54.40%,3,0.90%,39,12.30%,11,307,0,3.50%,96.50%,0.00%,80,81,318,25.50% +112788,830,2625,State-funded primary,99,52,47,52.50%,47.50%,2,2.00%,22,22.20%,0,94,5,0.00%,94.90%,5.10%,15,15,99,15.20% +112789,830,2626,State-funded primary,192,91,101,47.40%,52.60%,1,0.50%,41,21.40%,0,184,8,0.00%,95.80%,4.20%,62,64,192,33.30% +112790,831,2627,State-funded primary,428,227,201,53.00%,47.00%,7,1.60%,63,14.70%,92,336,0,21.50%,78.50%,0.00%,55,57,428,13.30% +112796,830,3002,State-funded primary,205,93,112,45.40%,54.60%,0,0.00%,27,13.20%,4,201,0,2.00%,98.00%,0.00%,47,51,205,24.90% +112798,830,3007,State-funded primary,85,46,39,54.10%,45.90%,0,0.00%,17,20.00%,0,85,0,0.00%,100.00%,0.00%,10,10,85,11.80% +112800,830,3009,State-funded primary,125,67,58,53.60%,46.40%,1,0.80%,19,15.20%,5,113,7,4.00%,90.40%,5.60%,16,16,125,12.80% +112802,830,3015,State-funded primary,27,15,12,55.60%,44.40%,4,14.80%,9,33.30%,0,27,0,0.00%,100.00%,0.00%,6,6,27,22.20% +112803,830,3016,State-funded primary,36,15,21,41.70%,58.30%,0,0.00%,5,13.90%,1,33,2,2.80%,91.70%,5.60%,6,6,36,16.70% +112804,830,3017,State-funded primary,146,83,63,56.80%,43.20%,4,2.70%,28,19.20%,3,141,2,2.10%,96.60%,1.40%,17,16,123,13.00% +112805,830,3018,State-funded primary,116,53,63,45.70%,54.30%,3,2.60%,9,7.80%,5,111,0,4.30%,95.70%,0.00%,16,16,116,13.80% +112806,830,3019,State-funded primary,199,106,93,53.30%,46.70%,20,10.10%,38,19.10%,6,193,0,3.00%,97.00%,0.00%,96,102,199,51.30% +112807,830,3022,State-funded primary,22,10,12,45.50%,54.50%,0,0.00%,5,22.70%,2,20,0,9.10%,90.90%,0.00%,4,4,22,18.20% +112809,830,3024,State-funded primary,47,23,24,48.90%,51.10%,0,0.00%,13,27.70%,0,43,4,0.00%,91.50%,8.50%,14,14,47,29.80% +112811,830,3026,State-funded primary,100,59,41,59.00%,41.00%,1,1.00%,14,14.00%,1,99,0,1.00%,99.00%,0.00%,18,19,100,19.00% +112812,830,3027,State-funded primary,139,67,72,48.20%,51.80%,0,0.00%,21,15.10%,1,138,0,0.70%,99.30%,0.00%,21,22,139,15.80% +112813,830,3030,State-funded primary,22,5,17,22.70%,77.30%,0,0.00%,4,18.20%,0,20,2,0.00%,90.90%,9.10%,0,0,22,0.00% +112814,830,3032,State-funded primary,257,130,127,50.60%,49.40%,6,2.30%,57,22.20%,18,239,0,7.00%,93.00%,0.00%,79,76,171,44.40% +112815,830,3033,State-funded primary,25,5,20,20.00%,80.00%,5,20.00%,9,36.00%,0,25,0,0.00%,100.00%,0.00%,8,8,25,32.00% +112816,830,3034,State-funded primary,64,34,30,53.10%,46.90%,0,0.00%,20,31.30%,0,64,0,0.00%,100.00%,0.00%,7,7,64,10.90% +112817,830,3035,State-funded primary,213,97,116,45.50%,54.50%,8,3.80%,11,5.20%,1,210,2,0.50%,98.60%,0.90%,41,42,213,19.70% +112818,830,3036,State-funded primary,303,145,158,47.90%,52.10%,9,3.00%,41,13.50%,6,297,0,2.00%,98.00%,0.00%,94,88,267,33.00% +112819,830,3037,State-funded primary,26,9,17,34.60%,65.40%,0,0.00%,13,50.00%,0,26,0,0.00%,100.00%,0.00%,8,7,22,31.80% +112820,830,3038,State-funded primary,58,28,30,48.30%,51.70%,2,3.40%,12,20.70%,1,57,0,1.70%,98.30%,0.00%,28,29,58,50.00% +112821,830,3039,State-funded primary,33,17,16,51.50%,48.50%,0,0.00%,9,27.30%,0,33,0,0.00%,100.00%,0.00%,9,9,33,27.30% +112822,830,3040,State-funded primary,19,12,7,63.20%,36.80%,1,5.30%,1,5.30%,0,19,0,0.00%,100.00%,0.00%,6,6,19,31.60% +112823,830,3041,State-funded primary,23,12,11,52.20%,47.80%,1,4.30%,9,39.10%,1,22,0,4.30%,95.70%,0.00%,2,2,23,8.70% +112824,830,3042,State-funded primary,112,58,54,51.80%,48.20%,4,3.60%,17,15.20%,2,110,0,1.80%,98.20%,0.00%,35,35,112,31.30% +112826,830,3046,State-funded primary,86,44,42,51.20%,48.80%,1,1.20%,16,18.60%,1,85,0,1.20%,98.80%,0.00%,19,19,86,22.10% +112827,830,3048,State-funded primary,130,55,75,42.30%,57.70%,4,3.10%,27,20.80%,5,125,0,3.80%,96.20%,0.00%,30,29,100,29.00% +112829,830,3050,State-funded primary,184,104,80,56.50%,43.50%,3,1.60%,44,23.90%,4,180,0,2.20%,97.80%,0.00%,60,63,184,34.20% +112830,830,3055,State-funded primary,89,43,46,48.30%,51.70%,0,0.00%,11,12.40%,0,88,1,0.00%,98.90%,1.10%,14,15,89,16.90% +112831,830,3056,State-funded primary,56,26,30,46.40%,53.60%,2,3.60%,5,8.90%,0,56,0,0.00%,100.00%,0.00%,7,7,56,12.50% +112832,830,3060,State-funded primary,40,17,23,42.50%,57.50%,1,2.50%,10,25.00%,0,40,0,0.00%,100.00%,0.00%,5,5,40,12.50% +112833,830,3061,State-funded primary,95,46,49,48.40%,51.60%,0,0.00%,1,1.10%,0,95,0,0.00%,100.00%,0.00%,11,12,95,12.60% +112834,830,3062,State-funded primary,55,24,31,43.60%,56.40%,1,1.80%,11,20.00%,1,54,0,1.80%,98.20%,0.00%,8,9,55,16.40% +112836,830,3065,State-funded primary,65,29,36,44.60%,55.40%,1,1.50%,4,6.20%,1,64,0,1.50%,98.50%,0.00%,16,16,65,24.60% +112840,830,3069,State-funded primary,68,30,38,44.10%,55.90%,3,4.40%,18,26.50%,0,62,6,0.00%,91.20%,8.80%,12,12,68,17.60% +112841,830,3070,State-funded primary,45,25,20,55.60%,44.40%,0,0.00%,8,17.80%,0,45,0,0.00%,100.00%,0.00%,8,8,45,17.80% +112842,830,3071,State-funded primary,55,37,18,67.30%,32.70%,0,0.00%,7,12.70%,1,53,1,1.80%,96.40%,1.80%,12,12,55,21.80% +112843,830,3073,State-funded primary,40,20,20,50.00%,50.00%,0,0.00%,12,30.00%,2,38,0,5.00%,95.00%,0.00%,7,7,40,17.50% +112844,830,3074,State-funded primary,57,29,28,50.90%,49.10%,0,0.00%,9,15.80%,1,56,0,1.80%,98.20%,0.00%,13,13,57,22.80% +112845,830,3075,State-funded primary,74,33,41,44.60%,55.40%,3,4.10%,24,32.40%,5,69,0,6.80%,93.20%,0.00%,15,15,74,20.30% +112846,830,3076,State-funded primary,28,12,16,42.90%,57.10%,0,0.00%,3,10.70%,2,25,1,7.10%,89.30%,3.60%,2,2,28,7.10% +112847,830,3077,State-funded primary,154,75,79,48.70%,51.30%,1,0.60%,16,10.40%,1,153,0,0.60%,99.40%,0.00%,10,10,154,6.50% +112848,830,3079,State-funded primary,29,18,11,62.10%,37.90%,0,0.00%,4,13.80%,0,29,0,0.00%,100.00%,0.00%,1,1,29,3.40% +112849,830,3080,State-funded primary,358,185,173,51.70%,48.30%,4,1.10%,108,30.20%,15,338,5,4.20%,94.40%,1.40%,126,128,331,38.70% +112850,830,3082,State-funded primary,109,54,55,49.50%,50.50%,0,0.00%,25,22.90%,2,107,0,1.80%,98.20%,0.00%,20,20,109,18.30% +112851,830,3083,State-funded primary,67,32,35,47.80%,52.20%,0,0.00%,1,1.50%,0,65,2,0.00%,97.00%,3.00%,7,7,67,10.40% +112854,830,3087,State-funded primary,94,49,45,52.10%,47.90%,1,1.10%,13,13.80%,2,87,5,2.10%,92.60%,5.30%,17,17,94,18.10% +112855,830,3088,State-funded primary,57,36,21,63.20%,36.80%,0,0.00%,10,17.50%,1,56,0,1.80%,98.20%,0.00%,23,23,57,40.40% +112856,830,3090,State-funded primary,62,33,29,53.20%,46.80%,1,1.60%,5,8.10%,1,61,0,1.60%,98.40%,0.00%,9,9,62,14.50% +112858,830,3093,State-funded primary,11,5,6,45.50%,54.50%,0,0.00%,8,72.70%,0,10,1,0.00%,90.90%,9.10%,5,5,11,45.50% +112859,830,3094,State-funded primary,51,31,20,60.80%,39.20%,0,0.00%,13,25.50%,0,51,0,0.00%,100.00%,0.00%,10,12,51,23.50% +112862,830,3098,State-funded primary,51,27,24,52.90%,47.10%,0,0.00%,6,11.80%,0,51,0,0.00%,100.00%,0.00%,7,7,51,13.70% +112863,830,3099,State-funded primary,23,15,8,65.20%,34.80%,0,0.00%,4,17.40%,1,22,0,4.30%,95.70%,0.00%,7,7,23,30.40% +112864,830,3100,State-funded primary,41,22,19,53.70%,46.30%,1,2.40%,3,7.30%,1,38,2,2.40%,92.70%,4.90%,8,8,41,19.50% +112865,830,3101,State-funded primary,318,134,184,42.10%,57.90%,9,2.80%,54,17.00%,6,312,0,1.90%,98.10%,0.00%,134,142,318,44.70% +112866,830,3105,State-funded primary,39,18,21,46.20%,53.80%,2,5.10%,5,12.80%,0,38,1,0.00%,97.40%,2.60%,2,3,36,8.30% +112867,830,3106,State-funded primary,59,33,26,55.90%,44.10%,0,0.00%,7,11.90%,1,58,0,1.70%,98.30%,0.00%,13,14,59,23.70% +112868,830,3107,State-funded primary,315,159,156,50.50%,49.50%,6,1.90%,33,10.50%,8,305,2,2.50%,96.80%,0.60%,53,55,299,18.40% +112869,830,3110,State-funded primary,230,104,126,45.20%,54.80%,4,1.70%,45,19.60%,2,228,0,0.90%,99.10%,0.00%,90,93,230,40.40% +112870,830,3151,State-funded primary,68,40,28,58.80%,41.20%,1,1.50%,14,20.60%,0,68,0,0.00%,100.00%,0.00%,17,18,68,26.50% +112871,830,3156,State-funded primary,75,36,39,48.00%,52.00%,4,5.30%,3,4.00%,1,70,4,1.30%,93.30%,5.30%,12,12,75,16.00% +112872,830,3157,State-funded primary,216,105,111,48.60%,51.40%,3,1.40%,29,13.40%,1,215,0,0.50%,99.50%,0.00%,34,38,216,17.60% +112875,830,3161,State-funded primary,428,205,223,47.90%,52.10%,4,0.90%,50,11.70%,2,426,0,0.50%,99.50%,0.00%,67,65,395,16.50% +112876,830,3162,State-funded primary,170,83,87,48.80%,51.20%,6,3.50%,25,14.70%,20,150,0,11.80%,88.20%,0.00%,62,60,153,39.20% +112877,830,3163,State-funded primary,110,59,51,53.60%,46.40%,3,2.70%,11,10.00%,0,109,1,0.00%,99.10%,0.90%,22,23,110,20.90% +112878,830,3306,State-funded primary,41,16,25,39.00%,61.00%,0,0.00%,14,34.10%,0,41,0,0.00%,100.00%,0.00%,5,5,41,12.20% +112880,830,3312,State-funded primary,87,44,43,50.60%,49.40%,0,0.00%,15,17.20%,0,87,0,0.00%,100.00%,0.00%,24,22,75,29.30% +112881,830,3315,State-funded primary,123,59,64,48.00%,52.00%,0,0.00%,29,23.60%,0,123,0,0.00%,100.00%,0.00%,11,11,123,8.90% +112882,830,3316,State-funded primary,224,113,111,50.40%,49.60%,1,0.40%,28,12.50%,0,224,0,0.00%,100.00%,0.00%,84,82,209,39.20% +112883,830,3317,State-funded primary,61,40,21,65.60%,34.40%,0,0.00%,10,16.40%,1,60,0,1.60%,98.40%,0.00%,15,15,61,24.60% +112884,830,3319,State-funded primary,137,73,64,53.30%,46.70%,0,0.00%,11,8.00%,2,135,0,1.50%,98.50%,0.00%,27,28,137,20.40% +112885,830,3321,State-funded primary,148,76,72,51.40%,48.60%,0,0.00%,11,7.40%,2,146,0,1.40%,98.60%,0.00%,24,20,123,16.30% +112886,830,3324,State-funded primary,47,25,22,53.20%,46.80%,1,2.10%,11,23.40%,0,47,0,0.00%,100.00%,0.00%,6,6,47,12.80% +112887,830,3325,State-funded primary,104,50,54,48.10%,51.90%,1,1.00%,15,14.40%,1,103,0,1.00%,99.00%,0.00%,20,20,104,19.20% +112888,830,3326,State-funded primary,53,24,29,45.30%,54.70%,1,1.90%,23,43.40%,0,53,0,0.00%,100.00%,0.00%,7,7,53,13.20% +112890,830,3330,State-funded primary,40,14,26,35.00%,65.00%,0,0.00%,10,25.00%,0,40,0,0.00%,100.00%,0.00%,3,3,40,7.50% +112891,830,3331,State-funded primary,76,44,32,57.90%,42.10%,1,1.30%,8,10.50%,3,73,0,3.90%,96.10%,0.00%,6,6,67,9.00% +112892,830,3337,State-funded primary,59,29,30,49.20%,50.80%,1,1.70%,8,13.60%,1,58,0,1.70%,98.30%,0.00%,9,9,59,15.30% +112896,830,3342,State-funded primary,149,75,74,50.30%,49.70%,4,2.70%,38,25.50%,0,139,10,0.00%,93.30%,6.70%,14,14,149,9.40% +112898,830,3502,State-funded primary,420,229,191,54.50%,45.50%,7,1.70%,39,9.30%,37,383,0,8.80%,91.20%,0.00%,65,65,420,15.50% +112913,830,3523,State-funded primary,218,105,113,48.20%,51.80%,2,0.90%,16,7.30%,7,211,0,3.20%,96.80%,0.00%,16,16,218,7.30% +112915,831,3526,State-funded primary,110,57,53,51.80%,48.20%,8,7.30%,17,15.50%,93,17,0,84.50%,15.50%,0.00%,41,41,79,51.90% +112923,830,3538,State-funded primary,120,59,61,49.20%,50.80%,2,1.70%,15,12.50%,6,111,3,5.00%,92.50%,2.50%,24,27,111,24.30% +112924,830,3540,State-funded primary,67,29,38,43.30%,56.70%,0,0.00%,8,11.90%,5,62,0,7.50%,92.50%,0.00%,22,22,67,32.80% +112932,830,4019,State-funded secondary,931,429,502,46.10%,53.90%,62,6.70%,117,12.60%,15,916,0,1.60%,98.40%,0.00%,173,187,931,20.10% +112936,830,4057,State-funded secondary,670,323,347,48.20%,51.80%,13,1.90%,153,22.80%,25,637,8,3.70%,95.10%,1.20%,126,136,670,20.30% +112949,830,4173,State-funded secondary,809,374,435,46.20%,53.80%,36,4.40%,157,19.40%,9,800,0,1.10%,98.90%,0.00%,198,222,809,27.40% +112951,831,4177,State-funded secondary,1304,626,678,48.00%,52.00%,56,4.30%,195,15.00%,819,479,6,62.80%,36.70%,0.50%,560,617,1247,49.50% +112956,831,4182,State-funded secondary,1828,917,911,50.20%,49.80%,29,1.60%,146,8.00%,162,1663,3,8.90%,91.00%,0.20%,215,228,1471,15.50% +112958,830,4192,State-funded secondary,537,258,279,48.00%,52.00%,10,1.90%,107,19.90%,24,513,0,4.50%,95.50%,0.00%,218,236,537,43.90% +112961,830,4195,State-funded secondary,585,283,302,48.40%,51.60%,18,3.10%,119,20.30%,44,532,9,7.50%,90.90%,1.50%,275,303,585,51.80% +112968,830,4505,State-funded secondary,858,435,423,50.70%,49.30%,27,3.10%,143,16.70%,8,849,1,0.90%,99.00%,0.10%,150,145,694,20.90% +112969,830,4509,State-funded secondary,1868,957,911,51.20%,48.80%,45,2.40%,181,9.70%,30,1835,3,1.60%,98.20%,0.20%,233,233,1523,15.30% +112970,830,4510,State-funded secondary,1055,543,512,51.50%,48.50%,19,1.80%,97,9.20%,17,1021,17,1.60%,96.80%,1.60%,232,240,917,26.20% +112974,830,5200,State-funded primary,392,211,181,53.80%,46.20%,4,1.00%,66,16.80%,38,354,0,9.70%,90.30%,0.00%,99,105,392,26.80% +112976,830,5202,State-funded primary,206,86,120,41.70%,58.30%,3,1.50%,7,3.40%,4,202,0,1.90%,98.10%,0.00%,16,20,206,9.70% +112978,830,5204,State-funded primary,288,144,144,50.00%,50.00%,2,0.70%,52,18.10%,2,286,0,0.70%,99.30%,0.00%,92,94,271,34.70% +112981,830,5207,State-funded primary,128,60,68,46.90%,53.10%,0,0.00%,26,20.30%,1,127,0,0.80%,99.20%,0.00%,8,10,128,7.80% +112982,830,5208,State-funded primary,235,106,129,45.10%,54.90%,11,4.70%,56,23.80%,11,224,0,4.70%,95.30%,0.00%,83,80,208,38.50% +112983,831,5209,State-funded primary,286,144,142,50.30%,49.70%,12,4.20%,47,16.40%,55,231,0,19.20%,80.80%,0.00%,109,120,286,42.00% +112989,830,5404,State-funded secondary,1182,607,575,51.40%,48.60%,28,2.40%,114,9.60%,13,1168,1,1.10%,98.80%,0.10%,178,182,1041,17.50% +112991,831,5406,State-funded secondary,1107,530,577,47.90%,52.10%,23,2.10%,248,22.40%,205,900,2,18.50%,81.30%,0.20%,331,395,1107,35.70% +112996,830,5411,State-funded secondary,1386,733,653,52.90%,47.10%,20,1.40%,53,3.80%,23,1363,0,1.70%,98.30%,0.00%,158,149,1135,13.10% +113002,830,6004,Independent school,150,66,84,44.00%,56.00%,0,0.00%,22,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113003,830,6005,Independent school,284,126,158,44.40%,55.60%,8,2.80%,45,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113004,830,6000,Independent school,1252,552,700,44.10%,55.90%,1,0.10%,184,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113008,830,6007,Independent school,73,37,36,50.70%,49.30%,0,0.00%,8,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113009,830,6001,Independent school,631,280,351,44.40%,55.60%,0,0.00%,125,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113010,830,6014,Independent school,347,149,198,42.90%,57.10%,7,2.00%,88,25.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113013,831,6002,Independent school,117,42,75,35.90%,64.10%,1,0.90%,6,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113016,830,6018,Independent school,116,61,55,52.60%,47.40%,1,0.90%,23,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113017,831,6001,Independent school,640,471,169,73.60%,26.40%,0,0.00%,63,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113018,830,6015,Independent school,206,94,112,45.60%,54.40%,1,0.50%,14,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113019,830,6009,Independent school,45,12,33,26.70%,73.30%,44,97.80%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113021,830,6016,Independent school,123,40,83,32.50%,67.50%,123,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113022,830,6019,Independent school,413,212,201,51.30%,48.70%,4,1.00%,66,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113023,830,6020,Independent school,34,15,19,44.10%,55.90%,0,0.00%,16,47.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113024,831,6000,Independent school,61,33,28,54.10%,45.90%,0,0.00%,14,23.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113026,830,6013,Independent school,41,11,30,26.80%,73.20%,41,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113028,831,6004,Independent school,223,15,208,6.70%,93.30%,0,0.00%,35,15.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113031,830,7005,State-funded special school,161,59,102,36.60%,63.40%,158,98.10%,3,1.90%,15,146,0,9.30%,90.70%,0.00%,61,67,158,42.40% +113033,830,7009,State-funded special school,96,29,67,30.20%,69.80%,96,100.00%,0,0.00%,1,95,0,1.00%,99.00%,0.00%,45,47,96,49.00% +113040,830,7018,State-funded special school,123,37,86,30.10%,69.90%,123,100.00%,0,0.00%,2,121,0,1.60%,98.40%,0.00%,64,49,97,50.50% +113044,831,7023,Non-maintained special school,103,42,61,40.80%,59.20%,102,99.00%,1,1.00%,88,15,0,85.40%,14.60%,0.00%,57,48,75,64.00% +113050,878,1007,State-funded nursery,69,39,30,56.50%,43.50%,0,0.00%,2,2.90%,10,59,0,14.50%,85.50%,0.00%,36,0,0,0.00% +113051,879,1008,State-funded nursery,88,40,48,45.50%,54.50%,0,0.00%,9,10.20%,7,81,0,8.00%,92.00%,0.00%,0,0,0,0.00% +113052,879,1009,State-funded nursery,48,23,25,47.90%,52.10%,1,2.10%,17,35.40%,3,45,0,6.30%,93.80%,0.00%,0,0,0,0.00% +113060,878,2002,State-funded primary,111,51,60,45.90%,54.10%,10,9.00%,9,8.10%,1,109,1,0.90%,98.20%,0.90%,22,25,111,22.50% +113064,878,2007,State-funded primary,99,52,47,52.50%,47.50%,2,2.00%,10,10.10%,1,98,0,1.00%,99.00%,0.00%,12,12,87,13.80% +113065,878,2008,State-funded primary,18,14,4,77.80%,22.20%,0,0.00%,2,11.10%,1,17,0,5.60%,94.40%,0.00%,3,3,18,16.70% +113066,878,2009,State-funded primary,176,86,90,48.90%,51.10%,8,4.50%,27,15.30%,3,172,1,1.70%,97.70%,0.60%,9,9,176,5.10% +113068,878,2011,State-funded primary,143,75,68,52.40%,47.60%,10,7.00%,10,7.00%,0,143,0,0.00%,100.00%,0.00%,30,31,143,21.70% +113069,878,2012,State-funded primary,404,200,204,49.50%,50.50%,16,4.00%,84,20.80%,30,373,1,7.40%,92.30%,0.20%,106,111,404,27.50% +113071,878,2015,State-funded primary,140,80,60,57.10%,42.90%,8,5.70%,27,19.30%,0,140,0,0.00%,100.00%,0.00%,23,24,140,17.10% +113079,878,2025,State-funded primary,252,122,130,48.40%,51.60%,17,6.70%,58,23.00%,35,217,0,13.90%,86.10%,0.00%,90,85,213,39.90% +113080,878,2026,State-funded primary,330,162,168,49.10%,50.90%,5,1.50%,21,6.40%,58,272,0,17.60%,82.40%,0.00%,47,42,268,15.70% +113081,878,2027,State-funded primary,344,170,174,49.40%,50.60%,16,4.70%,55,16.00%,56,288,0,16.30%,83.70%,0.00%,57,60,344,17.40% +113082,878,2028,State-funded primary,399,189,210,47.40%,52.60%,13,3.30%,57,14.30%,75,324,0,18.80%,81.20%,0.00%,100,99,366,27.00% +113083,878,2029,State-funded primary,131,71,60,54.20%,45.80%,5,3.80%,22,16.80%,61,70,0,46.60%,53.40%,0.00%,23,24,131,18.30% +113086,878,2033,State-funded primary,279,133,146,47.70%,52.30%,7,2.50%,25,9.00%,43,233,3,15.40%,83.50%,1.10%,36,34,245,13.90% +113087,878,2034,State-funded primary,354,178,176,50.30%,49.70%,14,4.00%,53,15.00%,85,268,1,24.00%,75.70%,0.30%,69,69,354,19.50% +113095,878,2043,State-funded primary,239,119,120,49.80%,50.20%,13,5.40%,48,20.10%,65,174,0,27.20%,72.80%,0.00%,109,91,201,45.30% +113096,878,2045,State-funded primary,402,200,202,49.80%,50.20%,19,4.70%,73,18.20%,16,386,0,4.00%,96.00%,0.00%,98,96,375,25.60% +113098,878,2048,State-funded primary,408,190,218,46.60%,53.40%,19,4.70%,44,10.80%,25,383,0,6.10%,93.90%,0.00%,119,117,382,30.60% +113100,878,2050,State-funded primary,77,42,35,54.50%,45.50%,3,3.90%,7,9.10%,1,76,0,1.30%,98.70%,0.00%,15,15,77,19.50% +113103,878,2054,State-funded primary,184,101,83,54.90%,45.10%,9,4.90%,18,9.80%,4,180,0,2.20%,97.80%,0.00%,29,30,184,16.30% +113104,878,2055,State-funded primary,129,58,71,45.00%,55.00%,2,1.60%,9,7.00%,0,129,0,0.00%,100.00%,0.00%,13,11,107,10.30% +113105,878,2056,State-funded primary,419,216,203,51.60%,48.40%,12,2.90%,120,28.60%,13,405,1,3.10%,96.70%,0.20%,67,67,419,16.00% +113106,878,2058,State-funded primary,205,96,109,46.80%,53.20%,5,2.40%,10,4.90%,0,205,0,0.00%,100.00%,0.00%,3,4,205,2.00% +113107,878,2059,State-funded primary,106,46,60,43.40%,56.60%,8,7.50%,14,13.20%,1,105,0,0.90%,99.10%,0.00%,10,10,106,9.40% +113108,878,2060,State-funded primary,373,183,190,49.10%,50.90%,14,3.80%,42,11.30%,33,339,1,8.80%,90.90%,0.30%,44,47,373,12.60% +113109,878,2062,State-funded primary,83,52,31,62.70%,37.30%,1,1.20%,3,3.60%,0,82,1,0.00%,98.80%,1.20%,7,7,83,8.40% +113112,878,2073,State-funded primary,90,44,46,48.90%,51.10%,3,3.30%,14,15.60%,0,90,0,0.00%,100.00%,0.00%,6,7,90,7.80% +113113,878,2074,State-funded primary,126,63,63,50.00%,50.00%,2,1.60%,9,7.10%,2,124,0,1.60%,98.40%,0.00%,11,11,126,8.70% +113114,878,2075,State-funded primary,383,178,205,46.50%,53.50%,16,4.20%,59,15.40%,17,365,1,4.40%,95.30%,0.30%,49,50,383,13.10% +113117,878,2079,State-funded primary,266,139,127,52.30%,47.70%,6,2.30%,24,9.00%,15,251,0,5.60%,94.40%,0.00%,44,48,266,18.00% +113120,878,2085,State-funded primary,412,221,191,53.60%,46.40%,14,3.40%,67,16.30%,8,404,0,1.90%,98.10%,0.00%,83,83,412,20.10% +113124,878,2089,State-funded primary,20,9,11,45.00%,55.00%,1,5.00%,4,20.00%,0,20,0,0.00%,100.00%,0.00%,2,2,19,10.50% +113125,878,2200,State-funded primary,246,113,133,45.90%,54.10%,4,1.60%,14,5.70%,2,244,0,0.80%,99.20%,0.00%,21,19,212,9.00% +113126,878,2201,State-funded primary,34,13,21,38.20%,61.80%,0,0.00%,4,11.80%,0,34,0,0.00%,100.00%,0.00%,3,4,29,13.80% +113128,878,2205,State-funded primary,170,82,88,48.20%,51.80%,3,1.80%,13,7.60%,15,155,0,8.80%,91.20%,0.00%,25,25,170,14.70% +113130,878,2207,State-funded primary,449,202,247,45.00%,55.00%,22,4.90%,56,12.50%,4,445,0,0.90%,99.10%,0.00%,141,142,405,35.10% +113132,878,2209,State-funded primary,561,270,291,48.10%,51.90%,14,2.50%,71,12.70%,19,529,13,3.40%,94.30%,2.30%,221,208,496,41.90% +113133,878,2210,State-funded primary,83,42,41,50.60%,49.40%,3,3.60%,12,14.50%,3,80,0,3.60%,96.40%,0.00%,12,12,71,16.90% +113134,878,2211,State-funded primary,164,85,79,51.80%,48.20%,1,0.60%,8,4.90%,1,162,1,0.60%,98.80%,0.60%,15,17,164,10.40% +113138,878,2215,State-funded primary,412,184,228,44.70%,55.30%,7,1.70%,74,18.00%,5,407,0,1.20%,98.80%,0.00%,45,46,385,11.90% +113139,878,2216,State-funded primary,383,186,197,48.60%,51.40%,14,3.70%,78,20.40%,22,361,0,5.70%,94.30%,0.00%,54,55,383,14.40% +113141,878,2218,State-funded primary,64,35,29,54.70%,45.30%,1,1.60%,5,7.80%,1,63,0,1.60%,98.40%,0.00%,14,13,55,23.60% +113146,878,2223,State-funded primary,28,15,13,53.60%,46.40%,0,0.00%,3,10.70%,0,28,0,0.00%,100.00%,0.00%,3,3,21,14.30% +113148,878,2225,State-funded primary,88,37,51,42.00%,58.00%,3,3.40%,4,4.50%,1,87,0,1.10%,98.90%,0.00%,18,17,77,22.10% +113151,878,2228,State-funded primary,89,40,49,44.90%,55.10%,0,0.00%,9,10.10%,0,89,0,0.00%,100.00%,0.00%,7,7,89,7.90% +113152,878,2229,State-funded primary,122,53,69,43.40%,56.60%,3,2.50%,14,11.50%,4,113,5,3.30%,92.60%,4.10%,16,18,122,14.80% +113154,878,2231,State-funded primary,107,55,52,51.40%,48.60%,1,0.90%,20,18.70%,4,103,0,3.70%,96.30%,0.00%,7,8,93,8.60% +113155,878,2232,State-funded primary,263,127,136,48.30%,51.70%,8,3.00%,57,21.70%,15,248,0,5.70%,94.30%,0.00%,69,61,221,27.60% +113156,878,2233,State-funded primary,142,68,74,47.90%,52.10%,4,2.80%,19,13.40%,4,138,0,2.80%,97.20%,0.00%,10,12,142,8.50% +113157,878,2234,State-funded primary,41,19,22,46.30%,53.70%,0,0.00%,4,9.80%,0,40,1,0.00%,97.60%,2.40%,13,13,41,31.70% +113158,878,2235,State-funded primary,29,12,17,41.40%,58.60%,0,0.00%,3,10.30%,0,29,0,0.00%,100.00%,0.00%,7,8,29,27.60% +113160,878,2237,State-funded primary,90,42,48,46.70%,53.30%,1,1.10%,11,12.20%,0,90,0,0.00%,100.00%,0.00%,12,14,81,17.30% +113161,878,2238,State-funded primary,104,43,61,41.30%,58.70%,1,1.00%,9,8.70%,2,102,0,1.90%,98.10%,0.00%,5,5,104,4.80% +113162,878,2239,State-funded primary,124,58,66,46.80%,53.20%,4,3.20%,27,21.80%,0,124,0,0.00%,100.00%,0.00%,16,14,104,13.50% +113164,878,2241,State-funded primary,63,24,39,38.10%,61.90%,1,1.60%,14,22.20%,1,62,0,1.60%,98.40%,0.00%,7,8,55,14.50% +113165,878,2242,State-funded primary,92,47,45,51.10%,48.90%,0,0.00%,9,9.80%,0,92,0,0.00%,100.00%,0.00%,17,17,92,18.50% +113166,878,2243,State-funded primary,74,30,44,40.50%,59.50%,1,1.40%,11,14.90%,1,73,0,1.40%,98.60%,0.00%,14,14,74,18.90% +113167,878,2244,State-funded primary,48,23,25,47.90%,52.10%,3,6.30%,11,22.90%,0,48,0,0.00%,100.00%,0.00%,11,11,48,22.90% +113168,878,2245,State-funded primary,247,125,122,50.60%,49.40%,7,2.80%,51,20.60%,20,227,0,8.10%,91.90%,0.00%,60,62,247,25.10% +113172,878,2249,State-funded primary,115,53,62,46.10%,53.90%,3,2.60%,21,18.30%,0,115,0,0.00%,100.00%,0.00%,19,21,97,21.60% +113174,878,2252,State-funded primary,212,105,107,49.50%,50.50%,2,0.90%,29,13.70%,4,207,1,1.90%,97.60%,0.50%,39,34,180,18.90% +113176,878,2254,State-funded primary,121,54,67,44.60%,55.40%,4,3.30%,16,13.20%,1,120,0,0.80%,99.20%,0.00%,22,22,121,18.20% +113179,878,2257,State-funded primary,200,106,94,53.00%,47.00%,5,2.50%,24,12.00%,4,196,0,2.00%,98.00%,0.00%,19,21,200,10.50% +113183,878,2400,State-funded primary,110,53,57,48.20%,51.80%,0,0.00%,9,8.20%,2,108,0,1.80%,98.20%,0.00%,12,13,110,11.80% +113185,878,2402,State-funded primary,195,105,90,53.80%,46.20%,10,5.10%,29,14.90%,2,193,0,1.00%,99.00%,0.00%,23,23,195,11.80% +113187,878,2404,State-funded primary,258,125,133,48.40%,51.60%,6,2.30%,32,12.40%,9,248,1,3.50%,96.10%,0.40%,35,37,258,14.30% +113197,878,2416,State-funded primary,93,44,49,47.30%,52.70%,3,3.20%,12,12.90%,1,92,0,1.10%,98.90%,0.00%,3,6,93,6.50% +113198,878,2417,State-funded primary,36,18,18,50.00%,50.00%,2,5.60%,5,13.90%,3,33,0,8.30%,91.70%,0.00%,1,1,36,2.80% +113201,878,2420,State-funded primary,424,215,209,50.70%,49.30%,15,3.50%,75,17.70%,18,404,2,4.20%,95.30%,0.50%,61,64,424,15.10% +113203,878,2423,State-funded primary,178,85,93,47.80%,52.20%,6,3.40%,43,24.20%,1,177,0,0.60%,99.40%,0.00%,24,25,178,14.00% +113205,878,2425,State-funded primary,373,185,188,49.60%,50.40%,11,2.90%,44,11.80%,18,355,0,4.80%,95.20%,0.00%,67,68,373,18.20% +113207,878,2428,State-funded primary,98,44,54,44.90%,55.10%,2,2.00%,15,15.30%,1,97,0,1.00%,99.00%,0.00%,11,11,98,11.20% +113209,878,2431,State-funded primary,424,204,220,48.10%,51.90%,6,1.40%,82,19.30%,5,419,0,1.20%,98.80%,0.00%,64,62,383,16.20% +113210,878,2432,State-funded primary,320,157,163,49.10%,50.90%,11,3.40%,75,23.40%,17,303,0,5.30%,94.70%,0.00%,115,111,297,37.40% +113216,880,2439,State-funded primary,714,359,355,50.30%,49.70%,19,2.70%,95,13.30%,15,699,0,2.10%,97.90%,0.00%,141,139,623,22.30% +113222,878,2445,State-funded primary,104,50,54,48.10%,51.90%,4,3.80%,19,18.30%,0,103,1,0.00%,99.00%,1.00%,7,7,104,6.70% +113223,878,2446,State-funded primary,210,101,109,48.10%,51.90%,3,1.40%,15,7.10%,2,207,1,1.00%,98.60%,0.50%,18,21,210,10.00% +113224,878,2448,State-funded primary,420,199,221,47.40%,52.60%,12,2.90%,28,6.70%,11,409,0,2.60%,97.40%,0.00%,67,67,420,16.00% +113231,880,2455,State-funded primary,225,122,103,54.20%,45.80%,5,2.20%,21,9.30%,17,208,0,7.60%,92.40%,0.00%,77,72,209,34.40% +113233,880,2460,State-funded primary,230,111,119,48.30%,51.70%,17,7.40%,33,14.30%,3,226,1,1.30%,98.30%,0.40%,87,79,199,39.70% +113234,878,2461,State-funded primary,307,174,133,56.70%,43.30%,9,2.90%,46,15.00%,4,303,0,1.30%,98.70%,0.00%,47,50,307,16.30% +113240,880,2469,State-funded primary,681,357,324,52.40%,47.60%,13,1.90%,65,9.50%,4,677,0,0.60%,99.40%,0.00%,113,111,626,17.70% +113241,878,2472,State-funded primary,456,215,241,47.10%,52.90%,17,3.70%,88,19.30%,7,449,0,1.50%,98.50%,0.00%,75,74,413,17.90% +113245,878,2476,State-funded primary,339,147,192,43.40%,56.60%,14,4.10%,39,11.50%,5,334,0,1.50%,98.50%,0.00%,30,31,339,9.10% +113250,878,2604,State-funded primary,69,35,34,50.70%,49.30%,3,4.30%,5,7.20%,2,67,0,2.90%,97.10%,0.00%,6,6,69,8.70% +113251,878,2605,State-funded primary,184,77,107,41.80%,58.20%,7,3.80%,29,15.80%,8,175,1,4.30%,95.10%,0.50%,37,39,184,21.20% +113253,878,2608,State-funded primary,204,101,103,49.50%,50.50%,12,5.90%,16,7.80%,1,201,2,0.50%,98.50%,1.00%,46,48,204,23.50% +113254,878,2609,State-funded primary,99,45,54,45.50%,54.50%,6,6.10%,11,11.10%,0,99,0,0.00%,100.00%,0.00%,18,20,99,20.20% +113258,878,2614,State-funded primary,58,29,29,50.00%,50.00%,7,12.10%,8,13.80%,1,57,0,1.70%,98.30%,0.00%,10,11,58,19.00% +113262,878,2618,State-funded primary,28,15,13,53.60%,46.40%,4,14.30%,8,28.60%,0,28,0,0.00%,100.00%,0.00%,4,5,28,17.90% +113264,878,2622,State-funded primary,67,33,34,49.30%,50.70%,0,0.00%,11,16.40%,3,64,0,4.50%,95.50%,0.00%,7,7,67,10.40% +113265,878,2623,State-funded primary,387,187,200,48.30%,51.70%,17,4.40%,67,17.30%,19,368,0,4.90%,95.10%,0.00%,97,88,339,26.00% +113276,879,2638,State-funded primary,205,109,96,53.20%,46.80%,5,2.40%,34,16.60%,16,189,0,7.80%,92.20%,0.00%,53,54,205,26.30% +113278,879,2640,State-funded primary,235,116,119,49.40%,50.60%,6,2.60%,47,20.00%,13,222,0,5.50%,94.50%,0.00%,120,122,235,51.90% +113297,879,2670,State-funded primary,394,219,175,55.60%,44.40%,7,1.80%,48,12.20%,43,350,1,10.90%,88.80%,0.30%,107,113,394,28.70% +113298,879,2671,State-funded primary,405,200,205,49.40%,50.60%,9,2.20%,64,15.80%,44,360,1,10.90%,88.90%,0.20%,120,123,405,30.40% +113328,879,2707,State-funded primary,223,113,110,50.70%,49.30%,10,4.50%,35,15.70%,1,222,0,0.40%,99.60%,0.00%,42,45,223,20.20% +113335,878,2715,State-funded primary,169,94,75,55.60%,44.40%,2,1.20%,18,10.70%,4,165,0,2.40%,97.60%,0.00%,23,25,169,14.80% +113338,878,2718,State-funded primary,105,52,53,49.50%,50.50%,3,2.90%,19,18.10%,1,104,0,1.00%,99.00%,0.00%,20,22,105,21.00% +113340,878,2720,State-funded primary,314,153,161,48.70%,51.30%,21,6.70%,38,12.10%,47,267,0,15.00%,85.00%,0.00%,112,112,314,35.70% +113341,878,2721,State-funded primary,413,201,212,48.70%,51.30%,12,2.90%,62,15.00%,36,376,1,8.70%,91.00%,0.20%,93,97,370,26.20% +113343,878,2723,State-funded primary,376,190,186,50.50%,49.50%,17,4.50%,57,15.20%,13,363,0,3.50%,96.50%,0.00%,113,114,346,32.90% +113347,878,3001,State-funded primary,57,30,27,52.60%,47.40%,1,1.80%,4,7.00%,3,54,0,5.30%,94.70%,0.00%,4,4,54,7.40% +113348,878,3002,State-funded primary,24,13,11,54.20%,45.80%,2,8.30%,6,25.00%,3,21,0,12.50%,87.50%,0.00%,6,6,21,28.60% +113349,878,3003,State-funded primary,32,14,18,43.80%,56.30%,3,9.40%,5,15.60%,0,32,0,0.00%,100.00%,0.00%,12,12,32,37.50% +113351,878,3005,State-funded primary,470,225,245,47.90%,52.10%,30,6.40%,123,26.20%,27,442,1,5.70%,94.00%,0.20%,90,89,418,21.30% +113355,878,3011,State-funded primary,606,300,306,49.50%,50.50%,23,3.80%,115,19.00%,14,592,0,2.30%,97.70%,0.00%,114,114,606,18.80% +113357,878,3013,State-funded primary,152,77,75,50.70%,49.30%,7,4.60%,24,15.80%,2,150,0,1.30%,98.70%,0.00%,11,11,152,7.20% +113358,878,3014,State-funded primary,178,90,88,50.60%,49.40%,11,6.20%,38,21.30%,4,173,1,2.20%,97.20%,0.60%,17,17,178,9.60% +113359,878,3015,State-funded primary,73,39,34,53.40%,46.60%,1,1.40%,10,13.70%,4,69,0,5.50%,94.50%,0.00%,13,13,73,17.80% +113360,878,3016,State-funded primary,103,54,49,52.40%,47.60%,0,0.00%,18,17.50%,0,103,0,0.00%,100.00%,0.00%,4,4,103,3.90% +113361,878,3017,State-funded primary,56,18,38,32.10%,67.90%,7,12.50%,11,19.60%,3,52,1,5.40%,92.90%,1.80%,16,16,56,28.60% +113365,878,3022,State-funded primary,114,54,60,47.40%,52.60%,5,4.40%,2,1.80%,2,112,0,1.80%,98.20%,0.00%,19,19,100,19.00% +113367,878,3024,State-funded primary,69,43,26,62.30%,37.70%,1,1.40%,14,20.30%,2,67,0,2.90%,97.10%,0.00%,11,11,69,15.90% +113368,878,3025,State-funded primary,98,53,45,54.10%,45.90%,2,2.00%,14,14.30%,0,98,0,0.00%,100.00%,0.00%,6,6,98,6.10% +113369,878,3026,State-funded primary,78,44,34,56.40%,43.60%,0,0.00%,7,9.00%,1,77,0,1.30%,98.70%,0.00%,3,3,78,3.80% +113370,878,3028,State-funded primary,104,47,57,45.20%,54.80%,14,13.50%,20,19.20%,0,101,3,0.00%,97.10%,2.90%,58,49,92,53.30% +113371,878,3053,State-funded primary,79,36,43,45.60%,54.40%,0,0.00%,22,27.80%,0,79,0,0.00%,100.00%,0.00%,7,7,79,8.90% +113375,878,3059,State-funded primary,85,40,45,47.10%,52.90%,4,4.70%,12,14.10%,3,82,0,3.50%,96.50%,0.00%,7,7,85,8.20% +113376,878,3060,State-funded primary,85,42,43,49.40%,50.60%,4,4.70%,29,34.10%,0,85,0,0.00%,100.00%,0.00%,15,15,85,17.60% +113377,878,3061,State-funded primary,497,242,255,48.70%,51.30%,23,4.60%,138,27.80%,24,473,0,4.80%,95.20%,0.00%,111,113,467,24.20% +113379,878,3063,State-funded primary,323,159,164,49.20%,50.80%,10,3.10%,53,16.40%,8,315,0,2.50%,97.50%,0.00%,97,95,285,33.30% +113381,878,3065,State-funded primary,399,196,203,49.10%,50.90%,29,7.30%,90,22.60%,16,383,0,4.00%,96.00%,0.00%,150,162,399,40.60% +113382,878,3066,State-funded primary,39,18,21,46.20%,53.80%,0,0.00%,3,7.70%,0,38,1,0.00%,97.40%,2.60%,8,8,39,20.50% +113385,878,3069,State-funded primary,409,196,213,47.90%,52.10%,10,2.40%,40,9.80%,4,405,0,1.00%,99.00%,0.00%,81,82,409,20.00% +113392,878,3105,State-funded primary,409,199,210,48.70%,51.30%,11,2.70%,54,13.20%,3,406,0,0.70%,99.30%,0.00%,70,73,409,17.80% +113398,878,3112,State-funded primary,349,170,179,48.70%,51.30%,10,2.90%,24,6.90%,11,338,0,3.20%,96.80%,0.00%,65,66,349,18.90% +113399,878,3114,State-funded primary,74,36,38,48.60%,51.40%,3,4.10%,10,13.50%,1,73,0,1.40%,98.60%,0.00%,16,16,74,21.60% +113407,878,3128,State-funded primary,446,218,228,48.90%,51.10%,12,2.70%,75,16.80%,8,437,1,1.80%,98.00%,0.20%,78,74,393,18.80% +113409,878,3152,State-funded primary,85,50,35,58.80%,41.20%,2,2.40%,19,22.40%,2,83,0,2.40%,97.60%,0.00%,21,22,85,25.90% +113411,878,3154,State-funded primary,43,29,14,67.40%,32.60%,0,0.00%,6,14.00%,0,43,0,0.00%,100.00%,0.00%,10,11,43,25.60% +113416,879,3159,State-funded primary,432,192,240,44.40%,55.60%,5,1.20%,41,9.50%,15,417,0,3.50%,96.50%,0.00%,39,42,432,9.70% +113417,879,3160,State-funded primary,207,98,109,47.30%,52.70%,1,0.50%,27,13.00%,34,173,0,16.40%,83.60%,0.00%,53,55,207,26.60% +113418,879,3161,State-funded primary,334,167,167,50.00%,50.00%,4,1.20%,58,17.40%,8,326,0,2.40%,97.60%,0.00%,51,51,296,17.20% +113422,878,3300,State-funded primary,95,47,48,49.50%,50.50%,0,0.00%,17,17.90%,1,94,0,1.10%,98.90%,0.00%,6,8,95,8.40% +113425,878,3304,State-funded primary,316,149,167,47.20%,52.80%,5,1.60%,38,12.00%,6,309,1,1.90%,97.80%,0.30%,50,48,288,16.70% +113430,878,3309,State-funded primary,168,88,80,52.40%,47.60%,5,3.00%,38,22.60%,25,143,0,14.90%,85.10%,0.00%,34,35,168,20.80% +113432,878,3311,State-funded primary,39,21,18,53.80%,46.20%,5,12.80%,7,17.90%,5,34,0,12.80%,87.20%,0.00%,9,9,31,29.00% +113433,878,3312,State-funded primary,229,121,108,52.80%,47.20%,8,3.50%,29,12.70%,2,220,7,0.90%,96.10%,3.10%,23,23,229,10.00% +113438,878,3319,State-funded primary,73,34,39,46.60%,53.40%,3,4.10%,23,31.50%,4,69,0,5.50%,94.50%,0.00%,6,7,73,9.60% +113440,878,3321,State-funded primary,188,93,95,49.50%,50.50%,3,1.60%,30,16.00%,1,186,1,0.50%,98.90%,0.50%,14,14,188,7.40% +113441,878,3322,State-funded primary,50,25,25,50.00%,50.00%,0,0.00%,16,32.00%,0,50,0,0.00%,100.00%,0.00%,8,8,42,19.00% +113445,878,3328,State-funded primary,471,211,260,44.80%,55.20%,17,3.60%,64,13.60%,36,435,0,7.60%,92.40%,0.00%,101,90,417,21.60% +113451,878,3455,State-funded primary,83,48,35,57.80%,42.20%,0,0.00%,6,7.20%,2,81,0,2.40%,97.60%,0.00%,7,7,83,8.40% +113453,878,3457,State-funded primary,214,111,103,51.90%,48.10%,5,2.30%,47,22.00%,8,206,0,3.70%,96.30%,0.00%,53,57,214,26.60% +113454,878,3459,State-funded primary,228,109,119,47.80%,52.20%,8,3.50%,37,16.20%,5,223,0,2.20%,97.80%,0.00%,66,67,228,29.40% +113455,878,3460,State-funded primary,88,41,47,46.60%,53.40%,0,0.00%,12,13.60%,1,87,0,1.10%,98.90%,0.00%,7,7,88,8.00% +113456,878,3461,State-funded primary,157,67,90,42.70%,57.30%,7,4.50%,23,14.60%,3,154,0,1.90%,98.10%,0.00%,29,29,142,20.40% +113463,878,3605,State-funded primary,135,65,70,48.10%,51.90%,12,8.90%,24,17.80%,2,133,0,1.50%,98.50%,0.00%,46,48,135,35.60% +113465,878,3607,State-funded primary,205,100,105,48.80%,51.20%,5,2.40%,34,16.60%,1,203,1,0.50%,99.00%,0.50%,35,37,205,18.00% +113477,878,3620,State-funded primary,216,110,106,50.90%,49.10%,6,2.80%,44,20.40%,14,202,0,6.50%,93.50%,0.00%,82,80,196,40.80% +113478,878,3751,State-funded primary,103,55,48,53.40%,46.60%,5,4.90%,24,23.30%,4,99,0,3.90%,96.10%,0.00%,26,26,103,25.20% +113479,878,3752,State-funded primary,186,93,93,50.00%,50.00%,4,2.20%,15,8.10%,1,184,1,0.50%,98.90%,0.50%,22,22,186,11.80% +113493,878,3768,State-funded primary,411,187,224,45.50%,54.50%,6,1.50%,29,7.10%,20,391,0,4.90%,95.10%,0.00%,36,36,411,8.80% +113495,878,3772,State-funded primary,74,33,41,44.60%,55.40%,5,6.80%,16,21.60%,0,74,0,0.00%,100.00%,0.00%,6,6,74,8.10% +113502,878,4010,State-funded secondary,745,382,363,51.30%,48.70%,32,4.30%,146,19.60%,57,688,0,7.70%,92.30%,0.00%,135,160,745,21.50% +113503,878,4011,State-funded secondary,899,453,446,50.40%,49.60%,35,3.90%,118,13.10%,21,878,0,2.30%,97.70%,0.00%,155,164,754,21.80% +113512,878,4057,State-funded secondary,657,346,311,52.70%,47.30%,16,2.40%,71,10.80%,16,641,0,2.40%,97.60%,0.00%,128,145,657,22.10% +113526,880,4117,State-funded secondary,1159,592,567,51.10%,48.90%,59,5.10%,219,18.90%,71,1087,1,6.10%,93.80%,0.10%,322,337,1061,31.80% +113533,879,4172,State-funded secondary,793,374,419,47.20%,52.80%,25,3.20%,164,20.70%,23,770,0,2.90%,97.10%,0.00%,303,304,704,43.20% +113548,878,4192,State-funded secondary,1183,582,601,49.20%,50.80%,50,4.20%,176,14.90%,67,1116,0,5.70%,94.30%,0.00%,266,339,1183,28.70% +113551,880,4601,State-funded secondary,1030,517,513,50.20%,49.80%,22,2.10%,165,16.00%,104,925,1,10.10%,89.80%,0.10%,386,386,917,42.10% +113553,878,4607,State-funded secondary,1295,648,647,50.00%,50.00%,67,5.20%,213,16.40%,142,1150,3,11.00%,88.80%,0.20%,147,179,1295,13.80% +113561,878,6000,Independent school,271,112,159,41.30%,58.70%,7,2.60%,31,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113566,880,6000,Independent school,134,78,56,58.20%,41.80%,1,0.70%,44,32.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113567,878,6004,Independent school,48,23,25,47.90%,52.10%,9,18.80%,6,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113571,878,6007,Independent school,58,31,27,53.40%,46.60%,58,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113573,878,6009,Independent school,640,296,344,46.30%,53.80%,3,0.50%,159,24.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113574,878,6010,Independent school,278,105,173,37.80%,62.20%,20,7.20%,47,16.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113575,878,6011,Independent school,620,256,364,41.30%,58.70%,0,0.00%,77,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113577,878,6012,Independent school,257,101,156,39.30%,60.70%,0,0.00%,2,0.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113579,878,6014,Independent school,522,249,273,47.70%,52.30%,3,0.60%,188,36.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113583,878,6018,Independent school,174,75,99,43.10%,56.90%,1,0.60%,26,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113587,878,6020,Independent school,298,125,173,41.90%,58.10%,2,0.70%,73,24.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113594,879,6001,Independent school,50,22,28,44.00%,56.00%,0,0.00%,5,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113595,879,6002,Independent school,306,158,148,51.60%,48.40%,0,0.00%,36,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113603,878,6029,Independent school,234,116,118,49.60%,50.40%,2,0.90%,25,10.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113604,878,6030,Independent school,404,197,207,48.80%,51.20%,42,10.40%,80,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113605,878,6031,Independent school,274,114,160,41.60%,58.40%,4,1.50%,29,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113606,878,6032,Independent school,657,313,344,47.60%,52.40%,1,0.20%,197,30.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113607,878,6033,Independent school,961,366,595,38.10%,61.90%,1,0.10%,241,25.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113608,878,6034,Independent school,470,470,0,100.00%,0.00%,1,0.20%,97,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113609,879,6004,Independent school,552,226,326,40.90%,59.10%,0,0.00%,128,23.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113616,878,6039,Independent school,37,8,29,21.60%,78.40%,37,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113617,878,6040,Independent school,56,32,24,57.10%,42.90%,2,3.60%,14,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113619,878,6042,Independent school,73,34,39,46.60%,53.40%,2,2.70%,37,50.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113623,878,6045,Independent school,63,23,40,36.50%,63.50%,62,98.40%,1,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113624,878,6046,Independent school,60,25,35,41.70%,58.30%,0,0.00%,3,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113629,878,6050,Independent school,73,28,45,38.40%,61.60%,5,6.80%,1,1.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113633,878,7002,State-funded special school,238,71,167,29.80%,70.20%,238,100.00%,0,0.00%,17,215,6,7.10%,90.30%,2.50%,103,94,205,45.90% +113634,878,7005,State-funded special school,144,61,83,42.40%,57.60%,144,100.00%,0,0.00%,1,143,0,0.70%,99.30%,0.00%,58,73,144,50.70% +113635,878,7006,State-funded special school,120,27,93,22.50%,77.50%,120,100.00%,0,0.00%,3,117,0,2.50%,97.50%,0.00%,38,39,114,34.20% +113636,878,7008,State-funded special school,80,0,80,0.00%,100.00%,80,100.00%,0,0.00%,1,79,0,1.30%,98.80%,0.00%,46,51,80,63.80% +113637,878,7020,State-funded special school,150,40,110,26.70%,73.30%,150,100.00%,0,0.00%,0,150,0,0.00%,100.00%,0.00%,81,87,150,58.00% +113638,878,7021,State-funded special school,187,65,122,34.80%,65.20%,187,100.00%,0,0.00%,1,186,0,0.50%,99.50%,0.00%,87,80,167,47.90% +113641,880,7042,State-funded special school,266,83,183,31.20%,68.80%,262,98.50%,4,1.50%,8,258,0,3.00%,97.00%,0.00%,144,127,230,55.20% +113643,878,7044,State-funded special school,158,56,102,35.40%,64.60%,158,100.00%,0,0.00%,2,156,0,1.30%,98.70%,0.00%,67,67,138,48.60% +113644,879,7062,State-funded special school,88,44,44,50.00%,50.00%,88,100.00%,0,0.00%,5,82,1,5.70%,93.20%,1.10%,25,23,73,31.50% +113645,879,7063,State-funded special school,95,22,73,23.20%,76.80%,95,100.00%,0,0.00%,8,87,0,8.40%,91.60%,0.00%,43,40,77,51.90% +113648,879,7066,State-funded special school,103,25,78,24.30%,75.70%,103,100.00%,0,0.00%,1,102,0,1.00%,99.00%,0.00%,53,58,103,56.30% +113649,879,7067,State-funded special school,100,17,83,17.00%,83.00%,100,100.00%,0,0.00%,0,100,0,0.00%,100.00%,0.00%,62,72,100,72.00% +113650,879,7068,State-funded special school,126,19,107,15.10%,84.90%,126,100.00%,0,0.00%,8,118,0,6.30%,93.70%,0.00%,59,62,126,49.20% +113651,879,7069,State-funded special school,125,36,89,28.80%,71.20%,125,100.00%,0,0.00%,18,107,0,14.40%,85.60%,0.00%,73,60,108,55.60% +113654,878,7083,Non-maintained special school,46,11,35,23.90%,76.10%,46,100.00%,0,0.00%,29,17,0,63.00%,37.00%,0.00%,13,11,24,45.80% +113659,838,2002,State-funded primary,265,144,121,54.30%,45.70%,8,3.00%,54,20.40%,68,197,0,25.70%,74.30%,0.00%,11,11,237,4.60% +113661,838,2005,State-funded primary,136,64,72,47.10%,52.90%,1,0.70%,20,14.70%,2,134,0,1.50%,98.50%,0.00%,15,15,136,11.00% +113662,838,2008,State-funded primary,89,49,40,55.10%,44.90%,2,2.20%,23,25.80%,8,81,0,9.00%,91.00%,0.00%,19,19,83,22.90% +113663,838,2009,State-funded primary,51,30,21,58.80%,41.20%,2,3.90%,8,15.70%,1,50,0,2.00%,98.00%,0.00%,4,4,45,8.90% +113669,838,2022,State-funded primary,86,33,53,38.40%,61.60%,3,3.50%,13,15.10%,2,84,0,2.30%,97.70%,0.00%,19,19,86,22.10% +113674,838,2030,State-funded primary,84,29,55,34.50%,65.50%,5,6.00%,17,20.20%,3,81,0,3.60%,96.40%,0.00%,13,13,84,15.50% +113675,838,2032,State-funded primary,86,39,47,45.30%,54.70%,1,1.20%,13,15.10%,2,84,0,2.30%,97.70%,0.00%,16,16,86,18.60% +113676,838,2034,State-funded primary,178,91,87,51.10%,48.90%,5,2.80%,31,17.40%,41,137,0,23.00%,77.00%,0.00%,40,40,178,22.50% +113677,838,2035,State-funded primary,199,87,112,43.70%,56.30%,8,4.00%,32,16.10%,7,192,0,3.50%,96.50%,0.00%,33,33,199,16.60% +113684,838,2050,State-funded primary,306,149,157,48.70%,51.30%,3,1.00%,39,12.70%,16,290,0,5.20%,94.80%,0.00%,19,19,306,6.20% +113713,838,2209,State-funded primary,286,148,138,51.70%,48.30%,5,1.70%,55,19.20%,8,278,0,2.80%,97.20%,0.00%,80,74,252,29.40% +113716,838,2213,State-funded primary,313,156,157,49.80%,50.20%,17,5.40%,55,17.60%,9,304,0,2.90%,97.10%,0.00%,123,124,267,46.40% +113717,838,2214,State-funded primary,435,239,196,54.90%,45.10%,12,2.80%,54,12.40%,18,417,0,4.10%,95.90%,0.00%,60,63,435,14.50% +113719,838,2216,State-funded primary,208,114,94,54.80%,45.20%,5,2.40%,18,8.70%,5,203,0,2.40%,97.60%,0.00%,16,16,208,7.70% +113734,839,2241,State-funded primary,324,141,183,43.50%,56.50%,2,0.60%,32,9.90%,12,312,0,3.70%,96.30%,0.00%,41,41,324,12.70% +113736,839,2243,State-funded primary,216,103,113,47.70%,52.30%,7,3.20%,67,31.00%,17,199,0,7.90%,92.10%,0.00%,104,105,216,48.60% +113738,839,2245,State-funded primary,180,88,92,48.90%,51.10%,4,2.20%,20,11.10%,5,175,0,2.80%,97.20%,0.00%,23,23,180,12.80% +113740,839,2247,State-funded primary,258,122,136,47.30%,52.70%,7,2.70%,23,8.90%,6,252,0,2.30%,97.70%,0.00%,50,50,258,19.40% +113743,838,2253,State-funded primary,189,88,101,46.60%,53.40%,8,4.20%,23,12.20%,14,175,0,7.40%,92.60%,0.00%,49,49,189,25.90% +113747,838,2262,State-funded primary,159,71,88,44.70%,55.30%,11,6.90%,27,17.00%,9,150,0,5.70%,94.30%,0.00%,14,14,159,8.80% +113753,838,3001,State-funded primary,198,98,100,49.50%,50.50%,3,1.50%,20,10.10%,4,194,0,2.00%,98.00%,0.00%,21,22,198,11.10% +113756,838,3005,State-funded primary,120,70,50,58.30%,41.70%,4,3.30%,13,10.80%,1,119,0,0.80%,99.20%,0.00%,9,9,120,7.50% +113759,838,3009,State-funded primary,73,30,43,41.10%,58.90%,1,1.40%,19,26.00%,2,71,0,2.70%,97.30%,0.00%,6,5,61,8.20% +113762,838,3021,State-funded primary,142,71,71,50.00%,50.00%,4,2.80%,37,26.10%,4,138,0,2.80%,97.20%,0.00%,36,36,142,25.40% +113772,838,3045,State-funded primary,130,65,65,50.00%,50.00%,2,1.50%,21,16.20%,2,128,0,1.50%,98.50%,0.00%,21,21,130,16.20% +113774,838,3047,State-funded primary,191,103,88,53.90%,46.10%,6,3.10%,27,14.10%,10,181,0,5.20%,94.80%,0.00%,11,11,191,5.80% +113777,838,3051,State-funded primary,102,50,52,49.00%,51.00%,8,7.80%,10,9.80%,0,102,0,0.00%,100.00%,0.00%,10,10,102,9.80% +113784,838,3157,State-funded primary,164,91,73,55.50%,44.50%,3,1.80%,30,18.30%,2,162,0,1.20%,98.80%,0.00%,16,16,164,9.80% +113787,838,3202,State-funded primary,354,186,168,52.50%,47.50%,12,3.40%,60,16.90%,12,342,0,3.40%,96.60%,0.00%,104,107,354,30.20% +113789,839,3207,State-funded primary,323,145,178,44.90%,55.10%,6,1.90%,44,13.60%,4,319,0,1.20%,98.80%,0.00%,60,60,323,18.60% +113796,838,3314,State-funded primary,130,63,67,48.50%,51.50%,5,3.80%,29,22.30%,6,124,0,4.60%,95.40%,0.00%,14,14,130,10.80% +113799,838,3321,State-funded primary,82,39,43,47.60%,52.40%,2,2.40%,21,25.60%,4,78,0,4.90%,95.10%,0.00%,10,10,82,12.20% +113801,838,3323,State-funded primary,127,62,65,48.80%,51.20%,2,1.60%,19,15.00%,2,125,0,1.60%,98.40%,0.00%,12,12,127,9.40% +113802,838,3325,State-funded primary,143,79,64,55.20%,44.80%,0,0.00%,19,13.30%,2,141,0,1.40%,98.60%,0.00%,12,13,143,9.10% +113803,838,3331,State-funded primary,84,45,39,53.60%,46.40%,2,2.40%,12,14.30%,1,83,0,1.20%,98.80%,0.00%,12,12,84,14.30% +113804,838,3332,State-funded primary,110,64,46,58.20%,41.80%,0,0.00%,11,10.00%,3,107,0,2.70%,97.30%,0.00%,8,8,92,8.70% +113805,838,3337,State-funded primary,89,54,35,60.70%,39.30%,1,1.10%,7,7.90%,1,88,0,1.10%,98.90%,0.00%,14,14,89,15.70% +113807,838,3342,State-funded primary,132,57,75,43.20%,56.80%,3,2.30%,20,15.20%,1,131,0,0.80%,99.20%,0.00%,35,35,132,26.50% +113809,838,3345,State-funded primary,112,59,53,52.70%,47.30%,2,1.80%,18,16.10%,1,111,0,0.90%,99.10%,0.00%,10,10,112,8.90% +113812,838,3352,State-funded primary,62,26,36,41.90%,58.10%,1,1.60%,23,37.10%,0,62,0,0.00%,100.00%,0.00%,8,8,62,12.90% +113815,838,3364,State-funded primary,104,49,55,47.10%,52.90%,4,3.80%,15,14.40%,1,103,0,1.00%,99.00%,0.00%,16,16,104,15.40% +113818,838,3372,State-funded primary,365,183,182,50.10%,49.90%,10,2.70%,44,12.10%,17,347,1,4.70%,95.10%,0.30%,68,74,365,20.30% +113820,838,3377,State-funded primary,69,37,32,53.60%,46.40%,2,2.90%,14,20.30%,1,68,0,1.40%,98.60%,0.00%,8,9,69,13.00% +113841,839,3679,State-funded primary,437,211,226,48.30%,51.70%,7,1.60%,45,10.30%,17,419,1,3.90%,95.90%,0.20%,18,18,437,4.10% +113845,839,3684,State-funded primary,434,210,224,48.40%,51.60%,9,2.10%,60,13.80%,217,205,12,50.00%,47.20%,2.80%,63,67,434,15.40% +113847,839,3690,State-funded primary,210,110,100,52.40%,47.60%,7,3.30%,30,14.30%,5,205,0,2.40%,97.60%,0.00%,20,21,210,10.00% +113848,839,3691,State-funded primary,215,101,114,47.00%,53.00%,5,2.30%,29,13.50%,22,193,0,10.20%,89.80%,0.00%,61,61,215,28.40% +113850,838,3693,State-funded primary,192,91,101,47.40%,52.60%,8,4.20%,25,13.00%,6,186,0,3.10%,96.90%,0.00%,19,19,192,9.90% +113851,838,3696,State-funded primary,98,48,50,49.00%,51.00%,0,0.00%,26,26.50%,6,92,0,6.10%,93.90%,0.00%,33,33,98,33.70% +113853,838,4020,State-funded secondary,339,167,172,49.30%,50.70%,12,3.50%,45,13.30%,3,336,0,0.90%,99.10%,0.00%,51,57,339,16.80% +113854,838,4022,State-funded secondary,1030,516,514,50.10%,49.90%,31,3.00%,138,13.40%,32,998,0,3.10%,96.90%,0.00%,202,167,753,22.20% +113861,838,4033,State-funded secondary,241,107,134,44.40%,55.60%,24,10.00%,40,16.60%,13,228,0,5.40%,94.60%,0.00%,91,92,241,38.20% +113863,838,4035,State-funded secondary,1549,793,756,51.20%,48.80%,28,1.80%,147,9.50%,34,1512,3,2.20%,97.60%,0.20%,245,271,1287,21.10% +113875,838,4179,State-funded secondary,643,330,313,51.30%,48.70%,16,2.50%,148,23.00%,36,607,0,5.60%,94.40%,0.00%,156,162,552,29.30% +113882,838,4503,State-funded secondary,1755,841,914,47.90%,52.10%,43,2.50%,114,6.50%,85,1648,22,4.80%,93.90%,1.30%,280,257,1399,18.40% +113884,838,4505,State-funded secondary,663,330,333,49.80%,50.20%,29,4.40%,155,23.40%,13,650,0,2.00%,98.00%,0.00%,122,117,604,19.40% +113888,838,4510,State-funded secondary,1108,546,562,49.30%,50.70%,24,2.20%,176,15.90%,43,1065,0,3.90%,96.10%,0.00%,212,205,959,21.40% +113893,839,4610,State-funded secondary,1099,549,550,50.00%,50.00%,33,3.00%,164,14.90%,159,940,0,14.50%,85.50%,0.00%,150,159,914,17.40% +113898,839,5200,State-funded primary,419,223,196,53.20%,46.80%,3,0.70%,37,8.80%,130,287,2,31.00%,68.50%,0.50%,28,31,419,7.40% +113899,838,5201,State-funded primary,187,89,98,47.60%,52.40%,5,2.70%,17,9.10%,3,183,1,1.60%,97.90%,0.50%,34,34,187,18.20% +113901,838,5401,State-funded secondary,1042,543,499,52.10%,47.90%,23,2.20%,91,8.70%,25,1017,0,2.40%,97.60%,0.00%,147,149,855,17.40% +113907,839,5407,State-funded secondary,1859,847,1012,45.60%,54.40%,18,1.00%,361,19.40%,179,1660,20,9.60%,89.30%,1.10%,309,305,1584,19.30% +113910,838,6005,Independent school,805,396,409,49.20%,50.80%,0,0.00%,190,23.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113911,838,6001,Independent school,81,81,0,100.00%,0.00%,0,0.00%,4,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113912,838,6009,Independent school,395,186,209,47.10%,52.90%,6,1.50%,121,30.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113914,838,6000,Independent school,264,139,125,52.70%,47.30%,0,0.00%,25,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113915,838,6010,Independent school,289,139,150,48.10%,51.90%,0,0.00%,43,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113917,838,6026,Independent school,204,84,120,41.20%,58.80%,0,0.00%,36,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113918,838,6006,Independent school,583,0,583,0.00%,100.00%,1,0.20%,204,35.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113919,838,6024,Independent school,489,489,0,100.00%,0.00%,0,0.00%,167,34.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113920,838,6025,Independent school,615,364,251,59.20%,40.80%,3,0.50%,127,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113922,839,6000,Independent school,646,283,363,43.80%,56.20%,0,0.00%,219,33.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113923,838,6002,Independent school,325,142,183,43.70%,56.30%,3,0.90%,32,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113927,838,6029,Independent school,130,60,70,46.20%,53.80%,1,0.80%,26,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113929,839,6001,Independent school,260,114,146,43.80%,56.20%,2,0.80%,29,11.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113931,838,6023,Independent school,282,120,162,42.60%,57.40%,2,0.70%,59,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113932,838,6015,Independent school,189,59,130,31.20%,68.80%,6,3.20%,124,65.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113937,839,6002,Independent school,402,158,244,39.30%,60.70%,4,1.00%,84,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113939,839,6006,Independent school,372,170,202,45.70%,54.30%,0,0.00%,23,6.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113940,839,6003,Independent school,94,47,47,50.00%,50.00%,2,2.10%,26,27.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113941,839,6005,Independent school,121,49,72,40.50%,59.50%,0,0.00%,20,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113942,839,7000,Non-maintained special school,110,19,91,17.30%,82.70%,110,100.00%,0,0.00%,6,101,3,5.50%,91.80%,2.70%,40,40,99,40.40% +113943,838,6022,Independent school,233,118,115,50.60%,49.40%,0,0.00%,33,14.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113945,839,6007,Independent school,581,581,0,100.00%,0.00%,0,0.00%,64,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113949,838,6028,Independent school,143,64,79,44.80%,55.20%,1,0.70%,41,28.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113950,838,6016,Independent school,15,1,14,6.70%,93.30%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113952,838,6004,Independent school,37,16,21,43.20%,56.80%,37,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +113954,839,7004,Non-maintained special school,101,35,66,34.70%,65.30%,101,100.00%,0,0.00%,12,89,0,11.90%,88.10%,0.00%,22,25,76,32.90% +113955,839,7005,State-funded special school,219,66,153,30.10%,69.90%,219,100.00%,0,0.00%,23,196,0,10.50%,89.50%,0.00%,103,102,203,50.20% +113956,838,5950,State-funded special school,191,65,126,34.00%,66.00%,189,99.00%,2,1.00%,3,188,0,1.60%,98.40%,0.00%,57,47,155,30.30% +113957,838,7007,State-funded special school,102,30,72,29.40%,70.60%,102,100.00%,0,0.00%,4,98,0,3.90%,96.10%,0.00%,40,38,88,43.20% +113960,838,5953,State-funded special school,220,60,160,27.30%,72.70%,220,100.00%,0,0.00%,1,218,1,0.50%,99.10%,0.50%,97,87,182,47.80% +113961,839,7012,State-funded special school,395,113,282,28.60%,71.40%,395,100.00%,0,0.00%,58,337,0,14.70%,85.30%,0.00%,161,139,318,43.70% +113965,838,7019,State-funded special school,165,46,119,27.90%,72.10%,165,100.00%,0,0.00%,7,158,0,4.20%,95.80%,0.00%,77,74,148,50.00% +113970,840,1014,State-funded nursery,113,61,52,54.00%,46.00%,0,0.00%,12,10.60%,4,109,0,3.50%,96.50%,0.00%,0,0,0,0.00% +113971,840,1016,State-funded nursery,89,34,55,38.20%,61.80%,2,2.20%,4,4.50%,3,86,0,3.40%,96.60%,0.00%,0,0,0,0.00% +113972,840,1018,State-funded nursery,65,26,39,40.00%,60.00%,1,1.50%,8,12.30%,0,65,0,0.00%,100.00%,0.00%,0,0,0,0.00% +113973,840,1021,State-funded nursery,76,38,38,50.00%,50.00%,0,0.00%,5,6.60%,0,76,0,0.00%,100.00%,0.00%,0,0,0,0.00% +113975,840,1023,State-funded nursery,96,38,58,39.60%,60.40%,0,0.00%,14,14.60%,0,96,0,0.00%,100.00%,0.00%,0,0,0,0.00% +113976,840,1024,State-funded nursery,41,17,24,41.50%,58.50%,1,2.40%,3,7.30%,4,37,0,9.80%,90.20%,0.00%,0,0,0,0.00% +113977,840,1025,State-funded nursery,44,25,19,56.80%,43.20%,0,0.00%,3,6.80%,1,43,0,2.30%,97.70%,0.00%,0,0,0,0.00% +113982,841,1030,State-funded nursery,98,48,50,49.00%,51.00%,0,0.00%,14,14.30%,16,81,1,16.30%,82.70%,1.00%,0,0,0,0.00% +113983,841,1031,State-funded nursery,118,56,62,47.50%,52.50%,1,0.80%,12,10.20%,6,112,0,5.10%,94.90%,0.00%,0,0,0,0.00% +113985,840,1033,State-funded nursery,69,30,39,43.50%,56.50%,0,0.00%,9,13.00%,1,68,0,1.40%,98.60%,0.00%,0,0,0,0.00% +113986,840,1035,State-funded nursery,105,52,53,49.50%,50.50%,0,0.00%,7,6.70%,1,103,1,1.00%,98.10%,1.00%,0,0,0,0.00% +113989,840,1038,State-funded nursery,104,40,64,38.50%,61.50%,1,1.00%,17,16.30%,2,102,0,1.90%,98.10%,0.00%,0,0,0,0.00% +113991,840,1040,State-funded nursery,42,22,20,52.40%,47.60%,0,0.00%,5,11.90%,0,42,0,0.00%,100.00%,0.00%,0,0,0,0.00% +113992,840,1100,State-funded AP school,126,26,100,20.60%,79.40%,1,0.80%,40,31.70%,0,126,0,0.00%,100.00%,0.00%,87,94,126,74.60% +113993,840,2000,State-funded primary,258,128,130,49.60%,50.40%,5,1.90%,37,14.30%,10,248,0,3.90%,96.10%,0.00%,96,97,258,37.60% +113998,840,2043,State-funded primary,249,130,119,52.20%,47.80%,4,1.60%,68,27.30%,9,240,0,3.60%,96.40%,0.00%,120,112,216,51.90% +114001,840,2105,State-funded primary,167,81,86,48.50%,51.50%,2,1.20%,17,10.20%,3,164,0,1.80%,98.20%,0.00%,53,49,151,32.50% +114002,840,2107,State-funded primary,178,85,93,47.80%,52.20%,3,1.70%,22,12.40%,6,172,0,3.40%,96.60%,0.00%,51,52,178,29.20% +114003,840,2108,State-funded primary,182,95,87,52.20%,47.80%,3,1.60%,24,13.20%,6,176,0,3.30%,96.70%,0.00%,36,35,150,23.30% +114004,840,2114,State-funded primary,74,35,39,47.30%,52.70%,3,4.10%,14,18.90%,2,72,0,2.70%,97.30%,0.00%,25,25,56,44.60% +114005,840,2116,State-funded primary,113,50,63,44.20%,55.80%,10,8.80%,6,5.30%,0,113,0,0.00%,100.00%,0.00%,36,36,113,31.90% +114008,840,2125,State-funded primary,306,144,162,47.10%,52.90%,7,2.30%,36,11.80%,15,291,0,4.90%,95.10%,0.00%,45,46,306,15.00% +114009,840,2126,State-funded primary,225,106,119,47.10%,52.90%,4,1.80%,18,8.00%,3,222,0,1.30%,98.70%,0.00%,42,43,194,22.20% +114012,840,2133,State-funded primary,407,217,190,53.30%,46.70%,2,0.50%,65,16.00%,20,387,0,4.90%,95.10%,0.00%,67,68,407,16.70% +114018,840,2146,State-funded primary,90,47,43,52.20%,47.80%,1,1.10%,15,16.70%,0,90,0,0.00%,100.00%,0.00%,36,37,90,41.10% +114020,840,2185,State-funded primary,54,25,29,46.30%,53.70%,1,1.90%,15,27.80%,0,54,0,0.00%,100.00%,0.00%,5,5,46,10.90% +114021,840,2205,State-funded primary,51,23,28,45.10%,54.90%,0,0.00%,24,47.10%,1,50,0,2.00%,98.00%,0.00%,21,21,43,48.80% +114022,840,2208,State-funded primary,136,69,67,50.70%,49.30%,9,6.60%,20,14.70%,9,127,0,6.60%,93.40%,0.00%,45,39,110,35.50% +114023,840,2210,State-funded primary,268,118,150,44.00%,56.00%,2,0.70%,59,22.00%,5,263,0,1.90%,98.10%,0.00%,99,100,211,47.40% +114033,840,2232,State-funded primary,192,92,100,47.90%,52.10%,0,0.00%,31,16.10%,12,180,0,6.30%,93.80%,0.00%,91,88,158,55.70% +114035,840,2234,State-funded primary,379,190,189,50.10%,49.90%,7,1.80%,29,7.70%,6,371,2,1.60%,97.90%,0.50%,61,62,351,17.70% +114038,840,2257,State-funded primary,375,186,189,49.60%,50.40%,1,0.30%,14,3.70%,9,366,0,2.40%,97.60%,0.00%,43,45,375,12.00% +114039,840,2259,State-funded primary,182,72,110,39.60%,60.40%,3,1.60%,40,22.00%,9,173,0,4.90%,95.10%,0.00%,99,93,167,55.70% +114043,840,2266,State-funded primary,77,35,42,45.50%,54.50%,4,5.20%,14,18.20%,7,70,0,9.10%,90.90%,0.00%,14,15,77,19.50% +114045,840,2749,State-funded primary,227,109,118,48.00%,52.00%,1,0.40%,35,15.40%,13,214,0,5.70%,94.30%,0.00%,124,127,201,63.20% +114046,840,2269,State-funded primary,195,100,95,51.30%,48.70%,4,2.10%,29,14.90%,5,190,0,2.60%,97.40%,0.00%,68,68,173,39.30% +114047,840,2272,State-funded primary,307,145,162,47.20%,52.80%,3,1.00%,88,28.70%,18,289,0,5.90%,94.10%,0.00%,106,106,269,39.40% +114051,840,2277,State-funded primary,224,103,121,46.00%,54.00%,6,2.70%,48,21.40%,3,221,0,1.30%,98.70%,0.00%,76,76,224,33.90% +114052,840,2278,State-funded primary,160,77,83,48.10%,51.90%,4,2.50%,5,3.10%,6,154,0,3.80%,96.30%,0.00%,41,42,160,26.30% +114053,840,2301,State-funded primary,36,17,19,47.20%,52.80%,0,0.00%,6,16.70%,0,36,0,0.00%,100.00%,0.00%,5,5,36,13.90% +114054,840,2302,State-funded primary,112,54,58,48.20%,51.80%,1,0.90%,9,8.00%,1,111,0,0.90%,99.10%,0.00%,12,12,107,11.20% +114055,840,2307,State-funded primary,95,42,53,44.20%,55.80%,6,6.30%,29,30.50%,3,91,1,3.20%,95.80%,1.10%,46,46,95,48.40% +114056,840,2308,State-funded primary,396,206,190,52.00%,48.00%,9,2.30%,83,21.00%,21,375,0,5.30%,94.70%,0.00%,142,143,351,40.70% +114058,840,2311,State-funded primary,96,41,55,42.70%,57.30%,4,4.20%,33,34.40%,1,95,0,1.00%,99.00%,0.00%,68,56,80,70.00% +114059,840,2313,State-funded primary,136,66,70,48.50%,51.50%,2,1.50%,17,12.50%,1,135,0,0.70%,99.30%,0.00%,18,19,136,14.00% +114060,840,2316,State-funded primary,72,35,37,48.60%,51.40%,6,8.30%,17,23.60%,2,70,0,2.80%,97.20%,0.00%,52,54,72,75.00% +114062,840,2319,State-funded primary,39,18,21,46.20%,53.80%,3,7.70%,8,20.50%,2,37,0,5.10%,94.90%,0.00%,14,14,39,35.90% +114063,840,2321,State-funded primary,9,7,2,77.80%,22.20%,0,0.00%,4,44.40%,0,9,0,0.00%,100.00%,0.00%,2,3,9,33.30% +114064,840,2322,State-funded primary,20,12,8,60.00%,40.00%,1,5.00%,6,30.00%,2,18,0,10.00%,90.00%,0.00%,8,8,20,40.00% +114065,840,2324,State-funded primary,18,11,7,61.10%,38.90%,0,0.00%,4,22.20%,0,18,0,0.00%,100.00%,0.00%,1,1,18,5.60% +114066,840,2326,State-funded primary,192,96,96,50.00%,50.00%,1,0.50%,25,13.00%,1,191,0,0.50%,99.50%,0.00%,117,115,177,65.00% +114068,840,2329,State-funded primary,181,82,99,45.30%,54.70%,3,1.70%,23,12.70%,5,176,0,2.80%,97.20%,0.00%,26,27,159,17.00% +114069,840,2330,State-funded primary,164,85,79,51.80%,48.20%,2,1.20%,32,19.50%,4,160,0,2.40%,97.60%,0.00%,60,60,126,47.60% +114070,840,2351,State-funded primary,78,45,33,57.70%,42.30%,1,1.30%,12,15.40%,0,78,0,0.00%,100.00%,0.00%,34,38,78,48.70% +114074,840,2361,State-funded primary,157,86,71,54.80%,45.20%,3,1.90%,19,12.10%,2,155,0,1.30%,98.70%,0.00%,20,20,157,12.70% +114075,840,2362,State-funded primary,142,64,78,45.10%,54.90%,2,1.40%,30,21.10%,3,139,0,2.10%,97.90%,0.00%,27,27,122,22.10% +114078,840,2368,State-funded primary,64,33,31,51.60%,48.40%,3,4.70%,22,34.40%,3,61,0,4.70%,95.30%,0.00%,38,39,64,60.90% +114079,840,2370,State-funded primary,219,108,111,49.30%,50.70%,2,0.90%,32,14.60%,3,216,0,1.40%,98.60%,0.00%,105,89,185,48.10% +114080,840,2372,State-funded primary,320,156,164,48.80%,51.30%,6,1.90%,45,14.10%,14,306,0,4.40%,95.60%,0.00%,76,76,320,23.80% +114081,840,2374,State-funded primary,134,62,72,46.30%,53.70%,0,0.00%,13,9.70%,5,129,0,3.70%,96.30%,0.00%,55,48,109,44.00% +114086,840,2385,State-funded primary,193,99,94,51.30%,48.70%,2,1.00%,49,25.40%,7,186,0,3.60%,96.40%,0.00%,138,138,169,81.70% +114087,840,2388,State-funded primary,361,173,188,47.90%,52.10%,4,1.10%,32,8.90%,22,339,0,6.10%,93.90%,0.00%,114,109,299,36.50% +114091,840,2394,State-funded primary,310,156,154,50.30%,49.70%,8,2.60%,47,15.20%,0,310,0,0.00%,100.00%,0.00%,67,69,310,22.30% +114095,840,2399,State-funded primary,153,77,76,50.30%,49.70%,4,2.60%,20,13.10%,1,152,0,0.70%,99.30%,0.00%,61,62,120,51.70% +114096,840,2400,State-funded primary,278,151,127,54.30%,45.70%,3,1.10%,53,19.10%,3,275,0,1.10%,98.90%,0.00%,121,126,250,50.40% +114097,840,2401,State-funded primary,234,128,106,54.70%,45.30%,7,3.00%,31,13.20%,7,227,0,3.00%,97.00%,0.00%,85,86,234,36.80% +114099,840,2409,State-funded primary,62,24,38,38.70%,61.30%,0,0.00%,14,22.60%,0,62,0,0.00%,100.00%,0.00%,12,12,62,19.40% +114101,840,2411,State-funded primary,184,90,94,48.90%,51.10%,7,3.80%,37,20.10%,0,184,0,0.00%,100.00%,0.00%,30,33,163,20.20% +114102,840,2413,State-funded primary,50,23,27,46.00%,54.00%,2,4.00%,11,22.00%,0,50,0,0.00%,100.00%,0.00%,6,6,50,12.00% +114103,840,2417,State-funded primary,190,97,93,51.10%,48.90%,3,1.60%,31,16.30%,0,190,0,0.00%,100.00%,0.00%,28,28,190,14.70% +114104,840,2419,State-funded primary,207,103,104,49.80%,50.20%,8,3.90%,37,17.90%,14,193,0,6.80%,93.20%,0.00%,87,88,175,50.30% +114106,840,2423,State-funded primary,206,110,96,53.40%,46.60%,1,0.50%,32,15.50%,1,205,0,0.50%,99.50%,0.00%,72,73,206,35.40% +114107,840,2426,State-funded primary,188,89,99,47.30%,52.70%,4,2.10%,23,12.20%,1,187,0,0.50%,99.50%,0.00%,28,28,188,14.90% +114108,840,2428,State-funded primary,27,13,14,48.10%,51.90%,1,3.70%,4,14.80%,0,27,0,0.00%,100.00%,0.00%,5,5,27,18.50% +114109,840,2430,State-funded primary,107,46,61,43.00%,57.00%,1,0.90%,15,14.00%,1,106,0,0.90%,99.10%,0.00%,25,22,92,23.90% +114110,840,2433,State-funded primary,218,113,105,51.80%,48.20%,3,1.40%,57,26.10%,10,208,0,4.60%,95.40%,0.00%,124,127,218,58.30% +114111,840,2434,State-funded primary,164,72,92,43.90%,56.10%,4,2.40%,10,6.10%,13,151,0,7.90%,92.10%,0.00%,80,80,164,48.80% +114113,840,2438,State-funded primary,368,185,183,50.30%,49.70%,9,2.40%,55,14.90%,8,360,0,2.20%,97.80%,0.00%,212,194,336,57.70% +114114,840,2440,State-funded primary,107,58,49,54.20%,45.80%,3,2.80%,20,18.70%,0,107,0,0.00%,100.00%,0.00%,32,29,87,33.30% +114115,840,2442,State-funded primary,200,104,96,52.00%,48.00%,4,2.00%,22,11.00%,4,196,0,2.00%,98.00%,0.00%,32,28,177,15.80% +114120,840,2455,State-funded primary,195,101,94,51.80%,48.20%,1,0.50%,13,6.70%,12,182,1,6.20%,93.30%,0.50%,46,46,195,23.60% +114122,840,2462,State-funded primary,200,106,94,53.00%,47.00%,3,1.50%,19,9.50%,10,190,0,5.00%,95.00%,0.00%,51,54,200,27.00% +114125,840,2470,State-funded primary,204,103,101,50.50%,49.50%,4,2.00%,19,9.30%,3,201,0,1.50%,98.50%,0.00%,23,22,188,11.70% +114126,840,2472,State-funded primary,108,49,59,45.40%,54.60%,1,0.90%,29,26.90%,6,102,0,5.60%,94.40%,0.00%,51,52,88,59.10% +114127,840,2473,State-funded primary,166,98,68,59.00%,41.00%,1,0.60%,43,25.90%,3,163,0,1.80%,98.20%,0.00%,65,65,166,39.20% +114128,840,2475,State-funded primary,137,62,75,45.30%,54.70%,2,1.50%,10,7.30%,2,135,0,1.50%,98.50%,0.00%,72,72,137,52.60% +114129,840,2477,State-funded primary,84,39,45,46.40%,53.60%,3,3.60%,20,23.80%,2,82,0,2.40%,97.60%,0.00%,43,43,84,51.20% +114130,840,2481,State-funded primary,295,141,154,47.80%,52.20%,4,1.40%,31,10.50%,17,278,0,5.80%,94.20%,0.00%,17,20,295,6.80% +114134,840,2488,State-funded primary,152,71,81,46.70%,53.30%,0,0.00%,2,1.30%,20,132,0,13.20%,86.80%,0.00%,18,19,152,12.50% +114138,840,2497,State-funded primary,283,135,148,47.70%,52.30%,7,2.50%,57,20.10%,7,276,0,2.50%,97.50%,0.00%,114,115,246,46.70% +114139,840,2498,State-funded primary,225,101,124,44.90%,55.10%,7,3.10%,29,12.90%,8,217,0,3.60%,96.40%,0.00%,45,46,225,20.40% +114140,840,2499,State-funded primary,122,59,63,48.40%,51.60%,2,1.60%,45,36.90%,4,118,0,3.30%,96.70%,0.00%,73,74,102,72.50% +114143,840,2509,State-funded primary,96,50,46,52.10%,47.90%,2,2.10%,12,12.50%,0,96,0,0.00%,100.00%,0.00%,26,26,87,29.90% +114144,840,2516,State-funded primary,169,82,87,48.50%,51.50%,1,0.60%,14,8.30%,2,167,0,1.20%,98.80%,0.00%,92,93,146,63.70% +114146,840,2523,State-funded primary,177,83,94,46.90%,53.10%,2,1.10%,39,22.00%,3,173,1,1.70%,97.70%,0.60%,59,62,152,40.80% +114147,840,2526,State-funded primary,415,194,221,46.70%,53.30%,67,16.10%,143,34.50%,8,407,0,1.90%,98.10%,0.00%,191,186,351,53.00% +114149,840,2531,State-funded primary,347,168,179,48.40%,51.60%,4,1.20%,87,25.10%,4,342,1,1.20%,98.60%,0.30%,141,142,347,40.90% +114150,840,2532,State-funded primary,164,83,81,50.60%,49.40%,2,1.20%,21,12.80%,6,158,0,3.70%,96.30%,0.00%,102,103,164,62.80% +114152,840,2536,State-funded primary,295,144,151,48.80%,51.20%,3,1.00%,63,21.40%,19,276,0,6.40%,93.60%,0.00%,146,136,243,56.00% +114154,840,2540,State-funded primary,279,139,140,49.80%,50.20%,4,1.40%,64,22.90%,7,272,0,2.50%,97.50%,0.00%,157,105,200,52.50% +114159,840,2563,State-funded primary,216,97,119,44.90%,55.10%,0,0.00%,34,15.70%,9,207,0,4.20%,95.80%,0.00%,21,21,216,9.70% +114183,841,2669,State-funded primary,217,113,104,52.10%,47.90%,11,5.10%,77,35.50%,19,198,0,8.80%,91.20%,0.00%,119,122,178,68.50% +114187,840,2704,State-funded primary,134,66,68,49.30%,50.70%,5,3.70%,28,20.90%,0,134,0,0.00%,100.00%,0.00%,45,46,134,34.30% +114188,840,2705,State-funded primary,148,68,80,45.90%,54.10%,6,4.10%,20,13.50%,6,142,0,4.10%,95.90%,0.00%,85,85,148,57.40% +114189,840,2706,State-funded primary,207,121,86,58.50%,41.50%,1,0.50%,21,10.10%,5,202,0,2.40%,97.60%,0.00%,59,61,207,29.50% +114190,840,2708,State-funded primary,74,30,44,40.50%,59.50%,0,0.00%,19,25.70%,1,73,0,1.40%,98.60%,0.00%,41,41,59,69.50% +114197,840,2733,State-funded primary,158,70,88,44.30%,55.70%,3,1.90%,45,28.50%,2,156,0,1.30%,98.70%,0.00%,65,66,158,41.80% +114198,840,2734,State-funded primary,373,184,189,49.30%,50.70%,10,2.70%,73,19.60%,4,369,0,1.10%,98.90%,0.00%,112,109,329,33.10% +114201,840,2737,State-funded primary,322,136,186,42.20%,57.80%,2,0.60%,69,21.40%,3,319,0,0.90%,99.10%,0.00%,134,133,270,49.30% +114206,840,2742,State-funded primary,415,195,220,47.00%,53.00%,11,2.70%,54,13.00%,5,410,0,1.20%,98.80%,0.00%,105,106,415,25.50% +114207,840,2743,State-funded primary,465,246,219,52.90%,47.10%,4,0.90%,46,9.90%,12,453,0,2.60%,97.40%,0.00%,139,140,412,34.00% +114208,840,2744,State-funded primary,265,133,132,50.20%,49.80%,5,1.90%,54,20.40%,4,261,0,1.50%,98.50%,0.00%,60,57,225,25.30% +114209,840,2745,State-funded primary,285,146,139,51.20%,48.80%,2,0.70%,52,18.20%,6,279,0,2.10%,97.90%,0.00%,190,167,225,74.20% +114210,840,2746,State-funded primary,552,259,293,46.90%,53.10%,12,2.20%,103,18.70%,10,541,1,1.80%,98.00%,0.20%,221,222,517,42.90% +114211,840,2747,State-funded primary,129,59,70,45.70%,54.30%,8,6.20%,17,13.20%,34,95,0,26.40%,73.60%,0.00%,78,78,129,60.50% +114213,840,3031,State-funded primary,284,147,137,51.80%,48.20%,13,4.60%,72,25.40%,1,283,0,0.40%,99.60%,0.00%,84,85,249,34.10% +114214,840,3063,State-funded primary,96,48,48,50.00%,50.00%,1,1.00%,4,4.20%,1,95,0,1.00%,99.00%,0.00%,12,13,96,13.50% +114216,840,3085,State-funded primary,214,93,121,43.50%,56.50%,2,0.90%,30,14.00%,3,211,0,1.40%,98.60%,0.00%,68,68,189,36.00% +114219,840,3121,State-funded primary,212,97,115,45.80%,54.20%,1,0.50%,31,14.60%,12,200,0,5.70%,94.30%,0.00%,59,59,212,27.80% +114220,840,3123,State-funded primary,235,105,130,44.70%,55.30%,4,1.70%,28,11.90%,2,233,0,0.90%,99.10%,0.00%,37,36,210,17.10% +114222,840,3131,State-funded primary,54,26,28,48.10%,51.90%,2,3.70%,9,16.70%,0,54,0,0.00%,100.00%,0.00%,10,11,54,20.40% +114226,840,3141,State-funded primary,172,72,100,41.90%,58.10%,2,1.20%,21,12.20%,2,170,0,1.20%,98.80%,0.00%,29,29,160,18.10% +114227,840,3161,State-funded primary,272,145,127,53.30%,46.70%,0,0.00%,42,15.40%,7,265,0,2.60%,97.40%,0.00%,29,30,272,11.00% +114228,840,3165,State-funded primary,139,69,70,49.60%,50.40%,1,0.70%,13,9.40%,19,120,0,13.70%,86.30%,0.00%,13,13,139,9.40% +114229,840,3167,State-funded primary,203,102,101,50.20%,49.80%,2,1.00%,7,3.40%,11,191,1,5.40%,94.10%,0.50%,11,12,203,5.90% +114230,840,3168,State-funded primary,415,216,199,52.00%,48.00%,5,1.20%,19,4.60%,57,358,0,13.70%,86.30%,0.00%,22,23,415,5.50% +114231,840,3182,State-funded primary,128,75,53,58.60%,41.40%,1,0.80%,13,10.20%,3,125,0,2.30%,97.70%,0.00%,31,32,128,25.00% +114232,840,3183,State-funded primary,62,32,30,51.60%,48.40%,1,1.60%,9,14.50%,0,62,0,0.00%,100.00%,0.00%,15,15,62,24.20% +114237,840,3303,State-funded primary,66,38,28,57.60%,42.40%,2,3.00%,19,28.80%,3,63,0,4.50%,95.50%,0.00%,13,13,66,19.70% +114267,840,3472,State-funded primary,111,48,63,43.20%,56.80%,5,4.50%,12,10.80%,4,107,0,3.60%,96.40%,0.00%,78,79,111,71.20% +114270,840,3485,State-funded primary,163,82,81,50.30%,49.70%,1,0.60%,37,22.70%,6,157,0,3.70%,96.30%,0.00%,79,81,146,55.50% +114274,840,3491,State-funded primary,222,105,117,47.30%,52.70%,3,1.40%,12,5.40%,29,193,0,13.10%,86.90%,0.00%,28,28,222,12.60% +114276,840,3501,State-funded primary,159,76,83,47.80%,52.20%,1,0.60%,9,5.70%,17,142,0,10.70%,89.30%,0.00%,33,33,159,20.80% +114281,840,3507,State-funded primary,106,59,47,55.70%,44.30%,1,0.90%,12,11.30%,10,96,0,9.40%,90.60%,0.00%,61,61,106,57.50% +114285,840,3513,State-funded primary,237,116,121,48.90%,51.10%,6,2.50%,73,30.80%,5,232,0,2.10%,97.90%,0.00%,114,117,209,56.00% +114305,840,4176,State-funded secondary,698,359,339,51.40%,48.60%,5,0.70%,141,20.20%,24,674,0,3.40%,96.60%,0.00%,323,344,698,49.30% +114308,840,4185,State-funded secondary,814,409,405,50.20%,49.80%,18,2.20%,101,12.40%,35,779,0,4.30%,95.70%,0.00%,263,281,814,34.50% +114310,840,4191,State-funded secondary,1679,1048,631,62.40%,37.60%,2,0.10%,43,2.60%,26,1653,0,1.50%,98.50%,0.00%,173,0,0,0.00% +114312,840,4200,State-funded secondary,1673,835,838,49.90%,50.10%,14,0.80%,170,10.20%,208,1463,2,12.40%,87.40%,0.10%,203,222,1335,16.60% +114315,840,4218,State-funded secondary,923,466,457,50.50%,49.50%,17,1.80%,187,20.30%,15,908,0,1.60%,98.40%,0.00%,351,380,923,41.20% +114330,840,6004,Independent school,326,326,0,100.00%,0.00%,2,0.60%,64,19.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114331,840,6000,Independent school,736,270,466,36.70%,63.30%,5,0.70%,123,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114336,840,6003,Independent school,717,317,400,44.20%,55.80%,2,0.30%,130,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114337,840,7006,State-funded special school,180,20,160,11.10%,88.90%,180,100.00%,0,0.00%,0,180,0,0.00%,100.00%,0.00%,130,139,180,77.20% +114340,840,7013,State-funded special school,230,71,159,30.90%,69.10%,230,100.00%,0,0.00%,2,228,0,0.90%,99.10%,0.00%,123,130,230,56.50% +114341,840,7014,State-funded special school,80,11,69,13.80%,86.30%,80,100.00%,0,0.00%,1,79,0,1.30%,98.80%,0.00%,63,66,80,82.50% +114345,840,7028,State-funded special school,124,35,89,28.20%,71.80%,124,100.00%,0,0.00%,5,119,0,4.00%,96.00%,0.00%,62,62,108,57.40% +114349,840,7032,State-funded special school,227,68,159,30.00%,70.00%,227,100.00%,0,0.00%,3,224,0,1.30%,98.70%,0.00%,90,101,199,50.80% +114350,846,1001,State-funded nursery,116,51,65,44.00%,56.00%,0,0.00%,38,32.80%,26,89,1,22.40%,76.70%,0.90%,22,0,0,0.00% +114351,846,1002,State-funded nursery,93,44,49,47.30%,52.70%,2,2.20%,19,20.40%,26,67,0,28.00%,72.00%,0.00%,0,0,0,0.00% +114365,846,2007,State-funded primary,166,76,90,45.80%,54.20%,5,3.00%,41,24.70%,31,135,0,18.70%,81.30%,0.00%,85,85,166,51.20% +114366,846,2009,State-funded primary,508,238,270,46.90%,53.10%,20,3.90%,83,16.30%,51,455,2,10.00%,89.60%,0.40%,73,75,508,14.80% +114367,846,2010,State-funded primary,345,160,185,46.40%,53.60%,12,3.50%,31,9.00%,45,299,1,13.00%,86.70%,0.30%,47,47,345,13.60% +114368,846,2017,State-funded primary,98,49,49,50.00%,50.00%,2,2.00%,25,25.50%,6,92,0,6.10%,93.90%,0.00%,29,29,98,29.60% +114369,846,2018,State-funded primary,184,99,85,53.80%,46.20%,4,2.20%,41,22.30%,26,157,1,14.10%,85.30%,0.50%,53,53,184,28.80% +114372,846,2021,State-funded primary,352,178,174,50.60%,49.40%,9,2.60%,51,14.50%,22,329,1,6.30%,93.50%,0.30%,47,51,352,14.50% +114373,846,2022,State-funded primary,306,154,152,50.30%,49.70%,7,2.30%,30,9.80%,14,292,0,4.60%,95.40%,0.00%,28,29,270,10.70% +114374,846,2026,State-funded primary,626,303,323,48.40%,51.60%,13,2.10%,59,9.40%,51,575,0,8.10%,91.90%,0.00%,106,108,626,17.30% +114376,846,2028,State-funded primary,310,172,138,55.50%,44.50%,7,2.30%,20,6.50%,47,263,0,15.20%,84.80%,0.00%,46,46,310,14.80% +114377,846,2029,State-funded primary,240,119,121,49.60%,50.40%,5,2.10%,22,9.20%,34,206,0,14.20%,85.80%,0.00%,37,37,240,15.40% +114380,846,2036,State-funded primary,520,233,287,44.80%,55.20%,9,1.70%,80,15.40%,57,462,1,11.00%,88.80%,0.20%,83,85,499,17.00% +114381,846,2037,State-funded primary,214,95,119,44.40%,55.60%,9,4.20%,37,17.30%,50,164,0,23.40%,76.60%,0.00%,59,61,214,28.50% +114382,846,2040,State-funded primary,709,332,377,46.80%,53.20%,13,1.80%,65,9.20%,55,654,0,7.80%,92.20%,0.00%,61,66,709,9.30% +114383,846,2043,State-funded primary,139,65,74,46.80%,53.20%,10,7.20%,32,23.00%,7,132,0,5.00%,95.00%,0.00%,41,43,139,30.90% +114384,846,2044,State-funded primary,333,166,167,49.80%,50.20%,8,2.40%,79,23.70%,31,302,0,9.30%,90.70%,0.00%,135,134,297,45.10% +114385,845,2050,State-funded primary,94,45,49,47.90%,52.10%,0,0.00%,12,12.80%,2,92,0,2.10%,97.90%,0.00%,10,10,94,10.60% +114389,845,2054,State-funded primary,111,53,58,47.70%,52.30%,1,0.90%,14,12.60%,2,109,0,1.80%,98.20%,0.00%,17,18,111,16.20% +114391,845,2056,State-funded primary,103,53,50,51.50%,48.50%,2,1.90%,22,21.40%,0,103,0,0.00%,100.00%,0.00%,22,22,103,21.40% +114392,845,2057,State-funded primary,417,212,205,50.80%,49.20%,6,1.40%,21,5.00%,6,411,0,1.40%,98.60%,0.00%,32,34,417,8.20% +114393,845,2059,State-funded primary,697,347,350,49.80%,50.20%,16,2.30%,123,17.60%,20,677,0,2.90%,97.10%,0.00%,171,177,629,28.10% +114394,845,2060,State-funded primary,97,44,53,45.40%,54.60%,0,0.00%,21,21.60%,2,95,0,2.10%,97.90%,0.00%,16,16,97,16.50% +114395,845,2061,State-funded primary,124,66,58,53.20%,46.80%,1,0.80%,10,8.10%,6,118,0,4.80%,95.20%,0.00%,38,38,124,30.60% +114396,845,2062,State-funded primary,198,91,107,46.00%,54.00%,5,2.50%,27,13.60%,0,198,0,0.00%,100.00%,0.00%,32,33,198,16.70% +114398,846,2065,State-funded primary,684,321,363,46.90%,53.10%,15,2.20%,64,9.40%,70,609,5,10.20%,89.00%,0.70%,104,107,649,16.50% +114399,846,2066,State-funded primary,450,231,219,51.30%,48.70%,4,0.90%,55,12.20%,52,398,0,11.60%,88.40%,0.00%,120,120,450,26.70% +114403,846,2070,State-funded primary,695,354,341,50.90%,49.10%,15,2.20%,131,18.80%,135,559,1,19.40%,80.40%,0.10%,124,128,695,18.40% +114404,845,2071,State-funded primary,95,50,45,52.60%,47.40%,1,1.10%,14,14.70%,0,95,0,0.00%,100.00%,0.00%,6,6,95,6.30% +114405,845,2072,State-funded primary,256,119,137,46.50%,53.50%,13,5.10%,58,22.70%,6,250,0,2.30%,97.70%,0.00%,71,72,233,30.90% +114406,845,2073,State-funded primary,207,110,97,53.10%,46.90%,1,0.50%,13,6.30%,6,201,0,2.90%,97.10%,0.00%,11,11,207,5.30% +114407,845,2074,State-funded primary,208,101,107,48.60%,51.40%,2,1.00%,21,10.10%,1,207,0,0.50%,99.50%,0.00%,25,26,208,12.50% +114408,845,2076,State-funded primary,105,57,48,54.30%,45.70%,0,0.00%,25,23.80%,0,105,0,0.00%,100.00%,0.00%,22,22,105,21.00% +114410,845,2078,State-funded primary,127,63,64,49.60%,50.40%,3,2.40%,18,14.20%,3,124,0,2.40%,97.60%,0.00%,8,8,127,6.30% +114411,846,2079,State-funded primary,131,70,61,53.40%,46.60%,8,6.10%,21,16.00%,32,99,0,24.40%,75.60%,0.00%,51,40,106,37.70% +114412,846,2080,State-funded primary,235,134,101,57.00%,43.00%,9,3.80%,27,11.50%,45,190,0,19.10%,80.90%,0.00%,77,78,235,33.20% +114413,846,2081,State-funded primary,167,75,92,44.90%,55.10%,6,3.60%,38,22.80%,27,140,0,16.20%,83.80%,0.00%,51,52,167,31.10% +114414,845,2082,State-funded primary,103,43,60,41.70%,58.30%,2,1.90%,10,9.70%,2,101,0,1.90%,98.10%,0.00%,3,4,103,3.90% +114415,845,2083,State-funded primary,352,155,197,44.00%,56.00%,4,1.10%,37,10.50%,9,343,0,2.60%,97.40%,0.00%,43,43,298,14.40% +114416,845,2084,State-funded primary,210,107,103,51.00%,49.00%,2,1.00%,14,6.70%,6,204,0,2.90%,97.10%,0.00%,28,28,210,13.30% +114419,845,2087,State-funded primary,413,211,202,51.10%,48.90%,3,0.70%,31,7.50%,28,385,0,6.80%,93.20%,0.00%,50,51,413,12.30% +114421,845,2089,State-funded primary,198,93,105,47.00%,53.00%,7,3.50%,27,13.60%,2,196,0,1.00%,99.00%,0.00%,48,49,198,24.70% +114422,845,2090,State-funded primary,418,198,220,47.40%,52.60%,20,4.80%,45,10.80%,17,401,0,4.10%,95.90%,0.00%,59,61,418,14.60% +114423,845,2091,State-funded primary,75,35,40,46.70%,53.30%,1,1.30%,10,13.30%,0,75,0,0.00%,100.00%,0.00%,4,4,75,5.30% +114424,845,2092,State-funded primary,221,104,117,47.10%,52.90%,3,1.40%,26,11.80%,2,219,0,0.90%,99.10%,0.00%,17,17,221,7.70% +114425,846,2093,State-funded primary,252,116,136,46.00%,54.00%,25,9.90%,50,19.80%,78,174,0,31.00%,69.00%,0.00%,120,109,224,48.70% +114427,845,2095,State-funded primary,204,105,99,51.50%,48.50%,0,0.00%,30,14.70%,5,199,0,2.50%,97.50%,0.00%,65,65,204,31.90% +114428,846,2096,State-funded primary,482,258,224,53.50%,46.50%,9,1.90%,64,13.30%,97,385,0,20.10%,79.90%,0.00%,88,89,482,18.50% +114429,845,2099,State-funded primary,625,302,323,48.30%,51.70%,4,0.60%,55,8.80%,11,614,0,1.80%,98.20%,0.00%,105,106,625,17.00% +114430,846,2100,State-funded primary,423,207,216,48.90%,51.10%,12,2.80%,86,20.30%,19,404,0,4.50%,95.50%,0.00%,134,136,423,32.20% +114433,845,2103,State-funded primary,239,110,129,46.00%,54.00%,9,3.80%,34,14.20%,8,231,0,3.30%,96.70%,0.00%,49,51,212,24.10% +114434,845,2104,State-funded primary,654,307,347,46.90%,53.10%,12,1.80%,93,14.20%,22,632,0,3.40%,96.60%,0.00%,99,107,615,17.40% +114435,845,2105,State-funded primary,696,344,352,49.40%,50.60%,12,1.70%,111,15.90%,14,682,0,2.00%,98.00%,0.00%,133,137,631,21.70% +114437,845,2107,State-funded primary,395,193,202,48.90%,51.10%,15,3.80%,89,22.50%,19,376,0,4.80%,95.20%,0.00%,81,81,395,20.50% +114441,845,2112,State-funded primary,481,226,255,47.00%,53.00%,7,1.50%,92,19.10%,40,441,0,8.30%,91.70%,0.00%,175,180,419,43.00% +114443,846,2114,State-funded primary,213,104,109,48.80%,51.20%,9,4.20%,38,17.80%,15,198,0,7.00%,93.00%,0.00%,49,50,213,23.50% +114446,846,2119,State-funded primary,771,370,401,48.00%,52.00%,17,2.20%,90,11.70%,230,541,0,29.80%,70.20%,0.00%,135,136,771,17.60% +114447,845,2120,State-funded primary,514,263,251,51.20%,48.80%,5,1.00%,86,16.70%,21,493,0,4.10%,95.90%,0.00%,202,203,444,45.70% +114458,845,2131,State-funded primary,391,192,199,49.10%,50.90%,9,2.30%,42,10.70%,49,342,0,12.50%,87.50%,0.00%,132,137,391,35.00% +114460,845,2136,State-funded primary,250,123,127,49.20%,50.80%,1,0.40%,23,9.20%,33,217,0,13.20%,86.80%,0.00%,52,52,250,20.80% +114461,845,2137,State-funded primary,260,136,124,52.30%,47.70%,2,0.80%,38,14.60%,42,218,0,16.20%,83.80%,0.00%,57,57,260,21.90% +114466,845,2142,State-funded primary,270,124,146,45.90%,54.10%,3,1.10%,46,17.00%,24,246,0,8.90%,91.10%,0.00%,80,80,270,29.60% +114467,845,2143,State-funded primary,356,174,182,48.90%,51.10%,10,2.80%,96,27.00%,16,340,0,4.50%,95.50%,0.00%,127,131,356,36.80% +114471,845,2149,State-funded primary,207,112,95,54.10%,45.90%,1,0.50%,25,12.10%,2,205,0,1.00%,99.00%,0.00%,23,24,207,11.60% +114473,845,2151,State-funded primary,447,224,223,50.10%,49.90%,7,1.60%,78,17.40%,210,237,0,47.00%,53.00%,0.00%,136,141,427,33.00% +114475,845,2153,State-funded primary,493,233,260,47.30%,52.70%,6,1.20%,89,18.10%,38,455,0,7.70%,92.30%,0.00%,128,132,444,29.70% +114477,846,2155,State-funded primary,408,204,204,50.00%,50.00%,10,2.50%,55,13.50%,41,365,2,10.00%,89.50%,0.50%,72,73,408,17.90% +114478,846,2156,State-funded primary,329,163,166,49.50%,50.50%,13,4.00%,44,13.40%,94,234,1,28.60%,71.10%,0.30%,150,153,329,46.50% +114479,846,2157,State-funded primary,571,290,281,50.80%,49.20%,14,2.50%,79,13.80%,59,512,0,10.30%,89.70%,0.00%,84,89,571,15.60% +114480,846,2158,State-funded primary,374,189,185,50.50%,49.50%,12,3.20%,69,18.40%,30,344,0,8.00%,92.00%,0.00%,105,106,374,28.30% +114482,845,2160,State-funded primary,237,119,118,50.20%,49.80%,4,1.70%,29,12.20%,6,231,0,2.50%,97.50%,0.00%,23,24,207,11.60% +114484,845,2162,State-funded primary,414,195,219,47.10%,52.90%,4,1.00%,25,6.00%,9,405,0,2.20%,97.80%,0.00%,66,66,414,15.90% +114485,846,2163,State-funded primary,340,168,172,49.40%,50.60%,18,5.30%,69,20.30%,53,287,0,15.60%,84.40%,0.00%,171,165,310,53.20% +114486,846,2164,State-funded primary,350,149,201,42.60%,57.40%,15,4.30%,101,28.90%,34,316,0,9.70%,90.30%,0.00%,101,103,311,33.10% +114487,846,2165,State-funded primary,337,160,177,47.50%,52.50%,14,4.20%,71,21.10%,68,269,0,20.20%,79.80%,0.00%,146,129,309,41.70% +114488,845,3002,State-funded primary,136,64,72,47.10%,52.90%,3,2.20%,15,11.00%,4,132,0,2.90%,97.10%,0.00%,22,22,136,16.20% +114489,845,3003,State-funded primary,422,199,223,47.20%,52.80%,8,1.90%,62,14.70%,10,412,0,2.40%,97.60%,0.00%,95,96,422,22.70% +114490,845,3004,State-funded primary,96,43,53,44.80%,55.20%,0,0.00%,18,18.80%,1,95,0,1.00%,99.00%,0.00%,14,14,96,14.60% +114491,845,3006,State-funded primary,302,146,156,48.30%,51.70%,14,4.60%,30,9.90%,10,292,0,3.30%,96.70%,0.00%,106,109,220,49.50% +114492,845,3009,State-funded primary,160,88,72,55.00%,45.00%,2,1.30%,24,15.00%,3,157,0,1.90%,98.10%,0.00%,17,17,160,10.60% +114493,845,3011,State-funded primary,183,108,75,59.00%,41.00%,3,1.60%,34,18.60%,9,174,0,4.90%,95.10%,0.00%,22,24,183,13.10% +114494,845,3012,State-funded primary,102,44,58,43.10%,56.90%,0,0.00%,14,13.70%,0,102,0,0.00%,100.00%,0.00%,12,12,102,11.80% +114495,845,3013,State-funded primary,113,42,71,37.20%,62.80%,3,2.70%,24,21.20%,1,112,0,0.90%,99.10%,0.00%,33,33,113,29.20% +114496,845,3015,State-funded primary,382,173,209,45.30%,54.70%,3,0.80%,51,13.40%,12,370,0,3.10%,96.90%,0.00%,62,64,382,16.80% +114497,845,3016,State-funded primary,98,53,45,54.10%,45.90%,3,3.10%,11,11.20%,0,98,0,0.00%,100.00%,0.00%,21,22,98,22.40% +114498,845,3017,State-funded primary,113,52,61,46.00%,54.00%,1,0.90%,9,8.00%,3,110,0,2.70%,97.30%,0.00%,13,13,113,11.50% +114499,845,3018,State-funded primary,89,40,49,44.90%,55.10%,2,2.20%,9,10.10%,1,88,0,1.10%,98.90%,0.00%,7,7,89,7.90% +114501,845,3022,State-funded primary,119,60,59,50.40%,49.60%,0,0.00%,23,19.30%,4,115,0,3.40%,96.60%,0.00%,11,12,98,12.20% +114502,845,3023,State-funded primary,109,54,55,49.50%,50.50%,1,0.90%,12,11.00%,0,109,0,0.00%,100.00%,0.00%,7,7,109,6.40% +114503,845,3026,State-funded primary,68,34,34,50.00%,50.00%,4,5.90%,17,25.00%,2,66,0,2.90%,97.10%,0.00%,18,19,68,27.90% +114504,845,3028,State-funded primary,162,65,97,40.10%,59.90%,6,3.70%,27,16.70%,13,149,0,8.00%,92.00%,0.00%,35,37,162,22.80% +114505,845,3029,State-funded primary,100,51,49,51.00%,49.00%,2,2.00%,16,16.00%,5,95,0,5.00%,95.00%,0.00%,5,5,100,5.00% +114506,845,3032,State-funded primary,207,98,109,47.30%,52.70%,2,1.00%,26,12.60%,5,202,0,2.40%,97.60%,0.00%,37,39,207,18.80% +114507,845,3033,State-funded primary,101,50,51,49.50%,50.50%,1,1.00%,8,7.90%,4,97,0,4.00%,96.00%,0.00%,9,9,101,8.90% +114509,845,3040,State-funded primary,262,126,136,48.10%,51.90%,2,0.80%,54,20.60%,13,249,0,5.00%,95.00%,0.00%,55,55,234,23.50% +114510,845,3041,State-funded primary,309,147,162,47.60%,52.40%,4,1.30%,44,14.20%,20,287,2,6.50%,92.90%,0.60%,44,44,309,14.20% +114511,845,3042,State-funded primary,161,68,93,42.20%,57.80%,2,1.20%,10,6.20%,8,153,0,5.00%,95.00%,0.00%,28,31,118,26.30% +114512,845,3043,State-funded primary,158,80,78,50.60%,49.40%,0,0.00%,15,9.50%,19,139,0,12.00%,88.00%,0.00%,21,23,158,14.60% +114514,845,3045,State-funded primary,144,63,81,43.80%,56.30%,0,0.00%,21,14.60%,3,141,0,2.10%,97.90%,0.00%,19,19,144,13.20% +114515,845,3046,State-funded primary,146,79,67,54.10%,45.90%,1,0.70%,19,13.00%,0,146,0,0.00%,100.00%,0.00%,15,15,146,10.30% +114517,845,3048,State-funded primary,83,42,41,50.60%,49.40%,0,0.00%,7,8.40%,1,82,0,1.20%,98.80%,0.00%,12,12,83,14.50% +114518,845,3049,State-funded primary,75,40,35,53.30%,46.70%,2,2.70%,20,26.70%,0,75,0,0.00%,100.00%,0.00%,18,18,75,24.00% +114519,845,3050,State-funded primary,414,209,205,50.50%,49.50%,4,1.00%,27,6.50%,5,409,0,1.20%,98.80%,0.00%,79,79,414,19.10% +114520,845,3051,State-funded primary,87,39,48,44.80%,55.20%,1,1.10%,15,17.20%,2,85,0,2.30%,97.70%,0.00%,24,24,87,27.60% +114521,845,3055,State-funded primary,189,90,99,47.60%,52.40%,3,1.60%,23,12.20%,7,182,0,3.70%,96.30%,0.00%,31,31,189,16.40% +114523,845,3062,State-funded primary,110,62,48,56.40%,43.60%,1,0.90%,24,21.80%,2,108,0,1.80%,98.20%,0.00%,8,8,95,8.40% +114524,845,3063,State-funded primary,113,54,59,47.80%,52.20%,2,1.80%,28,24.80%,7,106,0,6.20%,93.80%,0.00%,48,49,113,43.40% +114525,845,3068,State-funded primary,79,33,46,41.80%,58.20%,1,1.30%,12,15.20%,5,74,0,6.30%,93.70%,0.00%,19,20,79,25.30% +114526,845,3071,State-funded primary,50,29,21,58.00%,42.00%,0,0.00%,7,14.00%,1,49,0,2.00%,98.00%,0.00%,15,15,50,30.00% +114527,845,3072,State-funded primary,128,71,57,55.50%,44.50%,0,0.00%,14,10.90%,4,124,0,3.10%,96.90%,0.00%,26,26,107,24.30% +114528,845,3074,State-funded primary,210,108,102,51.40%,48.60%,1,0.50%,28,13.30%,10,200,0,4.80%,95.20%,0.00%,23,23,210,11.00% +114529,845,3076,State-funded primary,80,42,38,52.50%,47.50%,0,0.00%,8,10.00%,0,80,0,0.00%,100.00%,0.00%,16,16,80,20.00% +114530,845,3077,State-funded primary,164,77,87,47.00%,53.00%,1,0.60%,15,9.10%,8,156,0,4.90%,95.10%,0.00%,21,21,164,12.80% +114531,845,3080,State-funded primary,96,41,55,42.70%,57.30%,3,3.10%,6,6.30%,0,96,0,0.00%,100.00%,0.00%,15,15,96,15.60% +114532,845,3081,State-funded primary,321,151,170,47.00%,53.00%,0,0.00%,19,5.90%,8,313,0,2.50%,97.50%,0.00%,34,34,251,13.50% +114534,845,3092,State-funded primary,264,117,147,44.30%,55.70%,3,1.10%,34,12.90%,27,237,0,10.20%,89.80%,0.00%,86,86,264,32.60% +114537,846,3304,State-funded primary,180,88,92,48.90%,51.10%,6,3.30%,26,14.40%,13,167,0,7.20%,92.80%,0.00%,23,23,180,12.80% +114538,846,3305,State-funded primary,135,61,74,45.20%,54.80%,12,8.90%,33,24.40%,53,82,0,39.30%,60.70%,0.00%,66,66,135,48.90% +114539,846,3308,State-funded primary,196,95,101,48.50%,51.50%,4,2.00%,42,21.40%,22,174,0,11.20%,88.80%,0.00%,86,81,174,46.60% +114540,846,3311,State-funded primary,195,99,96,50.80%,49.20%,10,5.10%,23,11.80%,87,108,0,44.60%,55.40%,0.00%,74,75,195,38.50% +114541,846,3313,State-funded primary,192,86,106,44.80%,55.20%,8,4.20%,32,16.70%,129,63,0,67.20%,32.80%,0.00%,77,68,164,41.50% +114542,846,3314,State-funded primary,160,78,82,48.80%,51.30%,4,2.50%,28,17.50%,36,124,0,22.50%,77.50%,0.00%,86,93,160,58.10% +114543,846,3315,State-funded primary,179,93,86,52.00%,48.00%,9,5.00%,10,5.60%,54,125,0,30.20%,69.80%,0.00%,38,38,179,21.20% +114544,846,3316,State-funded primary,194,91,103,46.90%,53.10%,6,3.10%,30,15.50%,19,175,0,9.80%,90.20%,0.00%,15,15,194,7.70% +114545,846,3317,State-funded primary,165,69,96,41.80%,58.20%,15,9.10%,40,24.20%,49,116,0,29.70%,70.30%,0.00%,99,100,165,60.60% +114546,846,3318,State-funded primary,213,101,112,47.40%,52.60%,4,1.90%,27,12.70%,63,150,0,29.60%,70.40%,0.00%,20,20,213,9.40% +114547,845,3320,State-funded primary,132,72,60,54.50%,45.50%,0,0.00%,8,6.10%,7,125,0,5.30%,94.70%,0.00%,12,13,132,9.80% +114549,845,3322,State-funded primary,205,99,106,48.30%,51.70%,2,1.00%,18,8.80%,6,199,0,2.90%,97.10%,0.00%,10,11,205,5.40% +114550,845,3323,State-funded primary,94,56,38,59.60%,40.40%,2,2.10%,10,10.60%,6,88,0,6.40%,93.60%,0.00%,8,8,94,8.50% +114551,845,3324,State-funded primary,212,106,106,50.00%,50.00%,6,2.80%,14,6.60%,5,207,0,2.40%,97.60%,0.00%,53,53,212,25.00% +114552,845,3325,State-funded primary,89,40,49,44.90%,55.10%,2,2.20%,12,13.50%,1,88,0,1.10%,98.90%,0.00%,13,14,89,15.70% +114553,845,3326,State-funded primary,90,38,52,42.20%,57.80%,3,3.30%,24,26.70%,2,88,0,2.20%,97.80%,0.00%,13,14,90,15.60% +114554,845,3327,State-funded primary,96,49,47,51.00%,49.00%,4,4.20%,16,16.70%,1,95,0,1.00%,99.00%,0.00%,11,11,96,11.50% +114555,846,3328,State-funded primary,423,213,210,50.40%,49.60%,8,1.90%,69,16.30%,58,365,0,13.70%,86.30%,0.00%,54,57,423,13.50% +114556,846,3329,State-funded primary,640,311,329,48.60%,51.40%,19,3.00%,218,34.10%,167,473,0,26.10%,73.90%,0.00%,96,105,640,16.40% +114557,845,3330,State-funded primary,90,45,45,50.00%,50.00%,1,1.10%,15,16.70%,3,87,0,3.30%,96.70%,0.00%,9,9,83,10.80% +114558,845,3331,State-funded primary,94,52,42,55.30%,44.70%,0,0.00%,7,7.40%,0,94,0,0.00%,100.00%,0.00%,8,8,94,8.50% +114559,845,3332,State-funded primary,178,87,91,48.90%,51.10%,1,0.60%,15,8.40%,3,175,0,1.70%,98.30%,0.00%,5,6,178,3.40% +114560,846,3333,State-funded primary,424,201,223,47.40%,52.60%,8,1.90%,75,17.70%,26,398,0,6.10%,93.90%,0.00%,69,72,424,17.00% +114562,845,3335,State-funded primary,62,34,28,54.80%,45.20%,0,0.00%,19,30.60%,4,58,0,6.50%,93.50%,0.00%,26,26,62,41.90% +114563,845,3336,State-funded primary,135,72,63,53.30%,46.70%,1,0.70%,19,14.10%,0,135,0,0.00%,100.00%,0.00%,26,27,135,20.00% +114564,845,3338,State-funded primary,419,205,214,48.90%,51.10%,2,0.50%,25,6.00%,42,377,0,10.00%,90.00%,0.00%,95,97,419,23.20% +114565,845,3339,State-funded primary,209,115,94,55.00%,45.00%,2,1.00%,20,9.60%,24,185,0,11.50%,88.50%,0.00%,20,20,209,9.60% +114566,845,3340,State-funded primary,218,98,120,45.00%,55.00%,4,1.80%,22,10.10%,17,201,0,7.80%,92.20%,0.00%,20,20,218,9.20% +114567,846,3341,State-funded primary,421,206,215,48.90%,51.10%,8,1.90%,48,11.40%,135,281,5,32.10%,66.70%,1.20%,75,78,421,18.50% +114568,845,3342,State-funded primary,109,63,46,57.80%,42.20%,2,1.80%,28,25.70%,17,92,0,15.60%,84.40%,0.00%,38,38,109,34.90% +114569,845,3343,State-funded primary,185,90,95,48.60%,51.40%,4,2.20%,25,13.50%,17,168,0,9.20%,90.80%,0.00%,32,32,182,17.60% +114570,846,3344,State-funded primary,209,120,89,57.40%,42.60%,7,3.30%,25,12.00%,55,154,0,26.30%,73.70%,0.00%,47,49,209,23.40% +114574,845,3353,State-funded primary,194,91,103,46.90%,53.10%,1,0.50%,19,9.80%,88,105,1,45.40%,54.10%,0.50%,56,57,194,29.40% +114575,845,3354,State-funded primary,239,124,115,51.90%,48.10%,4,1.70%,33,13.80%,38,201,0,15.90%,84.10%,0.00%,36,37,239,15.50% +114577,845,3362,State-funded primary,440,233,207,53.00%,47.00%,4,0.90%,63,14.30%,165,274,1,37.50%,62.30%,0.20%,53,54,440,12.30% +114579,846,4012,State-funded secondary,1498,767,731,51.20%,48.80%,65,4.30%,293,19.60%,144,1341,13,9.60%,89.50%,0.90%,284,316,1498,21.10% +114580,846,4016,State-funded secondary,1640,746,894,45.50%,54.50%,48,2.90%,171,10.40%,121,1516,3,7.40%,92.40%,0.20%,294,328,1640,20.00% +114581,846,4018,State-funded secondary,875,419,456,47.90%,52.10%,36,4.10%,175,20.00%,69,806,0,7.90%,92.10%,0.00%,312,338,875,38.60% +114584,845,4025,State-funded secondary,1137,557,580,49.00%,51.00%,18,1.60%,71,6.20%,23,1113,1,2.00%,97.90%,0.10%,218,239,1137,21.00% +114587,845,4028,State-funded secondary,1470,725,745,49.30%,50.70%,36,2.40%,84,5.70%,22,1448,0,1.50%,98.50%,0.00%,165,176,1206,14.60% +114588,845,4035,State-funded secondary,754,356,398,47.20%,52.80%,35,4.60%,35,4.60%,6,746,2,0.80%,98.90%,0.30%,159,175,754,23.20% +114590,845,4037,State-funded secondary,1583,740,843,46.70%,53.30%,30,1.90%,126,8.00%,58,1521,4,3.70%,96.10%,0.30%,187,191,1296,14.70% +114592,845,4039,State-funded secondary,1019,468,551,45.90%,54.10%,32,3.10%,70,6.90%,25,993,1,2.50%,97.40%,0.10%,140,155,1019,15.20% +114594,845,4042,State-funded secondary,827,399,428,48.20%,51.80%,26,3.10%,73,8.80%,13,814,0,1.60%,98.40%,0.00%,72,86,827,10.40% +114598,845,4047,State-funded secondary,1152,542,610,47.00%,53.00%,33,2.90%,164,14.20%,39,1112,1,3.40%,96.50%,0.10%,205,221,1152,19.20% +114606,846,4067,State-funded secondary,1621,798,823,49.20%,50.80%,32,2.00%,189,11.70%,251,1368,2,15.50%,84.40%,0.10%,254,281,1621,17.30% +114607,846,4068,State-funded secondary,1123,534,589,47.60%,52.40%,57,5.10%,183,16.30%,338,785,0,30.10%,69.90%,0.00%,350,354,1081,32.70% +114608,846,4072,State-funded secondary,1118,520,598,46.50%,53.50%,46,4.10%,200,17.90%,72,1046,0,6.40%,93.60%,0.00%,222,244,1118,21.80% +114611,846,4605,State-funded secondary,2497,1185,1312,47.50%,52.50%,40,1.60%,320,12.80%,529,1968,0,21.20%,78.80%,0.00%,339,313,1809,17.30% +114612,845,4606,State-funded secondary,1036,540,496,52.10%,47.90%,21,2.00%,92,8.90%,117,919,0,11.30%,88.70%,0.00%,110,121,1036,11.70% +114614,846,6008,Independent school,1268,554,714,43.70%,56.30%,0,0.00%,203,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114616,846,6006,Independent school,700,700,0,100.00%,0.00%,0,0.00%,79,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114618,846,6013,Independent school,194,86,108,44.30%,55.70%,1,0.50%,20,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114619,846,7003,Non-maintained special school,37,16,21,43.20%,56.80%,37,100.00%,0,0.00%,37,0,0,100.00%,0.00%,0.00%,10,13,18,72.20% +114621,846,6015,Independent school,510,242,268,47.50%,52.50%,0,0.00%,81,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114622,845,6018,Independent school,506,241,265,47.60%,52.40%,0,0.00%,47,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114623,938,6019,Independent school,415,194,221,46.70%,53.30%,0,0.00%,91,21.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114625,845,6037,Independent school,421,219,202,52.00%,48.00%,1,0.20%,99,23.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114626,846,6000,Independent school,288,118,170,41.00%,59.00%,0,0.00%,23,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114627,845,6035,Independent school,421,421,0,100.00%,0.00%,0,0.00%,145,34.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114629,845,6004,Independent school,188,101,87,53.70%,46.30%,0,0.00%,40,21.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114633,845,6038,Independent school,205,101,104,49.30%,50.70%,1,0.50%,25,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114634,845,6032,Independent school,702,277,425,39.50%,60.50%,4,0.60%,130,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114635,845,6002,Independent school,136,34,102,25.00%,75.00%,133,97.80%,3,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114636,845,6020,Independent school,139,80,59,57.60%,42.40%,2,1.40%,31,22.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114639,846,6011,Independent school,286,121,165,42.30%,57.70%,1,0.30%,71,24.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114640,845,6010,Independent school,627,269,358,42.90%,57.10%,9,1.40%,14,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114645,845,6028,Independent school,117,32,85,27.40%,72.60%,114,97.40%,3,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114646,845,6003,Independent school,49,23,26,46.90%,53.10%,0,0.00%,2,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114650,845,6014,Independent school,651,266,385,40.90%,59.10%,0,0.00%,167,25.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114652,845,6016,Independent school,364,176,188,48.40%,51.60%,0,0.00%,46,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114653,845,6011,Independent school,357,161,196,45.10%,54.90%,0,0.00%,59,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114656,845,6031,Independent school,289,98,191,33.90%,66.10%,0,0.00%,23,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114657,845,6006,Independent school,825,334,491,40.50%,59.50%,1,0.10%,171,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114658,846,6014,Independent school,416,416,0,100.00%,0.00%,1,0.20%,129,31.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114659,845,6017,Independent school,175,77,98,44.00%,56.00%,1,0.60%,1,0.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114660,845,6007,Independent school,11,0,11,0.00%,100.00%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114661,846,6016,Independent school,152,74,78,48.70%,51.30%,3,2.00%,43,28.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +114677,845,7002,Non-maintained special school,28,6,22,21.40%,78.60%,28,100.00%,0,0.00%,0,28,0,0.00%,100.00%,0.00%,6,9,24,37.50% +114678,846,7004,State-funded special school,37,5,32,13.50%,86.50%,37,100.00%,0,0.00%,0,37,0,0.00%,100.00%,0.00%,23,26,37,70.30% +114680,846,7006,State-funded special school,203,58,145,28.60%,71.40%,203,100.00%,0,0.00%,31,171,1,15.30%,84.20%,0.50%,107,95,165,57.60% +114682,845,7012,Non-maintained special school,78,36,42,46.20%,53.80%,78,100.00%,0,0.00%,1,77,0,1.30%,98.70%,0.00%,12,13,55,23.60% +114687,846,7018,State-funded special school,201,51,150,25.40%,74.60%,201,100.00%,0,0.00%,25,176,0,12.40%,87.60%,0.00%,83,85,201,42.30% +114688,845,7021,State-funded special school,133,43,90,32.30%,67.70%,133,100.00%,0,0.00%,9,124,0,6.80%,93.20%,0.00%,38,35,116,30.20% +114698,881,1000,State-funded nursery,174,76,98,43.70%,56.30%,1,0.60%,42,24.10%,30,144,0,17.20%,82.80%,0.00%,0,0,0,0.00% +114699,881,1001,State-funded nursery,93,30,63,32.30%,67.70%,3,3.20%,27,29.00%,13,79,1,14.00%,84.90%,1.10%,0,0,0,0.00% +114704,881,2001,State-funded primary,633,306,327,48.30%,51.70%,7,1.10%,102,16.10%,115,518,0,18.20%,81.80%,0.00%,219,226,605,37.40% +114706,881,2003,State-funded primary,416,204,212,49.00%,51.00%,9,2.20%,38,9.10%,34,381,1,8.20%,91.60%,0.20%,35,40,416,9.60% +114707,881,2006,State-funded primary,221,124,97,56.10%,43.90%,17,7.70%,23,10.40%,22,199,0,10.00%,90.00%,0.00%,50,55,196,28.10% +114708,881,2007,State-funded primary,312,154,158,49.40%,50.60%,3,1.00%,32,10.30%,58,254,0,18.60%,81.40%,0.00%,47,50,312,16.00% +114709,881,2008,State-funded primary,448,219,229,48.90%,51.10%,9,2.00%,46,10.30%,137,310,1,30.60%,69.20%,0.20%,86,87,412,21.10% +114710,881,2010,State-funded primary,209,111,98,53.10%,46.90%,6,2.90%,16,7.70%,26,179,4,12.40%,85.60%,1.90%,39,39,209,18.70% +114711,881,2011,State-funded primary,628,305,323,48.60%,51.40%,13,2.10%,65,10.40%,109,519,0,17.40%,82.60%,0.00%,130,145,628,23.10% +114717,881,2017,State-funded primary,185,81,104,43.80%,56.20%,4,2.20%,24,13.00%,32,153,0,17.30%,82.70%,0.00%,41,41,145,28.30% +114718,882,2019,State-funded primary,478,248,230,51.90%,48.10%,10,2.10%,35,7.30%,25,453,0,5.20%,94.80%,0.00%,67,71,478,14.90% +114719,882,2022,State-funded primary,329,176,153,53.50%,46.50%,4,1.20%,15,4.60%,31,298,0,9.40%,90.60%,0.00%,31,31,329,9.40% +114720,882,2023,State-funded primary,634,302,332,47.60%,52.40%,21,3.30%,63,9.90%,157,477,0,24.80%,75.20%,0.00%,73,73,634,11.50% +114722,881,2027,State-funded primary,315,155,160,49.20%,50.80%,1,0.30%,28,8.90%,22,293,0,7.00%,93.00%,0.00%,163,163,276,59.10% +114723,881,2028,State-funded primary,211,98,113,46.40%,53.60%,6,2.80%,19,9.00%,11,200,0,5.20%,94.80%,0.00%,33,39,211,18.50% +114729,881,2038,State-funded primary,121,64,57,52.90%,47.10%,2,1.70%,19,15.70%,3,118,0,2.50%,97.50%,0.00%,13,13,121,10.70% +114730,881,2039,State-funded primary,99,52,47,52.50%,47.50%,3,3.00%,12,12.10%,6,93,0,6.10%,93.90%,0.00%,7,8,99,8.10% +114732,881,2041,State-funded primary,407,192,215,47.20%,52.80%,5,1.20%,34,8.40%,16,391,0,3.90%,96.10%,0.00%,41,48,407,11.80% +114734,881,2043,State-funded primary,227,119,108,52.40%,47.60%,5,2.20%,41,18.10%,0,227,0,0.00%,100.00%,0.00%,39,41,227,18.10% +114735,881,2044,State-funded primary,114,64,50,56.10%,43.90%,1,0.90%,11,9.60%,0,114,0,0.00%,100.00%,0.00%,11,12,114,10.50% +114736,881,2045,State-funded primary,215,99,116,46.00%,54.00%,5,2.30%,31,14.40%,5,209,1,2.30%,97.20%,0.50%,19,19,215,8.80% +114738,881,2050,State-funded primary,187,91,96,48.70%,51.30%,3,1.60%,37,19.80%,2,185,0,1.10%,98.90%,0.00%,24,24,187,12.80% +114739,881,2051,State-funded primary,116,53,63,45.70%,54.30%,6,5.20%,29,25.00%,1,115,0,0.90%,99.10%,0.00%,8,9,116,7.80% +114742,881,2054,State-funded primary,280,141,139,50.40%,49.60%,1,0.40%,40,14.30%,12,268,0,4.30%,95.70%,0.00%,41,56,280,20.00% +114743,881,2055,State-funded primary,255,128,127,50.20%,49.80%,5,2.00%,39,15.30%,32,223,0,12.50%,87.50%,0.00%,28,40,255,15.70% +114744,881,2056,State-funded primary,147,78,69,53.10%,46.90%,2,1.40%,18,12.20%,21,126,0,14.30%,85.70%,0.00%,17,17,147,11.60% +114745,881,2057,State-funded primary,216,107,109,49.50%,50.50%,4,1.90%,43,19.90%,36,180,0,16.70%,83.30%,0.00%,107,110,216,50.90% +114746,881,2058,State-funded primary,187,113,74,60.40%,39.60%,8,4.30%,22,11.80%,35,151,1,18.70%,80.70%,0.50%,76,77,171,45.00% +114747,881,2059,State-funded primary,338,151,187,44.70%,55.30%,9,2.70%,40,11.80%,32,306,0,9.50%,90.50%,0.00%,160,167,338,49.40% +114750,881,2062,State-funded primary,346,179,167,51.70%,48.30%,5,1.40%,32,9.20%,66,280,0,19.10%,80.90%,0.00%,69,101,346,29.20% +114751,881,2063,State-funded primary,300,156,144,52.00%,48.00%,2,0.70%,28,9.30%,41,259,0,13.70%,86.30%,0.00%,55,57,261,21.80% +114755,881,2068,State-funded primary,707,363,344,51.30%,48.70%,6,0.80%,139,19.70%,26,681,0,3.70%,96.30%,0.00%,155,159,657,24.20% +114756,881,2069,State-funded primary,167,73,94,43.70%,56.30%,2,1.20%,31,18.60%,14,153,0,8.40%,91.60%,0.00%,28,28,167,16.80% +114759,881,2073,State-funded primary,226,107,119,47.30%,52.70%,7,3.10%,33,14.60%,17,209,0,7.50%,92.50%,0.00%,47,48,226,21.20% +114760,881,2074,State-funded primary,193,98,95,50.80%,49.20%,1,0.50%,25,13.00%,0,193,0,0.00%,100.00%,0.00%,32,33,193,17.10% +114761,881,2075,State-funded primary,406,192,214,47.30%,52.70%,4,1.00%,38,9.40%,47,358,1,11.60%,88.20%,0.20%,82,85,406,20.90% +114764,881,2081,State-funded primary,542,259,283,47.80%,52.20%,8,1.50%,84,15.50%,50,492,0,9.20%,90.80%,0.00%,116,119,542,22.00% +114767,881,2088,State-funded primary,103,48,55,46.60%,53.40%,2,1.90%,34,33.00%,3,100,0,2.90%,97.10%,0.00%,33,42,103,40.80% +114769,881,2090,State-funded primary,317,173,144,54.60%,45.40%,6,1.90%,38,12.00%,6,311,0,1.90%,98.10%,0.00%,23,25,317,7.90% +114774,882,2096,State-funded primary,618,290,328,46.90%,53.10%,14,2.30%,53,8.60%,27,591,0,4.40%,95.60%,0.00%,74,78,618,12.60% +114780,882,2109,State-funded primary,359,172,187,47.90%,52.10%,5,1.40%,24,6.70%,26,333,0,7.20%,92.80%,0.00%,16,18,359,5.00% +114787,882,2124,State-funded primary,300,134,166,44.70%,55.30%,16,5.30%,59,19.70%,71,229,0,23.70%,76.30%,0.00%,63,65,248,26.20% +114789,882,2126,State-funded primary,402,210,192,52.20%,47.80%,9,2.20%,43,10.70%,20,382,0,5.00%,95.00%,0.00%,51,52,402,12.90% +114801,881,2181,State-funded primary,256,114,142,44.50%,55.50%,4,1.60%,29,11.30%,8,248,0,3.10%,96.90%,0.00%,11,12,256,4.70% +114805,881,2210,State-funded primary,321,139,182,43.30%,56.70%,15,4.70%,72,22.40%,71,249,1,22.10%,77.60%,0.30%,78,82,321,25.50% +114811,881,2261,State-funded primary,113,49,64,43.40%,56.60%,2,1.80%,26,23.00%,14,99,0,12.40%,87.60%,0.00%,36,38,102,37.30% +114813,881,2271,State-funded primary,511,256,255,50.10%,49.90%,7,1.40%,59,11.50%,20,491,0,3.90%,96.10%,0.00%,92,100,511,19.60% +114817,881,2297,State-funded primary,285,140,145,49.10%,50.90%,6,2.10%,40,14.00%,39,242,4,13.70%,84.90%,1.40%,83,91,269,33.80% +114818,881,2300,State-funded primary,550,267,283,48.50%,51.50%,17,3.10%,104,18.90%,82,467,1,14.90%,84.90%,0.20%,198,209,515,40.60% +114821,881,2310,State-funded primary,421,206,215,48.90%,51.10%,8,1.90%,38,9.00%,8,413,0,1.90%,98.10%,0.00%,104,106,421,25.20% +114822,881,2311,State-funded primary,244,130,114,53.30%,46.70%,8,3.30%,17,7.00%,7,237,0,2.90%,97.10%,0.00%,48,78,244,32.00% +114823,881,2317,State-funded primary,188,97,91,51.60%,48.40%,1,0.50%,44,23.40%,22,166,0,11.70%,88.30%,0.00%,69,75,188,39.90% +114827,881,2330,State-funded primary,420,204,216,48.60%,51.40%,12,2.90%,18,4.30%,41,379,0,9.80%,90.20%,0.00%,53,55,420,13.10% +114834,881,2374,State-funded primary,394,195,199,49.50%,50.50%,12,3.00%,119,30.20%,9,385,0,2.30%,97.70%,0.00%,174,193,341,56.60% +114835,881,2380,State-funded primary,119,64,55,53.80%,46.20%,5,4.20%,9,7.60%,2,116,1,1.70%,97.50%,0.80%,16,18,119,15.10% +114841,882,2407,State-funded primary,419,200,219,47.70%,52.30%,17,4.10%,32,7.60%,21,398,0,5.00%,95.00%,0.00%,69,70,419,16.70% +114843,881,2414,State-funded primary,234,130,104,55.60%,44.40%,6,2.60%,34,14.50%,9,225,0,3.80%,96.20%,0.00%,110,108,200,54.00% +114852,881,2450,State-funded primary,225,111,114,49.30%,50.70%,7,3.10%,10,4.40%,3,222,0,1.30%,98.70%,0.00%,26,31,225,13.80% +114856,881,2460,State-funded primary,138,53,85,38.40%,61.60%,4,2.90%,27,19.60%,0,138,0,0.00%,100.00%,0.00%,8,9,138,6.50% +114869,881,2500,State-funded primary,57,32,25,56.10%,43.90%,4,7.00%,5,8.80%,0,57,0,0.00%,100.00%,0.00%,12,15,57,26.30% +114875,881,2510,State-funded primary,200,93,107,46.50%,53.50%,6,3.00%,25,12.50%,1,199,0,0.50%,99.50%,0.00%,13,14,200,7.00% +114879,881,2521,State-funded primary,189,99,90,52.40%,47.60%,3,1.60%,15,7.90%,4,185,0,2.10%,97.90%,0.00%,37,38,189,20.10% +114884,881,2541,State-funded primary,184,98,86,53.30%,46.70%,4,2.20%,13,7.10%,2,182,0,1.10%,98.90%,0.00%,4,4,184,2.20% +114887,881,2549,State-funded primary,181,94,87,51.90%,48.10%,6,3.30%,49,27.10%,11,170,0,6.10%,93.90%,0.00%,29,29,181,16.00% +114888,881,2550,State-funded primary,186,88,98,47.30%,52.70%,7,3.80%,23,12.40%,6,180,0,3.20%,96.80%,0.00%,19,24,186,12.90% +114898,881,2579,State-funded primary,174,93,81,53.40%,46.60%,3,1.70%,5,2.90%,8,166,0,4.60%,95.40%,0.00%,38,38,174,21.80% +114902,881,2588,State-funded primary,394,197,197,50.00%,50.00%,17,4.30%,33,8.40%,31,363,0,7.90%,92.10%,0.00%,38,42,394,10.70% +114904,881,2590,State-funded primary,152,69,83,45.40%,54.60%,3,2.00%,8,5.30%,0,152,0,0.00%,100.00%,0.00%,12,13,152,8.60% +114909,881,2599,State-funded primary,134,59,75,44.00%,56.00%,1,0.70%,5,3.70%,4,129,1,3.00%,96.30%,0.70%,9,10,134,7.50% +114910,881,2601,State-funded primary,229,107,122,46.70%,53.30%,3,1.30%,27,11.80%,7,222,0,3.10%,96.90%,0.00%,24,31,229,13.50% +114912,881,2606,State-funded primary,640,328,312,51.30%,48.80%,10,1.60%,100,15.60%,52,585,3,8.10%,91.40%,0.50%,221,231,617,37.40% +114913,881,2609,State-funded primary,240,118,122,49.20%,50.80%,4,1.70%,38,15.80%,10,229,1,4.20%,95.40%,0.40%,34,43,240,17.90% +114914,881,2611,State-funded primary,601,277,324,46.10%,53.90%,37,6.20%,79,13.10%,179,421,1,29.80%,70.00%,0.20%,204,214,577,37.10% +114917,881,2619,State-funded primary,173,91,82,52.60%,47.40%,4,2.30%,38,22.00%,8,164,1,4.60%,94.80%,0.60%,20,21,173,12.10% +114921,881,2624,State-funded primary,170,74,96,43.50%,56.50%,15,8.80%,18,10.60%,10,160,0,5.90%,94.10%,0.00%,18,20,170,11.80% +114925,881,2630,State-funded primary,193,86,107,44.60%,55.40%,4,2.10%,21,10.90%,2,191,0,1.00%,99.00%,0.00%,33,35,193,18.10% +114929,881,2640,State-funded primary,169,82,87,48.50%,51.50%,2,1.20%,29,17.20%,4,165,0,2.40%,97.60%,0.00%,16,17,169,10.10% +114932,881,2647,State-funded primary,157,87,70,55.40%,44.60%,5,3.20%,33,21.00%,76,81,0,48.40%,51.60%,0.00%,42,60,157,38.20% +114933,881,2649,State-funded primary,436,211,225,48.40%,51.60%,8,1.80%,48,11.00%,3,433,0,0.70%,99.30%,0.00%,54,55,436,12.60% +114936,881,2656,State-funded primary,261,141,120,54.00%,46.00%,4,1.50%,15,5.70%,3,258,0,1.10%,98.90%,0.00%,53,53,261,20.30% +114937,881,2659,State-funded primary,230,114,116,49.60%,50.40%,5,2.20%,37,16.10%,10,220,0,4.30%,95.70%,0.00%,41,42,230,18.30% +114941,881,2669,State-funded primary,360,180,180,50.00%,50.00%,10,2.80%,30,8.30%,54,306,0,15.00%,85.00%,0.00%,95,95,319,29.80% +114942,881,2671,State-funded primary,176,88,88,50.00%,50.00%,2,1.10%,11,6.30%,17,159,0,9.70%,90.30%,0.00%,17,17,176,9.70% +114945,881,2680,State-funded primary,190,99,91,52.10%,47.90%,7,3.70%,23,12.10%,3,187,0,1.60%,98.40%,0.00%,40,42,190,22.10% +114946,881,2681,State-funded primary,231,117,114,50.60%,49.40%,14,6.10%,41,17.70%,7,224,0,3.00%,97.00%,0.00%,44,53,231,22.90% +114951,881,5276,State-funded primary,259,117,142,45.20%,54.80%,3,1.20%,23,8.90%,6,253,0,2.30%,97.70%,0.00%,63,63,259,24.30% +114964,881,2710,State-funded primary,66,31,35,47.00%,53.00%,1,1.50%,8,12.10%,4,62,0,6.10%,93.90%,0.00%,4,7,66,10.60% +114967,881,2720,State-funded primary,173,84,89,48.60%,51.40%,2,1.20%,19,11.00%,2,171,0,1.20%,98.80%,0.00%,13,16,173,9.20% +114969,881,2729,State-funded primary,129,60,69,46.50%,53.50%,4,3.10%,2,1.60%,1,128,0,0.80%,99.20%,0.00%,16,16,129,12.40% +114970,881,2730,State-funded primary,89,46,43,51.70%,48.30%,1,1.10%,14,15.70%,1,88,0,1.10%,98.90%,0.00%,5,5,89,5.60% +114972,881,2733,State-funded primary,257,132,125,51.40%,48.60%,0,0.00%,48,18.70%,40,217,0,15.60%,84.40%,0.00%,30,36,257,14.00% +114974,881,2737,State-funded primary,220,106,114,48.20%,51.80%,3,1.40%,17,7.70%,6,214,0,2.70%,97.30%,0.00%,26,24,179,13.40% +114975,881,2740,State-funded primary,211,97,114,46.00%,54.00%,5,2.40%,22,10.40%,3,208,0,1.40%,98.60%,0.00%,27,27,190,14.20% +114978,881,2747,State-funded primary,214,95,119,44.40%,55.60%,28,13.10%,21,9.80%,19,191,4,8.90%,89.30%,1.90%,17,18,191,9.40% +114979,881,2750,State-funded primary,92,41,51,44.60%,55.40%,0,0.00%,8,8.70%,1,91,0,1.10%,98.90%,0.00%,3,4,92,4.30% +114980,881,2751,State-funded primary,221,118,103,53.40%,46.60%,7,3.20%,15,6.80%,6,215,0,2.70%,97.30%,0.00%,33,41,181,22.70% +114984,881,2759,State-funded primary,321,152,169,47.40%,52.60%,7,2.20%,49,15.30%,35,286,0,10.90%,89.10%,0.00%,94,110,321,34.30% +114985,881,2760,State-funded primary,190,90,100,47.40%,52.60%,6,3.20%,35,18.40%,11,179,0,5.80%,94.20%,0.00%,35,36,190,18.90% +114988,881,2767,State-funded primary,569,272,297,47.80%,52.20%,13,2.30%,73,12.80%,39,529,1,6.90%,93.00%,0.20%,60,62,569,10.90% +114989,881,2769,State-funded primary,299,147,152,49.20%,50.80%,2,0.70%,23,7.70%,42,257,0,14.00%,86.00%,0.00%,82,82,252,32.50% +114990,881,2770,State-funded primary,64,26,38,40.60%,59.40%,0,0.00%,13,20.30%,7,57,0,10.90%,89.10%,0.00%,13,14,64,21.90% +114992,881,2779,State-funded primary,256,142,114,55.50%,44.50%,2,0.80%,25,9.80%,5,251,0,2.00%,98.00%,0.00%,22,22,256,8.60% +114996,881,2789,State-funded primary,212,112,100,52.80%,47.20%,8,3.80%,17,8.00%,22,190,0,10.40%,89.60%,0.00%,24,25,212,11.80% +114999,881,2798,State-funded primary,415,207,208,49.90%,50.10%,9,2.20%,63,15.20%,15,400,0,3.60%,96.40%,0.00%,122,133,415,32.00% +115000,881,2799,State-funded primary,180,78,102,43.30%,56.70%,5,2.80%,35,19.40%,2,178,0,1.10%,98.90%,0.00%,19,21,180,11.70% +115012,881,2821,State-funded primary,418,212,206,50.70%,49.30%,12,2.90%,34,8.10%,2,416,0,0.50%,99.50%,0.00%,33,34,418,8.10% +115018,881,2838,State-funded primary,297,123,174,41.40%,58.60%,9,3.00%,30,10.10%,69,228,0,23.20%,76.80%,0.00%,75,84,272,30.90% +115027,881,2879,State-funded primary,614,295,319,48.00%,52.00%,13,2.10%,68,11.10%,139,473,2,22.60%,77.00%,0.30%,154,166,614,27.00% +115039,881,2911,State-funded primary,202,98,104,48.50%,51.50%,0,0.00%,19,9.40%,8,194,0,4.00%,96.00%,0.00%,22,19,165,11.50% +115041,881,2918,State-funded primary,214,104,110,48.60%,51.40%,6,2.80%,25,11.70%,21,193,0,9.80%,90.20%,0.00%,43,50,214,23.40% +115042,881,2919,State-funded primary,345,174,171,50.40%,49.60%,11,3.20%,50,14.50%,49,296,0,14.20%,85.80%,0.00%,46,52,345,15.10% +115047,881,2950,State-funded primary,241,121,120,50.20%,49.80%,4,1.70%,42,17.40%,10,230,1,4.10%,95.40%,0.40%,33,38,241,15.80% +115064,881,3001,State-funded primary,211,105,106,49.80%,50.20%,5,2.40%,63,29.90%,23,188,0,10.90%,89.10%,0.00%,51,56,211,26.50% +115065,881,3003,State-funded primary,210,93,117,44.30%,55.70%,2,1.00%,16,7.60%,23,187,0,11.00%,89.00%,0.00%,28,30,210,14.30% +115066,881,3006,State-funded primary,213,109,104,51.20%,48.80%,11,5.20%,37,17.40%,2,207,4,0.90%,97.20%,1.90%,51,53,213,24.90% +115067,881,3008,State-funded primary,72,38,34,52.80%,47.20%,1,1.40%,14,19.40%,1,71,0,1.40%,98.60%,0.00%,8,8,72,11.10% +115068,881,3009,State-funded primary,95,45,50,47.40%,52.60%,1,1.10%,13,13.70%,1,94,0,1.10%,98.90%,0.00%,9,9,95,9.50% +115070,881,3013,State-funded primary,213,98,115,46.00%,54.00%,4,1.90%,31,14.60%,10,199,4,4.70%,93.40%,1.90%,35,36,213,16.90% +115071,881,3015,State-funded primary,65,31,34,47.70%,52.30%,1,1.50%,3,4.60%,4,61,0,6.20%,93.80%,0.00%,5,6,65,9.20% +115072,881,3018,State-funded primary,203,84,119,41.40%,58.60%,4,2.00%,11,5.40%,4,199,0,2.00%,98.00%,0.00%,16,17,203,8.40% +115073,881,3019,State-funded primary,103,49,54,47.60%,52.40%,0,0.00%,19,18.40%,2,101,0,1.90%,98.10%,0.00%,4,6,103,5.80% +115074,881,3020,State-funded primary,217,107,110,49.30%,50.70%,4,1.80%,19,8.80%,18,199,0,8.30%,91.70%,0.00%,18,19,217,8.80% +115075,881,3021,State-funded primary,84,49,35,58.30%,41.70%,1,1.20%,15,17.90%,4,80,0,4.80%,95.20%,0.00%,19,19,84,22.60% +115076,881,3022,State-funded primary,198,88,110,44.40%,55.60%,3,1.50%,19,9.60%,3,195,0,1.50%,98.50%,0.00%,20,27,198,13.60% +115077,881,3023,State-funded primary,225,123,102,54.70%,45.30%,4,1.80%,32,14.20%,10,214,1,4.40%,95.10%,0.40%,51,54,225,24.00% +115078,881,3024,State-funded primary,115,60,55,52.20%,47.80%,3,2.60%,13,11.30%,3,112,0,2.60%,97.40%,0.00%,1,1,115,0.90% +115079,881,3025,State-funded primary,75,38,37,50.70%,49.30%,3,4.00%,14,18.70%,2,73,0,2.70%,97.30%,0.00%,17,17,75,22.70% +115080,881,3026,State-funded primary,202,109,93,54.00%,46.00%,8,4.00%,19,9.40%,0,202,0,0.00%,100.00%,0.00%,21,21,202,10.40% +115081,881,3027,State-funded primary,170,79,91,46.50%,53.50%,3,1.80%,24,14.10%,38,132,0,22.40%,77.60%,0.00%,50,51,170,30.00% +115082,881,3028,State-funded primary,246,120,126,48.80%,51.20%,5,2.00%,20,8.10%,2,244,0,0.80%,99.20%,0.00%,25,25,246,10.20% +115083,881,3029,State-funded primary,418,196,222,46.90%,53.10%,8,1.90%,37,8.90%,4,414,0,1.00%,99.00%,0.00%,25,27,418,6.50% +115084,881,3030,State-funded primary,108,49,59,45.40%,54.60%,1,0.90%,8,7.40%,1,107,0,0.90%,99.10%,0.00%,9,9,108,8.30% +115085,881,3032,State-funded primary,117,64,53,54.70%,45.30%,4,3.40%,15,12.80%,2,115,0,1.70%,98.30%,0.00%,7,8,117,6.80% +115088,881,3040,State-funded primary,197,105,92,53.30%,46.70%,4,2.00%,40,20.30%,19,178,0,9.60%,90.40%,0.00%,69,70,197,35.50% +115090,881,3102,State-funded primary,145,71,74,49.00%,51.00%,3,2.10%,23,15.90%,1,144,0,0.70%,99.30%,0.00%,7,7,145,4.80% +115091,881,3103,State-funded primary,110,58,52,52.70%,47.30%,3,2.70%,18,16.40%,2,108,0,1.80%,98.20%,0.00%,7,7,110,6.40% +115095,881,3123,State-funded primary,190,110,80,57.90%,42.10%,2,1.10%,34,17.90%,4,186,0,2.10%,97.90%,0.00%,47,47,190,24.70% +115099,881,3131,State-funded primary,105,56,49,53.30%,46.70%,5,4.80%,11,10.50%,3,102,0,2.90%,97.10%,0.00%,22,23,105,21.90% +115102,881,5279,State-funded primary,203,87,116,42.90%,57.10%,4,2.00%,37,18.20%,8,195,0,3.90%,96.10%,0.00%,42,45,203,22.20% +115103,881,3201,State-funded primary,313,166,147,53.00%,47.00%,7,2.20%,43,13.70%,5,308,0,1.60%,98.40%,0.00%,85,89,313,28.40% +115108,881,3209,State-funded primary,321,153,168,47.70%,52.30%,11,3.40%,16,5.00%,3,318,0,0.90%,99.10%,0.00%,47,49,283,17.30% +115110,881,3212,State-funded primary,56,22,34,39.30%,60.70%,2,3.60%,9,16.10%,1,55,0,1.80%,98.20%,0.00%,8,8,56,14.30% +115111,881,3213,State-funded primary,104,50,54,48.10%,51.90%,3,2.90%,17,16.30%,1,103,0,1.00%,99.00%,0.00%,8,8,104,7.70% +115112,881,3214,State-funded primary,220,106,114,48.20%,51.80%,4,1.80%,29,13.20%,7,213,0,3.20%,96.80%,0.00%,42,43,220,19.50% +115113,881,3215,State-funded primary,122,63,59,51.60%,48.40%,2,1.60%,22,18.00%,0,122,0,0.00%,100.00%,0.00%,10,11,122,9.00% +115114,881,3217,State-funded primary,164,79,85,48.20%,51.80%,0,0.00%,24,14.60%,6,158,0,3.70%,96.30%,0.00%,19,20,164,12.20% +115119,881,3224,State-funded primary,219,114,105,52.10%,47.90%,4,1.80%,16,7.30%,2,217,0,0.90%,99.10%,0.00%,15,17,219,7.80% +115120,881,3225,State-funded primary,201,106,95,52.70%,47.30%,1,0.50%,13,6.50%,2,199,0,1.00%,99.00%,0.00%,16,17,201,8.50% +115123,881,3235,State-funded primary,114,49,65,43.00%,57.00%,3,2.60%,17,14.90%,1,113,0,0.90%,99.10%,0.00%,30,36,114,31.60% +115125,881,3238,State-funded primary,89,43,46,48.30%,51.70%,2,2.20%,10,11.20%,0,89,0,0.00%,100.00%,0.00%,23,25,89,28.10% +115126,881,3239,State-funded primary,90,50,40,55.60%,44.40%,0,0.00%,9,10.00%,6,84,0,6.70%,93.30%,0.00%,8,9,90,10.00% +115127,881,3241,State-funded primary,121,59,62,48.80%,51.20%,2,1.70%,12,9.90%,17,104,0,14.00%,86.00%,0.00%,16,16,121,13.20% +115129,881,3244,State-funded primary,342,166,176,48.50%,51.50%,5,1.50%,47,13.70%,6,336,0,1.80%,98.20%,0.00%,42,46,342,13.50% +115130,881,3247,State-funded primary,104,56,48,53.80%,46.20%,2,1.90%,13,12.50%,1,103,0,1.00%,99.00%,0.00%,1,1,104,1.00% +115137,881,3308,State-funded primary,73,40,33,54.80%,45.20%,1,1.40%,17,23.30%,4,69,0,5.50%,94.50%,0.00%,18,18,73,24.70% +115138,881,3309,State-funded primary,133,61,72,45.90%,54.10%,1,0.80%,25,18.80%,2,131,0,1.50%,98.50%,0.00%,17,18,133,13.50% +115139,881,3310,State-funded primary,87,40,47,46.00%,54.00%,0,0.00%,10,11.50%,7,80,0,8.00%,92.00%,0.00%,19,22,87,25.30% +115141,881,3314,State-funded primary,110,49,61,44.50%,55.50%,3,2.70%,19,17.30%,4,106,0,3.60%,96.40%,0.00%,25,26,110,23.60% +115144,881,3324,State-funded primary,188,95,93,50.50%,49.50%,6,3.20%,30,16.00%,5,183,0,2.70%,97.30%,0.00%,33,36,188,19.10% +115145,882,3325,State-funded primary,649,331,318,51.00%,49.00%,7,1.10%,93,14.30%,136,512,1,21.00%,78.90%,0.20%,232,236,649,36.40% +115151,881,3402,State-funded primary,209,98,111,46.90%,53.10%,12,5.70%,25,12.00%,8,199,2,3.80%,95.20%,1.00%,16,20,209,9.60% +115154,881,3422,State-funded primary,206,96,110,46.60%,53.40%,3,1.50%,32,15.50%,3,203,0,1.50%,98.50%,0.00%,20,25,206,12.10% +115155,881,3430,State-funded primary,215,115,100,53.50%,46.50%,7,3.30%,24,11.20%,24,189,2,11.20%,87.90%,0.90%,36,38,215,17.70% +115156,881,3431,State-funded primary,249,123,126,49.40%,50.60%,8,3.20%,21,8.40%,87,162,0,34.90%,65.10%,0.00%,35,45,249,18.10% +115157,881,3440,State-funded primary,416,188,228,45.20%,54.80%,12,2.90%,64,15.40%,34,382,0,8.20%,91.80%,0.00%,71,73,416,17.50% +115159,881,3450,State-funded primary,238,117,121,49.20%,50.80%,7,2.90%,20,8.40%,6,232,0,2.50%,97.50%,0.00%,33,41,238,17.20% +115160,881,3451,State-funded primary,180,95,85,52.80%,47.20%,8,4.40%,44,24.40%,49,129,2,27.20%,71.70%,1.10%,20,20,180,11.10% +115164,881,3462,State-funded primary,415,220,195,53.00%,47.00%,12,2.90%,16,3.90%,8,407,0,1.90%,98.10%,0.00%,7,9,415,2.20% +115166,881,3470,State-funded primary,105,54,51,51.40%,48.60%,2,1.90%,17,16.20%,0,105,0,0.00%,100.00%,0.00%,17,19,105,18.10% +115170,881,3501,State-funded primary,195,85,110,43.60%,56.40%,7,3.60%,32,16.40%,4,191,0,2.10%,97.90%,0.00%,43,44,195,22.60% +115175,881,3530,State-funded primary,209,99,110,47.40%,52.60%,7,3.30%,28,13.40%,46,163,0,22.00%,78.00%,0.00%,35,36,209,17.20% +115177,881,3570,State-funded primary,142,65,77,45.80%,54.20%,11,7.70%,27,19.00%,0,142,0,0.00%,100.00%,0.00%,13,16,142,11.30% +115178,881,3580,State-funded primary,53,24,29,45.30%,54.70%,3,5.70%,15,28.30%,1,52,0,1.90%,98.10%,0.00%,6,8,53,15.10% +115179,881,3592,State-funded primary,302,145,157,48.00%,52.00%,15,5.00%,43,14.20%,37,265,0,12.30%,87.70%,0.00%,48,50,302,16.60% +115182,881,3610,State-funded primary,111,57,54,51.40%,48.60%,0,0.00%,11,9.90%,4,106,1,3.60%,95.50%,0.90%,1,2,111,1.80% +115183,881,3612,State-funded primary,207,95,112,45.90%,54.10%,2,1.00%,9,4.30%,15,192,0,7.20%,92.80%,0.00%,18,18,207,8.70% +115184,881,3622,State-funded primary,215,106,109,49.30%,50.70%,11,5.10%,23,10.70%,27,188,0,12.60%,87.40%,0.00%,43,43,215,20.00% +115188,881,3670,State-funded primary,175,91,84,52.00%,48.00%,4,2.30%,19,10.90%,7,165,3,4.00%,94.30%,1.70%,13,18,175,10.30% +115189,881,3700,State-funded primary,41,17,24,41.50%,58.50%,3,7.30%,6,14.60%,2,39,0,4.90%,95.10%,0.00%,6,6,41,14.60% +115191,881,3730,State-funded primary,132,68,64,51.50%,48.50%,3,2.30%,13,9.80%,2,130,0,1.50%,98.50%,0.00%,10,10,132,7.60% +115193,881,3780,State-funded primary,191,99,92,51.80%,48.20%,4,2.10%,24,12.60%,6,183,2,3.10%,95.80%,1.00%,18,23,191,12.00% +115194,881,3790,State-funded primary,210,99,111,47.10%,52.90%,2,1.00%,15,7.10%,68,142,0,32.40%,67.60%,0.00%,16,17,210,8.10% +115195,881,3795,State-funded primary,117,60,57,51.30%,48.70%,0,0.00%,5,4.30%,2,115,0,1.70%,98.30%,0.00%,3,4,117,3.40% +115197,881,3810,State-funded primary,232,116,116,50.00%,50.00%,11,4.70%,35,15.10%,16,216,0,6.90%,93.10%,0.00%,55,61,232,26.30% +115198,881,3811,State-funded primary,210,113,97,53.80%,46.20%,7,3.30%,20,9.50%,12,198,0,5.70%,94.30%,0.00%,32,32,210,15.20% +115200,881,3814,State-funded primary,186,103,83,55.40%,44.60%,6,3.20%,14,7.50%,3,183,0,1.60%,98.40%,0.00%,20,24,186,12.90% +115201,881,3815,State-funded primary,180,77,103,42.80%,57.20%,6,3.30%,30,16.70%,9,170,1,5.00%,94.40%,0.60%,21,21,180,11.70% +115202,881,3820,State-funded primary,107,61,46,57.00%,43.00%,1,0.90%,12,11.20%,3,104,0,2.80%,97.20%,0.00%,7,8,107,7.50% +115203,881,3822,State-funded primary,191,85,106,44.50%,55.50%,4,2.10%,32,16.80%,5,185,1,2.60%,96.90%,0.50%,63,65,191,34.00% +115204,881,3823,State-funded primary,437,209,228,47.80%,52.20%,17,3.90%,56,12.80%,52,385,0,11.90%,88.10%,0.00%,52,54,437,12.40% +115237,881,4680,State-funded secondary,761,392,369,51.50%,48.50%,28,3.70%,75,9.90%,135,624,2,17.70%,82.00%,0.30%,225,257,761,33.80% +115238,881,4701,State-funded secondary,1197,583,614,48.70%,51.30%,24,2.00%,159,13.30%,136,907,154,11.40%,75.80%,12.90%,161,175,966,18.10% +115239,883,4733,State-funded secondary,642,642,0,100.00%,0.00%,7,1.10%,49,7.60%,162,478,2,25.20%,74.50%,0.30%,125,150,642,23.40% +115240,881,5200,State-funded primary,406,199,207,49.00%,51.00%,9,2.20%,30,7.40%,7,391,8,1.70%,96.30%,2.00%,45,46,406,11.30% +115244,881,5204,State-funded primary,428,207,221,48.40%,51.60%,11,2.60%,37,8.60%,7,421,0,1.60%,98.40%,0.00%,46,56,428,13.10% +115256,881,5216,State-funded primary,404,205,199,50.70%,49.30%,11,2.70%,66,16.30%,9,395,0,2.20%,97.80%,0.00%,93,107,404,26.50% +115260,881,5220,State-funded primary,211,98,113,46.40%,53.60%,4,1.90%,32,15.20%,13,197,1,6.20%,93.40%,0.50%,30,31,211,14.70% +115261,881,5221,State-funded primary,251,124,127,49.40%,50.60%,1,0.40%,28,11.20%,24,227,0,9.60%,90.40%,0.00%,16,22,251,8.80% +115264,881,5224,State-funded primary,218,100,118,45.90%,54.10%,9,4.10%,19,8.70%,5,211,2,2.30%,96.80%,0.90%,18,18,201,9.00% +115266,881,5226,State-funded primary,295,143,152,48.50%,51.50%,6,2.00%,19,6.40%,10,285,0,3.40%,96.60%,0.00%,40,41,295,13.90% +115268,881,5228,State-funded primary,454,223,231,49.10%,50.90%,12,2.60%,44,9.70%,142,312,0,31.30%,68.70%,0.00%,51,66,418,15.80% +115269,881,5229,State-funded primary,275,133,142,48.40%,51.60%,6,2.20%,16,5.80%,32,243,0,11.60%,88.40%,0.00%,59,64,275,23.30% +115276,881,5236,State-funded primary,364,179,185,49.20%,50.80%,8,2.20%,19,5.20%,14,350,0,3.80%,96.20%,0.00%,13,13,364,3.60% +115281,881,5241,State-funded primary,357,185,172,51.80%,48.20%,11,3.10%,34,9.50%,48,309,0,13.40%,86.60%,0.00%,99,108,357,30.30% +115282,881,5242,State-funded primary,458,217,241,47.40%,52.60%,12,2.60%,36,7.90%,106,352,0,23.10%,76.90%,0.00%,114,124,426,29.10% +115288,881,5248,State-funded primary,260,130,130,50.00%,50.00%,8,3.10%,15,5.80%,7,253,0,2.70%,97.30%,0.00%,29,36,260,13.80% +115289,881,5249,State-funded primary,316,165,151,52.20%,47.80%,6,1.90%,42,13.30%,61,255,0,19.30%,80.70%,0.00%,20,28,316,8.90% +115292,881,5252,State-funded primary,379,177,202,46.70%,53.30%,7,1.80%,43,11.30%,29,350,0,7.70%,92.30%,0.00%,63,67,379,17.70% +115297,881,5257,State-funded primary,252,129,123,51.20%,48.80%,5,2.00%,32,12.70%,17,235,0,6.70%,93.30%,0.00%,11,11,252,4.40% +115298,881,5258,State-funded primary,421,197,224,46.80%,53.20%,7,1.70%,27,6.40%,17,404,0,4.00%,96.00%,0.00%,34,35,421,8.30% +115299,881,5259,State-funded primary,470,217,253,46.20%,53.80%,6,1.30%,46,9.80%,27,443,0,5.70%,94.30%,0.00%,80,84,470,17.90% +115300,881,5260,State-funded primary,196,97,99,49.50%,50.50%,6,3.10%,42,21.40%,11,185,0,5.60%,94.40%,0.00%,80,86,196,43.90% +115301,881,5261,State-funded primary,453,233,220,51.40%,48.60%,11,2.40%,61,13.50%,12,441,0,2.60%,97.40%,0.00%,103,110,413,26.60% +115305,881,5265,State-funded primary,256,114,142,44.50%,55.50%,3,1.20%,34,13.30%,2,254,0,0.80%,99.20%,0.00%,40,42,256,16.40% +115307,881,5267,State-funded primary,233,109,124,46.80%,53.20%,3,1.30%,14,6.00%,30,203,0,12.90%,87.10%,0.00%,24,24,233,10.30% +115309,881,5269,State-funded primary,486,251,235,51.60%,48.40%,5,1.00%,56,11.50%,106,380,0,21.80%,78.20%,0.00%,134,134,408,32.80% +115310,881,5270,State-funded primary,230,116,114,50.40%,49.60%,4,1.70%,49,21.30%,28,193,9,12.20%,83.90%,3.90%,76,76,230,33.00% +115311,881,5271,State-funded primary,402,175,227,43.50%,56.50%,12,3.00%,55,13.70%,6,396,0,1.50%,98.50%,0.00%,64,68,373,18.20% +115312,881,5272,State-funded primary,407,192,215,47.20%,52.80%,4,1.00%,44,10.80%,8,399,0,2.00%,98.00%,0.00%,66,66,407,16.20% +115313,882,5273,State-funded primary,706,360,346,51.00%,49.00%,21,3.00%,95,13.50%,217,484,5,30.70%,68.60%,0.70%,298,302,629,48.00% +115314,881,5274,State-funded primary,317,149,168,47.00%,53.00%,5,1.60%,38,12.00%,11,306,0,3.50%,96.50%,0.00%,69,71,288,24.70% +115322,881,5406,State-funded secondary,1416,661,755,46.70%,53.30%,36,2.50%,155,10.90%,41,1366,9,2.90%,96.50%,0.60%,143,194,1220,15.90% +115382,881,5466,State-funded secondary,887,419,468,47.20%,52.80%,21,2.40%,148,16.70%,131,715,41,14.80%,80.60%,4.60%,91,126,887,14.20% +115386,881,6000,Independent school,155,147,8,94.80%,5.20%,0,0.00%,20,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115387,881,6001,Independent school,1327,668,659,50.30%,49.70%,1,0.10%,119,9.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115388,881,6002,Independent school,137,84,53,61.30%,38.70%,0,0.00%,17,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115389,881,6003,Independent school,357,175,182,49.00%,51.00%,0,0.00%,7,2.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115391,881,6005,Independent school,233,103,130,44.20%,55.80%,0,0.00%,20,8.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115392,881,6006,Independent school,1053,488,565,46.30%,53.70%,3,0.30%,131,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115393,881,6007,Independent school,158,0,158,0.00%,100.00%,0,0.00%,16,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115394,881,6008,Independent school,408,399,9,97.80%,2.20%,0,0.00%,79,19.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115395,881,6009,Independent school,1037,496,541,47.80%,52.20%,0,0.00%,189,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115396,881,6010,Independent school,333,142,191,42.60%,57.40%,2,0.60%,64,19.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115399,881,6013,Independent school,292,137,155,46.90%,53.10%,0,0.00%,66,22.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115400,881,6014,Independent school,120,75,45,62.50%,37.50%,0,0.00%,6,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115401,882,6000,Independent school,247,125,122,50.60%,49.40%,0,0.00%,18,7.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115402,882,6001,Independent school,457,227,230,49.70%,50.30%,5,1.10%,67,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115403,882,6002,Independent school,285,141,144,49.50%,50.50%,3,1.10%,18,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115408,882,6007,Independent school,125,56,69,44.80%,55.20%,0,0.00%,16,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115409,881,6015,Independent school,299,93,206,31.10%,68.90%,1,0.30%,38,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115410,881,6016,Independent school,346,137,209,39.60%,60.40%,2,0.60%,25,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115411,881,6017,Independent school,196,107,89,54.60%,45.40%,0,0.00%,25,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115412,881,6018,Independent school,98,53,45,54.10%,45.90%,0,0.00%,5,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115413,881,6019,Independent school,310,138,172,44.50%,55.50%,0,0.00%,69,22.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115415,881,6021,Independent school,128,65,63,50.80%,49.20%,0,0.00%,6,4.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115416,881,6022,Independent school,202,86,116,42.60%,57.40%,1,0.50%,15,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115417,881,6023,Independent school,510,236,274,46.30%,53.70%,0,0.00%,91,17.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115419,881,6025,Independent school,246,141,105,57.30%,42.70%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115420,881,6026,Independent school,91,44,47,48.40%,51.60%,1,1.10%,8,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115421,881,6027,Independent school,159,78,81,49.10%,50.90%,0,0.00%,14,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115424,881,6030,Independent school,145,75,70,51.70%,48.30%,0,0.00%,12,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115425,881,6031,Independent school,42,5,37,11.90%,88.10%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115426,881,6032,Independent school,64,8,56,12.50%,87.50%,64,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115428,881,6034,Independent school,164,88,76,53.70%,46.30%,0,0.00%,18,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115429,881,6035,Independent school,1946,862,1084,44.30%,55.70%,0,0.00%,308,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115433,881,6038,Independent school,173,73,100,42.20%,57.80%,3,1.70%,30,17.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115435,881,6040,Independent school,270,135,135,50.00%,50.00%,1,0.40%,32,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115436,881,6041,Independent school,37,19,18,51.40%,48.60%,1,2.70%,12,32.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115437,881,6042,Independent school,124,48,76,38.70%,61.30%,1,0.80%,1,0.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115457,881,7036,State-funded special school,169,57,112,33.70%,66.30%,168,99.40%,1,0.60%,2,167,0,1.20%,98.80%,0.00%,54,62,169,36.70% +115464,881,7048,State-funded special school,244,51,193,20.90%,79.10%,242,99.20%,2,0.80%,7,237,0,2.90%,97.10%,0.00%,92,79,197,40.10% +115466,881,7050,Non-maintained special school,99,25,74,25.30%,74.70%,99,100.00%,0,0.00%,20,79,0,20.20%,79.80%,0.00%,47,42,75,56.00% +115469,881,7054,State-funded special school,223,61,162,27.40%,72.60%,223,100.00%,0,0.00%,8,215,0,3.60%,96.40%,0.00%,67,64,197,32.50% +115471,881,7060,State-funded special school,153,63,90,41.20%,58.80%,153,100.00%,0,0.00%,6,147,0,3.90%,96.10%,0.00%,76,72,127,56.70% +115475,881,7069,State-funded special school,278,99,179,35.60%,64.40%,278,100.00%,0,0.00%,25,253,0,9.00%,91.00%,0.00%,149,140,250,56.00% +115481,916,2000,State-funded primary,363,206,157,56.70%,43.30%,4,1.10%,87,24.00%,249,102,12,68.60%,28.10%,3.30%,151,158,363,43.50% +115482,916,2002,State-funded primary,307,148,159,48.20%,51.80%,7,2.30%,79,25.70%,125,179,3,40.70%,58.30%,1.00%,164,167,307,54.40% +115483,916,2004,State-funded primary,419,201,218,48.00%,52.00%,11,2.60%,71,16.90%,62,352,5,14.80%,84.00%,1.20%,109,112,419,26.70% +115484,916,2005,State-funded primary,134,69,65,51.50%,48.50%,3,2.20%,26,19.40%,75,58,1,56.00%,43.30%,0.70%,50,51,134,38.10% +115486,916,2008,State-funded primary,525,261,264,49.70%,50.30%,9,1.70%,74,14.10%,100,420,5,19.00%,80.00%,1.00%,114,120,525,22.90% +115487,916,2013,State-funded primary,625,299,326,47.80%,52.20%,16,2.60%,67,10.70%,100,521,4,16.00%,83.40%,0.60%,88,90,625,14.40% +115491,916,2025,State-funded primary,258,120,138,46.50%,53.50%,1,0.40%,47,18.20%,17,236,5,6.60%,91.50%,1.90%,46,46,258,17.80% +115492,916,2026,State-funded primary,352,184,168,52.30%,47.70%,7,2.00%,72,20.50%,28,324,0,8.00%,92.00%,0.00%,80,88,352,25.00% +115494,916,2028,State-funded primary,214,118,96,55.10%,44.90%,6,2.80%,31,14.50%,13,201,0,6.10%,93.90%,0.00%,27,28,214,13.10% +115495,916,2030,State-funded primary,361,180,181,49.90%,50.10%,13,3.60%,55,15.20%,24,335,2,6.60%,92.80%,0.60%,45,46,361,12.70% +115496,916,2031,State-funded primary,479,225,254,47.00%,53.00%,10,2.10%,66,13.80%,25,453,1,5.20%,94.60%,0.20%,54,55,479,11.50% +115498,916,2033,State-funded primary,360,175,185,48.60%,51.40%,2,0.60%,26,7.20%,30,328,2,8.30%,91.10%,0.60%,21,22,360,6.10% +115499,916,2034,State-funded primary,269,125,144,46.50%,53.50%,4,1.50%,32,11.90%,6,262,1,2.20%,97.40%,0.40%,15,15,269,5.60% +115500,916,2040,State-funded primary,138,61,77,44.20%,55.80%,3,2.20%,19,13.80%,20,118,0,14.50%,85.50%,0.00%,22,23,138,16.70% +115501,916,2041,State-funded primary,110,46,64,41.80%,58.20%,3,2.70%,29,26.40%,3,107,0,2.70%,97.30%,0.00%,13,14,110,12.70% +115502,916,2042,State-funded primary,101,49,52,48.50%,51.50%,4,4.00%,28,27.70%,2,99,0,2.00%,98.00%,0.00%,19,19,101,18.80% +115504,916,2044,State-funded primary,60,36,24,60.00%,40.00%,0,0.00%,11,18.30%,5,55,0,8.30%,91.70%,0.00%,10,10,60,16.70% +115505,916,2045,State-funded primary,76,44,32,57.90%,42.10%,1,1.30%,15,19.70%,4,72,0,5.30%,94.70%,0.00%,5,6,76,7.90% +115507,916,2047,State-funded primary,96,57,39,59.40%,40.60%,2,2.10%,12,12.50%,3,92,1,3.10%,95.80%,1.00%,8,8,96,8.30% +115509,916,2050,State-funded primary,198,86,112,43.40%,56.60%,2,1.00%,25,12.60%,3,195,0,1.50%,98.50%,0.00%,17,18,198,9.10% +115510,916,2051,State-funded primary,50,27,23,54.00%,46.00%,1,2.00%,7,14.00%,1,49,0,2.00%,98.00%,0.00%,12,13,50,26.00% +115511,916,2052,State-funded primary,141,82,59,58.20%,41.80%,6,4.30%,30,21.30%,4,137,0,2.80%,97.20%,0.00%,19,22,141,15.60% +115512,916,2053,State-funded primary,237,118,119,49.80%,50.20%,15,6.30%,39,16.50%,8,229,0,3.40%,96.60%,0.00%,21,21,237,8.90% +115515,916,2056,State-funded primary,101,46,55,45.50%,54.50%,2,2.00%,14,13.90%,6,95,0,5.90%,94.10%,0.00%,13,13,101,12.90% +115519,916,2064,State-funded primary,100,48,52,48.00%,52.00%,4,4.00%,15,15.00%,0,100,0,0.00%,100.00%,0.00%,8,8,100,8.00% +115520,916,2065,State-funded primary,273,127,146,46.50%,53.50%,7,2.60%,45,16.50%,7,266,0,2.60%,97.40%,0.00%,61,63,273,23.10% +115521,916,2066,State-funded primary,64,36,28,56.30%,43.80%,4,6.30%,15,23.40%,0,64,0,0.00%,100.00%,0.00%,11,11,64,17.20% +115522,916,2067,State-funded primary,118,65,53,55.10%,44.90%,2,1.70%,21,17.80%,3,115,0,2.50%,97.50%,0.00%,17,19,118,16.10% +115523,916,2068,State-funded primary,139,65,74,46.80%,53.20%,0,0.00%,15,10.80%,1,135,3,0.70%,97.10%,2.20%,8,9,139,6.50% +115525,916,2070,State-funded primary,246,116,130,47.20%,52.80%,13,5.30%,36,14.60%,17,229,0,6.90%,93.10%,0.00%,26,27,246,11.00% +115526,916,2072,State-funded primary,114,54,60,47.40%,52.60%,5,4.40%,13,11.40%,7,107,0,6.10%,93.90%,0.00%,9,10,114,8.80% +115529,916,2075,State-funded primary,99,53,46,53.50%,46.50%,1,1.00%,16,16.20%,0,99,0,0.00%,100.00%,0.00%,13,13,99,13.10% +115531,916,2077,State-funded primary,103,49,54,47.60%,52.40%,6,5.80%,21,20.40%,1,102,0,1.00%,99.00%,0.00%,21,24,103,23.30% +115533,916,2081,State-funded primary,198,90,108,45.50%,54.50%,2,1.00%,17,8.60%,2,196,0,1.00%,99.00%,0.00%,34,35,198,17.70% +115534,916,2084,State-funded primary,71,39,32,54.90%,45.10%,0,0.00%,9,12.70%,7,64,0,9.90%,90.10%,0.00%,4,4,71,5.60% +115535,916,2085,State-funded primary,59,30,29,50.80%,49.20%,1,1.70%,9,15.30%,0,59,0,0.00%,100.00%,0.00%,4,4,59,6.80% +115536,916,2086,State-funded primary,131,48,83,36.60%,63.40%,7,5.30%,28,21.40%,1,130,0,0.80%,99.20%,0.00%,27,29,131,22.10% +115539,916,2090,State-funded primary,207,102,105,49.30%,50.70%,9,4.30%,52,25.10%,6,201,0,2.90%,97.10%,0.00%,77,82,207,39.60% +115540,916,2091,State-funded primary,102,51,51,50.00%,50.00%,2,2.00%,16,15.70%,2,100,0,2.00%,98.00%,0.00%,15,16,102,15.70% +115541,916,2094,State-funded primary,257,128,129,49.80%,50.20%,6,2.30%,36,14.00%,15,242,0,5.80%,94.20%,0.00%,74,77,257,30.00% +115543,916,2097,State-funded primary,106,55,51,51.90%,48.10%,2,1.90%,12,11.30%,2,104,0,1.90%,98.10%,0.00%,22,22,106,20.80% +115544,916,2098,State-funded primary,138,69,69,50.00%,50.00%,8,5.80%,32,23.20%,1,137,0,0.70%,99.30%,0.00%,19,19,138,13.80% +115545,916,2099,State-funded primary,120,69,51,57.50%,42.50%,5,4.20%,18,15.00%,0,120,0,0.00%,100.00%,0.00%,15,15,120,12.50% +115547,916,2101,State-funded primary,128,63,65,49.20%,50.80%,3,2.30%,13,10.20%,4,124,0,3.10%,96.90%,0.00%,13,14,128,10.90% +115548,916,2102,State-funded primary,48,26,22,54.20%,45.80%,1,2.10%,16,33.30%,1,46,1,2.10%,95.80%,2.10%,10,10,48,20.80% +115549,916,2103,State-funded primary,195,90,105,46.20%,53.80%,1,0.50%,29,14.90%,4,190,1,2.10%,97.40%,0.50%,38,39,195,20.00% +115550,916,2105,State-funded primary,221,116,105,52.50%,47.50%,7,3.20%,38,17.20%,2,219,0,0.90%,99.10%,0.00%,53,56,221,25.30% +115551,916,2106,State-funded primary,143,74,69,51.70%,48.30%,1,0.70%,30,21.00%,2,141,0,1.40%,98.60%,0.00%,40,40,143,28.00% +115552,916,2107,State-funded primary,138,67,71,48.60%,51.40%,5,3.60%,26,18.80%,0,138,0,0.00%,100.00%,0.00%,26,27,138,19.60% +115553,916,2108,State-funded primary,55,34,21,61.80%,38.20%,0,0.00%,12,21.80%,0,55,0,0.00%,100.00%,0.00%,15,16,55,29.10% +115554,916,2109,State-funded primary,89,41,48,46.10%,53.90%,4,4.50%,17,19.10%,1,88,0,1.10%,98.90%,0.00%,10,11,89,12.40% +115555,916,2110,State-funded primary,159,92,67,57.90%,42.10%,4,2.50%,22,13.80%,3,156,0,1.90%,98.10%,0.00%,33,34,159,21.40% +115559,916,2114,State-funded primary,136,64,72,47.10%,52.90%,5,3.70%,18,13.20%,4,132,0,2.90%,97.10%,0.00%,15,25,136,18.40% +115560,916,2116,State-funded primary,167,84,83,50.30%,49.70%,13,7.80%,34,20.40%,11,156,0,6.60%,93.40%,0.00%,82,83,167,49.70% +115561,916,2117,State-funded primary,195,92,103,47.20%,52.80%,12,6.20%,38,19.50%,10,181,4,5.10%,92.80%,2.10%,63,63,195,32.30% +115562,916,2118,State-funded primary,174,89,85,51.10%,48.90%,5,2.90%,37,21.30%,67,107,0,38.50%,61.50%,0.00%,44,45,174,25.90% +115563,916,2119,State-funded primary,111,59,52,53.20%,46.80%,2,1.80%,19,17.10%,11,100,0,9.90%,90.10%,0.00%,13,13,111,11.70% +115564,916,2122,State-funded primary,232,108,124,46.60%,53.40%,13,5.60%,74,31.90%,10,222,0,4.30%,95.70%,0.00%,46,48,232,20.70% +115565,916,2123,State-funded primary,205,104,101,50.70%,49.30%,3,1.50%,34,16.60%,9,196,0,4.40%,95.60%,0.00%,13,13,205,6.30% +115568,916,2130,State-funded primary,130,65,65,50.00%,50.00%,2,1.50%,11,8.50%,4,125,1,3.10%,96.20%,0.80%,18,18,130,13.80% +115569,916,2132,State-funded primary,209,98,111,46.90%,53.10%,7,3.30%,33,15.80%,11,198,0,5.30%,94.70%,0.00%,24,25,209,12.00% +115570,916,2134,State-funded primary,137,61,76,44.50%,55.50%,3,2.20%,20,14.60%,9,128,0,6.60%,93.40%,0.00%,32,36,137,26.30% +115572,916,2136,State-funded primary,262,135,127,51.50%,48.50%,1,0.40%,44,16.80%,6,256,0,2.30%,97.70%,0.00%,35,36,262,13.70% +115573,916,2137,State-funded primary,186,88,98,47.30%,52.70%,17,9.10%,19,10.20%,3,180,3,1.60%,96.80%,1.60%,15,16,186,8.60% +115574,916,2138,State-funded primary,142,59,83,41.50%,58.50%,3,2.10%,27,19.00%,8,134,0,5.60%,94.40%,0.00%,38,38,142,26.80% +115576,916,2141,State-funded primary,416,194,222,46.60%,53.40%,7,1.70%,68,16.30%,17,399,0,4.10%,95.90%,0.00%,58,60,416,14.40% +115577,916,2142,State-funded primary,207,98,109,47.30%,52.70%,12,5.80%,21,10.10%,15,192,0,7.20%,92.80%,0.00%,24,24,207,11.60% +115578,916,2143,State-funded primary,211,116,95,55.00%,45.00%,8,3.80%,23,10.90%,8,200,3,3.80%,94.80%,1.40%,64,67,211,31.80% +115580,916,2145,State-funded primary,109,50,59,45.90%,54.10%,4,3.70%,18,16.50%,42,67,0,38.50%,61.50%,0.00%,12,12,109,11.00% +115581,916,2146,State-funded primary,117,50,67,42.70%,57.30%,2,1.70%,29,24.80%,10,107,0,8.50%,91.50%,0.00%,27,28,117,23.90% +115582,916,2147,State-funded primary,421,215,206,51.10%,48.90%,10,2.40%,64,15.20%,68,352,1,16.20%,83.60%,0.20%,64,66,421,15.70% +115585,916,2150,State-funded primary,200,96,104,48.00%,52.00%,14,7.00%,58,29.00%,76,124,0,38.00%,62.00%,0.00%,42,48,200,24.00% +115586,916,2151,State-funded primary,228,109,119,47.80%,52.20%,4,1.80%,24,10.50%,28,200,0,12.30%,87.70%,0.00%,39,42,228,18.40% +115590,916,2155,State-funded primary,416,191,225,45.90%,54.10%,11,2.60%,34,8.20%,24,367,25,5.80%,88.20%,6.00%,21,24,416,5.80% +115594,916,2160,State-funded primary,553,270,283,48.80%,51.20%,9,1.60%,76,13.70%,46,504,3,8.30%,91.10%,0.50%,101,104,553,18.80% +115598,916,2165,State-funded primary,179,78,101,43.60%,56.40%,8,4.50%,21,11.70%,15,164,0,8.40%,91.60%,0.00%,13,14,179,7.80% +115600,916,2171,State-funded primary,378,189,189,50.00%,50.00%,12,3.20%,65,17.20%,39,339,0,10.30%,89.70%,0.00%,53,58,378,15.30% +115601,916,2172,State-funded primary,449,201,248,44.80%,55.20%,11,2.40%,70,15.60%,25,421,3,5.60%,93.80%,0.70%,62,66,449,14.70% +115603,916,2175,State-funded primary,241,112,129,46.50%,53.50%,9,3.70%,86,35.70%,34,207,0,14.10%,85.90%,0.00%,85,87,241,36.10% +115605,916,3004,State-funded primary,203,97,106,47.80%,52.20%,8,3.90%,47,23.20%,97,104,2,47.80%,51.20%,1.00%,84,86,203,42.40% +115606,916,3006,State-funded primary,165,76,89,46.10%,53.90%,2,1.20%,44,26.70%,88,77,0,53.30%,46.70%,0.00%,85,87,165,52.70% +115607,916,3010,State-funded primary,627,322,305,51.40%,48.60%,13,2.10%,77,12.30%,154,471,2,24.60%,75.10%,0.30%,213,217,627,34.60% +115608,916,3011,State-funded primary,208,93,115,44.70%,55.30%,6,2.90%,32,15.40%,20,187,1,9.60%,89.90%,0.50%,37,37,208,17.80% +115612,916,3020,State-funded primary,66,32,34,48.50%,51.50%,3,4.50%,15,22.70%,4,62,0,6.10%,93.90%,0.00%,13,13,66,19.70% +115615,916,3025,State-funded primary,197,106,91,53.80%,46.20%,9,4.60%,18,9.10%,7,187,3,3.60%,94.90%,1.50%,9,11,197,5.60% +115617,916,3027,State-funded primary,64,32,32,50.00%,50.00%,1,1.60%,11,17.20%,5,58,1,7.80%,90.60%,1.60%,2,2,64,3.10% +115619,916,3030,State-funded primary,72,36,36,50.00%,50.00%,0,0.00%,8,11.10%,4,68,0,5.60%,94.40%,0.00%,2,2,72,2.80% +115622,916,3035,State-funded primary,315,143,172,45.40%,54.60%,4,1.30%,35,11.10%,21,284,10,6.70%,90.20%,3.20%,45,48,315,15.20% +115626,916,3039,State-funded primary,101,56,45,55.40%,44.60%,5,5.00%,16,15.80%,4,96,1,4.00%,95.00%,1.00%,4,6,101,5.90% +115628,916,3041,State-funded primary,80,39,41,48.80%,51.30%,1,1.30%,8,10.00%,0,80,0,0.00%,100.00%,0.00%,8,8,80,10.00% +115629,916,3042,State-funded primary,79,33,46,41.80%,58.20%,3,3.80%,25,31.60%,0,79,0,0.00%,100.00%,0.00%,9,9,79,11.40% +115631,916,3044,State-funded primary,93,44,49,47.30%,52.70%,8,8.60%,22,23.70%,2,91,0,2.20%,97.80%,0.00%,27,27,93,29.00% +115636,916,3050,State-funded primary,93,51,42,54.80%,45.20%,0,0.00%,6,6.50%,0,93,0,0.00%,100.00%,0.00%,6,6,93,6.50% +115637,916,3052,State-funded primary,200,96,104,48.00%,52.00%,9,4.50%,25,12.50%,16,184,0,8.00%,92.00%,0.00%,36,36,200,18.00% +115638,916,3053,State-funded primary,56,30,26,53.60%,46.40%,2,3.60%,13,23.20%,4,52,0,7.10%,92.90%,0.00%,13,13,56,23.20% +115639,916,3054,State-funded primary,25,11,14,44.00%,56.00%,0,0.00%,5,20.00%,0,25,0,0.00%,100.00%,0.00%,2,4,25,16.00% +115641,916,3056,State-funded primary,116,59,57,50.90%,49.10%,2,1.70%,7,6.00%,4,112,0,3.40%,96.60%,0.00%,21,24,116,20.70% +115642,916,3057,State-funded primary,152,76,76,50.00%,50.00%,3,2.00%,13,8.60%,1,151,0,0.70%,99.30%,0.00%,11,12,152,7.90% +115643,916,3060,State-funded primary,31,20,11,64.50%,35.50%,0,0.00%,4,12.90%,1,30,0,3.20%,96.80%,0.00%,4,5,31,16.10% +115645,916,3063,State-funded primary,87,47,40,54.00%,46.00%,2,2.30%,19,21.80%,5,82,0,5.70%,94.30%,0.00%,12,12,87,13.80% +115647,916,3065,State-funded primary,85,46,39,54.10%,45.90%,11,12.90%,15,17.60%,0,85,0,0.00%,100.00%,0.00%,23,23,85,27.10% +115648,916,3067,State-funded primary,55,26,29,47.30%,52.70%,1,1.80%,7,12.70%,2,53,0,3.60%,96.40%,0.00%,3,3,55,5.50% +115649,916,3068,State-funded primary,197,97,100,49.20%,50.80%,4,2.00%,18,9.10%,9,184,4,4.60%,93.40%,2.00%,46,46,197,23.40% +115650,916,3069,State-funded primary,240,119,121,49.60%,50.40%,7,2.90%,41,17.10%,8,226,6,3.30%,94.20%,2.50%,29,30,240,12.50% +115651,916,3070,State-funded primary,46,28,18,60.90%,39.10%,2,4.30%,5,10.90%,2,44,0,4.30%,95.70%,0.00%,1,1,46,2.20% +115653,916,3072,State-funded primary,86,36,50,41.90%,58.10%,2,2.30%,12,14.00%,3,83,0,3.50%,96.50%,0.00%,8,8,86,9.30% +115654,916,3073,State-funded primary,261,122,139,46.70%,53.30%,8,3.10%,49,18.80%,54,207,0,20.70%,79.30%,0.00%,57,58,261,22.20% +115655,916,3074,State-funded primary,213,105,108,49.30%,50.70%,3,1.40%,21,9.90%,3,210,0,1.40%,98.60%,0.00%,12,12,213,5.60% +115657,916,3076,State-funded primary,109,63,46,57.80%,42.20%,3,2.80%,15,13.80%,2,107,0,1.80%,98.20%,0.00%,11,11,109,10.10% +115658,916,3077,State-funded primary,417,188,229,45.10%,54.90%,13,3.10%,43,10.30%,11,406,0,2.60%,97.40%,0.00%,42,42,417,10.10% +115660,916,3080,State-funded primary,110,58,52,52.70%,47.30%,3,2.70%,16,14.50%,0,109,1,0.00%,99.10%,0.90%,16,17,110,15.50% +115661,916,3081,State-funded primary,50,25,25,50.00%,50.00%,3,6.00%,6,12.00%,0,50,0,0.00%,100.00%,0.00%,25,25,50,50.00% +115663,916,3086,State-funded primary,21,7,14,33.30%,66.70%,2,9.50%,5,23.80%,1,20,0,4.80%,95.20%,0.00%,10,10,21,47.60% +115664,916,3087,State-funded primary,41,19,22,46.30%,53.70%,2,4.90%,9,22.00%,1,40,0,2.40%,97.60%,0.00%,7,7,41,17.10% +115666,916,3093,State-funded primary,208,103,105,49.50%,50.50%,6,2.90%,28,13.50%,31,177,0,14.90%,85.10%,0.00%,34,37,208,17.80% +115667,916,3094,State-funded primary,570,293,277,51.40%,48.60%,6,1.10%,33,5.80%,18,551,1,3.20%,96.70%,0.20%,15,15,570,2.60% +115669,916,3097,State-funded primary,201,88,113,43.80%,56.20%,7,3.50%,29,14.40%,56,145,0,27.90%,72.10%,0.00%,43,45,201,22.40% +115670,916,3099,State-funded primary,44,24,20,54.50%,45.50%,2,4.50%,10,22.70%,2,42,0,4.50%,95.50%,0.00%,12,12,44,27.30% +115673,916,3308,State-funded primary,93,34,59,36.60%,63.40%,2,2.20%,21,22.60%,8,85,0,8.60%,91.40%,0.00%,6,11,93,11.80% +115674,916,3310,State-funded primary,29,20,9,69.00%,31.00%,1,3.40%,10,34.50%,0,28,1,0.00%,96.60%,3.40%,3,4,29,13.80% +115675,916,3311,State-funded primary,54,26,28,48.10%,51.90%,0,0.00%,14,25.90%,3,51,0,5.60%,94.40%,0.00%,9,10,54,18.50% +115676,916,3313,State-funded primary,208,102,106,49.00%,51.00%,5,2.40%,19,9.10%,7,197,4,3.40%,94.70%,1.90%,19,21,208,10.10% +115678,916,3315,State-funded primary,193,96,97,49.70%,50.30%,3,1.60%,23,11.90%,2,191,0,1.00%,99.00%,0.00%,19,20,193,10.40% +115679,916,3316,State-funded primary,210,105,105,50.00%,50.00%,1,0.50%,17,8.10%,15,194,1,7.10%,92.40%,0.50%,10,10,210,4.80% +115680,916,3317,State-funded primary,65,20,45,30.80%,69.20%,1,1.50%,14,21.50%,0,65,0,0.00%,100.00%,0.00%,9,9,65,13.80% +115681,916,3319,State-funded primary,423,212,211,50.10%,49.90%,10,2.40%,45,10.60%,40,381,2,9.50%,90.10%,0.50%,24,24,423,5.70% +115682,916,3322,State-funded primary,54,31,23,57.40%,42.60%,4,7.40%,4,7.40%,0,52,2,0.00%,96.30%,3.70%,2,2,54,3.70% +115683,916,3323,State-funded primary,87,41,46,47.10%,52.90%,1,1.10%,13,14.90%,8,79,0,9.20%,90.80%,0.00%,13,15,87,17.20% +115685,916,3327,State-funded primary,91,35,56,38.50%,61.50%,2,2.20%,12,13.20%,2,89,0,2.20%,97.80%,0.00%,2,2,91,2.20% +115686,916,3328,State-funded primary,91,49,42,53.80%,46.20%,0,0.00%,6,6.60%,0,90,1,0.00%,98.90%,1.10%,4,4,91,4.40% +115688,916,3331,State-funded primary,194,94,100,48.50%,51.50%,9,4.60%,38,19.60%,2,191,1,1.00%,98.50%,0.50%,25,28,194,14.40% +115689,916,3334,State-funded primary,96,53,43,55.20%,44.80%,0,0.00%,4,4.20%,1,95,0,1.00%,99.00%,0.00%,7,7,96,7.30% +115690,916,3335,State-funded primary,97,49,48,50.50%,49.50%,3,3.10%,8,8.20%,3,94,0,3.10%,96.90%,0.00%,10,14,97,14.40% +115692,916,3337,State-funded primary,42,18,24,42.90%,57.10%,1,2.40%,5,11.90%,2,40,0,4.80%,95.20%,0.00%,2,3,42,7.10% +115693,916,3338,State-funded primary,201,97,104,48.30%,51.70%,7,3.50%,40,19.90%,2,199,0,1.00%,99.00%,0.00%,36,38,201,18.90% +115694,916,3340,State-funded primary,108,58,50,53.70%,46.30%,5,4.60%,14,13.00%,6,102,0,5.60%,94.40%,0.00%,9,9,108,8.30% +115695,916,3341,State-funded primary,110,54,56,49.10%,50.90%,0,0.00%,10,9.10%,0,110,0,0.00%,100.00%,0.00%,4,4,110,3.60% +115696,916,3343,State-funded primary,266,139,127,52.30%,47.70%,6,2.30%,49,18.40%,10,256,0,3.80%,96.20%,0.00%,31,32,266,12.00% +115697,916,3344,State-funded primary,138,78,60,56.50%,43.50%,2,1.40%,15,10.90%,4,133,1,2.90%,96.40%,0.70%,19,21,138,15.20% +115698,916,3345,State-funded primary,72,40,32,55.60%,44.40%,2,2.80%,14,19.40%,6,66,0,8.30%,91.70%,0.00%,12,14,72,19.40% +115700,916,3348,State-funded primary,363,179,184,49.30%,50.70%,11,3.00%,43,11.80%,23,340,0,6.30%,93.70%,0.00%,75,76,363,20.90% +115701,916,3350,State-funded primary,73,27,46,37.00%,63.00%,2,2.70%,9,12.30%,3,70,0,4.10%,95.90%,0.00%,7,7,73,9.60% +115703,916,3352,State-funded primary,33,13,20,39.40%,60.60%,1,3.00%,2,6.10%,1,32,0,3.00%,97.00%,0.00%,7,7,33,21.20% +115704,916,3353,State-funded primary,136,66,70,48.50%,51.50%,3,2.20%,13,9.60%,4,132,0,2.90%,97.10%,0.00%,8,8,136,5.90% +115705,916,3354,State-funded primary,118,65,53,55.10%,44.90%,2,1.70%,13,11.00%,9,109,0,7.60%,92.40%,0.00%,12,13,118,11.00% +115707,916,3356,State-funded primary,165,91,74,55.20%,44.80%,5,3.00%,19,11.50%,4,161,0,2.40%,97.60%,0.00%,27,28,165,17.00% +115710,916,3359,State-funded primary,217,102,115,47.00%,53.00%,6,2.80%,42,19.40%,75,141,1,34.60%,65.00%,0.50%,89,93,217,42.90% +115711,916,3360,State-funded primary,175,76,99,43.40%,56.60%,5,2.90%,12,6.90%,6,156,13,3.40%,89.10%,7.40%,21,21,175,12.00% +115712,916,3363,State-funded primary,240,128,112,53.30%,46.70%,6,2.50%,45,18.80%,14,226,0,5.80%,94.20%,0.00%,32,33,240,13.80% +115714,916,3365,State-funded primary,187,91,96,48.70%,51.30%,4,2.10%,26,13.90%,15,170,2,8.00%,90.90%,1.10%,32,32,187,17.10% +115716,916,3367,State-funded primary,36,14,22,38.90%,61.10%,1,2.80%,8,22.20%,0,36,0,0.00%,100.00%,0.00%,6,6,36,16.70% +115720,916,4012,State-funded secondary,864,457,407,52.90%,47.10%,55,6.40%,90,10.40%,69,795,0,8.00%,92.00%,0.00%,240,259,864,30.00% +115723,916,4032,State-funded secondary,901,423,478,46.90%,53.10%,25,2.80%,120,13.30%,61,837,3,6.80%,92.90%,0.30%,203,218,809,26.90% +115731,916,5201,State-funded primary,421,208,213,49.40%,50.60%,14,3.30%,72,17.10%,169,252,0,40.10%,59.90%,0.00%,67,69,421,16.40% +115733,916,5203,State-funded primary,191,95,96,49.70%,50.30%,3,1.60%,39,20.40%,31,160,0,16.20%,83.80%,0.00%,55,55,191,28.80% +115734,916,5204,State-funded primary,315,149,166,47.30%,52.70%,6,1.90%,41,13.00%,11,304,0,3.50%,96.50%,0.00%,28,30,315,9.50% +115735,916,5205,State-funded primary,73,39,34,53.40%,46.60%,1,1.40%,6,8.20%,7,66,0,9.60%,90.40%,0.00%,16,16,73,21.90% +115738,916,5208,State-funded primary,213,97,116,45.50%,54.50%,4,1.90%,34,16.00%,7,206,0,3.30%,96.70%,0.00%,26,28,213,13.10% +115739,916,5209,State-funded primary,176,96,80,54.50%,45.50%,8,4.50%,12,6.80%,3,167,6,1.70%,94.90%,3.40%,21,24,176,13.60% +115740,916,5210,State-funded primary,421,199,222,47.30%,52.70%,6,1.40%,42,10.00%,36,384,1,8.60%,91.20%,0.20%,60,61,421,14.50% +115741,916,5211,State-funded primary,138,69,69,50.00%,50.00%,3,2.20%,26,18.80%,31,107,0,22.50%,77.50%,0.00%,18,19,138,13.80% +115744,916,5214,State-funded primary,423,208,215,49.20%,50.80%,14,3.30%,61,14.40%,32,391,0,7.60%,92.40%,0.00%,78,80,423,18.90% +115749,916,5219,State-funded primary,413,190,223,46.00%,54.00%,13,3.10%,48,11.60%,32,381,0,7.70%,92.30%,0.00%,64,68,413,16.50% +115750,916,5220,State-funded primary,163,82,81,50.30%,49.70%,6,3.70%,37,22.70%,16,147,0,9.80%,90.20%,0.00%,40,48,163,29.40% +115758,916,5407,State-funded secondary,1251,629,622,50.30%,49.70%,28,2.20%,86,6.90%,54,1189,8,4.30%,95.00%,0.60%,185,187,1112,16.80% +115772,916,5421,State-funded secondary,897,453,444,50.50%,49.50%,51,5.70%,134,14.90%,100,797,0,11.10%,88.90%,0.00%,237,262,897,29.20% +115775,916,5424,State-funded secondary,717,355,362,49.50%,50.50%,49,6.80%,130,18.10%,14,701,2,2.00%,97.80%,0.30%,152,167,717,23.30% +115780,916,6003,Independent school,739,365,374,49.40%,50.60%,1,0.10%,202,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115783,916,6012,Independent school,261,119,142,45.60%,54.40%,4,1.50%,23,8.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115785,916,6014,Independent school,124,55,69,44.40%,55.60%,1,0.80%,23,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115786,916,6015,Independent school,414,198,216,47.80%,52.20%,0,0.00%,72,17.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115787,916,6017,Independent school,409,216,193,52.80%,47.20%,4,1.00%,129,31.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115788,916,6018,Independent school,621,277,344,44.60%,55.40%,4,0.60%,157,25.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115789,916,6019,Independent school,743,423,320,56.90%,43.10%,6,0.80%,168,22.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115794,916,6032,Independent school,305,147,158,48.20%,51.80%,0,0.00%,116,38.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115795,916,6033,Independent school,1165,527,638,45.20%,54.80%,0,0.00%,185,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115796,916,6034,Independent school,454,231,223,50.90%,49.10%,0,0.00%,62,13.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115797,916,6035,Independent school,502,235,267,46.80%,53.20%,0,0.00%,47,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115798,916,6036,Independent school,878,878,0,100.00%,0.00%,0,0.00%,50,5.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115799,916,6037,Independent school,76,32,44,42.10%,57.90%,0,0.00%,12,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115800,916,6038,Independent school,257,122,135,47.50%,52.50%,5,1.90%,30,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115801,916,6039,Independent school,300,140,160,46.70%,53.30%,3,1.00%,20,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115802,916,6040,Independent school,52,25,27,48.10%,51.90%,48,92.30%,4,7.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115805,916,6051,Independent school,64,35,29,54.70%,45.30%,0,0.00%,14,21.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115808,916,6068,Independent school,65,42,23,64.60%,35.40%,0,0.00%,17,26.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115809,916,6072,Independent school,44,20,24,45.50%,54.50%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115810,916,6073,Independent school,75,75,0,100.00%,0.00%,0,0.00%,1,1.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +115813,916,7006,Non-maintained special school,69,30,39,43.50%,56.50%,40,58.00%,11,15.90%,3,66,0,4.30%,95.70%,0.00%,12,13,31,41.90% +115821,916,7015,State-funded special school,162,60,102,37.00%,63.00%,162,100.00%,0,0.00%,16,145,1,9.90%,89.50%,0.60%,52,46,128,35.90% +115823,916,7017,State-funded special school,130,38,92,29.20%,70.80%,130,100.00%,0,0.00%,8,122,0,6.20%,93.80%,0.00%,51,52,104,50.00% +115825,916,7019,State-funded special school,221,57,164,25.80%,74.20%,221,100.00%,0,0.00%,4,217,0,1.80%,98.20%,0.00%,64,62,198,31.30% +115830,850,1001,State-funded nursery,119,50,69,42.00%,58.00%,0,0.00%,34,28.60%,3,116,0,2.50%,97.50%,0.00%,0,0,0,0.00% +115831,852,1002,State-funded nursery,104,53,51,51.00%,49.00%,0,0.00%,8,7.70%,35,69,0,33.70%,66.30%,0.00%,0,0,0,0.00% +115836,850,1103,State-funded AP school,26,6,20,23.10%,76.90%,5,19.20%,21,80.80%,1,25,0,3.80%,96.20%,0.00%,14,14,26,53.80% +115837,850,1104,State-funded AP school,15,1,14,6.70%,93.30%,6,40.00%,9,60.00%,0,15,0,0.00%,100.00%,0.00%,7,7,15,46.70% +115838,850,1105,State-funded AP school,6,1,5,16.70%,83.30%,0,0.00%,6,100.00%,0,6,0,0.00%,100.00%,0.00%,3,3,6,50.00% +115847,850,1115,State-funded AP school,16,6,10,37.50%,62.50%,4,25.00%,12,75.00%,0,16,0,0.00%,100.00%,0.00%,5,8,16,50.00% +115850,850,2000,State-funded primary,147,71,76,48.30%,51.70%,2,1.40%,21,14.30%,11,136,0,7.50%,92.50%,0.00%,38,38,147,25.90% +115851,850,2001,State-funded primary,226,106,120,46.90%,53.10%,7,3.10%,61,27.00%,17,209,0,7.50%,92.50%,0.00%,85,86,226,38.10% +115852,850,2002,State-funded primary,350,180,170,51.40%,48.60%,8,2.30%,31,8.90%,39,311,0,11.10%,88.90%,0.00%,51,54,350,15.40% +115853,850,2003,State-funded primary,405,183,222,45.20%,54.80%,18,4.40%,37,9.10%,41,364,0,10.10%,89.90%,0.00%,71,77,405,19.00% +115854,850,2004,State-funded primary,246,116,130,47.20%,52.80%,8,3.30%,37,15.00%,17,228,1,6.90%,92.70%,0.40%,38,39,246,15.90% +115855,850,2005,State-funded primary,194,96,98,49.50%,50.50%,25,12.90%,27,13.90%,23,171,0,11.90%,88.10%,0.00%,57,57,194,29.40% +115857,850,2007,State-funded primary,272,139,133,51.10%,48.90%,12,4.40%,16,5.90%,26,246,0,9.60%,90.40%,0.00%,25,28,272,10.30% +115858,850,2008,State-funded primary,195,95,100,48.70%,51.30%,16,8.20%,20,10.30%,45,150,0,23.10%,76.90%,0.00%,57,58,195,29.70% +115859,850,2012,State-funded primary,332,157,175,47.30%,52.70%,13,3.90%,82,24.70%,95,237,0,28.60%,71.40%,0.00%,44,45,263,17.10% +115860,850,2013,State-funded primary,261,123,138,47.10%,52.90%,41,15.70%,48,18.40%,65,196,0,24.90%,75.10%,0.00%,104,106,261,40.60% +115861,850,2014,State-funded primary,120,61,59,50.80%,49.20%,8,6.70%,10,8.30%,2,118,0,1.70%,98.30%,0.00%,17,17,120,14.20% +115862,850,2018,State-funded primary,247,106,141,42.90%,57.10%,17,6.90%,39,15.80%,12,235,0,4.90%,95.10%,0.00%,44,44,247,17.80% +115863,850,2019,State-funded primary,195,101,94,51.80%,48.20%,5,2.60%,18,9.20%,2,193,0,1.00%,99.00%,0.00%,24,24,195,12.30% +115865,850,2022,State-funded primary,181,86,95,47.50%,52.50%,6,3.30%,20,11.00%,23,158,0,12.70%,87.30%,0.00%,23,23,181,12.70% +115866,850,2023,State-funded primary,102,42,60,41.20%,58.80%,3,2.90%,11,10.80%,0,102,0,0.00%,100.00%,0.00%,12,12,102,11.80% +115867,850,2025,State-funded primary,92,47,45,51.10%,48.90%,1,1.10%,15,16.30%,4,88,0,4.30%,95.70%,0.00%,4,4,92,4.30% +115868,850,2026,State-funded primary,111,60,51,54.10%,45.90%,12,10.80%,13,11.70%,2,109,0,1.80%,98.20%,0.00%,10,10,111,9.00% +115869,850,2027,State-funded primary,97,49,48,50.50%,49.50%,0,0.00%,14,14.40%,10,87,0,10.30%,89.70%,0.00%,28,30,97,30.90% +115870,850,2028,State-funded primary,97,39,58,40.20%,59.80%,4,4.10%,28,28.90%,2,95,0,2.10%,97.90%,0.00%,15,16,97,16.50% +115871,850,2030,State-funded primary,359,182,177,50.70%,49.30%,15,4.20%,41,11.40%,16,343,0,4.50%,95.50%,0.00%,96,102,359,28.40% +115872,850,2033,State-funded primary,179,84,95,46.90%,53.10%,5,2.80%,17,9.50%,18,161,0,10.10%,89.90%,0.00%,11,11,179,6.10% +115873,850,2034,State-funded primary,254,112,142,44.10%,55.90%,8,3.10%,34,13.40%,31,223,0,12.20%,87.80%,0.00%,24,25,254,9.80% +115874,850,2035,State-funded primary,89,46,43,51.70%,48.30%,4,4.50%,15,16.90%,0,89,0,0.00%,100.00%,0.00%,9,10,89,11.20% +115875,850,2036,State-funded primary,299,145,154,48.50%,51.50%,8,2.70%,21,7.00%,19,280,0,6.40%,93.60%,0.00%,30,30,252,11.90% +115876,850,2040,State-funded primary,315,159,156,50.50%,49.50%,12,3.80%,49,15.60%,5,310,0,1.60%,98.40%,0.00%,42,44,315,14.00% +115877,850,2041,State-funded primary,111,52,59,46.80%,53.20%,3,2.70%,11,9.90%,9,102,0,8.10%,91.90%,0.00%,13,13,111,11.70% +115878,850,2046,State-funded primary,162,82,80,50.60%,49.40%,5,3.10%,16,9.90%,4,158,0,2.50%,97.50%,0.00%,21,21,162,13.00% +115879,850,2047,State-funded primary,108,58,50,53.70%,46.30%,2,1.90%,8,7.40%,4,104,0,3.70%,96.30%,0.00%,23,23,108,21.30% +115880,850,2049,State-funded primary,357,199,158,55.70%,44.30%,9,2.50%,39,10.90%,11,346,0,3.10%,96.90%,0.00%,50,50,357,14.00% +115881,850,2053,State-funded primary,176,87,89,49.40%,50.60%,7,4.00%,26,14.80%,8,168,0,4.50%,95.50%,0.00%,19,21,176,11.90% +115882,850,2054,State-funded primary,241,119,122,49.40%,50.60%,4,1.70%,16,6.60%,20,221,0,8.30%,91.70%,0.00%,43,44,241,18.30% +115883,850,2055,State-funded primary,195,93,102,47.70%,52.30%,32,16.40%,50,25.60%,9,186,0,4.60%,95.40%,0.00%,74,78,195,40.00% +115884,850,2056,State-funded primary,300,162,138,54.00%,46.00%,6,2.00%,51,17.00%,30,270,0,10.00%,90.00%,0.00%,58,60,300,20.00% +115885,850,2057,State-funded primary,218,92,126,42.20%,57.80%,6,2.80%,62,28.40%,13,205,0,6.00%,94.00%,0.00%,63,60,156,38.50% +115886,850,2061,State-funded primary,595,307,288,51.60%,48.40%,18,3.00%,57,9.60%,73,522,0,12.30%,87.70%,0.00%,152,154,595,25.90% +115887,850,2062,State-funded primary,383,186,197,48.60%,51.40%,35,9.10%,94,24.50%,59,324,0,15.40%,84.60%,0.00%,152,156,383,40.70% +115888,850,2063,State-funded primary,243,119,124,49.00%,51.00%,6,2.50%,27,11.10%,29,214,0,11.90%,88.10%,0.00%,27,27,243,11.10% +115889,850,2067,State-funded primary,207,99,108,47.80%,52.20%,7,3.40%,27,13.00%,8,199,0,3.90%,96.10%,0.00%,72,76,207,36.70% +115890,850,2069,State-funded primary,314,146,168,46.50%,53.50%,7,2.20%,19,6.10%,6,307,1,1.90%,97.80%,0.30%,23,23,314,7.30% +115891,850,2071,State-funded primary,440,218,222,49.50%,50.50%,12,2.70%,50,11.40%,14,426,0,3.20%,96.80%,0.00%,39,39,440,8.90% +115892,850,2074,State-funded primary,311,143,168,46.00%,54.00%,7,2.30%,41,13.20%,17,294,0,5.50%,94.50%,0.00%,53,54,311,17.40% +115893,850,2076,State-funded primary,167,88,79,52.70%,47.30%,2,1.20%,18,10.80%,13,151,3,7.80%,90.40%,1.80%,43,46,167,27.50% +115897,850,2085,State-funded primary,91,46,45,50.50%,49.50%,3,3.30%,9,9.90%,7,84,0,7.70%,92.30%,0.00%,8,10,91,11.00% +115898,850,2086,State-funded primary,198,95,103,48.00%,52.00%,6,3.00%,13,6.60%,11,187,0,5.60%,94.40%,0.00%,21,21,198,10.60% +115899,850,2089,State-funded primary,185,92,93,49.70%,50.30%,6,3.20%,18,9.70%,14,171,0,7.60%,92.40%,0.00%,73,75,185,40.50% +115900,850,2090,State-funded primary,71,43,28,60.60%,39.40%,2,2.80%,11,15.50%,0,71,0,0.00%,100.00%,0.00%,5,6,71,8.50% +115901,850,2091,State-funded primary,366,179,187,48.90%,51.10%,9,2.50%,45,12.30%,24,342,0,6.60%,93.40%,0.00%,84,84,366,23.00% +115902,850,2092,State-funded primary,105,44,61,41.90%,58.10%,5,4.80%,7,6.70%,10,95,0,9.50%,90.50%,0.00%,16,16,105,15.20% +115903,850,2094,State-funded primary,251,127,124,50.60%,49.40%,7,2.80%,7,2.80%,9,242,0,3.60%,96.40%,0.00%,29,30,251,12.00% +115904,850,2095,State-funded primary,257,140,117,54.50%,45.50%,3,1.20%,34,13.20%,26,231,0,10.10%,89.90%,0.00%,67,67,257,26.10% +115908,850,2100,State-funded primary,263,125,138,47.50%,52.50%,15,5.70%,55,20.90%,8,255,0,3.00%,97.00%,0.00%,190,193,263,73.40% +115909,850,2101,State-funded primary,171,83,88,48.50%,51.50%,6,3.50%,15,8.80%,7,164,0,4.10%,95.90%,0.00%,100,100,171,58.50% +115911,850,2103,State-funded primary,236,99,137,41.90%,58.10%,18,7.60%,49,20.80%,10,226,0,4.20%,95.80%,0.00%,142,148,236,62.70% +115912,850,2104,State-funded primary,176,84,92,47.70%,52.30%,4,2.30%,48,27.30%,7,169,0,4.00%,96.00%,0.00%,94,94,176,53.40% +115913,850,2105,State-funded primary,305,157,148,51.50%,48.50%,11,3.60%,16,5.20%,13,292,0,4.30%,95.70%,0.00%,24,25,305,8.20% +115914,850,2106,State-funded primary,234,113,121,48.30%,51.70%,4,1.70%,29,12.40%,12,222,0,5.10%,94.90%,0.00%,61,63,234,26.90% +115915,850,2111,State-funded primary,130,62,68,47.70%,52.30%,27,20.80%,13,10.00%,1,129,0,0.80%,99.20%,0.00%,25,25,130,19.20% +115916,850,2113,State-funded primary,273,136,137,49.80%,50.20%,13,4.80%,70,25.60%,4,269,0,1.50%,98.50%,0.00%,70,74,273,27.10% +115918,850,2115,State-funded primary,219,116,103,53.00%,47.00%,1,0.50%,35,16.00%,11,208,0,5.00%,95.00%,0.00%,30,30,219,13.70% +115919,850,2116,State-funded primary,356,182,174,51.10%,48.90%,2,0.60%,58,16.30%,30,326,0,8.40%,91.60%,0.00%,78,85,356,23.90% +115920,850,2117,State-funded primary,74,37,37,50.00%,50.00%,3,4.10%,4,5.40%,5,69,0,6.80%,93.20%,0.00%,13,13,74,17.60% +115922,850,2120,State-funded primary,418,201,217,48.10%,51.90%,9,2.20%,40,9.60%,29,388,1,6.90%,92.80%,0.20%,61,62,418,14.80% +115924,850,2125,State-funded primary,211,120,91,56.90%,43.10%,2,0.90%,2,0.90%,1,210,0,0.50%,99.50%,0.00%,9,9,211,4.30% +115925,850,2127,State-funded primary,224,112,112,50.00%,50.00%,15,6.70%,30,13.40%,23,201,0,10.30%,89.70%,0.00%,43,43,224,19.20% +115926,850,2128,State-funded primary,458,232,226,50.70%,49.30%,15,3.30%,33,7.20%,28,430,0,6.10%,93.90%,0.00%,46,47,458,10.30% +115928,850,2137,State-funded primary,232,97,135,41.80%,58.20%,8,3.40%,23,9.90%,31,201,0,13.40%,86.60%,0.00%,66,66,225,29.30% +115929,850,2140,State-funded primary,366,188,178,51.40%,48.60%,15,4.10%,29,7.90%,50,316,0,13.70%,86.30%,0.00%,94,99,366,27.00% +115931,850,2147,State-funded primary,66,36,30,54.50%,45.50%,1,1.50%,4,6.10%,1,65,0,1.50%,98.50%,0.00%,4,5,66,7.60% +115932,850,2148,State-funded primary,141,67,74,47.50%,52.50%,4,2.80%,6,4.30%,11,130,0,7.80%,92.20%,0.00%,8,8,141,5.70% +115933,850,2155,State-funded primary,180,77,103,42.80%,57.20%,4,2.20%,9,5.00%,3,177,0,1.70%,98.30%,0.00%,17,17,180,9.40% +115934,850,2157,State-funded primary,94,45,49,47.90%,52.10%,4,4.30%,12,12.80%,1,93,0,1.10%,98.90%,0.00%,25,26,94,27.70% +115935,850,2161,State-funded primary,217,105,112,48.40%,51.60%,6,2.80%,37,17.10%,12,205,0,5.50%,94.50%,0.00%,38,38,217,17.50% +115936,850,2162,State-funded primary,325,164,161,50.50%,49.50%,12,3.70%,21,6.50%,39,286,0,12.00%,88.00%,0.00%,40,40,325,12.30% +115937,850,2167,State-funded primary,267,131,136,49.10%,50.90%,4,1.50%,35,13.10%,13,254,0,4.90%,95.10%,0.00%,49,49,267,18.40% +115938,850,2168,State-funded primary,435,212,223,48.70%,51.30%,5,1.10%,34,7.80%,10,425,0,2.30%,97.70%,0.00%,49,50,435,11.50% +115939,850,2169,State-funded primary,150,72,78,48.00%,52.00%,2,1.30%,35,23.30%,9,141,0,6.00%,94.00%,0.00%,53,53,150,35.30% +115940,850,2170,State-funded primary,482,248,234,51.50%,48.50%,19,3.90%,77,16.00%,25,451,6,5.20%,93.60%,1.20%,80,84,482,17.40% +115943,850,2175,State-funded primary,376,194,182,51.60%,48.40%,10,2.70%,17,4.50%,10,366,0,2.70%,97.30%,0.00%,67,71,376,18.90% +115944,850,2176,State-funded primary,340,193,147,56.80%,43.20%,5,1.50%,25,7.40%,22,317,1,6.50%,93.20%,0.30%,59,61,340,17.90% +115945,850,2180,State-funded primary,129,67,62,51.90%,48.10%,4,3.10%,10,7.80%,9,120,0,7.00%,93.00%,0.00%,8,9,129,7.00% +115946,850,2181,State-funded primary,97,49,48,50.50%,49.50%,2,2.10%,17,17.50%,1,96,0,1.00%,99.00%,0.00%,14,15,97,15.50% +115947,850,2182,State-funded primary,183,100,83,54.60%,45.40%,5,2.70%,32,17.50%,8,175,0,4.40%,95.60%,0.00%,20,24,183,13.10% +115948,850,2183,State-funded primary,87,41,46,47.10%,52.90%,3,3.40%,18,20.70%,4,83,0,4.60%,95.40%,0.00%,14,16,87,18.40% +115949,850,2186,State-funded primary,165,72,93,43.60%,56.40%,5,3.00%,15,9.10%,1,164,0,0.60%,99.40%,0.00%,8,9,138,6.50% +115952,850,2190,State-funded primary,249,107,142,43.00%,57.00%,6,2.40%,23,9.20%,15,234,0,6.00%,94.00%,0.00%,32,34,249,13.70% +115953,850,2193,State-funded primary,195,106,89,54.40%,45.60%,6,3.10%,29,14.90%,5,190,0,2.60%,97.40%,0.00%,42,45,195,23.10% +115954,850,2194,State-funded primary,135,62,73,45.90%,54.10%,5,3.70%,8,5.90%,8,127,0,5.90%,94.10%,0.00%,33,33,135,24.40% +115955,850,2196,State-funded primary,144,62,82,43.10%,56.90%,7,4.90%,39,27.10%,10,133,1,6.90%,92.40%,0.70%,35,35,101,34.70% +115956,850,2197,State-funded primary,346,169,177,48.80%,51.20%,10,2.90%,38,11.00%,16,330,0,4.60%,95.40%,0.00%,52,57,346,16.50% +115957,850,2200,State-funded primary,149,79,70,53.00%,47.00%,4,2.70%,15,10.10%,3,146,0,2.00%,98.00%,0.00%,10,11,149,7.40% +115960,850,2203,State-funded primary,136,77,59,56.60%,43.40%,5,3.70%,15,11.00%,15,121,0,11.00%,89.00%,0.00%,17,17,136,12.50% +115962,850,2206,State-funded primary,212,113,99,53.30%,46.70%,11,5.20%,29,13.70%,18,194,0,8.50%,91.50%,0.00%,89,91,212,42.90% +115963,850,2211,State-funded primary,185,88,97,47.60%,52.40%,14,7.60%,24,13.00%,45,140,0,24.30%,75.70%,0.00%,77,77,185,41.60% +115964,850,2213,State-funded primary,361,176,185,48.80%,51.20%,6,1.70%,41,11.40%,12,349,0,3.30%,96.70%,0.00%,47,50,361,13.90% +115965,850,2214,State-funded primary,254,138,116,54.30%,45.70%,7,2.80%,15,5.90%,2,252,0,0.80%,99.20%,0.00%,42,42,254,16.50% +115966,850,2215,State-funded primary,123,59,64,48.00%,52.00%,1,0.80%,25,20.30%,15,107,1,12.20%,87.00%,0.80%,54,54,123,43.90% +115967,850,2216,State-funded primary,261,131,130,50.20%,49.80%,3,1.10%,12,4.60%,5,256,0,1.90%,98.10%,0.00%,17,17,261,6.50% +115968,850,2217,State-funded primary,140,70,70,50.00%,50.00%,1,0.70%,10,7.10%,15,123,2,10.70%,87.90%,1.40%,9,10,140,7.10% +115970,850,2220,State-funded primary,565,270,295,47.80%,52.20%,36,6.40%,112,19.80%,104,461,0,18.40%,81.60%,0.00%,214,221,565,39.10% +115971,850,2223,State-funded primary,167,90,77,53.90%,46.10%,9,5.40%,12,7.20%,40,127,0,24.00%,76.00%,0.00%,45,46,167,27.50% +115972,850,2224,State-funded primary,448,223,225,49.80%,50.20%,10,2.20%,69,15.40%,25,422,1,5.60%,94.20%,0.20%,93,95,448,21.20% +115973,850,2226,State-funded primary,178,88,90,49.40%,50.60%,4,2.20%,10,5.60%,19,159,0,10.70%,89.30%,0.00%,24,24,178,13.50% +115974,850,2227,State-funded primary,345,169,176,49.00%,51.00%,14,4.10%,80,23.20%,97,247,1,28.10%,71.60%,0.30%,92,98,345,28.40% +115975,850,2228,State-funded primary,225,102,123,45.30%,54.70%,34,15.10%,43,19.10%,58,167,0,25.80%,74.20%,0.00%,60,60,198,30.30% +115976,850,2229,State-funded primary,581,274,307,47.20%,52.80%,18,3.10%,60,10.30%,48,533,0,8.30%,91.70%,0.00%,78,80,581,13.80% +115977,850,2230,State-funded primary,250,126,124,50.40%,49.60%,6,2.40%,43,17.20%,7,243,0,2.80%,97.20%,0.00%,25,25,250,10.00% +115980,850,2237,State-funded primary,271,143,128,52.80%,47.20%,12,4.40%,18,6.60%,71,200,0,26.20%,73.80%,0.00%,17,17,271,6.30% +115981,850,2238,State-funded primary,170,91,79,53.50%,46.50%,5,2.90%,15,8.80%,18,151,1,10.60%,88.80%,0.60%,30,30,170,17.60% +115982,850,2239,State-funded primary,250,127,123,50.80%,49.20%,2,0.80%,20,8.00%,16,234,0,6.40%,93.60%,0.00%,22,22,250,8.80% +115983,850,2241,State-funded primary,73,41,32,56.20%,43.80%,3,4.10%,24,32.90%,7,66,0,9.60%,90.40%,0.00%,28,28,73,38.40% +115984,850,2242,State-funded primary,360,180,180,50.00%,50.00%,7,1.90%,37,10.30%,15,345,0,4.20%,95.80%,0.00%,43,45,360,12.50% +115985,850,2243,State-funded primary,158,75,83,47.50%,52.50%,4,2.50%,39,24.70%,13,145,0,8.20%,91.80%,0.00%,49,49,158,31.00% +115986,850,2246,State-funded primary,179,78,101,43.60%,56.40%,7,3.90%,9,5.00%,5,174,0,2.80%,97.20%,0.00%,39,40,179,22.30% +115988,850,2248,State-funded primary,358,171,187,47.80%,52.20%,10,2.80%,48,13.40%,18,340,0,5.00%,95.00%,0.00%,60,63,358,17.60% +115989,850,2249,State-funded primary,326,149,177,45.70%,54.30%,3,0.90%,7,2.10%,17,309,0,5.20%,94.80%,0.00%,11,11,326,3.40% +115990,850,2252,State-funded primary,628,313,315,49.80%,50.20%,7,1.10%,30,4.80%,69,559,0,11.00%,89.00%,0.00%,76,79,628,12.60% +115991,850,2254,State-funded primary,419,216,203,51.60%,48.40%,15,3.60%,124,29.60%,10,409,0,2.40%,97.60%,0.00%,202,202,419,48.20% +115992,850,2255,State-funded primary,133,67,66,50.40%,49.60%,1,0.80%,9,6.80%,3,130,0,2.30%,97.70%,0.00%,10,10,124,8.10% +115994,850,2257,State-funded primary,264,123,141,46.60%,53.40%,10,3.80%,19,7.20%,17,247,0,6.40%,93.60%,0.00%,29,29,264,11.00% +115997,850,2263,State-funded primary,591,316,275,53.50%,46.50%,8,1.40%,71,12.00%,16,575,0,2.70%,97.30%,0.00%,93,96,591,16.20% +115998,850,2265,State-funded primary,316,157,159,49.70%,50.30%,8,2.50%,36,11.40%,10,306,0,3.20%,96.80%,0.00%,45,50,316,15.80% +115999,850,2266,State-funded primary,261,126,135,48.30%,51.70%,12,4.60%,21,8.00%,7,253,1,2.70%,96.90%,0.40%,56,58,261,22.20% +116000,850,2267,State-funded primary,362,158,204,43.60%,56.40%,7,1.90%,58,16.00%,8,354,0,2.20%,97.80%,0.00%,63,63,362,17.40% +116001,850,2268,State-funded primary,264,136,128,51.50%,48.50%,18,6.80%,62,23.50%,57,207,0,21.60%,78.40%,0.00%,94,96,264,36.40% +116002,850,2269,State-funded primary,272,119,153,43.80%,56.30%,5,1.80%,9,3.30%,46,226,0,16.90%,83.10%,0.00%,12,12,272,4.40% +116003,850,2270,State-funded primary,250,126,124,50.40%,49.60%,2,0.80%,1,0.40%,26,224,0,10.40%,89.60%,0.00%,3,3,250,1.20% +116004,850,2271,State-funded primary,203,96,107,47.30%,52.70%,9,4.40%,44,21.70%,60,143,0,29.60%,70.40%,0.00%,60,60,203,29.60% +116005,850,2272,State-funded primary,648,319,329,49.20%,50.80%,15,2.30%,75,11.60%,146,486,16,22.50%,75.00%,2.50%,131,139,648,21.50% +116006,850,2273,State-funded primary,287,144,143,50.20%,49.80%,5,1.70%,38,13.20%,5,282,0,1.70%,98.30%,0.00%,42,44,287,15.30% +116007,850,2274,State-funded primary,383,179,204,46.70%,53.30%,20,5.20%,22,5.70%,70,313,0,18.30%,81.70%,0.00%,30,30,383,7.80% +116009,850,2276,State-funded primary,179,83,96,46.40%,53.60%,8,4.50%,6,3.40%,4,175,0,2.20%,97.80%,0.00%,20,20,179,11.20% +116010,850,2278,State-funded primary,406,205,201,50.50%,49.50%,7,1.70%,49,12.10%,35,371,0,8.60%,91.40%,0.00%,16,16,406,3.90% +116012,850,2282,State-funded primary,259,129,130,49.80%,50.20%,4,1.50%,21,8.10%,7,252,0,2.70%,97.30%,0.00%,27,27,259,10.40% +116013,850,2283,State-funded primary,234,109,125,46.60%,53.40%,5,2.10%,31,13.20%,16,218,0,6.80%,93.20%,0.00%,27,31,234,13.20% +116014,850,2284,State-funded primary,206,110,96,53.40%,46.60%,9,4.40%,43,20.90%,23,183,0,11.20%,88.80%,0.00%,110,110,206,53.40% +116015,850,2285,State-funded primary,214,100,114,46.70%,53.30%,12,5.60%,43,20.10%,33,181,0,15.40%,84.60%,0.00%,97,101,214,47.20% +116016,850,2286,State-funded primary,367,177,190,48.20%,51.80%,9,2.50%,32,8.70%,52,312,3,14.20%,85.00%,0.80%,34,34,367,9.30% +116019,850,2289,State-funded primary,238,123,115,51.70%,48.30%,3,1.30%,47,19.70%,8,230,0,3.40%,96.60%,0.00%,32,35,238,14.70% +116020,850,2290,State-funded primary,345,163,182,47.20%,52.80%,12,3.50%,28,8.10%,32,313,0,9.30%,90.70%,0.00%,31,31,345,9.00% +116021,850,2291,State-funded primary,133,52,81,39.10%,60.90%,11,8.30%,6,4.50%,14,119,0,10.50%,89.50%,0.00%,29,29,133,21.80% +116022,850,2297,State-funded primary,385,213,172,55.30%,44.70%,15,3.90%,50,13.00%,17,368,0,4.40%,95.60%,0.00%,89,105,385,27.30% +116023,850,2298,State-funded primary,360,182,178,50.60%,49.40%,18,5.00%,21,5.80%,93,267,0,25.80%,74.20%,0.00%,105,105,360,29.20% +116024,850,2299,State-funded primary,179,96,83,53.60%,46.40%,2,1.10%,23,12.80%,4,175,0,2.20%,97.80%,0.00%,12,13,179,7.30% +116025,850,2300,State-funded primary,296,137,159,46.30%,53.70%,4,1.40%,33,11.10%,12,284,0,4.10%,95.90%,0.00%,25,25,296,8.40% +116026,850,2301,State-funded primary,195,92,103,47.20%,52.80%,6,3.10%,31,15.90%,38,157,0,19.50%,80.50%,0.00%,66,66,137,48.20% +116027,850,2304,State-funded primary,321,163,158,50.80%,49.20%,13,4.00%,42,13.10%,9,312,0,2.80%,97.20%,0.00%,92,96,321,29.90% +116028,850,2306,State-funded primary,170,89,81,52.40%,47.60%,9,5.30%,22,12.90%,8,162,0,4.70%,95.30%,0.00%,21,21,170,12.40% +116030,850,2309,State-funded primary,151,64,87,42.40%,57.60%,4,2.60%,15,9.90%,5,146,0,3.30%,96.70%,0.00%,13,13,151,8.60% +116031,850,2310,State-funded primary,238,109,129,45.80%,54.20%,8,3.40%,9,3.80%,1,237,0,0.40%,99.60%,0.00%,26,27,205,13.20% +116033,850,2313,State-funded primary,391,212,179,54.20%,45.80%,9,2.30%,53,13.60%,14,377,0,3.60%,96.40%,0.00%,54,56,391,14.30% +116034,850,2314,State-funded primary,297,156,141,52.50%,47.50%,10,3.40%,43,14.50%,14,283,0,4.70%,95.30%,0.00%,28,30,297,10.10% +116035,850,2315,State-funded primary,171,85,86,49.70%,50.30%,2,1.20%,13,7.60%,10,161,0,5.80%,94.20%,0.00%,18,18,171,10.50% +116036,850,2316,State-funded primary,270,121,149,44.80%,55.20%,7,2.60%,24,8.90%,35,233,2,13.00%,86.30%,0.70%,23,23,270,8.50% +116037,850,2317,State-funded primary,172,84,88,48.80%,51.20%,9,5.20%,48,27.90%,15,157,0,8.70%,91.30%,0.00%,61,66,172,38.40% +116038,850,2318,State-funded primary,203,97,106,47.80%,52.20%,7,3.40%,25,12.30%,31,172,0,15.30%,84.70%,0.00%,81,82,203,40.40% +116039,850,2319,State-funded primary,264,137,127,51.90%,48.10%,4,1.50%,27,10.20%,47,216,1,17.80%,81.80%,0.40%,9,10,264,3.80% +116040,850,2320,State-funded primary,198,92,106,46.50%,53.50%,6,3.00%,24,12.10%,31,167,0,15.70%,84.30%,0.00%,50,50,198,25.30% +116041,850,2321,State-funded primary,179,91,88,50.80%,49.20%,3,1.70%,23,12.80%,35,144,0,19.60%,80.40%,0.00%,21,21,179,11.70% +116042,850,2322,State-funded primary,214,93,121,43.50%,56.50%,3,1.40%,25,11.70%,43,171,0,20.10%,79.90%,0.00%,9,9,214,4.20% +116043,850,2323,State-funded primary,357,181,176,50.70%,49.30%,7,2.00%,62,17.40%,16,341,0,4.50%,95.50%,0.00%,53,53,357,14.80% +116044,850,2324,State-funded primary,214,120,94,56.10%,43.90%,2,0.90%,17,7.90%,22,192,0,10.30%,89.70%,0.00%,40,40,214,18.70% +116045,850,2325,State-funded primary,483,222,261,46.00%,54.00%,7,1.40%,48,9.90%,58,425,0,12.00%,88.00%,0.00%,53,61,483,12.60% +116046,850,2326,State-funded primary,242,122,120,50.40%,49.60%,5,2.10%,25,10.30%,25,217,0,10.30%,89.70%,0.00%,42,46,212,21.70% +116047,850,2328,State-funded primary,173,91,82,52.60%,47.40%,3,1.70%,16,9.20%,4,169,0,2.30%,97.70%,0.00%,11,11,173,6.40% +116048,850,2329,State-funded primary,252,122,130,48.40%,51.60%,5,2.00%,14,5.60%,6,246,0,2.40%,97.60%,0.00%,37,37,252,14.70% +116049,850,2330,State-funded primary,165,88,77,53.30%,46.70%,8,4.80%,28,17.00%,8,157,0,4.80%,95.20%,0.00%,43,44,165,26.70% +116051,850,2332,State-funded primary,256,117,139,45.70%,54.30%,0,0.00%,14,5.50%,27,229,0,10.50%,89.50%,0.00%,39,42,256,16.40% +116052,850,2335,State-funded primary,237,131,106,55.30%,44.70%,11,4.60%,37,15.60%,17,220,0,7.20%,92.80%,0.00%,79,80,237,33.80% +116053,850,2336,State-funded primary,231,110,121,47.60%,52.40%,9,3.90%,51,22.10%,5,226,0,2.20%,97.80%,0.00%,60,61,231,26.40% +116054,850,2339,State-funded primary,383,180,203,47.00%,53.00%,3,0.80%,13,3.40%,32,351,0,8.40%,91.60%,0.00%,17,18,383,4.70% +116055,850,2341,State-funded primary,164,88,76,53.70%,46.30%,5,3.00%,21,12.80%,38,126,0,23.20%,76.80%,0.00%,46,46,164,28.00% +116056,850,2342,State-funded primary,270,129,141,47.80%,52.20%,3,1.10%,32,11.90%,17,251,2,6.30%,93.00%,0.70%,27,27,270,10.00% +116057,850,2344,State-funded primary,344,169,175,49.10%,50.90%,15,4.40%,34,9.90%,62,282,0,18.00%,82.00%,0.00%,68,71,344,20.60% +116058,850,2345,State-funded primary,245,123,122,50.20%,49.80%,8,3.30%,30,12.20%,8,237,0,3.30%,96.70%,0.00%,19,19,245,7.80% +116059,850,2346,State-funded primary,231,119,112,51.50%,48.50%,8,3.50%,22,9.50%,25,206,0,10.80%,89.20%,0.00%,28,28,231,12.10% +116060,850,2347,State-funded primary,215,100,115,46.50%,53.50%,16,7.40%,17,7.90%,13,202,0,6.00%,94.00%,0.00%,20,22,215,10.20% +116061,850,2348,State-funded primary,350,175,175,50.00%,50.00%,14,4.00%,66,18.90%,14,336,0,4.00%,96.00%,0.00%,75,77,350,22.00% +116063,850,2354,State-funded primary,269,133,136,49.40%,50.60%,3,1.10%,10,3.70%,31,238,0,11.50%,88.50%,0.00%,36,36,269,13.40% +116065,850,2357,State-funded primary,223,108,115,48.40%,51.60%,8,3.60%,31,13.90%,5,218,0,2.20%,97.80%,0.00%,33,34,223,15.20% +116067,850,2361,State-funded primary,210,100,110,47.60%,52.40%,6,2.90%,65,31.00%,22,188,0,10.50%,89.50%,0.00%,65,71,210,33.80% +116068,850,2367,State-funded primary,205,97,108,47.30%,52.70%,13,6.30%,39,19.00%,4,201,0,2.00%,98.00%,0.00%,36,40,205,19.50% +116069,850,2372,State-funded primary,154,73,81,47.40%,52.60%,7,4.50%,7,4.50%,4,150,0,2.60%,97.40%,0.00%,22,22,154,14.30% +116070,850,2373,State-funded primary,263,133,130,50.60%,49.40%,12,4.60%,21,8.00%,10,253,0,3.80%,96.20%,0.00%,56,56,263,21.30% +116071,850,2376,State-funded primary,288,137,151,47.60%,52.40%,13,4.50%,33,11.50%,10,278,0,3.50%,96.50%,0.00%,45,46,288,16.00% +116072,850,2377,State-funded primary,359,167,192,46.50%,53.50%,23,6.40%,66,18.40%,36,323,0,10.00%,90.00%,0.00%,86,87,359,24.20% +116073,850,2378,State-funded primary,321,161,160,50.20%,49.80%,9,2.80%,48,15.00%,16,305,0,5.00%,95.00%,0.00%,46,56,321,17.40% +116074,850,2382,State-funded primary,406,197,209,48.50%,51.50%,13,3.20%,16,3.90%,19,387,0,4.70%,95.30%,0.00%,38,38,406,9.40% +116075,850,2383,State-funded primary,241,124,117,51.50%,48.50%,16,6.60%,12,5.00%,13,228,0,5.40%,94.60%,0.00%,44,45,241,18.70% +116076,850,2384,State-funded primary,133,64,69,48.10%,51.90%,8,6.00%,16,12.00%,4,129,0,3.00%,97.00%,0.00%,30,31,133,23.30% +116078,850,2387,State-funded primary,439,204,235,46.50%,53.50%,6,1.40%,31,7.10%,113,325,1,25.70%,74.00%,0.20%,95,100,394,25.40% +116079,850,2388,State-funded primary,211,94,117,44.50%,55.50%,6,2.80%,30,14.20%,14,197,0,6.60%,93.40%,0.00%,20,20,211,9.50% +116080,850,2389,State-funded primary,167,75,92,44.90%,55.10%,4,2.40%,3,1.80%,7,160,0,4.20%,95.80%,0.00%,20,21,167,12.60% +116082,850,2392,State-funded primary,269,132,137,49.10%,50.90%,7,2.60%,13,4.80%,37,232,0,13.80%,86.20%,0.00%,36,36,269,13.40% +116083,850,2395,State-funded primary,411,205,206,49.90%,50.10%,18,4.40%,67,16.30%,16,395,0,3.90%,96.10%,0.00%,62,64,411,15.60% +116084,850,2396,State-funded primary,180,82,98,45.60%,54.40%,6,3.30%,11,6.10%,9,171,0,5.00%,95.00%,0.00%,27,28,180,15.60% +116088,852,2405,State-funded primary,408,175,233,42.90%,57.10%,17,4.20%,67,16.40%,299,103,6,73.30%,25.20%,1.50%,181,183,408,44.90% +116089,852,2406,State-funded primary,240,128,112,53.30%,46.70%,10,4.20%,31,12.90%,78,162,0,32.50%,67.50%,0.00%,68,69,208,33.20% +116090,852,2407,State-funded primary,628,301,327,47.90%,52.10%,10,1.60%,121,19.30%,88,539,1,14.00%,85.80%,0.20%,101,103,628,16.40% +116092,852,2409,State-funded primary,356,174,182,48.90%,51.10%,5,1.40%,66,18.50%,314,41,1,88.20%,11.50%,0.30%,145,146,356,41.00% +116093,852,2410,State-funded primary,284,135,149,47.50%,52.50%,3,1.10%,32,11.30%,274,10,0,96.50%,3.50%,0.00%,54,57,224,25.40% +116102,852,2423,State-funded primary,209,101,108,48.30%,51.70%,10,4.80%,37,17.70%,76,133,0,36.40%,63.60%,0.00%,56,56,209,26.80% +116103,852,2424,State-funded primary,437,222,215,50.80%,49.20%,8,1.80%,44,10.10%,240,195,2,54.90%,44.60%,0.50%,132,133,402,33.10% +116109,852,2431,State-funded primary,210,102,108,48.60%,51.40%,8,3.80%,39,18.60%,103,107,0,49.00%,51.00%,0.00%,70,73,210,34.80% +116116,852,2440,State-funded primary,419,213,206,50.80%,49.20%,17,4.10%,88,21.00%,249,170,0,59.40%,40.60%,0.00%,116,117,419,27.90% +116117,852,2441,State-funded primary,206,103,103,50.00%,50.00%,6,2.90%,33,16.00%,60,146,0,29.10%,70.90%,0.00%,100,100,206,48.50% +116123,852,2448,State-funded primary,208,92,116,44.20%,55.80%,4,1.90%,73,35.10%,18,190,0,8.70%,91.30%,0.00%,125,125,208,60.10% +116127,852,2455,State-funded primary,409,214,195,52.30%,47.70%,16,3.90%,54,13.20%,44,365,0,10.80%,89.20%,0.00%,151,154,409,37.70% +116134,852,2463,State-funded primary,292,139,153,47.60%,52.40%,12,4.10%,70,24.00%,50,242,0,17.10%,82.90%,0.00%,130,133,292,45.50% +116137,850,2470,State-funded primary,265,118,147,44.50%,55.50%,15,5.70%,64,24.20%,37,221,7,14.00%,83.40%,2.60%,57,57,265,21.50% +116138,852,2471,State-funded primary,414,202,212,48.80%,51.20%,9,2.20%,45,10.90%,69,343,2,16.70%,82.90%,0.50%,104,104,414,25.10% +116140,850,2510,State-funded primary,300,137,163,45.70%,54.30%,5,1.70%,59,19.70%,47,253,0,15.70%,84.30%,0.00%,48,48,300,16.00% +116141,850,2511,State-funded primary,171,94,77,55.00%,45.00%,2,1.20%,18,10.50%,31,140,0,18.10%,81.90%,0.00%,27,27,171,15.80% +116142,850,2512,State-funded primary,416,225,191,54.10%,45.90%,12,2.90%,75,18.00%,110,306,0,26.40%,73.60%,0.00%,102,103,416,24.80% +116143,850,2516,State-funded primary,89,38,51,42.70%,57.30%,1,1.10%,11,12.40%,37,52,0,41.60%,58.40%,0.00%,4,5,89,5.60% +116144,850,2517,State-funded primary,296,146,150,49.30%,50.70%,10,3.40%,19,6.40%,70,226,0,23.60%,76.40%,0.00%,26,26,296,8.80% +116145,850,2519,State-funded primary,160,74,86,46.30%,53.80%,3,1.90%,16,10.00%,39,121,0,24.40%,75.60%,0.00%,11,11,160,6.90% +116146,850,2520,State-funded primary,348,166,182,47.70%,52.30%,8,2.30%,79,22.70%,51,295,2,14.70%,84.80%,0.60%,111,114,348,32.80% +116147,850,2521,State-funded primary,240,126,114,52.50%,47.50%,9,3.80%,56,23.30%,80,160,0,33.30%,66.70%,0.00%,76,81,240,33.80% +116149,850,2523,State-funded primary,416,208,208,50.00%,50.00%,11,2.60%,61,14.70%,184,232,0,44.20%,55.80%,0.00%,62,65,416,15.60% +116150,850,2524,State-funded primary,205,97,108,47.30%,52.70%,7,3.40%,20,9.80%,45,160,0,22.00%,78.00%,0.00%,48,49,205,23.90% +116151,850,2526,State-funded primary,265,132,133,49.80%,50.20%,13,4.90%,38,14.30%,129,136,0,48.70%,51.30%,0.00%,21,22,265,8.30% +116154,850,2530,State-funded primary,209,102,107,48.80%,51.20%,2,1.00%,19,9.10%,26,183,0,12.40%,87.60%,0.00%,18,14,163,8.60% +116155,850,2531,State-funded primary,410,201,209,49.00%,51.00%,22,5.40%,44,10.70%,67,343,0,16.30%,83.70%,0.00%,48,50,410,12.20% +116157,850,2533,State-funded primary,368,165,203,44.80%,55.20%,33,9.00%,64,17.40%,39,329,0,10.60%,89.40%,0.00%,53,54,368,14.70% +116158,850,2534,State-funded primary,97,47,50,48.50%,51.50%,25,25.80%,10,10.30%,9,88,0,9.30%,90.70%,0.00%,13,14,97,14.40% +116162,850,2606,State-funded primary,302,149,153,49.30%,50.70%,12,4.00%,42,13.90%,5,296,1,1.70%,98.00%,0.30%,54,59,302,19.50% +116163,850,2607,State-funded primary,248,122,126,49.20%,50.80%,7,2.80%,40,16.10%,11,237,0,4.40%,95.60%,0.00%,53,55,248,22.20% +116164,850,2610,State-funded primary,333,169,164,50.80%,49.20%,7,2.10%,55,16.50%,14,319,0,4.20%,95.80%,0.00%,67,70,333,21.00% +116165,850,2612,State-funded primary,133,64,69,48.10%,51.90%,7,5.30%,25,18.80%,11,122,0,8.30%,91.70%,0.00%,59,62,133,46.60% +116168,850,2617,State-funded primary,147,72,75,49.00%,51.00%,6,4.10%,29,19.70%,2,145,0,1.40%,98.60%,0.00%,45,45,147,30.60% +116169,850,2618,State-funded primary,175,87,88,49.70%,50.30%,1,0.60%,11,6.30%,5,170,0,2.90%,97.10%,0.00%,13,13,175,7.40% +116170,850,2619,State-funded primary,290,127,163,43.80%,56.20%,15,5.20%,51,17.60%,24,266,0,8.30%,91.70%,0.00%,100,105,290,36.20% +116171,850,2620,State-funded primary,205,110,95,53.70%,46.30%,9,4.40%,41,20.00%,12,193,0,5.90%,94.10%,0.00%,67,67,205,32.70% +116172,850,2621,State-funded primary,223,104,119,46.60%,53.40%,17,7.60%,67,30.00%,19,204,0,8.50%,91.50%,0.00%,116,120,223,53.80% +116173,850,2622,State-funded primary,120,62,58,51.70%,48.30%,2,1.70%,20,16.70%,13,107,0,10.80%,89.20%,0.00%,12,11,91,12.10% +116174,850,2623,State-funded primary,206,107,99,51.90%,48.10%,12,5.80%,32,15.50%,14,192,0,6.80%,93.20%,0.00%,57,55,163,33.70% +116175,850,2624,State-funded primary,152,70,82,46.10%,53.90%,8,5.30%,32,21.10%,4,146,2,2.60%,96.10%,1.30%,29,31,152,20.40% +116176,850,2625,State-funded primary,180,100,80,55.60%,44.40%,3,1.70%,24,13.30%,12,168,0,6.70%,93.30%,0.00%,20,22,180,12.20% +116177,850,2627,State-funded primary,355,151,204,42.50%,57.50%,14,3.90%,53,14.90%,22,332,1,6.20%,93.50%,0.30%,122,130,355,36.60% +116180,850,2630,State-funded primary,284,136,148,47.90%,52.10%,5,1.80%,19,6.70%,13,271,0,4.60%,95.40%,0.00%,43,43,235,18.30% +116182,851,2637,State-funded primary,173,81,92,46.80%,53.20%,2,1.20%,17,9.80%,59,112,2,34.10%,64.70%,1.20%,41,42,173,24.30% +116187,851,2648,State-funded primary,181,78,103,43.10%,56.90%,10,5.50%,16,8.80%,56,125,0,30.90%,69.10%,0.00%,64,64,181,35.40% +116192,851,2665,State-funded primary,179,73,106,40.80%,59.20%,7,3.90%,21,11.70%,13,166,0,7.30%,92.70%,0.00%,25,26,179,14.50% +116195,851,2673,State-funded primary,203,117,86,57.60%,42.40%,5,2.50%,23,11.30%,19,184,0,9.40%,90.60%,0.00%,87,88,203,43.30% +116200,851,2680,State-funded primary,181,94,87,51.90%,48.10%,10,5.50%,14,7.70%,45,125,11,24.90%,69.10%,6.10%,38,38,181,21.00% +116221,851,2714,State-funded primary,353,190,163,53.80%,46.20%,9,2.50%,37,10.50%,97,251,5,27.50%,71.10%,1.40%,122,127,353,36.00% +116223,851,2716,State-funded primary,474,227,247,47.90%,52.10%,17,3.60%,53,11.20%,92,381,1,19.40%,80.40%,0.20%,113,114,474,24.10% +116224,850,2717,State-funded primary,161,75,86,46.60%,53.40%,1,0.60%,15,9.30%,5,156,0,3.10%,96.90%,0.00%,28,28,161,17.40% +116225,850,2718,State-funded primary,232,118,114,50.90%,49.10%,7,3.00%,34,14.70%,5,227,0,2.20%,97.80%,0.00%,45,48,232,20.70% +116226,851,2719,State-funded primary,296,138,158,46.60%,53.40%,4,1.40%,21,7.10%,88,194,14,29.70%,65.50%,4.70%,101,98,214,45.80% +116228,850,2723,State-funded primary,340,181,159,53.20%,46.80%,10,2.90%,35,10.30%,30,309,1,8.80%,90.90%,0.30%,39,39,340,11.50% +116230,850,2725,State-funded primary,218,122,96,56.00%,44.00%,5,2.30%,32,14.70%,97,121,0,44.50%,55.50%,0.00%,35,34,168,20.20% +116231,850,2726,State-funded primary,288,134,154,46.50%,53.50%,6,2.10%,38,13.20%,99,189,0,34.40%,65.60%,0.00%,85,86,288,29.90% +116232,850,2727,State-funded primary,417,213,204,51.10%,48.90%,19,4.60%,45,10.80%,188,227,2,45.10%,54.40%,0.50%,45,45,417,10.80% +116233,850,2728,State-funded primary,202,105,97,52.00%,48.00%,8,4.00%,41,20.30%,51,151,0,25.20%,74.80%,0.00%,76,78,202,38.60% +116234,850,2729,State-funded secondary,1459,714,745,48.90%,51.10%,54,3.70%,236,16.20%,333,1124,2,22.80%,77.00%,0.10%,420,444,1459,30.40% +116237,850,2732,State-funded primary,449,225,224,50.10%,49.90%,21,4.70%,61,13.60%,74,375,0,16.50%,83.50%,0.00%,191,193,400,48.30% +116241,850,2736,State-funded primary,214,114,100,53.30%,46.70%,5,2.30%,25,11.70%,29,185,0,13.60%,86.40%,0.00%,27,29,214,13.60% +116242,850,2737,State-funded primary,408,191,217,46.80%,53.20%,15,3.70%,26,6.40%,32,375,1,7.80%,91.90%,0.20%,50,54,408,13.20% +116243,850,2739,State-funded primary,195,103,92,52.80%,47.20%,9,4.60%,11,5.60%,24,171,0,12.30%,87.70%,0.00%,26,26,195,13.30% +116244,850,2740,State-funded primary,217,100,117,46.10%,53.90%,5,2.30%,51,23.50%,20,197,0,9.20%,90.80%,0.00%,101,106,217,48.80% +116246,850,2742,State-funded primary,115,54,61,47.00%,53.00%,7,6.10%,12,10.40%,16,99,0,13.90%,86.10%,0.00%,3,3,115,2.60% +116247,850,2749,State-funded primary,367,175,192,47.70%,52.30%,9,2.50%,48,13.10%,50,317,0,13.60%,86.40%,0.00%,49,50,367,13.60% +116248,850,2750,State-funded primary,413,189,224,45.80%,54.20%,11,2.70%,64,15.50%,5,408,0,1.20%,98.80%,0.00%,47,48,413,11.60% +116249,850,2752,State-funded primary,632,290,342,45.90%,54.10%,26,4.10%,84,13.30%,48,584,0,7.60%,92.40%,0.00%,76,80,632,12.70% +116250,850,2753,State-funded primary,203,108,95,53.20%,46.80%,2,1.00%,30,14.80%,30,173,0,14.80%,85.20%,0.00%,58,60,203,29.60% +116251,852,2754,State-funded primary,299,152,147,50.80%,49.20%,5,1.70%,71,23.70%,69,230,0,23.10%,76.90%,0.00%,73,75,234,32.10% +116253,852,2757,State-funded primary,383,181,202,47.30%,52.70%,5,1.30%,61,15.90%,71,312,0,18.50%,81.50%,0.00%,174,176,383,46.00% +116255,850,2761,State-funded primary,341,166,175,48.70%,51.30%,27,7.90%,50,14.70%,37,304,0,10.90%,89.10%,0.00%,59,75,341,22.00% +116256,850,2763,State-funded primary,391,185,206,47.30%,52.70%,21,5.40%,74,18.90%,33,358,0,8.40%,91.60%,0.00%,158,159,391,40.70% +116258,851,2765,State-funded primary,380,188,192,49.50%,50.50%,15,3.90%,56,14.70%,64,316,0,16.80%,83.20%,0.00%,189,190,380,50.00% +116260,850,2767,State-funded primary,416,198,218,47.60%,52.40%,8,1.90%,63,15.10%,14,402,0,3.40%,96.60%,0.00%,67,68,416,16.30% +116261,852,2769,State-funded primary,588,300,288,51.00%,49.00%,13,2.20%,94,16.00%,227,361,0,38.60%,61.40%,0.00%,142,142,588,24.10% +116262,852,2770,State-funded primary,452,208,244,46.00%,54.00%,9,2.00%,72,15.90%,187,265,0,41.40%,58.60%,0.00%,159,164,398,41.20% +116263,852,2771,State-funded primary,204,90,114,44.10%,55.90%,5,2.50%,54,26.50%,43,160,1,21.10%,78.40%,0.50%,113,117,204,57.40% +116265,850,2774,State-funded primary,324,157,167,48.50%,51.50%,32,9.90%,38,11.70%,25,299,0,7.70%,92.30%,0.00%,99,100,324,30.90% +116266,850,3000,State-funded primary,107,51,56,47.70%,52.30%,3,2.80%,17,15.90%,5,102,0,4.70%,95.30%,0.00%,7,7,107,6.50% +116267,850,3001,State-funded primary,206,107,99,51.90%,48.10%,4,1.90%,24,11.70%,16,190,0,7.80%,92.20%,0.00%,30,30,206,14.60% +116268,850,3003,State-funded primary,38,17,21,44.70%,55.30%,3,7.90%,8,21.10%,7,31,0,18.40%,81.60%,0.00%,17,17,38,44.70% +116269,850,3004,State-funded primary,187,91,96,48.70%,51.30%,6,3.20%,31,16.60%,49,138,0,26.20%,73.80%,0.00%,62,63,187,33.70% +116270,850,3009,State-funded primary,110,53,57,48.20%,51.80%,7,6.40%,12,10.90%,6,104,0,5.50%,94.50%,0.00%,13,13,110,11.80% +116271,850,3012,State-funded primary,84,40,44,47.60%,52.40%,1,1.20%,9,10.70%,3,81,0,3.60%,96.40%,0.00%,9,10,84,11.90% +116273,850,3014,State-funded primary,386,192,194,49.70%,50.30%,8,2.10%,44,11.40%,10,376,0,2.60%,97.40%,0.00%,38,39,386,10.10% +116275,850,3018,State-funded primary,85,47,38,55.30%,44.70%,5,5.90%,14,16.50%,0,85,0,0.00%,100.00%,0.00%,17,17,85,20.00% +116276,850,3019,State-funded primary,244,122,122,50.00%,50.00%,2,0.80%,22,9.00%,11,232,1,4.50%,95.10%,0.40%,17,17,208,8.20% +116277,850,3020,State-funded primary,246,114,132,46.30%,53.70%,5,2.00%,22,8.90%,11,235,0,4.50%,95.50%,0.00%,50,51,246,20.70% +116278,850,3022,State-funded primary,427,222,205,52.00%,48.00%,17,4.00%,48,11.20%,18,408,1,4.20%,95.60%,0.20%,77,82,427,19.20% +116279,850,3023,State-funded primary,205,108,97,52.70%,47.30%,4,2.00%,34,16.60%,13,192,0,6.30%,93.70%,0.00%,15,15,205,7.30% +116280,850,3027,State-funded primary,89,44,45,49.40%,50.60%,3,3.40%,5,5.60%,2,87,0,2.20%,97.80%,0.00%,5,5,89,5.60% +116281,850,3029,State-funded primary,94,51,43,54.30%,45.70%,3,3.20%,11,11.70%,8,86,0,8.50%,91.50%,0.00%,12,12,94,12.80% +116282,850,3032,State-funded primary,80,40,40,50.00%,50.00%,2,2.50%,3,3.80%,0,79,1,0.00%,98.80%,1.30%,8,9,80,11.30% +116283,850,3040,State-funded primary,139,59,80,42.40%,57.60%,6,4.30%,22,15.80%,7,132,0,5.00%,95.00%,0.00%,19,19,139,13.70% +116284,850,3046,State-funded primary,93,35,58,37.60%,62.40%,2,2.20%,18,19.40%,2,91,0,2.20%,97.80%,0.00%,17,18,93,19.40% +116285,850,3050,State-funded primary,58,29,29,50.00%,50.00%,2,3.40%,9,15.50%,0,55,3,0.00%,94.80%,5.20%,23,23,58,39.70% +116286,850,3052,State-funded primary,222,100,122,45.00%,55.00%,7,3.20%,31,14.00%,16,206,0,7.20%,92.80%,0.00%,31,32,222,14.40% +116288,850,3061,State-funded primary,306,152,154,49.70%,50.30%,7,2.30%,37,12.10%,14,292,0,4.60%,95.40%,0.00%,31,34,306,11.10% +116289,850,3062,State-funded primary,101,50,51,49.50%,50.50%,1,1.00%,14,13.90%,5,96,0,5.00%,95.00%,0.00%,7,7,101,6.90% +116290,850,3067,State-funded primary,202,93,109,46.00%,54.00%,7,3.50%,25,12.40%,18,184,0,8.90%,91.10%,0.00%,29,29,202,14.40% +116292,850,3081,State-funded primary,511,247,264,48.30%,51.70%,15,2.90%,82,16.00%,14,497,0,2.70%,97.30%,0.00%,101,104,511,20.40% +116293,850,3082,State-funded primary,95,48,47,50.50%,49.50%,0,0.00%,16,16.80%,5,90,0,5.30%,94.70%,0.00%,8,9,95,9.50% +116294,850,3083,State-funded primary,52,29,23,55.80%,44.20%,3,5.80%,7,13.50%,2,50,0,3.80%,96.20%,0.00%,14,14,52,26.90% +116295,850,3088,State-funded primary,206,107,99,51.90%,48.10%,5,2.40%,18,8.70%,6,200,0,2.90%,97.10%,0.00%,46,46,206,22.30% +116296,850,3089,State-funded primary,103,42,61,40.80%,59.20%,6,5.80%,10,9.70%,1,102,0,1.00%,99.00%,0.00%,16,17,103,16.50% +116297,850,3095,State-funded primary,396,188,208,47.50%,52.50%,11,2.80%,27,6.80%,38,358,0,9.60%,90.40%,0.00%,65,70,396,17.70% +116298,850,3096,State-funded primary,100,52,48,52.00%,48.00%,3,3.00%,10,10.00%,3,97,0,3.00%,97.00%,0.00%,9,9,100,9.00% +116299,850,3100,State-funded primary,202,103,99,51.00%,49.00%,5,2.50%,24,11.90%,16,186,0,7.90%,92.10%,0.00%,27,29,202,14.40% +116300,850,3101,State-funded primary,190,96,94,50.50%,49.50%,23,12.10%,16,8.40%,12,178,0,6.30%,93.70%,0.00%,16,17,190,8.90% +116301,850,3102,State-funded primary,58,25,33,43.10%,56.90%,0,0.00%,4,6.90%,3,55,0,5.20%,94.80%,0.00%,8,8,58,13.80% +116302,850,3110,State-funded primary,81,36,45,44.40%,55.60%,3,3.70%,2,2.50%,2,79,0,2.50%,97.50%,0.00%,6,6,81,7.40% +116303,850,3112,State-funded primary,205,95,110,46.30%,53.70%,4,2.00%,21,10.20%,16,189,0,7.80%,92.20%,0.00%,41,41,205,20.00% +116304,850,3118,State-funded primary,318,170,148,53.50%,46.50%,11,3.50%,12,3.80%,13,305,0,4.10%,95.90%,0.00%,16,16,318,5.00% +116305,850,3119,State-funded primary,378,184,194,48.70%,51.30%,4,1.10%,42,11.10%,15,361,2,4.00%,95.50%,0.50%,57,59,378,15.60% +116306,850,3120,State-funded primary,245,121,124,49.40%,50.60%,7,2.90%,27,11.00%,22,223,0,9.00%,91.00%,0.00%,32,33,245,13.50% +116307,850,3124,State-funded primary,147,81,66,55.10%,44.90%,7,4.80%,21,14.30%,7,140,0,4.80%,95.20%,0.00%,58,60,147,40.80% +116308,850,3126,State-funded primary,107,59,48,55.10%,44.90%,1,0.90%,10,9.30%,6,101,0,5.60%,94.40%,0.00%,4,4,107,3.70% +116309,850,3132,State-funded primary,261,128,133,49.00%,51.00%,8,3.10%,14,5.40%,10,251,0,3.80%,96.20%,0.00%,44,44,253,17.40% +116310,850,3136,State-funded primary,206,105,101,51.00%,49.00%,0,0.00%,14,6.80%,9,197,0,4.40%,95.60%,0.00%,44,45,206,21.80% +116311,850,3137,State-funded primary,326,173,153,53.10%,46.90%,5,1.50%,31,9.50%,22,304,0,6.70%,93.30%,0.00%,39,44,326,13.50% +116312,850,3138,State-funded primary,178,84,94,47.20%,52.80%,8,4.50%,22,12.40%,3,175,0,1.70%,98.30%,0.00%,9,10,178,5.60% +116313,850,3142,State-funded primary,393,201,192,51.10%,48.90%,11,2.80%,32,8.10%,12,378,3,3.10%,96.20%,0.80%,55,55,393,14.00% +116314,850,3143,State-funded primary,250,129,121,51.60%,48.40%,12,4.80%,31,12.40%,2,248,0,0.80%,99.20%,0.00%,49,49,250,19.60% +116315,850,3144,State-funded primary,118,51,67,43.20%,56.80%,2,1.70%,13,11.00%,13,105,0,11.00%,89.00%,0.00%,8,8,118,6.80% +116316,850,3146,State-funded primary,145,70,75,48.30%,51.70%,6,4.10%,26,17.90%,1,144,0,0.70%,99.30%,0.00%,19,19,145,13.10% +116317,850,3147,State-funded primary,129,77,52,59.70%,40.30%,3,2.30%,11,8.50%,9,120,0,7.00%,93.00%,0.00%,6,6,129,4.70% +116318,850,3149,State-funded primary,194,84,110,43.30%,56.70%,2,1.00%,38,19.60%,5,189,0,2.60%,97.40%,0.00%,28,28,194,14.40% +116319,850,3150,State-funded primary,103,52,51,50.50%,49.50%,5,4.90%,22,21.40%,2,101,0,1.90%,98.10%,0.00%,8,10,103,9.70% +116320,850,3156,State-funded primary,149,74,75,49.70%,50.30%,4,2.70%,14,9.40%,9,140,0,6.00%,94.00%,0.00%,8,8,149,5.40% +116321,850,3163,State-funded primary,64,39,25,60.90%,39.10%,4,6.30%,11,17.20%,3,61,0,4.70%,95.30%,0.00%,8,8,64,12.50% +116322,850,3168,State-funded primary,59,28,31,47.50%,52.50%,2,3.40%,9,15.30%,0,59,0,0.00%,100.00%,0.00%,7,8,59,13.60% +116323,850,3169,State-funded primary,54,27,27,50.00%,50.00%,2,3.70%,12,22.20%,6,48,0,11.10%,88.90%,0.00%,8,8,54,14.80% +116324,850,3170,State-funded primary,456,228,228,50.00%,50.00%,8,1.80%,39,8.60%,27,429,0,5.90%,94.10%,0.00%,61,63,456,13.80% +116325,850,3171,State-funded primary,246,122,124,49.60%,50.40%,11,4.50%,33,13.40%,7,239,0,2.80%,97.20%,0.00%,56,58,246,23.60% +116326,850,3172,State-funded primary,188,95,93,50.50%,49.50%,2,1.10%,30,16.00%,33,152,3,17.60%,80.90%,1.60%,43,45,188,23.90% +116327,850,3176,State-funded primary,410,200,210,48.80%,51.20%,5,1.20%,40,9.80%,34,376,0,8.30%,91.70%,0.00%,32,32,410,7.80% +116328,850,3177,State-funded primary,111,56,55,50.50%,49.50%,2,1.80%,13,11.70%,1,110,0,0.90%,99.10%,0.00%,15,17,111,15.30% +116329,850,3181,State-funded primary,416,206,210,49.50%,50.50%,20,4.80%,35,8.40%,93,323,0,22.40%,77.60%,0.00%,44,45,416,10.80% +116330,850,3183,State-funded primary,368,183,185,49.70%,50.30%,7,1.90%,43,11.70%,26,342,0,7.10%,92.90%,0.00%,54,56,368,15.20% +116331,850,3184,State-funded primary,603,292,311,48.40%,51.60%,8,1.30%,73,12.10%,52,551,0,8.60%,91.40%,0.00%,89,94,603,15.60% +116332,850,3185,State-funded primary,263,126,137,47.90%,52.10%,10,3.80%,33,12.50%,86,177,0,32.70%,67.30%,0.00%,32,34,263,12.90% +116333,850,3186,State-funded primary,363,162,201,44.60%,55.40%,14,3.90%,41,11.30%,95,268,0,26.20%,73.80%,0.00%,68,71,363,19.60% +116334,850,3190,State-funded primary,336,142,194,42.30%,57.70%,10,3.00%,90,26.80%,20,316,0,6.00%,94.00%,0.00%,130,135,336,40.20% +116335,850,3191,State-funded primary,179,94,85,52.50%,47.50%,3,1.70%,48,26.80%,8,171,0,4.50%,95.50%,0.00%,47,48,179,26.80% +116336,850,3192,State-funded primary,322,153,169,47.50%,52.50%,5,1.60%,80,24.80%,38,284,0,11.80%,88.20%,0.00%,135,138,322,42.90% +116337,850,3196,State-funded primary,213,113,100,53.10%,46.90%,8,3.80%,26,12.20%,5,208,0,2.30%,97.70%,0.00%,14,16,213,7.50% +116338,850,3197,State-funded primary,358,171,187,47.80%,52.20%,7,2.00%,43,12.00%,18,340,0,5.00%,95.00%,0.00%,40,42,358,11.70% +116339,852,3200,State-funded primary,418,215,203,51.40%,48.60%,12,2.90%,62,14.80%,74,344,0,17.70%,82.30%,0.00%,88,89,418,21.30% +116342,852,3203,State-funded secondary,599,270,329,45.10%,54.90%,20,3.30%,86,14.40%,290,309,0,48.40%,51.60%,0.00%,233,248,599,41.40% +116343,852,3205,State-funded primary,580,277,303,47.80%,52.20%,11,1.90%,80,13.80%,458,120,2,79.00%,20.70%,0.30%,239,234,527,44.40% +116344,851,3212,State-funded primary,421,214,207,50.80%,49.20%,12,2.90%,70,16.60%,147,269,5,34.90%,63.90%,1.20%,102,102,421,24.20% +116345,850,3213,State-funded primary,101,47,54,46.50%,53.50%,5,5.00%,14,13.90%,11,89,1,10.90%,88.10%,1.00%,6,7,101,6.90% +116346,851,3214,State-funded primary,362,176,186,48.60%,51.40%,14,3.90%,76,21.00%,136,226,0,37.60%,62.40%,0.00%,172,171,335,51.00% +116348,850,3300,State-funded primary,99,44,55,44.40%,55.60%,1,1.00%,6,6.10%,3,95,1,3.00%,96.00%,1.00%,1,1,99,1.00% +116349,850,3301,State-funded primary,88,38,50,43.20%,56.80%,1,1.10%,12,13.60%,9,79,0,10.20%,89.80%,0.00%,11,11,88,12.50% +116350,850,3305,State-funded primary,352,162,190,46.00%,54.00%,8,2.30%,44,12.50%,36,316,0,10.20%,89.80%,0.00%,23,25,352,7.10% +116351,850,3308,State-funded primary,103,57,46,55.30%,44.70%,12,11.70%,8,7.80%,4,99,0,3.90%,96.10%,0.00%,16,16,103,15.50% +116352,850,3310,State-funded primary,208,99,109,47.60%,52.40%,5,2.40%,27,13.00%,23,185,0,11.10%,88.90%,0.00%,24,25,208,12.00% +116353,850,3311,State-funded primary,133,67,66,50.40%,49.60%,11,8.30%,4,3.00%,6,127,0,4.50%,95.50%,0.00%,9,10,133,7.50% +116354,850,3318,State-funded primary,107,59,48,55.10%,44.90%,3,2.80%,7,6.50%,10,97,0,9.30%,90.70%,0.00%,14,14,107,13.10% +116355,850,3321,State-funded primary,108,61,47,56.50%,43.50%,4,3.70%,11,10.20%,20,88,0,18.50%,81.50%,0.00%,15,15,108,13.90% +116356,850,3325,State-funded primary,114,58,56,50.90%,49.10%,4,3.50%,3,2.60%,5,109,0,4.40%,95.60%,0.00%,9,9,114,7.90% +116357,850,3326,State-funded primary,216,118,98,54.60%,45.40%,3,1.40%,26,12.00%,20,196,0,9.30%,90.70%,0.00%,26,27,216,12.50% +116358,850,3330,State-funded primary,549,295,254,53.70%,46.30%,16,2.90%,68,12.40%,60,489,0,10.90%,89.10%,0.00%,53,54,549,9.80% +116360,850,3344,State-funded primary,200,109,91,54.50%,45.50%,6,3.00%,28,14.00%,12,188,0,6.00%,94.00%,0.00%,15,17,200,8.50% +116361,850,3345,State-funded primary,151,67,84,44.40%,55.60%,7,4.60%,22,14.60%,8,143,0,5.30%,94.70%,0.00%,13,16,151,10.60% +116362,850,3346,State-funded primary,217,111,106,51.20%,48.80%,6,2.80%,23,10.60%,11,206,0,5.10%,94.90%,0.00%,57,58,217,26.70% +116363,850,3356,State-funded primary,85,48,37,56.50%,43.50%,3,3.50%,7,8.20%,4,81,0,4.70%,95.30%,0.00%,19,20,85,23.50% +116364,850,3357,State-funded primary,105,49,56,46.70%,53.30%,2,1.90%,11,10.50%,7,98,0,6.70%,93.30%,0.00%,0,0,105,0.00% +116365,850,3358,State-funded primary,174,77,97,44.30%,55.70%,3,1.70%,10,5.70%,23,151,0,13.20%,86.80%,0.00%,24,24,174,13.80% +116366,850,3360,State-funded primary,58,29,29,50.00%,50.00%,3,5.20%,0,0.00%,6,52,0,10.30%,89.70%,0.00%,4,4,58,6.90% +116368,850,3382,State-funded primary,202,104,98,51.50%,48.50%,7,3.50%,27,13.40%,22,178,2,10.90%,88.10%,1.00%,67,67,202,33.20% +116369,850,3389,State-funded primary,180,96,84,53.30%,46.70%,9,5.00%,19,10.60%,5,175,0,2.80%,97.20%,0.00%,10,10,180,5.60% +116370,850,3390,State-funded primary,89,38,51,42.70%,57.30%,1,1.10%,17,19.10%,8,81,0,9.00%,91.00%,0.00%,10,10,89,11.20% +116371,850,3392,State-funded primary,428,205,223,47.90%,52.10%,6,1.40%,24,5.60%,14,414,0,3.30%,96.70%,0.00%,58,59,428,13.80% +116372,850,3395,State-funded primary,102,45,57,44.10%,55.90%,2,2.00%,7,6.90%,4,98,0,3.90%,96.10%,0.00%,9,9,102,8.80% +116373,850,3396,State-funded primary,204,102,102,50.00%,50.00%,2,1.00%,39,19.10%,7,197,0,3.40%,96.60%,0.00%,11,11,204,5.40% +116374,850,3399,State-funded primary,147,71,76,48.30%,51.70%,2,1.40%,7,4.80%,9,138,0,6.10%,93.90%,0.00%,2,2,147,1.40% +116375,850,3401,State-funded primary,198,93,105,47.00%,53.00%,2,1.00%,23,11.60%,7,191,0,3.50%,96.50%,0.00%,8,9,198,4.50% +116376,850,3404,State-funded primary,217,100,117,46.10%,53.90%,5,2.30%,34,15.70%,56,161,0,25.80%,74.20%,0.00%,37,37,217,17.10% +116377,850,3407,State-funded primary,315,164,151,52.10%,47.90%,9,2.90%,42,13.30%,38,277,0,12.10%,87.90%,0.00%,42,44,315,14.00% +116378,850,3409,State-funded primary,101,53,48,52.50%,47.50%,1,1.00%,18,17.80%,8,93,0,7.90%,92.10%,0.00%,16,19,101,18.80% +116380,850,3415,State-funded primary,435,227,208,52.20%,47.80%,10,2.30%,20,4.60%,205,229,1,47.10%,52.60%,0.20%,27,29,435,6.70% +116381,850,3417,State-funded primary,403,193,210,47.90%,52.10%,13,3.20%,27,6.70%,87,316,0,21.60%,78.40%,0.00%,70,70,403,17.40% +116382,850,3418,State-funded primary,215,108,107,50.20%,49.80%,5,2.30%,13,6.00%,82,133,0,38.10%,61.90%,0.00%,14,15,215,7.00% +116383,850,3419,State-funded primary,194,90,104,46.40%,53.60%,2,1.00%,19,9.80%,61,133,0,31.40%,68.60%,0.00%,16,16,194,8.20% +116385,851,3422,State-funded primary,243,126,117,51.90%,48.10%,7,2.90%,27,11.10%,140,101,2,57.60%,41.60%,0.80%,65,67,213,31.50% +116386,851,3423,State-funded primary,350,181,169,51.70%,48.30%,11,3.10%,36,10.30%,165,184,1,47.10%,52.60%,0.30%,61,63,313,20.10% +116387,850,3426,State-funded primary,203,110,93,54.20%,45.80%,4,2.00%,19,9.40%,1,202,0,0.50%,99.50%,0.00%,8,8,174,4.60% +116388,850,3500,State-funded primary,196,93,103,47.40%,52.60%,10,5.10%,24,12.20%,52,143,1,26.50%,73.00%,0.50%,27,29,196,14.80% +116389,850,3501,State-funded primary,104,51,53,49.00%,51.00%,2,1.90%,7,6.70%,16,88,0,15.40%,84.60%,0.00%,9,9,104,8.70% +116390,850,3551,State-funded primary,252,118,134,46.80%,53.20%,5,2.00%,25,9.90%,64,188,0,25.40%,74.60%,0.00%,24,25,218,11.50% +116391,850,3553,State-funded primary,231,116,115,50.20%,49.80%,12,5.20%,33,14.30%,86,145,0,37.20%,62.80%,0.00%,37,39,231,16.90% +116392,850,3600,State-funded primary,255,113,142,44.30%,55.70%,14,5.50%,28,11.00%,8,247,0,3.10%,96.90%,0.00%,19,21,255,8.20% +116393,850,3602,State-funded primary,376,197,179,52.40%,47.60%,11,2.90%,82,21.80%,25,351,0,6.60%,93.40%,0.00%,135,141,376,37.50% +116394,850,3650,State-funded primary,199,97,102,48.70%,51.30%,6,3.00%,37,18.60%,47,152,0,23.60%,76.40%,0.00%,59,60,199,30.20% +116395,852,3655,State-funded primary,314,156,158,49.70%,50.30%,8,2.50%,22,7.00%,73,241,0,23.20%,76.80%,0.00%,32,33,314,10.50% +116397,852,3657,State-funded primary,418,206,212,49.30%,50.70%,7,1.70%,93,22.20%,165,253,0,39.50%,60.50%,0.00%,102,102,418,24.40% +116398,852,3658,State-funded primary,418,198,220,47.40%,52.60%,6,1.40%,54,12.90%,184,231,3,44.00%,55.30%,0.70%,104,105,418,25.10% +116399,850,3660,State-funded primary,90,47,43,52.20%,47.80%,3,3.30%,12,13.30%,4,86,0,4.40%,95.60%,0.00%,6,7,90,7.80% +116400,850,3661,State-funded primary,314,148,166,47.10%,52.90%,6,1.90%,21,6.70%,19,295,0,6.10%,93.90%,0.00%,32,33,314,10.50% +116402,850,3663,State-funded primary,410,221,189,53.90%,46.10%,6,1.50%,16,3.90%,44,366,0,10.70%,89.30%,0.00%,17,17,410,4.10% +116403,850,3666,State-funded primary,167,77,90,46.10%,53.90%,6,3.60%,21,12.60%,14,153,0,8.40%,91.60%,0.00%,5,5,167,3.00% +116405,850,4001,State-funded secondary,1002,473,529,47.20%,52.80%,26,2.60%,109,10.90%,101,901,0,10.10%,89.90%,0.00%,168,180,1002,18.00% +116407,850,4012,State-funded secondary,1625,791,834,48.70%,51.30%,50,3.10%,139,8.60%,145,1478,2,8.90%,91.00%,0.10%,127,140,1625,8.60% +116411,850,4113,State-funded secondary,1051,503,548,47.90%,52.10%,49,4.70%,96,9.10%,110,941,0,10.50%,89.50%,0.00%,143,156,1051,14.80% +116412,850,4117,State-funded secondary,1139,567,572,49.80%,50.20%,40,3.50%,107,9.40%,48,1090,1,4.20%,95.70%,0.10%,82,91,1139,8.00% +116413,850,4119,State-funded secondary,1162,541,621,46.60%,53.40%,27,2.30%,243,20.90%,70,1089,3,6.00%,93.70%,0.30%,236,271,1162,23.30% +116418,850,4133,State-funded secondary,684,336,348,49.10%,50.90%,52,7.60%,84,12.30%,12,672,0,1.80%,98.20%,0.00%,164,185,684,27.00% +116419,850,4136,State-funded secondary,1791,860,931,48.00%,52.00%,34,1.90%,212,11.80%,64,1727,0,3.60%,96.40%,0.00%,196,226,1791,12.60% +116422,850,4144,State-funded secondary,1014,508,506,50.10%,49.90%,25,2.50%,80,7.90%,38,976,0,3.70%,96.30%,0.00%,125,152,1014,15.00% +116423,850,4147,State-funded secondary,573,291,282,50.80%,49.20%,26,4.50%,109,19.00%,26,547,0,4.50%,95.50%,0.00%,118,139,573,24.30% +116424,850,4149,State-funded secondary,1371,703,668,51.30%,48.70%,28,2.00%,97,7.10%,62,1308,1,4.50%,95.40%,0.10%,192,205,1371,15.00% +116426,850,4153,State-funded secondary,400,189,211,47.30%,52.80%,17,4.30%,76,19.00%,23,377,0,5.80%,94.30%,0.00%,72,87,400,21.80% +116427,850,4156,State-funded secondary,885,444,441,50.20%,49.80%,16,1.80%,119,13.40%,80,802,3,9.00%,90.60%,0.30%,251,274,885,31.00% +116428,850,4159,State-funded secondary,889,456,433,51.30%,48.70%,43,4.80%,207,23.30%,13,876,0,1.50%,98.50%,0.00%,191,213,889,24.00% +116430,850,4162,State-funded secondary,463,246,217,53.10%,46.90%,14,3.00%,58,12.50%,17,446,0,3.70%,96.30%,0.00%,82,96,463,20.70% +116431,850,4163,State-funded secondary,981,492,489,50.20%,49.80%,45,4.60%,110,11.20%,88,893,0,9.00%,91.00%,0.00%,225,241,981,24.60% +116432,850,4164,State-funded secondary,671,311,360,46.30%,53.70%,42,6.30%,77,11.50%,138,532,1,20.60%,79.30%,0.10%,204,217,671,32.30% +116433,850,4166,State-funded secondary,1251,625,626,50.00%,50.00%,21,1.70%,153,12.20%,75,1175,1,6.00%,93.90%,0.10%,105,108,1021,10.60% +116436,850,4171,State-funded secondary,1530,754,776,49.30%,50.70%,36,2.40%,110,7.20%,115,1414,1,7.50%,92.40%,0.10%,142,161,1530,10.50% +116437,850,4173,State-funded secondary,1262,591,671,46.80%,53.20%,39,3.10%,129,10.20%,31,1231,0,2.50%,97.50%,0.00%,199,226,1262,17.90% +116438,850,4174,State-funded secondary,1056,549,507,52.00%,48.00%,29,2.70%,64,6.10%,59,992,5,5.60%,93.90%,0.50%,144,164,1056,15.50% +116440,850,4180,State-funded secondary,762,349,413,45.80%,54.20%,36,4.70%,132,17.30%,136,622,4,17.80%,81.60%,0.50%,213,229,762,30.10% +116441,850,4182,State-funded secondary,1206,571,635,47.30%,52.70%,35,2.90%,134,11.10%,88,1118,0,7.30%,92.70%,0.00%,184,206,1206,17.10% +116442,850,4183,State-funded secondary,711,354,357,49.80%,50.20%,36,5.10%,56,7.90%,44,667,0,6.20%,93.80%,0.00%,109,119,711,16.70% +116445,850,4191,State-funded secondary,1403,730,673,52.00%,48.00%,78,5.60%,166,11.80%,135,1266,2,9.60%,90.20%,0.10%,430,482,1403,34.40% +116446,850,4203,State-funded secondary,961,470,491,48.90%,51.10%,34,3.50%,152,15.80%,161,800,0,16.80%,83.20%,0.00%,210,234,961,24.30% +116447,850,4204,State-funded secondary,647,321,326,49.60%,50.40%,33,5.10%,140,21.60%,86,560,1,13.30%,86.60%,0.20%,215,233,647,36.00% +116448,850,4206,State-funded secondary,1015,504,511,49.70%,50.30%,44,4.30%,133,13.10%,157,856,2,15.50%,84.30%,0.20%,123,152,1015,15.00% +116450,852,4262,State-funded secondary,899,407,492,45.30%,54.70%,25,2.80%,195,21.70%,274,625,0,30.50%,69.50%,0.00%,285,316,899,35.20% +116453,852,4270,State-funded secondary,1072,492,580,45.90%,54.10%,30,2.80%,243,22.70%,124,948,0,11.60%,88.40%,0.00%,526,554,1072,51.70% +116458,852,4278,State-funded secondary,2020,982,1038,48.60%,51.40%,122,6.00%,375,18.60%,373,1644,3,18.50%,81.40%,0.10%,534,533,1864,28.60% +116463,851,4303,State-funded secondary,1474,748,726,50.70%,49.30%,33,2.20%,198,13.40%,149,1323,2,10.10%,89.80%,0.10%,434,449,1474,30.50% +116465,852,4306,State-funded secondary,844,413,431,48.90%,51.10%,24,2.80%,157,18.60%,151,693,0,17.90%,82.10%,0.00%,429,443,844,52.50% +116466,850,4307,State-funded secondary,853,416,437,48.80%,51.20%,10,1.20%,135,15.80%,36,809,8,4.20%,94.80%,0.90%,158,179,853,21.00% +116468,850,4310,State-funded secondary,1795,860,935,47.90%,52.10%,37,2.10%,158,8.80%,225,1570,0,12.50%,87.50%,0.00%,227,246,1795,13.70% +116469,852,4311,State-funded secondary,1241,471,770,38.00%,62.00%,24,1.90%,189,15.20%,570,670,1,45.90%,54.00%,0.10%,431,459,1241,37.00% +116473,850,4316,State-funded secondary,950,489,461,51.50%,48.50%,48,5.10%,312,32.80%,11,939,0,1.20%,98.80%,0.00%,475,522,950,54.90% +116475,850,4318,State-funded secondary,671,322,349,48.00%,52.00%,19,2.80%,120,17.90%,34,632,5,5.10%,94.20%,0.70%,182,194,671,28.90% +116478,850,4604,State-funded secondary,890,447,443,50.20%,49.80%,29,3.30%,70,7.90%,185,704,1,20.80%,79.10%,0.10%,62,81,890,9.10% +116482,850,5202,State-funded primary,609,308,301,50.60%,49.40%,20,3.30%,91,14.90%,36,572,1,5.90%,93.90%,0.20%,157,165,609,27.10% +116483,850,5203,State-funded primary,237,117,120,49.40%,50.60%,11,4.60%,37,15.60%,17,220,0,7.20%,92.80%,0.00%,66,70,237,29.50% +116486,850,5206,State-funded primary,397,195,202,49.10%,50.90%,12,3.00%,49,12.30%,11,386,0,2.80%,97.20%,0.00%,39,47,329,14.30% +116487,851,5207,State-funded primary,303,165,138,54.50%,45.50%,7,2.30%,44,14.50%,68,234,1,22.40%,77.20%,0.30%,127,128,303,42.20% +116488,850,5208,State-funded primary,258,132,126,51.20%,48.80%,25,9.70%,44,17.10%,23,235,0,8.90%,91.10%,0.00%,70,78,258,30.20% +116489,850,5209,State-funded primary,432,233,199,53.90%,46.10%,4,0.90%,27,6.30%,70,362,0,16.20%,83.80%,0.00%,42,45,432,10.40% +116490,850,5210,State-funded primary,209,94,115,45.00%,55.00%,4,1.90%,11,5.30%,17,192,0,8.10%,91.90%,0.00%,44,45,209,21.50% +116498,850,5405,State-funded secondary,1092,551,541,50.50%,49.50%,57,5.20%,129,11.80%,24,1068,0,2.20%,97.80%,0.00%,142,164,1092,15.00% +116502,850,5410,State-funded secondary,932,468,464,50.20%,49.80%,21,2.30%,117,12.60%,40,890,2,4.30%,95.50%,0.20%,103,121,932,13.00% +116504,850,5412,State-funded secondary,624,298,326,47.80%,52.20%,62,9.90%,65,10.40%,10,614,0,1.60%,98.40%,0.00%,140,160,624,25.60% +116505,851,5413,State-funded secondary,1120,550,570,49.10%,50.90%,23,2.10%,155,13.80%,483,637,0,43.10%,56.90%,0.00%,297,321,1120,28.70% +116506,850,5414,State-funded secondary,880,441,439,50.10%,49.90%,21,2.40%,55,6.30%,23,850,7,2.60%,96.60%,0.80%,147,160,880,18.20% +116507,852,5415,State-funded secondary,994,399,595,40.10%,59.90%,22,2.20%,137,13.80%,483,511,0,48.60%,51.40%,0.00%,132,151,994,15.20% +116511,850,5950,State-funded special school,222,65,157,29.30%,70.70%,220,99.10%,2,0.90%,16,206,0,7.20%,92.80%,0.00%,72,59,172,34.30% +116513,850,6011,Independent school,256,141,115,55.10%,44.90%,6,2.30%,54,21.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116514,850,6060,Independent school,280,141,139,50.40%,49.60%,1,0.40%,17,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116515,850,6035,Independent school,639,301,338,47.10%,52.90%,8,1.30%,102,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116516,850,6019,Independent school,283,136,147,48.10%,51.90%,2,0.70%,119,42.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116517,850,6020,Independent school,555,555,0,100.00%,0.00%,0,0.00%,88,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116518,850,6036,Independent school,319,302,17,94.70%,5.30%,7,2.20%,82,25.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116519,850,6042,Independent school,132,52,80,39.40%,60.60%,0,0.00%,20,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116520,850,6006,Independent school,393,176,217,44.80%,55.20%,0,0.00%,61,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116521,850,6064,Independent school,669,276,393,41.30%,58.70%,0,0.00%,203,30.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116522,850,6056,Independent school,252,134,118,53.20%,46.80%,1,0.40%,66,26.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116524,850,6012,Independent school,500,237,263,47.40%,52.60%,4,0.80%,128,25.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116525,850,6028,Independent school,363,162,201,44.60%,55.40%,3,0.80%,85,23.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116526,850,6072,Independent school,119,10,109,8.40%,91.60%,0,0.00%,2,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116527,850,6007,Independent school,477,241,236,50.50%,49.50%,0,0.00%,140,29.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116528,850,6004,Independent school,295,140,155,47.50%,52.50%,2,0.70%,52,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116532,850,6037,Independent school,715,17,698,2.40%,97.60%,1,0.10%,84,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116534,850,6038,Independent school,705,696,9,98.70%,1.30%,2,0.30%,107,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116535,850,6013,Independent school,239,0,239,0.00%,100.00%,2,0.80%,72,30.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116536,850,6008,Independent school,440,176,264,40.00%,60.00%,1,0.20%,60,13.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116537,850,6073,Independent school,358,210,148,58.70%,41.30%,3,0.80%,95,26.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116542,850,6015,Independent school,474,240,234,50.60%,49.40%,3,0.60%,68,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116543,850,6022,Independent school,633,33,600,5.20%,94.80%,3,0.50%,75,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116550,850,6024,Independent school,314,156,158,49.70%,50.30%,1,0.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116551,850,6009,Independent school,256,121,135,47.30%,52.70%,1,0.40%,58,22.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116552,850,6002,Independent school,292,138,154,47.30%,52.70%,2,0.70%,61,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116553,850,6045,Independent school,296,134,162,45.30%,54.70%,1,0.30%,30,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116555,850,6046,Independent school,146,61,85,41.80%,58.20%,104,71.20%,21,14.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116558,850,6047,Independent school,443,206,237,46.50%,53.50%,1,0.20%,57,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116559,850,6048,Independent school,222,110,112,49.50%,50.50%,3,1.40%,43,19.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116563,850,6026,Independent school,345,159,186,46.10%,53.90%,1,0.30%,73,21.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116564,850,6030,Independent school,44,11,33,25.00%,75.00%,43,97.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116565,850,6031,Independent school,27,7,20,25.90%,74.10%,26,96.30%,1,3.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116567,852,6003,Independent school,33,15,18,45.50%,54.50%,0,0.00%,5,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116568,852,6000,Independent school,357,157,200,44.00%,56.00%,6,1.70%,34,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116569,852,6005,Independent school,101,47,54,46.50%,53.50%,1,1.00%,7,6.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116573,851,6002,Independent school,492,227,265,46.10%,53.90%,1,0.20%,161,32.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116574,850,6069,Independent school,84,55,29,65.50%,34.50%,0,0.00%,14,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116575,850,6049,Independent school,419,187,232,44.60%,55.40%,2,0.50%,109,26.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116579,850,6040,Independent school,1288,554,734,43.00%,57.00%,1,0.10%,158,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116580,852,6006,Independent school,987,422,565,42.80%,57.20%,2,0.20%,168,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116581,851,6003,Independent school,511,501,10,98.00%,2.00%,0,0.00%,35,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116583,851,6004,Independent school,1348,556,792,41.20%,58.80%,2,0.10%,310,23.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116584,850,6032,Independent school,63,0,63,0.00%,100.00%,63,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116586,850,6017,Independent school,105,24,81,22.90%,77.10%,104,99.00%,1,1.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116588,850,6058,Independent school,24,4,20,16.70%,83.30%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116589,850,6005,Independent school,30,5,25,16.70%,83.30%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116590,850,6033,Independent school,240,109,131,45.40%,54.60%,0,0.00%,27,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116593,838,6033,Independent school,18,2,16,11.10%,88.90%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116594,850,6062,Independent school,69,17,52,24.60%,75.40%,0,0.00%,3,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116595,850,6050,Independent school,229,119,110,52.00%,48.00%,6,2.60%,35,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +116600,850,7009,State-funded special school,132,32,100,24.20%,75.80%,132,100.00%,0,0.00%,3,129,0,2.30%,97.70%,0.00%,67,68,132,51.50% +116603,850,7014,State-funded special school,89,0,89,0.00%,100.00%,89,100.00%,0,0.00%,0,89,0,0.00%,100.00%,0.00%,49,54,89,60.70% +116604,850,7015,State-funded special school,110,26,84,23.60%,76.40%,90,81.80%,20,18.20%,19,91,0,17.30%,82.70%,0.00%,30,33,90,36.70% +116605,850,7016,State-funded special school,99,17,82,17.20%,82.80%,99,100.00%,0,0.00%,11,88,0,11.10%,88.90%,0.00%,26,26,99,26.30% +116607,850,7018,State-funded special school,133,51,82,38.30%,61.70%,133,100.00%,0,0.00%,3,130,0,2.30%,97.70%,0.00%,57,59,133,44.40% +116609,850,7020,State-funded special school,86,31,55,36.00%,64.00%,79,91.90%,7,8.10%,11,75,0,12.80%,87.20%,0.00%,36,32,70,45.70% +116611,850,7023,State-funded special school,99,41,58,41.40%,58.60%,95,96.00%,4,4.00%,2,97,0,2.00%,98.00%,0.00%,43,40,81,49.40% +116614,850,7026,State-funded special school,99,28,71,28.30%,71.70%,99,100.00%,0,0.00%,14,85,0,14.10%,85.90%,0.00%,34,26,84,31.00% +116617,850,7032,State-funded special school,190,56,134,29.50%,70.50%,190,100.00%,0,0.00%,0,190,0,0.00%,100.00%,0.00%,87,92,190,48.40% +116618,850,7033,State-funded special school,104,34,70,32.70%,67.30%,103,99.00%,1,1.00%,6,98,0,5.80%,94.20%,0.00%,36,26,77,33.80% +116620,852,7035,State-funded special school,271,71,200,26.20%,73.80%,266,98.20%,5,1.80%,77,194,0,28.40%,71.60%,0.00%,140,141,271,52.00% +116622,852,7037,State-funded special school,92,39,53,42.40%,57.60%,86,93.50%,6,6.50%,23,68,1,25.00%,73.90%,1.10%,39,45,91,49.50% +116624,852,7039,State-funded special school,69,0,69,0.00%,100.00%,69,100.00%,0,0.00%,1,68,0,1.40%,98.60%,0.00%,54,57,69,82.60% +116625,852,7040,State-funded special school,50,5,45,10.00%,90.00%,50,100.00%,0,0.00%,1,49,0,2.00%,98.00%,0.00%,35,40,50,80.00% +116633,850,7051,State-funded special school,82,7,75,8.50%,91.50%,82,100.00%,0,0.00%,1,81,0,1.20%,98.80%,0.00%,50,53,82,64.60% +116634,850,7053,State-funded special school,43,18,25,41.90%,58.10%,35,81.40%,8,18.60%,8,35,0,18.60%,81.40%,0.00%,8,8,41,19.50% +116635,850,7067,State-funded special school,57,2,55,3.50%,96.50%,57,100.00%,0,0.00%,0,57,0,0.00%,100.00%,0.00%,36,37,57,64.90% +116636,850,7068,Non-maintained special school,74,31,43,41.90%,58.10%,74,100.00%,0,0.00%,1,73,0,1.40%,98.60%,0.00%,14,25,63,39.70% +116637,850,7070,State-funded special school,157,49,108,31.20%,68.80%,157,100.00%,0,0.00%,4,152,1,2.50%,96.80%,0.60%,58,60,157,38.20% +116639,850,7072,State-funded special school,107,34,73,31.80%,68.20%,107,100.00%,0,0.00%,2,105,0,1.90%,98.10%,0.00%,60,65,107,60.70% +116640,850,7073,State-funded special school,268,73,195,27.20%,72.80%,268,100.00%,0,0.00%,35,233,0,13.10%,86.90%,0.00%,78,88,268,32.80% +116641,850,7075,State-funded special school,93,25,68,26.90%,73.10%,93,100.00%,0,0.00%,3,90,0,3.20%,96.80%,0.00%,36,40,93,43.00% +116642,850,7076,State-funded special school,168,45,123,26.80%,73.20%,168,100.00%,0,0.00%,11,157,0,6.50%,93.50%,0.00%,52,52,168,31.00% +116645,884,2001,State-funded primary,55,30,25,54.50%,45.50%,1,1.80%,10,18.20%,3,52,0,5.50%,94.50%,0.00%,16,16,55,29.10% +116646,885,2002,State-funded primary,332,170,162,51.20%,48.80%,3,0.90%,31,9.30%,7,324,1,2.10%,97.60%,0.30%,21,21,298,7.00% +116650,885,2006,State-funded primary,100,48,52,48.00%,52.00%,0,0.00%,20,20.00%,7,93,0,7.00%,93.00%,0.00%,8,8,100,8.00% +116652,885,2008,State-funded primary,97,44,53,45.40%,54.60%,1,1.00%,11,11.30%,1,96,0,1.00%,99.00%,0.00%,3,3,97,3.10% +116656,885,2013,State-funded primary,83,43,40,51.80%,48.20%,1,1.20%,19,22.90%,4,79,0,4.80%,95.20%,0.00%,24,24,83,28.90% +116658,885,2015,State-funded primary,328,171,157,52.10%,47.90%,3,0.90%,58,17.70%,11,317,0,3.40%,96.60%,0.00%,80,78,294,26.50% +116659,885,2016,State-funded primary,527,270,257,51.20%,48.80%,5,0.90%,55,10.40%,9,518,0,1.70%,98.30%,0.00%,112,108,429,25.20% +116660,885,2017,State-funded primary,300,154,146,51.30%,48.70%,3,1.00%,14,4.70%,16,284,0,5.30%,94.70%,0.00%,9,9,300,3.00% +116661,885,2018,State-funded primary,150,76,74,50.70%,49.30%,3,2.00%,11,7.30%,5,145,0,3.30%,96.70%,0.00%,4,4,150,2.70% +116662,885,2019,State-funded primary,339,170,169,50.10%,49.90%,16,4.70%,72,21.20%,8,331,0,2.40%,97.60%,0.00%,39,39,301,13.00% +116663,885,2020,State-funded primary,290,135,155,46.60%,53.40%,4,1.40%,49,16.90%,6,284,0,2.10%,97.90%,0.00%,46,48,290,16.60% +116665,885,2022,State-funded primary,151,76,75,50.30%,49.70%,3,2.00%,25,16.60%,1,150,0,0.70%,99.30%,0.00%,5,6,151,4.00% +116668,884,2031,State-funded primary,97,49,48,50.50%,49.50%,1,1.00%,9,9.30%,0,89,8,0.00%,91.80%,8.20%,6,6,97,6.20% +116669,885,2032,State-funded primary,78,36,42,46.20%,53.80%,2,2.60%,10,12.80%,1,77,0,1.30%,98.70%,0.00%,14,14,78,17.90% +116670,885,2034,State-funded primary,73,40,33,54.80%,45.20%,1,1.40%,12,16.40%,0,73,0,0.00%,100.00%,0.00%,8,9,73,12.30% +116671,885,2035,State-funded primary,242,122,120,50.40%,49.60%,10,4.10%,43,17.80%,20,222,0,8.30%,91.70%,0.00%,112,107,216,49.50% +116672,885,2036,State-funded primary,370,173,197,46.80%,53.20%,6,1.60%,77,20.80%,12,358,0,3.20%,96.80%,0.00%,96,93,331,28.10% +116673,885,2041,State-funded primary,315,157,158,49.80%,50.20%,6,1.90%,44,14.00%,118,190,7,37.50%,60.30%,2.20%,71,71,315,22.50% +116674,884,2046,State-funded primary,108,40,68,37.00%,63.00%,2,1.90%,23,21.30%,1,107,0,0.90%,99.10%,0.00%,17,17,108,15.70% +116675,885,2047,State-funded primary,138,67,71,48.60%,51.40%,0,0.00%,11,8.00%,1,137,0,0.70%,99.30%,0.00%,12,12,138,8.70% +116676,885,5201,State-funded primary,115,54,61,47.00%,53.00%,1,0.90%,14,12.20%,3,112,0,2.60%,97.40%,0.00%,8,8,115,7.00% +116677,884,2053,State-funded primary,105,53,52,50.50%,49.50%,1,1.00%,20,19.00%,3,102,0,2.90%,97.10%,0.00%,17,17,105,16.20% +116678,885,2055,State-funded primary,628,311,317,49.50%,50.50%,6,1.00%,76,12.10%,49,579,0,7.80%,92.20%,0.00%,18,19,628,3.00% +116679,884,2056,State-funded primary,134,69,65,51.50%,48.50%,5,3.70%,33,24.60%,32,102,0,23.90%,76.10%,0.00%,47,45,128,35.20% +116680,884,2057,State-funded primary,265,119,146,44.90%,55.10%,51,19.20%,39,14.70%,9,256,0,3.40%,96.60%,0.00%,29,29,265,10.90% +116684,884,2063,State-funded primary,648,283,365,43.70%,56.30%,8,1.20%,144,22.20%,110,537,1,17.00%,82.90%,0.20%,193,199,602,33.10% +116685,884,2067,State-funded primary,358,169,189,47.20%,52.80%,3,0.80%,85,23.70%,93,264,1,26.00%,73.70%,0.30%,117,120,349,34.40% +116686,884,2071,State-funded primary,571,282,289,49.40%,50.60%,11,1.90%,66,11.60%,104,467,0,18.20%,81.80%,0.00%,111,114,571,20.00% +116701,884,2096,State-funded primary,216,97,119,44.90%,55.10%,8,3.70%,33,15.30%,26,190,0,12.00%,88.00%,0.00%,56,58,189,30.70% +116702,884,2098,State-funded primary,391,168,223,43.00%,57.00%,9,2.30%,63,16.10%,69,322,0,17.60%,82.40%,0.00%,103,98,348,28.20% +116705,884,2101,State-funded primary,65,35,30,53.80%,46.20%,1,1.50%,6,9.20%,4,61,0,6.20%,93.80%,0.00%,10,10,65,15.40% +116707,884,2103,State-funded primary,102,54,48,52.90%,47.10%,1,1.00%,26,25.50%,6,96,0,5.90%,94.10%,0.00%,30,30,102,29.40% +116708,884,2104,State-funded primary,213,103,110,48.40%,51.60%,3,1.40%,17,8.00%,3,210,0,1.40%,98.60%,0.00%,28,28,213,13.10% +116714,884,2116,State-funded primary,62,30,32,48.40%,51.60%,1,1.60%,9,14.50%,4,58,0,6.50%,93.50%,0.00%,6,6,62,9.70% +116715,885,2118,State-funded primary,23,8,15,34.80%,65.20%,2,8.70%,4,17.40%,0,23,0,0.00%,100.00%,0.00%,5,5,23,21.70% +116716,885,2119,State-funded primary,187,96,91,51.30%,48.70%,6,3.20%,32,17.10%,4,183,0,2.10%,97.90%,0.00%,53,49,160,30.60% +116718,884,2122,State-funded primary,87,30,57,34.50%,65.50%,2,2.30%,15,17.20%,2,85,0,2.30%,97.70%,0.00%,11,11,87,12.60% +116721,885,2128,State-funded primary,297,143,154,48.10%,51.90%,5,1.70%,85,28.60%,41,255,1,13.80%,85.90%,0.30%,116,112,263,42.60% +116729,885,2136,State-funded primary,284,131,153,46.10%,53.90%,6,2.10%,47,16.50%,39,245,0,13.70%,86.30%,0.00%,66,66,284,23.20% +116730,885,2137,State-funded primary,295,131,164,44.40%,55.60%,6,2.00%,59,20.00%,32,263,0,10.80%,89.20%,0.00%,115,115,260,44.20% +116731,884,2138,State-funded primary,315,154,161,48.90%,51.10%,3,1.00%,51,16.20%,41,274,0,13.00%,87.00%,0.00%,63,65,291,22.30% +116734,884,2146,State-funded primary,89,42,47,47.20%,52.80%,2,2.20%,12,13.50%,0,89,0,0.00%,100.00%,0.00%,18,21,89,23.60% +116735,885,2147,State-funded primary,150,80,70,53.30%,46.70%,1,0.70%,4,2.70%,0,150,0,0.00%,100.00%,0.00%,10,10,150,6.70% +116736,884,2148,State-funded primary,93,39,54,41.90%,58.10%,1,1.10%,11,11.80%,7,86,0,7.50%,92.50%,0.00%,8,8,93,8.60% +116743,884,2155,State-funded primary,197,111,86,56.30%,43.70%,3,1.50%,21,10.70%,14,183,0,7.10%,92.90%,0.00%,16,17,197,8.60% +116745,884,2157,State-funded primary,61,28,33,45.90%,54.10%,3,4.90%,3,4.90%,2,59,0,3.30%,96.70%,0.00%,5,5,61,8.20% +116746,884,2158,State-funded primary,196,86,110,43.90%,56.10%,5,2.60%,30,15.30%,6,190,0,3.10%,96.90%,0.00%,46,38,158,24.10% +116748,884,2160,State-funded primary,87,41,46,47.10%,52.90%,3,3.40%,16,18.40%,8,79,0,9.20%,90.80%,0.00%,26,26,76,34.20% +116763,885,2188,State-funded primary,298,128,170,43.00%,57.00%,4,1.30%,50,16.80%,2,296,0,0.70%,99.30%,0.00%,46,48,265,18.10% +116765,885,2192,State-funded primary,232,111,121,47.80%,52.20%,3,1.30%,71,30.60%,52,180,0,22.40%,77.60%,0.00%,66,66,197,33.50% +116768,885,2197,State-funded primary,238,111,127,46.60%,53.40%,8,3.40%,23,9.70%,3,235,0,1.30%,98.70%,0.00%,27,30,211,14.20% +116769,885,2200,State-funded primary,628,318,310,50.60%,49.40%,10,1.60%,51,8.10%,36,592,0,5.70%,94.30%,0.00%,78,78,628,12.40% +116773,885,2901,State-funded primary,414,205,209,49.50%,50.50%,8,1.90%,55,13.30%,11,403,0,2.70%,97.30%,0.00%,35,37,390,9.50% +116774,885,2906,State-funded primary,107,52,55,48.60%,51.40%,10,9.30%,27,25.20%,2,105,0,1.90%,98.10%,0.00%,40,41,107,38.30% +116778,885,2916,State-funded primary,449,240,209,53.50%,46.50%,11,2.40%,73,16.30%,14,434,1,3.10%,96.70%,0.20%,119,122,449,27.20% +116780,885,3000,State-funded primary,117,58,59,49.60%,50.40%,0,0.00%,15,12.80%,2,115,0,1.70%,98.30%,0.00%,6,8,117,6.80% +116781,885,3001,State-funded primary,107,51,56,47.70%,52.30%,2,1.90%,15,14.00%,0,107,0,0.00%,100.00%,0.00%,6,6,107,5.60% +116782,885,3002,State-funded primary,168,97,71,57.70%,42.30%,5,3.00%,21,12.50%,3,164,1,1.80%,97.60%,0.60%,12,12,168,7.10% +116784,885,3005,State-funded primary,201,108,93,53.70%,46.30%,1,0.50%,22,10.90%,3,198,0,1.50%,98.50%,0.00%,19,20,201,10.00% +116785,884,3006,State-funded primary,147,67,80,45.60%,54.40%,5,3.40%,24,16.30%,1,146,0,0.70%,99.30%,0.00%,14,14,147,9.50% +116792,885,3018,State-funded primary,74,39,35,52.70%,47.30%,3,4.10%,8,10.80%,0,74,0,0.00%,100.00%,0.00%,15,16,74,21.60% +116793,885,3019,State-funded primary,205,113,92,55.10%,44.90%,7,3.40%,20,9.80%,3,202,0,1.50%,98.50%,0.00%,23,23,205,11.20% +116794,885,3020,State-funded primary,33,19,14,57.60%,42.40%,0,0.00%,6,18.20%,1,32,0,3.00%,97.00%,0.00%,15,15,33,45.50% +116795,884,3021,State-funded primary,89,36,53,40.40%,59.60%,2,2.20%,21,23.60%,12,77,0,13.50%,86.50%,0.00%,29,30,89,33.70% +116796,885,3022,State-funded primary,108,50,58,46.30%,53.70%,4,3.70%,20,18.50%,1,107,0,0.90%,99.10%,0.00%,12,14,108,13.00% +116797,884,3023,State-funded primary,170,79,91,46.50%,53.50%,2,1.20%,23,13.50%,1,169,0,0.60%,99.40%,0.00%,24,24,170,14.10% +116799,884,3026,State-funded primary,167,78,89,46.70%,53.30%,1,0.60%,25,15.00%,4,161,2,2.40%,96.40%,1.20%,20,21,167,12.60% +116800,885,3027,State-funded primary,88,42,46,47.70%,52.30%,0,0.00%,7,8.00%,2,86,0,2.30%,97.70%,0.00%,7,7,88,8.00% +116802,885,3029,State-funded primary,53,27,26,50.90%,49.10%,4,7.50%,2,3.80%,1,52,0,1.90%,98.10%,0.00%,7,9,53,17.00% +116804,884,3035,State-funded primary,109,52,57,47.70%,52.30%,3,2.80%,11,10.10%,4,105,0,3.70%,96.30%,0.00%,13,13,109,11.90% +116806,885,3038,State-funded primary,69,31,38,44.90%,55.10%,0,0.00%,9,13.00%,0,69,0,0.00%,100.00%,0.00%,4,4,69,5.80% +116807,885,3039,State-funded primary,104,59,45,56.70%,43.30%,3,2.90%,8,7.70%,0,104,0,0.00%,100.00%,0.00%,4,4,104,3.80% +116808,885,3040,State-funded primary,79,40,39,50.60%,49.40%,1,1.30%,8,10.10%,2,77,0,2.50%,97.50%,0.00%,3,4,79,5.10% +116810,885,3042,State-funded primary,320,146,174,45.60%,54.40%,13,4.10%,66,20.60%,75,245,0,23.40%,76.60%,0.00%,80,82,320,25.60% +116811,885,3043,State-funded primary,376,187,189,49.70%,50.30%,7,1.90%,61,16.20%,57,319,0,15.20%,84.80%,0.00%,69,68,305,22.30% +116813,884,3046,State-funded primary,130,60,70,46.20%,53.80%,2,1.50%,22,16.90%,6,124,0,4.60%,95.40%,0.00%,14,14,130,10.80% +116814,884,3047,State-funded primary,207,115,92,55.60%,44.40%,1,0.50%,20,9.70%,2,205,0,1.00%,99.00%,0.00%,11,13,207,6.30% +116815,885,3048,State-funded primary,99,47,52,47.50%,52.50%,1,1.00%,6,6.10%,6,93,0,6.10%,93.90%,0.00%,14,15,99,15.20% +116816,885,3049,State-funded primary,135,77,58,57.00%,43.00%,3,2.20%,13,9.60%,1,133,1,0.70%,98.50%,0.70%,4,4,135,3.00% +116819,885,3053,State-funded primary,175,83,92,47.40%,52.60%,10,5.70%,32,18.30%,6,169,0,3.40%,96.60%,0.00%,29,29,175,16.60% +116821,885,3056,State-funded primary,97,49,48,50.50%,49.50%,4,4.10%,12,12.40%,0,97,0,0.00%,100.00%,0.00%,3,3,85,3.50% +116822,885,3057,State-funded primary,87,38,49,43.70%,56.30%,1,1.10%,18,20.70%,1,86,0,1.10%,98.90%,0.00%,16,17,87,19.50% +116828,884,3071,State-funded primary,87,39,48,44.80%,55.20%,2,2.30%,12,13.80%,7,80,0,8.00%,92.00%,0.00%,13,13,87,14.90% +116830,885,3074,State-funded primary,137,69,68,50.40%,49.60%,4,2.90%,19,13.90%,3,134,0,2.20%,97.80%,0.00%,9,11,137,8.00% +116833,884,3079,State-funded primary,179,82,97,45.80%,54.20%,0,0.00%,18,10.10%,8,171,0,4.50%,95.50%,0.00%,7,7,179,3.90% +116836,884,3083,State-funded primary,171,62,109,36.30%,63.70%,3,1.80%,22,12.90%,3,168,0,1.80%,98.20%,0.00%,22,22,171,12.90% +116837,885,3084,State-funded primary,86,37,49,43.00%,57.00%,4,4.70%,8,9.30%,2,84,0,2.30%,97.70%,0.00%,11,11,86,12.80% +116838,885,3085,State-funded primary,47,23,24,48.90%,51.10%,2,4.30%,11,23.40%,0,47,0,0.00%,100.00%,0.00%,10,10,45,22.20% +116844,885,3093,State-funded primary,148,81,67,54.70%,45.30%,9,6.10%,20,13.50%,65,83,0,43.90%,56.10%,0.00%,32,32,148,21.60% +116846,885,3097,State-funded primary,197,98,99,49.70%,50.30%,3,1.50%,31,15.70%,3,193,1,1.50%,98.00%,0.50%,32,33,197,16.80% +116848,885,3099,State-funded primary,180,101,79,56.10%,43.90%,4,2.20%,20,11.10%,7,173,0,3.90%,96.10%,0.00%,10,10,180,5.60% +116851,885,3105,State-funded primary,68,33,35,48.50%,51.50%,0,0.00%,9,13.20%,2,66,0,2.90%,97.10%,0.00%,4,4,68,5.90% +116853,885,3107,State-funded primary,189,83,106,43.90%,56.10%,3,1.60%,26,13.80%,13,176,0,6.90%,93.10%,0.00%,36,41,189,21.70% +116854,885,3108,State-funded primary,40,21,19,52.50%,47.50%,1,2.50%,6,15.00%,0,40,0,0.00%,100.00%,0.00%,2,3,40,7.50% +116856,885,3110,State-funded primary,211,113,98,53.60%,46.40%,6,2.80%,30,14.20%,13,198,0,6.20%,93.80%,0.00%,13,15,211,7.10% +116858,885,3114,State-funded primary,408,191,217,46.80%,53.20%,10,2.50%,78,19.10%,64,344,0,15.70%,84.30%,0.00%,110,111,408,27.20% +116859,885,3116,State-funded primary,368,186,182,50.50%,49.50%,8,2.20%,48,13.00%,86,282,0,23.40%,76.60%,0.00%,46,47,368,12.80% +116864,885,3300,State-funded primary,91,49,42,53.80%,46.20%,1,1.10%,8,8.80%,3,88,0,3.30%,96.70%,0.00%,14,14,91,15.40% +116865,885,3302,State-funded primary,219,97,122,44.30%,55.70%,7,3.20%,25,11.40%,4,215,0,1.80%,98.20%,0.00%,10,10,219,4.60% +116867,884,3305,State-funded primary,130,57,73,43.80%,56.20%,4,3.10%,20,15.40%,23,107,0,17.70%,82.30%,0.00%,46,48,130,36.90% +116868,885,3306,State-funded primary,155,79,76,51.00%,49.00%,3,1.90%,31,20.00%,5,150,0,3.20%,96.80%,0.00%,13,14,155,9.00% +116869,884,3307,State-funded primary,90,48,42,53.30%,46.70%,2,2.20%,10,11.10%,3,87,0,3.30%,96.70%,0.00%,17,17,90,18.90% +116870,885,3308,State-funded primary,87,34,53,39.10%,60.90%,7,8.00%,14,16.10%,5,82,0,5.70%,94.30%,0.00%,17,18,87,20.70% +116874,884,3315,State-funded primary,109,41,68,37.60%,62.40%,0,0.00%,15,13.80%,3,106,0,2.80%,97.20%,0.00%,31,31,109,28.40% +116876,885,3317,State-funded primary,194,91,103,46.90%,53.10%,2,1.00%,30,15.50%,47,147,0,24.20%,75.80%,0.00%,30,30,194,15.50% +116879,885,3324,State-funded primary,75,37,38,49.30%,50.70%,1,1.30%,13,17.30%,0,75,0,0.00%,100.00%,0.00%,8,9,75,12.00% +116880,884,3325,State-funded primary,132,65,67,49.20%,50.80%,1,0.80%,20,15.20%,1,131,0,0.80%,99.20%,0.00%,9,11,132,8.30% +116882,885,3329,State-funded primary,184,103,81,56.00%,44.00%,1,0.50%,25,13.60%,3,181,0,1.60%,98.40%,0.00%,14,14,184,7.60% +116883,884,3330,State-funded primary,206,98,108,47.60%,52.40%,5,2.40%,30,14.60%,93,113,0,45.10%,54.90%,0.00%,56,57,206,27.70% +116884,884,3331,State-funded primary,211,100,111,47.40%,52.60%,2,0.90%,20,9.50%,99,112,0,46.90%,53.10%,0.00%,11,11,211,5.20% +116885,884,3332,State-funded primary,216,103,113,47.70%,52.30%,5,2.30%,25,11.60%,26,190,0,12.00%,88.00%,0.00%,31,33,216,15.30% +116890,884,3341,State-funded primary,88,42,46,47.70%,52.30%,1,1.10%,10,11.40%,0,86,2,0.00%,97.70%,2.30%,11,12,88,13.60% +116891,884,3342,State-funded primary,157,88,69,56.10%,43.90%,3,1.90%,34,21.70%,2,155,0,1.30%,98.70%,0.00%,12,13,157,8.30% +116892,884,3347,State-funded primary,100,53,47,53.00%,47.00%,3,3.00%,35,35.00%,1,99,0,1.00%,99.00%,0.00%,31,32,100,32.00% +116893,884,3348,State-funded primary,84,39,45,46.40%,53.60%,3,3.60%,18,21.40%,5,79,0,6.00%,94.00%,0.00%,25,26,84,31.00% +116894,884,3349,State-funded primary,125,59,66,47.20%,52.80%,0,0.00%,28,22.40%,8,117,0,6.40%,93.60%,0.00%,39,39,125,31.20% +116895,885,3350,State-funded primary,78,48,30,61.50%,38.50%,3,3.80%,17,21.80%,5,73,0,6.40%,93.60%,0.00%,22,22,78,28.20% +116901,885,3358,State-funded primary,114,56,58,49.10%,50.90%,6,5.30%,13,11.40%,12,102,0,10.50%,89.50%,0.00%,41,42,114,36.80% +116902,885,3359,State-funded primary,84,49,35,58.30%,41.70%,2,2.40%,12,14.30%,5,79,0,6.00%,94.00%,0.00%,15,15,84,17.90% +116903,885,3360,State-funded primary,70,29,41,41.40%,58.60%,4,5.70%,6,8.60%,12,58,0,17.10%,82.90%,0.00%,14,14,70,20.00% +116904,884,3363,State-funded primary,82,44,38,53.70%,46.30%,1,1.20%,14,17.10%,6,76,0,7.30%,92.70%,0.00%,20,17,75,22.70% +116905,885,3365,State-funded primary,121,76,45,62.80%,37.20%,4,3.30%,20,16.50%,2,119,0,1.70%,98.30%,0.00%,14,14,121,11.60% +116906,884,3366,State-funded primary,80,46,34,57.50%,42.50%,1,1.30%,14,17.50%,5,75,0,6.30%,93.80%,0.00%,9,9,80,11.30% +116907,884,3367,State-funded primary,61,34,27,55.70%,44.30%,0,0.00%,8,13.10%,5,56,0,8.20%,91.80%,0.00%,8,9,61,14.80% +116908,885,3368,State-funded primary,167,75,92,44.90%,55.10%,2,1.20%,33,19.80%,23,144,0,13.80%,86.20%,0.00%,35,36,167,21.60% +116911,884,3372,State-funded primary,156,73,83,46.80%,53.20%,1,0.60%,21,13.50%,29,127,0,18.60%,81.40%,0.00%,29,30,156,19.20% +116913,884,3378,State-funded primary,90,49,41,54.40%,45.60%,0,0.00%,12,13.30%,3,87,0,3.30%,96.70%,0.00%,4,7,90,7.80% +116916,885,3381,State-funded primary,93,51,42,54.80%,45.20%,4,4.30%,13,14.00%,2,91,0,2.20%,97.80%,0.00%,8,8,93,8.60% +116917,885,3382,State-funded primary,145,73,72,50.30%,49.70%,1,0.70%,17,11.70%,2,143,0,1.40%,98.60%,0.00%,7,8,145,5.50% +116918,884,3384,State-funded primary,64,37,27,57.80%,42.20%,1,1.60%,9,14.10%,2,61,1,3.10%,95.30%,1.60%,14,15,64,23.40% +116919,884,3385,State-funded primary,136,81,55,59.60%,40.40%,0,0.00%,11,8.10%,5,131,0,3.70%,96.30%,0.00%,10,13,136,9.60% +116921,885,3387,State-funded primary,185,92,93,49.70%,50.30%,2,1.10%,9,4.90%,85,100,0,45.90%,54.10%,0.00%,45,45,185,24.30% +116923,885,3389,State-funded primary,169,90,79,53.30%,46.70%,5,3.00%,21,12.40%,49,120,0,29.00%,71.00%,0.00%,31,32,169,18.90% +116924,885,3390,State-funded primary,210,111,99,52.90%,47.10%,2,1.00%,18,8.60%,64,146,0,30.50%,69.50%,0.00%,20,20,210,9.50% +116925,885,3391,State-funded primary,353,154,199,43.60%,56.40%,4,1.10%,33,9.30%,133,217,3,37.70%,61.50%,0.80%,73,76,353,21.50% +116928,885,4002,State-funded secondary,1006,522,484,51.90%,48.10%,24,2.40%,156,15.50%,11,995,0,1.10%,98.90%,0.00%,158,161,803,20.00% +116936,884,4015,State-funded secondary,454,217,237,47.80%,52.20%,21,4.60%,144,31.70%,71,382,1,15.60%,84.10%,0.20%,112,124,454,27.30% +116941,884,4027,State-funded secondary,510,243,267,47.60%,52.40%,14,2.70%,96,18.80%,69,436,5,13.50%,85.50%,1.00%,131,147,510,28.80% +116952,884,4045,State-funded secondary,528,247,281,46.80%,53.20%,25,4.70%,107,20.30%,22,506,0,4.20%,95.80%,0.00%,84,94,528,17.80% +116957,885,4401,State-funded secondary,597,270,327,45.20%,54.80%,6,1.00%,48,8.00%,7,590,0,1.20%,98.80%,0.00%,74,79,597,13.20% +116958,885,4402,State-funded secondary,403,188,215,46.70%,53.30%,6,1.50%,81,20.10%,12,391,0,3.00%,97.00%,0.00%,114,121,403,30.00% +116959,885,4403,State-funded secondary,606,253,353,41.70%,58.30%,23,3.80%,91,15.00%,7,599,0,1.20%,98.80%,0.00%,124,144,606,23.80% +116960,885,4408,State-funded secondary,252,125,127,49.60%,50.40%,8,3.20%,37,14.70%,14,207,31,5.60%,82.10%,12.30%,54,59,252,23.40% +116984,885,4576,State-funded secondary,451,236,215,52.30%,47.70%,6,1.30%,52,11.50%,104,347,0,23.10%,76.90%,0.00%,70,77,451,17.10% +116991,884,4600,State-funded secondary,1044,512,532,49.00%,51.00%,23,2.20%,122,11.70%,110,934,0,10.50%,89.50%,0.00%,138,151,1044,14.50% +116992,884,4601,State-funded secondary,748,382,366,51.10%,48.90%,21,2.80%,138,18.40%,152,596,0,20.30%,79.70%,0.00%,86,96,748,12.80% +116999,885,5402,State-funded secondary,1045,527,518,50.40%,49.60%,23,2.20%,100,9.60%,292,753,0,27.90%,72.10%,0.00%,127,142,1045,13.60% +117002,884,6000,Independent school,176,73,103,41.50%,58.50%,1,0.60%,31,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117003,884,6001,Independent school,156,66,90,42.30%,57.70%,2,1.30%,20,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117011,885,6005,Independent school,160,85,75,53.10%,46.90%,2,1.30%,30,18.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117012,885,6006,Independent school,2095,954,1141,45.50%,54.50%,2,0.10%,229,10.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117017,885,6011,Independent school,649,307,342,47.30%,52.70%,2,0.30%,109,16.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117018,885,6012,Independent school,355,355,0,100.00%,0.00%,1,0.30%,58,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117020,885,6014,Independent school,243,120,123,49.40%,50.60%,38,15.60%,30,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117030,885,6021,Independent school,44,9,35,20.50%,79.50%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117032,885,6023,Independent school,225,71,154,31.60%,68.40%,112,49.80%,63,28.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117033,885,6024,Independent school,43,4,39,9.30%,90.70%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117034,885,6025,Independent school,212,99,113,46.70%,53.30%,9,4.20%,11,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117035,885,6026,Independent school,35,15,20,42.90%,57.10%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117036,884,6004,Independent school,561,269,292,48.00%,52.00%,0,0.00%,109,19.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117037,885,6027,Independent school,1335,627,708,47.00%,53.00%,3,0.20%,166,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117038,885,6028,Independent school,1428,694,734,48.60%,51.40%,5,0.40%,371,26.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117041,885,6030,Independent school,122,73,49,59.80%,40.20%,7,5.70%,14,11.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117042,884,6006,Independent school,20,7,13,35.00%,65.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117044,885,6031,Independent school,223,0,223,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117045,884,6007,Independent school,265,132,133,49.80%,50.20%,0,0.00%,6,2.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117047,884,6009,Independent school,203,99,104,48.80%,51.20%,0,0.00%,26,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117048,884,6010,Independent school,15,2,13,13.30%,86.70%,14,93.30%,1,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117049,885,7001,State-funded special school,203,51,152,25.10%,74.90%,203,100.00%,0,0.00%,9,194,0,4.40%,95.60%,0.00%,73,74,190,38.90% +117052,884,7004,State-funded special school,99,30,69,30.30%,69.70%,97,98.00%,2,2.00%,18,81,0,18.20%,81.80%,0.00%,50,52,96,54.20% +117055,884,7007,State-funded special school,72,24,48,33.30%,66.70%,72,100.00%,0,0.00%,3,69,0,4.20%,95.80%,0.00%,21,16,57,28.10% +117062,885,7015,State-funded special school,139,60,79,43.20%,56.80%,130,93.50%,9,6.50%,13,126,0,9.40%,90.60%,0.00%,43,33,106,31.10% +117064,885,7019,Non-maintained special school,70,33,37,47.10%,52.90%,70,100.00%,0,0.00%,6,64,0,8.60%,91.40%,0.00%,14,10,33,30.30% +117065,919,1000,State-funded nursery,77,40,37,51.90%,48.10%,0,0.00%,5,6.50%,9,68,0,11.70%,88.30%,0.00%,0,0,0,0.00% +117066,919,1002,State-funded nursery,136,76,60,55.90%,44.10%,13,9.60%,17,12.50%,59,77,0,43.40%,56.60%,0.00%,0,0,0,0.00% +117067,919,1003,State-funded nursery,124,63,61,50.80%,49.20%,6,4.80%,11,8.90%,35,88,1,28.20%,71.00%,0.80%,0,0,0,0.00% +117068,919,1006,State-funded nursery,84,40,44,47.60%,52.40%,0,0.00%,1,1.20%,20,64,0,23.80%,76.20%,0.00%,0,0,0,0.00% +117069,919,1008,State-funded nursery,175,86,89,49.10%,50.90%,9,5.10%,9,5.10%,39,136,0,22.30%,77.70%,0.00%,0,0,0,0.00% +117070,919,1009,State-funded nursery,77,48,29,62.30%,37.70%,0,0.00%,6,7.80%,21,56,0,27.30%,72.70%,0.00%,0,0,0,0.00% +117071,919,1010,State-funded nursery,107,47,60,43.90%,56.10%,5,4.70%,7,6.50%,29,78,0,27.10%,72.90%,0.00%,0,0,0,0.00% +117072,919,1011,State-funded nursery,138,67,71,48.60%,51.40%,7,5.10%,26,18.80%,11,127,0,8.00%,92.00%,0.00%,0,0,0,0.00% +117076,919,1016,State-funded nursery,102,51,51,50.00%,50.00%,0,0.00%,7,6.90%,31,71,0,30.40%,69.60%,0.00%,0,0,0,0.00% +117077,919,1017,State-funded nursery,90,43,47,47.80%,52.20%,1,1.10%,7,7.80%,21,69,0,23.30%,76.70%,0.00%,0,0,0,0.00% +117078,919,1018,State-funded nursery,66,28,38,42.40%,57.60%,0,0.00%,12,18.20%,4,62,0,6.10%,93.90%,0.00%,0,0,1,0.00% +117079,919,1019,State-funded nursery,168,83,85,49.40%,50.60%,12,7.10%,16,9.50%,25,143,0,14.90%,85.10%,0.00%,0,0,0,0.00% +117080,919,1022,State-funded nursery,124,57,67,46.00%,54.00%,3,2.40%,22,17.70%,22,101,1,17.70%,81.50%,0.80%,0,0,0,0.00% +117083,919,2000,State-funded primary,434,210,224,48.40%,51.60%,5,1.20%,61,14.10%,39,395,0,9.00%,91.00%,0.00%,43,48,407,11.80% +117084,919,2002,State-funded primary,216,110,106,50.90%,49.10%,0,0.00%,29,13.40%,10,206,0,4.60%,95.40%,0.00%,14,15,197,7.60% +117087,919,2011,State-funded primary,74,38,36,51.40%,48.60%,0,0.00%,6,8.10%,0,74,0,0.00%,100.00%,0.00%,5,6,66,9.10% +117088,919,2012,State-funded primary,238,109,129,45.80%,54.20%,8,3.40%,18,7.60%,49,189,0,20.60%,79.40%,0.00%,13,14,210,6.70% +117089,919,2013,State-funded primary,434,231,203,53.20%,46.80%,3,0.70%,57,13.10%,151,283,0,34.80%,65.20%,0.00%,69,70,399,17.50% +117090,919,2014,State-funded primary,209,100,109,47.80%,52.20%,1,0.50%,19,9.10%,29,180,0,13.90%,86.10%,0.00%,12,12,171,7.00% +117091,919,2016,State-funded primary,197,108,89,54.80%,45.20%,4,2.00%,37,18.80%,96,101,0,48.70%,51.30%,0.00%,96,97,175,55.40% +117092,919,2017,State-funded primary,202,96,106,47.50%,52.50%,1,0.50%,24,11.90%,115,87,0,56.90%,43.10%,0.00%,58,62,182,34.10% +117093,919,2019,State-funded primary,229,117,112,51.10%,48.90%,6,2.60%,30,13.10%,24,205,0,10.50%,89.50%,0.00%,15,15,212,7.10% +117096,919,2022,State-funded primary,230,115,115,50.00%,50.00%,2,0.90%,45,19.60%,56,174,0,24.30%,75.70%,0.00%,41,41,214,19.20% +117097,919,2023,State-funded primary,225,106,119,47.10%,52.90%,4,1.80%,40,17.80%,26,199,0,11.60%,88.40%,0.00%,59,60,225,26.70% +117098,919,2025,State-funded primary,221,109,112,49.30%,50.70%,1,0.50%,19,8.60%,22,199,0,10.00%,90.00%,0.00%,15,16,209,7.70% +117099,919,2030,State-funded primary,436,212,224,48.60%,51.40%,13,3.00%,44,10.10%,178,258,0,40.80%,59.20%,0.00%,105,107,397,27.00% +117100,919,2031,State-funded primary,94,36,58,38.30%,61.70%,2,2.10%,9,9.60%,3,91,0,3.20%,96.80%,0.00%,5,5,85,5.90% +117101,919,2032,State-funded primary,41,22,19,53.70%,46.30%,0,0.00%,4,9.80%,7,34,0,17.10%,82.90%,0.00%,17,18,41,43.90% +117102,919,2033,State-funded primary,192,90,102,46.90%,53.10%,12,6.30%,25,13.00%,23,169,0,12.00%,88.00%,0.00%,54,59,192,30.70% +117103,919,2034,State-funded primary,205,92,113,44.90%,55.10%,4,2.00%,12,5.90%,40,165,0,19.50%,80.50%,0.00%,10,10,205,4.90% +117105,919,2039,State-funded primary,414,206,208,49.80%,50.20%,5,1.20%,42,10.10%,109,305,0,26.30%,73.70%,0.00%,32,36,414,8.70% +117106,919,2040,State-funded primary,232,99,133,42.70%,57.30%,7,3.00%,26,11.20%,53,179,0,22.80%,77.20%,0.00%,43,44,207,21.30% +117107,919,2041,State-funded primary,233,113,120,48.50%,51.50%,7,3.00%,17,7.30%,20,209,4,8.60%,89.70%,1.70%,13,13,207,6.30% +117108,919,2044,State-funded primary,239,112,127,46.90%,53.10%,7,2.90%,8,3.30%,32,207,0,13.40%,86.60%,0.00%,7,7,210,3.30% +117109,919,2045,State-funded primary,434,221,213,50.90%,49.10%,13,3.00%,82,18.90%,109,325,0,25.10%,74.90%,0.00%,99,99,416,23.80% +117110,919,2047,State-funded primary,413,193,220,46.70%,53.30%,13,3.10%,44,10.70%,108,305,0,26.20%,73.80%,0.00%,95,95,413,23.00% +117111,919,2050,State-funded primary,228,116,112,50.90%,49.10%,4,1.80%,24,10.50%,47,181,0,20.60%,79.40%,0.00%,30,37,204,18.10% +117112,919,2053,State-funded primary,21,10,11,47.60%,52.40%,1,4.80%,5,23.80%,0,21,0,0.00%,100.00%,0.00%,5,5,21,23.80% +117113,919,2055,State-funded primary,217,123,94,56.70%,43.30%,0,0.00%,18,8.30%,24,193,0,11.10%,88.90%,0.00%,8,8,178,4.50% +117114,919,2056,State-funded primary,198,112,86,56.60%,43.40%,5,2.50%,20,10.10%,26,172,0,13.10%,86.90%,0.00%,12,13,172,7.60% +117115,919,2057,State-funded primary,435,220,215,50.60%,49.40%,9,2.10%,78,17.90%,56,379,0,12.90%,87.10%,0.00%,36,37,410,9.00% +117117,919,2061,State-funded primary,110,52,58,47.30%,52.70%,2,1.80%,19,17.30%,3,107,0,2.70%,97.30%,0.00%,12,13,110,11.80% +117118,919,2062,State-funded primary,176,84,92,47.70%,52.30%,2,1.10%,27,15.30%,3,173,0,1.70%,98.30%,0.00%,29,31,161,19.30% +117119,919,2064,State-funded primary,82,31,51,37.80%,62.20%,4,4.90%,14,17.10%,5,77,0,6.10%,93.90%,0.00%,5,5,82,6.10% +117120,919,2066,State-funded primary,427,201,226,47.10%,52.90%,3,0.70%,29,6.80%,21,406,0,4.90%,95.10%,0.00%,43,51,400,12.80% +117123,919,2069,State-funded primary,212,96,116,45.30%,54.70%,4,1.90%,25,11.80%,28,184,0,13.20%,86.80%,0.00%,49,49,176,27.80% +117125,919,2072,State-funded primary,209,117,92,56.00%,44.00%,9,4.30%,23,11.00%,11,198,0,5.30%,94.70%,0.00%,35,35,188,18.60% +117126,919,2073,State-funded primary,125,53,72,42.40%,57.60%,2,1.60%,17,13.60%,15,110,0,12.00%,88.00%,0.00%,21,21,116,18.10% +117127,919,2074,State-funded primary,218,114,104,52.30%,47.70%,4,1.80%,19,8.70%,13,205,0,6.00%,94.00%,0.00%,30,32,199,16.10% +117128,919,2077,State-funded primary,143,65,78,45.50%,54.50%,3,2.10%,24,16.80%,3,140,0,2.10%,97.90%,0.00%,24,25,143,17.50% +117129,919,2078,State-funded primary,45,23,22,51.10%,48.90%,1,2.20%,4,8.90%,5,40,0,11.10%,88.90%,0.00%,5,5,39,12.80% +117130,919,2079,State-funded primary,428,198,230,46.30%,53.70%,16,3.70%,56,13.10%,69,359,0,16.10%,83.90%,0.00%,27,28,397,7.10% +117131,919,2082,State-funded primary,240,115,125,47.90%,52.10%,6,2.50%,22,9.20%,25,215,0,10.40%,89.60%,0.00%,2,5,210,2.40% +117132,919,2083,State-funded primary,348,177,171,50.90%,49.10%,5,1.40%,46,13.20%,76,271,1,21.80%,77.90%,0.30%,12,16,348,4.60% +117133,919,2084,State-funded primary,292,140,152,47.90%,52.10%,3,1.00%,12,4.10%,44,248,0,15.10%,84.90%,0.00%,12,12,254,4.70% +117134,919,2085,State-funded primary,311,167,144,53.70%,46.30%,0,0.00%,38,12.20%,43,262,6,13.80%,84.20%,1.90%,19,21,272,7.70% +117135,919,2090,State-funded primary,309,152,157,49.20%,50.80%,8,2.60%,23,7.40%,57,252,0,18.40%,81.60%,0.00%,12,12,267,4.50% +117136,919,2091,State-funded primary,235,121,114,51.50%,48.50%,6,2.60%,31,13.20%,38,195,2,16.20%,83.00%,0.90%,22,22,206,10.70% +117140,919,2096,State-funded primary,321,152,169,47.40%,52.60%,5,1.60%,20,6.20%,64,257,0,19.90%,80.10%,0.00%,19,20,291,6.90% +117141,919,2098,State-funded primary,198,105,93,53.00%,47.00%,4,2.00%,23,11.60%,29,168,1,14.60%,84.80%,0.50%,19,19,198,9.60% +117143,919,2100,State-funded primary,354,166,188,46.90%,53.10%,9,2.50%,32,9.00%,53,301,0,15.00%,85.00%,0.00%,32,33,354,9.30% +117144,919,2101,State-funded primary,76,26,50,34.20%,65.80%,1,1.30%,15,19.70%,5,71,0,6.60%,93.40%,0.00%,8,10,76,13.20% +117145,919,2102,State-funded primary,209,101,108,48.30%,51.70%,6,2.90%,27,12.90%,33,176,0,15.80%,84.20%,0.00%,39,40,196,20.40% +117146,919,2103,State-funded primary,187,93,94,49.70%,50.30%,7,3.70%,15,8.00%,49,138,0,26.20%,73.80%,0.00%,50,51,163,31.30% +117147,919,2105,State-funded primary,60,29,31,48.30%,51.70%,3,5.00%,8,13.30%,2,58,0,3.30%,96.70%,0.00%,4,4,60,6.70% +117148,919,2106,State-funded primary,166,85,81,51.20%,48.80%,7,4.20%,20,12.00%,36,130,0,21.70%,78.30%,0.00%,32,32,159,20.10% +117149,919,2107,State-funded primary,217,107,110,49.30%,50.70%,4,1.80%,8,3.70%,11,206,0,5.10%,94.90%,0.00%,8,8,181,4.40% +117150,919,2108,State-funded primary,177,92,85,52.00%,48.00%,4,2.30%,16,9.00%,26,151,0,14.70%,85.30%,0.00%,43,45,164,27.40% +117151,919,2109,State-funded primary,303,146,157,48.20%,51.80%,6,2.00%,32,10.60%,32,271,0,10.60%,89.40%,0.00%,46,46,260,17.70% +117153,919,2111,State-funded primary,54,19,35,35.20%,64.80%,0,0.00%,14,25.90%,0,54,0,0.00%,100.00%,0.00%,9,9,54,16.70% +117154,919,2114,State-funded primary,114,59,55,51.80%,48.20%,0,0.00%,19,16.70%,3,111,0,2.60%,97.40%,0.00%,20,21,114,18.40% +117156,919,2116,State-funded primary,403,200,203,49.60%,50.40%,20,5.00%,55,13.60%,325,78,0,80.60%,19.40%,0.00%,74,76,373,20.40% +117157,919,2117,State-funded primary,174,87,87,50.00%,50.00%,1,0.60%,4,2.30%,40,134,0,23.00%,77.00%,0.00%,7,7,174,4.00% +117158,919,2120,State-funded primary,239,123,116,51.50%,48.50%,3,1.30%,15,6.30%,191,44,4,79.90%,18.40%,1.70%,32,33,239,13.80% +117159,919,2122,State-funded primary,221,120,101,54.30%,45.70%,6,2.70%,19,8.60%,212,9,0,95.90%,4.10%,0.00%,22,21,175,12.00% +117160,919,2123,State-funded primary,265,129,136,48.70%,51.30%,9,3.40%,41,15.50%,135,130,0,50.90%,49.10%,0.00%,58,60,265,22.60% +117161,919,2124,State-funded primary,231,110,121,47.60%,52.40%,3,1.30%,21,9.10%,126,99,6,54.50%,42.90%,2.60%,27,27,174,15.50% +117162,919,2125,State-funded primary,237,114,123,48.10%,51.90%,9,3.80%,33,13.90%,92,144,1,38.80%,60.80%,0.40%,34,35,237,14.80% +117163,919,2126,State-funded primary,202,105,97,52.00%,48.00%,3,1.50%,19,9.40%,91,108,3,45.00%,53.50%,1.50%,14,14,178,7.90% +117166,919,2131,State-funded primary,232,113,119,48.70%,51.30%,4,1.70%,30,12.90%,98,134,0,42.20%,57.80%,0.00%,21,21,206,10.20% +117167,919,2132,State-funded primary,357,165,192,46.20%,53.80%,8,2.20%,38,10.60%,102,255,0,28.60%,71.40%,0.00%,18,25,357,7.00% +117168,919,2133,State-funded primary,225,113,112,50.20%,49.80%,7,3.10%,47,20.90%,53,172,0,23.60%,76.40%,0.00%,55,59,225,26.20% +117171,919,2139,State-funded primary,230,117,113,50.90%,49.10%,2,0.90%,33,14.30%,4,226,0,1.70%,98.30%,0.00%,14,16,176,9.10% +117174,919,2142,State-funded primary,224,107,117,47.80%,52.20%,9,4.00%,21,9.40%,29,194,1,12.90%,86.60%,0.40%,24,27,207,13.00% +117175,919,2143,State-funded primary,406,188,218,46.30%,53.70%,15,3.70%,43,10.60%,62,344,0,15.30%,84.70%,0.00%,140,141,406,34.70% +117176,919,2145,State-funded primary,48,23,25,47.90%,52.10%,2,4.20%,3,6.30%,2,46,0,4.20%,95.80%,0.00%,5,6,43,14.00% +117177,919,2146,State-funded primary,99,42,57,42.40%,57.60%,2,2.00%,14,14.10%,6,93,0,6.10%,93.90%,0.00%,20,20,99,20.20% +117178,919,2147,State-funded primary,439,224,215,51.00%,49.00%,6,1.40%,65,14.80%,35,404,0,8.00%,92.00%,0.00%,84,87,409,21.30% +117180,919,2151,State-funded primary,397,188,209,47.40%,52.60%,17,4.30%,43,10.80%,167,229,1,42.10%,57.70%,0.30%,130,135,397,34.00% +117181,919,2153,State-funded primary,225,123,102,54.70%,45.30%,6,2.70%,27,12.00%,48,177,0,21.30%,78.70%,0.00%,65,65,196,33.20% +117182,919,2154,State-funded primary,352,175,177,49.70%,50.30%,11,3.10%,29,8.20%,160,192,0,45.50%,54.50%,0.00%,74,77,329,23.40% +117183,919,2155,State-funded primary,199,104,95,52.30%,47.70%,6,3.00%,46,23.10%,61,138,0,30.70%,69.30%,0.00%,44,44,175,25.10% +117186,919,2165,State-funded primary,256,135,121,52.70%,47.30%,3,1.20%,41,16.00%,31,225,0,12.10%,87.90%,0.00%,69,69,218,31.70% +117187,919,2166,State-funded primary,339,170,169,50.10%,49.90%,3,0.90%,48,14.20%,47,290,2,13.90%,85.50%,0.60%,91,91,339,26.80% +117188,919,2168,State-funded primary,135,82,53,60.70%,39.30%,8,5.90%,15,11.10%,39,96,0,28.90%,71.10%,0.00%,44,44,125,35.20% +117189,919,2169,State-funded primary,227,100,127,44.10%,55.90%,10,4.40%,63,27.80%,73,153,1,32.20%,67.40%,0.40%,74,79,199,39.70% +117193,919,2177,State-funded primary,201,97,104,48.30%,51.70%,9,4.50%,35,17.40%,71,130,0,35.30%,64.70%,0.00%,45,46,177,26.00% +117194,919,2178,State-funded primary,125,61,64,48.80%,51.20%,4,3.20%,43,34.40%,32,93,0,25.60%,74.40%,0.00%,47,49,116,42.20% +117195,919,2181,State-funded primary,194,84,110,43.30%,56.70%,5,2.60%,37,19.10%,70,124,0,36.10%,63.90%,0.00%,41,51,175,29.10% +117197,919,2184,State-funded primary,217,108,109,49.80%,50.20%,6,2.80%,29,13.40%,39,178,0,18.00%,82.00%,0.00%,33,33,179,18.40% +117200,919,2188,State-funded primary,286,147,139,51.40%,48.60%,10,3.50%,70,24.50%,82,204,0,28.70%,71.30%,0.00%,97,103,274,37.60% +117202,919,2193,State-funded primary,136,62,74,45.60%,54.40%,9,6.60%,25,18.40%,32,103,1,23.50%,75.70%,0.70%,32,33,127,26.00% +117206,919,2198,State-funded primary,623,294,329,47.20%,52.80%,16,2.60%,127,20.40%,82,541,0,13.20%,86.80%,0.00%,138,144,623,23.10% +117211,919,2203,State-funded primary,332,147,185,44.30%,55.70%,10,3.00%,36,10.80%,23,309,0,6.90%,93.10%,0.00%,4,4,313,1.30% +117214,919,2210,State-funded primary,203,103,100,50.70%,49.30%,6,3.00%,55,27.10%,43,160,0,21.20%,78.80%,0.00%,52,53,193,27.50% +117217,919,2219,State-funded primary,179,89,90,49.70%,50.30%,5,2.80%,17,9.50%,57,121,1,31.80%,67.60%,0.60%,50,51,179,28.50% +117218,919,2223,State-funded primary,51,25,26,49.00%,51.00%,1,2.00%,18,35.30%,1,50,0,2.00%,98.00%,0.00%,9,9,32,28.10% +117219,919,2224,State-funded primary,230,118,112,51.30%,48.70%,11,4.80%,38,16.50%,71,159,0,30.90%,69.10%,0.00%,31,35,202,17.30% +117220,919,2225,State-funded primary,454,213,241,46.90%,53.10%,8,1.80%,45,9.90%,163,291,0,35.90%,64.10%,0.00%,63,63,419,15.00% +117221,919,2226,State-funded primary,317,154,163,48.60%,51.40%,8,2.50%,36,11.40%,29,288,0,9.10%,90.90%,0.00%,73,75,317,23.70% +117222,919,2227,State-funded primary,320,169,151,52.80%,47.20%,3,0.90%,31,9.70%,46,274,0,14.40%,85.60%,0.00%,12,13,320,4.10% +117223,919,2228,State-funded primary,176,83,93,47.20%,52.80%,4,2.30%,30,17.00%,17,159,0,9.70%,90.30%,0.00%,48,49,142,34.50% +117224,919,2229,State-funded primary,176,82,94,46.60%,53.40%,5,2.80%,27,15.30%,16,160,0,9.10%,90.90%,0.00%,35,39,161,24.20% +117227,919,2237,State-funded primary,191,97,94,50.80%,49.20%,4,2.10%,16,8.40%,20,170,1,10.50%,89.00%,0.50%,32,33,182,18.10% +117229,919,2240,State-funded primary,419,202,217,48.20%,51.80%,8,1.90%,62,14.80%,58,361,0,13.80%,86.20%,0.00%,95,99,383,25.80% +117230,919,2242,State-funded primary,231,114,117,49.40%,50.60%,0,0.00%,34,14.70%,16,215,0,6.90%,93.10%,0.00%,23,23,211,10.90% +117231,919,2243,State-funded primary,219,110,109,50.20%,49.80%,7,3.20%,48,21.90%,46,173,0,21.00%,79.00%,0.00%,83,85,207,41.10% +117233,919,2250,State-funded primary,334,154,180,46.10%,53.90%,15,4.50%,27,8.10%,69,265,0,20.70%,79.30%,0.00%,94,101,334,30.20% +117234,919,2251,State-funded primary,216,104,112,48.10%,51.90%,5,2.30%,53,24.50%,63,153,0,29.20%,70.80%,0.00%,60,61,202,30.20% +117235,919,2252,State-funded primary,220,100,120,45.50%,54.50%,5,2.30%,19,8.60%,27,193,0,12.30%,87.70%,0.00%,22,39,197,19.80% +117236,919,2253,State-funded primary,438,201,237,45.90%,54.10%,10,2.30%,37,8.40%,31,407,0,7.10%,92.90%,0.00%,66,68,397,17.10% +117242,919,2261,State-funded primary,233,109,124,46.80%,53.20%,4,1.70%,34,14.60%,57,176,0,24.50%,75.50%,0.00%,34,35,233,15.00% +117243,919,2263,State-funded primary,233,120,113,51.50%,48.50%,4,1.70%,18,7.70%,15,218,0,6.40%,93.60%,0.00%,19,22,211,10.40% +117245,919,2266,State-funded primary,341,165,176,48.40%,51.60%,5,1.50%,14,4.10%,115,225,1,33.70%,66.00%,0.30%,17,18,311,5.80% +117249,919,2274,State-funded primary,227,106,121,46.70%,53.30%,3,1.30%,22,9.70%,21,206,0,9.30%,90.70%,0.00%,19,20,207,9.70% +117250,919,2280,State-funded primary,238,106,132,44.50%,55.50%,3,1.30%,43,18.10%,102,135,1,42.90%,56.70%,0.40%,35,37,238,15.50% +117252,919,2283,State-funded primary,226,124,102,54.90%,45.10%,7,3.10%,21,9.30%,49,177,0,21.70%,78.30%,0.00%,44,44,202,21.80% +117253,919,2287,State-funded primary,242,130,112,53.70%,46.30%,3,1.20%,30,12.40%,25,217,0,10.30%,89.70%,0.00%,27,28,242,11.60% +117254,919,2288,State-funded primary,212,119,93,56.10%,43.90%,4,1.90%,23,10.80%,18,194,0,8.50%,91.50%,0.00%,41,41,202,20.30% +117255,919,2289,State-funded primary,450,226,224,50.20%,49.80%,17,3.80%,150,33.30%,152,298,0,33.80%,66.20%,0.00%,123,126,392,32.10% +117256,919,2293,State-funded primary,209,110,99,52.60%,47.40%,4,1.90%,38,18.20%,12,197,0,5.70%,94.30%,0.00%,20,22,209,10.50% +117258,919,2299,State-funded primary,357,188,169,52.70%,47.30%,6,1.70%,62,17.40%,46,310,1,12.90%,86.80%,0.30%,26,28,357,7.80% +117259,919,2300,State-funded primary,240,111,129,46.30%,53.80%,7,2.90%,34,14.20%,9,231,0,3.80%,96.30%,0.00%,81,84,240,35.00% +117260,919,2301,State-funded primary,149,71,78,47.70%,52.30%,4,2.70%,28,18.80%,14,135,0,9.40%,90.60%,0.00%,15,15,129,11.60% +117261,919,2302,State-funded primary,198,106,92,53.50%,46.50%,10,5.10%,13,6.60%,16,182,0,8.10%,91.90%,0.00%,12,15,198,7.60% +117263,919,2304,State-funded primary,222,102,120,45.90%,54.10%,12,5.40%,55,24.80%,15,207,0,6.80%,93.20%,0.00%,73,74,192,38.50% +117266,919,2308,State-funded primary,167,77,90,46.10%,53.90%,5,3.00%,27,16.20%,22,145,0,13.20%,86.80%,0.00%,33,34,142,23.90% +117269,919,2312,State-funded primary,258,126,132,48.80%,51.20%,9,3.50%,31,12.00%,30,228,0,11.60%,88.40%,0.00%,69,69,248,27.80% +117270,919,2314,State-funded primary,185,97,88,52.40%,47.60%,7,3.80%,20,10.80%,20,165,0,10.80%,89.20%,0.00%,88,88,185,47.60% +117271,919,2316,State-funded primary,203,107,96,52.70%,47.30%,8,3.90%,41,20.20%,16,187,0,7.90%,92.10%,0.00%,33,38,178,21.30% +117272,919,2317,State-funded primary,282,138,144,48.90%,51.10%,6,2.10%,22,7.80%,85,195,2,30.10%,69.10%,0.70%,30,31,240,12.90% +117274,919,2322,State-funded primary,219,94,125,42.90%,57.10%,3,1.40%,20,9.10%,14,205,0,6.40%,93.60%,0.00%,7,7,178,3.90% +117276,919,2326,State-funded primary,232,123,109,53.00%,47.00%,5,2.20%,34,14.70%,3,229,0,1.30%,98.70%,0.00%,8,9,207,4.30% +117277,919,2327,State-funded primary,217,99,118,45.60%,54.40%,8,3.70%,18,8.30%,48,169,0,22.10%,77.90%,0.00%,36,39,200,19.50% +117278,919,2331,State-funded primary,344,166,178,48.30%,51.70%,3,0.90%,59,17.20%,29,315,0,8.40%,91.60%,0.00%,27,27,293,9.20% +117279,919,2332,State-funded primary,180,85,95,47.20%,52.80%,3,1.70%,40,22.20%,68,112,0,37.80%,62.20%,0.00%,20,20,180,11.10% +117280,919,2333,State-funded primary,241,106,135,44.00%,56.00%,5,2.10%,27,11.20%,17,224,0,7.10%,92.90%,0.00%,15,17,241,7.10% +117281,919,2336,State-funded primary,297,161,136,54.20%,45.80%,4,1.30%,26,8.80%,33,262,2,11.10%,88.20%,0.70%,15,15,251,6.00% +117283,919,2338,State-funded primary,449,215,234,47.90%,52.10%,1,0.20%,54,12.00%,16,433,0,3.60%,96.40%,0.00%,55,56,418,13.40% +117284,919,2339,State-funded primary,307,150,157,48.90%,51.10%,20,6.50%,47,15.30%,35,272,0,11.40%,88.60%,0.00%,76,78,307,25.40% +117289,919,2348,State-funded primary,207,95,112,45.90%,54.10%,7,3.40%,15,7.20%,21,186,0,10.10%,89.90%,0.00%,14,14,207,6.80% +117290,919,2349,State-funded primary,232,112,120,48.30%,51.70%,7,3.00%,39,16.80%,105,127,0,45.30%,54.70%,0.00%,66,69,221,31.20% +117292,919,2353,State-funded primary,237,114,123,48.10%,51.90%,1,0.40%,46,19.40%,47,190,0,19.80%,80.20%,0.00%,23,23,207,11.10% +117293,919,2354,State-funded primary,307,149,158,48.50%,51.50%,6,2.00%,26,8.50%,81,226,0,26.40%,73.60%,0.00%,10,10,267,3.70% +117294,919,2356,State-funded primary,233,113,120,48.50%,51.50%,7,3.00%,66,28.30%,23,210,0,9.90%,90.10%,0.00%,26,27,207,13.00% +117296,919,2360,State-funded primary,209,109,100,52.20%,47.80%,10,4.80%,19,9.10%,32,177,0,15.30%,84.70%,0.00%,41,41,209,19.60% +117297,919,2362,State-funded primary,231,117,114,50.60%,49.40%,6,2.60%,19,8.20%,22,208,1,9.50%,90.00%,0.40%,11,13,203,6.40% +117298,919,2364,State-funded primary,242,122,120,50.40%,49.60%,13,5.40%,25,10.30%,72,169,1,29.80%,69.80%,0.40%,9,9,242,3.70% +117302,919,2375,State-funded primary,197,114,83,57.90%,42.10%,3,1.50%,37,18.80%,73,124,0,37.10%,62.90%,0.00%,70,73,183,39.90% +117303,919,2378,State-funded primary,179,84,95,46.90%,53.10%,4,2.20%,22,12.30%,18,157,4,10.10%,87.70%,2.20%,9,10,179,5.60% +117304,919,2379,State-funded primary,198,95,103,48.00%,52.00%,1,0.50%,19,9.60%,54,144,0,27.30%,72.70%,0.00%,12,12,198,6.10% +117305,919,2380,State-funded primary,226,99,127,43.80%,56.20%,10,4.40%,12,5.30%,23,203,0,10.20%,89.80%,0.00%,23,24,209,11.50% +117306,919,2381,State-funded primary,329,152,177,46.20%,53.80%,20,6.10%,90,27.40%,70,259,0,21.30%,78.70%,0.00%,97,102,329,31.00% +117309,919,2386,State-funded primary,349,161,188,46.10%,53.90%,7,2.00%,47,13.50%,23,326,0,6.60%,93.40%,0.00%,37,37,302,12.30% +117310,919,2387,State-funded primary,251,127,124,50.60%,49.40%,8,3.20%,38,15.10%,44,207,0,17.50%,82.50%,0.00%,23,23,237,9.70% +117311,919,2389,State-funded primary,240,117,123,48.80%,51.30%,4,1.70%,22,9.20%,133,104,3,55.40%,43.30%,1.30%,28,28,240,11.70% +117313,919,2391,State-funded primary,224,116,108,51.80%,48.20%,3,1.30%,33,14.70%,59,165,0,26.30%,73.70%,0.00%,47,45,207,21.70% +117314,919,2392,State-funded primary,419,210,209,50.10%,49.90%,5,1.20%,38,9.10%,44,370,5,10.50%,88.30%,1.20%,13,13,419,3.10% +117315,919,2393,State-funded primary,442,226,216,51.10%,48.90%,3,0.70%,50,11.30%,98,343,1,22.20%,77.60%,0.20%,22,22,403,5.50% +117316,919,2394,State-funded primary,328,152,176,46.30%,53.70%,16,4.90%,87,26.50%,86,242,0,26.20%,73.80%,0.00%,42,42,252,16.70% +117317,919,2395,State-funded primary,170,85,85,50.00%,50.00%,2,1.20%,44,25.90%,39,131,0,22.90%,77.10%,0.00%,38,38,170,22.40% +117319,919,2397,State-funded primary,209,96,113,45.90%,54.10%,6,2.90%,19,9.10%,15,194,0,7.20%,92.80%,0.00%,14,14,166,8.40% +117322,919,2405,State-funded primary,232,121,111,52.20%,47.80%,6,2.60%,40,17.20%,39,193,0,16.80%,83.20%,0.00%,50,52,232,22.40% +117323,919,2406,State-funded primary,211,113,98,53.60%,46.40%,1,0.50%,16,7.60%,37,174,0,17.50%,82.50%,0.00%,33,33,173,19.10% +117324,919,2407,State-funded primary,388,185,203,47.70%,52.30%,9,2.30%,50,12.90%,129,259,0,33.20%,66.80%,0.00%,93,97,369,26.30% +117326,919,2411,State-funded primary,220,120,100,54.50%,45.50%,12,5.50%,21,9.50%,72,148,0,32.70%,67.30%,0.00%,59,62,210,29.50% +117327,919,2412,State-funded primary,236,108,128,45.80%,54.20%,5,2.10%,39,16.50%,57,179,0,24.20%,75.80%,0.00%,22,25,209,12.00% +117328,919,2414,State-funded primary,329,141,188,42.90%,57.10%,6,1.80%,44,13.40%,36,293,0,10.90%,89.10%,0.00%,32,36,296,12.20% +117329,919,2415,State-funded primary,177,86,91,48.60%,51.40%,2,1.10%,29,16.40%,31,146,0,17.50%,82.50%,0.00%,32,33,177,18.60% +117330,919,2416,State-funded primary,438,215,223,49.10%,50.90%,7,1.60%,49,11.20%,48,388,2,11.00%,88.60%,0.50%,29,30,409,7.30% +117331,919,2417,State-funded primary,167,87,80,52.10%,47.90%,3,1.80%,18,10.80%,7,159,1,4.20%,95.20%,0.60%,12,12,140,8.60% +117333,919,2422,State-funded primary,204,99,105,48.50%,51.50%,6,2.90%,22,10.80%,50,150,4,24.50%,73.50%,2.00%,58,62,193,32.10% +117334,919,2424,State-funded primary,444,239,205,53.80%,46.20%,14,3.20%,53,11.90%,62,382,0,14.00%,86.00%,0.00%,42,43,415,10.40% +117335,919,2426,State-funded primary,322,155,167,48.10%,51.90%,7,2.20%,44,13.70%,87,232,3,27.00%,72.00%,0.90%,72,74,301,24.60% +117336,919,2427,State-funded primary,238,120,118,50.40%,49.60%,6,2.50%,51,21.40%,84,154,0,35.30%,64.70%,0.00%,68,71,238,29.80% +117337,919,2428,State-funded primary,421,212,209,50.40%,49.60%,6,1.40%,43,10.20%,41,379,1,9.70%,90.00%,0.20%,26,29,421,6.90% +117340,919,2433,State-funded primary,230,115,115,50.00%,50.00%,7,3.00%,31,13.50%,60,168,2,26.10%,73.00%,0.90%,38,38,207,18.40% +117342,919,2437,State-funded primary,415,204,211,49.20%,50.80%,3,0.70%,53,12.80%,37,378,0,8.90%,91.10%,0.00%,13,13,415,3.10% +117345,919,2442,State-funded primary,215,101,114,47.00%,53.00%,6,2.80%,39,18.10%,10,205,0,4.70%,95.30%,0.00%,63,65,199,32.70% +117346,919,2443,State-funded primary,307,135,172,44.00%,56.00%,7,2.30%,36,11.70%,40,267,0,13.00%,87.00%,0.00%,44,49,272,18.00% +117349,919,2448,State-funded primary,233,106,127,45.50%,54.50%,6,2.60%,137,58.80%,76,157,0,32.60%,67.40%,0.00%,65,67,205,32.70% +117352,919,2451,State-funded primary,304,152,152,50.00%,50.00%,4,1.30%,39,12.80%,55,249,0,18.10%,81.90%,0.00%,68,78,287,27.20% +117353,919,2452,State-funded primary,458,217,241,47.40%,52.60%,6,1.30%,62,13.50%,36,422,0,7.90%,92.10%,0.00%,23,28,421,6.70% +117358,919,2457,State-funded primary,455,216,239,47.50%,52.50%,4,0.90%,17,3.70%,39,416,0,8.60%,91.40%,0.00%,8,9,424,2.10% +117361,919,2462,State-funded primary,446,205,241,46.00%,54.00%,10,2.20%,34,7.60%,29,417,0,6.50%,93.50%,0.00%,35,33,406,8.10% +117363,919,2464,State-funded primary,347,150,197,43.20%,56.80%,6,1.70%,22,6.30%,29,318,0,8.40%,91.60%,0.00%,52,57,321,17.80% +117364,919,2465,State-funded primary,438,209,229,47.70%,52.30%,12,2.70%,106,24.20%,91,347,0,20.80%,79.20%,0.00%,107,114,395,28.90% +117365,919,2466,State-funded primary,377,190,187,50.40%,49.60%,7,1.90%,30,8.00%,57,320,0,15.10%,84.90%,0.00%,55,59,356,16.60% +117366,919,2467,State-funded primary,398,193,205,48.50%,51.50%,3,0.80%,77,19.30%,68,329,1,17.10%,82.70%,0.30%,102,106,380,27.90% +117367,919,2468,State-funded primary,413,215,198,52.10%,47.90%,6,1.50%,61,14.80%,129,284,0,31.20%,68.80%,0.00%,108,113,413,27.40% +117368,919,2469,State-funded primary,455,243,212,53.40%,46.60%,9,2.00%,81,17.80%,106,349,0,23.30%,76.70%,0.00%,71,71,419,16.90% +117369,919,2980,State-funded primary,447,208,239,46.50%,53.50%,11,2.50%,56,12.50%,76,371,0,17.00%,83.00%,0.00%,40,42,416,10.10% +117370,919,2982,State-funded primary,236,112,124,47.50%,52.50%,1,0.40%,29,12.30%,69,167,0,29.20%,70.80%,0.00%,36,36,209,17.20% +117371,919,2985,State-funded primary,285,140,145,49.10%,50.90%,5,1.80%,61,21.40%,81,204,0,28.40%,71.60%,0.00%,110,112,284,39.40% +117374,919,2991,State-funded primary,211,97,114,46.00%,54.00%,5,2.40%,18,8.50%,123,88,0,58.30%,41.70%,0.00%,15,15,180,8.30% +117376,919,2994,State-funded primary,412,201,211,48.80%,51.20%,1,0.20%,49,11.90%,31,373,8,7.50%,90.50%,1.90%,39,42,412,10.20% +117377,919,2995,State-funded primary,214,107,107,50.00%,50.00%,9,4.20%,28,13.10%,76,138,0,35.50%,64.50%,0.00%,47,47,179,26.30% +117378,919,2996,State-funded primary,452,223,229,49.30%,50.70%,6,1.30%,82,18.10%,49,403,0,10.80%,89.20%,0.00%,57,62,415,14.90% +117379,919,2997,State-funded primary,148,83,65,56.10%,43.90%,7,4.70%,22,14.90%,54,94,0,36.50%,63.50%,0.00%,46,51,148,34.50% +117382,919,3000,State-funded primary,107,52,55,48.60%,51.40%,1,0.90%,10,9.30%,3,104,0,2.80%,97.20%,0.00%,9,10,100,10.00% +117384,919,3004,State-funded primary,136,71,65,52.20%,47.80%,4,2.90%,32,23.50%,7,129,0,5.10%,94.90%,0.00%,31,32,136,23.50% +117385,919,3005,State-funded primary,222,97,125,43.70%,56.30%,8,3.60%,52,23.40%,8,214,0,3.60%,96.40%,0.00%,50,52,222,23.40% +117386,919,3006,State-funded primary,32,11,21,34.40%,65.60%,1,3.10%,10,31.30%,4,28,0,12.50%,87.50%,0.00%,2,2,32,6.30% +117387,919,3007,State-funded primary,99,53,46,53.50%,46.50%,1,1.00%,10,10.10%,1,98,0,1.00%,99.00%,0.00%,12,12,86,14.00% +117388,919,3008,State-funded primary,35,14,21,40.00%,60.00%,5,14.30%,11,31.40%,0,35,0,0.00%,100.00%,0.00%,6,7,30,23.30% +117389,919,3009,State-funded primary,91,49,42,53.80%,46.20%,0,0.00%,14,15.40%,4,87,0,4.40%,95.60%,0.00%,5,5,91,5.50% +117390,919,3011,State-funded primary,145,85,60,58.60%,41.40%,5,3.40%,23,15.90%,3,142,0,2.10%,97.90%,0.00%,22,22,145,15.20% +117391,919,3012,State-funded primary,208,105,103,50.50%,49.50%,2,1.00%,23,11.10%,24,184,0,11.50%,88.50%,0.00%,27,32,208,15.40% +117392,919,3013,State-funded primary,283,133,150,47.00%,53.00%,3,1.10%,17,6.00%,10,273,0,3.50%,96.50%,0.00%,37,37,265,14.00% +117393,919,3015,State-funded primary,93,36,57,38.70%,61.30%,0,0.00%,23,24.70%,7,86,0,7.50%,92.50%,0.00%,22,21,87,24.10% +117394,919,3016,State-funded primary,102,49,53,48.00%,52.00%,1,1.00%,13,12.70%,3,99,0,2.90%,97.10%,0.00%,11,11,102,10.80% +117395,919,3018,State-funded primary,92,54,38,58.70%,41.30%,6,6.50%,28,30.40%,4,88,0,4.30%,95.70%,0.00%,15,15,92,16.30% +117396,919,3020,State-funded primary,103,52,51,50.50%,49.50%,2,1.90%,12,11.70%,2,101,0,1.90%,98.10%,0.00%,14,14,97,14.40% +117397,919,3025,State-funded primary,139,66,73,47.50%,52.50%,10,7.20%,26,18.70%,34,105,0,24.50%,75.50%,0.00%,63,65,121,53.70% +117398,919,3026,State-funded primary,222,97,125,43.70%,56.30%,9,4.10%,24,10.80%,10,212,0,4.50%,95.50%,0.00%,28,30,211,14.20% +117400,919,3029,State-funded primary,444,203,241,45.70%,54.30%,22,5.00%,69,15.50%,73,371,0,16.40%,83.60%,0.00%,88,102,419,24.30% +117401,919,3030,State-funded primary,207,97,110,46.90%,53.10%,2,1.00%,12,5.80%,3,204,0,1.40%,98.60%,0.00%,30,31,207,15.00% +117402,919,3032,State-funded primary,76,38,38,50.00%,50.00%,3,3.90%,6,7.90%,0,76,0,0.00%,100.00%,0.00%,10,10,67,14.90% +117403,919,3034,State-funded primary,70,32,38,45.70%,54.30%,1,1.40%,11,15.70%,5,65,0,7.10%,92.90%,0.00%,1,1,70,1.40% +117405,919,3038,State-funded primary,106,47,59,44.30%,55.70%,2,1.90%,12,11.30%,10,96,0,9.40%,90.60%,0.00%,18,19,101,18.80% +117406,919,3039,State-funded primary,280,151,129,53.90%,46.10%,7,2.50%,38,13.60%,7,273,0,2.50%,97.50%,0.00%,36,37,251,14.70% +117407,919,3040,State-funded primary,220,111,109,50.50%,49.50%,6,2.70%,44,20.00%,14,206,0,6.40%,93.60%,0.00%,23,25,192,13.00% +117408,919,3041,State-funded primary,67,27,40,40.30%,59.70%,0,0.00%,12,17.90%,2,65,0,3.00%,97.00%,0.00%,3,3,60,5.00% +117409,919,3042,State-funded primary,236,122,114,51.70%,48.30%,5,2.10%,33,14.00%,3,233,0,1.30%,98.70%,0.00%,25,26,236,11.00% +117410,919,3043,State-funded primary,393,211,182,53.70%,46.30%,7,1.80%,49,12.50%,33,360,0,8.40%,91.60%,0.00%,52,55,359,15.30% +117413,919,3047,State-funded primary,125,52,73,41.60%,58.40%,3,2.40%,17,13.60%,5,120,0,4.00%,96.00%,0.00%,18,19,109,17.40% +117414,919,3049,State-funded primary,204,101,103,49.50%,50.50%,2,1.00%,32,15.70%,12,191,1,5.90%,93.60%,0.50%,37,38,204,18.60% +117415,919,3053,State-funded primary,197,97,100,49.20%,50.80%,6,3.00%,20,10.20%,20,177,0,10.20%,89.80%,0.00%,42,44,197,22.30% +117416,919,3054,State-funded primary,234,111,123,47.40%,52.60%,5,2.10%,39,16.70%,42,192,0,17.90%,82.10%,0.00%,34,37,207,17.90% +117417,919,3301,State-funded primary,202,101,101,50.00%,50.00%,3,1.50%,14,6.90%,12,190,0,5.90%,94.10%,0.00%,19,19,190,10.00% +117418,919,3302,State-funded primary,230,118,112,51.30%,48.70%,3,1.30%,32,13.90%,25,205,0,10.90%,89.10%,0.00%,30,30,211,14.20% +117419,919,3303,State-funded primary,61,33,28,54.10%,45.90%,3,4.90%,8,13.10%,8,53,0,13.10%,86.90%,0.00%,7,7,48,14.60% +117420,919,3306,State-funded primary,74,39,35,52.70%,47.30%,3,4.10%,22,29.70%,0,74,0,0.00%,100.00%,0.00%,10,10,69,14.50% +117421,919,3307,State-funded primary,127,60,67,47.20%,52.80%,4,3.10%,17,13.40%,13,105,9,10.20%,82.70%,7.10%,4,4,127,3.10% +117422,919,3308,State-funded primary,28,14,14,50.00%,50.00%,0,0.00%,9,32.10%,3,25,0,10.70%,89.30%,0.00%,4,4,21,19.00% +117423,919,3314,State-funded primary,185,93,92,50.30%,49.70%,1,0.50%,16,8.60%,10,175,0,5.40%,94.60%,0.00%,11,11,149,7.40% +117424,919,3315,State-funded primary,206,109,97,52.90%,47.10%,3,1.50%,21,10.20%,19,187,0,9.20%,90.80%,0.00%,18,19,186,10.20% +117426,919,3319,State-funded primary,216,112,104,51.90%,48.10%,4,1.90%,23,10.60%,47,169,0,21.80%,78.20%,0.00%,4,8,195,4.10% +117428,919,3326,State-funded primary,193,107,86,55.40%,44.60%,6,3.10%,21,10.90%,50,143,0,25.90%,74.10%,0.00%,49,49,193,25.40% +117430,919,3329,State-funded primary,144,62,82,43.10%,56.90%,2,1.40%,20,13.90%,16,128,0,11.10%,88.90%,0.00%,14,14,144,9.70% +117431,919,3333,State-funded primary,92,41,51,44.60%,55.40%,0,0.00%,11,12.00%,41,51,0,44.60%,55.40%,0.00%,11,12,87,13.80% +117432,919,3334,State-funded primary,176,93,83,52.80%,47.20%,3,1.70%,15,8.50%,12,164,0,6.80%,93.20%,0.00%,32,35,176,19.90% +117433,919,3335,State-funded primary,87,40,47,46.00%,54.00%,1,1.10%,5,5.70%,5,82,0,5.70%,94.30%,0.00%,15,17,77,22.10% +117434,919,3336,State-funded primary,147,79,68,53.70%,46.30%,0,0.00%,12,8.20%,20,127,0,13.60%,86.40%,0.00%,5,5,147,3.40% +117435,919,3339,State-funded primary,101,59,42,58.40%,41.60%,5,5.00%,14,13.90%,11,90,0,10.90%,89.10%,0.00%,2,2,101,2.00% +117437,919,3344,State-funded primary,244,126,118,51.60%,48.40%,5,2.00%,29,11.90%,10,234,0,4.10%,95.90%,0.00%,8,11,213,5.20% +117439,919,3347,State-funded primary,120,50,70,41.70%,58.30%,7,5.80%,9,7.50%,5,115,0,4.20%,95.80%,0.00%,15,15,94,16.00% +117440,919,3348,State-funded primary,171,86,85,50.30%,49.70%,6,3.50%,17,9.90%,4,167,0,2.30%,97.70%,0.00%,21,21,171,12.30% +117441,919,3349,State-funded primary,194,96,98,49.50%,50.50%,7,3.60%,9,4.60%,9,185,0,4.60%,95.40%,0.00%,9,14,175,8.00% +117442,919,3350,State-funded primary,228,106,122,46.50%,53.50%,5,2.20%,30,13.20%,9,219,0,3.90%,96.10%,0.00%,23,23,207,11.10% +117443,919,3352,State-funded primary,92,53,39,57.60%,42.40%,1,1.10%,6,6.50%,8,84,0,8.70%,91.30%,0.00%,5,5,92,5.40% +117444,919,3353,State-funded primary,215,112,103,52.10%,47.90%,5,2.30%,16,7.40%,10,205,0,4.70%,95.30%,0.00%,22,22,189,11.60% +117445,919,3357,State-funded primary,158,91,67,57.60%,42.40%,0,0.00%,27,17.10%,6,152,0,3.80%,96.20%,0.00%,30,32,135,23.70% +117446,919,3358,State-funded primary,91,37,54,40.70%,59.30%,0,0.00%,4,4.40%,21,69,1,23.10%,75.80%,1.10%,17,17,86,19.80% +117447,919,3359,State-funded primary,195,90,105,46.20%,53.80%,3,1.50%,28,14.40%,52,143,0,26.70%,73.30%,0.00%,20,20,195,10.30% +117448,919,3360,State-funded primary,241,124,117,51.50%,48.50%,5,2.10%,27,11.20%,26,215,0,10.80%,89.20%,0.00%,26,26,209,12.40% +117449,919,3361,State-funded primary,174,88,86,50.60%,49.40%,3,1.70%,2,1.10%,32,142,0,18.40%,81.60%,0.00%,11,11,174,6.30% +117451,919,3363,State-funded primary,180,92,88,51.10%,48.90%,4,2.20%,26,14.40%,29,151,0,16.10%,83.90%,0.00%,23,24,180,13.30% +117452,919,3364,State-funded primary,138,67,71,48.60%,51.40%,5,3.60%,9,6.50%,23,115,0,16.70%,83.30%,0.00%,20,21,114,18.40% +117453,919,3366,State-funded primary,63,33,30,52.40%,47.60%,6,9.50%,14,22.20%,5,58,0,7.90%,92.10%,0.00%,15,13,55,23.60% +117455,919,3368,State-funded primary,69,35,34,50.70%,49.30%,2,2.90%,5,7.20%,0,69,0,0.00%,100.00%,0.00%,6,7,63,11.10% +117456,919,3369,State-funded primary,228,108,120,47.40%,52.60%,11,4.80%,23,10.10%,73,155,0,32.00%,68.00%,0.00%,46,47,203,23.20% +117457,919,3370,State-funded primary,174,87,87,50.00%,50.00%,3,1.70%,11,6.30%,8,166,0,4.60%,95.40%,0.00%,25,26,174,14.90% +117458,919,3371,State-funded primary,236,107,129,45.30%,54.70%,4,1.70%,30,12.70%,10,226,0,4.20%,95.80%,0.00%,17,17,236,7.20% +117459,919,3373,State-funded primary,120,57,63,47.50%,52.50%,1,0.80%,12,10.00%,2,118,0,1.70%,98.30%,0.00%,23,23,120,19.20% +117460,919,3376,State-funded primary,221,107,114,48.40%,51.60%,10,4.50%,25,11.30%,12,209,0,5.40%,94.60%,0.00%,26,26,207,12.60% +117461,919,3378,State-funded primary,185,92,93,49.70%,50.30%,3,1.60%,17,9.20%,19,166,0,10.30%,89.70%,0.00%,27,28,185,15.10% +117462,919,3379,State-funded primary,256,131,125,51.20%,48.80%,2,0.80%,28,10.90%,23,233,0,9.00%,91.00%,0.00%,18,19,256,7.40% +117463,919,3380,State-funded primary,101,52,49,51.50%,48.50%,1,1.00%,7,6.90%,1,100,0,1.00%,99.00%,0.00%,8,8,101,7.90% +117464,919,3382,State-funded primary,201,95,106,47.30%,52.70%,2,1.00%,12,6.00%,54,147,0,26.90%,73.10%,0.00%,15,15,192,7.80% +117465,919,3383,State-funded primary,237,126,111,53.20%,46.80%,4,1.70%,50,21.10%,71,166,0,30.00%,70.00%,0.00%,37,41,214,19.20% +117466,919,3384,State-funded primary,209,95,114,45.50%,54.50%,10,4.80%,21,10.00%,66,143,0,31.60%,68.40%,0.00%,34,34,209,16.30% +117467,919,3385,State-funded primary,246,138,108,56.10%,43.90%,4,1.60%,20,8.10%,29,215,2,11.80%,87.40%,0.80%,18,19,210,9.00% +117468,919,3386,State-funded primary,237,123,114,51.90%,48.10%,3,1.30%,29,12.20%,42,195,0,17.70%,82.30%,0.00%,28,28,237,11.80% +117469,919,3388,State-funded primary,481,220,261,45.70%,54.30%,18,3.70%,96,20.00%,219,262,0,45.50%,54.50%,0.00%,86,91,425,21.40% +117470,919,3389,State-funded primary,219,109,110,49.80%,50.20%,2,0.90%,20,9.10%,53,166,0,24.20%,75.80%,0.00%,22,23,203,11.30% +117471,919,3391,State-funded primary,217,110,107,50.70%,49.30%,5,2.30%,33,15.20%,47,170,0,21.70%,78.30%,0.00%,28,29,209,13.90% +117472,919,3393,State-funded primary,219,103,116,47.00%,53.00%,8,3.70%,21,9.60%,61,158,0,27.90%,72.10%,0.00%,25,25,201,12.40% +117473,919,3394,State-funded primary,311,150,161,48.20%,51.80%,9,2.90%,44,14.10%,33,277,1,10.60%,89.10%,0.30%,37,38,287,13.20% +117474,919,3397,State-funded primary,237,123,114,51.90%,48.10%,3,1.30%,21,8.90%,74,163,0,31.20%,68.80%,0.00%,22,19,209,9.10% +117478,919,3401,State-funded primary,240,123,117,51.30%,48.80%,1,0.40%,11,4.60%,38,202,0,15.80%,84.20%,0.00%,7,7,210,3.30% +117479,919,3402,State-funded primary,182,75,107,41.20%,58.80%,6,3.30%,29,15.90%,32,150,0,17.60%,82.40%,0.00%,18,21,168,12.50% +117481,919,3404,State-funded primary,210,104,106,49.50%,50.50%,7,3.30%,25,11.90%,31,179,0,14.80%,85.20%,0.00%,48,48,185,25.90% +117484,919,3409,State-funded primary,200,96,104,48.00%,52.00%,6,3.00%,13,6.50%,29,171,0,14.50%,85.50%,0.00%,20,20,175,11.40% +117488,919,3415,State-funded primary,340,178,162,52.40%,47.60%,4,1.20%,43,12.60%,59,280,1,17.40%,82.40%,0.30%,20,19,307,6.20% +117489,919,3416,State-funded primary,216,99,117,45.80%,54.20%,3,1.40%,23,10.60%,30,186,0,13.90%,86.10%,0.00%,18,22,199,11.10% +117490,919,3419,State-funded primary,421,194,227,46.10%,53.90%,7,1.70%,32,7.60%,22,399,0,5.20%,94.80%,0.00%,42,46,421,10.90% +117491,919,3421,State-funded primary,457,241,216,52.70%,47.30%,2,0.40%,31,6.80%,113,344,0,24.70%,75.30%,0.00%,29,32,416,7.70% +117492,919,3423,State-funded primary,201,96,105,47.80%,52.20%,12,6.00%,20,10.00%,45,156,0,22.40%,77.60%,0.00%,41,43,188,22.90% +117495,919,3428,State-funded primary,437,223,214,51.00%,49.00%,4,0.90%,70,16.00%,289,148,0,66.10%,33.90%,0.00%,41,42,420,10.00% +117496,919,3975,State-funded primary,208,101,107,48.60%,51.40%,1,0.50%,12,5.80%,45,163,0,21.60%,78.40%,0.00%,10,10,208,4.80% +117497,919,3976,State-funded primary,170,82,88,48.20%,51.80%,3,1.80%,31,18.20%,29,141,0,17.10%,82.90%,0.00%,52,53,170,31.20% +117498,919,3977,State-funded primary,447,212,235,47.40%,52.60%,10,2.20%,38,8.50%,142,305,0,31.80%,68.20%,0.00%,38,41,417,9.80% +117499,919,4000,State-funded secondary,1243,599,644,48.20%,51.80%,24,1.90%,190,15.30%,66,1177,0,5.30%,94.70%,0.00%,200,207,1018,20.30% +117500,919,4005,State-funded secondary,1297,642,655,49.50%,50.50%,14,1.10%,152,11.70%,174,1122,1,13.40%,86.50%,0.10%,164,168,1049,16.00% +117504,919,4010,State-funded secondary,570,281,289,49.30%,50.70%,23,4.00%,68,11.90%,58,511,1,10.20%,89.60%,0.20%,178,179,508,35.20% +117518,919,4066,State-funded secondary,1227,609,618,49.60%,50.40%,46,3.70%,219,17.80%,136,1086,5,11.10%,88.50%,0.40%,297,307,1127,27.20% +117530,919,4104,State-funded secondary,1474,727,747,49.30%,50.70%,24,1.60%,223,15.10%,185,1284,5,12.60%,87.10%,0.30%,196,191,1188,16.10% +117534,919,4116,State-funded secondary,1449,711,738,49.10%,50.90%,41,2.80%,248,17.10%,183,1265,1,12.60%,87.30%,0.10%,391,386,1186,32.50% +117537,919,4122,State-funded secondary,987,521,466,52.80%,47.20%,32,3.20%,157,15.90%,102,882,3,10.30%,89.40%,0.30%,225,235,857,27.40% +117541,919,4144,State-funded primary,453,208,245,45.90%,54.10%,5,1.10%,20,4.40%,19,434,0,4.20%,95.80%,0.00%,20,20,416,4.80% +117552,919,4499,State-funded secondary,913,450,463,49.30%,50.70%,24,2.60%,163,17.90%,150,760,3,16.40%,83.20%,0.30%,272,279,824,33.90% +117554,919,4506,State-funded secondary,477,227,250,47.60%,52.40%,6,1.30%,72,15.10%,17,460,0,3.60%,96.40%,0.00%,78,85,477,17.80% +117555,919,4606,State-funded secondary,768,350,418,45.60%,54.40%,18,2.30%,136,17.70%,142,626,0,18.50%,81.50%,0.00%,143,152,682,22.30% +117557,919,4619,State-funded secondary,1125,544,581,48.40%,51.60%,15,1.30%,106,9.40%,242,876,7,21.50%,77.90%,0.60%,94,102,902,11.30% +117559,919,4627,State-funded primary,315,158,157,50.20%,49.80%,12,3.80%,45,14.30%,23,288,4,7.30%,91.40%,1.30%,41,42,315,13.30% +117562,919,5202,State-funded primary,247,116,131,47.00%,53.00%,7,2.80%,22,8.90%,115,132,0,46.60%,53.40%,0.00%,85,88,216,40.70% +117563,919,5203,State-funded primary,223,112,111,50.20%,49.80%,3,1.30%,19,8.50%,10,213,0,4.50%,95.50%,0.00%,7,7,206,3.40% +117564,919,5204,State-funded primary,81,39,42,48.10%,51.90%,4,4.90%,14,17.30%,3,78,0,3.70%,96.30%,0.00%,31,31,81,38.30% +117565,919,5205,State-funded primary,453,234,219,51.70%,48.30%,6,1.30%,27,6.00%,28,424,1,6.20%,93.60%,0.20%,25,32,419,7.60% +117567,919,5207,State-funded primary,236,116,120,49.20%,50.80%,6,2.50%,38,16.10%,59,177,0,25.00%,75.00%,0.00%,30,30,209,14.40% +117569,919,5209,State-funded primary,107,62,45,57.90%,42.10%,1,0.90%,19,17.80%,10,97,0,9.30%,90.70%,0.00%,10,11,103,10.70% +117570,919,5210,State-funded primary,345,161,184,46.70%,53.30%,4,1.20%,28,8.10%,25,320,0,7.20%,92.80%,0.00%,16,16,317,5.00% +117577,919,5405,State-funded secondary,1194,93,1101,7.80%,92.20%,9,0.80%,80,6.70%,86,1108,0,7.20%,92.80%,0.00%,61,50,853,5.90% +117578,919,5406,State-funded secondary,1506,748,758,49.70%,50.30%,35,2.30%,194,12.90%,73,1432,1,4.80%,95.10%,0.10%,144,152,1230,12.40% +117600,919,6000,Independent school,522,503,19,96.40%,3.60%,2,0.40%,110,21.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117601,919,6002,Independent school,435,173,262,39.80%,60.20%,1,0.20%,37,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117602,919,6003,Independent school,865,263,602,30.40%,69.60%,3,0.30%,149,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117604,919,6005,Independent school,1333,588,745,44.10%,55.90%,4,0.30%,285,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117605,919,6007,Independent school,1276,603,673,47.30%,52.70%,6,0.50%,151,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117606,919,6012,Independent school,654,492,162,75.20%,24.80%,5,0.80%,99,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117607,919,6015,Independent school,892,430,462,48.20%,51.80%,1,0.10%,104,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117608,919,6016,Independent school,387,0,387,0.00%,100.00%,0,0.00%,61,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117609,919,6020,Independent school,456,456,0,100.00%,0.00%,2,0.40%,125,27.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117610,919,6021,Independent school,381,153,228,40.20%,59.80%,0,0.00%,33,8.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117611,919,6024,Independent school,177,0,177,0.00%,100.00%,2,1.10%,22,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117612,919,6028,Independent school,523,225,298,43.00%,57.00%,2,0.40%,129,24.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117613,919,6029,Independent school,313,311,2,99.40%,0.60%,1,0.30%,104,33.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117615,919,6034,Independent school,347,113,234,32.60%,67.40%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117616,919,6036,Independent school,945,0,945,0.00%,100.00%,1,0.10%,96,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117617,919,6038,Independent school,1156,1156,0,100.00%,0.00%,0,0.00%,92,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117618,919,6041,Independent school,353,259,94,73.40%,26.60%,0,0.00%,163,46.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117620,919,6045,Independent school,521,211,310,40.50%,59.50%,0,0.00%,72,13.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117621,919,6046,Independent school,500,234,266,46.80%,53.20%,1,0.20%,91,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117622,919,6047,Independent school,500,225,275,45.00%,55.00%,34,6.80%,108,21.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117623,919,6062,Independent school,158,46,112,29.10%,70.90%,125,79.10%,16,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117624,919,6080,Independent school,142,131,11,92.30%,7.70%,1,0.70%,7,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117627,919,6092,Independent school,142,135,7,95.10%,4.90%,0,0.00%,40,28.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117628,919,6098,Independent school,264,124,140,47.00%,53.00%,0,0.00%,26,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117629,919,6099,Independent school,164,74,90,45.10%,54.90%,2,1.20%,31,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117630,919,6102,Independent school,384,161,223,41.90%,58.10%,0,0.00%,40,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117633,919,6115,Independent school,878,373,505,42.50%,57.50%,0,0.00%,151,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117635,919,6126,Independent school,99,99,0,100.00%,0.00%,0,0.00%,18,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117636,919,6128,Independent school,397,128,269,32.20%,67.80%,0,0.00%,47,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117638,919,6136,Independent school,797,70,727,8.80%,91.20%,1,0.10%,244,30.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117640,919,6154,Independent school,63,34,29,54.00%,46.00%,4,6.30%,7,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117641,919,6165,Independent school,999,989,10,99.00%,1.00%,0,0.00%,206,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117643,919,6201,Independent school,343,0,343,0.00%,100.00%,0,0.00%,28,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117644,919,6202,Independent school,141,141,0,100.00%,0.00%,0,0.00%,26,18.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117646,919,6215,Independent school,45,11,34,24.40%,75.60%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117647,919,6220,Independent school,901,73,828,8.10%,91.90%,0,0.00%,173,19.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117648,919,6221,Independent school,1473,0,1473,0.00%,100.00%,0,0.00%,208,14.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117649,919,6222,Independent school,1170,1170,0,100.00%,0.00%,1,0.10%,135,11.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117650,919,6224,Independent school,181,90,91,49.70%,50.30%,32,17.70%,2,1.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117651,919,6225,Independent school,370,0,370,0.00%,100.00%,0,0.00%,24,6.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117653,919,6227,Independent school,553,278,275,50.30%,49.70%,0,0.00%,59,10.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117654,919,6228,Independent school,56,30,26,53.60%,46.40%,2,3.60%,5,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117657,919,6231,Independent school,660,304,356,46.10%,53.90%,1,0.20%,211,32.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117658,919,6232,Independent school,457,236,221,51.60%,48.40%,0,0.00%,30,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117662,919,6236,Independent school,203,93,110,45.80%,54.20%,1,0.50%,10,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +117665,919,7006,Non-maintained special school,37,8,29,21.60%,78.40%,37,100.00%,0,0.00%,3,34,0,8.10%,91.90%,0.00%,37,21,21,100.00% +117667,919,7008,State-funded special school,150,36,114,24.00%,76.00%,150,100.00%,0,0.00%,22,128,0,14.70%,85.30%,0.00%,52,57,150,38.00% +117669,919,7010,State-funded special school,172,47,125,27.30%,72.70%,172,100.00%,0,0.00%,8,164,0,4.70%,95.30%,0.00%,72,78,172,45.30% +117670,919,7011,State-funded special school,113,34,79,30.10%,69.90%,113,100.00%,0,0.00%,14,98,1,12.40%,86.70%,0.90%,39,40,113,35.40% +117671,919,7012,State-funded special school,160,56,104,35.00%,65.00%,160,100.00%,0,0.00%,2,158,0,1.30%,98.80%,0.00%,69,70,160,43.80% +117672,919,7013,State-funded special school,130,41,89,31.50%,68.50%,130,100.00%,0,0.00%,8,122,0,6.20%,93.80%,0.00%,50,55,130,42.30% +117674,919,7016,State-funded special school,101,36,65,35.60%,64.40%,101,100.00%,0,0.00%,0,101,0,0.00%,100.00%,0.00%,58,61,101,60.40% +117676,919,7019,State-funded special school,100,33,67,33.00%,67.00%,100,100.00%,0,0.00%,7,93,0,7.00%,93.00%,0.00%,33,33,100,33.00% +117679,919,7022,State-funded special school,112,41,71,36.60%,63.40%,112,100.00%,0,0.00%,2,110,0,1.80%,98.20%,0.00%,45,38,93,40.90% +117680,919,7023,State-funded special school,92,30,62,32.60%,67.40%,92,100.00%,0,0.00%,22,70,0,23.90%,76.10%,0.00%,30,27,82,32.90% +117681,919,7024,State-funded special school,94,30,64,31.90%,68.10%,94,100.00%,0,0.00%,28,66,0,29.80%,70.20%,0.00%,39,34,85,40.00% +117682,919,7025,State-funded special school,124,42,82,33.90%,66.10%,124,100.00%,0,0.00%,19,105,0,15.30%,84.70%,0.00%,41,40,107,37.40% +117683,919,7026,State-funded special school,98,31,67,31.60%,68.40%,98,100.00%,0,0.00%,37,61,0,37.80%,62.20%,0.00%,36,34,80,42.50% +117684,919,7028,State-funded special school,162,59,103,36.40%,63.60%,162,100.00%,0,0.00%,14,148,0,8.60%,91.40%,0.00%,47,51,147,34.70% +117685,919,7032,State-funded special school,129,62,67,48.10%,51.90%,124,96.10%,5,3.90%,111,18,0,86.00%,14.00%,0.00%,42,53,126,42.10% +117686,919,7033,State-funded special school,87,0,87,0.00%,100.00%,87,100.00%,0,0.00%,2,85,0,2.30%,97.70%,0.00%,50,58,87,66.70% +117690,919,7042,State-funded special school,172,52,120,30.20%,69.80%,172,100.00%,0,0.00%,13,159,0,7.60%,92.40%,0.00%,46,42,150,28.00% +117691,919,7043,State-funded special school,36,19,17,52.80%,47.20%,36,100.00%,0,0.00%,4,32,0,11.10%,88.90%,0.00%,7,7,35,20.00% +117692,810,1000,State-funded nursery,117,67,50,57.30%,42.70%,2,1.70%,14,12.00%,20,97,0,17.10%,82.90%,0.00%,13,0,2,0.00% +117695,811,1003,State-funded nursery,92,47,45,51.10%,48.90%,3,3.30%,13,14.10%,4,88,0,4.30%,95.70%,0.00%,0,0,0,0.00% +117697,812,1007,State-funded nursery,50,20,30,40.00%,60.00%,0,0.00%,0,0.00%,3,47,0,6.00%,94.00%,0.00%,0,0,0,0.00% +117698,811,1010,State-funded nursery,95,44,51,46.30%,53.70%,1,1.10%,14,14.70%,8,87,0,8.40%,91.60%,0.00%,0,0,0,0.00% +117699,811,1011,State-funded nursery,80,37,43,46.30%,53.80%,3,3.80%,7,8.80%,2,78,0,2.50%,97.50%,0.00%,0,0,0,0.00% +117700,812,1012,State-funded nursery,46,26,20,56.50%,43.50%,0,0.00%,1,2.20%,6,40,0,13.00%,87.00%,0.00%,0,0,0,0.00% +117725,813,2100,State-funded primary,81,40,41,49.40%,50.60%,1,1.20%,13,16.00%,0,81,0,0.00%,100.00%,0.00%,14,14,75,18.70% +117726,813,2101,State-funded primary,191,95,96,49.70%,50.30%,5,2.60%,53,27.70%,7,184,0,3.70%,96.30%,0.00%,67,68,163,41.70% +117727,813,2105,State-funded primary,265,121,144,45.70%,54.30%,6,2.30%,29,10.90%,4,261,0,1.50%,98.50%,0.00%,29,30,265,11.30% +117728,813,2106,State-funded primary,358,166,192,46.40%,53.60%,9,2.50%,71,19.80%,6,352,0,1.70%,98.30%,0.00%,131,126,329,38.30% +117729,813,2107,State-funded primary,325,173,152,53.20%,46.80%,7,2.20%,31,9.50%,11,314,0,3.40%,96.60%,0.00%,71,72,325,22.20% +117730,813,2108,State-funded primary,188,89,99,47.30%,52.70%,6,3.20%,26,13.80%,3,185,0,1.60%,98.40%,0.00%,18,20,188,10.60% +117733,812,2113,State-funded primary,305,153,152,50.20%,49.80%,16,5.20%,36,11.80%,18,287,0,5.90%,94.10%,0.00%,134,136,227,59.90% +117736,813,2116,State-funded primary,49,25,24,51.00%,49.00%,0,0.00%,12,24.50%,1,48,0,2.00%,98.00%,0.00%,7,8,46,17.40% +117737,813,2118,State-funded primary,223,113,110,50.70%,49.30%,8,3.60%,32,14.30%,4,219,0,1.80%,98.20%,0.00%,37,38,209,18.20% +117739,813,2121,State-funded primary,224,107,117,47.80%,52.20%,2,0.90%,24,10.70%,6,218,0,2.70%,97.30%,0.00%,35,35,224,15.60% +117740,813,2122,State-funded primary,78,38,40,48.70%,51.30%,0,0.00%,15,19.20%,0,78,0,0.00%,100.00%,0.00%,20,20,74,27.00% +117741,813,2123,State-funded primary,269,138,131,51.30%,48.70%,3,1.10%,34,12.60%,8,261,0,3.00%,97.00%,0.00%,15,15,269,5.60% +117743,813,2125,State-funded primary,111,56,55,50.50%,49.50%,4,3.60%,14,12.60%,2,109,0,1.80%,98.20%,0.00%,43,43,97,44.30% +117747,813,2130,State-funded primary,198,92,106,46.50%,53.50%,3,1.50%,24,12.10%,30,168,0,15.20%,84.80%,0.00%,57,53,176,30.10% +117748,813,2133,State-funded primary,201,101,100,50.20%,49.80%,2,1.00%,38,18.90%,50,151,0,24.90%,75.10%,0.00%,80,79,179,44.10% +117752,813,2138,State-funded primary,74,44,30,59.50%,40.50%,1,1.40%,0,0.00%,0,74,0,0.00%,100.00%,0.00%,2,2,74,2.70% +117753,813,2140,State-funded primary,94,43,51,45.70%,54.30%,2,2.10%,4,4.30%,0,94,0,0.00%,100.00%,0.00%,11,11,94,11.70% +117756,813,2143,State-funded primary,357,184,173,51.50%,48.50%,7,2.00%,55,15.40%,38,318,1,10.60%,89.10%,0.30%,139,148,357,41.50% +117768,813,2155,State-funded primary,109,52,57,47.70%,52.30%,5,4.60%,9,8.30%,12,97,0,11.00%,89.00%,0.00%,40,38,90,42.20% +117771,813,2159,State-funded primary,134,63,71,47.00%,53.00%,4,3.00%,17,12.70%,14,120,0,10.40%,89.60%,0.00%,48,48,134,35.80% +117780,813,2173,State-funded primary,206,113,93,54.90%,45.10%,5,2.40%,14,6.80%,5,201,0,2.40%,97.60%,0.00%,17,17,206,8.30% +117781,813,2174,State-funded primary,615,320,295,52.00%,48.00%,6,1.00%,111,18.00%,113,502,0,18.40%,81.60%,0.00%,156,152,576,26.40% +117787,813,2180,State-funded primary,228,117,111,51.30%,48.70%,2,0.90%,36,15.80%,13,215,0,5.70%,94.30%,0.00%,86,89,228,39.00% +117811,813,2567,State-funded primary,421,197,224,46.80%,53.20%,10,2.40%,40,9.50%,38,383,0,9.00%,91.00%,0.00%,72,73,421,17.30% +117812,813,2568,State-funded primary,344,164,180,47.70%,52.30%,5,1.50%,41,11.90%,11,333,0,3.20%,96.80%,0.00%,61,67,344,19.50% +117823,811,2700,State-funded primary,129,64,65,49.60%,50.40%,3,2.30%,18,14.00%,1,128,0,0.80%,99.20%,0.00%,38,34,116,29.30% +117824,811,2701,State-funded primary,50,23,27,46.00%,54.00%,4,8.00%,0,0.00%,0,50,0,0.00%,100.00%,0.00%,8,8,50,16.00% +117825,811,2702,State-funded primary,94,43,51,45.70%,54.30%,3,3.20%,13,13.80%,5,89,0,5.30%,94.70%,0.00%,25,25,81,30.90% +117827,811,2704,State-funded primary,315,173,142,54.90%,45.10%,6,1.90%,32,10.20%,11,304,0,3.50%,96.50%,0.00%,118,121,304,39.80% +117830,811,2707,State-funded primary,73,31,42,42.50%,57.50%,2,2.70%,9,12.30%,0,73,0,0.00%,100.00%,0.00%,13,13,66,19.70% +117831,811,2708,State-funded primary,163,85,78,52.10%,47.90%,5,3.10%,16,9.80%,0,163,0,0.00%,100.00%,0.00%,19,19,148,12.80% +117832,811,2709,State-funded primary,308,146,162,47.40%,52.60%,16,5.20%,73,23.70%,14,294,0,4.50%,95.50%,0.00%,153,154,308,50.00% +117833,811,2710,State-funded primary,198,98,100,49.50%,50.50%,4,2.00%,44,22.20%,10,188,0,5.10%,94.90%,0.00%,77,77,198,38.90% +117838,811,2715,State-funded primary,139,63,76,45.30%,54.70%,3,2.20%,26,18.70%,5,134,0,3.60%,96.40%,0.00%,29,30,131,22.90% +117839,811,2718,State-funded primary,76,36,40,47.40%,52.60%,6,7.90%,2,2.60%,0,76,0,0.00%,100.00%,0.00%,10,10,65,15.40% +117840,811,2719,State-funded primary,506,246,260,48.60%,51.40%,19,3.80%,88,17.40%,20,486,0,4.00%,96.00%,0.00%,145,148,506,29.20% +117841,811,2720,State-funded primary,105,62,43,59.00%,41.00%,7,6.70%,13,12.40%,0,105,0,0.00%,100.00%,0.00%,2,6,95,6.30% +117842,811,2721,State-funded primary,319,169,150,53.00%,47.00%,15,4.70%,52,16.30%,26,293,0,8.20%,91.80%,0.00%,43,45,319,14.10% +117851,811,2731,State-funded primary,156,73,83,46.80%,53.20%,11,7.10%,15,9.60%,4,152,0,2.60%,97.40%,0.00%,37,37,156,23.70% +117852,811,2732,State-funded primary,239,91,148,38.10%,61.90%,5,2.10%,15,6.30%,6,233,0,2.50%,97.50%,0.00%,33,37,200,18.50% +117853,811,2733,State-funded primary,562,257,305,45.70%,54.30%,38,6.80%,79,14.10%,15,547,0,2.70%,97.30%,0.00%,141,147,562,26.20% +117855,811,2735,State-funded primary,179,76,103,42.50%,57.50%,3,1.70%,23,12.80%,3,176,0,1.70%,98.30%,0.00%,25,25,179,14.00% +117858,811,2738,State-funded primary,284,142,142,50.00%,50.00%,5,1.80%,42,14.80%,3,281,0,1.10%,98.90%,0.00%,32,32,284,11.30% +117859,811,2739,State-funded primary,92,46,46,50.00%,50.00%,0,0.00%,19,20.70%,0,92,0,0.00%,100.00%,0.00%,6,6,85,7.10% +117860,811,2740,State-funded primary,153,56,97,36.60%,63.40%,14,9.20%,19,12.40%,0,153,0,0.00%,100.00%,0.00%,38,38,153,24.80% +117861,811,2741,State-funded primary,75,38,37,50.70%,49.30%,3,4.00%,11,14.70%,1,74,0,1.30%,98.70%,0.00%,26,26,65,40.00% +117862,811,2742,State-funded primary,54,26,28,48.10%,51.90%,3,5.60%,2,3.70%,0,54,0,0.00%,100.00%,0.00%,13,13,46,28.30% +117864,811,2744,State-funded primary,179,80,99,44.70%,55.30%,8,4.50%,29,16.20%,2,177,0,1.10%,98.90%,0.00%,35,36,179,20.10% +117866,811,2747,State-funded primary,219,112,107,51.10%,48.90%,4,1.80%,21,9.60%,4,215,0,1.80%,98.20%,0.00%,9,10,219,4.60% +117867,811,2748,State-funded primary,108,55,53,50.90%,49.10%,2,1.90%,24,22.20%,0,108,0,0.00%,100.00%,0.00%,25,25,95,26.30% +117868,811,2749,State-funded primary,341,164,177,48.10%,51.90%,10,2.90%,33,9.70%,20,321,0,5.90%,94.10%,0.00%,34,37,341,10.90% +117872,811,2754,State-funded primary,133,63,70,47.40%,52.60%,3,2.30%,10,7.50%,8,125,0,6.00%,94.00%,0.00%,20,20,121,16.50% +117875,811,2757,State-funded primary,237,101,136,42.60%,57.40%,10,4.20%,36,15.20%,10,227,0,4.20%,95.80%,0.00%,57,53,205,25.90% +117878,811,2761,State-funded primary,125,70,55,56.00%,44.00%,4,3.20%,12,9.60%,4,121,0,3.20%,96.80%,0.00%,10,10,125,8.00% +117881,811,2765,State-funded primary,464,220,244,47.40%,52.60%,14,3.00%,37,8.00%,10,454,0,2.20%,97.80%,0.00%,20,21,464,4.50% +117882,811,2766,State-funded primary,56,27,29,48.20%,51.80%,0,0.00%,7,12.50%,1,55,0,1.80%,98.20%,0.00%,18,18,49,36.70% +117883,811,2768,State-funded primary,463,206,257,44.50%,55.50%,8,1.70%,39,8.40%,28,435,0,6.00%,94.00%,0.00%,25,24,422,5.70% +117885,811,2770,State-funded primary,204,104,100,51.00%,49.00%,6,2.90%,28,13.70%,4,200,0,2.00%,98.00%,0.00%,39,40,204,19.60% +117886,811,2771,State-funded primary,406,205,201,50.50%,49.50%,16,3.90%,32,7.90%,12,394,0,3.00%,97.00%,0.00%,87,87,406,21.40% +117888,811,2777,State-funded primary,409,207,202,50.60%,49.40%,17,4.20%,53,13.00%,12,397,0,2.90%,97.10%,0.00%,37,41,409,10.00% +117889,811,2778,State-funded primary,421,192,229,45.60%,54.40%,9,2.10%,36,8.60%,10,404,7,2.40%,96.00%,1.70%,26,29,421,6.90% +117891,811,2780,State-funded primary,371,170,201,45.80%,54.20%,16,4.30%,50,13.50%,1,370,0,0.30%,99.70%,0.00%,14,14,345,4.10% +117892,811,2789,State-funded primary,101,53,48,52.50%,47.50%,3,3.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,11,11,101,10.90% +117893,811,2790,State-funded primary,48,19,29,39.60%,60.40%,2,4.20%,7,14.60%,0,48,0,0.00%,100.00%,0.00%,12,11,36,30.60% +117894,811,2796,State-funded primary,334,162,172,48.50%,51.50%,11,3.30%,29,8.70%,4,330,0,1.20%,98.80%,0.00%,28,27,306,8.80% +117907,812,2877,State-funded primary,187,96,91,51.30%,48.70%,7,3.70%,11,5.90%,4,181,2,2.10%,96.80%,1.10%,25,27,187,14.40% +117909,811,2879,State-funded primary,250,126,124,50.40%,49.60%,10,4.00%,63,25.20%,5,245,0,2.00%,98.00%,0.00%,139,127,206,61.70% +117911,811,2881,State-funded primary,394,165,229,41.90%,58.10%,26,6.60%,24,6.10%,7,387,0,1.80%,98.20%,0.00%,49,52,394,13.20% +117912,811,2882,State-funded primary,295,132,163,44.70%,55.30%,3,1.00%,15,5.10%,10,285,0,3.40%,96.60%,0.00%,46,43,239,18.00% +117916,811,2889,State-funded primary,179,90,89,50.30%,49.70%,2,1.10%,35,19.60%,7,172,0,3.90%,96.10%,0.00%,43,43,179,24.00% +117926,812,2899,State-funded primary,293,157,136,53.60%,46.40%,8,2.70%,33,11.30%,19,274,0,6.50%,93.50%,0.00%,128,132,272,48.50% +117934,813,2907,State-funded primary,525,274,251,52.20%,47.80%,7,1.30%,56,10.70%,325,200,0,61.90%,38.10%,0.00%,210,212,496,42.70% +117935,811,2908,State-funded primary,541,266,275,49.20%,50.80%,8,1.50%,86,15.90%,86,455,0,15.90%,84.10%,0.00%,94,97,513,18.90% +117936,811,2909,State-funded primary,429,207,222,48.30%,51.70%,10,2.30%,34,7.90%,121,308,0,28.20%,71.80%,0.00%,172,173,411,42.10% +117937,811,2910,State-funded primary,284,131,153,46.10%,53.90%,10,3.50%,66,23.20%,55,229,0,19.40%,80.60%,0.00%,101,102,249,41.00% +117939,811,2912,State-funded primary,27,11,16,40.70%,59.30%,1,3.70%,3,11.10%,2,25,0,7.40%,92.60%,0.00%,3,2,24,8.30% +117941,811,2914,State-funded primary,390,183,207,46.90%,53.10%,10,2.60%,65,16.70%,162,228,0,41.50%,58.50%,0.00%,103,104,350,29.70% +117942,811,2915,State-funded primary,81,36,45,44.40%,55.60%,3,3.70%,12,14.80%,8,73,0,9.90%,90.10%,0.00%,24,24,67,35.80% +117956,812,2929,State-funded primary,181,92,89,50.80%,49.20%,4,2.20%,18,9.90%,16,165,0,8.80%,91.20%,0.00%,42,43,153,28.10% +117967,813,2940,State-funded primary,244,130,114,53.30%,46.70%,6,2.50%,45,18.40%,9,235,0,3.70%,96.30%,0.00%,94,92,226,40.70% +117969,811,3011,State-funded primary,94,46,48,48.90%,51.10%,4,4.30%,14,14.90%,0,94,0,0.00%,100.00%,0.00%,13,13,81,16.00% +117970,811,3012,State-funded primary,23,9,14,39.10%,60.90%,1,4.30%,4,17.40%,1,22,0,4.30%,95.70%,0.00%,5,5,23,21.70% +117971,811,3013,State-funded primary,254,123,131,48.40%,51.60%,5,2.00%,25,9.80%,14,238,2,5.50%,93.70%,0.80%,47,47,254,18.50% +117972,811,3017,State-funded primary,36,23,13,63.90%,36.10%,2,5.60%,1,2.80%,3,33,0,8.30%,91.70%,0.00%,9,7,27,25.90% +117973,811,3018,State-funded primary,100,41,59,41.00%,59.00%,1,1.00%,7,7.00%,0,99,1,0.00%,99.00%,1.00%,22,22,87,25.30% +117974,811,3019,State-funded primary,190,98,92,51.60%,48.40%,8,4.20%,19,10.00%,18,172,0,9.50%,90.50%,0.00%,46,46,190,24.20% +117976,811,3021,State-funded primary,90,44,46,48.90%,51.10%,3,3.30%,8,8.90%,0,90,0,0.00%,100.00%,0.00%,19,19,90,21.10% +117977,811,3022,State-funded primary,87,42,45,48.30%,51.70%,6,6.90%,10,11.50%,2,85,0,2.30%,97.70%,0.00%,10,10,78,12.80% +117980,811,3026,State-funded primary,116,55,61,47.40%,52.60%,5,4.30%,17,14.70%,4,112,0,3.40%,96.60%,0.00%,16,16,104,15.40% +117981,811,3027,State-funded primary,141,71,70,50.40%,49.60%,3,2.10%,20,14.20%,2,139,0,1.40%,98.60%,0.00%,14,15,141,10.60% +117982,811,3029,State-funded primary,296,160,136,54.10%,45.90%,6,2.00%,25,8.40%,7,289,0,2.40%,97.60%,0.00%,65,65,296,22.00% +117983,811,3030,State-funded primary,71,23,48,32.40%,67.60%,5,7.00%,8,11.30%,3,68,0,4.20%,95.80%,0.00%,24,24,65,36.90% +117985,811,3032,State-funded primary,291,151,140,51.90%,48.10%,7,2.40%,20,6.90%,1,290,0,0.30%,99.70%,0.00%,21,22,291,7.60% +117987,811,3034,State-funded primary,212,111,101,52.40%,47.60%,0,0.00%,28,13.20%,6,206,0,2.80%,97.20%,0.00%,23,23,171,13.50% +117989,811,3036,State-funded primary,122,56,66,45.90%,54.10%,5,4.10%,9,7.40%,0,122,0,0.00%,100.00%,0.00%,14,14,106,13.20% +117990,811,3037,State-funded primary,57,31,26,54.40%,45.60%,1,1.80%,15,26.30%,0,57,0,0.00%,100.00%,0.00%,4,4,53,7.50% +117992,811,3039,State-funded primary,77,27,50,35.10%,64.90%,1,1.30%,4,5.20%,5,72,0,6.50%,93.50%,0.00%,10,10,77,13.00% +117993,811,3040,State-funded primary,146,63,83,43.20%,56.80%,6,4.10%,13,8.90%,1,145,0,0.70%,99.30%,0.00%,20,20,139,14.40% +117995,811,3042,State-funded primary,181,97,84,53.60%,46.40%,6,3.30%,30,16.60%,0,181,0,0.00%,100.00%,0.00%,8,11,181,6.10% +117996,811,5203,State-funded primary,163,85,78,52.10%,47.90%,3,1.80%,3,1.80%,9,154,0,5.50%,94.50%,0.00%,7,8,146,5.50% +117997,811,3044,State-funded primary,48,24,24,50.00%,50.00%,5,10.40%,2,4.20%,0,48,0,0.00%,100.00%,0.00%,9,9,31,29.00% +117998,811,3045,State-funded primary,233,112,121,48.10%,51.90%,8,3.40%,21,9.00%,6,227,0,2.60%,97.40%,0.00%,7,7,210,3.30% +117999,811,3046,State-funded primary,90,50,40,55.60%,44.40%,1,1.10%,5,5.60%,3,87,0,3.30%,96.70%,0.00%,11,11,83,13.30% +118000,811,3047,State-funded primary,66,33,33,50.00%,50.00%,0,0.00%,4,6.10%,0,66,0,0.00%,100.00%,0.00%,1,1,55,1.80% +118001,811,3048,State-funded primary,43,25,18,58.10%,41.90%,0,0.00%,3,7.00%,0,43,0,0.00%,100.00%,0.00%,3,3,40,7.50% +118002,811,3049,State-funded primary,182,91,91,50.00%,50.00%,9,4.90%,27,14.80%,0,182,0,0.00%,100.00%,0.00%,7,9,160,5.60% +118003,811,3050,State-funded primary,198,89,109,44.90%,55.10%,2,1.00%,9,4.50%,3,195,0,1.50%,98.50%,0.00%,17,19,198,9.60% +118004,813,3055,State-funded primary,158,81,77,51.30%,48.70%,4,2.50%,18,11.40%,3,155,0,1.90%,98.10%,0.00%,52,56,158,35.40% +118005,813,3056,State-funded primary,185,88,97,47.60%,52.40%,1,0.50%,19,10.30%,0,185,0,0.00%,100.00%,0.00%,26,29,185,15.70% +118006,813,3057,State-funded primary,264,132,132,50.00%,50.00%,2,0.80%,33,12.50%,13,251,0,4.90%,95.10%,0.00%,75,76,264,28.80% +118007,813,3058,State-funded primary,227,101,126,44.50%,55.50%,1,0.40%,27,11.90%,5,222,0,2.20%,97.80%,0.00%,61,53,193,27.50% +118010,813,3063,State-funded primary,96,46,50,47.90%,52.10%,2,2.10%,8,8.30%,1,95,0,1.00%,99.00%,0.00%,17,18,96,18.80% +118011,813,3064,State-funded primary,172,87,85,50.60%,49.40%,5,2.90%,24,14.00%,6,165,1,3.50%,95.90%,0.60%,25,26,172,15.10% +118012,812,3065,State-funded primary,242,103,139,42.60%,57.40%,0,0.00%,17,7.00%,1,241,0,0.40%,99.60%,0.00%,27,27,242,11.20% +118014,813,3067,State-funded primary,59,32,27,54.20%,45.80%,1,1.70%,6,10.20%,0,59,0,0.00%,100.00%,0.00%,4,4,52,7.70% +118015,812,3068,State-funded primary,237,113,124,47.70%,52.30%,4,1.70%,45,19.00%,6,231,0,2.50%,97.50%,0.00%,24,26,237,11.00% +118016,813,3071,State-funded primary,246,128,118,52.00%,48.00%,10,4.10%,41,16.70%,169,76,1,68.70%,30.90%,0.40%,99,99,222,44.60% +118017,812,3072,State-funded primary,133,68,65,51.10%,48.90%,3,2.30%,19,14.30%,6,127,0,4.50%,95.50%,0.00%,10,12,133,9.00% +118018,813,3073,State-funded primary,48,21,27,43.80%,56.30%,3,6.30%,9,18.80%,0,48,0,0.00%,100.00%,0.00%,10,10,42,23.80% +118020,813,3075,State-funded primary,164,89,75,54.30%,45.70%,1,0.60%,24,14.60%,7,157,0,4.30%,95.70%,0.00%,38,36,129,27.90% +118022,813,3077,State-funded primary,35,18,17,51.40%,48.60%,0,0.00%,8,22.90%,1,34,0,2.90%,97.10%,0.00%,5,5,30,16.70% +118023,813,3078,State-funded primary,52,26,26,50.00%,50.00%,1,1.90%,16,30.80%,0,52,0,0.00%,100.00%,0.00%,24,24,48,50.00% +118025,811,3081,State-funded primary,106,45,61,42.50%,57.50%,4,3.80%,19,17.90%,3,103,0,2.80%,97.20%,0.00%,15,15,101,14.90% +118026,811,3082,State-funded primary,78,38,40,48.70%,51.30%,2,2.60%,11,14.10%,1,77,0,1.30%,98.70%,0.00%,4,4,68,5.90% +118028,811,3086,State-funded primary,46,19,27,41.30%,58.70%,1,2.20%,10,21.70%,0,46,0,0.00%,100.00%,0.00%,9,9,46,19.60% +118030,811,3088,State-funded primary,391,204,187,52.20%,47.80%,12,3.10%,57,14.60%,20,371,0,5.10%,94.90%,0.00%,52,55,391,14.10% +118034,811,3316,State-funded primary,101,47,54,46.50%,53.50%,3,3.00%,13,12.90%,3,98,0,3.00%,97.00%,0.00%,1,1,87,1.10% +118037,813,3320,State-funded primary,115,48,67,41.70%,58.30%,8,7.00%,23,20.00%,2,113,0,1.70%,98.30%,0.00%,23,27,106,25.50% +118038,813,3322,State-funded primary,60,33,27,55.00%,45.00%,0,0.00%,9,15.00%,0,60,0,0.00%,100.00%,0.00%,4,4,60,6.70% +118043,813,3330,State-funded primary,74,30,44,40.50%,59.50%,1,1.40%,15,20.30%,3,71,0,4.10%,95.90%,0.00%,14,17,67,25.40% +118044,811,3331,State-funded primary,122,58,64,47.50%,52.50%,5,4.10%,19,15.60%,0,122,0,0.00%,100.00%,0.00%,12,12,122,9.80% +118051,810,3506,State-funded primary,604,314,290,52.00%,48.00%,9,1.50%,61,10.10%,16,588,0,2.60%,97.40%,0.00%,83,85,543,15.70% +118072,811,4050,State-funded secondary,847,846,1,99.90%,0.10%,26,3.10%,56,6.60%,32,812,3,3.80%,95.90%,0.40%,123,130,742,17.50% +118073,811,4051,State-funded secondary,752,430,322,57.20%,42.80%,18,2.40%,58,7.70%,15,737,0,2.00%,98.00%,0.00%,143,158,687,23.00% +118075,811,4054,State-funded secondary,763,370,393,48.50%,51.50%,45,5.90%,94,12.30%,9,754,0,1.20%,98.80%,0.00%,285,305,763,40.00% +118076,811,4055,State-funded secondary,578,278,300,48.10%,51.90%,63,10.90%,96,16.60%,9,569,0,1.60%,98.40%,0.00%,112,122,578,21.10% +118082,811,4061,State-funded secondary,1200,617,583,51.40%,48.60%,76,6.30%,55,4.60%,12,1188,0,1.00%,99.00%,0.00%,278,275,1066,25.80% +118085,811,4064,State-funded secondary,1037,530,507,51.10%,48.90%,36,3.50%,85,8.20%,35,1002,0,3.40%,96.60%,0.00%,318,322,928,34.70% +118097,813,4087,State-funded secondary,1341,647,694,48.20%,51.80%,29,2.20%,275,20.50%,52,1289,0,3.90%,96.10%,0.00%,330,364,1341,27.10% +118109,813,4491,State-funded secondary,954,466,488,48.80%,51.20%,30,3.10%,157,16.50%,12,942,0,1.30%,98.70%,0.00%,257,277,954,29.00% +118111,811,4500,State-funded secondary,1009,476,533,47.20%,52.80%,60,5.90%,164,16.30%,26,983,0,2.60%,97.40%,0.00%,453,461,925,49.80% +118112,813,4501,State-funded secondary,796,379,417,47.60%,52.40%,8,1.00%,118,14.80%,12,784,0,1.50%,98.50%,0.00%,150,161,740,21.80% +118120,811,5200,State-funded primary,106,61,45,57.50%,42.50%,3,2.80%,4,3.80%,1,105,0,0.90%,99.10%,0.00%,12,12,90,13.30% +118121,811,5201,State-funded primary,153,70,83,45.80%,54.20%,3,2.00%,10,6.50%,0,153,0,0.00%,100.00%,0.00%,14,20,153,13.10% +118122,811,5202,State-funded primary,122,65,57,53.30%,46.70%,1,0.80%,14,11.50%,2,120,0,1.60%,98.40%,0.00%,15,15,105,14.30% +118123,810,6000,Independent school,110,45,65,40.90%,59.10%,0,0.00%,2,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118124,812,6000,Independent school,56,31,25,55.40%,44.60%,2,3.60%,16,28.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118125,812,6001,Independent school,228,107,121,46.90%,53.10%,1,0.40%,33,14.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118126,811,6000,Independent school,519,268,251,51.60%,48.40%,3,0.60%,110,21.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118131,810,6001,Independent school,1076,525,551,48.80%,51.20%,5,0.50%,132,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118132,811,6003,Independent school,781,398,383,51.00%,49.00%,2,0.30%,98,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118138,810,7000,State-funded special school,138,30,108,21.70%,78.30%,138,100.00%,0,0.00%,9,129,0,6.50%,93.50%,0.00%,63,66,137,48.20% +118140,810,7007,State-funded special school,103,9,94,8.70%,91.30%,103,100.00%,0,0.00%,0,103,0,0.00%,100.00%,0.00%,74,77,103,74.80% +118144,811,7016,State-funded special school,138,34,104,24.60%,75.40%,138,100.00%,0,0.00%,3,135,0,2.20%,97.80%,0.00%,70,54,109,49.50% +118145,811,7018,State-funded special school,168,56,112,33.30%,66.70%,168,100.00%,0,0.00%,6,150,12,3.60%,89.30%,7.10%,50,40,131,30.50% +118146,813,7019,State-funded special school,179,53,126,29.60%,70.40%,176,98.30%,0,0.00%,20,159,0,11.20%,88.80%,0.00%,83,78,155,50.30% +118147,813,7020,State-funded special school,168,55,113,32.70%,67.30%,168,100.00%,0,0.00%,21,147,0,12.50%,87.50%,0.00%,63,65,162,40.10% +118148,811,7025,State-funded special school,136,32,104,23.50%,76.50%,136,100.00%,0,0.00%,12,117,7,8.80%,86.00%,5.10%,50,42,100,42.00% +118155,921,2001,State-funded primary,11,5,6,45.50%,54.50%,0,0.00%,1,9.10%,0,11,0,0.00%,100.00%,0.00%,7,7,11,63.60% +118156,921,2002,State-funded primary,183,94,89,51.40%,48.60%,3,1.60%,38,20.80%,23,160,0,12.60%,87.40%,0.00%,23,25,183,13.70% +118158,921,2005,State-funded primary,211,94,117,44.50%,55.50%,6,2.80%,25,11.80%,7,204,0,3.30%,96.70%,0.00%,57,58,211,27.50% +118159,921,2006,State-funded primary,172,88,84,51.20%,48.80%,8,4.70%,7,4.10%,1,170,1,0.60%,98.80%,0.60%,39,39,151,25.80% +118160,921,2007,State-funded primary,406,204,202,50.20%,49.80%,7,1.70%,35,8.60%,24,379,3,5.90%,93.30%,0.70%,28,28,406,6.90% +118161,921,2009,State-funded primary,213,114,99,53.50%,46.50%,3,1.40%,7,3.30%,3,210,0,1.40%,98.60%,0.00%,24,25,199,12.60% +118162,921,2010,State-funded primary,212,107,105,50.50%,49.50%,7,3.30%,11,5.20%,5,207,0,2.40%,97.60%,0.00%,22,22,212,10.40% +118163,921,2012,State-funded primary,270,125,145,46.30%,53.70%,24,8.90%,46,17.00%,10,258,2,3.70%,95.60%,0.70%,129,133,270,49.30% +118164,921,2014,State-funded primary,395,211,184,53.40%,46.60%,13,3.30%,59,14.90%,25,370,0,6.30%,93.70%,0.00%,111,115,395,29.10% +118165,921,2015,State-funded primary,204,92,112,45.10%,54.90%,3,1.50%,33,16.20%,5,199,0,2.50%,97.50%,0.00%,18,18,204,8.80% +118167,921,2018,State-funded primary,409,196,213,47.90%,52.10%,16,3.90%,50,12.20%,11,395,3,2.70%,96.60%,0.70%,69,74,389,19.00% +118168,921,2021,State-funded primary,361,186,175,51.50%,48.50%,10,2.80%,67,18.60%,8,352,1,2.20%,97.50%,0.30%,109,112,361,31.00% +118169,921,2024,State-funded primary,99,45,54,45.50%,54.50%,5,5.10%,13,13.10%,1,98,0,1.00%,99.00%,0.00%,15,15,99,15.20% +118172,921,2029,State-funded primary,194,92,102,47.40%,52.60%,7,3.60%,13,6.70%,5,189,0,2.60%,97.40%,0.00%,24,24,194,12.40% +118173,921,2030,State-funded primary,132,58,74,43.90%,56.10%,3,2.30%,31,23.50%,2,130,0,1.50%,98.50%,0.00%,46,47,132,35.60% +118175,921,2033,State-funded primary,273,134,139,49.10%,50.90%,13,4.80%,36,13.20%,9,263,1,3.30%,96.30%,0.40%,93,95,273,34.80% +118176,921,2038,State-funded primary,209,102,107,48.80%,51.20%,7,3.30%,22,10.50%,9,200,0,4.30%,95.70%,0.00%,31,31,209,14.80% +118177,921,2039,State-funded primary,371,165,206,44.50%,55.50%,12,3.20%,49,13.20%,19,352,0,5.10%,94.90%,0.00%,108,109,371,29.40% +118178,921,2041,State-funded primary,181,109,72,60.20%,39.80%,9,5.00%,19,10.50%,4,176,1,2.20%,97.20%,0.60%,57,58,181,32.00% +118179,921,2042,State-funded primary,207,94,113,45.40%,54.60%,6,2.90%,25,12.10%,11,196,0,5.30%,94.70%,0.00%,77,79,207,38.20% +118180,921,3000,State-funded primary,171,84,87,49.10%,50.90%,4,2.30%,37,21.60%,1,170,0,0.60%,99.40%,0.00%,20,20,171,11.70% +118181,921,3001,State-funded primary,195,108,87,55.40%,44.60%,2,1.00%,7,3.60%,3,192,0,1.50%,98.50%,0.00%,24,26,195,13.30% +118182,921,3003,State-funded primary,195,83,112,42.60%,57.40%,23,11.80%,57,29.20%,14,181,0,7.20%,92.80%,0.00%,67,68,175,38.90% +118183,921,3004,State-funded primary,390,197,193,50.50%,49.50%,18,4.60%,60,15.40%,9,378,3,2.30%,96.90%,0.80%,121,122,390,31.30% +118188,921,3011,State-funded primary,191,90,101,47.10%,52.90%,4,2.10%,21,11.00%,8,182,1,4.20%,95.30%,0.50%,29,30,191,15.70% +118192,921,3300,State-funded primary,86,39,47,45.30%,54.70%,0,0.00%,12,14.00%,1,85,0,1.20%,98.80%,0.00%,18,18,86,20.90% +118193,921,3303,State-funded primary,236,117,119,49.60%,50.40%,14,5.90%,103,43.60%,12,224,0,5.10%,94.90%,0.00%,98,101,212,47.60% +118194,921,3304,State-funded primary,141,70,71,49.60%,50.40%,7,5.00%,22,15.60%,2,139,0,1.40%,98.60%,0.00%,33,34,141,24.10% +118195,921,3310,State-funded primary,178,82,96,46.10%,53.90%,2,1.10%,36,20.20%,13,165,0,7.30%,92.70%,0.00%,31,31,178,17.40% +118196,921,3311,State-funded primary,146,71,75,48.60%,51.40%,3,2.10%,19,13.00%,12,134,0,8.20%,91.80%,0.00%,41,41,146,28.10% +118198,921,3313,State-funded primary,146,80,66,54.80%,45.20%,1,0.70%,19,13.00%,3,143,0,2.10%,97.90%,0.00%,31,32,146,21.90% +118199,921,3314,State-funded primary,202,105,97,52.00%,48.00%,8,4.00%,29,14.40%,5,196,1,2.50%,97.00%,0.50%,28,29,202,14.40% +118200,921,3315,State-funded primary,310,154,156,49.70%,50.30%,12,3.90%,32,10.30%,5,305,0,1.60%,98.40%,0.00%,57,59,310,19.00% +118223,921,6002,Independent school,804,379,425,47.10%,52.90%,1,0.10%,311,38.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118225,921,6041,Independent school,175,85,90,48.60%,51.40%,0,0.00%,42,24.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118226,921,7000,Non-maintained special school,92,23,69,25.00%,75.00%,90,97.80%,2,2.20%,0,92,0,0.00%,100.00%,0.00%,29,25,65,38.50% +118227,921,7001,State-funded special school,201,67,134,33.30%,66.70%,201,100.00%,0,0.00%,1,200,0,0.50%,99.50%,0.00%,105,73,136,53.70% +118228,921,7003,State-funded special school,102,34,68,33.30%,66.70%,102,100.00%,0,0.00%,1,101,0,1.00%,99.00%,0.00%,45,45,95,47.40% +118229,886,1001,State-funded nursery,91,34,57,37.40%,62.60%,1,1.10%,11,12.10%,43,48,0,47.30%,52.70%,0.00%,0,0,0,0.00% +118246,886,2066,State-funded primary,420,231,189,55.00%,45.00%,6,1.40%,63,15.00%,50,369,1,11.90%,87.90%,0.20%,59,60,420,14.30% +118254,886,2088,State-funded primary,187,104,83,55.60%,44.40%,4,2.10%,31,16.60%,9,178,0,4.80%,95.20%,0.00%,55,55,187,29.40% +118255,886,2089,State-funded primary,307,156,151,50.80%,49.20%,3,1.00%,12,3.90%,8,299,0,2.60%,97.40%,0.00%,30,32,307,10.40% +118257,886,2094,State-funded primary,218,109,109,50.00%,50.00%,5,2.30%,22,10.10%,7,211,0,3.20%,96.80%,0.00%,16,16,218,7.30% +118258,886,2095,State-funded primary,444,216,228,48.60%,51.40%,15,3.40%,58,13.10%,216,227,1,48.60%,51.10%,0.20%,64,66,376,17.60% +118262,886,2109,State-funded primary,208,107,101,51.40%,48.60%,1,0.50%,15,7.20%,5,203,0,2.40%,97.60%,0.00%,24,25,208,12.00% +118264,886,2116,State-funded primary,230,113,117,49.10%,50.90%,5,2.20%,64,27.80%,104,123,3,45.20%,53.50%,1.30%,108,108,200,54.00% +118266,886,2120,State-funded primary,190,102,88,53.70%,46.30%,4,2.10%,22,11.60%,28,162,0,14.70%,85.30%,0.00%,42,45,190,23.70% +118271,886,2128,State-funded primary,207,94,113,45.40%,54.60%,0,0.00%,29,14.00%,5,202,0,2.40%,97.60%,0.00%,33,33,207,15.90% +118272,886,2130,State-funded primary,187,97,90,51.90%,48.10%,6,3.20%,13,7.00%,31,156,0,16.60%,83.40%,0.00%,59,61,187,32.60% +118273,886,2132,State-funded primary,187,80,107,42.80%,57.20%,7,3.70%,32,17.10%,11,176,0,5.90%,94.10%,0.00%,72,72,187,38.50% +118275,886,2134,State-funded primary,108,53,55,49.10%,50.90%,2,1.90%,14,13.00%,1,107,0,0.90%,99.10%,0.00%,8,8,108,7.40% +118277,886,2136,State-funded primary,184,85,99,46.20%,53.80%,1,0.50%,32,17.40%,11,173,0,6.00%,94.00%,0.00%,27,27,184,14.70% +118278,886,2137,State-funded primary,161,84,77,52.20%,47.80%,6,3.70%,18,11.20%,3,158,0,1.90%,98.10%,0.00%,29,31,161,19.30% +118279,886,2138,State-funded primary,332,160,172,48.20%,51.80%,1,0.30%,42,12.70%,9,322,1,2.70%,97.00%,0.30%,44,45,332,13.60% +118280,886,2139,State-funded primary,404,205,199,50.70%,49.30%,3,0.70%,33,8.20%,53,349,2,13.10%,86.40%,0.50%,47,48,404,11.90% +118282,886,2142,State-funded primary,154,80,74,51.90%,48.10%,4,2.60%,17,11.00%,11,143,0,7.10%,92.90%,0.00%,39,41,154,26.60% +118283,886,2147,State-funded primary,126,71,55,56.30%,43.70%,2,1.60%,10,7.90%,16,110,0,12.70%,87.30%,0.00%,15,15,126,11.90% +118284,886,2148,State-funded primary,84,44,40,52.40%,47.60%,3,3.60%,17,20.20%,0,84,0,0.00%,100.00%,0.00%,18,21,84,25.00% +118285,886,2155,State-funded primary,418,195,223,46.70%,53.30%,19,4.50%,39,9.30%,113,305,0,27.00%,73.00%,0.00%,55,55,418,13.20% +118286,886,2156,State-funded primary,418,209,209,50.00%,50.00%,5,1.20%,56,13.40%,65,353,0,15.60%,84.40%,0.00%,58,59,418,14.10% +118288,886,2161,State-funded primary,206,104,102,50.50%,49.50%,6,2.90%,26,12.60%,7,198,1,3.40%,96.10%,0.50%,40,41,206,19.90% +118289,886,2163,State-funded primary,208,104,104,50.00%,50.00%,4,1.90%,38,18.30%,9,199,0,4.30%,95.70%,0.00%,27,29,208,13.90% +118290,886,2164,State-funded primary,175,76,99,43.40%,56.60%,2,1.10%,20,11.40%,11,164,0,6.30%,93.70%,0.00%,25,28,175,16.00% +118291,886,2165,State-funded primary,392,182,210,46.40%,53.60%,4,1.00%,41,10.50%,25,367,0,6.40%,93.60%,0.00%,79,81,392,20.70% +118292,886,2166,State-funded primary,96,48,48,50.00%,50.00%,2,2.10%,10,10.40%,3,93,0,3.10%,96.90%,0.00%,23,23,96,24.00% +118293,886,2167,State-funded primary,209,104,105,49.80%,50.20%,5,2.40%,9,4.30%,12,197,0,5.70%,94.30%,0.00%,7,7,209,3.30% +118294,886,2168,State-funded primary,213,109,104,51.20%,48.80%,3,1.40%,27,12.70%,9,204,0,4.20%,95.80%,0.00%,45,45,213,21.10% +118295,886,2169,State-funded primary,62,30,32,48.40%,51.60%,2,3.20%,18,29.00%,1,60,1,1.60%,96.80%,1.60%,18,19,62,30.60% +118297,886,2171,State-funded primary,421,214,207,50.80%,49.20%,6,1.40%,91,21.60%,111,310,0,26.40%,73.60%,0.00%,106,107,421,25.40% +118301,886,2175,State-funded primary,353,152,201,43.10%,56.90%,2,0.60%,55,15.60%,128,224,1,36.30%,63.50%,0.30%,101,102,353,28.90% +118302,886,2176,State-funded primary,316,163,153,51.60%,48.40%,2,0.60%,28,8.90%,98,218,0,31.00%,69.00%,0.00%,83,87,316,27.50% +118307,886,2185,State-funded primary,203,86,117,42.40%,57.60%,2,1.00%,33,16.30%,6,197,0,3.00%,97.00%,0.00%,34,34,203,16.70% +118308,886,2187,State-funded primary,205,105,100,51.20%,48.80%,6,2.90%,13,6.30%,6,199,0,2.90%,97.10%,0.00%,12,12,205,5.90% +118309,886,2188,State-funded primary,98,49,49,50.00%,50.00%,1,1.00%,6,6.10%,3,95,0,3.10%,96.90%,0.00%,10,10,98,10.20% +118310,886,2189,State-funded primary,210,103,107,49.00%,51.00%,7,3.30%,10,4.80%,3,207,0,1.40%,98.60%,0.00%,17,17,210,8.10% +118311,886,2190,State-funded primary,60,32,28,53.30%,46.70%,7,11.70%,5,8.30%,7,53,0,11.70%,88.30%,0.00%,11,11,60,18.30% +118313,886,2192,State-funded primary,406,212,194,52.20%,47.80%,9,2.20%,30,7.40%,22,383,1,5.40%,94.30%,0.20%,79,80,406,19.70% +118314,886,2193,State-funded primary,205,105,100,51.20%,48.80%,4,2.00%,12,5.90%,25,180,0,12.20%,87.80%,0.00%,42,42,205,20.50% +118317,887,2198,State-funded primary,110,52,58,47.30%,52.70%,1,0.90%,17,15.50%,23,87,0,20.90%,79.10%,0.00%,43,43,86,50.00% +118318,887,2199,State-funded primary,658,315,343,47.90%,52.10%,9,1.40%,119,18.10%,253,404,1,38.40%,61.40%,0.20%,327,335,619,54.10% +118320,887,2202,State-funded primary,360,173,187,48.10%,51.90%,13,3.60%,137,38.10%,115,245,0,31.90%,68.10%,0.00%,139,141,320,44.10% +118329,887,2215,State-funded primary,266,126,140,47.40%,52.60%,1,0.40%,21,7.90%,103,163,0,38.70%,61.30%,0.00%,63,63,266,23.70% +118330,887,2216,State-funded primary,177,94,83,53.10%,46.90%,3,1.70%,44,24.90%,44,133,0,24.90%,75.10%,0.00%,63,64,151,42.40% +118336,886,2226,State-funded primary,101,62,39,61.40%,38.60%,1,1.00%,4,4.00%,10,91,0,9.90%,90.10%,0.00%,21,21,101,20.80% +118337,886,2227,State-funded primary,209,101,108,48.30%,51.70%,4,1.90%,20,9.60%,14,194,1,6.70%,92.80%,0.50%,12,13,209,6.20% +118338,886,2228,State-funded primary,417,209,208,50.10%,49.90%,16,3.80%,58,13.90%,27,390,0,6.50%,93.50%,0.00%,91,93,417,22.30% +118341,886,2231,State-funded primary,188,94,94,50.00%,50.00%,6,3.20%,32,17.00%,13,173,2,6.90%,92.00%,1.10%,25,28,188,14.90% +118346,886,2239,State-funded primary,117,58,59,49.60%,50.40%,6,5.10%,8,6.80%,4,113,0,3.40%,96.60%,0.00%,4,5,117,4.30% +118348,886,2245,State-funded primary,438,213,225,48.60%,51.40%,14,3.20%,54,12.30%,47,390,1,10.70%,89.00%,0.20%,249,254,403,63.00% +118354,886,2254,State-funded primary,208,105,103,50.50%,49.50%,12,5.80%,24,11.50%,41,167,0,19.70%,80.30%,0.00%,68,68,208,32.70% +118356,886,2258,State-funded primary,431,216,215,50.10%,49.90%,5,1.20%,44,10.20%,102,329,0,23.70%,76.30%,0.00%,29,32,431,7.40% +118359,886,2263,State-funded primary,304,150,154,49.30%,50.70%,8,2.60%,44,14.50%,24,277,3,7.90%,91.10%,1.00%,99,99,265,37.40% +118361,886,2265,State-funded primary,103,58,45,56.30%,43.70%,3,2.90%,19,18.40%,2,101,0,1.90%,98.10%,0.00%,17,17,103,16.50% +118363,886,2268,State-funded primary,156,72,84,46.20%,53.80%,1,0.60%,15,9.60%,15,139,2,9.60%,89.10%,1.30%,36,38,154,24.70% +118364,886,2269,State-funded primary,232,106,126,45.70%,54.30%,5,2.20%,38,16.40%,7,224,1,3.00%,96.60%,0.40%,67,72,232,31.00% +118365,886,2270,State-funded primary,191,79,112,41.40%,58.60%,1,0.50%,12,6.30%,1,190,0,0.50%,99.50%,0.00%,21,22,191,11.50% +118369,886,2275,State-funded primary,211,98,113,46.40%,53.60%,5,2.40%,37,17.50%,43,168,0,20.40%,79.60%,0.00%,54,57,211,27.00% +118370,886,2276,State-funded primary,357,180,177,50.40%,49.60%,5,1.40%,37,10.40%,100,256,1,28.00%,71.70%,0.30%,56,57,357,16.00% +118371,886,5226,State-funded primary,511,262,249,51.30%,48.70%,11,2.20%,51,10.00%,116,395,0,22.70%,77.30%,0.00%,96,99,511,19.40% +118372,886,2278,State-funded primary,131,61,70,46.60%,53.40%,3,2.30%,20,15.30%,6,125,0,4.60%,95.40%,0.00%,34,34,131,26.00% +118373,886,2279,State-funded primary,71,31,40,43.70%,56.30%,5,7.00%,9,12.70%,6,65,0,8.50%,91.50%,0.00%,9,12,71,16.90% +118374,886,2280,State-funded primary,210,110,100,52.40%,47.60%,3,1.40%,20,9.50%,7,203,0,3.30%,96.70%,0.00%,16,17,210,8.10% +118375,886,2282,State-funded primary,420,201,219,47.90%,52.10%,11,2.60%,46,11.00%,61,355,4,14.50%,84.50%,1.00%,74,74,420,17.60% +118377,886,2285,State-funded primary,181,88,93,48.60%,51.40%,3,1.70%,17,9.40%,19,162,0,10.50%,89.50%,0.00%,26,29,181,16.00% +118381,886,2289,State-funded primary,122,56,66,45.90%,54.10%,2,1.60%,8,6.60%,2,120,0,1.60%,98.40%,0.00%,16,16,122,13.10% +118385,886,2298,State-funded primary,396,207,189,52.30%,47.70%,7,1.80%,48,12.10%,21,375,0,5.30%,94.70%,0.00%,71,75,396,18.90% +118387,886,2300,State-funded primary,142,81,61,57.00%,43.00%,2,1.40%,22,15.50%,10,132,0,7.00%,93.00%,0.00%,19,19,142,13.40% +118393,886,2312,State-funded primary,413,203,210,49.20%,50.80%,19,4.60%,63,15.30%,13,400,0,3.10%,96.90%,0.00%,76,76,413,18.40% +118398,886,2318,State-funded primary,86,35,51,40.70%,59.30%,2,2.30%,16,18.60%,7,79,0,8.10%,91.90%,0.00%,19,19,86,22.10% +118399,886,2320,State-funded primary,107,60,47,56.10%,43.90%,2,1.90%,13,12.10%,3,104,0,2.80%,97.20%,0.00%,56,57,107,53.30% +118400,886,2321,State-funded primary,78,41,37,52.60%,47.40%,0,0.00%,16,20.50%,1,77,0,1.30%,98.70%,0.00%,9,9,78,11.50% +118401,886,2322,State-funded primary,117,59,58,50.40%,49.60%,2,1.70%,16,13.70%,2,115,0,1.70%,98.30%,0.00%,9,12,117,10.30% +118403,886,2326,State-funded primary,191,94,97,49.20%,50.80%,9,4.70%,26,13.60%,7,184,0,3.70%,96.30%,0.00%,30,32,191,16.80% +118405,886,2328,State-funded primary,269,134,135,49.80%,50.20%,6,2.20%,20,7.40%,34,235,0,12.60%,87.40%,0.00%,59,59,269,21.90% +118406,886,2329,State-funded primary,288,129,159,44.80%,55.20%,1,0.30%,33,11.50%,21,267,0,7.30%,92.70%,0.00%,61,61,262,23.30% +118411,886,2337,State-funded primary,254,126,128,49.60%,50.40%,6,2.40%,22,8.70%,10,241,3,3.90%,94.90%,1.20%,72,75,254,29.50% +118414,886,2340,State-funded primary,134,63,71,47.00%,53.00%,6,4.50%,18,13.40%,11,123,0,8.20%,91.80%,0.00%,64,64,134,47.80% +118416,886,2345,State-funded primary,155,79,76,51.00%,49.00%,5,3.20%,20,12.90%,18,137,0,11.60%,88.40%,0.00%,59,60,155,38.70% +118423,887,2403,State-funded primary,353,160,193,45.30%,54.70%,3,0.80%,30,8.50%,10,343,0,2.80%,97.20%,0.00%,28,29,353,8.20% +118436,886,2431,State-funded primary,483,251,232,52.00%,48.00%,13,2.70%,60,12.40%,84,399,0,17.40%,82.60%,0.00%,135,139,483,28.80% +118438,886,2434,State-funded primary,508,255,253,50.20%,49.80%,38,7.50%,68,13.40%,17,491,0,3.30%,96.70%,0.00%,269,280,466,60.10% +118442,887,2439,State-funded primary,177,84,93,47.50%,52.50%,0,0.00%,21,11.90%,21,156,0,11.90%,88.10%,0.00%,18,18,177,10.20% +118449,886,2454,State-funded primary,93,39,54,41.90%,58.10%,4,4.30%,11,11.80%,7,86,0,7.50%,92.50%,0.00%,57,59,93,63.40% +118453,886,2459,State-funded primary,268,128,140,47.80%,52.20%,0,0.00%,17,6.30%,27,241,0,10.10%,89.90%,0.00%,12,12,268,4.50% +118456,886,2465,State-funded primary,438,199,239,45.40%,54.60%,12,2.70%,11,2.50%,96,342,0,21.90%,78.10%,0.00%,12,13,438,3.00% +118459,886,2471,State-funded primary,585,256,329,43.80%,56.20%,165,28.20%,33,5.60%,24,559,2,4.10%,95.60%,0.30%,211,214,584,36.60% +118461,886,2474,State-funded primary,261,141,120,54.00%,46.00%,3,1.10%,51,19.50%,84,177,0,32.20%,67.80%,0.00%,79,81,261,31.00% +118465,886,2482,State-funded primary,414,205,209,49.50%,50.50%,6,1.40%,33,8.00%,17,397,0,4.10%,95.90%,0.00%,21,21,414,5.10% +118468,886,2490,State-funded primary,233,112,121,48.10%,51.90%,10,4.30%,14,6.00%,32,201,0,13.70%,86.30%,0.00%,26,25,207,12.10% +118472,887,2494,State-funded primary,546,276,270,50.50%,49.50%,4,0.70%,80,14.70%,27,519,0,4.90%,95.10%,0.00%,92,97,546,17.80% +118477,887,2506,State-funded primary,249,119,130,47.80%,52.20%,0,0.00%,39,15.70%,30,219,0,12.00%,88.00%,0.00%,41,43,249,17.30% +118479,886,2509,State-funded primary,392,214,178,54.60%,45.40%,4,1.00%,44,11.20%,73,319,0,18.60%,81.40%,0.00%,72,77,392,19.60% +118480,886,2510,State-funded primary,389,186,203,47.80%,52.20%,4,1.00%,90,23.10%,130,259,0,33.40%,66.60%,0.00%,97,100,389,25.70% +118484,886,2514,State-funded primary,180,95,85,52.80%,47.20%,1,0.60%,17,9.40%,12,168,0,6.70%,93.30%,0.00%,34,34,180,18.90% +118487,886,2519,State-funded primary,142,64,78,45.10%,54.90%,5,3.50%,10,7.00%,2,140,0,1.40%,98.60%,0.00%,22,22,142,15.50% +118488,886,2520,State-funded primary,642,289,353,45.00%,55.00%,9,1.40%,69,10.70%,70,571,1,10.90%,88.90%,0.20%,65,69,642,10.70% +118490,886,2524,State-funded primary,191,109,82,57.10%,42.90%,8,4.20%,22,11.50%,5,186,0,2.60%,97.40%,0.00%,59,60,191,31.40% +118491,886,2525,State-funded primary,406,203,203,50.00%,50.00%,6,1.50%,35,8.60%,93,311,2,22.90%,76.60%,0.50%,91,96,406,23.60% +118493,886,2530,State-funded primary,587,295,292,50.30%,49.70%,7,1.20%,62,10.60%,13,574,0,2.20%,97.80%,0.00%,46,48,587,8.20% +118495,886,2532,State-funded primary,189,93,96,49.20%,50.80%,4,2.10%,20,10.60%,9,180,0,4.80%,95.20%,0.00%,17,17,189,9.00% +118501,886,2539,State-funded primary,216,101,115,46.80%,53.20%,2,0.90%,3,1.40%,14,202,0,6.50%,93.50%,0.00%,11,11,216,5.10% +118505,886,2545,State-funded primary,418,212,206,50.70%,49.30%,7,1.70%,25,6.00%,23,395,0,5.50%,94.50%,0.00%,41,42,418,10.00% +118509,887,2549,State-funded primary,659,324,335,49.20%,50.80%,6,0.90%,92,14.00%,28,631,0,4.20%,95.80%,0.00%,76,82,619,13.20% +118511,886,2552,State-funded primary,421,195,226,46.30%,53.70%,2,0.50%,48,11.40%,39,381,1,9.30%,90.50%,0.20%,20,21,421,5.00% +118515,886,2559,State-funded primary,177,78,99,44.10%,55.90%,3,1.70%,29,16.40%,0,175,2,0.00%,98.90%,1.10%,40,41,176,23.30% +118516,886,2562,State-funded primary,208,104,104,50.00%,50.00%,3,1.40%,22,10.60%,11,197,0,5.30%,94.70%,0.00%,43,43,208,20.70% +118523,886,2574,State-funded primary,260,122,138,46.90%,53.10%,4,1.50%,37,14.20%,23,237,0,8.80%,91.20%,0.00%,42,43,260,16.50% +118524,886,2578,State-funded primary,129,59,70,45.70%,54.30%,1,0.80%,19,14.70%,5,123,1,3.90%,95.30%,0.80%,13,15,129,11.60% +118526,886,2586,State-funded primary,212,103,109,48.60%,51.40%,5,2.40%,18,8.50%,32,180,0,15.10%,84.90%,0.00%,68,70,212,33.00% +118534,886,2603,State-funded primary,406,185,221,45.60%,54.40%,46,11.30%,65,16.00%,49,357,0,12.10%,87.90%,0.00%,158,163,406,40.10% +118536,886,2607,State-funded primary,168,84,84,50.00%,50.00%,5,3.00%,21,12.50%,71,95,2,42.30%,56.50%,1.20%,127,127,168,75.60% +118541,886,2615,State-funded primary,206,108,98,52.40%,47.60%,3,1.50%,50,24.30%,41,165,0,19.90%,80.10%,0.00%,28,30,206,14.60% +118548,886,2627,State-funded primary,210,106,104,50.50%,49.50%,7,3.30%,27,12.90%,18,192,0,8.60%,91.40%,0.00%,47,47,210,22.40% +118551,886,2632,State-funded primary,587,275,312,46.80%,53.20%,14,2.40%,45,7.70%,117,470,0,19.90%,80.10%,0.00%,89,93,587,15.80% +118555,887,2638,State-funded primary,270,121,149,44.80%,55.20%,0,0.00%,32,11.90%,11,259,0,4.10%,95.90%,0.00%,14,14,270,5.20% +118558,886,2643,State-funded primary,581,261,320,44.90%,55.10%,17,2.90%,57,9.80%,12,567,2,2.10%,97.60%,0.30%,106,112,581,19.30% +118563,886,2648,State-funded primary,391,200,191,51.20%,48.80%,9,2.30%,84,21.50%,37,353,1,9.50%,90.30%,0.30%,153,158,391,40.40% +118566,886,2651,State-funded primary,148,79,69,53.40%,46.60%,2,1.40%,36,24.30%,58,89,1,39.20%,60.10%,0.70%,51,53,148,35.80% +118568,886,2653,State-funded primary,503,246,257,48.90%,51.10%,6,1.20%,51,10.10%,170,333,0,33.80%,66.20%,0.00%,111,103,450,22.90% +118575,886,2662,State-funded primary,128,78,50,60.90%,39.10%,1,0.80%,45,35.20%,17,111,0,13.30%,86.70%,0.00%,64,65,117,55.60% +118576,887,2665,State-funded primary,94,41,53,43.60%,56.40%,1,1.10%,13,13.80%,18,76,0,19.10%,80.90%,0.00%,30,30,94,31.90% +118585,886,2674,State-funded primary,437,200,237,45.80%,54.20%,21,4.80%,56,12.80%,99,333,5,22.70%,76.20%,1.10%,216,224,390,57.40% +118590,886,3010,State-funded primary,107,55,52,51.40%,48.60%,1,0.90%,10,9.30%,4,103,0,3.70%,96.30%,0.00%,11,11,107,10.30% +118592,886,3015,State-funded primary,102,52,50,51.00%,49.00%,3,2.90%,11,10.80%,1,101,0,1.00%,99.00%,0.00%,6,6,102,5.90% +118597,886,3022,State-funded primary,211,115,96,54.50%,45.50%,5,2.40%,3,1.40%,3,208,0,1.40%,98.60%,0.00%,24,24,211,11.40% +118598,886,3023,State-funded primary,207,98,109,47.30%,52.70%,0,0.00%,9,4.30%,27,180,0,13.00%,87.00%,0.00%,13,13,207,6.30% +118600,886,3027,State-funded primary,199,106,93,53.30%,46.70%,2,1.00%,21,10.60%,15,184,0,7.50%,92.50%,0.00%,64,68,199,34.20% +118601,886,3029,State-funded primary,211,104,107,49.30%,50.70%,3,1.40%,10,4.70%,8,203,0,3.80%,96.20%,0.00%,33,34,211,16.10% +118602,886,3032,State-funded primary,183,83,100,45.40%,54.60%,1,0.50%,43,23.50%,11,172,0,6.00%,94.00%,0.00%,77,77,183,42.10% +118603,886,3033,State-funded primary,190,98,92,51.60%,48.40%,2,1.10%,25,13.20%,11,179,0,5.80%,94.20%,0.00%,16,16,190,8.40% +118604,886,3034,State-funded primary,206,111,95,53.90%,46.10%,1,0.50%,28,13.60%,18,186,2,8.70%,90.30%,1.00%,18,18,206,8.70% +118605,886,3035,State-funded primary,383,197,186,51.40%,48.60%,11,2.90%,81,21.10%,11,372,0,2.90%,97.10%,0.00%,77,78,346,22.50% +118606,886,3037,State-funded primary,202,112,90,55.40%,44.60%,1,0.50%,22,10.90%,25,177,0,12.40%,87.60%,0.00%,22,22,202,10.90% +118607,886,3042,State-funded primary,213,107,106,50.20%,49.80%,0,0.00%,21,9.90%,14,199,0,6.60%,93.40%,0.00%,18,18,213,8.50% +118608,886,3043,State-funded primary,60,28,32,46.70%,53.30%,1,1.70%,19,31.70%,2,58,0,3.30%,96.70%,0.00%,23,24,60,40.00% +118611,886,3050,State-funded primary,631,317,314,50.20%,49.80%,8,1.30%,44,7.00%,139,490,2,22.00%,77.70%,0.30%,73,74,631,11.70% +118613,886,3052,State-funded primary,360,167,193,46.40%,53.60%,6,1.70%,28,7.80%,85,274,1,23.60%,76.10%,0.30%,83,84,360,23.30% +118614,886,3053,State-funded primary,213,97,116,45.50%,54.50%,5,2.30%,20,9.40%,50,163,0,23.50%,76.50%,0.00%,28,29,213,13.60% +118615,886,3054,State-funded primary,137,67,70,48.90%,51.10%,1,0.70%,13,9.50%,5,132,0,3.60%,96.40%,0.00%,1,1,137,0.70% +118616,886,3055,State-funded primary,201,107,94,53.20%,46.80%,2,1.00%,40,19.90%,9,192,0,4.50%,95.50%,0.00%,57,57,201,28.40% +118617,886,3057,State-funded primary,194,92,102,47.40%,52.60%,2,1.00%,13,6.70%,12,182,0,6.20%,93.80%,0.00%,28,29,194,14.90% +118619,886,3061,State-funded primary,130,60,70,46.20%,53.80%,1,0.80%,19,14.60%,11,119,0,8.50%,91.50%,0.00%,7,7,130,5.40% +118620,886,3062,State-funded primary,144,70,74,48.60%,51.40%,0,0.00%,28,19.40%,7,137,0,4.90%,95.10%,0.00%,12,14,144,9.70% +118622,886,3067,State-funded primary,309,161,148,52.10%,47.90%,3,1.00%,27,8.70%,17,292,0,5.50%,94.50%,0.00%,59,59,309,19.10% +118623,886,3069,State-funded primary,84,44,40,52.40%,47.60%,7,8.30%,17,20.20%,6,76,2,7.10%,90.50%,2.40%,20,21,84,25.00% +118625,886,3072,State-funded primary,178,89,89,50.00%,50.00%,4,2.20%,25,14.00%,62,116,0,34.80%,65.20%,0.00%,33,33,178,18.50% +118626,886,3073,State-funded primary,121,58,63,47.90%,52.10%,2,1.70%,20,16.50%,42,79,0,34.70%,65.30%,0.00%,21,21,121,17.40% +118629,886,3081,State-funded primary,270,130,140,48.10%,51.90%,1,0.40%,8,3.00%,17,252,1,6.30%,93.30%,0.40%,5,7,270,2.60% +118630,886,3082,State-funded primary,81,42,39,51.90%,48.10%,1,1.20%,16,19.80%,13,68,0,16.00%,84.00%,0.00%,2,3,81,3.70% +118631,886,3083,State-funded primary,63,32,31,50.80%,49.20%,3,4.80%,16,25.40%,0,63,0,0.00%,100.00%,0.00%,32,32,63,50.80% +118632,886,3084,State-funded primary,175,101,74,57.70%,42.30%,2,1.10%,23,13.10%,11,164,0,6.30%,93.70%,0.00%,29,31,175,17.70% +118634,886,3088,State-funded primary,401,205,196,51.10%,48.90%,12,3.00%,44,11.00%,16,385,0,4.00%,96.00%,0.00%,55,62,401,15.50% +118635,886,3089,State-funded primary,203,100,103,49.30%,50.70%,4,2.00%,29,14.30%,3,200,0,1.50%,98.50%,0.00%,38,39,203,19.20% +118636,886,3090,State-funded primary,123,65,58,52.80%,47.20%,2,1.60%,14,11.40%,6,117,0,4.90%,95.10%,0.00%,5,5,123,4.10% +118637,886,3091,State-funded primary,81,44,37,54.30%,45.70%,1,1.20%,19,23.50%,6,75,0,7.40%,92.60%,0.00%,20,25,81,30.90% +118638,886,3092,State-funded primary,173,86,87,49.70%,50.30%,1,0.60%,22,12.70%,5,168,0,2.90%,97.10%,0.00%,18,18,173,10.40% +118641,887,3096,State-funded primary,211,104,107,49.30%,50.70%,3,1.40%,26,12.30%,4,207,0,1.90%,98.10%,0.00%,39,44,211,20.90% +118643,887,3102,State-funded primary,93,47,46,50.50%,49.50%,1,1.10%,16,17.20%,15,78,0,16.10%,83.90%,0.00%,26,26,93,28.00% +118646,886,3108,State-funded primary,213,100,113,46.90%,53.10%,8,3.80%,33,15.50%,14,199,0,6.60%,93.40%,0.00%,65,65,213,30.50% +118647,886,3109,State-funded primary,212,107,105,50.50%,49.50%,7,3.30%,16,7.50%,6,206,0,2.80%,97.20%,0.00%,22,23,212,10.80% +118649,886,3111,State-funded primary,252,113,139,44.80%,55.20%,6,2.40%,48,19.00%,11,198,43,4.40%,78.60%,17.10%,84,86,210,41.00% +118651,886,3117,State-funded primary,202,97,105,48.00%,52.00%,1,0.50%,32,15.80%,21,178,3,10.40%,88.10%,1.50%,63,67,202,33.20% +118653,886,3120,State-funded primary,210,108,102,51.40%,48.60%,2,1.00%,27,12.90%,19,191,0,9.00%,91.00%,0.00%,26,26,210,12.40% +118654,886,3122,State-funded primary,407,208,199,51.10%,48.90%,3,0.70%,71,17.40%,67,339,1,16.50%,83.30%,0.20%,14,14,407,3.40% +118655,886,3123,State-funded primary,95,45,50,47.40%,52.60%,4,4.20%,2,2.10%,0,95,0,0.00%,100.00%,0.00%,12,13,95,13.70% +118657,886,3126,State-funded primary,99,52,47,52.50%,47.50%,3,3.00%,19,19.20%,18,81,0,18.20%,81.80%,0.00%,26,26,99,26.30% +118659,886,3129,State-funded primary,206,101,105,49.00%,51.00%,9,4.40%,30,14.60%,11,195,0,5.30%,94.70%,0.00%,30,31,170,18.20% +118660,886,3130,State-funded primary,118,63,55,53.40%,46.60%,2,1.70%,11,9.30%,21,97,0,17.80%,82.20%,0.00%,13,13,118,11.00% +118662,886,3134,State-funded primary,110,52,58,47.30%,52.70%,1,0.90%,11,10.00%,2,108,0,1.80%,98.20%,0.00%,17,17,110,15.50% +118663,886,3136,State-funded primary,104,55,49,52.90%,47.10%,1,1.00%,6,5.80%,6,98,0,5.80%,94.20%,0.00%,12,12,104,11.50% +118664,886,3137,State-funded primary,87,44,43,50.60%,49.40%,1,1.10%,18,20.70%,0,87,0,0.00%,100.00%,0.00%,14,15,87,17.20% +118665,886,3138,State-funded primary,79,43,36,54.40%,45.60%,2,2.50%,14,17.70%,5,74,0,6.30%,93.70%,0.00%,19,19,79,24.10% +118666,886,3139,State-funded primary,102,57,45,55.90%,44.10%,1,1.00%,12,11.80%,0,102,0,0.00%,100.00%,0.00%,18,19,102,18.60% +118672,886,3145,State-funded primary,157,69,88,43.90%,56.10%,5,3.20%,14,8.90%,1,156,0,0.60%,99.40%,0.00%,41,42,157,26.80% +118673,886,3146,State-funded primary,82,39,43,47.60%,52.40%,1,1.20%,6,7.30%,8,73,1,9.80%,89.00%,1.20%,5,5,82,6.10% +118675,886,3149,State-funded primary,202,112,90,55.40%,44.60%,3,1.50%,22,10.90%,16,162,24,7.90%,80.20%,11.90%,37,37,202,18.30% +118676,886,3150,State-funded primary,104,57,47,54.80%,45.20%,1,1.00%,24,23.10%,16,88,0,15.40%,84.60%,0.00%,45,47,104,45.20% +118678,886,3153,State-funded primary,104,59,45,56.70%,43.30%,2,1.90%,14,13.50%,3,101,0,2.90%,97.10%,0.00%,14,15,104,14.40% +118679,886,3154,State-funded primary,196,99,97,50.50%,49.50%,5,2.60%,16,8.20%,10,186,0,5.10%,94.90%,0.00%,17,18,196,9.20% +118680,886,3155,State-funded primary,203,99,104,48.80%,51.20%,0,0.00%,16,7.90%,0,201,2,0.00%,99.00%,1.00%,13,13,203,6.40% +118681,886,3158,State-funded primary,83,35,48,42.20%,57.80%,2,2.40%,15,18.10%,5,78,0,6.00%,94.00%,0.00%,15,15,83,18.10% +118682,886,3159,State-funded primary,103,51,52,49.50%,50.50%,2,1.90%,11,10.70%,5,98,0,4.90%,95.10%,0.00%,8,9,103,8.70% +118683,886,3160,State-funded primary,99,45,54,45.50%,54.50%,1,1.00%,11,11.10%,0,99,0,0.00%,100.00%,0.00%,9,10,99,10.10% +118685,886,3167,State-funded primary,165,78,87,47.30%,52.70%,5,3.00%,21,12.70%,4,160,1,2.40%,97.00%,0.60%,45,45,165,27.30% +118686,886,3168,State-funded primary,53,32,21,60.40%,39.60%,5,9.40%,13,24.50%,0,53,0,0.00%,100.00%,0.00%,5,5,53,9.40% +118687,886,3169,State-funded primary,151,70,81,46.40%,53.60%,0,0.00%,24,15.90%,87,64,0,57.60%,42.40%,0.00%,14,14,151,9.30% +118688,886,3171,State-funded primary,38,19,19,50.00%,50.00%,3,7.90%,8,21.10%,0,38,0,0.00%,100.00%,0.00%,22,22,38,57.90% +118691,886,3175,State-funded primary,202,98,104,48.50%,51.50%,2,1.00%,15,7.40%,12,190,0,5.90%,94.10%,0.00%,23,23,202,11.40% +118693,886,3178,State-funded primary,475,240,235,50.50%,49.50%,8,1.70%,74,15.60%,23,452,0,4.80%,95.20%,0.00%,120,121,475,25.50% +118694,886,3179,State-funded primary,407,199,208,48.90%,51.10%,14,3.40%,51,12.50%,122,284,1,30.00%,69.80%,0.20%,225,231,407,56.80% +118695,886,3181,State-funded primary,375,179,196,47.70%,52.30%,13,3.50%,25,6.70%,17,358,0,4.50%,95.50%,0.00%,116,125,375,33.30% +118696,886,3182,State-funded primary,389,177,212,45.50%,54.50%,11,2.80%,87,22.40%,10,379,0,2.60%,97.40%,0.00%,86,89,389,22.90% +118697,886,3183,State-funded primary,106,57,49,53.80%,46.20%,2,1.90%,14,13.20%,6,100,0,5.70%,94.30%,0.00%,25,27,106,25.50% +118698,886,3186,State-funded primary,195,109,86,55.90%,44.10%,6,3.10%,16,8.20%,6,189,0,3.10%,96.90%,0.00%,31,32,195,16.40% +118701,886,3198,State-funded primary,98,54,44,55.10%,44.90%,4,4.10%,8,8.20%,4,92,2,4.10%,93.90%,2.00%,23,24,98,24.50% +118702,886,3199,State-funded primary,188,85,103,45.20%,54.80%,4,2.10%,18,9.60%,6,182,0,3.20%,96.80%,0.00%,39,39,188,20.70% +118704,886,3201,State-funded primary,76,41,35,53.90%,46.10%,1,1.30%,15,19.70%,2,74,0,2.60%,97.40%,0.00%,3,3,76,3.90% +118705,886,3282,State-funded primary,203,103,100,50.70%,49.30%,11,5.40%,18,8.90%,6,197,0,3.00%,97.00%,0.00%,49,49,203,24.10% +118706,886,3284,State-funded primary,418,220,198,52.60%,47.40%,5,1.20%,49,11.70%,48,369,1,11.50%,88.30%,0.20%,47,52,418,12.40% +118707,886,3289,State-funded primary,209,101,108,48.30%,51.70%,7,3.30%,17,8.10%,95,114,0,45.50%,54.50%,0.00%,45,46,209,22.00% +118709,886,3294,State-funded primary,354,176,178,49.70%,50.30%,4,1.10%,60,16.90%,51,303,0,14.40%,85.60%,0.00%,153,158,354,44.60% +118710,886,3295,State-funded primary,316,145,171,45.90%,54.10%,10,3.20%,39,12.30%,14,302,0,4.40%,95.60%,0.00%,21,21,270,7.80% +118711,886,3296,State-funded primary,325,150,175,46.20%,53.80%,38,11.70%,33,10.20%,14,310,1,4.30%,95.40%,0.30%,104,110,325,33.80% +118712,886,3297,State-funded primary,615,306,309,49.80%,50.20%,6,1.00%,101,16.40%,89,526,0,14.50%,85.50%,0.00%,108,109,615,17.70% +118713,886,3303,State-funded primary,170,90,80,52.90%,47.10%,4,2.40%,24,14.10%,9,161,0,5.30%,94.70%,0.00%,8,9,170,5.30% +118715,886,3307,State-funded primary,179,92,87,51.40%,48.60%,2,1.10%,26,14.50%,9,170,0,5.00%,95.00%,0.00%,5,6,179,3.40% +118716,886,3308,State-funded primary,112,60,52,53.60%,46.40%,2,1.80%,6,5.40%,3,109,0,2.70%,97.30%,0.00%,5,6,112,5.40% +118717,886,3309,State-funded primary,171,83,88,48.50%,51.50%,6,3.50%,8,4.70%,8,163,0,4.70%,95.30%,0.00%,28,28,171,16.40% +118718,886,3312,State-funded primary,152,86,66,56.60%,43.40%,4,2.60%,31,20.40%,2,150,0,1.30%,98.70%,0.00%,26,27,152,17.80% +118720,886,3314,State-funded primary,84,38,46,45.20%,54.80%,3,3.60%,13,15.50%,3,81,0,3.60%,96.40%,0.00%,11,13,84,15.50% +118721,886,3317,State-funded primary,425,222,203,52.20%,47.80%,6,1.40%,27,6.40%,64,361,0,15.10%,84.90%,0.00%,21,23,425,5.40% +118722,886,3318,State-funded primary,153,68,85,44.40%,55.60%,3,2.00%,16,10.50%,0,153,0,0.00%,100.00%,0.00%,9,9,153,5.90% +118724,886,3320,State-funded primary,202,106,96,52.50%,47.50%,1,0.50%,24,11.90%,86,116,0,42.60%,57.40%,0.00%,69,69,202,34.20% +118725,886,3322,State-funded primary,631,329,302,52.10%,47.90%,7,1.10%,48,7.60%,209,421,1,33.10%,66.70%,0.20%,49,50,631,7.90% +118726,886,3323,State-funded primary,102,61,41,59.80%,40.20%,3,2.90%,15,14.70%,15,87,0,14.70%,85.30%,0.00%,18,18,102,17.60% +118728,886,3325,State-funded primary,173,88,85,50.90%,49.10%,4,2.30%,22,12.70%,13,160,0,7.50%,92.50%,0.00%,28,30,173,17.30% +118730,886,3328,State-funded primary,245,109,136,44.50%,55.50%,9,3.70%,14,5.70%,20,225,0,8.20%,91.80%,0.00%,28,30,206,14.60% +118734,886,3332,State-funded primary,108,49,59,45.40%,54.60%,4,3.70%,25,23.10%,3,105,0,2.80%,97.20%,0.00%,17,17,108,15.70% +118735,886,3337,State-funded primary,422,222,200,52.60%,47.40%,9,2.10%,29,6.90%,24,396,2,5.70%,93.80%,0.50%,9,12,422,2.80% +118736,886,3338,State-funded primary,360,176,184,48.90%,51.10%,17,4.70%,42,11.70%,7,353,0,1.90%,98.10%,0.00%,49,54,360,15.00% +118737,886,3339,State-funded primary,210,103,107,49.00%,51.00%,3,1.40%,39,18.60%,8,200,2,3.80%,95.20%,1.00%,35,36,210,17.10% +118738,886,3340,State-funded primary,420,205,215,48.80%,51.20%,4,1.00%,41,9.80%,105,315,0,25.00%,75.00%,0.00%,105,105,420,25.00% +118740,886,3346,State-funded primary,141,75,66,53.20%,46.80%,5,3.50%,24,17.00%,2,139,0,1.40%,98.60%,0.00%,24,25,141,17.70% +118741,886,3347,State-funded primary,127,69,58,54.30%,45.70%,4,3.10%,6,4.70%,14,113,0,11.00%,89.00%,0.00%,23,24,127,18.90% +118744,886,3350,State-funded primary,208,103,105,49.50%,50.50%,1,0.50%,11,5.30%,5,203,0,2.40%,97.60%,0.00%,16,16,208,7.70% +118745,886,3351,State-funded primary,158,69,89,43.70%,56.30%,7,4.40%,15,9.50%,11,147,0,7.00%,93.00%,0.00%,45,45,141,31.90% +118748,886,3356,State-funded primary,155,80,75,51.60%,48.40%,1,0.60%,13,8.40%,64,91,0,41.30%,58.70%,0.00%,103,105,155,67.70% +118750,886,3360,State-funded primary,365,175,190,47.90%,52.10%,8,2.20%,44,12.10%,11,354,0,3.00%,97.00%,0.00%,118,122,365,33.40% +118751,886,3364,State-funded primary,210,97,113,46.20%,53.80%,5,2.40%,8,3.80%,5,205,0,2.40%,97.60%,0.00%,26,28,210,13.30% +118754,886,3373,State-funded primary,247,119,128,48.20%,51.80%,8,3.20%,38,15.40%,35,212,0,14.20%,85.80%,0.00%,102,104,189,55.00% +118756,887,3712,State-funded primary,469,233,236,49.70%,50.30%,8,1.70%,63,13.40%,163,306,0,34.80%,65.20%,0.00%,107,110,418,26.30% +118764,886,3722,State-funded primary,209,121,88,57.90%,42.10%,5,2.40%,29,13.90%,61,148,0,29.20%,70.80%,0.00%,70,71,209,34.00% +118765,886,3728,State-funded primary,209,118,91,56.50%,43.50%,1,0.50%,13,6.20%,99,104,6,47.40%,49.80%,2.90%,20,21,209,10.00% +118766,887,3729,State-funded primary,202,101,101,50.00%,50.00%,3,1.50%,23,11.40%,50,152,0,24.80%,75.20%,0.00%,32,33,202,16.30% +118767,887,3732,State-funded primary,258,133,125,51.60%,48.40%,5,1.90%,22,8.50%,65,193,0,25.20%,74.80%,0.00%,29,30,239,12.60% +118768,886,3733,State-funded primary,217,111,106,51.20%,48.80%,2,0.90%,14,6.50%,66,151,0,30.40%,69.60%,0.00%,14,17,217,7.80% +118769,887,3736,State-funded primary,417,229,188,54.90%,45.10%,3,0.70%,61,14.60%,71,332,14,17.00%,79.60%,3.40%,47,50,417,12.00% +118775,887,3746,State-funded primary,208,102,106,49.00%,51.00%,0,0.00%,19,9.10%,41,167,0,19.70%,80.30%,0.00%,16,17,208,8.20% +118777,886,3749,State-funded primary,209,101,108,48.30%,51.70%,4,1.90%,13,6.20%,118,91,0,56.50%,43.50%,0.00%,39,39,209,18.70% +118779,887,3752,State-funded primary,199,98,101,49.20%,50.80%,2,1.00%,36,18.10%,25,174,0,12.60%,87.40%,0.00%,27,28,199,14.10% +118780,887,3753,State-funded primary,211,104,107,49.30%,50.70%,2,0.90%,14,6.60%,11,200,0,5.20%,94.80%,0.00%,18,18,211,8.50% +118782,887,3755,State-funded primary,433,198,235,45.70%,54.30%,4,0.90%,67,15.50%,142,291,0,32.80%,67.20%,0.00%,64,65,408,15.90% +118785,886,4026,State-funded secondary,876,865,11,98.70%,1.30%,17,1.90%,121,13.80%,149,727,0,17.00%,83.00%,0.00%,173,168,745,22.60% +118788,886,4040,State-funded secondary,1251,1221,30,97.60%,2.40%,9,0.70%,153,12.20%,287,963,1,22.90%,77.00%,0.10%,395,360,1011,35.60% +118789,886,4043,State-funded secondary,984,984,0,100.00%,0.00%,2,0.20%,110,11.20%,70,911,3,7.10%,92.60%,0.30%,24,21,730,2.90% +118790,886,4045,State-funded secondary,1636,50,1586,3.10%,96.90%,3,0.20%,24,1.50%,230,1406,0,14.10%,85.90%,0.00%,85,74,1291,5.70% +118806,886,4109,State-funded secondary,882,858,24,97.30%,2.70%,3,0.30%,43,4.90%,81,801,0,9.20%,90.80%,0.00%,117,114,677,16.80% +118835,886,4522,State-funded secondary,1425,84,1341,5.90%,94.10%,3,0.20%,15,1.10%,248,1176,1,17.40%,82.50%,0.10%,74,67,1049,6.40% +118836,886,4523,State-funded secondary,1197,1133,64,94.70%,5.30%,2,0.20%,89,7.40%,116,1080,1,9.70%,90.20%,0.10%,87,78,874,8.90% +118840,886,4534,State-funded secondary,1244,1211,33,97.30%,2.70%,4,0.30%,209,16.80%,161,1070,13,12.90%,86.00%,1.00%,75,64,881,7.30% +118843,886,4622,State-funded secondary,1472,189,1283,12.80%,87.20%,23,1.60%,83,5.60%,188,1284,0,12.80%,87.20%,0.00%,36,27,953,2.80% +118846,886,5200,State-funded primary,407,187,220,45.90%,54.10%,8,2.00%,51,12.50%,16,391,0,3.90%,96.10%,0.00%,123,126,407,31.00% +118847,886,5201,State-funded primary,265,134,131,50.60%,49.40%,3,1.10%,36,13.60%,9,256,0,3.40%,96.60%,0.00%,59,61,265,23.00% +118849,886,5203,State-funded primary,423,206,217,48.70%,51.30%,7,1.70%,39,9.20%,42,381,0,9.90%,90.10%,0.00%,14,16,423,3.80% +118852,886,5206,State-funded primary,426,216,210,50.70%,49.30%,20,4.70%,56,13.10%,33,392,1,7.70%,92.00%,0.20%,179,182,426,42.70% +118853,886,5207,State-funded primary,418,224,194,53.60%,46.40%,6,1.40%,27,6.50%,150,249,19,35.90%,59.60%,4.50%,64,65,418,15.60% +118854,886,5208,State-funded primary,200,93,107,46.50%,53.50%,5,2.50%,35,17.50%,16,183,1,8.00%,91.50%,0.50%,46,48,200,24.00% +118858,886,5212,State-funded primary,174,89,85,51.10%,48.90%,2,1.10%,17,9.80%,16,158,0,9.20%,90.80%,0.00%,42,42,174,24.10% +118859,886,5213,State-funded primary,423,209,214,49.40%,50.60%,5,1.20%,66,15.60%,183,224,16,43.30%,53.00%,3.80%,66,68,423,16.10% +118860,886,5214,State-funded primary,324,166,158,51.20%,48.80%,4,1.20%,39,12.00%,119,205,0,36.70%,63.30%,0.00%,63,64,324,19.80% +118864,886,5218,State-funded primary,300,159,141,53.00%,47.00%,7,2.30%,45,15.00%,10,290,0,3.30%,96.70%,0.00%,69,68,257,26.50% +118867,886,5221,State-funded primary,432,213,219,49.30%,50.70%,18,4.20%,45,10.40%,58,374,0,13.40%,86.60%,0.00%,136,137,432,31.70% +118869,886,5223,State-funded primary,246,118,128,48.00%,52.00%,4,1.60%,35,14.20%,7,239,0,2.80%,97.20%,0.00%,77,79,246,32.10% +118871,886,5225,State-funded primary,178,91,87,51.10%,48.90%,8,4.50%,27,15.20%,22,156,0,12.40%,87.60%,0.00%,61,63,178,35.40% +118879,886,5407,State-funded secondary,955,457,498,47.90%,52.10%,26,2.70%,136,14.20%,126,819,10,13.20%,85.80%,1.00%,374,380,886,42.90% +118884,886,5412,State-funded secondary,1247,130,1117,10.40%,89.60%,42,3.40%,7,0.60%,226,1021,0,18.10%,81.90%,0.00%,58,47,780,6.00% +118897,886,5425,State-funded secondary,1010,463,547,45.80%,54.20%,151,15.00%,104,10.30%,22,986,2,2.20%,97.60%,0.20%,228,240,906,26.50% +118898,886,5426,State-funded secondary,722,340,382,47.10%,52.90%,23,3.20%,140,19.40%,198,522,2,27.40%,72.30%,0.30%,310,305,627,48.60% +118903,886,5431,State-funded secondary,963,394,569,40.90%,59.10%,41,4.30%,183,19.00%,58,905,0,6.00%,94.00%,0.00%,256,266,799,33.30% +118908,887,5436,State-funded secondary,1024,474,550,46.30%,53.70%,8,0.80%,157,15.30%,231,744,49,22.60%,72.70%,4.80%,295,320,869,36.80% +118919,886,5447,State-funded secondary,1633,845,788,51.70%,48.30%,72,4.40%,135,8.30%,97,1536,0,5.90%,94.10%,0.00%,425,447,1504,29.70% +118928,886,5456,State-funded secondary,903,3,900,0.30%,99.70%,18,2.00%,243,26.90%,215,686,2,23.80%,76.00%,0.20%,241,249,749,33.20% +118931,886,5459,State-funded secondary,835,13,822,1.60%,98.40%,6,0.70%,23,2.80%,62,773,0,7.40%,92.60%,0.00%,116,110,673,16.30% +118933,886,5461,State-funded secondary,1294,631,663,48.80%,51.20%,28,2.20%,190,14.70%,530,763,1,41.00%,59.00%,0.10%,273,242,968,25.00% +118937,886,6000,Independent school,1050,500,550,47.60%,52.40%,281,26.80%,40,3.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118938,886,6001,Independent school,210,84,126,40.00%,60.00%,3,1.40%,20,9.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118939,886,6002,Independent school,546,546,0,100.00%,0.00%,0,0.00%,127,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118940,886,6003,Independent school,313,141,172,45.00%,55.00%,0,0.00%,110,35.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118941,886,6004,Independent school,193,94,99,48.70%,51.30%,0,0.00%,38,19.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118942,886,6005,Independent school,248,129,119,52.00%,48.00%,0,0.00%,63,25.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118943,886,6006,Independent school,455,214,241,47.00%,53.00%,0,0.00%,85,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118944,886,6007,Independent school,384,190,194,49.50%,50.50%,6,1.60%,30,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118946,886,6009,Independent school,512,493,19,96.30%,3.70%,7,1.40%,155,30.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118947,886,6010,Independent school,409,191,218,46.70%,53.30%,1,0.20%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118948,887,6000,Independent school,660,276,384,41.80%,58.20%,4,0.60%,89,13.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118949,886,6011,Independent school,309,148,161,47.90%,52.10%,0,0.00%,64,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118950,886,6012,Independent school,449,207,242,46.10%,53.90%,4,0.90%,139,31.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118951,886,6013,Independent school,265,111,154,41.90%,58.10%,6,2.30%,82,30.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118952,886,6014,Independent school,1181,557,624,47.20%,52.80%,0,0.00%,169,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118953,886,6015,Independent school,381,200,181,52.50%,47.50%,0,0.00%,63,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118954,886,6016,Independent school,476,232,244,48.70%,51.30%,2,0.40%,71,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118955,886,6017,Independent school,348,1,347,0.30%,99.70%,1,0.30%,77,22.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118957,886,6018,Independent school,533,225,308,42.20%,57.80%,0,0.00%,37,6.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118958,886,6019,Independent school,868,352,516,40.60%,59.40%,2,0.20%,29,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118959,886,6020,Independent school,794,0,794,0.00%,100.00%,0,0.00%,150,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118960,886,6021,Independent school,608,225,383,37.00%,63.00%,0,0.00%,41,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118965,886,6024,Independent school,132,73,59,55.30%,44.70%,1,0.80%,38,28.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118967,886,6026,Independent school,148,76,72,51.40%,48.60%,1,0.70%,18,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118971,886,6029,Independent school,162,155,7,95.70%,4.30%,0,0.00%,13,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118973,886,6031,Independent school,298,105,193,35.20%,64.80%,1,0.30%,84,28.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118974,886,6032,Independent school,166,96,70,57.80%,42.20%,0,0.00%,27,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118975,886,6033,Independent school,238,127,111,53.40%,46.60%,2,0.80%,19,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118977,886,6035,Independent school,42,20,22,47.60%,52.40%,0,0.00%,5,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118978,886,6036,Independent school,348,114,234,32.80%,67.20%,0,0.00%,240,69.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118979,887,6001,Independent school,128,68,60,53.10%,46.90%,0,0.00%,1,0.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118981,886,6038,Independent school,151,0,151,0.00%,100.00%,4,2.60%,55,36.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118984,886,6039,Independent school,183,95,88,51.90%,48.10%,1,0.50%,12,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118985,887,6002,Independent school,362,190,172,52.50%,47.50%,0,0.00%,8,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118986,886,6040,Independent school,160,62,98,38.80%,61.30%,0,0.00%,36,22.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118990,886,6043,Independent school,343,168,175,49.00%,51.00%,1,0.30%,119,34.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118991,886,6044,Independent school,137,136,1,99.30%,0.70%,3,2.20%,27,19.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118992,886,6045,Independent school,225,118,107,52.40%,47.60%,1,0.40%,19,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118993,886,6046,Independent school,65,6,59,9.20%,90.80%,65,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118995,886,6047,Independent school,149,0,149,0.00%,100.00%,149,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118996,886,6048,Independent school,943,458,485,48.60%,51.40%,0,0.00%,220,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +118998,886,6050,Independent school,631,296,335,46.90%,53.10%,11,1.70%,80,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119001,886,6053,Independent school,574,263,311,45.80%,54.20%,3,0.50%,36,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119002,886,6054,Independent school,549,549,0,100.00%,0.00%,84,15.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119005,886,6057,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119006,887,6004,Independent school,358,161,197,45.00%,55.00%,43,12.00%,102,28.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119007,886,6058,Independent school,206,48,158,23.30%,76.70%,51,24.80%,23,11.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119008,886,6059,Independent school,228,112,116,49.10%,50.90%,4,1.80%,19,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119009,886,6060,Independent school,105,18,87,17.10%,82.90%,105,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119010,886,6061,Independent school,381,172,209,45.10%,54.90%,1,0.30%,16,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119013,886,6063,Independent school,31,9,22,29.00%,71.00%,31,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119014,886,6064,Independent school,120,60,60,50.00%,50.00%,1,0.80%,19,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119015,886,6065,Independent school,59,19,40,32.20%,67.80%,59,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119016,886,6066,Independent school,48,33,15,68.80%,31.30%,0,0.00%,4,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119020,886,6069,Independent school,222,100,122,45.00%,55.00%,0,0.00%,22,9.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119021,886,6070,Independent school,34,9,25,26.50%,73.50%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119026,886,7002,State-funded special school,351,113,238,32.20%,67.80%,351,100.00%,0,0.00%,4,347,0,1.10%,98.90%,0.00%,99,84,255,32.90% +119027,886,7003,Non-maintained special school,60,17,43,28.30%,71.70%,60,100.00%,0,0.00%,0,60,0,0.00%,100.00%,0.00%,23,35,60,58.30% +119029,886,7011,Non-maintained special school,61,10,51,16.40%,83.60%,61,100.00%,0,0.00%,0,61,0,0.00%,100.00%,0.00%,27,24,46,52.20% +119032,886,7021,State-funded special school,119,46,73,38.70%,61.30%,119,100.00%,0,0.00%,5,114,0,4.20%,95.80%,0.00%,33,25,85,29.40% +119036,886,7032,State-funded special school,238,23,215,9.70%,90.30%,238,100.00%,0,0.00%,5,233,0,2.10%,97.90%,0.00%,148,152,238,63.90% +119037,886,7033,State-funded special school,107,12,95,11.20%,88.80%,107,100.00%,0,0.00%,1,104,2,0.90%,97.20%,1.90%,76,81,107,75.70% +119040,886,7039,State-funded special school,265,68,197,25.70%,74.30%,265,100.00%,0,0.00%,50,215,0,18.90%,81.10%,0.00%,109,92,226,40.70% +119041,886,7040,State-funded special school,270,80,190,29.60%,70.40%,251,93.00%,19,7.00%,27,243,0,10.00%,90.00%,0.00%,112,105,222,47.30% +119042,886,7041,State-funded special school,203,55,148,27.10%,72.90%,203,100.00%,0,0.00%,2,200,1,1.00%,98.50%,0.50%,100,91,175,52.00% +119044,886,7043,State-funded special school,419,133,286,31.70%,68.30%,408,97.40%,11,2.60%,21,397,1,5.00%,94.70%,0.20%,209,181,343,52.80% +119045,886,7044,State-funded special school,149,12,137,8.10%,91.90%,149,100.00%,0,0.00%,0,149,0,0.00%,100.00%,0.00%,90,111,149,74.50% +119046,886,7045,State-funded special school,150,21,129,14.00%,86.00%,150,100.00%,0,0.00%,2,148,0,1.30%,98.70%,0.00%,121,126,150,84.00% +119050,886,7051,State-funded special school,261,73,188,28.00%,72.00%,260,99.60%,1,0.40%,20,238,3,7.70%,91.20%,1.10%,93,91,228,39.90% +119051,886,7052,State-funded special school,175,44,131,25.10%,74.90%,175,100.00%,0,0.00%,3,172,0,1.70%,98.30%,0.00%,60,44,106,41.50% +119052,887,7053,State-funded special school,197,67,130,34.00%,66.00%,197,100.00%,0,0.00%,48,149,0,24.40%,75.60%,0.00%,75,65,168,38.70% +119055,886,7056,State-funded special school,793,243,550,30.60%,69.40%,772,97.40%,21,2.60%,52,741,0,6.60%,93.40%,0.00%,285,256,692,37.00% +119056,886,7058,State-funded special school,103,17,86,16.50%,83.50%,103,100.00%,0,0.00%,6,97,0,5.80%,94.20%,0.00%,59,59,94,62.80% +119058,886,7062,State-funded special school,105,5,100,4.80%,95.20%,105,100.00%,0,0.00%,0,105,0,0.00%,100.00%,0.00%,73,76,105,72.40% +119059,886,7063,State-funded special school,353,117,236,33.10%,66.90%,353,100.00%,0,0.00%,31,320,2,8.80%,90.70%,0.60%,145,145,318,45.60% +119062,886,7067,State-funded special school,75,0,75,0.00%,100.00%,75,100.00%,0,0.00%,0,75,0,0.00%,100.00%,0.00%,41,48,75,64.00% +119064,888,1000,State-funded nursery,110,57,53,51.80%,48.20%,0,0.00%,21,19.10%,34,76,0,30.90%,69.10%,0.00%,0,0,0,0.00% +119065,888,1001,State-funded nursery,113,63,50,55.80%,44.20%,1,0.90%,18,15.90%,13,100,0,11.50%,88.50%,0.00%,0,0,0,0.00% +119066,888,1002,State-funded nursery,122,60,62,49.20%,50.80%,0,0.00%,31,25.40%,10,112,0,8.20%,91.80%,0.00%,0,0,0,0.00% +119067,888,1003,State-funded nursery,96,44,52,45.80%,54.20%,0,0.00%,20,20.80%,19,77,0,19.80%,80.20%,0.00%,0,0,0,0.00% +119070,888,1007,State-funded nursery,94,49,45,52.10%,47.90%,2,2.10%,23,24.50%,4,90,0,4.30%,95.70%,0.00%,0,0,0,0.00% +119071,888,1008,State-funded nursery,85,41,44,48.20%,51.80%,0,0.00%,10,11.80%,4,81,0,4.70%,95.30%,0.00%,0,0,0,0.00% +119074,888,1011,State-funded nursery,85,42,43,49.40%,50.60%,0,0.00%,36,42.40%,59,26,0,69.40%,30.60%,0.00%,0,0,0,0.00% +119078,888,1015,State-funded nursery,202,102,100,50.50%,49.50%,0,0.00%,38,18.80%,112,90,0,55.40%,44.60%,0.00%,0,0,0,0.00% +119079,888,1016,State-funded nursery,90,36,54,40.00%,60.00%,3,3.30%,15,16.70%,23,67,0,25.60%,74.40%,0.00%,0,0,0,0.00% +119080,888,1018,State-funded nursery,41,26,15,63.40%,36.60%,0,0.00%,10,24.40%,2,39,0,4.90%,95.10%,0.00%,0,0,0,0.00% +119083,888,1021,State-funded nursery,67,33,34,49.30%,50.70%,0,0.00%,11,16.40%,25,42,0,37.30%,62.70%,0.00%,0,0,0,0.00% +119084,889,1022,State-funded nursery,95,47,48,49.50%,50.50%,0,0.00%,4,4.20%,13,82,0,13.70%,86.30%,0.00%,0,0,0,0.00% +119086,888,1024,State-funded nursery,80,35,45,43.80%,56.30%,3,3.80%,19,23.80%,35,45,0,43.80%,56.30%,0.00%,0,0,0,0.00% +119088,888,1026,State-funded nursery,111,52,59,46.80%,53.20%,1,0.90%,9,8.10%,75,36,0,67.60%,32.40%,0.00%,0,0,0,0.00% +119089,888,1027,State-funded nursery,54,27,27,50.00%,50.00%,1,1.90%,9,16.70%,8,46,0,14.80%,85.20%,0.00%,0,0,0,0.00% +119090,888,1028,State-funded nursery,90,51,39,56.70%,43.30%,0,0.00%,22,24.40%,3,87,0,3.30%,96.70%,0.00%,0,0,0,0.00% +119091,889,1029,State-funded nursery,81,47,34,58.00%,42.00%,0,0.00%,7,8.60%,61,20,0,75.30%,24.70%,0.00%,0,0,0,0.00% +119092,889,1030,State-funded nursery,50,20,30,40.00%,60.00%,0,0.00%,20,40.00%,49,1,0,98.00%,2.00%,0.00%,0,0,0,0.00% +119093,888,1031,State-funded nursery,66,36,30,54.50%,45.50%,0,0.00%,13,19.70%,11,55,0,16.70%,83.30%,0.00%,0,0,0,0.00% +119095,888,1034,State-funded nursery,65,33,32,50.80%,49.20%,0,0.00%,13,20.00%,33,32,0,50.80%,49.20%,0.00%,0,0,0,0.00% +119096,888,1035,State-funded nursery,129,68,61,52.70%,47.30%,1,0.80%,13,10.10%,1,128,0,0.80%,99.20%,0.00%,0,0,0,0.00% +119097,888,1037,State-funded nursery,72,34,38,47.20%,52.80%,1,1.40%,4,5.60%,1,71,0,1.40%,98.60%,0.00%,0,0,0,0.00% +119099,889,1039,State-funded nursery,59,33,26,55.90%,44.10%,0,0.00%,0,0.00%,8,51,0,13.60%,86.40%,0.00%,0,0,0,0.00% +119100,888,1046,State-funded nursery,81,41,40,50.60%,49.40%,0,0.00%,18,22.20%,5,76,0,6.20%,93.80%,0.00%,0,0,0,0.00% +119101,888,1047,State-funded nursery,106,52,54,49.10%,50.90%,0,0.00%,23,21.70%,72,34,0,67.90%,32.10%,0.00%,0,0,0,0.00% +119103,888,1100,State-funded AP school,16,0,16,0.00%,100.00%,10,62.50%,5,31.30%,0,16,0,0.00%,100.00%,0.00%,15,15,16,93.80% +119106,888,1103,State-funded AP school,16,1,15,6.30%,93.80%,6,37.50%,10,62.50%,0,16,0,0.00%,100.00%,0.00%,7,10,16,62.50% +119112,888,1109,State-funded AP school,82,22,60,26.80%,73.20%,9,11.00%,15,18.30%,2,80,0,2.40%,97.60%,0.00%,57,66,82,80.50% +119115,889,2000,State-funded primary,372,180,192,48.40%,51.60%,13,3.50%,105,28.20%,297,75,0,79.80%,20.20%,0.00%,104,106,372,28.50% +119116,889,2001,State-funded primary,222,107,115,48.20%,51.80%,4,1.80%,47,21.20%,49,173,0,22.10%,77.90%,0.00%,68,75,202,37.10% +119118,889,2006,State-funded primary,425,213,212,50.10%,49.90%,9,2.10%,42,9.90%,236,188,1,55.50%,44.20%,0.20%,189,181,391,46.30% +119119,889,2007,State-funded primary,350,180,170,51.40%,48.60%,11,3.10%,74,21.10%,47,303,0,13.40%,86.60%,0.00%,201,212,350,60.60% +119120,889,2008,State-funded primary,379,191,188,50.40%,49.60%,20,5.30%,64,16.90%,8,371,0,2.10%,97.90%,0.00%,60,73,379,19.30% +119121,889,2009,State-funded primary,211,100,111,47.40%,52.60%,4,1.90%,80,37.90%,25,186,0,11.80%,88.20%,0.00%,140,147,211,69.70% +119122,889,2010,State-funded primary,165,86,79,52.10%,47.90%,5,3.00%,49,29.70%,21,144,0,12.70%,87.30%,0.00%,78,81,134,60.40% +119123,889,2011,State-funded primary,295,137,158,46.40%,53.60%,9,3.10%,30,10.20%,272,23,0,92.20%,7.80%,0.00%,51,54,269,20.10% +119124,889,2012,State-funded primary,494,263,231,53.20%,46.80%,13,2.60%,24,4.90%,470,24,0,95.10%,4.90%,0.00%,38,45,494,9.10% +119125,889,2013,State-funded primary,212,118,94,55.70%,44.30%,7,3.30%,43,20.30%,32,180,0,15.10%,84.90%,0.00%,101,110,212,51.90% +119126,888,2014,State-funded primary,99,46,53,46.50%,53.50%,5,5.10%,22,22.20%,3,96,0,3.00%,97.00%,0.00%,26,28,99,28.30% +119127,889,2015,State-funded primary,458,214,244,46.70%,53.30%,10,2.20%,34,7.40%,307,151,0,67.00%,33.00%,0.00%,108,112,417,26.90% +119128,888,2016,State-funded primary,80,40,40,50.00%,50.00%,1,1.30%,12,15.00%,0,80,0,0.00%,100.00%,0.00%,15,13,66,19.70% +119129,888,2017,State-funded primary,503,235,268,46.70%,53.30%,11,2.20%,54,10.70%,79,424,0,15.70%,84.30%,0.00%,83,76,418,18.20% +119130,888,2019,State-funded primary,405,197,208,48.60%,51.40%,7,1.70%,37,9.10%,110,259,36,27.20%,64.00%,8.90%,76,76,405,18.80% +119132,888,2021,State-funded primary,388,191,197,49.20%,50.80%,10,2.60%,75,19.30%,32,356,0,8.20%,91.80%,0.00%,215,215,332,64.80% +119134,888,2024,State-funded primary,204,100,104,49.00%,51.00%,4,2.00%,25,12.30%,26,178,0,12.70%,87.30%,0.00%,80,82,204,40.20% +119135,888,2025,State-funded primary,288,133,155,46.20%,53.80%,21,7.30%,51,17.70%,41,247,0,14.20%,85.80%,0.00%,169,158,249,63.50% +119136,889,2026,State-funded primary,269,136,133,50.60%,49.40%,5,1.90%,47,17.50%,158,111,0,58.70%,41.30%,0.00%,49,49,239,20.50% +119137,888,2027,State-funded primary,588,292,296,49.70%,50.30%,15,2.60%,111,18.90%,30,558,0,5.10%,94.90%,0.00%,251,255,588,43.40% +119138,888,2028,State-funded primary,435,197,238,45.30%,54.70%,13,3.00%,119,27.40%,38,397,0,8.70%,91.30%,0.00%,189,186,390,47.70% +119139,888,2029,State-funded primary,181,102,79,56.40%,43.60%,3,1.70%,65,35.90%,17,164,0,9.40%,90.60%,0.00%,91,97,181,53.60% +119140,888,2030,State-funded primary,92,53,39,57.60%,42.40%,2,2.20%,10,10.90%,0,92,0,0.00%,100.00%,0.00%,8,8,92,8.70% +119141,888,2031,State-funded primary,111,51,60,45.90%,54.10%,1,0.90%,28,25.20%,2,109,0,1.80%,98.20%,0.00%,9,9,111,8.10% +119145,888,2041,State-funded primary,208,122,86,58.70%,41.30%,10,4.80%,37,17.80%,32,176,0,15.40%,84.60%,0.00%,52,52,208,25.00% +119146,888,2042,State-funded primary,246,118,128,48.00%,52.00%,3,1.20%,23,9.30%,6,240,0,2.40%,97.60%,0.00%,30,30,246,12.20% +119147,888,2045,State-funded primary,93,35,58,37.60%,62.40%,4,4.30%,12,12.90%,0,93,0,0.00%,100.00%,0.00%,16,16,90,17.80% +119148,888,2047,State-funded primary,135,71,64,52.60%,47.40%,2,1.50%,32,23.70%,2,133,0,1.50%,98.50%,0.00%,50,51,135,37.80% +119149,888,2048,State-funded primary,290,137,153,47.20%,52.80%,1,0.30%,30,10.30%,2,288,0,0.70%,99.30%,0.00%,58,59,290,20.30% +119151,888,2050,State-funded primary,313,153,160,48.90%,51.10%,4,1.30%,38,12.10%,46,264,3,14.70%,84.30%,1.00%,57,58,313,18.50% +119152,888,2051,State-funded primary,229,110,119,48.00%,52.00%,5,2.20%,16,7.00%,25,204,0,10.90%,89.10%,0.00%,23,27,214,12.60% +119153,888,2052,State-funded primary,243,109,134,44.90%,55.10%,6,2.50%,22,9.10%,85,158,0,35.00%,65.00%,0.00%,46,46,243,18.90% +119154,888,2053,State-funded primary,94,48,46,51.10%,48.90%,1,1.10%,4,4.30%,0,94,0,0.00%,100.00%,0.00%,3,3,94,3.20% +119155,888,2054,State-funded primary,241,121,120,50.20%,49.80%,6,2.50%,37,15.40%,33,207,1,13.70%,85.90%,0.40%,81,84,241,34.90% +119156,888,2055,State-funded primary,200,102,98,51.00%,49.00%,3,1.50%,13,6.50%,8,192,0,4.00%,96.00%,0.00%,20,20,200,10.00% +119157,888,2058,State-funded primary,208,94,114,45.20%,54.80%,1,0.50%,3,1.40%,14,194,0,6.70%,93.30%,0.00%,15,16,208,7.70% +119158,888,2059,State-funded primary,228,100,128,43.90%,56.10%,2,0.90%,10,4.40%,20,208,0,8.80%,91.20%,0.00%,23,20,198,10.10% +119159,888,2060,State-funded primary,435,214,221,49.20%,50.80%,7,1.60%,22,5.10%,5,430,0,1.10%,98.90%,0.00%,48,48,413,11.60% +119160,888,2062,State-funded primary,100,50,50,50.00%,50.00%,3,3.00%,8,8.00%,7,93,0,7.00%,93.00%,0.00%,17,17,86,19.80% +119161,888,2064,State-funded primary,346,168,178,48.60%,51.40%,4,1.20%,22,6.40%,28,318,0,8.10%,91.90%,0.00%,21,23,346,6.60% +119162,888,2067,State-funded primary,187,95,92,50.80%,49.20%,3,1.60%,32,17.10%,58,129,0,31.00%,69.00%,0.00%,57,58,163,35.60% +119163,889,2070,State-funded primary,409,190,219,46.50%,53.50%,6,1.50%,31,7.60%,5,404,0,1.20%,98.80%,0.00%,50,56,409,13.70% +119164,888,2071,State-funded primary,293,135,158,46.10%,53.90%,9,3.10%,29,9.90%,17,276,0,5.80%,94.20%,0.00%,131,133,293,45.40% +119165,888,2073,State-funded primary,93,43,50,46.20%,53.80%,0,0.00%,10,10.80%,0,93,0,0.00%,100.00%,0.00%,7,7,81,8.60% +119166,888,2074,State-funded primary,326,133,193,40.80%,59.20%,29,8.90%,55,16.90%,64,258,4,19.60%,79.10%,1.20%,125,129,326,39.60% +119168,888,2076,State-funded primary,382,178,204,46.60%,53.40%,8,2.10%,41,10.70%,28,353,1,7.30%,92.40%,0.30%,65,68,382,17.80% +119172,888,2082,State-funded primary,338,171,167,50.60%,49.40%,14,4.10%,33,9.80%,29,309,0,8.60%,91.40%,0.00%,153,159,338,47.00% +119173,888,2083,State-funded primary,199,92,107,46.20%,53.80%,3,1.50%,53,26.60%,102,97,0,51.30%,48.70%,0.00%,88,91,199,45.70% +119174,888,2085,State-funded primary,207,102,105,49.30%,50.70%,7,3.40%,85,41.10%,38,169,0,18.40%,81.60%,0.00%,105,107,191,56.00% +119175,888,2087,State-funded primary,414,208,206,50.20%,49.80%,8,1.90%,31,7.50%,407,7,0,98.30%,1.70%,0.00%,103,107,414,25.80% +119176,888,2089,State-funded primary,452,217,235,48.00%,52.00%,15,3.30%,39,8.60%,304,148,0,67.30%,32.70%,0.00%,83,85,417,20.40% +119177,888,2090,State-funded primary,364,180,184,49.50%,50.50%,9,2.50%,9,2.50%,291,73,0,79.90%,20.10%,0.00%,92,93,364,25.50% +119178,888,2092,State-funded primary,444,217,227,48.90%,51.10%,8,1.80%,66,14.90%,296,148,0,66.70%,33.30%,0.00%,98,98,398,24.60% +119179,888,2093,State-funded primary,341,187,154,54.80%,45.20%,3,0.90%,41,12.00%,318,23,0,93.30%,6.70%,0.00%,67,56,264,21.20% +119180,888,2094,State-funded primary,201,96,105,47.80%,52.20%,4,2.00%,17,8.50%,2,199,0,1.00%,99.00%,0.00%,30,31,201,15.40% +119181,888,2095,State-funded primary,206,88,118,42.70%,57.30%,2,1.00%,21,10.20%,6,200,0,2.90%,97.10%,0.00%,15,15,206,7.30% +119183,888,2097,State-funded primary,445,223,222,50.10%,49.90%,4,0.90%,28,6.30%,297,146,2,66.70%,32.80%,0.40%,104,107,419,25.50% +119184,888,2099,State-funded primary,626,296,330,47.30%,52.70%,13,2.10%,49,7.80%,100,522,4,16.00%,83.40%,0.60%,185,192,626,30.70% +119185,888,2101,State-funded primary,379,191,188,50.40%,49.60%,8,2.10%,41,10.80%,241,138,0,63.60%,36.40%,0.00%,106,109,379,28.80% +119186,888,2105,State-funded primary,389,188,201,48.30%,51.70%,0,0.00%,27,6.90%,38,351,0,9.80%,90.20%,0.00%,133,135,366,36.90% +119187,888,2107,State-funded primary,213,101,112,47.40%,52.60%,8,3.80%,15,7.00%,5,208,0,2.30%,97.70%,0.00%,72,78,194,40.20% +119189,888,2109,State-funded primary,209,98,111,46.90%,53.10%,5,2.40%,22,10.50%,3,206,0,1.40%,98.60%,0.00%,30,30,209,14.40% +119190,888,2111,State-funded primary,183,90,93,49.20%,50.80%,4,2.20%,21,11.50%,4,179,0,2.20%,97.80%,0.00%,34,37,183,20.20% +119191,888,2112,State-funded primary,100,52,48,52.00%,48.00%,4,4.00%,6,6.00%,6,94,0,6.00%,94.00%,0.00%,33,38,100,38.00% +119192,888,2113,State-funded primary,62,29,33,46.80%,53.20%,3,4.80%,6,9.70%,2,60,0,3.20%,96.80%,0.00%,9,9,62,14.50% +119193,888,2114,State-funded primary,282,146,136,51.80%,48.20%,11,3.90%,25,8.90%,7,275,0,2.50%,97.50%,0.00%,108,116,282,41.10% +119194,888,2117,State-funded primary,407,188,219,46.20%,53.80%,14,3.40%,58,14.30%,116,291,0,28.50%,71.50%,0.00%,120,128,407,31.40% +119195,888,2118,State-funded primary,408,205,203,50.20%,49.80%,5,1.20%,38,9.30%,7,401,0,1.70%,98.30%,0.00%,31,33,408,8.10% +119196,888,2121,State-funded primary,201,102,99,50.70%,49.30%,2,1.00%,16,8.00%,0,201,0,0.00%,100.00%,0.00%,13,14,201,7.00% +119198,888,2128,State-funded primary,137,62,75,45.30%,54.70%,4,2.90%,14,10.20%,2,135,0,1.50%,98.50%,0.00%,30,30,137,21.90% +119199,888,2129,State-funded primary,312,168,144,53.80%,46.20%,10,3.20%,21,6.70%,8,304,0,2.60%,97.40%,0.00%,61,62,312,19.90% +119200,889,5204,State-funded primary,224,118,106,52.70%,47.30%,6,2.70%,17,7.60%,7,217,0,3.10%,96.90%,0.00%,43,47,224,21.00% +119201,889,2136,State-funded primary,96,47,49,49.00%,51.00%,2,2.10%,20,20.80%,6,90,0,6.30%,93.80%,0.00%,3,4,96,4.20% +119202,888,2140,State-funded primary,195,100,95,51.30%,48.70%,5,2.60%,12,6.20%,2,193,0,1.00%,99.00%,0.00%,21,23,195,11.80% +119203,888,2142,State-funded primary,166,86,80,51.80%,48.20%,3,1.80%,13,7.80%,2,163,1,1.20%,98.20%,0.60%,11,11,166,6.60% +119204,888,2145,State-funded primary,246,127,119,51.60%,48.40%,24,9.80%,55,22.40%,62,184,0,25.20%,74.80%,0.00%,109,112,246,45.50% +119205,888,2146,State-funded primary,233,115,118,49.40%,50.60%,5,2.10%,34,14.60%,25,208,0,10.70%,89.30%,0.00%,70,71,205,34.60% +119206,888,2147,State-funded primary,307,145,162,47.20%,52.80%,9,2.90%,97,31.60%,13,294,0,4.20%,95.80%,0.00%,98,97,253,38.30% +119208,888,2150,State-funded primary,250,121,129,48.40%,51.60%,3,1.20%,20,8.00%,9,241,0,3.60%,96.40%,0.00%,79,80,250,32.00% +119209,888,2156,State-funded primary,16,6,10,37.50%,62.50%,0,0.00%,10,62.50%,0,16,0,0.00%,100.00%,0.00%,7,7,16,43.80% +119215,888,2162,State-funded primary,216,108,108,50.00%,50.00%,2,0.90%,24,11.10%,8,208,0,3.70%,96.30%,0.00%,91,91,216,42.10% +119217,888,2164,State-funded primary,382,198,184,51.80%,48.20%,10,2.60%,50,13.10%,25,357,0,6.50%,93.50%,0.00%,152,156,382,40.80% +119220,889,2167,State-funded primary,207,95,112,45.90%,54.10%,11,5.30%,91,44.00%,25,182,0,12.10%,87.90%,0.00%,79,79,159,49.70% +119221,889,2168,State-funded primary,227,103,124,45.40%,54.60%,13,5.70%,98,43.20%,42,185,0,18.50%,81.50%,0.00%,118,143,227,63.00% +119222,889,2169,State-funded primary,396,193,203,48.70%,51.30%,6,1.50%,46,11.60%,388,8,0,98.00%,2.00%,0.00%,59,63,362,17.40% +119224,888,2183,State-funded primary,82,45,37,54.90%,45.10%,0,0.00%,8,9.80%,2,80,0,2.40%,97.60%,0.00%,7,7,70,10.00% +119225,888,2184,State-funded primary,17,11,6,64.70%,35.30%,0,0.00%,5,29.40%,0,17,0,0.00%,100.00%,0.00%,3,3,17,17.60% +119226,888,2185,State-funded primary,198,99,99,50.00%,50.00%,6,3.00%,32,16.20%,34,164,0,17.20%,82.80%,0.00%,78,78,198,39.40% +119228,888,2187,State-funded primary,658,332,326,50.50%,49.50%,8,1.20%,49,7.40%,520,138,0,79.00%,21.00%,0.00%,197,193,608,31.70% +119229,888,2188,State-funded primary,253,139,114,54.90%,45.10%,1,0.40%,71,28.10%,108,145,0,42.70%,57.30%,0.00%,74,77,207,37.20% +119230,888,2189,State-funded primary,235,127,108,54.00%,46.00%,2,0.90%,32,13.60%,45,190,0,19.10%,80.90%,0.00%,100,97,222,43.70% +119231,888,2190,State-funded primary,331,159,172,48.00%,52.00%,6,1.80%,53,16.00%,200,131,0,60.40%,39.60%,0.00%,84,86,315,27.30% +119232,888,2191,State-funded primary,177,86,91,48.60%,51.40%,7,4.00%,25,14.10%,45,132,0,25.40%,74.60%,0.00%,96,97,177,54.80% +119233,888,2192,State-funded primary,203,113,90,55.70%,44.30%,3,1.50%,23,11.30%,36,167,0,17.70%,82.30%,0.00%,86,88,203,43.30% +119234,888,2193,State-funded primary,199,102,97,51.30%,48.70%,7,3.50%,25,12.60%,49,150,0,24.60%,75.40%,0.00%,117,117,199,58.80% +119235,888,2195,State-funded primary,247,106,141,42.90%,57.10%,7,2.80%,26,10.50%,143,104,0,57.90%,42.10%,0.00%,81,76,209,36.40% +119236,888,2196,State-funded primary,195,108,87,55.40%,44.60%,2,1.00%,19,9.70%,13,182,0,6.70%,93.30%,0.00%,114,109,181,60.20% +119237,888,2197,State-funded primary,319,139,180,43.60%,56.40%,8,2.50%,35,11.00%,92,227,0,28.80%,71.20%,0.00%,134,134,307,43.60% +119238,888,2198,State-funded primary,211,102,109,48.30%,51.70%,7,3.30%,25,11.80%,22,189,0,10.40%,89.60%,0.00%,84,84,211,39.80% +119239,888,2200,State-funded primary,201,89,112,44.30%,55.70%,16,8.00%,22,10.90%,27,174,0,13.40%,86.60%,0.00%,101,108,201,53.70% +119246,890,2208,State-funded primary,626,309,317,49.40%,50.60%,5,0.80%,96,15.30%,49,577,0,7.80%,92.20%,0.00%,271,279,626,44.60% +119250,888,2214,State-funded primary,93,50,43,53.80%,46.20%,1,1.10%,7,7.50%,1,92,0,1.10%,98.90%,0.00%,5,5,93,5.40% +119251,888,2215,State-funded primary,152,72,80,47.40%,52.60%,8,5.30%,31,20.40%,32,120,0,21.10%,78.90%,0.00%,83,84,152,55.30% +119257,888,2224,State-funded primary,412,196,216,47.60%,52.40%,6,1.50%,42,10.20%,354,58,0,85.90%,14.10%,0.00%,132,136,412,33.00% +119258,888,2226,State-funded primary,176,79,97,44.90%,55.10%,2,1.10%,36,20.50%,5,171,0,2.80%,97.20%,0.00%,59,59,176,33.50% +119260,888,2228,State-funded primary,462,217,245,47.00%,53.00%,28,6.10%,72,15.60%,375,87,0,81.20%,18.80%,0.00%,136,138,462,29.90% +119261,888,2230,State-funded primary,621,323,298,52.00%,48.00%,10,1.60%,37,6.00%,517,101,3,83.30%,16.30%,0.50%,187,192,621,30.90% +119262,888,2235,State-funded primary,228,112,116,49.10%,50.90%,5,2.20%,37,16.20%,7,221,0,3.10%,96.90%,0.00%,87,86,211,40.80% +119264,888,2237,State-funded primary,337,161,176,47.80%,52.20%,3,0.90%,39,11.60%,42,295,0,12.50%,87.50%,0.00%,177,179,337,53.10% +119265,888,2238,State-funded primary,218,107,111,49.10%,50.90%,5,2.30%,33,15.10%,18,200,0,8.30%,91.70%,0.00%,43,46,198,23.20% +119267,888,2240,State-funded primary,95,40,55,42.10%,57.90%,1,1.10%,7,7.40%,4,91,0,4.20%,95.80%,0.00%,13,14,95,14.70% +119270,888,2266,State-funded primary,144,67,77,46.50%,53.50%,1,0.70%,1,0.70%,1,143,0,0.70%,99.30%,0.00%,3,3,144,2.10% +119271,888,2272,State-funded primary,321,163,158,50.80%,49.20%,11,3.40%,20,6.20%,5,316,0,1.60%,98.40%,0.00%,50,53,300,17.70% +119272,888,2368,State-funded primary,375,225,150,60.00%,40.00%,8,2.10%,55,14.70%,17,358,0,4.50%,95.50%,0.00%,135,135,355,38.00% +119273,888,2370,State-funded primary,622,304,318,48.90%,51.10%,7,1.10%,85,13.70%,87,535,0,14.00%,86.00%,0.00%,62,62,622,10.00% +119275,888,2391,State-funded primary,220,106,114,48.20%,51.80%,5,2.30%,18,8.20%,10,210,0,4.50%,95.50%,0.00%,20,21,220,9.50% +119276,888,2396,State-funded primary,205,95,110,46.30%,53.70%,1,0.50%,19,9.30%,3,202,0,1.50%,98.50%,0.00%,40,40,205,19.50% +119277,888,2404,State-funded primary,320,151,169,47.20%,52.80%,2,0.60%,50,15.60%,6,313,1,1.90%,97.80%,0.30%,168,166,295,56.30% +119278,888,2405,State-funded primary,116,50,66,43.10%,56.90%,3,2.60%,24,20.70%,9,107,0,7.80%,92.20%,0.00%,73,78,116,67.20% +119279,888,2406,State-funded primary,146,79,67,54.10%,45.90%,8,5.50%,11,7.50%,6,140,0,4.10%,95.90%,0.00%,10,15,146,10.30% +119280,888,2409,State-funded primary,165,83,82,50.30%,49.70%,3,1.80%,20,12.10%,0,165,0,0.00%,100.00%,0.00%,77,82,165,49.70% +119282,888,2415,State-funded primary,91,48,43,52.70%,47.30%,3,3.30%,20,22.00%,2,89,0,2.20%,97.80%,0.00%,32,32,91,35.20% +119283,888,2425,State-funded primary,405,206,199,50.90%,49.10%,10,2.50%,57,14.10%,2,403,0,0.50%,99.50%,0.00%,59,59,405,14.60% +119284,888,2426,State-funded primary,246,106,140,43.10%,56.90%,6,2.40%,34,13.80%,28,218,0,11.40%,88.60%,0.00%,96,99,246,40.20% +119285,888,2427,State-funded primary,207,99,108,47.80%,52.20%,10,4.80%,27,13.00%,11,195,1,5.30%,94.20%,0.50%,102,102,192,53.10% +119286,888,2437,State-funded primary,438,219,219,50.00%,50.00%,5,1.10%,48,11.00%,13,425,0,3.00%,97.00%,0.00%,57,61,413,14.80% +119287,888,2443,State-funded primary,326,138,188,42.30%,57.70%,4,1.20%,11,3.40%,3,323,0,0.90%,99.10%,0.00%,28,30,326,9.20% +119288,888,2446,State-funded primary,179,88,91,49.20%,50.80%,3,1.70%,19,10.60%,5,174,0,2.80%,97.20%,0.00%,33,37,179,20.70% +119290,888,2492,State-funded primary,202,94,108,46.50%,53.50%,5,2.50%,23,11.40%,1,201,0,0.50%,99.50%,0.00%,49,51,202,25.20% +119291,888,2497,State-funded primary,227,118,109,52.00%,48.00%,2,0.90%,33,14.50%,11,215,1,4.80%,94.70%,0.40%,39,43,227,18.90% +119292,888,2509,State-funded primary,423,231,192,54.60%,45.40%,6,1.40%,21,5.00%,70,353,0,16.50%,83.50%,0.00%,33,38,423,9.00% +119293,888,2514,State-funded primary,383,197,186,51.40%,48.60%,4,1.00%,33,8.60%,16,367,0,4.20%,95.80%,0.00%,39,41,383,10.70% +119294,889,2515,State-funded primary,399,204,195,51.10%,48.90%,6,1.50%,49,12.30%,17,382,0,4.30%,95.70%,0.00%,113,117,399,29.30% +119296,888,2517,State-funded primary,397,174,223,43.80%,56.20%,8,2.00%,20,5.00%,3,394,0,0.80%,99.20%,0.00%,55,58,397,14.60% +119297,888,2525,State-funded primary,137,65,72,47.40%,52.60%,2,1.50%,5,3.60%,38,99,0,27.70%,72.30%,0.00%,75,71,120,59.20% +119298,888,2526,State-funded primary,199,96,103,48.20%,51.80%,5,2.50%,61,30.70%,37,162,0,18.60%,81.40%,0.00%,118,120,171,70.20% +119299,888,2527,State-funded primary,300,153,147,51.00%,49.00%,7,2.30%,32,10.70%,12,288,0,4.00%,96.00%,0.00%,98,99,300,33.00% +119300,888,2530,State-funded primary,208,111,97,53.40%,46.60%,4,1.90%,16,7.70%,4,204,0,1.90%,98.10%,0.00%,26,26,208,12.50% +119301,888,2541,State-funded primary,288,144,144,50.00%,50.00%,2,0.70%,16,5.60%,3,285,0,1.00%,99.00%,0.00%,27,28,254,11.00% +119304,888,2552,State-funded primary,258,129,129,50.00%,50.00%,8,3.10%,38,14.70%,33,225,0,12.80%,87.20%,0.00%,117,117,214,54.70% +119305,888,2554,State-funded primary,310,142,168,45.80%,54.20%,6,1.90%,23,7.40%,10,300,0,3.20%,96.80%,0.00%,28,28,310,9.00% +119306,888,2564,State-funded primary,89,41,48,46.10%,53.90%,1,1.10%,15,16.90%,4,85,0,4.50%,95.50%,0.00%,10,11,89,12.40% +119307,888,2565,State-funded primary,51,29,22,56.90%,43.10%,2,3.90%,10,19.60%,0,51,0,0.00%,100.00%,0.00%,13,14,51,27.50% +119309,888,2572,State-funded primary,421,192,229,45.60%,54.40%,6,1.40%,33,7.80%,7,414,0,1.70%,98.30%,0.00%,33,33,421,7.80% +119310,888,2574,State-funded primary,203,103,100,50.70%,49.30%,3,1.50%,19,9.40%,0,203,0,0.00%,100.00%,0.00%,17,19,203,9.40% +119311,888,2576,State-funded primary,413,215,198,52.10%,47.90%,9,2.20%,65,15.70%,7,406,0,1.70%,98.30%,0.00%,42,47,413,11.40% +119312,888,2577,State-funded primary,366,172,194,47.00%,53.00%,8,2.20%,31,8.50%,12,350,4,3.30%,95.60%,1.10%,36,37,366,10.10% +119313,888,2595,State-funded primary,305,155,150,50.80%,49.20%,3,1.00%,22,7.20%,1,304,0,0.30%,99.70%,0.00%,34,34,305,11.10% +119314,888,2597,State-funded primary,144,73,71,50.70%,49.30%,3,2.10%,25,17.40%,7,137,0,4.90%,95.10%,0.00%,20,21,144,14.60% +119315,888,2615,State-funded primary,393,192,201,48.90%,51.10%,7,1.80%,45,11.50%,11,382,0,2.80%,97.20%,0.00%,25,28,393,7.10% +119316,888,2622,State-funded primary,326,146,180,44.80%,55.20%,6,1.80%,18,5.50%,8,318,0,2.50%,97.50%,0.00%,33,36,302,11.90% +119318,888,2636,State-funded primary,250,128,122,51.20%,48.80%,6,2.40%,16,6.40%,3,247,0,1.20%,98.80%,0.00%,15,15,250,6.00% +119319,888,2637,State-funded primary,149,63,86,42.30%,57.70%,6,4.00%,16,10.70%,0,149,0,0.00%,100.00%,0.00%,11,11,142,7.70% +119320,888,2646,State-funded primary,390,197,193,50.50%,49.50%,6,1.50%,44,11.30%,309,81,0,79.20%,20.80%,0.00%,107,108,390,27.70% +119321,888,2651,State-funded primary,159,72,87,45.30%,54.70%,3,1.90%,18,11.30%,8,151,0,5.00%,95.00%,0.00%,41,41,159,25.80% +119322,888,2653,State-funded primary,73,33,40,45.20%,54.80%,2,2.70%,8,11.00%,6,67,0,8.20%,91.80%,0.00%,7,8,73,11.00% +119323,888,2656,State-funded primary,467,229,238,49.00%,51.00%,9,1.90%,45,9.60%,38,429,0,8.10%,91.90%,0.00%,151,131,407,32.20% +119324,888,2679,State-funded primary,210,96,114,45.70%,54.30%,7,3.30%,13,6.20%,11,199,0,5.20%,94.80%,0.00%,51,51,210,24.30% +119325,888,2684,State-funded primary,207,104,103,50.20%,49.80%,11,5.30%,30,14.50%,17,190,0,8.20%,91.80%,0.00%,41,41,207,19.80% +119326,888,2687,State-funded primary,210,112,98,53.30%,46.70%,7,3.30%,26,12.40%,1,209,0,0.50%,99.50%,0.00%,23,24,210,11.40% +119328,888,2695,State-funded primary,215,106,109,49.30%,50.70%,1,0.50%,35,16.30%,8,207,0,3.70%,96.30%,0.00%,26,23,186,12.40% +119329,888,2696,State-funded primary,323,162,161,50.20%,49.80%,2,0.60%,56,17.30%,11,312,0,3.40%,96.60%,0.00%,73,73,268,27.20% +119330,888,2698,State-funded primary,132,69,63,52.30%,47.70%,3,2.30%,14,10.60%,3,129,0,2.30%,97.70%,0.00%,26,27,132,20.50% +119331,888,2702,State-funded primary,176,85,91,48.30%,51.70%,9,5.10%,32,18.20%,29,147,0,16.50%,83.50%,0.00%,81,83,169,49.10% +119332,888,2703,State-funded primary,172,90,82,52.30%,47.70%,2,1.20%,37,21.50%,20,152,0,11.60%,88.40%,0.00%,67,68,172,39.50% +119333,888,2704,State-funded primary,157,73,84,46.50%,53.50%,4,2.50%,46,29.30%,52,105,0,33.10%,66.90%,0.00%,75,76,116,65.50% +119334,888,2705,State-funded primary,120,55,65,45.80%,54.20%,5,4.20%,12,10.00%,10,110,0,8.30%,91.70%,0.00%,39,38,110,34.50% +119335,888,2812,State-funded primary,193,92,101,47.70%,52.30%,6,3.10%,30,15.50%,10,183,0,5.20%,94.80%,0.00%,51,51,193,26.40% +119336,888,2814,State-funded primary,259,124,135,47.90%,52.10%,6,2.30%,25,9.70%,12,247,0,4.60%,95.40%,0.00%,64,64,259,24.70% +119337,888,2815,State-funded primary,198,104,94,52.50%,47.50%,3,1.50%,27,13.60%,14,184,0,7.10%,92.90%,0.00%,41,44,198,22.20% +119338,888,2817,State-funded primary,185,97,88,52.40%,47.60%,3,1.60%,22,11.90%,5,180,0,2.70%,97.30%,0.00%,36,36,185,19.50% +119339,888,2818,State-funded primary,425,213,212,50.10%,49.90%,6,1.40%,36,8.50%,196,229,0,46.10%,53.90%,0.00%,34,35,425,8.20% +119341,888,2820,State-funded primary,201,109,92,54.20%,45.80%,2,1.00%,15,7.50%,108,93,0,53.70%,46.30%,0.00%,82,90,201,44.80% +119342,888,2821,State-funded primary,417,203,214,48.70%,51.30%,9,2.20%,74,17.70%,14,403,0,3.40%,96.60%,0.00%,127,129,417,30.90% +119343,888,2822,State-funded primary,268,120,148,44.80%,55.20%,10,3.70%,72,26.90%,28,240,0,10.40%,89.60%,0.00%,174,165,252,65.50% +119344,889,2823,State-funded primary,268,138,130,51.50%,48.50%,10,3.70%,44,16.40%,268,0,0,100.00%,0.00%,0.00%,29,30,213,14.10% +119346,888,2826,State-funded primary,185,89,96,48.10%,51.90%,6,3.20%,21,11.40%,2,183,0,1.10%,98.90%,0.00%,99,102,185,55.10% +119347,888,2827,State-funded primary,573,275,298,48.00%,52.00%,8,1.40%,95,16.60%,62,511,0,10.80%,89.20%,0.00%,198,200,573,34.90% +119350,888,2830,State-funded primary,203,105,98,51.70%,48.30%,1,0.50%,24,11.80%,1,202,0,0.50%,99.50%,0.00%,13,14,203,6.90% +119351,888,2831,State-funded primary,313,168,145,53.70%,46.30%,10,3.20%,15,4.80%,17,296,0,5.40%,94.60%,0.00%,69,70,313,22.40% +119352,888,2835,State-funded primary,333,158,175,47.40%,52.60%,20,6.00%,40,12.00%,33,300,0,9.90%,90.10%,0.00%,146,149,333,44.70% +119354,888,3001,State-funded primary,276,140,136,50.70%,49.30%,6,2.20%,34,12.30%,127,149,0,46.00%,54.00%,0.00%,122,124,276,44.90% +119355,889,3002,State-funded primary,458,229,229,50.00%,50.00%,14,3.10%,73,15.90%,299,159,0,65.30%,34.70%,0.00%,89,93,412,22.60% +119356,889,3003,State-funded primary,300,156,144,52.00%,48.00%,14,4.70%,40,13.30%,220,80,0,73.30%,26.70%,0.00%,75,76,296,25.70% +119357,889,3005,State-funded primary,131,61,70,46.60%,53.40%,5,3.80%,29,22.10%,19,112,0,14.50%,85.50%,0.00%,76,81,131,61.80% +119358,888,3009,State-funded primary,319,168,151,52.70%,47.30%,5,1.60%,46,14.40%,98,221,0,30.70%,69.30%,0.00%,93,93,287,32.40% +119360,888,3011,State-funded primary,378,180,198,47.60%,52.40%,6,1.60%,37,9.80%,18,360,0,4.80%,95.20%,0.00%,63,67,378,17.70% +119361,888,3016,State-funded primary,164,75,89,45.70%,54.30%,1,0.60%,21,12.80%,0,164,0,0.00%,100.00%,0.00%,12,12,164,7.30% +119362,888,3017,State-funded primary,56,26,30,46.40%,53.60%,3,5.40%,7,12.50%,1,55,0,1.80%,98.20%,0.00%,1,1,56,1.80% +119363,888,3018,State-funded primary,213,102,111,47.90%,52.10%,1,0.50%,20,9.40%,6,207,0,2.80%,97.20%,0.00%,24,25,213,11.70% +119364,888,3019,State-funded primary,103,53,50,51.50%,48.50%,3,2.90%,9,8.70%,1,102,0,1.00%,99.00%,0.00%,12,12,103,11.70% +119366,888,3021,State-funded primary,197,101,96,51.30%,48.70%,3,1.50%,28,14.20%,1,196,0,0.50%,99.50%,0.00%,88,88,197,44.70% +119367,888,3022,State-funded primary,282,124,158,44.00%,56.00%,4,1.40%,67,23.80%,4,278,0,1.40%,98.60%,0.00%,39,41,282,14.50% +119368,888,3023,State-funded primary,195,89,106,45.60%,54.40%,7,3.60%,12,6.20%,29,166,0,14.90%,85.10%,0.00%,52,55,195,28.20% +119369,888,3025,State-funded primary,152,79,73,52.00%,48.00%,6,3.90%,16,10.50%,5,147,0,3.30%,96.70%,0.00%,36,37,152,24.30% +119370,888,3026,State-funded primary,196,90,106,45.90%,54.10%,3,1.50%,23,11.70%,1,195,0,0.50%,99.50%,0.00%,6,6,196,3.10% +119371,888,3029,State-funded primary,54,28,26,51.90%,48.10%,4,7.40%,8,14.80%,1,53,0,1.90%,98.10%,0.00%,6,5,41,12.20% +119372,888,3031,State-funded primary,401,211,190,52.60%,47.40%,9,2.20%,25,6.20%,44,357,0,11.00%,89.00%,0.00%,60,64,401,16.00% +119374,888,3058,State-funded primary,146,60,86,41.10%,58.90%,5,3.40%,19,13.00%,2,144,0,1.40%,98.60%,0.00%,71,73,146,50.00% +119375,888,3075,State-funded primary,226,125,101,55.30%,44.70%,0,0.00%,19,8.40%,7,219,0,3.10%,96.90%,0.00%,43,44,226,19.50% +119376,888,3078,State-funded primary,159,86,73,54.10%,45.90%,5,3.10%,7,4.40%,5,154,0,3.10%,96.90%,0.00%,19,19,159,11.90% +119377,888,3080,State-funded primary,98,51,47,52.00%,48.00%,2,2.00%,13,13.30%,0,98,0,0.00%,100.00%,0.00%,7,9,89,10.10% +119378,888,3082,State-funded primary,94,49,45,52.10%,47.90%,0,0.00%,18,19.10%,4,90,0,4.30%,95.70%,0.00%,6,6,94,6.40% +119379,888,3084,State-funded primary,36,15,21,41.70%,58.30%,2,5.60%,0,0.00%,0,36,0,0.00%,100.00%,0.00%,0,0,35,0.00% +119380,888,3085,State-funded primary,135,64,71,47.40%,52.60%,5,3.70%,28,20.70%,7,128,0,5.20%,94.80%,0.00%,57,58,135,43.00% +119381,888,3087,State-funded primary,100,58,42,58.00%,42.00%,9,9.00%,7,7.00%,1,99,0,1.00%,99.00%,0.00%,31,31,100,31.00% +119382,888,3089,State-funded primary,199,96,103,48.20%,51.80%,5,2.50%,25,12.60%,3,196,0,1.50%,98.50%,0.00%,36,36,199,18.10% +119383,888,3094,State-funded primary,50,39,11,78.00%,22.00%,1,2.00%,5,10.00%,4,46,0,8.00%,92.00%,0.00%,19,19,50,38.00% +119384,888,3098,State-funded primary,169,87,82,51.50%,48.50%,0,0.00%,20,11.80%,17,152,0,10.10%,89.90%,0.00%,42,40,147,27.20% +119385,888,3099,State-funded primary,190,105,85,55.30%,44.70%,3,1.60%,20,10.50%,1,189,0,0.50%,99.50%,0.00%,12,12,190,6.30% +119386,888,3105,State-funded primary,141,71,70,50.40%,49.60%,4,2.80%,28,19.90%,85,56,0,60.30%,39.70%,0.00%,70,70,141,49.60% +119387,888,3107,State-funded primary,137,67,70,48.90%,51.10%,6,4.40%,14,10.20%,35,102,0,25.50%,74.50%,0.00%,14,14,137,10.20% +119388,888,3108,State-funded primary,198,101,97,51.00%,49.00%,4,2.00%,12,6.10%,1,197,0,0.50%,99.50%,0.00%,9,12,198,6.10% +119389,888,3111,State-funded primary,189,102,87,54.00%,46.00%,5,2.60%,21,11.10%,3,186,0,1.60%,98.40%,0.00%,26,30,189,15.90% +119390,888,3113,State-funded primary,123,61,62,49.60%,50.40%,5,4.10%,23,18.70%,8,115,0,6.50%,93.50%,0.00%,48,49,123,39.80% +119391,888,3125,State-funded primary,210,101,109,48.10%,51.90%,6,2.90%,20,9.50%,2,208,0,1.00%,99.00%,0.00%,24,24,210,11.40% +119392,888,3126,State-funded primary,176,89,87,50.60%,49.40%,4,2.30%,30,17.00%,0,172,4,0.00%,97.70%,2.30%,39,40,176,22.70% +119393,888,3127,State-funded primary,115,59,56,51.30%,48.70%,9,7.80%,21,18.30%,1,114,0,0.90%,99.10%,0.00%,21,23,110,20.90% +119395,888,3129,State-funded primary,81,44,37,54.30%,45.70%,3,3.70%,5,6.20%,0,81,0,0.00%,100.00%,0.00%,9,9,81,11.10% +119396,888,3130,State-funded primary,168,81,87,48.20%,51.80%,2,1.20%,34,20.20%,8,160,0,4.80%,95.20%,0.00%,85,86,168,51.20% +119397,888,3131,State-funded primary,169,68,101,40.20%,59.80%,4,2.40%,10,5.90%,2,167,0,1.20%,98.80%,0.00%,4,4,169,2.40% +119398,888,3134,State-funded primary,196,93,103,47.40%,52.60%,3,1.50%,30,15.30%,0,196,0,0.00%,100.00%,0.00%,29,31,196,15.80% +119400,888,3141,State-funded primary,262,124,138,47.30%,52.70%,3,1.10%,37,14.10%,11,251,0,4.20%,95.80%,0.00%,48,51,262,19.50% +119401,888,3143,State-funded primary,192,102,90,53.10%,46.90%,2,1.00%,27,14.10%,6,186,0,3.10%,96.90%,0.00%,25,25,192,13.00% +119402,888,3146,State-funded primary,43,20,23,46.50%,53.50%,1,2.30%,3,7.00%,0,43,0,0.00%,100.00%,0.00%,9,10,43,23.30% +119403,888,3147,State-funded primary,49,24,25,49.00%,51.00%,1,2.00%,10,20.40%,0,49,0,0.00%,100.00%,0.00%,1,1,46,2.20% +119404,888,3168,State-funded primary,100,46,54,46.00%,54.00%,0,0.00%,6,6.00%,2,98,0,2.00%,98.00%,0.00%,18,18,100,18.00% +119405,888,3169,State-funded primary,83,41,42,49.40%,50.60%,0,0.00%,13,15.70%,5,78,0,6.00%,94.00%,0.00%,21,20,65,30.80% +119406,888,3179,State-funded primary,253,125,128,49.40%,50.60%,6,2.40%,26,10.30%,21,232,0,8.30%,91.70%,0.00%,88,80,208,38.50% +119407,888,3181,State-funded primary,116,64,52,55.20%,44.80%,3,2.60%,24,20.70%,1,115,0,0.90%,99.10%,0.00%,20,20,116,17.20% +119408,889,3183,State-funded primary,191,90,101,47.10%,52.90%,3,1.60%,30,15.70%,1,190,0,0.50%,99.50%,0.00%,17,17,191,8.90% +119409,888,3185,State-funded primary,91,50,41,54.90%,45.10%,2,2.20%,17,18.70%,0,91,0,0.00%,100.00%,0.00%,1,2,79,2.50% +119410,888,3191,State-funded primary,48,27,21,56.30%,43.80%,1,2.10%,8,16.70%,1,47,0,2.10%,97.90%,0.00%,18,18,43,41.90% +119411,890,3192,State-funded primary,364,172,192,47.30%,52.70%,11,3.00%,47,12.90%,15,348,1,4.10%,95.60%,0.30%,129,124,336,36.90% +119413,888,3195,State-funded primary,305,139,166,45.60%,54.40%,7,2.30%,21,6.90%,14,291,0,4.60%,95.40%,0.00%,113,113,305,37.00% +119414,888,3196,State-funded primary,257,125,132,48.60%,51.40%,6,2.30%,26,10.10%,7,250,0,2.70%,97.30%,0.00%,88,89,239,37.20% +119415,888,3300,State-funded primary,98,60,38,61.20%,38.80%,1,1.00%,9,9.20%,61,37,0,62.20%,37.80%,0.00%,6,8,93,8.60% +119416,888,3301,State-funded primary,250,125,125,50.00%,50.00%,4,1.60%,30,12.00%,24,226,0,9.60%,90.40%,0.00%,31,32,217,14.70% +119417,888,3302,State-funded primary,301,152,149,50.50%,49.50%,2,0.70%,17,5.60%,8,293,0,2.70%,97.30%,0.00%,14,16,301,5.30% +119418,888,3303,State-funded primary,131,66,65,50.40%,49.60%,0,0.00%,11,8.40%,6,125,0,4.60%,95.40%,0.00%,14,14,131,10.70% +119419,888,3304,State-funded primary,291,141,150,48.50%,51.50%,5,1.70%,31,10.70%,19,272,0,6.50%,93.50%,0.00%,68,69,291,23.70% +119420,888,3307,State-funded primary,201,96,105,47.80%,52.20%,5,2.50%,39,19.40%,6,195,0,3.00%,97.00%,0.00%,60,59,192,30.70% +119421,888,3308,State-funded primary,148,79,69,53.40%,46.60%,6,4.10%,14,9.50%,55,93,0,37.20%,62.80%,0.00%,53,53,148,35.80% +119423,889,3311,State-funded primary,192,86,106,44.80%,55.20%,9,4.70%,24,12.50%,9,183,0,4.70%,95.30%,0.00%,36,39,192,20.30% +119424,888,3312,State-funded primary,141,72,69,51.10%,48.90%,1,0.70%,10,7.10%,4,137,0,2.80%,97.20%,0.00%,15,16,141,11.30% +119425,888,3313,State-funded primary,337,155,182,46.00%,54.00%,17,5.00%,56,16.60%,4,333,0,1.20%,98.80%,0.00%,125,127,306,41.50% +119427,888,3316,State-funded primary,177,88,89,49.70%,50.30%,4,2.30%,18,10.20%,4,173,0,2.30%,97.70%,0.00%,41,41,177,23.20% +119428,888,3319,State-funded primary,131,60,71,45.80%,54.20%,3,2.30%,16,12.20%,0,131,0,0.00%,100.00%,0.00%,7,9,131,6.90% +119429,888,3321,State-funded primary,313,159,154,50.80%,49.20%,8,2.60%,34,10.90%,8,305,0,2.60%,97.40%,0.00%,26,26,313,8.30% +119431,888,3323,State-funded primary,118,56,62,47.50%,52.50%,2,1.70%,10,8.50%,6,112,0,5.10%,94.90%,0.00%,10,12,118,10.20% +119432,888,3324,State-funded primary,196,103,93,52.60%,47.40%,4,2.00%,18,9.20%,2,194,0,1.00%,99.00%,0.00%,18,18,196,9.20% +119433,888,3325,State-funded primary,185,94,91,50.80%,49.20%,7,3.80%,30,16.20%,0,185,0,0.00%,100.00%,0.00%,24,24,185,13.00% +119434,888,3326,State-funded primary,198,96,102,48.50%,51.50%,3,1.50%,27,13.60%,3,195,0,1.50%,98.50%,0.00%,40,40,198,20.20% +119437,888,3330,State-funded primary,138,64,74,46.40%,53.60%,1,0.70%,19,13.80%,108,30,0,78.30%,21.70%,0.00%,47,48,138,34.80% +119438,888,3331,State-funded primary,415,202,213,48.70%,51.30%,8,1.90%,54,13.00%,115,300,0,27.70%,72.30%,0.00%,102,104,415,25.10% +119439,889,3333,State-funded primary,390,195,195,50.00%,50.00%,10,2.60%,49,12.60%,241,149,0,61.80%,38.20%,0.00%,98,107,390,27.40% +119440,888,3334,State-funded primary,206,118,88,57.30%,42.70%,0,0.00%,24,11.70%,0,206,0,0.00%,100.00%,0.00%,19,19,206,9.20% +119441,888,3336,State-funded primary,159,75,84,47.20%,52.80%,6,3.80%,17,10.70%,13,146,0,8.20%,91.80%,0.00%,38,39,159,24.50% +119442,888,3337,State-funded primary,71,28,43,39.40%,60.60%,4,5.60%,14,19.70%,4,67,0,5.60%,94.40%,0.00%,25,27,71,38.00% +119444,888,3339,State-funded primary,130,69,61,53.10%,46.90%,4,3.10%,9,6.90%,7,123,0,5.40%,94.60%,0.00%,5,5,130,3.80% +119445,888,3340,State-funded primary,202,93,109,46.00%,54.00%,5,2.50%,34,16.80%,18,184,0,8.90%,91.10%,0.00%,88,89,202,44.10% +119446,888,3342,State-funded primary,197,101,96,51.30%,48.70%,7,3.60%,43,21.80%,53,144,0,26.90%,73.10%,0.00%,99,99,197,50.30% +119447,888,3347,State-funded primary,191,90,101,47.10%,52.90%,2,1.00%,36,18.80%,14,177,0,7.30%,92.70%,0.00%,71,73,191,38.20% +119450,888,3353,State-funded primary,183,97,86,53.00%,47.00%,6,3.30%,17,9.30%,30,153,0,16.40%,83.60%,0.00%,42,43,183,23.50% +119451,888,3355,State-funded primary,160,82,78,51.30%,48.80%,5,3.10%,24,15.00%,29,131,0,18.10%,81.90%,0.00%,105,108,160,67.50% +119452,888,3357,State-funded primary,212,89,123,42.00%,58.00%,2,0.90%,29,13.70%,114,98,0,53.80%,46.20%,0.00%,56,63,191,33.00% +119453,888,3359,State-funded primary,114,51,63,44.70%,55.30%,2,1.80%,20,17.50%,8,106,0,7.00%,93.00%,0.00%,22,24,114,21.10% +119454,888,3366,State-funded primary,187,85,102,45.50%,54.50%,5,2.70%,25,13.40%,6,181,0,3.20%,96.80%,0.00%,64,68,169,40.20% +119455,889,3373,State-funded primary,236,106,130,44.90%,55.10%,7,3.00%,23,9.70%,2,234,0,0.80%,99.20%,0.00%,2,3,209,1.40% +119458,889,3378,State-funded primary,259,124,135,47.90%,52.10%,7,2.70%,36,13.90%,7,252,0,2.70%,97.30%,0.00%,88,92,259,35.50% +119459,889,3380,State-funded primary,62,34,28,54.80%,45.20%,4,6.50%,14,22.60%,0,62,0,0.00%,100.00%,0.00%,9,11,62,17.70% +119461,888,3386,State-funded primary,107,51,56,47.70%,52.30%,0,0.00%,11,10.30%,0,107,0,0.00%,100.00%,0.00%,8,10,107,9.30% +119462,888,3387,State-funded primary,69,33,36,47.80%,52.20%,1,1.40%,5,7.20%,0,69,0,0.00%,100.00%,0.00%,0,0,69,0.00% +119463,888,3388,State-funded primary,197,94,103,47.70%,52.30%,1,0.50%,23,11.70%,0,197,0,0.00%,100.00%,0.00%,13,13,197,6.60% +119464,888,3389,State-funded primary,203,101,102,49.80%,50.20%,4,2.00%,45,22.20%,13,190,0,6.40%,93.60%,0.00%,101,103,187,55.10% +119465,888,3390,State-funded primary,209,102,107,48.80%,51.20%,1,0.50%,18,8.60%,4,205,0,1.90%,98.10%,0.00%,21,21,209,10.00% +119466,888,3393,State-funded primary,302,150,152,49.70%,50.30%,2,0.70%,32,10.60%,1,301,0,0.30%,99.70%,0.00%,21,21,302,7.00% +119467,888,3397,State-funded primary,229,121,108,52.80%,47.20%,3,1.30%,41,17.90%,24,205,0,10.50%,89.50%,0.00%,45,42,205,20.50% +119468,888,3401,State-funded primary,222,108,114,48.60%,51.40%,4,1.80%,33,14.90%,4,218,0,1.80%,98.20%,0.00%,15,17,199,8.50% +119469,888,3402,State-funded primary,104,52,52,50.00%,50.00%,3,2.90%,9,8.70%,5,99,0,4.80%,95.20%,0.00%,5,6,104,5.80% +119470,888,3403,State-funded primary,202,90,112,44.60%,55.40%,3,1.50%,14,6.90%,1,201,0,0.50%,99.50%,0.00%,15,16,202,7.90% +119472,888,3406,State-funded primary,188,87,101,46.30%,53.70%,2,1.10%,23,12.20%,3,185,0,1.60%,98.40%,0.00%,28,28,188,14.90% +119473,888,3407,State-funded primary,211,109,102,51.70%,48.30%,4,1.90%,20,9.50%,2,209,0,0.90%,99.10%,0.00%,16,16,211,7.60% +119474,888,3408,State-funded primary,33,16,17,48.50%,51.50%,0,0.00%,3,9.10%,0,33,0,0.00%,100.00%,0.00%,0,1,30,3.30% +119475,888,3409,State-funded primary,94,55,39,58.50%,41.50%,1,1.10%,1,1.10%,0,94,0,0.00%,100.00%,0.00%,5,5,94,5.30% +119476,888,3411,State-funded primary,207,85,122,41.10%,58.90%,5,2.40%,16,7.70%,4,203,0,1.90%,98.10%,0.00%,45,47,207,22.70% +119477,888,3412,State-funded primary,89,45,44,50.60%,49.40%,1,1.10%,12,13.50%,0,89,0,0.00%,100.00%,0.00%,3,3,89,3.40% +119478,888,3414,State-funded primary,243,128,115,52.70%,47.30%,8,3.30%,41,16.90%,6,237,0,2.50%,97.50%,0.00%,7,7,243,2.90% +119479,888,3419,State-funded primary,43,15,28,34.90%,65.10%,3,7.00%,13,30.20%,0,43,0,0.00%,100.00%,0.00%,7,7,33,21.20% +119480,888,3420,State-funded primary,176,95,81,54.00%,46.00%,0,0.00%,2,1.10%,0,176,0,0.00%,100.00%,0.00%,19,24,176,13.60% +119481,888,3424,State-funded primary,185,100,85,54.10%,45.90%,0,0.00%,8,4.30%,2,183,0,1.10%,98.90%,0.00%,24,24,185,13.00% +119482,888,3426,State-funded primary,120,56,64,46.70%,53.30%,0,0.00%,1,0.80%,0,120,0,0.00%,100.00%,0.00%,3,3,120,2.50% +119483,888,5206,State-funded primary,139,59,80,42.40%,57.60%,0,0.00%,8,5.80%,1,138,0,0.70%,99.30%,0.00%,8,10,139,7.20% +119484,888,3430,State-funded primary,210,116,94,55.20%,44.80%,7,3.30%,15,7.10%,142,68,0,67.60%,32.40%,0.00%,66,68,210,32.40% +119485,888,3431,State-funded primary,208,102,106,49.00%,51.00%,8,3.80%,46,22.10%,13,195,0,6.30%,93.80%,0.00%,113,116,208,55.80% +119486,888,3432,State-funded primary,206,99,107,48.10%,51.90%,7,3.40%,38,18.40%,16,190,0,7.80%,92.20%,0.00%,81,86,206,41.70% +119487,888,3433,State-funded primary,276,138,138,50.00%,50.00%,5,1.80%,38,13.80%,25,251,0,9.10%,90.90%,0.00%,89,92,276,33.30% +119492,888,3440,State-funded primary,203,109,94,53.70%,46.30%,3,1.50%,29,14.30%,9,194,0,4.40%,95.60%,0.00%,35,37,203,18.20% +119493,888,3448,State-funded primary,59,20,39,33.90%,66.10%,1,1.70%,7,11.90%,0,59,0,0.00%,100.00%,0.00%,11,11,59,18.60% +119495,888,3457,State-funded primary,221,114,107,51.60%,48.40%,3,1.40%,26,11.80%,17,204,0,7.70%,92.30%,0.00%,39,42,178,23.60% +119496,888,3459,State-funded primary,17,9,8,52.90%,47.10%,1,5.90%,5,29.40%,2,15,0,11.80%,88.20%,0.00%,3,3,17,17.60% +119497,888,3461,State-funded primary,150,61,89,40.70%,59.30%,1,0.70%,5,3.30%,0,150,0,0.00%,100.00%,0.00%,9,9,150,6.00% +119499,889,3465,State-funded primary,420,211,209,50.20%,49.80%,15,3.60%,67,16.00%,367,52,1,87.40%,12.40%,0.20%,138,146,420,34.80% +119501,889,3467,State-funded primary,211,95,116,45.00%,55.00%,8,3.80%,20,9.50%,116,95,0,55.00%,45.00%,0.00%,31,31,211,14.70% +119502,889,3468,State-funded primary,434,210,224,48.40%,51.60%,6,1.40%,92,21.20%,404,30,0,93.10%,6.90%,0.00%,79,89,377,23.60% +119503,889,3469,State-funded primary,184,95,89,51.60%,48.40%,5,2.70%,21,11.40%,32,152,0,17.40%,82.60%,0.00%,47,51,184,27.70% +119505,889,3471,State-funded primary,273,136,137,49.80%,50.20%,16,5.90%,47,17.20%,268,5,0,98.20%,1.80%,0.00%,80,81,273,29.70% +119509,888,3481,State-funded primary,113,54,59,47.80%,52.20%,5,4.40%,28,24.80%,3,110,0,2.70%,97.30%,0.00%,13,13,106,12.30% +119510,889,3500,State-funded primary,173,89,84,51.40%,48.60%,4,2.30%,23,13.30%,79,94,0,45.70%,54.30%,0.00%,49,50,173,28.90% +119511,889,3504,State-funded primary,229,116,113,50.70%,49.30%,6,2.60%,41,17.90%,145,83,1,63.30%,36.20%,0.40%,67,77,205,37.60% +119512,889,3505,State-funded primary,171,94,77,55.00%,45.00%,4,2.30%,66,38.60%,59,110,2,34.50%,64.30%,1.20%,69,75,171,43.90% +119513,889,3508,State-funded primary,211,110,101,52.10%,47.90%,2,0.90%,23,10.90%,88,118,5,41.70%,55.90%,2.40%,63,71,211,33.60% +119514,889,3510,State-funded primary,436,219,217,50.20%,49.80%,10,2.30%,58,13.30%,39,397,0,8.90%,91.10%,0.00%,104,110,414,26.60% +119516,889,3512,State-funded primary,226,112,114,49.60%,50.40%,8,3.50%,36,15.90%,81,145,0,35.80%,64.20%,0.00%,87,93,209,44.50% +119517,889,3514,State-funded primary,203,104,99,51.20%,48.80%,5,2.50%,14,6.90%,30,173,0,14.80%,85.20%,0.00%,33,33,203,16.30% +119518,888,3515,State-funded primary,28,12,16,42.90%,57.10%,7,25.00%,3,10.70%,1,27,0,3.60%,96.40%,0.00%,8,9,23,39.10% +119519,888,3516,State-funded primary,75,33,42,44.00%,56.00%,0,0.00%,5,6.70%,0,75,0,0.00%,100.00%,0.00%,10,11,75,14.70% +119521,888,3518,State-funded primary,310,163,147,52.60%,47.40%,4,1.30%,14,4.50%,5,305,0,1.60%,98.40%,0.00%,20,23,310,7.40% +119522,888,3519,State-funded primary,116,65,51,56.00%,44.00%,1,0.90%,40,34.50%,0,116,0,0.00%,100.00%,0.00%,28,30,116,25.90% +119523,888,3520,State-funded primary,101,46,55,45.50%,54.50%,3,3.00%,13,12.90%,1,100,0,1.00%,99.00%,0.00%,4,4,87,4.60% +119524,888,3521,State-funded primary,156,73,83,46.80%,53.20%,3,1.90%,7,4.50%,2,154,0,1.30%,98.70%,0.00%,7,7,156,4.50% +119525,888,3522,State-funded primary,75,34,41,45.30%,54.70%,1,1.30%,7,9.30%,1,74,0,1.30%,98.70%,0.00%,8,9,75,12.00% +119526,888,3524,State-funded primary,91,47,44,51.60%,48.40%,1,1.10%,4,4.40%,3,88,0,3.30%,96.70%,0.00%,9,9,91,9.90% +119527,888,3525,State-funded primary,205,107,98,52.20%,47.80%,1,0.50%,23,11.20%,12,193,0,5.90%,94.10%,0.00%,20,20,205,9.80% +119528,888,3526,State-funded primary,253,124,129,49.00%,51.00%,2,0.80%,22,8.70%,4,249,0,1.60%,98.40%,0.00%,23,24,215,11.20% +119529,888,3527,State-funded primary,231,126,105,54.50%,45.50%,3,1.30%,18,7.80%,9,222,0,3.90%,96.10%,0.00%,21,22,231,9.50% +119530,888,3528,State-funded primary,48,17,31,35.40%,64.60%,3,6.30%,1,2.10%,1,47,0,2.10%,97.90%,0.00%,3,3,48,6.30% +119531,888,3529,State-funded primary,63,29,34,46.00%,54.00%,1,1.60%,11,17.50%,1,62,0,1.60%,98.40%,0.00%,12,12,63,19.00% +119532,888,3530,State-funded primary,207,104,103,50.20%,49.80%,6,2.90%,25,12.10%,9,194,4,4.30%,93.70%,1.90%,39,40,207,19.30% +119533,888,3531,State-funded primary,224,114,110,50.90%,49.10%,4,1.80%,20,8.90%,34,190,0,15.20%,84.80%,0.00%,35,33,204,16.20% +119534,888,3533,State-funded primary,197,103,94,52.30%,47.70%,4,2.00%,27,13.70%,5,192,0,2.50%,97.50%,0.00%,83,84,197,42.60% +119535,888,3534,State-funded primary,43,23,20,53.50%,46.50%,1,2.30%,1,2.30%,0,43,0,0.00%,100.00%,0.00%,1,1,40,2.50% +119536,888,3535,State-funded primary,31,14,17,45.20%,54.80%,2,6.50%,3,9.70%,2,29,0,6.50%,93.50%,0.00%,3,3,31,9.70% +119537,888,3536,State-funded primary,248,126,122,50.80%,49.20%,5,2.00%,16,6.50%,6,242,0,2.40%,97.60%,0.00%,22,23,248,9.30% +119538,888,3537,State-funded primary,149,71,78,47.70%,52.30%,7,4.70%,18,12.10%,12,137,0,8.10%,91.90%,0.00%,46,50,149,33.60% +119539,888,3538,State-funded primary,177,82,95,46.30%,53.70%,2,1.10%,10,5.60%,0,177,0,0.00%,100.00%,0.00%,41,41,177,23.20% +119540,888,3539,State-funded primary,35,16,19,45.70%,54.30%,0,0.00%,6,17.10%,0,35,0,0.00%,100.00%,0.00%,1,1,30,3.30% +119541,888,3542,State-funded primary,70,28,42,40.00%,60.00%,0,0.00%,13,18.60%,4,66,0,5.70%,94.30%,0.00%,10,8,61,13.10% +119542,888,3543,State-funded primary,218,121,97,55.50%,44.50%,2,0.90%,20,9.20%,8,210,0,3.70%,96.30%,0.00%,18,19,218,8.70% +119543,888,3546,State-funded primary,9,5,4,55.60%,44.40%,0,0.00%,2,22.20%,3,6,0,33.30%,66.70%,0.00%,1,1,9,11.10% +119544,888,3548,State-funded primary,112,48,64,42.90%,57.10%,0,0.00%,9,8.00%,0,112,0,0.00%,100.00%,0.00%,8,8,112,7.10% +119545,888,3550,State-funded primary,17,8,9,47.10%,52.90%,0,0.00%,3,17.60%,0,17,0,0.00%,100.00%,0.00%,4,4,17,23.50% +119546,888,3551,State-funded primary,30,9,21,30.00%,70.00%,1,3.30%,8,26.70%,0,30,0,0.00%,100.00%,0.00%,2,2,29,6.90% +119548,888,3553,State-funded primary,188,86,102,45.70%,54.30%,3,1.60%,16,8.50%,5,183,0,2.70%,97.30%,0.00%,26,28,188,14.90% +119549,888,3554,State-funded primary,167,76,91,45.50%,54.50%,1,0.60%,19,11.40%,2,165,0,1.20%,98.80%,0.00%,29,31,167,18.60% +119550,888,3557,State-funded primary,199,98,101,49.20%,50.80%,6,3.00%,28,14.10%,9,190,0,4.50%,95.50%,0.00%,48,48,199,24.10% +119551,888,3562,State-funded primary,193,96,97,49.70%,50.30%,4,2.10%,27,14.00%,13,180,0,6.70%,93.30%,0.00%,26,28,193,14.50% +119552,888,3564,State-funded primary,197,100,97,50.80%,49.20%,5,2.50%,22,11.20%,20,177,0,10.20%,89.80%,0.00%,50,52,197,26.40% +119553,888,3565,State-funded primary,172,78,94,45.30%,54.70%,3,1.70%,24,14.00%,23,149,0,13.40%,86.60%,0.00%,42,42,172,24.40% +119555,888,3568,State-funded primary,114,58,56,50.90%,49.10%,2,1.80%,13,11.40%,5,109,0,4.40%,95.60%,0.00%,18,18,96,18.80% +119556,888,3570,State-funded primary,242,117,125,48.30%,51.70%,5,2.10%,17,7.00%,0,242,0,0.00%,100.00%,0.00%,19,20,242,8.30% +119557,888,3571,State-funded primary,204,98,106,48.00%,52.00%,2,1.00%,24,11.80%,9,195,0,4.40%,95.60%,0.00%,18,18,204,8.80% +119558,888,3572,State-funded primary,129,65,64,50.40%,49.60%,3,2.30%,26,20.20%,0,129,0,0.00%,100.00%,0.00%,29,29,129,22.50% +119559,888,3573,State-funded primary,151,79,72,52.30%,47.70%,7,4.60%,5,3.30%,5,146,0,3.30%,96.70%,0.00%,16,17,151,11.30% +119560,888,3574,State-funded primary,103,49,54,47.60%,52.40%,1,1.00%,15,14.60%,0,103,0,0.00%,100.00%,0.00%,2,2,103,1.90% +119561,888,3575,State-funded primary,54,23,31,42.60%,57.40%,3,5.60%,12,22.20%,0,54,0,0.00%,100.00%,0.00%,18,18,54,33.30% +119562,888,3577,State-funded primary,195,90,105,46.20%,53.80%,2,1.00%,14,7.20%,17,178,0,8.70%,91.30%,0.00%,10,11,195,5.60% +119563,888,3578,State-funded primary,298,145,153,48.70%,51.30%,5,1.70%,17,5.70%,15,283,0,5.00%,95.00%,0.00%,12,12,266,4.50% +119564,888,3579,State-funded primary,200,112,88,56.00%,44.00%,2,1.00%,12,6.00%,5,195,0,2.50%,97.50%,0.00%,10,10,200,5.00% +119565,888,3580,State-funded primary,206,97,109,47.10%,52.90%,4,1.90%,16,7.80%,4,202,0,1.90%,98.10%,0.00%,14,14,206,6.80% +119566,888,3581,State-funded primary,214,105,109,49.10%,50.90%,2,0.90%,17,7.90%,13,201,0,6.10%,93.90%,0.00%,30,29,191,15.20% +119567,888,3582,State-funded primary,142,66,76,46.50%,53.50%,2,1.40%,16,11.30%,14,128,0,9.90%,90.10%,0.00%,35,35,142,24.60% +119568,888,3583,State-funded primary,192,101,91,52.60%,47.40%,4,2.10%,28,14.60%,0,192,0,0.00%,100.00%,0.00%,36,37,192,19.30% +119569,888,3585,State-funded primary,213,106,107,49.80%,50.20%,0,0.00%,8,3.80%,1,212,0,0.50%,99.50%,0.00%,14,15,213,7.00% +119570,888,3586,State-funded primary,96,49,47,51.00%,49.00%,2,2.10%,9,9.40%,5,91,0,5.20%,94.80%,0.00%,12,12,95,12.60% +119571,888,3589,State-funded primary,78,43,35,55.10%,44.90%,2,2.60%,2,2.60%,0,78,0,0.00%,100.00%,0.00%,4,4,78,5.10% +119572,888,3590,State-funded primary,67,32,35,47.80%,52.20%,1,1.50%,1,1.50%,1,66,0,1.50%,98.50%,0.00%,8,8,67,11.90% +119573,888,3591,State-funded primary,191,96,95,50.30%,49.70%,5,2.60%,19,9.90%,9,182,0,4.70%,95.30%,0.00%,19,20,191,10.50% +119574,888,3592,State-funded primary,82,37,45,45.10%,54.90%,3,3.70%,14,17.10%,1,81,0,1.20%,98.80%,0.00%,9,10,71,14.10% +119575,888,3596,State-funded primary,263,137,126,52.10%,47.90%,5,1.90%,30,11.40%,4,259,0,1.50%,98.50%,0.00%,27,28,263,10.60% +119576,888,3597,State-funded primary,106,50,56,47.20%,52.80%,3,2.80%,6,5.70%,1,105,0,0.90%,99.10%,0.00%,5,5,106,4.70% +119577,888,3599,State-funded primary,74,31,43,41.90%,58.10%,2,2.70%,3,4.10%,0,74,0,0.00%,100.00%,0.00%,9,9,74,12.20% +119578,888,3600,State-funded primary,182,89,93,48.90%,51.10%,6,3.30%,33,18.10%,15,167,0,8.20%,91.80%,0.00%,48,50,182,27.50% +119583,888,3605,State-funded primary,198,98,100,49.50%,50.50%,5,2.50%,34,17.20%,6,192,0,3.00%,97.00%,0.00%,76,76,198,38.40% +119584,888,3607,State-funded primary,211,102,109,48.30%,51.70%,3,1.40%,33,15.60%,37,174,0,17.50%,82.50%,0.00%,20,20,211,9.50% +119585,888,3608,State-funded primary,222,124,98,55.90%,44.10%,3,1.40%,18,8.10%,20,202,0,9.00%,91.00%,0.00%,33,34,222,15.30% +119586,888,3610,State-funded primary,201,98,103,48.80%,51.20%,1,0.50%,48,23.90%,63,138,0,31.30%,68.70%,0.00%,73,76,166,45.80% +119588,888,3614,State-funded primary,221,120,101,54.30%,45.70%,1,0.50%,22,10.00%,27,194,0,12.20%,87.80%,0.00%,36,36,175,20.60% +119589,888,3615,State-funded primary,161,91,70,56.50%,43.50%,3,1.90%,16,9.90%,11,150,0,6.80%,93.20%,0.00%,16,16,161,9.90% +119590,888,3616,State-funded primary,137,72,65,52.60%,47.40%,5,3.60%,17,12.40%,5,132,0,3.60%,96.40%,0.00%,17,17,137,12.40% +119592,888,3618,State-funded primary,84,49,35,58.30%,41.70%,3,3.60%,25,29.80%,17,67,0,20.20%,79.80%,0.00%,41,39,76,51.30% +119594,890,3620,State-funded primary,413,189,224,45.80%,54.20%,3,0.70%,46,11.10%,9,404,0,2.20%,97.80%,0.00%,63,64,413,15.50% +119595,890,3621,State-funded primary,205,97,108,47.30%,52.70%,8,3.90%,54,26.30%,27,177,1,13.20%,86.30%,0.50%,102,104,205,50.70% +119596,890,3622,State-funded primary,201,110,91,54.70%,45.30%,7,3.50%,22,10.90%,9,192,0,4.50%,95.50%,0.00%,22,22,201,10.90% +119598,890,3624,State-funded primary,444,219,225,49.30%,50.70%,5,1.10%,69,15.50%,57,387,0,12.80%,87.20%,0.00%,94,95,416,22.80% +119600,890,3629,State-funded primary,209,111,98,53.10%,46.90%,5,2.40%,34,16.30%,49,160,0,23.40%,76.60%,0.00%,37,41,209,19.60% +119602,888,3634,State-funded primary,419,209,210,49.90%,50.10%,5,1.20%,29,6.90%,7,412,0,1.70%,98.30%,0.00%,60,64,419,15.30% +119605,888,3639,State-funded primary,227,113,114,49.80%,50.20%,8,3.50%,44,19.40%,89,138,0,39.20%,60.80%,0.00%,61,66,208,31.70% +119606,888,3642,State-funded primary,208,106,102,51.00%,49.00%,0,0.00%,20,9.60%,71,137,0,34.10%,65.90%,0.00%,67,69,208,33.20% +119608,888,3645,State-funded primary,223,111,112,49.80%,50.20%,2,0.90%,45,20.20%,57,166,0,25.60%,74.40%,0.00%,70,70,195,35.90% +119609,888,3646,State-funded primary,210,100,110,47.60%,52.40%,5,2.40%,22,10.50%,60,150,0,28.60%,71.40%,0.00%,38,38,210,18.10% +119610,888,3647,State-funded primary,189,96,93,50.80%,49.20%,3,1.60%,30,15.90%,130,59,0,68.80%,31.20%,0.00%,63,64,189,33.90% +119611,888,3653,State-funded primary,195,101,94,51.80%,48.20%,1,0.50%,14,7.20%,76,111,8,39.00%,56.90%,4.10%,31,33,172,19.20% +119612,888,3666,State-funded primary,185,113,72,61.10%,38.90%,6,3.20%,15,8.10%,1,184,0,0.50%,99.50%,0.00%,34,34,185,18.40% +119613,888,3668,State-funded primary,62,40,22,64.50%,35.50%,0,0.00%,4,6.50%,0,62,0,0.00%,100.00%,0.00%,12,12,62,19.40% +119614,888,3670,State-funded primary,122,60,62,49.20%,50.80%,5,4.10%,21,17.20%,0,122,0,0.00%,100.00%,0.00%,4,6,122,4.90% +119615,889,3675,State-funded primary,215,109,106,50.70%,49.30%,22,10.20%,29,13.50%,15,200,0,7.00%,93.00%,0.00%,68,74,215,34.40% +119616,888,3677,State-funded primary,223,111,112,49.80%,50.20%,1,0.40%,24,10.80%,62,161,0,27.80%,72.20%,0.00%,101,103,182,56.60% +119617,888,3702,State-funded primary,122,66,56,54.10%,45.90%,1,0.80%,11,9.00%,8,114,0,6.60%,93.40%,0.00%,22,23,122,18.90% +119618,888,3703,State-funded primary,77,38,39,49.40%,50.60%,0,0.00%,15,19.50%,7,69,1,9.10%,89.60%,1.30%,23,24,66,36.40% +119619,888,3704,State-funded primary,43,19,24,44.20%,55.80%,0,0.00%,3,7.00%,1,42,0,2.30%,97.70%,0.00%,1,1,43,2.30% +119621,888,3706,State-funded primary,208,109,99,52.40%,47.60%,4,1.90%,12,5.80%,65,143,0,31.30%,68.80%,0.00%,66,68,208,32.70% +119622,888,3707,State-funded primary,172,101,71,58.70%,41.30%,5,2.90%,20,11.60%,17,155,0,9.90%,90.10%,0.00%,66,66,172,38.40% +119623,888,3709,State-funded primary,171,99,72,57.90%,42.10%,1,0.60%,34,19.90%,15,156,0,8.80%,91.20%,0.00%,96,98,171,57.30% +119626,888,3713,State-funded primary,209,99,110,47.40%,52.60%,1,0.50%,23,11.00%,11,198,0,5.30%,94.70%,0.00%,25,25,209,12.00% +119627,888,3715,State-funded primary,210,99,111,47.10%,52.90%,4,1.90%,32,15.20%,26,184,0,12.40%,87.60%,0.00%,19,21,210,10.00% +119628,888,3716,State-funded primary,204,101,103,49.50%,50.50%,4,2.00%,9,4.40%,3,201,0,1.50%,98.50%,0.00%,24,24,204,11.80% +119629,888,3717,State-funded primary,107,58,49,54.20%,45.80%,2,1.90%,7,6.50%,7,100,0,6.50%,93.50%,0.00%,16,16,107,15.00% +119630,888,3718,State-funded primary,38,18,20,47.40%,52.60%,3,7.90%,12,31.60%,0,38,0,0.00%,100.00%,0.00%,14,14,38,36.80% +119631,888,3719,State-funded primary,208,101,107,48.60%,51.40%,0,0.00%,20,9.60%,15,193,0,7.20%,92.80%,0.00%,12,14,208,6.70% +119633,888,3725,State-funded primary,95,44,51,46.30%,53.70%,2,2.10%,3,3.20%,0,95,0,0.00%,100.00%,0.00%,6,6,95,6.30% +119634,888,3726,State-funded primary,106,46,60,43.40%,56.60%,2,1.90%,23,21.70%,3,103,0,2.80%,97.20%,0.00%,16,17,106,16.00% +119635,888,3727,State-funded primary,237,127,110,53.60%,46.40%,4,1.70%,12,5.10%,13,224,0,5.50%,94.50%,0.00%,23,23,197,11.70% +119636,888,3728,State-funded primary,200,89,111,44.50%,55.50%,6,3.00%,38,19.00%,7,193,0,3.50%,96.50%,0.00%,53,54,200,27.00% +119637,888,3729,State-funded primary,245,113,132,46.10%,53.90%,5,2.00%,17,6.90%,5,240,0,2.00%,98.00%,0.00%,14,14,245,5.70% +119638,888,3730,State-funded primary,197,96,101,48.70%,51.30%,4,2.00%,22,11.20%,12,185,0,6.10%,93.90%,0.00%,22,23,197,11.70% +119639,888,3736,State-funded primary,356,180,176,50.60%,49.40%,4,1.10%,37,10.40%,12,344,0,3.40%,96.60%,0.00%,48,49,323,15.20% +119640,888,3738,State-funded primary,181,85,96,47.00%,53.00%,6,3.30%,10,5.50%,13,166,2,7.20%,91.70%,1.10%,30,32,181,17.70% +119641,888,3741,State-funded primary,113,55,58,48.70%,51.30%,2,1.80%,3,2.70%,4,109,0,3.50%,96.50%,0.00%,5,5,100,5.00% +119642,888,3742,State-funded primary,294,149,145,50.70%,49.30%,1,0.30%,15,5.10%,3,291,0,1.00%,99.00%,0.00%,13,15,282,5.30% +119643,888,3743,State-funded primary,38,22,16,57.90%,42.10%,2,5.30%,6,15.80%,1,37,0,2.60%,97.40%,0.00%,4,4,38,10.50% +119644,888,3744,State-funded primary,167,74,93,44.30%,55.70%,2,1.20%,22,13.20%,17,148,2,10.20%,88.60%,1.20%,24,26,167,15.60% +119645,888,3746,State-funded primary,150,65,85,43.30%,56.70%,4,2.70%,13,8.70%,4,146,0,2.70%,97.30%,0.00%,16,16,150,10.70% +119646,888,3747,State-funded primary,156,85,71,54.50%,45.50%,1,0.60%,23,14.70%,9,147,0,5.80%,94.20%,0.00%,41,41,156,26.30% +119647,888,3748,State-funded primary,87,41,46,47.10%,52.90%,1,1.10%,16,18.40%,0,87,0,0.00%,100.00%,0.00%,7,7,81,8.60% +119648,888,3749,State-funded primary,228,110,118,48.20%,51.80%,1,0.40%,28,12.30%,4,224,0,1.80%,98.20%,0.00%,47,44,204,21.60% +119649,889,3751,State-funded primary,215,110,105,51.20%,48.80%,3,1.40%,22,10.20%,1,214,0,0.50%,99.50%,0.00%,14,17,215,7.90% +119650,888,3752,State-funded primary,172,83,89,48.30%,51.70%,2,1.20%,18,10.50%,7,165,0,4.10%,95.90%,0.00%,31,32,172,18.60% +119651,888,3753,State-funded primary,68,37,31,54.40%,45.60%,6,8.80%,11,16.20%,0,68,0,0.00%,100.00%,0.00%,19,19,68,27.90% +119652,888,3754,State-funded primary,114,52,62,45.60%,54.40%,8,7.00%,9,7.90%,20,94,0,17.50%,82.50%,0.00%,14,14,105,13.30% +119654,888,3757,State-funded primary,207,105,102,50.70%,49.30%,6,2.90%,17,8.20%,68,139,0,32.90%,67.10%,0.00%,79,79,207,38.20% +119655,888,3759,State-funded primary,212,103,109,48.60%,51.40%,8,3.80%,25,11.80%,120,92,0,56.60%,43.40%,0.00%,81,83,212,39.20% +119656,888,3762,State-funded primary,169,104,65,61.50%,38.50%,3,1.80%,24,14.20%,49,120,0,29.00%,71.00%,0.00%,63,68,169,40.20% +119657,888,3763,State-funded primary,155,73,82,47.10%,52.90%,3,1.90%,27,17.40%,34,121,0,21.90%,78.10%,0.00%,57,59,137,43.10% +119658,888,3764,State-funded primary,190,98,92,51.60%,48.40%,2,1.10%,24,12.60%,69,121,0,36.30%,63.70%,0.00%,84,85,160,53.10% +119659,888,3765,State-funded primary,115,54,61,47.00%,53.00%,3,2.60%,19,16.50%,6,109,0,5.20%,94.80%,0.00%,41,43,115,37.40% +119660,888,3766,State-funded primary,260,128,132,49.20%,50.80%,4,1.50%,21,8.10%,38,222,0,14.60%,85.40%,0.00%,66,69,260,26.50% +119661,888,3768,State-funded primary,113,60,53,53.10%,46.90%,5,4.40%,27,23.90%,2,111,0,1.80%,98.20%,0.00%,58,57,108,52.80% +119663,888,3771,State-funded primary,142,79,63,55.60%,44.40%,4,2.80%,18,12.70%,3,138,1,2.10%,97.20%,0.70%,30,31,142,21.80% +119664,888,3775,State-funded primary,150,69,81,46.00%,54.00%,4,2.70%,19,12.70%,1,149,0,0.70%,99.30%,0.00%,17,17,150,11.30% +119665,888,3776,State-funded primary,212,109,103,51.40%,48.60%,1,0.50%,12,5.70%,4,208,0,1.90%,98.10%,0.00%,26,27,212,12.70% +119666,889,3778,State-funded primary,195,97,98,49.70%,50.30%,1,0.50%,25,12.80%,17,178,0,8.70%,91.30%,0.00%,26,31,195,15.90% +119667,889,3779,State-funded primary,181,80,101,44.20%,55.80%,9,5.00%,32,17.70%,3,178,0,1.70%,98.30%,0.00%,36,39,181,21.50% +119668,888,3781,State-funded primary,174,83,91,47.70%,52.30%,7,4.00%,6,3.40%,4,170,0,2.30%,97.70%,0.00%,22,22,174,12.60% +119669,888,3782,State-funded primary,87,44,43,50.60%,49.40%,0,0.00%,8,9.20%,0,87,0,0.00%,100.00%,0.00%,7,8,87,9.20% +119670,888,3783,State-funded primary,209,113,96,54.10%,45.90%,3,1.40%,11,5.30%,33,176,0,15.80%,84.20%,0.00%,44,41,189,21.70% +119671,888,3785,State-funded primary,207,102,105,49.30%,50.70%,4,1.90%,20,9.70%,22,184,1,10.60%,88.90%,0.50%,65,66,207,31.90% +119672,888,3786,State-funded primary,238,114,124,47.90%,52.10%,6,2.50%,7,2.90%,10,228,0,4.20%,95.80%,0.00%,9,8,211,3.80% +119673,888,3789,State-funded primary,213,119,94,55.90%,44.10%,7,3.30%,15,7.00%,12,201,0,5.60%,94.40%,0.00%,17,18,213,8.50% +119674,888,3790,State-funded primary,207,100,107,48.30%,51.70%,1,0.50%,18,8.70%,28,179,0,13.50%,86.50%,0.00%,36,36,198,18.20% +119675,888,3791,State-funded primary,104,38,66,36.50%,63.50%,3,2.90%,15,14.40%,12,92,0,11.50%,88.50%,0.00%,17,17,104,16.30% +119676,888,3792,State-funded primary,208,101,107,48.60%,51.40%,2,1.00%,12,5.80%,12,196,0,5.80%,94.20%,0.00%,15,15,208,7.20% +119677,888,3793,State-funded primary,260,143,117,55.00%,45.00%,2,0.80%,37,14.20%,29,231,0,11.20%,88.80%,0.00%,78,77,234,32.90% +119678,888,3794,State-funded primary,51,29,22,56.90%,43.10%,1,2.00%,4,7.80%,1,50,0,2.00%,98.00%,0.00%,3,3,51,5.90% +119679,888,3795,State-funded primary,137,56,81,40.90%,59.10%,2,1.50%,17,12.40%,2,135,0,1.50%,98.50%,0.00%,2,2,137,1.50% +119680,888,3796,State-funded primary,100,45,55,45.00%,55.00%,1,1.00%,10,10.00%,1,99,0,1.00%,99.00%,0.00%,7,7,100,7.00% +119681,888,3800,State-funded primary,100,52,48,52.00%,48.00%,3,3.00%,16,16.00%,2,98,0,2.00%,98.00%,0.00%,5,5,100,5.00% +119682,888,3801,State-funded primary,369,183,186,49.60%,50.40%,1,0.30%,23,6.20%,14,355,0,3.80%,96.20%,0.00%,33,34,369,9.20% +119683,888,3803,State-funded primary,82,47,35,57.30%,42.70%,2,2.40%,6,7.30%,1,81,0,1.20%,98.80%,0.00%,7,7,82,8.50% +119684,888,3804,State-funded primary,231,113,118,48.90%,51.10%,10,4.30%,16,6.90%,30,201,0,13.00%,87.00%,0.00%,46,45,200,22.50% +119685,888,3805,State-funded primary,123,61,62,49.60%,50.40%,4,3.30%,21,17.10%,29,94,0,23.60%,76.40%,0.00%,19,21,123,17.10% +119686,888,3807,State-funded primary,34,14,20,41.20%,58.80%,3,8.80%,3,8.80%,0,34,0,0.00%,100.00%,0.00%,1,4,34,11.80% +119687,888,3808,State-funded primary,203,104,99,51.20%,48.80%,3,1.50%,14,6.90%,0,203,0,0.00%,100.00%,0.00%,5,4,191,2.10% +119688,888,3809,State-funded primary,40,19,21,47.50%,52.50%,1,2.50%,5,12.50%,0,40,0,0.00%,100.00%,0.00%,2,2,34,5.90% +119689,888,3810,State-funded primary,29,15,14,51.70%,48.30%,0,0.00%,6,20.70%,1,28,0,3.40%,96.60%,0.00%,0,0,25,0.00% +119691,890,3812,State-funded primary,209,110,99,52.60%,47.40%,3,1.40%,24,11.50%,24,185,0,11.50%,88.50%,0.00%,34,35,209,16.70% +119693,888,3814,State-funded primary,606,325,281,53.60%,46.40%,15,2.50%,81,13.40%,40,566,0,6.60%,93.40%,0.00%,114,116,606,19.10% +119694,888,3831,State-funded primary,109,46,63,42.20%,57.80%,0,0.00%,9,8.30%,1,108,0,0.90%,99.10%,0.00%,2,2,109,1.80% +119695,888,3833,State-funded primary,227,124,103,54.60%,45.40%,3,1.30%,16,7.00%,8,219,0,3.50%,96.50%,0.00%,6,6,203,3.00% +119696,888,3834,State-funded primary,105,51,54,48.60%,51.40%,3,2.90%,8,7.60%,4,101,0,3.80%,96.20%,0.00%,6,6,96,6.30% +119697,888,3889,State-funded primary,203,101,102,49.80%,50.20%,4,2.00%,32,15.80%,4,199,0,2.00%,98.00%,0.00%,31,31,203,15.30% +119698,888,3949,State-funded primary,316,154,162,48.70%,51.30%,10,3.20%,35,11.10%,37,279,0,11.70%,88.30%,0.00%,55,56,316,17.70% +119699,888,3953,State-funded primary,274,123,151,44.90%,55.10%,9,3.30%,14,5.10%,4,270,0,1.50%,98.50%,0.00%,10,11,274,4.00% +119701,888,3976,State-funded primary,60,34,26,56.70%,43.30%,2,3.30%,11,18.30%,0,60,0,0.00%,100.00%,0.00%,12,12,60,20.00% +119702,888,3979,State-funded primary,206,115,91,55.80%,44.20%,3,1.50%,16,7.80%,3,203,0,1.50%,98.50%,0.00%,17,17,206,8.30% +119703,888,3980,State-funded primary,207,101,106,48.80%,51.20%,14,6.80%,22,10.60%,38,169,0,18.40%,81.60%,0.00%,87,87,207,42.00% +119704,888,3981,State-funded primary,288,128,160,44.40%,55.60%,3,1.00%,31,10.80%,32,256,0,11.10%,88.90%,0.00%,89,91,288,31.60% +119705,888,3997,State-funded primary,211,107,104,50.70%,49.30%,7,3.30%,29,13.70%,5,206,0,2.40%,97.60%,0.00%,18,20,211,9.50% +119706,889,3999,State-funded primary,184,96,88,52.20%,47.80%,7,3.80%,44,23.90%,82,88,14,44.60%,47.80%,7.60%,65,71,168,42.30% +119707,888,4000,State-funded secondary,862,380,482,44.10%,55.90%,39,4.50%,159,18.40%,78,784,0,9.00%,91.00%,0.00%,320,340,862,39.40% +119714,888,4011,State-funded secondary,868,417,451,48.00%,52.00%,19,2.20%,71,8.20%,2,865,1,0.20%,99.70%,0.10%,164,187,868,21.50% +119716,888,4013,State-funded secondary,1408,662,746,47.00%,53.00%,17,1.20%,138,9.80%,27,1381,0,1.90%,98.10%,0.00%,194,215,1408,15.30% +119722,888,4030,State-funded secondary,843,428,415,50.80%,49.20%,16,1.90%,103,12.20%,48,789,6,5.70%,93.60%,0.70%,147,157,735,21.40% +119723,888,4036,State-funded secondary,417,213,204,51.10%,48.90%,10,2.40%,40,9.60%,22,395,0,5.30%,94.70%,0.00%,142,151,417,36.20% +119740,888,4137,State-funded secondary,1577,824,753,52.30%,47.70%,22,1.40%,128,8.10%,51,1525,1,3.20%,96.70%,0.10%,308,345,1577,21.90% +119743,888,4150,State-funded secondary,772,395,377,51.20%,48.80%,32,4.10%,102,13.20%,33,739,0,4.30%,95.70%,0.00%,237,255,772,33.00% +119744,888,4155,State-funded secondary,899,438,461,48.70%,51.30%,21,2.30%,161,17.90%,47,849,3,5.20%,94.40%,0.30%,220,245,899,27.30% +119749,888,4168,State-funded secondary,801,394,407,49.20%,50.80%,7,0.90%,95,11.90%,29,772,0,3.60%,96.40%,0.00%,205,223,801,27.80% +119751,888,4173,State-funded secondary,845,410,435,48.50%,51.50%,11,1.30%,60,7.10%,46,798,1,5.40%,94.40%,0.10%,212,226,845,26.70% +119753,888,4184,State-funded secondary,658,312,346,47.40%,52.60%,16,2.40%,107,16.30%,2,656,0,0.30%,99.70%,0.00%,133,156,658,23.70% +119759,888,4232,State-funded secondary,917,422,495,46.00%,54.00%,11,1.20%,77,8.40%,43,874,0,4.70%,95.30%,0.00%,64,79,917,8.60% +119765,888,4332,State-funded secondary,792,792,0,100.00%,0.00%,16,2.00%,13,1.60%,72,719,1,9.10%,90.80%,0.10%,113,121,792,15.30% +119767,888,4402,State-funded secondary,1544,785,759,50.80%,49.20%,28,1.80%,136,8.80%,77,1467,0,5.00%,95.00%,0.00%,265,280,1350,20.70% +119771,888,4408,State-funded secondary,1039,485,554,46.70%,53.30%,17,1.60%,119,11.50%,20,1018,1,1.90%,98.00%,0.10%,506,549,1039,52.80% +119773,888,4410,State-funded secondary,595,248,347,41.70%,58.30%,9,1.50%,96,16.10%,145,450,0,24.40%,75.60%,0.00%,269,279,551,50.60% +119774,888,4411,State-funded secondary,644,309,335,48.00%,52.00%,17,2.60%,112,17.40%,89,555,0,13.80%,86.20%,0.00%,278,297,644,46.10% +119775,888,4500,State-funded secondary,916,446,470,48.70%,51.30%,15,1.60%,27,2.90%,23,893,0,2.50%,97.50%,0.00%,113,126,916,13.80% +119779,888,4606,State-funded secondary,900,476,424,52.90%,47.10%,12,1.30%,54,6.00%,103,797,0,11.40%,88.60%,0.00%,134,141,900,15.70% +119780,888,4609,State-funded secondary,791,394,397,49.80%,50.20%,8,1.00%,69,8.70%,185,602,4,23.40%,76.10%,0.50%,241,256,791,32.40% +119781,888,4610,State-funded secondary,402,177,225,44.00%,56.00%,17,4.20%,49,12.20%,137,265,0,34.10%,65.90%,0.00%,168,174,402,43.30% +119782,888,4621,State-funded secondary,915,461,454,50.40%,49.60%,18,2.00%,132,14.40%,68,847,0,7.40%,92.60%,0.00%,329,350,915,38.30% +119784,888,4623,State-funded secondary,746,376,370,50.40%,49.60%,10,1.30%,58,7.80%,49,697,0,6.60%,93.40%,0.00%,190,207,746,27.70% +119785,888,4624,State-funded secondary,810,369,441,45.60%,54.40%,12,1.50%,87,10.70%,129,681,0,15.90%,84.10%,0.00%,202,215,810,26.50% +119788,888,4627,State-funded secondary,821,425,396,51.80%,48.20%,25,3.00%,33,4.00%,27,791,3,3.30%,96.30%,0.40%,111,119,821,14.50% +119789,888,4628,State-funded secondary,847,445,402,52.50%,47.50%,17,2.00%,56,6.60%,6,836,5,0.70%,98.70%,0.60%,124,149,847,17.60% +119790,889,4629,State-funded secondary,816,419,397,51.30%,48.70%,9,1.10%,210,25.70%,258,556,2,31.60%,68.10%,0.20%,340,377,816,46.20% +119792,888,4631,State-funded secondary,707,355,352,50.20%,49.80%,12,1.70%,60,8.50%,12,695,0,1.70%,98.30%,0.00%,53,56,707,7.90% +119793,889,4632,State-funded secondary,1057,495,562,46.80%,53.20%,32,3.00%,49,4.60%,75,982,0,7.10%,92.90%,0.00%,197,241,1057,22.80% +119794,888,4685,State-funded secondary,884,35,849,4.00%,96.00%,20,2.30%,83,9.40%,64,803,17,7.20%,90.80%,1.90%,92,89,735,12.10% +119798,888,4717,State-funded secondary,1031,517,514,50.10%,49.90%,32,3.10%,384,37.20%,131,900,0,12.70%,87.30%,0.00%,379,379,897,42.30% +119799,888,4718,State-funded secondary,806,395,411,49.00%,51.00%,16,2.00%,130,16.10%,28,777,1,3.50%,96.40%,0.10%,211,236,806,29.30% +119800,888,4721,State-funded secondary,532,274,258,51.50%,48.50%,7,1.30%,103,19.40%,43,489,0,8.10%,91.90%,0.00%,107,119,532,22.40% +119802,888,4741,State-funded secondary,910,447,463,49.10%,50.90%,18,2.00%,42,4.60%,41,869,0,4.50%,95.50%,0.00%,76,86,910,9.50% +119803,888,4742,State-funded secondary,987,485,502,49.10%,50.90%,18,1.80%,63,6.40%,57,930,0,5.80%,94.20%,0.00%,120,130,987,13.20% +119804,888,4797,State-funded secondary,799,394,405,49.30%,50.70%,18,2.30%,93,11.60%,96,703,0,12.00%,88.00%,0.00%,263,276,799,34.50% +119805,888,5200,State-funded primary,208,96,112,46.20%,53.80%,4,1.90%,4,1.90%,8,200,0,3.80%,96.20%,0.00%,34,32,191,16.80% +119806,888,5201,State-funded primary,297,136,161,45.80%,54.20%,5,1.70%,41,13.80%,11,286,0,3.70%,96.30%,0.00%,83,85,297,28.60% +119807,888,5202,State-funded primary,288,139,149,48.30%,51.70%,7,2.40%,17,5.90%,3,285,0,1.00%,99.00%,0.00%,16,16,265,6.00% +119808,888,5203,State-funded primary,227,110,117,48.50%,51.50%,2,0.90%,33,14.50%,2,225,0,0.90%,99.10%,0.00%,30,31,190,16.30% +119813,888,5404,State-funded secondary,852,444,408,52.10%,47.90%,16,1.90%,16,1.90%,16,836,0,1.90%,98.10%,0.00%,232,253,852,29.70% +119814,888,5405,State-funded secondary,788,376,412,47.70%,52.30%,13,1.60%,51,6.50%,30,757,1,3.80%,96.10%,0.10%,57,63,788,8.00% +119816,888,5407,State-funded secondary,798,365,433,45.70%,54.30%,12,1.50%,98,12.30%,29,769,0,3.60%,96.40%,0.00%,156,166,798,20.80% +119817,888,6000,Independent school,792,332,460,41.90%,58.10%,5,0.60%,225,28.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119818,888,6044,Independent school,841,365,476,43.40%,56.60%,3,0.40%,103,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119819,888,6001,Independent school,97,44,53,45.40%,54.60%,24,24.70%,2,2.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119820,888,6002,Independent school,169,74,95,43.80%,56.20%,2,1.20%,25,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119822,888,6004,Independent school,127,51,76,40.20%,59.80%,4,3.10%,10,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119824,888,6006,Independent school,865,425,440,49.10%,50.90%,5,0.60%,142,16.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119826,889,6000,Independent school,733,403,330,55.00%,45.00%,3,0.40%,60,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119828,888,6009,Independent school,207,100,107,48.30%,51.70%,3,1.40%,5,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119832,888,6011,Independent school,113,57,56,50.40%,49.60%,0,0.00%,30,26.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119833,888,6012,Independent school,298,119,179,39.90%,60.10%,8,2.70%,26,8.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119835,888,6013,Independent school,880,441,439,50.10%,49.90%,0,0.00%,83,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119836,888,6014,Independent school,767,385,382,50.20%,49.80%,1,0.10%,58,7.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119845,888,6020,Independent school,97,22,75,22.70%,77.30%,97,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119848,889,6003,Independent school,142,78,64,54.90%,45.10%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119849,888,6022,Independent school,90,20,70,22.20%,77.80%,90,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119853,888,6026,Independent school,45,21,24,46.70%,53.30%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119854,888,6027,Independent school,514,242,272,47.10%,52.90%,0,0.00%,29,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119856,889,6004,Independent school,126,126,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +119861,888,7007,State-funded special school,35,10,25,28.60%,71.40%,35,100.00%,0,0.00%,6,29,0,17.10%,82.90%,0.00%,13,11,31,35.50% +119866,888,7014,State-funded special school,54,0,54,0.00%,100.00%,54,100.00%,0,0.00%,1,53,0,1.90%,98.10%,0.00%,45,46,54,85.20% +119868,890,7020,State-funded special school,109,47,62,43.10%,56.90%,109,100.00%,0,0.00%,8,101,0,7.30%,92.70%,0.00%,67,61,89,68.50% +119871,890,7025,State-funded special school,110,33,77,30.00%,70.00%,110,100.00%,0,0.00%,4,105,1,3.60%,95.50%,0.90%,66,74,98,75.50% +119876,888,7034,State-funded special school,194,61,133,31.40%,68.60%,194,100.00%,0,0.00%,6,188,0,3.10%,96.90%,0.00%,91,97,194,50.00% +119877,888,7037,State-funded special school,167,59,108,35.30%,64.70%,167,100.00%,0,0.00%,9,158,0,5.40%,94.60%,0.00%,37,41,167,24.60% +119878,888,7040,State-funded special school,107,23,84,21.50%,78.50%,107,100.00%,0,0.00%,0,107,0,0.00%,100.00%,0.00%,57,57,107,53.30% +119879,888,7044,State-funded special school,90,16,74,17.80%,82.20%,90,100.00%,0,0.00%,7,83,0,7.80%,92.20%,0.00%,51,54,90,60.00% +119880,888,7049,State-funded special school,155,35,120,22.60%,77.40%,155,100.00%,0,0.00%,15,140,0,9.70%,90.30%,0.00%,78,76,148,51.40% +119883,888,7060,State-funded special school,191,52,139,27.20%,72.80%,189,99.00%,2,1.00%,21,170,0,11.00%,89.00%,0.00%,91,81,153,52.90% +119887,888,7076,State-funded special school,99,28,71,28.30%,71.70%,99,100.00%,0,0.00%,4,95,0,4.00%,96.00%,0.00%,38,30,78,38.50% +119889,888,7089,State-funded special school,120,37,83,30.80%,69.20%,120,100.00%,0,0.00%,9,111,0,7.50%,92.50%,0.00%,47,35,96,36.50% +119892,888,7097,State-funded special school,111,45,66,40.50%,59.50%,111,100.00%,0,0.00%,7,104,0,6.30%,93.70%,0.00%,41,29,83,34.90% +119893,888,7098,State-funded special school,65,27,38,41.50%,58.50%,65,100.00%,0,0.00%,7,58,0,10.80%,89.20%,0.00%,25,18,46,39.10% +119894,888,7099,State-funded special school,111,26,85,23.40%,76.60%,111,100.00%,0,0.00%,17,94,0,15.30%,84.70%,0.00%,43,46,111,41.40% +119895,888,7100,State-funded special school,75,0,75,0.00%,100.00%,75,100.00%,0,0.00%,1,74,0,1.30%,98.70%,0.00%,40,48,75,64.00% +119897,888,7102,State-funded special school,106,31,75,29.20%,70.80%,106,100.00%,0,0.00%,1,105,0,0.90%,99.10%,0.00%,55,46,83,55.40% +119898,888,7104,State-funded special school,84,12,72,14.30%,85.70%,84,100.00%,0,0.00%,0,84,0,0.00%,100.00%,0.00%,54,55,84,65.50% +119903,855,2001,State-funded primary,375,186,189,49.60%,50.40%,8,2.10%,57,15.20%,25,350,0,6.70%,93.30%,0.00%,69,72,375,19.20% +119906,855,2007,State-funded primary,195,98,97,50.30%,49.70%,5,2.60%,29,14.90%,6,189,0,3.10%,96.90%,0.00%,65,68,195,34.90% +119910,855,2017,State-funded primary,80,38,42,47.50%,52.50%,1,1.30%,13,16.30%,2,78,0,2.50%,97.50%,0.00%,7,7,80,8.80% +119912,855,2019,State-funded primary,191,88,103,46.10%,53.90%,4,2.10%,29,15.20%,5,186,0,2.60%,97.40%,0.00%,4,4,191,2.10% +119913,855,2020,State-funded primary,308,162,146,52.60%,47.40%,13,4.20%,52,16.90%,50,258,0,16.20%,83.80%,0.00%,98,101,308,32.80% +119914,855,2023,State-funded primary,199,97,102,48.70%,51.30%,5,2.50%,19,9.50%,3,196,0,1.50%,98.50%,0.00%,28,32,199,16.10% +119915,855,2024,State-funded primary,462,230,232,49.80%,50.20%,13,2.80%,61,13.20%,28,432,2,6.10%,93.50%,0.40%,61,66,462,14.30% +119916,855,2025,State-funded primary,210,110,100,52.40%,47.60%,4,1.90%,26,12.40%,6,204,0,2.90%,97.10%,0.00%,26,28,210,13.30% +119917,855,2026,State-funded primary,190,108,82,56.80%,43.20%,6,3.20%,25,13.20%,5,184,1,2.60%,96.80%,0.50%,14,14,190,7.40% +119918,855,2028,State-funded primary,107,52,55,48.60%,51.40%,1,0.90%,11,10.30%,1,105,1,0.90%,98.10%,0.90%,8,8,107,7.50% +119923,855,2036,State-funded primary,84,44,40,52.40%,47.60%,3,3.60%,9,10.70%,0,84,0,0.00%,100.00%,0.00%,17,17,84,20.20% +119925,855,2042,State-funded primary,210,101,109,48.10%,51.90%,1,0.50%,23,11.00%,7,203,0,3.30%,96.70%,0.00%,32,33,210,15.70% +119926,855,2043,State-funded primary,116,56,60,48.30%,51.70%,3,2.60%,18,15.50%,2,114,0,1.70%,98.30%,0.00%,5,5,116,4.30% +119928,855,2045,State-funded primary,369,174,195,47.20%,52.80%,28,7.60%,59,16.00%,39,330,0,10.60%,89.40%,0.00%,78,80,369,21.70% +119929,855,2046,State-funded primary,287,139,148,48.40%,51.60%,27,9.40%,22,7.70%,42,245,0,14.60%,85.40%,0.00%,56,56,287,19.50% +119930,855,2049,State-funded primary,161,83,78,51.60%,48.40%,1,0.60%,8,5.00%,10,151,0,6.20%,93.80%,0.00%,32,32,161,19.90% +119931,855,2051,State-funded primary,327,175,152,53.50%,46.50%,5,1.50%,77,23.50%,9,317,1,2.80%,96.90%,0.30%,67,69,327,21.10% +119932,855,2053,State-funded primary,225,107,118,47.60%,52.40%,2,0.90%,16,7.10%,22,202,1,9.80%,89.80%,0.40%,32,35,225,15.60% +119934,855,2056,State-funded primary,57,22,35,38.60%,61.40%,3,5.30%,7,12.30%,1,56,0,1.80%,98.20%,0.00%,14,14,57,24.60% +119936,855,2068,State-funded primary,388,181,207,46.60%,53.40%,6,1.50%,61,15.70%,14,374,0,3.60%,96.40%,0.00%,38,43,388,11.10% +119942,855,2078,State-funded primary,232,111,121,47.80%,52.20%,32,13.80%,40,17.20%,9,223,0,3.90%,96.10%,0.00%,45,46,232,19.80% +119949,855,2090,State-funded primary,183,84,99,45.90%,54.10%,1,0.50%,1,0.50%,2,181,0,1.10%,98.90%,0.00%,9,9,183,4.90% +119952,855,2096,State-funded primary,95,47,48,49.50%,50.50%,1,1.10%,13,13.70%,0,94,1,0.00%,98.90%,1.10%,6,6,95,6.30% +119953,855,2097,State-funded primary,81,48,33,59.30%,40.70%,0,0.00%,7,8.60%,5,76,0,6.20%,93.80%,0.00%,6,6,81,7.40% +119954,855,2104,State-funded primary,71,36,35,50.70%,49.30%,1,1.40%,18,25.40%,6,65,0,8.50%,91.50%,0.00%,14,14,71,19.70% +119956,855,2115,State-funded primary,251,111,140,44.20%,55.80%,7,2.80%,41,16.30%,16,235,0,6.40%,93.60%,0.00%,46,47,251,18.70% +119957,855,2116,State-funded primary,186,87,99,46.80%,53.20%,15,8.10%,43,23.10%,49,137,0,26.30%,73.70%,0.00%,73,75,186,40.30% +119958,855,2120,State-funded primary,129,61,68,47.30%,52.70%,2,1.60%,18,14.00%,25,104,0,19.40%,80.60%,0.00%,33,33,129,25.60% +119959,855,2123,State-funded primary,210,97,113,46.20%,53.80%,4,1.90%,30,14.30%,5,205,0,2.40%,97.60%,0.00%,12,13,210,6.20% +119961,855,2137,State-funded primary,260,128,132,49.20%,50.80%,6,2.30%,33,12.70%,3,257,0,1.20%,98.80%,0.00%,38,40,260,15.40% +119964,855,2142,State-funded primary,352,182,170,51.70%,48.30%,13,3.70%,58,16.50%,9,343,0,2.60%,97.40%,0.00%,47,49,352,13.90% +119973,855,2165,State-funded primary,242,109,133,45.00%,55.00%,6,2.50%,26,10.70%,50,190,2,20.70%,78.50%,0.80%,51,52,242,21.50% +119978,855,2170,State-funded primary,419,190,229,45.30%,54.70%,7,1.70%,24,5.70%,11,408,0,2.60%,97.40%,0.00%,25,25,419,6.00% +119981,855,2177,State-funded primary,198,99,99,50.00%,50.00%,9,4.50%,47,23.70%,27,171,0,13.60%,86.40%,0.00%,95,98,198,49.50% +119984,855,2180,State-funded primary,306,149,157,48.70%,51.30%,8,2.60%,58,19.00%,18,287,1,5.90%,93.80%,0.30%,71,72,306,23.50% +119986,855,2183,State-funded primary,556,261,295,46.90%,53.10%,17,3.10%,48,8.60%,19,533,4,3.40%,95.90%,0.70%,49,49,556,8.80% +119993,855,2193,State-funded primary,198,97,101,49.00%,51.00%,6,3.00%,25,12.60%,13,185,0,6.60%,93.40%,0.00%,44,45,198,22.70% +119999,856,2210,State-funded primary,360,174,186,48.30%,51.70%,5,1.40%,55,15.30%,324,36,0,90.00%,10.00%,0.00%,62,64,360,17.80% +120002,856,2213,State-funded primary,398,175,223,44.00%,56.00%,19,4.80%,63,15.80%,340,58,0,85.40%,14.60%,0.00%,48,47,348,13.50% +120003,856,2214,State-funded primary,475,215,260,45.30%,54.70%,6,1.30%,35,7.40%,421,53,1,88.60%,11.20%,0.20%,113,119,475,25.10% +120005,856,2222,State-funded primary,363,180,183,49.60%,50.40%,12,3.30%,40,11.00%,352,9,2,97.00%,2.50%,0.60%,55,57,319,17.90% +120006,856,2228,State-funded primary,469,225,244,48.00%,52.00%,9,1.90%,58,12.40%,110,359,0,23.50%,76.50%,0.00%,112,115,416,27.60% +120009,856,2231,State-funded primary,576,276,300,47.90%,52.10%,14,2.40%,54,9.40%,559,17,0,97.00%,3.00%,0.00%,75,75,535,14.00% +120014,856,2238,State-funded primary,308,161,147,52.30%,47.70%,11,3.60%,32,10.40%,135,170,3,43.80%,55.20%,1.00%,63,63,275,22.90% +120015,856,2239,State-funded primary,250,123,127,49.20%,50.80%,6,2.40%,40,16.00%,93,157,0,37.20%,62.80%,0.00%,95,96,224,42.90% +120016,856,2240,State-funded primary,311,156,155,50.20%,49.80%,18,5.80%,51,16.40%,130,181,0,41.80%,58.20%,0.00%,126,131,311,42.10% +120017,856,2241,State-funded primary,282,135,147,47.90%,52.10%,13,4.60%,12,4.30%,210,59,13,74.50%,20.90%,4.60%,56,51,189,27.00% +120018,856,2250,State-funded primary,459,199,260,43.40%,56.60%,6,1.30%,47,10.20%,370,85,4,80.60%,18.50%,0.90%,52,54,423,12.80% +120023,856,2264,State-funded primary,358,176,182,49.20%,50.80%,2,0.60%,26,7.30%,288,70,0,80.40%,19.60%,0.00%,53,53,270,19.60% +120025,856,2267,State-funded primary,446,223,223,50.00%,50.00%,3,0.70%,33,7.40%,274,171,1,61.40%,38.30%,0.20%,101,104,411,25.30% +120026,856,2268,State-funded primary,240,102,138,42.50%,57.50%,1,0.40%,31,12.90%,152,87,1,63.30%,36.30%,0.40%,68,71,240,29.60% +120028,856,2282,State-funded primary,409,194,215,47.40%,52.60%,7,1.70%,34,8.30%,264,144,1,64.50%,35.20%,0.20%,68,70,377,18.60% +120029,856,2283,State-funded primary,450,238,212,52.90%,47.10%,11,2.40%,56,12.40%,84,359,7,18.70%,79.80%,1.60%,114,117,429,27.30% +120034,856,2297,State-funded primary,360,173,187,48.10%,51.90%,10,2.80%,34,9.40%,134,224,2,37.20%,62.20%,0.60%,109,110,360,30.60% +120037,856,2303,State-funded primary,457,243,214,53.20%,46.80%,7,1.50%,61,13.30%,401,56,0,87.70%,12.30%,0.00%,67,69,430,16.00% +120038,856,2304,State-funded primary,476,241,235,50.60%,49.40%,19,4.00%,38,8.00%,217,259,0,45.60%,54.40%,0.00%,158,162,434,37.30% +120039,856,2305,State-funded primary,638,299,339,46.90%,53.10%,14,2.20%,104,16.30%,332,305,1,52.00%,47.80%,0.20%,207,210,586,35.80% +120040,856,2306,State-funded primary,409,192,217,46.90%,53.10%,8,2.00%,54,13.20%,184,225,0,45.00%,55.00%,0.00%,156,160,381,42.00% +120047,856,2317,State-funded primary,298,141,157,47.30%,52.70%,11,3.70%,21,7.00%,201,95,2,67.40%,31.90%,0.70%,36,40,298,13.40% +120050,856,2320,State-funded primary,345,162,183,47.00%,53.00%,20,5.80%,45,13.00%,199,146,0,57.70%,42.30%,0.00%,133,138,325,42.50% +120065,856,2339,State-funded primary,664,313,351,47.10%,52.90%,7,1.10%,75,11.30%,539,125,0,81.20%,18.80%,0.00%,187,196,619,31.70% +120068,856,2343,State-funded primary,440,212,228,48.20%,51.80%,7,1.60%,35,8.00%,317,123,0,72.00%,28.00%,0.00%,71,73,408,17.90% +120069,856,2344,State-funded primary,398,197,201,49.50%,50.50%,5,1.30%,92,23.10%,142,256,0,35.70%,64.30%,0.00%,165,168,376,44.70% +120070,855,2345,State-funded primary,414,189,225,45.70%,54.30%,4,1.00%,72,17.40%,43,370,1,10.40%,89.40%,0.20%,35,35,414,8.50% +120071,856,2346,State-funded primary,409,190,219,46.50%,53.50%,4,1.00%,54,13.20%,290,118,1,70.90%,28.90%,0.20%,116,118,409,28.90% +120072,856,2347,State-funded primary,438,209,229,47.70%,52.30%,4,0.90%,30,6.80%,317,121,0,72.40%,27.60%,0.00%,61,64,417,15.30% +120073,856,2348,State-funded primary,622,302,320,48.60%,51.40%,6,1.00%,66,10.60%,575,47,0,92.40%,7.60%,0.00%,114,114,561,20.30% +120077,856,2352,State-funded primary,432,229,203,53.00%,47.00%,12,2.80%,47,10.90%,193,239,0,44.70%,55.30%,0.00%,218,225,405,55.60% +120079,855,2354,State-funded primary,417,198,219,47.50%,52.50%,6,1.40%,77,18.50%,121,296,0,29.00%,71.00%,0.00%,75,76,417,18.20% +120081,856,2356,State-funded primary,657,327,330,49.80%,50.20%,9,1.40%,77,11.70%,490,167,0,74.60%,25.40%,0.00%,59,61,625,9.80% +120084,856,2359,State-funded primary,670,309,361,46.10%,53.90%,4,0.60%,95,14.20%,630,40,0,94.00%,6.00%,0.00%,106,106,612,17.30% +120086,856,2361,State-funded primary,439,214,225,48.70%,51.30%,11,2.50%,63,14.40%,176,262,1,40.10%,59.70%,0.20%,158,157,414,37.90% +120087,856,2363,State-funded primary,228,117,111,51.30%,48.70%,8,3.50%,45,19.70%,73,155,0,32.00%,68.00%,0.00%,68,67,200,33.50% +120088,856,2364,State-funded primary,455,225,230,49.50%,50.50%,9,2.00%,59,13.00%,147,308,0,32.30%,67.70%,0.00%,176,179,416,43.00% +120095,856,2371,State-funded primary,603,299,304,49.60%,50.40%,3,0.50%,59,9.80%,409,193,1,67.80%,32.00%,0.20%,117,118,570,20.70% +120096,855,2373,State-funded primary,158,81,77,51.30%,48.70%,17,10.80%,26,16.50%,4,154,0,2.50%,97.50%,0.00%,50,51,158,32.30% +120100,856,2377,State-funded primary,403,193,210,47.90%,52.10%,3,0.70%,34,8.40%,268,135,0,66.50%,33.50%,0.00%,56,58,378,15.30% +120101,856,2378,State-funded primary,211,104,107,49.30%,50.70%,4,1.90%,13,6.20%,150,61,0,71.10%,28.90%,0.00%,44,44,204,21.60% +120107,856,2385,State-funded primary,906,450,456,49.70%,50.30%,11,1.20%,78,8.60%,439,467,0,48.50%,51.50%,0.00%,118,124,829,15.00% +120108,856,2386,State-funded primary,482,235,247,48.80%,51.20%,7,1.50%,54,11.20%,415,61,6,86.10%,12.70%,1.20%,127,129,441,29.30% +120114,855,3010,State-funded primary,96,46,50,47.90%,52.10%,4,4.20%,15,15.60%,2,94,0,2.10%,97.90%,0.00%,8,8,96,8.30% +120115,855,3011,State-funded primary,94,54,40,57.40%,42.60%,1,1.10%,9,9.60%,1,93,0,1.10%,98.90%,0.00%,8,8,94,8.50% +120119,855,3016,State-funded primary,51,22,29,43.10%,56.90%,2,3.90%,13,25.50%,0,51,0,0.00%,100.00%,0.00%,5,5,51,9.80% +120120,855,3017,State-funded primary,195,104,91,53.30%,46.70%,2,1.00%,18,9.20%,6,189,0,3.10%,96.90%,0.00%,26,26,195,13.30% +120121,855,3018,State-funded primary,263,129,134,49.00%,51.00%,4,1.50%,28,10.60%,6,257,0,2.30%,97.70%,0.00%,26,26,263,9.90% +120122,855,3021,State-funded primary,191,104,87,54.50%,45.50%,1,0.50%,22,11.50%,14,177,0,7.30%,92.70%,0.00%,23,23,191,12.00% +120123,855,3022,State-funded primary,219,100,119,45.70%,54.30%,11,5.00%,49,22.40%,24,194,1,11.00%,88.60%,0.50%,82,84,219,38.40% +120124,855,3024,State-funded primary,106,47,59,44.30%,55.70%,1,0.90%,9,8.50%,0,106,0,0.00%,100.00%,0.00%,14,14,106,13.20% +120127,855,3029,State-funded primary,44,20,24,45.50%,54.50%,1,2.30%,14,31.80%,2,42,0,4.50%,95.50%,0.00%,6,6,44,13.60% +120129,855,3034,State-funded primary,434,216,218,49.80%,50.20%,11,2.50%,76,17.50%,14,420,0,3.20%,96.80%,0.00%,53,53,434,12.20% +120131,855,3037,State-funded primary,305,152,153,49.80%,50.20%,6,2.00%,31,10.20%,35,270,0,11.50%,88.50%,0.00%,31,36,305,11.80% +120132,855,3039,State-funded primary,73,33,40,45.20%,54.80%,1,1.40%,12,16.40%,0,73,0,0.00%,100.00%,0.00%,18,18,73,24.70% +120134,855,3042,State-funded primary,274,121,153,44.20%,55.80%,8,2.90%,27,9.90%,39,234,1,14.20%,85.40%,0.40%,66,70,274,25.50% +120135,855,3043,State-funded primary,54,24,30,44.40%,55.60%,0,0.00%,6,11.10%,0,54,0,0.00%,100.00%,0.00%,5,5,54,9.30% +120138,855,3047,State-funded primary,238,117,121,49.20%,50.80%,16,6.70%,29,12.20%,4,234,0,1.70%,98.30%,0.00%,41,41,238,17.20% +120141,855,3053,State-funded primary,59,35,24,59.30%,40.70%,3,5.10%,5,8.50%,1,58,0,1.70%,98.30%,0.00%,14,14,59,23.70% +120142,855,3054,State-funded primary,95,46,49,48.40%,51.60%,1,1.10%,7,7.40%,1,94,0,1.10%,98.90%,0.00%,7,7,95,7.40% +120149,855,3066,State-funded primary,40,16,24,40.00%,60.00%,1,2.50%,9,22.50%,0,40,0,0.00%,100.00%,0.00%,5,5,40,12.50% +120151,855,3068,State-funded primary,101,50,51,49.50%,50.50%,2,2.00%,9,8.90%,2,99,0,2.00%,98.00%,0.00%,1,2,101,2.00% +120153,855,3070,State-funded primary,528,267,261,50.60%,49.40%,8,1.50%,74,14.00%,14,512,2,2.70%,97.00%,0.40%,40,42,528,8.00% +120156,855,3077,State-funded primary,70,30,40,42.90%,57.10%,0,0.00%,7,10.00%,1,69,0,1.40%,98.60%,0.00%,6,6,70,8.60% +120158,855,3080,State-funded primary,108,40,68,37.00%,63.00%,2,1.90%,12,11.10%,3,105,0,2.80%,97.20%,0.00%,5,6,108,5.60% +120159,855,3082,State-funded primary,312,151,161,48.40%,51.60%,11,3.50%,40,12.80%,6,306,0,1.90%,98.10%,0.00%,51,53,312,17.00% +120163,855,3090,State-funded primary,87,41,46,47.10%,52.90%,0,0.00%,10,11.50%,2,85,0,2.30%,97.70%,0.00%,1,1,87,1.10% +120171,855,3101,State-funded primary,374,170,204,45.50%,54.50%,8,2.10%,63,16.80%,14,357,3,3.70%,95.50%,0.80%,60,63,374,16.80% +120172,855,3102,State-funded primary,106,55,51,51.90%,48.10%,1,0.90%,8,7.50%,3,103,0,2.80%,97.20%,0.00%,9,10,106,9.40% +120173,855,3103,State-funded primary,197,96,101,48.70%,51.30%,1,0.50%,13,6.60%,9,188,0,4.60%,95.40%,0.00%,12,12,197,6.10% +120174,855,3104,State-funded primary,116,52,64,44.80%,55.20%,2,1.70%,13,11.20%,1,110,5,0.90%,94.80%,4.30%,5,5,116,4.30% +120175,855,3106,State-funded primary,190,90,100,47.40%,52.60%,1,0.50%,9,4.70%,5,185,0,2.60%,97.40%,0.00%,31,33,190,17.40% +120176,855,3107,State-funded primary,87,32,55,36.80%,63.20%,0,0.00%,8,9.20%,9,78,0,10.30%,89.70%,0.00%,8,8,87,9.20% +120181,857,3115,State-funded primary,253,119,134,47.00%,53.00%,30,11.90%,42,16.60%,17,236,0,6.70%,93.30%,0.00%,46,48,253,19.00% +120187,856,3208,State-funded primary,336,159,177,47.30%,52.70%,4,1.20%,31,9.20%,271,63,2,80.70%,18.80%,0.60%,54,56,312,17.90% +120190,855,3212,State-funded primary,320,156,164,48.80%,51.30%,5,1.60%,38,11.90%,19,299,2,5.90%,93.40%,0.60%,49,51,320,15.90% +120192,855,3300,State-funded primary,152,63,89,41.40%,58.60%,1,0.70%,37,24.30%,2,150,0,1.30%,98.70%,0.00%,8,8,152,5.30% +120195,855,3307,State-funded primary,75,34,41,45.30%,54.70%,3,4.00%,7,9.30%,8,66,1,10.70%,88.00%,1.30%,10,10,75,13.30% +120199,855,3316,State-funded primary,73,36,37,49.30%,50.70%,1,1.40%,8,11.00%,0,73,0,0.00%,100.00%,0.00%,6,6,73,8.20% +120201,855,3320,State-funded primary,93,50,43,53.80%,46.20%,2,2.20%,12,12.90%,4,89,0,4.30%,95.70%,0.00%,8,8,93,8.60% +120229,857,3430,State-funded primary,203,103,100,50.70%,49.30%,6,3.00%,19,9.40%,0,203,0,0.00%,100.00%,0.00%,7,9,177,5.10% +120230,856,3431,State-funded primary,607,282,325,46.50%,53.50%,10,1.60%,90,14.80%,269,336,2,44.30%,55.40%,0.30%,89,89,607,14.70% +120277,856,4205,State-funded secondary,1491,698,793,46.80%,53.20%,18,1.20%,176,11.80%,1153,338,0,77.30%,22.70%,0.00%,329,351,1491,23.50% +120281,856,4242,State-funded secondary,1085,516,569,47.60%,52.40%,21,1.90%,188,17.30%,305,778,2,28.10%,71.70%,0.20%,327,346,1085,31.90% +120286,856,4250,State-funded secondary,1566,735,831,46.90%,53.10%,22,1.40%,190,12.10%,1200,366,0,76.60%,23.40%,0.00%,397,442,1566,28.20% +120292,856,4267,State-funded secondary,1085,511,574,47.10%,52.90%,4,0.40%,124,11.40%,966,113,6,89.00%,10.40%,0.60%,321,351,1085,32.40% +120297,856,4273,State-funded secondary,1696,787,909,46.40%,53.60%,18,1.10%,214,12.60%,1001,687,8,59.00%,40.50%,0.50%,330,329,1390,23.70% +120298,856,4274,State-funded secondary,1517,719,798,47.40%,52.60%,77,5.10%,214,14.10%,507,1010,0,33.40%,66.60%,0.00%,501,550,1517,36.30% +120316,855,6001,Independent school,909,443,466,48.70%,51.30%,3,0.30%,222,24.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120317,855,6008,Independent school,438,275,163,62.80%,37.20%,15,3.40%,13,3.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120320,857,6002,Independent school,847,358,489,42.30%,57.70%,0,0.00%,118,13.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120322,857,6000,Independent school,1015,475,540,46.80%,53.20%,0,0.00%,171,16.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120324,856,6009,Independent school,312,312,0,100.00%,0.00%,0,0.00%,33,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120325,855,6002,Independent school,228,88,140,38.60%,61.40%,9,3.90%,87,38.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120326,856,6000,Independent school,97,39,58,40.20%,59.80%,2,2.10%,5,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120329,856,6003,Independent school,31,10,21,32.30%,67.70%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120330,855,6010,Independent school,79,18,61,22.80%,77.20%,79,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120331,855,6006,Independent school,393,223,170,56.70%,43.30%,0,0.00%,62,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120332,855,6012,Independent school,883,0,883,0.00%,100.00%,0,0.00%,137,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120333,855,6009,Independent school,529,529,0,100.00%,0.00%,1,0.20%,78,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120334,855,6018,Independent school,1300,602,698,46.30%,53.70%,2,0.20%,271,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120335,856,6007,Independent school,326,156,170,47.90%,52.10%,3,0.90%,36,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120336,855,6014,Independent school,137,56,81,40.90%,59.10%,1,0.70%,11,8.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120339,855,6004,Independent school,472,246,226,52.10%,47.90%,4,0.80%,44,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120340,857,6003,Independent school,140,83,57,59.30%,40.70%,0,0.00%,13,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120341,855,6005,Independent school,254,23,231,9.10%,90.90%,0,0.00%,10,3.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120344,855,6000,Independent school,512,251,261,49.00%,51.00%,1,0.20%,57,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120345,856,6004,Independent school,134,0,134,0.00%,100.00%,0,0.00%,1,0.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120348,855,7002,State-funded special school,294,95,199,32.30%,67.70%,294,100.00%,0,0.00%,5,289,0,1.70%,98.30%,0.00%,102,87,223,39.00% +120352,855,7006,State-funded special school,196,60,136,30.60%,69.40%,196,100.00%,0,0.00%,15,180,1,7.70%,91.80%,0.50%,78,68,171,39.80% +120355,857,7015,State-funded special school,8,3,5,37.50%,62.50%,8,100.00%,0,0.00%,0,8,0,0.00%,100.00%,0.00%,1,1,6,16.70% +120361,856,7213,State-funded special school,131,50,81,38.20%,61.80%,129,98.50%,2,1.50%,87,44,0,66.40%,33.60%,0.00%,52,50,100,50.00% +120364,925,1001,State-funded nursery,105,54,51,51.40%,48.60%,3,2.90%,3,2.90%,23,82,0,21.90%,78.10%,0.00%,1,0,0,0.00% +120365,925,1005,State-funded nursery,120,55,65,45.80%,54.20%,0,0.00%,13,10.80%,9,111,0,7.50%,92.50%,0.00%,0,0,0,0.00% +120371,925,2003,State-funded primary,134,61,73,45.50%,54.50%,4,3.00%,33,24.60%,5,129,0,3.70%,96.30%,0.00%,17,19,134,14.20% +120374,925,2013,State-funded primary,71,35,36,49.30%,50.70%,5,7.00%,12,16.90%,3,68,0,4.20%,95.80%,0.00%,14,14,71,19.70% +120375,925,2017,State-funded primary,108,49,59,45.40%,54.60%,5,4.60%,11,10.20%,1,107,0,0.90%,99.10%,0.00%,5,5,108,4.60% +120376,925,2019,State-funded primary,74,22,52,29.70%,70.30%,5,6.80%,16,21.60%,0,74,0,0.00%,100.00%,0.00%,14,14,74,18.90% +120379,925,2025,State-funded primary,92,41,51,44.60%,55.40%,1,1.10%,19,20.70%,2,90,0,2.20%,97.80%,0.00%,34,34,92,37.00% +120381,925,2028,State-funded primary,193,99,94,51.30%,48.70%,1,0.50%,20,10.40%,0,193,0,0.00%,100.00%,0.00%,22,22,193,11.40% +120382,925,2030,State-funded primary,266,139,127,52.30%,47.70%,11,4.10%,34,12.80%,6,260,0,2.30%,97.70%,0.00%,45,48,266,18.00% +120383,925,2031,State-funded primary,35,17,18,48.60%,51.40%,1,2.90%,4,11.40%,4,31,0,11.40%,88.60%,0.00%,13,13,30,43.30% +120385,925,2033,State-funded primary,61,18,43,29.50%,70.50%,3,4.90%,5,8.20%,0,61,0,0.00%,100.00%,0.00%,12,12,61,19.70% +120386,925,2034,State-funded primary,81,34,47,42.00%,58.00%,4,4.90%,7,8.60%,0,81,0,0.00%,100.00%,0.00%,22,22,81,27.20% +120387,925,2038,State-funded primary,203,99,104,48.80%,51.20%,5,2.50%,16,7.90%,27,176,0,13.30%,86.70%,0.00%,82,85,203,41.90% +120388,925,2039,State-funded primary,144,69,75,47.90%,52.10%,6,4.20%,26,18.10%,3,141,0,2.10%,97.90%,0.00%,18,19,144,13.20% +120391,925,2050,State-funded primary,94,57,37,60.60%,39.40%,4,4.30%,16,17.00%,0,94,0,0.00%,100.00%,0.00%,25,26,94,27.70% +120392,925,2054,State-funded primary,327,155,172,47.40%,52.60%,6,1.80%,62,19.00%,22,305,0,6.70%,93.30%,0.00%,119,126,327,38.50% +120393,925,2055,State-funded primary,295,164,131,55.60%,44.40%,6,2.00%,30,10.20%,25,270,0,8.50%,91.50%,0.00%,39,40,295,13.60% +120396,925,2062,State-funded primary,211,104,107,49.30%,50.70%,7,3.30%,15,7.10%,4,207,0,1.90%,98.10%,0.00%,38,39,211,18.50% +120398,925,2065,State-funded primary,306,151,155,49.30%,50.70%,5,1.60%,43,14.10%,15,291,0,4.90%,95.10%,0.00%,79,83,306,27.10% +120400,925,2067,State-funded primary,194,102,92,52.60%,47.40%,6,3.10%,16,8.20%,1,193,0,0.50%,99.50%,0.00%,33,33,194,17.00% +120401,925,2070,State-funded primary,204,100,104,49.00%,51.00%,6,2.90%,35,17.20%,16,188,0,7.80%,92.20%,0.00%,69,72,204,35.30% +120406,925,2084,State-funded primary,413,208,205,50.40%,49.60%,14,3.40%,32,7.70%,28,385,0,6.80%,93.20%,0.00%,93,95,413,23.00% +120407,925,2085,State-funded primary,61,41,20,67.20%,32.80%,0,0.00%,9,14.80%,4,57,0,6.60%,93.40%,0.00%,18,18,61,29.50% +120408,925,2087,State-funded primary,188,90,98,47.90%,52.10%,5,2.70%,32,17.00%,7,181,0,3.70%,96.30%,0.00%,46,48,188,25.50% +120410,925,2089,State-funded primary,37,23,14,62.20%,37.80%,2,5.40%,9,24.30%,0,37,0,0.00%,100.00%,0.00%,9,9,37,24.30% +120412,925,2091,State-funded primary,87,46,41,52.90%,47.10%,4,4.60%,5,5.70%,3,84,0,3.40%,96.60%,0.00%,14,14,87,16.10% +120415,925,2094,State-funded primary,549,280,269,51.00%,49.00%,9,1.60%,122,22.20%,122,426,1,22.20%,77.60%,0.20%,172,174,522,33.30% +120417,925,2096,State-funded primary,72,37,35,51.40%,48.60%,3,4.20%,20,27.80%,3,69,0,4.20%,95.80%,0.00%,35,35,72,48.60% +120418,925,2097,State-funded primary,257,139,118,54.10%,45.90%,8,3.10%,26,10.10%,14,241,2,5.40%,93.80%,0.80%,44,46,257,17.90% +120420,925,2104,State-funded primary,116,70,46,60.30%,39.70%,2,1.70%,22,19.00%,8,108,0,6.90%,93.10%,0.00%,29,31,116,26.70% +120422,925,2107,State-funded primary,70,35,35,50.00%,50.00%,0,0.00%,16,22.90%,4,66,0,5.70%,94.30%,0.00%,21,23,70,32.90% +120424,925,2113,State-funded primary,345,156,189,45.20%,54.80%,12,3.50%,60,17.40%,113,232,0,32.80%,67.20%,0.00%,99,107,345,31.00% +120425,925,2114,State-funded primary,460,219,241,47.60%,52.40%,8,1.70%,47,10.20%,206,254,0,44.80%,55.20%,0.00%,59,59,421,14.00% +120427,925,2120,State-funded primary,615,301,314,48.90%,51.10%,17,2.80%,92,15.00%,99,516,0,16.10%,83.90%,0.00%,178,173,574,30.10% +120429,925,2124,State-funded primary,565,269,296,47.60%,52.40%,14,2.50%,116,20.50%,283,282,0,50.10%,49.90%,0.00%,187,189,498,38.00% +120436,925,2135,State-funded primary,121,58,63,47.90%,52.10%,6,5.00%,8,6.60%,9,112,0,7.40%,92.60%,0.00%,62,56,99,56.60% +120440,925,2142,State-funded primary,318,170,148,53.50%,46.50%,10,3.10%,41,12.90%,6,312,0,1.90%,98.10%,0.00%,127,131,318,41.20% +120443,925,2146,State-funded primary,35,18,17,51.40%,48.60%,5,14.30%,11,31.40%,0,35,0,0.00%,100.00%,0.00%,13,14,32,43.80% +120444,925,2149,State-funded primary,94,48,46,51.10%,48.90%,4,4.30%,11,11.70%,0,94,0,0.00%,100.00%,0.00%,11,12,94,12.80% +120445,925,2151,State-funded primary,70,32,38,45.70%,54.30%,3,4.30%,19,27.10%,0,70,0,0.00%,100.00%,0.00%,25,26,70,37.10% +120447,925,2153,State-funded primary,40,18,22,45.00%,55.00%,1,2.50%,4,10.00%,2,38,0,5.00%,95.00%,0.00%,10,10,40,25.00% +120450,925,2158,State-funded primary,42,19,23,45.20%,54.80%,1,2.40%,12,28.60%,1,41,0,2.40%,97.60%,0.00%,13,14,42,33.30% +120451,925,2159,State-funded primary,100,50,50,50.00%,50.00%,1,1.00%,16,16.00%,2,98,0,2.00%,98.00%,0.00%,22,22,97,22.70% +120453,925,2162,State-funded primary,88,52,36,59.10%,40.90%,1,1.10%,25,28.40%,2,86,0,2.30%,97.70%,0.00%,19,20,88,22.70% +120454,925,2166,State-funded primary,82,44,38,53.70%,46.30%,2,2.40%,12,14.60%,0,82,0,0.00%,100.00%,0.00%,11,11,82,13.40% +120457,925,2169,State-funded primary,47,25,22,53.20%,46.80%,4,8.50%,13,27.70%,0,47,0,0.00%,100.00%,0.00%,14,14,47,29.80% +120461,925,2174,State-funded primary,29,18,11,62.10%,37.90%,2,6.90%,1,3.40%,0,29,0,0.00%,100.00%,0.00%,9,9,29,31.00% +120463,925,2176,State-funded primary,134,66,68,49.30%,50.70%,5,3.70%,13,9.70%,3,131,0,2.20%,97.80%,0.00%,24,24,134,17.90% +120464,925,2177,State-funded primary,194,103,91,53.10%,46.90%,5,2.60%,25,12.90%,3,133,58,1.50%,68.60%,29.90%,61,62,194,32.00% +120465,925,2178,State-funded primary,80,37,43,46.30%,53.80%,3,3.80%,19,23.80%,0,80,0,0.00%,100.00%,0.00%,21,21,80,26.30% +120466,925,2179,State-funded primary,37,20,17,54.10%,45.90%,2,5.40%,12,32.40%,0,37,0,0.00%,100.00%,0.00%,10,11,37,29.70% +120468,925,2181,State-funded primary,54,23,31,42.60%,57.40%,1,1.90%,5,9.30%,0,54,0,0.00%,100.00%,0.00%,11,11,54,20.40% +120469,925,2182,State-funded primary,110,53,57,48.20%,51.80%,5,4.50%,8,7.30%,0,110,0,0.00%,100.00%,0.00%,27,27,110,24.50% +120471,925,2185,State-funded primary,91,47,44,51.60%,48.40%,2,2.20%,13,14.30%,2,89,0,2.20%,97.80%,0.00%,16,16,91,17.60% +120472,925,2187,State-funded primary,101,50,51,49.50%,50.50%,3,3.00%,12,11.90%,1,100,0,1.00%,99.00%,0.00%,13,14,101,13.90% +120473,925,2188,State-funded primary,277,130,147,46.90%,53.10%,4,1.40%,61,22.00%,10,267,0,3.60%,96.40%,0.00%,50,50,277,18.10% +120478,925,2195,State-funded primary,178,79,99,44.40%,55.60%,5,2.80%,31,17.40%,3,175,0,1.70%,98.30%,0.00%,36,36,178,20.20% +120479,925,2196,State-funded primary,159,69,90,43.40%,56.60%,4,2.50%,37,23.30%,0,159,0,0.00%,100.00%,0.00%,98,102,159,64.20% +120480,925,2197,State-funded primary,79,47,32,59.50%,40.50%,4,5.10%,15,19.00%,0,79,0,0.00%,100.00%,0.00%,10,10,79,12.70% +120481,925,2198,State-funded primary,107,52,55,48.60%,51.40%,1,0.90%,16,15.00%,1,106,0,0.90%,99.10%,0.00%,17,17,107,15.90% +120482,925,2199,State-funded primary,110,50,60,45.50%,54.50%,5,4.50%,11,10.00%,0,110,0,0.00%,100.00%,0.00%,21,21,110,19.10% +120483,925,2201,State-funded primary,146,82,64,56.20%,43.80%,1,0.70%,13,8.90%,2,144,0,1.40%,98.60%,0.00%,33,33,146,22.60% +120485,925,2203,State-funded primary,77,39,38,50.60%,49.40%,1,1.30%,14,18.20%,2,75,0,2.60%,97.40%,0.00%,7,7,77,9.10% +120487,925,2205,State-funded primary,48,27,21,56.30%,43.80%,1,2.10%,5,10.40%,0,48,0,0.00%,100.00%,0.00%,13,15,48,31.30% +120488,925,2206,State-funded primary,185,100,85,54.10%,45.90%,5,2.70%,38,20.50%,4,181,0,2.20%,97.80%,0.00%,59,60,185,32.40% +120491,925,2210,State-funded primary,42,15,27,35.70%,64.30%,3,7.10%,15,35.70%,0,42,0,0.00%,100.00%,0.00%,28,28,42,66.70% +120492,925,2214,State-funded primary,205,112,93,54.60%,45.40%,7,3.40%,40,19.50%,5,200,0,2.40%,97.60%,0.00%,106,111,205,54.10% +120493,925,2215,State-funded primary,138,70,68,50.70%,49.30%,9,6.50%,11,8.00%,5,133,0,3.60%,96.40%,0.00%,43,43,138,31.20% +120494,925,2219,State-funded primary,406,211,195,52.00%,48.00%,14,3.40%,44,10.80%,36,370,0,8.90%,91.10%,0.00%,136,144,406,35.50% +120496,925,2224,State-funded primary,231,116,115,50.20%,49.80%,5,2.20%,17,7.40%,22,209,0,9.50%,90.50%,0.00%,57,59,218,27.10% +120497,925,2229,State-funded primary,123,59,64,48.00%,52.00%,5,4.10%,26,21.10%,0,123,0,0.00%,100.00%,0.00%,21,22,123,17.90% +120502,925,2238,State-funded primary,236,107,129,45.30%,54.70%,8,3.40%,37,15.70%,31,205,0,13.10%,86.90%,0.00%,120,125,236,53.00% +120506,925,2243,State-funded primary,81,40,41,49.40%,50.60%,3,3.70%,15,18.50%,5,76,0,6.20%,93.80%,0.00%,32,32,81,39.50% +120508,925,2245,State-funded primary,254,124,130,48.80%,51.20%,17,6.70%,52,20.50%,34,220,0,13.40%,86.60%,0.00%,129,132,254,52.00% +120509,925,2246,State-funded primary,244,110,134,45.10%,54.90%,13,5.30%,24,9.80%,12,232,0,4.90%,95.10%,0.00%,92,96,244,39.30% +120511,925,3000,State-funded primary,112,56,56,50.00%,50.00%,2,1.80%,14,12.50%,0,112,0,0.00%,100.00%,0.00%,11,11,112,9.80% +120512,925,3001,State-funded primary,184,83,101,45.10%,54.90%,8,4.30%,33,17.90%,6,178,0,3.30%,96.70%,0.00%,41,42,184,22.80% +120513,925,3004,State-funded primary,237,123,114,51.90%,48.10%,6,2.50%,23,9.70%,5,232,0,2.10%,97.90%,0.00%,28,28,237,11.80% +120514,925,3005,State-funded primary,181,85,96,47.00%,53.00%,2,1.10%,16,8.80%,8,173,0,4.40%,95.60%,0.00%,15,15,181,8.30% +120515,925,3007,State-funded primary,158,85,73,53.80%,46.20%,4,2.50%,23,14.60%,6,152,0,3.80%,96.20%,0.00%,54,55,158,34.80% +120517,925,3015,State-funded primary,46,19,27,41.30%,58.70%,2,4.30%,11,23.90%,0,46,0,0.00%,100.00%,0.00%,12,12,46,26.10% +120518,925,3017,State-funded primary,60,28,32,46.70%,53.30%,1,1.70%,9,15.00%,4,56,0,6.70%,93.30%,0.00%,5,5,60,8.30% +120519,925,3018,State-funded primary,59,28,31,47.50%,52.50%,3,5.10%,7,11.90%,0,59,0,0.00%,100.00%,0.00%,13,14,59,23.70% +120520,925,3021,State-funded primary,70,33,37,47.10%,52.90%,1,1.40%,4,5.70%,0,70,0,0.00%,100.00%,0.00%,10,11,70,15.70% +120522,925,3026,State-funded primary,212,114,98,53.80%,46.20%,3,1.40%,29,13.70%,42,170,0,19.80%,80.20%,0.00%,50,51,212,24.10% +120524,925,3029,State-funded primary,299,134,165,44.80%,55.20%,11,3.70%,56,18.70%,40,259,0,13.40%,86.60%,0.00%,75,75,299,25.10% +120525,925,3031,State-funded primary,193,105,88,54.40%,45.60%,6,3.10%,25,13.00%,9,184,0,4.70%,95.30%,0.00%,33,35,193,18.10% +120526,925,3033,State-funded primary,168,86,82,51.20%,48.80%,4,2.40%,14,8.30%,6,162,0,3.60%,96.40%,0.00%,46,47,168,28.00% +120528,925,3037,State-funded primary,212,106,106,50.00%,50.00%,5,2.40%,20,9.40%,2,210,0,0.90%,99.10%,0.00%,47,49,212,23.10% +120530,925,3041,State-funded primary,103,52,51,50.50%,49.50%,4,3.90%,12,11.70%,0,103,0,0.00%,100.00%,0.00%,27,28,103,27.20% +120532,925,3045,State-funded primary,193,109,84,56.50%,43.50%,10,5.20%,18,9.30%,1,192,0,0.50%,99.50%,0.00%,30,31,193,16.10% +120533,925,3047,State-funded primary,193,101,92,52.30%,47.70%,13,6.70%,35,18.10%,15,178,0,7.80%,92.20%,0.00%,38,41,193,21.20% +120534,925,3050,State-funded primary,127,68,59,53.50%,46.50%,3,2.40%,7,5.50%,0,127,0,0.00%,100.00%,0.00%,10,10,127,7.90% +120536,925,3052,State-funded primary,112,51,61,45.50%,54.50%,1,0.90%,22,19.60%,5,107,0,4.50%,95.50%,0.00%,15,15,112,13.40% +120537,925,3056,State-funded primary,208,100,108,48.10%,51.90%,5,2.40%,23,11.10%,1,207,0,0.50%,99.50%,0.00%,23,24,208,11.50% +120539,925,3066,State-funded primary,83,49,34,59.00%,41.00%,4,4.80%,11,13.30%,3,80,0,3.60%,96.40%,0.00%,15,16,83,19.30% +120540,925,3068,State-funded primary,197,85,112,43.10%,56.90%,6,3.00%,16,8.10%,0,197,0,0.00%,100.00%,0.00%,22,23,197,11.70% +120541,925,3070,State-funded primary,85,44,41,51.80%,48.20%,4,4.70%,5,5.90%,2,83,0,2.40%,97.60%,0.00%,6,7,85,8.20% +120542,925,3071,State-funded primary,58,30,28,51.70%,48.30%,3,5.20%,10,17.20%,3,55,0,5.20%,94.80%,0.00%,19,19,58,32.80% +120544,925,3078,State-funded primary,156,81,75,51.90%,48.10%,0,0.00%,6,3.80%,5,151,0,3.20%,96.80%,0.00%,23,25,156,16.00% +120548,925,3088,State-funded primary,70,32,38,45.70%,54.30%,5,7.10%,18,25.70%,4,66,0,5.70%,94.30%,0.00%,20,21,70,30.00% +120549,925,3089,State-funded primary,41,22,19,53.70%,46.30%,1,2.40%,4,9.80%,4,37,0,9.80%,90.20%,0.00%,9,9,41,22.00% +120551,925,3092,State-funded primary,101,55,46,54.50%,45.50%,4,4.00%,9,8.90%,6,95,0,5.90%,94.10%,0.00%,32,32,101,31.70% +120552,925,3093,State-funded primary,104,49,55,47.10%,52.90%,1,1.00%,23,22.10%,3,101,0,2.90%,97.10%,0.00%,23,25,104,24.00% +120554,925,3096,State-funded primary,129,64,65,49.60%,50.40%,10,7.80%,13,10.10%,6,123,0,4.70%,95.30%,0.00%,34,35,129,27.10% +120556,925,3098,State-funded primary,261,124,137,47.50%,52.50%,9,3.40%,25,9.60%,14,247,0,5.40%,94.60%,0.00%,87,88,261,33.70% +120558,925,3102,State-funded primary,263,132,131,50.20%,49.80%,11,4.20%,38,14.40%,17,246,0,6.50%,93.50%,0.00%,78,78,263,29.70% +120559,925,3103,State-funded primary,154,74,80,48.10%,51.90%,7,4.50%,29,18.80%,6,148,0,3.90%,96.10%,0.00%,31,32,154,20.80% +120560,925,3105,State-funded primary,87,44,43,50.60%,49.40%,1,1.10%,3,3.40%,9,78,0,10.30%,89.70%,0.00%,9,9,87,10.30% +120561,925,3107,State-funded primary,339,177,162,52.20%,47.80%,10,2.90%,43,12.70%,68,271,0,20.10%,79.90%,0.00%,76,82,339,24.20% +120562,925,3108,State-funded primary,277,125,152,45.10%,54.90%,4,1.40%,28,10.10%,32,245,0,11.60%,88.40%,0.00%,45,42,239,17.60% +120563,925,3111,State-funded primary,254,110,144,43.30%,56.70%,13,5.10%,47,18.50%,120,134,0,47.20%,52.80%,0.00%,100,101,216,46.80% +120565,925,3116,State-funded primary,92,43,49,46.70%,53.30%,4,4.30%,11,12.00%,3,89,0,3.30%,96.70%,0.00%,41,41,92,44.60% +120566,925,3118,State-funded primary,205,100,105,48.80%,51.20%,14,6.80%,28,13.70%,2,203,0,1.00%,99.00%,0.00%,58,59,205,28.80% +120568,925,3120,State-funded primary,106,59,47,55.70%,44.30%,1,0.90%,22,20.80%,6,100,0,5.70%,94.30%,0.00%,22,22,106,20.80% +120569,925,3121,State-funded primary,210,92,118,43.80%,56.20%,4,1.90%,28,13.30%,8,202,0,3.80%,96.20%,0.00%,42,42,210,20.00% +120570,925,3122,State-funded primary,89,40,49,44.90%,55.10%,3,3.40%,14,15.70%,1,88,0,1.10%,98.90%,0.00%,21,22,89,24.70% +120571,925,3123,State-funded primary,69,37,32,53.60%,46.40%,3,4.30%,7,10.10%,1,68,0,1.40%,98.60%,0.00%,7,7,69,10.10% +120572,925,3124,State-funded primary,57,26,31,45.60%,54.40%,2,3.50%,2,3.50%,3,54,0,5.30%,94.70%,0.00%,5,5,57,8.80% +120573,925,3125,State-funded primary,65,37,28,56.90%,43.10%,3,4.60%,17,26.20%,3,62,0,4.60%,95.40%,0.00%,34,34,65,52.30% +120574,925,3128,State-funded primary,313,149,164,47.60%,52.40%,8,2.60%,41,13.10%,4,309,0,1.30%,98.70%,0.00%,91,93,313,29.70% +120576,925,3130,State-funded primary,91,41,50,45.10%,54.90%,4,4.40%,19,20.90%,0,91,0,0.00%,100.00%,0.00%,19,19,91,20.90% +120577,925,3131,State-funded primary,316,173,143,54.70%,45.30%,9,2.80%,45,14.20%,4,312,0,1.30%,98.70%,0.00%,97,101,316,32.00% +120578,925,3132,State-funded primary,70,32,38,45.70%,54.30%,4,5.70%,6,8.60%,2,68,0,2.90%,97.10%,0.00%,9,8,63,12.70% +120579,925,3133,State-funded primary,32,18,14,56.30%,43.80%,0,0.00%,6,18.80%,2,30,0,6.30%,93.80%,0.00%,9,9,32,28.10% +120580,925,3134,State-funded primary,87,39,48,44.80%,55.20%,4,4.60%,8,9.20%,0,87,0,0.00%,100.00%,0.00%,11,12,87,13.80% +120581,925,3136,State-funded primary,197,100,97,50.80%,49.20%,5,2.50%,23,11.70%,4,193,0,2.00%,98.00%,0.00%,20,20,197,10.20% +120583,925,3139,State-funded primary,381,193,188,50.70%,49.30%,17,4.50%,28,7.30%,2,379,0,0.50%,99.50%,0.00%,71,71,381,18.60% +120584,925,3140,State-funded primary,60,27,33,45.00%,55.00%,4,6.70%,9,15.00%,3,57,0,5.00%,95.00%,0.00%,12,12,60,20.00% +120585,925,3141,State-funded primary,54,25,29,46.30%,53.70%,6,11.10%,6,11.10%,3,51,0,5.60%,94.40%,0.00%,8,8,54,14.80% +120587,925,3151,State-funded primary,127,60,67,47.20%,52.80%,5,3.90%,30,23.60%,4,123,0,3.10%,96.90%,0.00%,18,18,127,14.20% +120588,925,3152,State-funded primary,76,44,32,57.90%,42.10%,0,0.00%,6,7.90%,2,74,0,2.60%,97.40%,0.00%,25,25,76,32.90% +120589,925,3154,State-funded primary,194,83,111,42.80%,57.20%,6,3.10%,26,13.40%,9,185,0,4.60%,95.40%,0.00%,63,64,194,33.00% +120590,925,3156,State-funded primary,222,118,104,53.20%,46.80%,7,3.20%,35,15.80%,7,215,0,3.20%,96.80%,0.00%,52,54,222,24.30% +120594,925,3163,State-funded primary,98,47,51,48.00%,52.00%,3,3.10%,15,15.30%,0,98,0,0.00%,100.00%,0.00%,19,19,98,19.40% +120596,925,3167,State-funded primary,304,153,151,50.30%,49.70%,11,3.60%,42,13.80%,40,264,0,13.20%,86.80%,0.00%,80,83,304,27.30% +120597,925,3168,State-funded primary,108,52,56,48.10%,51.90%,2,1.90%,16,14.80%,1,107,0,0.90%,99.10%,0.00%,9,9,108,8.30% +120601,925,3313,State-funded primary,164,80,84,48.80%,51.20%,8,4.90%,20,12.20%,3,161,0,1.80%,98.20%,0.00%,42,42,164,25.60% +120602,925,3314,State-funded primary,60,32,28,53.30%,46.70%,1,1.70%,6,10.00%,11,49,0,18.30%,81.70%,0.00%,11,11,60,18.30% +120605,925,3321,State-funded primary,76,42,34,55.30%,44.70%,4,5.30%,13,17.10%,1,75,0,1.30%,98.70%,0.00%,10,10,76,13.20% +120606,925,3322,State-funded primary,87,37,50,42.50%,57.50%,3,3.40%,11,12.60%,2,85,0,2.30%,97.70%,0.00%,31,31,87,35.60% +120607,925,3325,State-funded primary,186,88,98,47.30%,52.70%,6,3.20%,32,17.20%,7,179,0,3.80%,96.20%,0.00%,54,54,186,29.00% +120611,925,3337,State-funded primary,73,41,32,56.20%,43.80%,6,8.20%,6,8.20%,11,62,0,15.10%,84.90%,0.00%,20,21,73,28.80% +120613,925,3339,State-funded primary,435,214,221,49.20%,50.80%,16,3.70%,57,13.10%,137,298,0,31.50%,68.50%,0.00%,49,50,435,11.50% +120614,925,3340,State-funded primary,100,47,53,47.00%,53.00%,5,5.00%,20,20.00%,2,98,0,2.00%,98.00%,0.00%,25,26,100,26.00% +120619,925,3350,State-funded primary,132,58,74,43.90%,56.10%,4,3.00%,25,18.90%,2,130,0,1.50%,98.50%,0.00%,45,47,132,35.60% +120623,925,3359,State-funded primary,122,65,57,53.30%,46.70%,0,0.00%,24,19.70%,1,121,0,0.80%,99.20%,0.00%,23,25,122,20.50% +120625,925,3361,State-funded primary,168,79,89,47.00%,53.00%,4,2.40%,21,12.50%,4,164,0,2.40%,97.60%,0.00%,54,56,168,33.30% +120626,925,3364,State-funded primary,223,102,121,45.70%,54.30%,7,3.10%,21,9.40%,12,211,0,5.40%,94.60%,0.00%,39,40,223,17.90% +120627,925,3366,State-funded primary,69,36,33,52.20%,47.80%,4,5.80%,40,58.00%,1,68,0,1.40%,98.60%,0.00%,24,24,69,34.80% +120628,925,3170,State-funded primary,172,90,82,52.30%,47.70%,2,1.20%,33,19.20%,0,172,0,0.00%,100.00%,0.00%,36,39,172,22.70% +120629,925,3171,State-funded primary,132,70,62,53.00%,47.00%,5,3.80%,45,34.10%,6,126,0,4.50%,95.50%,0.00%,32,34,132,25.80% +120630,925,3505,State-funded primary,445,214,231,48.10%,51.90%,17,3.80%,68,15.30%,261,184,0,58.70%,41.30%,0.00%,116,121,405,29.90% +120642,925,4027,State-funded secondary,965,945,20,97.90%,2.10%,2,0.20%,119,12.30%,133,832,0,13.80%,86.20%,0.00%,68,64,745,8.60% +120655,925,4065,State-funded secondary,1220,617,603,50.60%,49.40%,4,0.30%,26,2.10%,88,1132,0,7.20%,92.80%,0.00%,90,89,931,9.60% +120674,925,5207,State-funded primary,303,137,166,45.20%,54.80%,12,4.00%,50,16.50%,7,296,0,2.30%,97.70%,0.00%,28,29,303,9.60% +120683,925,5216,State-funded primary,272,140,132,51.50%,48.50%,10,3.70%,31,11.40%,8,264,0,2.90%,97.10%,0.00%,60,64,272,23.50% +120684,925,5217,State-funded primary,217,102,115,47.00%,53.00%,4,1.80%,28,12.90%,0,217,0,0.00%,100.00%,0.00%,47,48,217,22.10% +120685,925,5218,State-funded primary,66,27,39,40.90%,59.10%,5,7.60%,18,27.30%,0,66,0,0.00%,100.00%,0.00%,31,31,66,47.00% +120686,925,5219,State-funded primary,121,54,67,44.60%,55.40%,7,5.80%,20,16.50%,19,102,0,15.70%,84.30%,0.00%,70,66,100,66.00% +120689,925,5222,State-funded primary,92,39,53,42.40%,57.60%,1,1.10%,10,10.90%,4,88,0,4.30%,95.70%,0.00%,13,16,92,17.40% +120692,925,5225,State-funded primary,189,95,94,50.30%,49.70%,2,1.10%,37,19.60%,2,187,0,1.10%,98.90%,0.00%,71,73,189,38.60% +120695,925,5228,State-funded primary,230,120,110,52.20%,47.80%,10,4.30%,28,12.20%,11,219,0,4.80%,95.20%,0.00%,39,40,209,19.10% +120724,925,6012,Independent school,473,247,226,52.20%,47.80%,5,1.10%,114,24.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120727,925,6015,Independent school,247,112,135,45.30%,54.70%,1,0.40%,35,14.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120728,925,6016,Independent school,22,4,18,18.20%,81.80%,0,0.00%,1,4.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120729,925,6017,Independent school,104,34,70,32.70%,67.30%,61,58.70%,18,17.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120731,925,6020,Independent school,115,61,54,53.00%,47.00%,0,0.00%,5,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120732,925,6022,Independent school,168,82,86,48.80%,51.20%,3,1.80%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120733,925,6023,Independent school,54,26,28,48.10%,51.90%,0,0.00%,6,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120735,925,6027,Independent school,1251,587,664,46.90%,53.10%,4,0.30%,362,28.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120738,925,6031,Independent school,114,62,52,54.40%,45.60%,3,2.60%,12,10.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120739,925,6033,Independent school,39,23,16,59.00%,41.00%,0,0.00%,6,15.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120740,925,6034,Independent school,56,7,49,12.50%,87.50%,55,98.20%,1,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120741,925,6035,Independent school,289,144,145,49.80%,50.20%,1,0.30%,37,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120743,925,6038,Independent school,96,52,44,54.20%,45.80%,4,4.20%,9,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +120753,925,7012,State-funded special school,9,4,5,44.40%,55.60%,8,88.90%,1,11.10%,0,9,0,0.00%,100.00%,0.00%,4,4,9,44.40% +120754,925,7015,State-funded special school,227,67,160,29.50%,70.50%,227,100.00%,0,0.00%,16,211,0,7.00%,93.00%,0.00%,109,103,203,50.70% +120755,925,7016,State-funded special school,164,72,92,43.90%,56.10%,164,100.00%,0,0.00%,4,160,0,2.40%,97.60%,0.00%,73,53,110,48.20% +120765,926,1001,State-funded nursery,75,39,36,52.00%,48.00%,0,0.00%,0,0.00%,5,70,0,6.70%,93.30%,0.00%,0,0,0,0.00% +120766,926,1002,State-funded nursery,79,33,46,41.80%,58.20%,0,0.00%,0,0.00%,30,47,2,38.00%,59.50%,2.50%,0,0,0,0.00% +120767,926,1005,State-funded nursery,85,39,46,45.90%,54.10%,0,0.00%,0,0.00%,14,70,1,16.50%,82.40%,1.20%,0,0,10,0.00% +120777,926,2000,State-funded primary,124,61,63,49.20%,50.80%,0,0.00%,10,8.10%,7,117,0,5.60%,94.40%,0.00%,22,22,124,17.70% +120780,926,2004,State-funded primary,551,262,289,47.50%,52.50%,9,1.60%,78,14.20%,57,490,4,10.30%,88.90%,0.70%,92,93,504,18.50% +120781,926,2007,State-funded primary,78,38,40,48.70%,51.30%,1,1.30%,9,11.50%,2,76,0,2.60%,97.40%,0.00%,19,21,66,31.80% +120783,926,2010,State-funded primary,93,41,52,44.10%,55.90%,3,3.20%,17,18.30%,4,89,0,4.30%,95.70%,0.00%,10,11,93,11.80% +120784,926,2012,State-funded primary,104,51,53,49.00%,51.00%,3,2.90%,14,13.50%,10,94,0,9.60%,90.40%,0.00%,18,18,104,17.30% +120788,926,2017,State-funded primary,214,97,117,45.30%,54.70%,2,0.90%,18,8.40%,2,212,0,0.90%,99.10%,0.00%,16,16,214,7.50% +120789,926,2021,State-funded primary,139,66,73,47.50%,52.50%,1,0.70%,13,9.40%,7,132,0,5.00%,95.00%,0.00%,14,14,139,10.10% +120794,926,2032,State-funded primary,203,102,101,50.20%,49.80%,4,2.00%,40,19.70%,7,196,0,3.40%,96.60%,0.00%,30,30,203,14.80% +120795,926,2033,State-funded primary,335,169,166,50.40%,49.60%,19,5.70%,62,18.50%,14,320,1,4.20%,95.50%,0.30%,113,119,335,35.50% +120796,926,2034,State-funded primary,233,115,118,49.40%,50.60%,6,2.60%,50,21.50%,13,216,4,5.60%,92.70%,1.70%,58,63,233,27.00% +120797,926,2035,State-funded primary,63,35,28,55.60%,44.40%,0,0.00%,17,27.00%,0,63,0,0.00%,100.00%,0.00%,20,20,59,33.90% +120798,926,2038,State-funded primary,141,69,72,48.90%,51.10%,2,1.40%,26,18.40%,7,134,0,5.00%,95.00%,0.00%,15,16,141,11.30% +120808,926,2064,State-funded primary,165,75,90,45.50%,54.50%,2,1.20%,22,13.30%,5,160,0,3.00%,97.00%,0.00%,13,13,127,10.20% +120809,926,2065,State-funded primary,70,38,32,54.30%,45.70%,2,2.90%,11,15.70%,0,70,0,0.00%,100.00%,0.00%,9,9,70,12.90% +120812,926,2070,State-funded primary,181,93,88,51.40%,48.60%,4,2.20%,20,11.00%,2,176,3,1.10%,97.20%,1.70%,17,18,181,9.90% +120815,926,2078,State-funded primary,144,74,70,51.40%,48.60%,1,0.70%,35,24.30%,0,144,0,0.00%,100.00%,0.00%,21,21,144,14.60% +120816,926,2079,State-funded primary,149,63,86,42.30%,57.70%,3,2.00%,27,18.10%,0,149,0,0.00%,100.00%,0.00%,24,26,149,17.40% +120817,926,2081,State-funded primary,94,48,46,51.10%,48.90%,0,0.00%,6,6.40%,0,94,0,0.00%,100.00%,0.00%,13,15,94,16.00% +120818,926,2083,State-funded primary,151,72,79,47.70%,52.30%,7,4.60%,25,16.60%,0,151,0,0.00%,100.00%,0.00%,37,39,151,25.80% +120821,926,2087,State-funded primary,188,92,96,48.90%,51.10%,4,2.10%,22,11.70%,10,178,0,5.30%,94.70%,0.00%,53,54,188,28.70% +120822,926,2089,State-funded primary,33,15,18,45.50%,54.50%,0,0.00%,7,21.20%,2,31,0,6.10%,93.90%,0.00%,7,7,26,26.90% +120825,926,2096,State-funded primary,90,45,45,50.00%,50.00%,3,3.30%,16,17.80%,2,88,0,2.20%,97.80%,0.00%,16,17,90,18.90% +120827,926,2101,State-funded primary,116,51,65,44.00%,56.00%,1,0.90%,6,5.20%,0,114,2,0.00%,98.30%,1.70%,14,14,116,12.10% +120830,926,2105,State-funded primary,102,40,62,39.20%,60.80%,1,1.00%,13,12.70%,0,102,0,0.00%,100.00%,0.00%,21,21,91,23.10% +120831,926,2107,State-funded primary,21,8,13,38.10%,61.90%,3,14.30%,8,38.10%,0,21,0,0.00%,100.00%,0.00%,15,15,21,71.40% +120835,926,2115,State-funded primary,74,36,38,48.60%,51.40%,0,0.00%,7,9.50%,1,73,0,1.40%,98.60%,0.00%,14,14,74,18.90% +120836,926,2119,State-funded primary,40,21,19,52.50%,47.50%,4,10.00%,1,2.50%,2,38,0,5.00%,95.00%,0.00%,12,12,40,30.00% +120838,926,2121,State-funded primary,285,138,147,48.40%,51.60%,19,6.70%,40,14.00%,1,284,0,0.40%,99.60%,0.00%,79,81,285,28.40% +120840,926,2124,State-funded primary,105,46,59,43.80%,56.20%,4,3.80%,8,7.60%,2,102,1,1.90%,97.10%,1.00%,19,19,105,18.10% +120841,926,2127,State-funded primary,465,225,240,48.40%,51.60%,2,0.40%,31,6.70%,21,444,0,4.50%,95.50%,0.00%,62,62,425,14.60% +120843,926,2130,State-funded primary,203,108,95,53.20%,46.80%,3,1.50%,36,17.70%,5,196,2,2.50%,96.60%,1.00%,33,34,203,16.70% +120844,926,2131,State-funded primary,85,44,41,51.80%,48.20%,0,0.00%,26,30.60%,9,76,0,10.60%,89.40%,0.00%,25,24,71,33.80% +120847,926,2135,State-funded primary,69,34,35,49.30%,50.70%,1,1.40%,13,18.80%,3,65,1,4.30%,94.20%,1.40%,8,9,69,13.00% +120848,926,2138,State-funded primary,259,121,138,46.70%,53.30%,5,1.90%,34,13.10%,26,229,4,10.00%,88.40%,1.50%,47,48,259,18.50% +120851,926,2142,State-funded primary,449,229,220,51.00%,49.00%,14,3.10%,102,22.70%,20,427,2,4.50%,95.10%,0.40%,82,86,416,20.70% +120852,926,2146,State-funded primary,201,94,107,46.80%,53.20%,17,8.50%,17,8.50%,31,170,0,15.40%,84.60%,0.00%,44,45,201,22.40% +120853,926,2147,State-funded primary,150,64,86,42.70%,57.30%,18,12.00%,27,18.00%,23,127,0,15.30%,84.70%,0.00%,40,40,146,27.40% +120856,926,2153,State-funded primary,78,41,37,52.60%,47.40%,4,5.10%,6,7.70%,2,76,0,2.60%,97.40%,0.00%,21,21,78,26.90% +120859,926,2161,State-funded primary,414,215,199,51.90%,48.10%,1,0.20%,57,13.80%,17,397,0,4.10%,95.90%,0.00%,50,58,414,14.00% +120862,926,2167,State-funded primary,167,77,90,46.10%,53.90%,2,1.20%,20,12.00%,1,166,0,0.60%,99.40%,0.00%,26,26,167,15.60% +120863,926,2168,State-funded primary,86,44,42,51.20%,48.80%,9,10.50%,10,11.60%,5,81,0,5.80%,94.20%,0.00%,8,8,86,9.30% +120866,926,2180,State-funded primary,57,35,22,61.40%,38.60%,0,0.00%,12,21.10%,0,57,0,0.00%,100.00%,0.00%,12,12,57,21.10% +120867,926,2184,State-funded primary,261,124,137,47.50%,52.50%,0,0.00%,22,8.40%,21,240,0,8.00%,92.00%,0.00%,34,35,214,16.40% +120883,926,2220,State-funded primary,71,41,30,57.70%,42.30%,5,7.00%,10,14.10%,8,63,0,11.30%,88.70%,0.00%,20,20,71,28.20% +120884,926,2223,State-funded primary,92,43,49,46.70%,53.30%,3,3.30%,5,5.40%,1,90,1,1.10%,97.80%,1.10%,27,31,92,33.70% +120887,926,2228,State-funded primary,48,22,26,45.80%,54.20%,2,4.20%,10,20.80%,3,45,0,6.30%,93.80%,0.00%,21,22,48,45.80% +120888,926,2229,State-funded primary,169,85,84,50.30%,49.70%,5,3.00%,18,10.70%,4,165,0,2.40%,97.60%,0.00%,35,36,169,21.30% +120890,926,2233,State-funded primary,209,95,114,45.50%,54.50%,11,5.30%,25,12.00%,8,200,1,3.80%,95.70%,0.50%,48,50,209,23.90% +120896,926,2240,State-funded primary,115,52,63,45.20%,54.80%,2,1.70%,10,8.70%,7,108,0,6.10%,93.90%,0.00%,11,11,115,9.60% +120899,926,2245,State-funded primary,215,106,109,49.30%,50.70%,7,3.30%,22,10.20%,13,202,0,6.00%,94.00%,0.00%,34,35,215,16.30% +120903,926,2249,State-funded primary,176,86,90,48.90%,51.10%,1,0.60%,17,9.70%,11,165,0,6.30%,93.80%,0.00%,13,13,176,7.40% +120904,926,2251,State-funded primary,163,79,84,48.50%,51.50%,3,1.80%,26,16.00%,16,147,0,9.80%,90.20%,0.00%,23,23,163,14.10% +120905,926,2252,State-funded primary,253,110,143,43.50%,56.50%,12,4.70%,48,19.00%,72,181,0,28.50%,71.50%,0.00%,100,103,219,47.00% +120906,926,2253,State-funded primary,418,200,218,47.80%,52.20%,13,3.10%,42,10.00%,129,288,1,30.90%,68.90%,0.20%,135,142,382,37.20% +120908,926,2259,State-funded primary,168,77,91,45.80%,54.20%,4,2.40%,48,28.60%,12,156,0,7.10%,92.90%,0.00%,31,31,168,18.50% +120909,926,2261,State-funded primary,300,147,153,49.00%,51.00%,0,0.00%,38,12.70%,6,292,2,2.00%,97.30%,0.70%,41,41,300,13.70% +120910,926,2263,State-funded primary,203,105,98,51.70%,48.30%,6,3.00%,22,10.80%,6,193,4,3.00%,95.10%,2.00%,22,23,203,11.30% +120911,926,2264,State-funded primary,246,133,113,54.10%,45.90%,3,1.20%,35,14.20%,10,235,1,4.10%,95.50%,0.40%,56,57,246,23.20% +120912,926,2265,State-funded primary,140,68,72,48.60%,51.40%,0,0.00%,23,16.40%,8,132,0,5.70%,94.30%,0.00%,20,20,140,14.30% +120913,926,2266,State-funded primary,432,201,231,46.50%,53.50%,16,3.70%,71,16.40%,40,391,1,9.30%,90.50%,0.20%,86,90,432,20.80% +120914,926,2267,State-funded primary,350,173,177,49.40%,50.60%,9,2.60%,53,15.10%,35,309,6,10.00%,88.30%,1.70%,71,71,350,20.30% +120917,926,2272,State-funded primary,134,70,64,52.20%,47.80%,2,1.50%,25,18.70%,5,127,2,3.70%,94.80%,1.50%,30,31,134,23.10% +120918,926,2274,State-funded primary,492,234,258,47.60%,52.40%,11,2.20%,53,10.80%,90,400,2,18.30%,81.30%,0.40%,53,54,413,13.10% +120920,926,2279,State-funded primary,236,114,122,48.30%,51.70%,6,2.50%,31,13.10%,5,231,0,2.10%,97.90%,0.00%,47,48,207,23.20% +120922,926,2281,State-funded primary,487,240,247,49.30%,50.70%,16,3.30%,61,12.50%,41,443,3,8.40%,91.00%,0.60%,51,53,440,12.00% +120926,926,2287,State-funded primary,374,188,186,50.30%,49.70%,8,2.10%,50,13.40%,55,314,5,14.70%,84.00%,1.30%,60,64,374,17.10% +120928,926,2291,State-funded primary,474,218,256,46.00%,54.00%,6,1.30%,76,16.00%,92,381,1,19.40%,80.40%,0.20%,82,84,474,17.70% +120932,926,2295,State-funded primary,201,104,97,51.70%,48.30%,6,3.00%,27,13.40%,80,121,0,39.80%,60.20%,0.00%,61,64,201,31.80% +120937,926,2300,State-funded primary,235,109,126,46.40%,53.60%,8,3.40%,38,16.20%,75,160,0,31.90%,68.10%,0.00%,72,75,235,31.90% +120938,926,2301,State-funded primary,168,91,77,54.20%,45.80%,9,5.40%,19,11.30%,62,106,0,36.90%,63.10%,0.00%,45,46,168,27.40% +120954,926,2317,State-funded primary,261,130,131,49.80%,50.20%,5,1.90%,70,26.80%,62,197,2,23.80%,75.50%,0.80%,78,78,171,45.60% +120958,926,2321,State-funded primary,234,119,115,50.90%,49.10%,14,6.00%,42,17.90%,36,191,7,15.40%,81.60%,3.00%,110,114,234,48.70% +120972,926,2344,State-funded primary,204,94,110,46.10%,53.90%,5,2.50%,44,21.60%,116,88,0,56.90%,43.10%,0.00%,131,134,204,65.70% +120973,926,2346,State-funded primary,414,197,217,47.60%,52.40%,3,0.70%,71,17.10%,44,368,2,10.60%,88.90%,0.50%,156,160,371,43.10% +120982,926,2357,State-funded primary,213,106,107,49.80%,50.20%,15,7.00%,26,12.20%,6,207,0,2.80%,97.20%,0.00%,27,28,213,13.10% +120984,926,2361,State-funded primary,131,71,60,54.20%,45.80%,2,1.50%,14,10.70%,24,107,0,18.30%,81.70%,0.00%,23,23,131,17.60% +120987,926,2367,State-funded primary,345,178,167,51.60%,48.40%,5,1.40%,49,14.20%,37,308,0,10.70%,89.30%,0.00%,46,50,345,14.50% +120988,926,2368,State-funded primary,201,101,100,50.20%,49.80%,0,0.00%,27,13.40%,10,190,1,5.00%,94.50%,0.50%,21,22,143,15.40% +120990,926,2371,State-funded primary,438,213,225,48.60%,51.40%,8,1.80%,38,8.70%,29,405,4,6.60%,92.50%,0.90%,46,47,438,10.70% +120995,926,2377,State-funded primary,421,206,215,48.90%,51.10%,21,5.00%,40,9.50%,97,324,0,23.00%,77.00%,0.00%,44,47,421,11.20% +120999,926,2382,State-funded primary,206,107,99,51.90%,48.10%,3,1.50%,25,12.10%,31,175,0,15.00%,85.00%,0.00%,11,11,161,6.80% +121000,926,2383,State-funded primary,109,56,53,51.40%,48.60%,5,4.60%,19,17.40%,2,107,0,1.80%,98.20%,0.00%,27,29,109,26.60% +121011,926,2409,State-funded primary,181,84,97,46.40%,53.60%,3,1.70%,32,17.70%,10,171,0,5.50%,94.50%,0.00%,33,33,181,18.20% +121013,926,2411,State-funded primary,465,231,234,49.70%,50.30%,5,1.10%,44,9.50%,38,426,1,8.20%,91.60%,0.20%,101,106,465,22.80% +121017,926,2415,State-funded primary,198,98,100,49.50%,50.50%,2,1.00%,10,5.10%,8,190,0,4.00%,96.00%,0.00%,27,29,198,14.60% +121018,926,2416,State-funded primary,178,94,84,52.80%,47.20%,7,3.90%,38,21.30%,51,127,0,28.70%,71.30%,0.00%,43,43,178,24.20% +121019,926,2417,State-funded primary,228,103,125,45.20%,54.80%,4,1.80%,28,12.30%,2,223,3,0.90%,97.80%,1.30%,44,44,208,21.20% +121022,926,2420,State-funded primary,351,166,185,47.30%,52.70%,8,2.30%,41,11.70%,17,334,0,4.80%,95.20%,0.00%,80,83,315,26.30% +121024,926,3000,State-funded primary,178,92,86,51.70%,48.30%,7,3.90%,27,15.20%,7,171,0,3.90%,96.10%,0.00%,49,49,178,27.50% +121026,926,3003,State-funded primary,108,52,56,48.10%,51.90%,2,1.90%,26,24.10%,1,107,0,0.90%,99.10%,0.00%,16,16,108,14.80% +121027,926,3004,State-funded primary,162,80,82,49.40%,50.60%,5,3.10%,22,13.60%,5,157,0,3.10%,96.90%,0.00%,26,27,135,20.00% +121035,926,3027,State-funded primary,105,50,55,47.60%,52.40%,2,1.90%,17,16.20%,2,103,0,1.90%,98.10%,0.00%,24,24,105,22.90% +121036,926,3028,State-funded primary,59,28,31,47.50%,52.50%,1,1.70%,9,15.30%,0,59,0,0.00%,100.00%,0.00%,3,3,55,5.50% +121037,926,3030,State-funded primary,173,74,99,42.80%,57.20%,5,2.90%,19,11.00%,10,163,0,5.80%,94.20%,0.00%,33,34,173,19.70% +121039,926,3037,State-funded primary,70,32,38,45.70%,54.30%,0,0.00%,13,18.60%,5,65,0,7.10%,92.90%,0.00%,16,16,70,22.90% +121040,926,3038,State-funded primary,31,14,17,45.20%,54.80%,1,3.20%,11,35.50%,0,31,0,0.00%,100.00%,0.00%,14,14,31,45.20% +121041,926,3041,State-funded primary,72,36,36,50.00%,50.00%,5,6.90%,9,12.50%,0,72,0,0.00%,100.00%,0.00%,12,12,72,16.70% +121042,926,3043,State-funded primary,269,132,137,49.10%,50.90%,0,0.00%,28,10.40%,22,247,0,8.20%,91.80%,0.00%,39,40,269,14.90% +121043,926,3045,State-funded primary,29,15,14,51.70%,48.30%,1,3.40%,2,6.90%,0,28,1,0.00%,96.60%,3.40%,1,1,18,5.60% +121049,926,3059,State-funded primary,56,33,23,58.90%,41.10%,2,3.60%,11,19.60%,1,55,0,1.80%,98.20%,0.00%,15,15,56,26.80% +121050,926,3060,State-funded primary,206,105,101,51.00%,49.00%,3,1.50%,20,9.70%,32,170,4,15.50%,82.50%,1.90%,36,38,206,18.40% +121051,926,3061,State-funded primary,128,65,63,50.80%,49.20%,1,0.80%,49,38.30%,5,123,0,3.90%,96.10%,0.00%,34,35,128,27.30% +121053,926,3066,State-funded primary,138,69,69,50.00%,50.00%,4,2.90%,23,16.70%,2,136,0,1.40%,98.60%,0.00%,13,13,138,9.40% +121054,926,3067,State-funded primary,66,29,37,43.90%,56.10%,4,6.10%,12,18.20%,1,65,0,1.50%,98.50%,0.00%,5,7,66,10.60% +121058,926,3079,State-funded primary,52,27,25,51.90%,48.10%,0,0.00%,8,15.40%,0,52,0,0.00%,100.00%,0.00%,11,10,44,22.70% +121059,926,3081,State-funded primary,209,106,103,50.70%,49.30%,7,3.30%,42,20.10%,19,188,2,9.10%,90.00%,1.00%,70,72,175,41.10% +121061,926,3084,State-funded primary,127,67,60,52.80%,47.20%,3,2.40%,16,12.60%,1,126,0,0.80%,99.20%,0.00%,25,26,127,20.50% +121062,926,3085,State-funded primary,434,216,218,49.80%,50.20%,14,3.20%,52,12.00%,20,410,4,4.60%,94.50%,0.90%,65,65,434,15.00% +121063,926,3088,State-funded primary,106,55,51,51.90%,48.10%,1,0.90%,18,17.00%,0,105,1,0.00%,99.10%,0.90%,12,12,106,11.30% +121066,926,3094,State-funded primary,112,66,46,58.90%,41.10%,2,1.80%,14,12.50%,2,110,0,1.80%,98.20%,0.00%,7,8,112,7.10% +121067,926,3096,State-funded primary,414,202,212,48.80%,51.20%,12,2.90%,35,8.50%,28,384,2,6.80%,92.80%,0.50%,84,85,414,20.50% +121069,926,3100,State-funded primary,101,55,46,54.50%,45.50%,0,0.00%,16,15.80%,2,99,0,2.00%,98.00%,0.00%,18,18,101,17.80% +121081,926,3119,State-funded primary,57,31,26,54.40%,45.60%,0,0.00%,16,28.10%,2,54,1,3.50%,94.70%,1.80%,9,10,57,17.50% +121082,926,3120,State-funded primary,93,35,58,37.60%,62.40%,2,2.20%,16,17.20%,0,93,0,0.00%,100.00%,0.00%,18,18,93,19.40% +121083,926,3121,State-funded primary,183,89,94,48.60%,51.40%,2,1.10%,26,14.20%,16,166,1,8.70%,90.70%,0.50%,21,23,183,12.60% +121086,926,3126,State-funded primary,19,9,10,47.40%,52.60%,0,0.00%,4,21.10%,1,18,0,5.30%,94.70%,0.00%,6,6,19,31.60% +121087,926,3127,State-funded primary,66,28,38,42.40%,57.60%,1,1.50%,17,25.80%,0,66,0,0.00%,100.00%,0.00%,14,14,66,21.20% +121090,926,3131,State-funded primary,64,40,24,62.50%,37.50%,1,1.60%,13,20.30%,0,64,0,0.00%,100.00%,0.00%,13,14,64,21.90% +121092,926,3133,State-funded primary,52,27,25,51.90%,48.10%,3,5.80%,9,17.30%,1,51,0,1.90%,98.10%,0.00%,12,12,52,23.10% +121093,926,3136,State-funded primary,426,221,205,51.90%,48.10%,15,3.50%,80,18.80%,224,196,6,52.60%,46.00%,1.40%,222,224,426,52.60% +121095,926,3138,State-funded primary,112,65,47,58.00%,42.00%,2,1.80%,16,14.30%,0,112,0,0.00%,100.00%,0.00%,12,12,112,10.70% +121096,926,3139,State-funded primary,141,57,84,40.40%,59.60%,3,2.10%,20,14.20%,1,137,3,0.70%,97.20%,2.10%,25,25,141,17.70% +121097,926,3140,State-funded primary,241,123,118,51.00%,49.00%,3,1.20%,31,12.90%,0,241,0,0.00%,100.00%,0.00%,28,28,211,13.30% +121103,926,3146,State-funded primary,79,33,46,41.80%,58.20%,0,0.00%,16,20.30%,0,79,0,0.00%,100.00%,0.00%,20,21,71,29.60% +121108,926,3306,State-funded primary,28,9,19,32.10%,67.90%,1,3.60%,5,17.90%,0,28,0,0.00%,100.00%,0.00%,4,4,28,14.30% +121110,926,3309,State-funded primary,59,28,31,47.50%,52.50%,2,3.40%,18,30.50%,1,58,0,1.70%,98.30%,0.00%,11,12,59,20.30% +121113,926,3313,State-funded primary,442,226,216,51.10%,48.90%,7,1.60%,38,8.60%,139,294,9,31.40%,66.50%,2.00%,48,49,442,11.10% +121114,926,3315,State-funded primary,91,53,38,58.20%,41.80%,1,1.10%,14,15.40%,1,90,0,1.10%,98.90%,0.00%,10,11,91,12.10% +121117,926,3322,State-funded primary,95,52,43,54.70%,45.30%,2,2.10%,21,22.10%,0,95,0,0.00%,100.00%,0.00%,15,16,95,16.80% +121119,926,3329,State-funded primary,192,91,101,47.40%,52.60%,4,2.10%,23,12.00%,4,188,0,2.10%,97.90%,0.00%,23,24,192,12.50% +121123,926,3349,State-funded primary,145,72,73,49.70%,50.30%,3,2.10%,7,4.80%,3,142,0,2.10%,97.90%,0.00%,22,22,145,15.20% +121125,926,3354,State-funded primary,89,35,54,39.30%,60.70%,3,3.40%,15,16.90%,0,89,0,0.00%,100.00%,0.00%,33,33,89,37.10% +121128,926,3369,State-funded primary,40,15,25,37.50%,62.50%,2,5.00%,13,32.50%,0,40,0,0.00%,100.00%,0.00%,11,11,40,27.50% +121129,926,3373,State-funded primary,68,34,34,50.00%,50.00%,2,2.90%,22,32.40%,3,65,0,4.40%,95.60%,0.00%,21,21,68,30.90% +121134,926,3383,State-funded primary,151,81,70,53.60%,46.40%,2,1.30%,10,6.60%,1,150,0,0.70%,99.30%,0.00%,3,4,124,3.20% +121135,926,3385,State-funded primary,112,52,60,46.40%,53.60%,1,0.90%,19,17.00%,9,103,0,8.00%,92.00%,0.00%,19,20,112,17.90% +121145,926,3404,State-funded primary,167,76,91,45.50%,54.50%,5,3.00%,23,13.80%,5,162,0,3.00%,97.00%,0.00%,32,32,159,20.10% +121146,926,3405,State-funded primary,399,194,205,48.60%,51.40%,13,3.30%,102,25.60%,122,277,0,30.60%,69.40%,0.00%,144,149,399,37.30% +121147,926,3406,State-funded primary,147,75,72,51.00%,49.00%,5,3.40%,15,10.20%,7,140,0,4.80%,95.20%,0.00%,3,3,147,2.00% +121149,926,3408,State-funded primary,48,20,28,41.70%,58.30%,1,2.10%,15,31.30%,0,48,0,0.00%,100.00%,0.00%,12,12,48,25.00% +121150,926,3409,State-funded primary,103,50,53,48.50%,51.50%,3,2.90%,15,14.60%,0,103,0,0.00%,100.00%,0.00%,18,19,103,18.40% +121164,926,4046,State-funded secondary,1145,575,570,50.20%,49.80%,43,3.80%,221,19.30%,29,1116,0,2.50%,97.50%,0.00%,173,189,1145,16.50% +121190,926,5200,State-funded primary,157,65,92,41.40%,58.60%,8,5.10%,27,17.20%,18,139,0,11.50%,88.50%,0.00%,55,60,157,38.20% +121192,926,5202,State-funded primary,206,123,83,59.70%,40.30%,1,0.50%,31,15.00%,3,203,0,1.50%,98.50%,0.00%,51,51,206,24.80% +121195,926,5205,State-funded primary,172,88,84,51.20%,48.80%,4,2.30%,22,12.80%,21,151,0,12.20%,87.80%,0.00%,46,46,144,31.90% +121196,926,5206,State-funded primary,607,287,320,47.30%,52.70%,10,1.60%,65,10.70%,39,567,1,6.40%,93.40%,0.20%,113,122,607,20.10% +121197,926,5207,State-funded primary,236,122,114,51.70%,48.30%,5,2.10%,22,9.30%,20,216,0,8.50%,91.50%,0.00%,24,27,236,11.40% +121199,926,5209,State-funded primary,123,55,68,44.70%,55.30%,3,2.40%,15,12.20%,7,114,2,5.70%,92.70%,1.60%,17,17,123,13.80% +121202,926,5212,State-funded primary,125,54,71,43.20%,56.80%,10,8.00%,20,16.00%,1,124,0,0.80%,99.20%,0.00%,16,17,125,13.60% +121203,926,5213,State-funded primary,168,81,87,48.20%,51.80%,0,0.00%,19,11.30%,7,161,0,4.20%,95.80%,0.00%,37,37,145,25.50% +121205,926,5215,State-funded primary,214,104,110,48.60%,51.40%,4,1.90%,32,15.00%,7,184,23,3.30%,86.00%,10.70%,12,16,202,7.90% +121206,926,5216,State-funded primary,225,102,123,45.30%,54.70%,2,0.90%,19,8.40%,23,201,1,10.20%,89.30%,0.40%,26,27,225,12.00% +121221,926,6000,Independent school,34,17,17,50.00%,50.00%,0,0.00%,2,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121222,926,6003,Independent school,927,435,492,46.90%,53.10%,7,0.80%,312,33.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121223,926,6004,Independent school,182,83,99,45.60%,54.40%,4,2.20%,17,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121224,926,6005,Independent school,414,149,265,36.00%,64.00%,11,2.70%,5,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121225,926,6008,Independent school,334,151,183,45.20%,54.80%,7,2.10%,52,15.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121229,926,6041,Independent school,176,55,121,31.30%,68.80%,176,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121231,926,6058,Independent school,175,98,77,56.00%,44.00%,5,2.90%,36,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121237,926,6111,Independent school,467,210,257,45.00%,55.00%,0,0.00%,57,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121239,926,6114,Independent school,169,87,82,51.50%,48.50%,0,0.00%,27,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121241,926,6123,Independent school,561,561,0,100.00%,0.00%,3,0.50%,113,20.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121242,926,6124,Independent school,1200,496,704,41.30%,58.70%,2,0.20%,104,8.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121245,926,6128,Independent school,208,93,115,44.70%,55.30%,6,2.90%,38,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121246,926,6133,Independent school,66,8,58,12.10%,87.90%,66,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121250,926,6140,Independent school,72,30,42,41.70%,58.30%,71,98.60%,1,1.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121251,926,6143,Independent school,106,52,54,49.10%,50.90%,7,6.60%,16,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121252,926,6145,Independent school,45,11,34,24.40%,75.60%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121254,926,7001,State-funded special school,194,57,137,29.40%,70.60%,194,100.00%,0,0.00%,5,189,0,2.60%,97.40%,0.00%,82,79,162,48.80% +121256,926,7004,State-funded special school,173,70,103,40.50%,59.50%,173,100.00%,0,0.00%,18,155,0,10.40%,89.60%,0.00%,84,93,173,53.80% +121257,926,7006,State-funded special school,92,33,59,35.90%,64.10%,92,100.00%,0,0.00%,8,84,0,8.70%,91.30%,0.00%,40,32,73,43.80% +121258,926,7007,State-funded special school,144,41,103,28.50%,71.50%,144,100.00%,0,0.00%,5,139,0,3.50%,96.50%,0.00%,58,50,122,41.00% +121260,926,7010,State-funded special school,161,50,111,31.10%,68.90%,161,100.00%,0,0.00%,23,137,1,14.30%,85.10%,0.60%,47,41,139,29.50% +121261,926,7013,State-funded special school,121,52,69,43.00%,57.00%,121,100.00%,0,0.00%,15,106,0,12.40%,87.60%,0.00%,48,41,99,41.40% +121262,926,7014,State-funded special school,179,61,118,34.10%,65.90%,179,100.00%,0,0.00%,8,171,0,4.50%,95.50%,0.00%,97,94,167,56.30% +121264,926,7016,State-funded special school,99,19,80,19.20%,80.80%,99,100.00%,0,0.00%,20,79,0,20.20%,79.80%,0.00%,44,40,83,48.20% +121265,926,7020,State-funded special school,176,45,131,25.60%,74.40%,176,100.00%,0,0.00%,14,162,0,8.00%,92.00%,0.00%,104,92,151,60.90% +121266,816,1000,State-funded nursery,73,27,46,37.00%,63.00%,5,6.80%,18,24.70%,8,65,0,11.00%,89.00%,0.00%,4,0,0,0.00% +121267,815,1001,State-funded nursery,93,28,65,30.10%,69.90%,0,0.00%,1,1.10%,4,89,0,4.30%,95.70%,0.00%,0,0,0,0.00% +121268,815,1002,State-funded nursery,53,27,26,50.90%,49.10%,1,1.90%,13,24.50%,7,46,0,13.20%,86.80%,0.00%,13,0,0,0.00% +121269,815,1003,State-funded nursery,67,28,39,41.80%,58.20%,0,0.00%,0,0.00%,1,66,0,1.50%,98.50%,0.00%,0,0,0,0.00% +121270,816,1100,State-funded AP school,134,37,97,27.60%,72.40%,87,64.90%,44,32.80%,2,132,0,1.50%,98.50%,0.00%,70,77,134,57.50% +121273,816,2003,State-funded primary,219,99,120,45.20%,54.80%,3,1.40%,20,9.10%,17,201,1,7.80%,91.80%,0.50%,36,35,168,20.80% +121276,816,2007,State-funded primary,308,147,161,47.70%,52.30%,5,1.60%,44,14.30%,12,296,0,3.90%,96.10%,0.00%,29,32,308,10.40% +121277,816,2008,State-funded primary,308,166,142,53.90%,46.10%,8,2.60%,16,5.20%,63,245,0,20.50%,79.50%,0.00%,56,59,300,19.70% +121281,816,2014,State-funded primary,396,193,203,48.70%,51.30%,10,2.50%,44,11.10%,44,346,6,11.10%,87.40%,1.50%,91,92,396,23.20% +121283,816,2018,State-funded primary,413,195,218,47.20%,52.80%,14,3.40%,79,19.10%,52,354,7,12.60%,85.70%,1.70%,128,127,377,33.70% +121293,815,2040,State-funded primary,36,14,22,38.90%,61.10%,0,0.00%,3,8.30%,0,36,0,0.00%,100.00%,0.00%,5,6,36,16.70% +121296,815,2043,State-funded primary,14,8,6,57.10%,42.90%,0,0.00%,0,0.00%,1,13,0,7.10%,92.90%,0.00%,1,1,11,9.10% +121299,816,2058,State-funded primary,313,161,152,51.40%,48.60%,7,2.20%,28,8.90%,15,298,0,4.80%,95.20%,0.00%,28,28,313,8.90% +121301,815,2061,State-funded primary,78,44,34,56.40%,43.60%,3,3.80%,5,6.40%,2,76,0,2.60%,97.40%,0.00%,27,29,73,39.70% +121302,815,2063,State-funded primary,69,45,24,65.20%,34.80%,2,2.90%,9,13.00%,0,69,0,0.00%,100.00%,0.00%,3,3,69,4.30% +121306,815,2075,State-funded primary,97,49,48,50.50%,49.50%,1,1.00%,13,13.40%,0,97,0,0.00%,100.00%,0.00%,14,15,86,17.40% +121308,815,2080,State-funded primary,280,146,134,52.10%,47.90%,3,1.10%,36,12.90%,19,261,0,6.80%,93.20%,0.00%,60,61,280,21.80% +121309,815,2081,State-funded primary,17,8,9,47.10%,52.90%,0,0.00%,2,11.80%,0,17,0,0.00%,100.00%,0.00%,0,0,17,0.00% +121310,815,2083,State-funded primary,45,18,27,40.00%,60.00%,0,0.00%,7,15.60%,2,43,0,4.40%,95.60%,0.00%,3,3,45,6.70% +121311,815,2096,State-funded primary,61,31,30,50.80%,49.20%,0,0.00%,7,11.50%,1,60,0,1.60%,98.40%,0.00%,8,8,50,16.00% +121312,815,2097,State-funded primary,276,137,139,49.60%,50.40%,1,0.40%,29,10.50%,11,265,0,4.00%,96.00%,0.00%,31,33,276,12.00% +121313,815,2098,State-funded primary,24,8,16,33.30%,66.70%,0,0.00%,3,12.50%,0,24,0,0.00%,100.00%,0.00%,2,3,23,13.00% +121314,815,2108,State-funded primary,289,139,150,48.10%,51.90%,14,4.80%,30,10.40%,12,277,0,4.20%,95.80%,0.00%,159,143,252,56.70% +121319,815,2117,State-funded primary,719,326,393,45.30%,54.70%,10,1.40%,98,13.60%,160,559,0,22.30%,77.70%,0.00%,282,290,719,40.30% +121321,815,2120,State-funded primary,623,314,309,50.40%,49.60%,13,2.10%,91,14.60%,22,601,0,3.50%,96.50%,0.00%,195,201,623,32.30% +121322,815,2132,State-funded primary,89,41,48,46.10%,53.90%,1,1.10%,6,6.70%,3,86,0,3.40%,96.60%,0.00%,6,6,89,6.70% +121323,815,2133,State-funded primary,29,15,14,51.70%,48.30%,0,0.00%,5,17.20%,0,29,0,0.00%,100.00%,0.00%,2,2,25,8.00% +121324,815,2138,State-funded primary,32,16,16,50.00%,50.00%,1,3.10%,8,25.00%,0,32,0,0.00%,100.00%,0.00%,8,8,28,28.60% +121327,815,2151,State-funded primary,59,24,35,40.70%,59.30%,1,1.70%,17,28.80%,4,55,0,6.80%,93.20%,0.00%,9,10,59,16.90% +121330,815,2163,State-funded primary,185,69,116,37.30%,62.70%,6,3.20%,66,35.70%,27,158,0,14.60%,85.40%,0.00%,108,108,185,58.40% +121331,815,2164,State-funded primary,278,121,157,43.50%,56.50%,6,2.20%,30,10.80%,8,270,0,2.90%,97.10%,0.00%,63,65,278,23.40% +121332,815,2165,State-funded primary,103,55,48,53.40%,46.60%,5,4.90%,24,23.30%,8,95,0,7.80%,92.20%,0.00%,5,6,85,7.10% +121333,815,2166,State-funded primary,168,96,72,57.10%,42.90%,6,3.60%,29,17.30%,7,161,0,4.20%,95.80%,0.00%,7,10,168,6.00% +121334,815,2167,State-funded primary,244,105,139,43.00%,57.00%,2,0.80%,40,16.40%,17,227,0,7.00%,93.00%,0.00%,112,111,214,51.90% +121336,815,2170,State-funded primary,257,125,132,48.60%,51.40%,5,1.90%,42,16.30%,13,244,0,5.10%,94.90%,0.00%,92,95,235,40.40% +121337,815,2171,State-funded primary,63,31,32,49.20%,50.80%,1,1.60%,12,19.00%,4,59,0,6.30%,93.70%,0.00%,1,1,54,1.90% +121338,815,2173,State-funded primary,467,219,248,46.90%,53.10%,15,3.20%,87,18.60%,74,393,0,15.80%,84.20%,0.00%,52,54,411,13.10% +121342,815,2186,State-funded primary,106,41,65,38.70%,61.30%,2,1.90%,14,13.20%,1,105,0,0.90%,99.10%,0.00%,17,17,106,16.00% +121343,815,2188,State-funded primary,170,83,87,48.80%,51.20%,6,3.50%,32,18.80%,20,150,0,11.80%,88.20%,0.00%,18,22,170,12.90% +121344,815,2189,State-funded primary,135,71,64,52.60%,47.40%,8,5.90%,10,7.40%,11,124,0,8.10%,91.90%,0.00%,7,7,108,6.50% +121349,815,2206,State-funded primary,208,102,106,49.00%,51.00%,5,2.40%,40,19.20%,17,191,0,8.20%,91.80%,0.00%,56,59,208,28.40% +121356,815,2222,State-funded primary,214,106,108,49.50%,50.50%,3,1.40%,31,14.50%,6,208,0,2.80%,97.20%,0.00%,40,42,214,19.60% +121357,815,2223,State-funded primary,406,196,210,48.30%,51.70%,15,3.70%,42,10.30%,9,397,0,2.20%,97.80%,0.00%,59,60,406,14.80% +121358,815,2224,State-funded primary,201,96,105,47.80%,52.20%,3,1.50%,28,13.90%,1,200,0,0.50%,99.50%,0.00%,26,26,201,12.90% +121359,815,2225,State-funded primary,205,99,106,48.30%,51.70%,3,1.50%,30,14.60%,10,195,0,4.90%,95.10%,0.00%,32,32,205,15.60% +121360,816,2227,State-funded primary,92,48,44,52.20%,47.80%,3,3.30%,11,12.00%,1,91,0,1.10%,98.90%,0.00%,10,10,92,10.90% +121361,815,2228,State-funded primary,215,98,117,45.60%,54.40%,5,2.30%,23,10.70%,13,202,0,6.00%,94.00%,0.00%,10,10,215,4.70% +121362,815,2233,State-funded primary,223,103,120,46.20%,53.80%,2,0.90%,25,11.20%,6,217,0,2.70%,97.30%,0.00%,20,20,223,9.00% +121363,815,2235,State-funded primary,183,92,91,50.30%,49.70%,2,1.10%,17,9.30%,2,181,0,1.10%,98.90%,0.00%,19,19,130,14.60% +121365,815,2237,State-funded primary,150,75,75,50.00%,50.00%,9,6.00%,33,22.00%,17,133,0,11.30%,88.70%,0.00%,57,58,150,38.70% +121366,816,2240,State-funded primary,247,107,140,43.30%,56.70%,3,1.20%,21,8.50%,5,240,2,2.00%,97.20%,0.80%,6,6,247,2.40% +121367,816,2241,State-funded primary,286,127,159,44.40%,55.60%,4,1.40%,19,6.60%,13,255,18,4.50%,89.20%,6.30%,13,13,286,4.50% +121368,815,2242,State-funded primary,246,117,129,47.60%,52.40%,13,5.30%,37,15.00%,28,218,0,11.40%,88.60%,0.00%,122,114,220,51.80% +121370,815,2246,State-funded primary,189,94,95,49.70%,50.30%,3,1.60%,22,11.60%,3,186,0,1.60%,98.40%,0.00%,25,25,189,13.20% +121371,815,2247,State-funded primary,76,39,37,51.30%,48.70%,1,1.30%,7,9.20%,0,76,0,0.00%,100.00%,0.00%,11,11,76,14.50% +121372,815,2249,State-funded primary,223,114,109,51.10%,48.90%,5,2.20%,31,13.90%,3,220,0,1.30%,98.70%,0.00%,49,50,203,24.60% +121373,815,2250,State-funded primary,67,36,31,53.70%,46.30%,1,1.50%,12,17.90%,0,67,0,0.00%,100.00%,0.00%,5,5,67,7.50% +121377,815,2257,State-funded primary,174,83,91,47.70%,52.30%,2,1.10%,21,12.10%,3,171,0,1.70%,98.30%,0.00%,20,22,174,12.60% +121380,815,2305,State-funded primary,160,79,81,49.40%,50.60%,3,1.90%,20,12.50%,5,155,0,3.10%,96.90%,0.00%,46,44,141,31.20% +121382,815,2309,State-funded primary,215,106,109,49.30%,50.70%,4,1.90%,19,8.80%,13,202,0,6.00%,94.00%,0.00%,36,34,187,18.20% +121383,815,2310,State-funded primary,124,67,57,54.00%,46.00%,0,0.00%,12,9.70%,0,124,0,0.00%,100.00%,0.00%,6,8,124,6.50% +121385,815,2312,State-funded primary,66,35,31,53.00%,47.00%,2,3.00%,22,33.30%,0,66,0,0.00%,100.00%,0.00%,20,19,60,31.70% +121387,815,2316,State-funded primary,150,69,81,46.00%,54.00%,1,0.70%,24,16.00%,0,150,0,0.00%,100.00%,0.00%,13,14,150,9.30% +121388,815,2317,State-funded primary,139,67,72,48.20%,51.80%,1,0.70%,12,8.60%,3,136,0,2.20%,97.80%,0.00%,14,16,139,11.50% +121390,815,2320,State-funded primary,88,49,39,55.70%,44.30%,0,0.00%,1,1.10%,0,88,0,0.00%,100.00%,0.00%,13,13,88,14.80% +121391,815,2321,State-funded primary,62,35,27,56.50%,43.50%,2,3.20%,9,14.50%,0,62,0,0.00%,100.00%,0.00%,2,2,52,3.80% +121392,815,2324,State-funded primary,73,39,34,53.40%,46.60%,1,1.40%,8,11.00%,0,73,0,0.00%,100.00%,0.00%,6,6,73,8.20% +121393,815,2327,State-funded primary,105,55,50,52.40%,47.60%,2,1.90%,15,14.30%,2,103,0,1.90%,98.10%,0.00%,5,5,90,5.60% +121395,815,2329,State-funded primary,303,146,157,48.20%,51.80%,24,7.90%,90,29.70%,78,225,0,25.70%,74.30%,0.00%,73,74,303,24.40% +121401,815,2335,State-funded primary,68,31,37,45.60%,54.40%,3,4.40%,6,8.80%,1,67,0,1.50%,98.50%,0.00%,11,11,68,16.20% +121402,815,2336,State-funded primary,64,36,28,56.30%,43.80%,0,0.00%,10,15.60%,2,62,0,3.10%,96.90%,0.00%,12,12,64,18.80% +121403,815,2337,State-funded primary,141,63,78,44.70%,55.30%,3,2.10%,12,8.50%,4,137,0,2.80%,97.20%,0.00%,17,18,141,12.80% +121404,815,2338,State-funded primary,50,22,28,44.00%,56.00%,1,2.00%,13,26.00%,0,50,0,0.00%,100.00%,0.00%,8,11,50,22.00% +121406,815,2343,State-funded primary,26,12,14,46.20%,53.80%,1,3.80%,1,3.80%,1,25,0,3.80%,96.20%,0.00%,0,0,26,0.00% +121410,815,2347,State-funded primary,65,31,34,47.70%,52.30%,0,0.00%,10,15.40%,3,62,0,4.60%,95.40%,0.00%,9,9,65,13.80% +121411,815,2348,State-funded primary,66,34,32,51.50%,48.50%,2,3.00%,13,19.70%,0,66,0,0.00%,100.00%,0.00%,7,8,66,12.10% +121413,815,2350,State-funded primary,89,45,44,50.60%,49.40%,3,3.40%,12,13.50%,5,84,0,5.60%,94.40%,0.00%,5,5,89,5.60% +121415,815,2354,State-funded primary,51,28,23,54.90%,45.10%,2,3.90%,10,19.60%,0,51,0,0.00%,100.00%,0.00%,4,4,51,7.80% +121417,815,2356,State-funded primary,220,114,106,51.80%,48.20%,4,1.80%,20,9.10%,11,209,0,5.00%,95.00%,0.00%,19,19,220,8.60% +121419,815,2358,State-funded primary,62,32,30,51.60%,48.40%,1,1.60%,11,17.70%,6,56,0,9.70%,90.30%,0.00%,4,3,52,5.80% +121420,815,2359,State-funded primary,207,95,112,45.90%,54.10%,5,2.40%,20,9.70%,4,203,0,1.90%,98.10%,0.00%,21,22,207,10.60% +121421,815,2360,State-funded primary,95,46,49,48.40%,51.60%,1,1.10%,7,7.40%,0,95,0,0.00%,100.00%,0.00%,5,4,84,4.80% +121423,815,2363,State-funded primary,224,109,115,48.70%,51.30%,3,1.30%,22,9.80%,6,218,0,2.70%,97.30%,0.00%,59,62,224,27.70% +121427,815,2367,State-funded primary,168,78,90,46.40%,53.60%,6,3.60%,14,8.30%,30,138,0,17.90%,82.10%,0.00%,52,52,168,31.00% +121436,815,2381,State-funded primary,259,128,131,49.40%,50.60%,15,5.80%,36,13.90%,14,245,0,5.40%,94.60%,0.00%,70,70,259,27.00% +121444,815,2390,State-funded primary,215,111,104,51.60%,48.40%,2,0.90%,25,11.60%,40,175,0,18.60%,81.40%,0.00%,104,105,215,48.80% +121445,815,2391,State-funded primary,186,93,93,50.00%,50.00%,3,1.60%,18,9.70%,4,182,0,2.20%,97.80%,0.00%,9,10,160,6.30% +121447,815,2393,State-funded primary,405,198,207,48.90%,51.10%,5,1.20%,47,11.60%,14,391,0,3.50%,96.50%,0.00%,51,49,373,13.10% +121448,815,2400,State-funded primary,174,77,97,44.30%,55.70%,5,2.90%,28,16.10%,27,147,0,15.50%,84.50%,0.00%,55,56,165,33.90% +121449,815,2401,State-funded primary,372,166,206,44.60%,55.40%,8,2.20%,53,14.20%,17,355,0,4.60%,95.40%,0.00%,62,61,334,18.30% +121450,815,2402,State-funded primary,122,58,64,47.50%,52.50%,3,2.50%,14,11.50%,2,120,0,1.60%,98.40%,0.00%,7,7,122,5.70% +121451,815,2403,State-funded primary,242,121,121,50.00%,50.00%,7,2.90%,27,11.20%,3,239,0,1.20%,98.80%,0.00%,53,53,202,26.20% +121452,815,2404,State-funded primary,110,52,58,47.30%,52.70%,1,0.90%,10,9.10%,0,110,0,0.00%,100.00%,0.00%,2,2,110,1.80% +121453,815,2405,State-funded primary,44,21,23,47.70%,52.30%,3,6.80%,10,22.70%,0,44,0,0.00%,100.00%,0.00%,4,4,44,9.10% +121454,815,2406,State-funded primary,46,24,22,52.20%,47.80%,1,2.20%,15,32.60%,0,46,0,0.00%,100.00%,0.00%,25,25,43,58.10% +121455,815,2407,State-funded primary,115,58,57,50.40%,49.60%,5,4.30%,7,6.10%,1,114,0,0.90%,99.10%,0.00%,16,16,115,13.90% +121456,815,2408,State-funded primary,606,302,304,49.80%,50.20%,11,1.80%,71,11.70%,75,531,0,12.40%,87.60%,0.00%,136,133,553,24.10% +121457,815,2410,State-funded primary,250,113,137,45.20%,54.80%,8,3.20%,8,3.20%,2,248,0,0.80%,99.20%,0.00%,19,19,213,8.90% +121459,815,2413,State-funded primary,261,118,143,45.20%,54.80%,10,3.80%,25,9.60%,8,253,0,3.10%,96.90%,0.00%,86,89,261,34.10% +121460,815,2418,State-funded primary,201,97,104,48.30%,51.70%,4,2.00%,16,8.00%,5,196,0,2.50%,97.50%,0.00%,18,18,201,9.00% +121461,815,2421,State-funded primary,518,228,290,44.00%,56.00%,5,1.00%,76,14.70%,8,510,0,1.50%,98.50%,0.00%,76,62,412,15.00% +121463,815,2424,State-funded primary,203,108,95,53.20%,46.80%,1,0.50%,51,25.10%,21,182,0,10.30%,89.70%,0.00%,70,72,203,35.50% +121464,815,2425,State-funded primary,183,82,101,44.80%,55.20%,3,1.60%,34,18.60%,19,164,0,10.40%,89.60%,0.00%,38,37,154,24.00% +121472,815,3001,State-funded primary,44,22,22,50.00%,50.00%,1,2.30%,13,29.50%,4,40,0,9.10%,90.90%,0.00%,10,10,44,22.70% +121473,816,3002,State-funded primary,86,41,45,47.70%,52.30%,2,2.30%,19,22.10%,12,71,3,14.00%,82.60%,3.50%,35,35,86,40.70% +121474,816,3003,State-funded primary,187,108,79,57.80%,42.20%,7,3.70%,19,10.20%,13,174,0,7.00%,93.00%,0.00%,26,26,187,13.90% +121475,815,3005,State-funded primary,28,15,13,53.60%,46.40%,0,0.00%,5,17.90%,1,27,0,3.60%,96.40%,0.00%,4,5,27,18.50% +121477,815,3008,State-funded primary,65,23,42,35.40%,64.60%,0,0.00%,2,3.10%,3,62,0,4.60%,95.40%,0.00%,5,6,47,12.80% +121479,815,3010,State-funded primary,334,156,178,46.70%,53.30%,7,2.10%,29,8.70%,11,323,0,3.30%,96.70%,0.00%,59,60,334,18.00% +121480,815,3012,State-funded primary,11,2,9,18.20%,81.80%,1,9.10%,3,27.30%,0,11,0,0.00%,100.00%,0.00%,0,0,11,0.00% +121481,815,3015,State-funded primary,199,91,108,45.70%,54.30%,2,1.00%,26,13.10%,1,198,0,0.50%,99.50%,0.00%,26,26,199,13.10% +121482,815,3016,State-funded primary,18,10,8,55.60%,44.40%,0,0.00%,3,16.70%,0,18,0,0.00%,100.00%,0.00%,0,0,18,0.00% +121483,815,3020,State-funded primary,107,54,53,50.50%,49.50%,6,5.60%,10,9.30%,3,104,0,2.80%,97.20%,0.00%,7,7,107,6.50% +121484,815,3021,State-funded primary,94,43,51,45.70%,54.30%,2,2.10%,13,13.80%,2,92,0,2.10%,97.90%,0.00%,7,7,94,7.40% +121486,815,3025,State-funded primary,41,20,21,48.80%,51.20%,0,0.00%,2,4.90%,1,40,0,2.40%,97.60%,0.00%,2,3,41,7.30% +121487,815,3027,State-funded primary,113,55,58,48.70%,51.30%,1,0.90%,16,14.20%,0,113,0,0.00%,100.00%,0.00%,22,22,99,22.20% +121491,815,3035,State-funded primary,106,59,47,55.70%,44.30%,0,0.00%,10,9.40%,1,105,0,0.90%,99.10%,0.00%,29,29,106,27.40% +121492,815,3039,State-funded primary,67,36,31,53.70%,46.30%,4,6.00%,8,11.90%,3,64,0,4.50%,95.50%,0.00%,8,9,56,16.10% +121493,815,3040,State-funded primary,57,27,30,47.40%,52.60%,0,0.00%,16,28.10%,2,55,0,3.50%,96.50%,0.00%,9,9,57,15.80% +121495,815,3042,State-funded primary,50,20,30,40.00%,60.00%,0,0.00%,10,20.00%,1,49,0,2.00%,98.00%,0.00%,2,2,50,4.00% +121496,815,3045,State-funded primary,14,6,8,42.90%,57.10%,1,7.10%,6,42.90%,0,14,0,0.00%,100.00%,0.00%,5,5,14,35.70% +121497,815,3046,State-funded primary,66,26,40,39.40%,60.60%,1,1.50%,14,21.20%,1,65,0,1.50%,98.50%,0.00%,3,3,66,4.50% +121498,815,3050,State-funded primary,42,18,24,42.90%,57.10%,1,2.40%,15,35.70%,2,40,0,4.80%,95.20%,0.00%,6,6,42,14.30% +121499,815,3053,State-funded primary,177,81,96,45.80%,54.20%,6,3.40%,18,10.20%,8,169,0,4.50%,95.50%,0.00%,34,36,177,20.30% +121500,815,3054,State-funded primary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +121501,815,3055,State-funded primary,103,40,63,38.80%,61.20%,2,1.90%,12,11.70%,0,103,0,0.00%,100.00%,0.00%,7,7,103,6.80% +121502,815,3057,State-funded primary,68,36,32,52.90%,47.10%,0,0.00%,11,16.20%,2,66,0,2.90%,97.10%,0.00%,10,10,58,17.20% +121503,815,3060,State-funded primary,36,12,24,33.30%,66.70%,3,8.30%,15,41.70%,0,36,0,0.00%,100.00%,0.00%,6,6,32,18.80% +121504,815,3062,State-funded primary,102,55,47,53.90%,46.10%,1,1.00%,17,16.70%,10,92,0,9.80%,90.20%,0.00%,16,17,102,16.70% +121507,815,3069,State-funded primary,77,30,47,39.00%,61.00%,1,1.30%,5,6.50%,4,73,0,5.20%,94.80%,0.00%,9,9,68,13.20% +121510,815,3088,State-funded primary,49,28,21,57.10%,42.90%,0,0.00%,9,18.40%,0,49,0,0.00%,100.00%,0.00%,4,4,49,8.20% +121513,815,3099,State-funded primary,60,32,28,53.30%,46.70%,4,6.70%,13,21.70%,0,60,0,0.00%,100.00%,0.00%,4,4,60,6.70% +121514,815,3101,State-funded primary,87,44,43,50.60%,49.40%,3,3.40%,12,13.80%,0,87,0,0.00%,100.00%,0.00%,10,10,87,11.50% +121515,815,3108,State-funded primary,55,36,19,65.50%,34.50%,3,5.50%,5,9.10%,1,54,0,1.80%,98.20%,0.00%,15,16,43,37.20% +121516,815,3109,State-funded primary,89,44,45,49.40%,50.60%,3,3.40%,13,14.60%,0,89,0,0.00%,100.00%,0.00%,6,7,89,7.90% +121517,815,3110,State-funded primary,32,17,15,53.10%,46.90%,0,0.00%,3,9.40%,0,32,0,0.00%,100.00%,0.00%,1,1,32,3.10% +121518,815,3113,State-funded primary,93,47,46,50.50%,49.50%,1,1.10%,12,12.90%,0,93,0,0.00%,100.00%,0.00%,6,7,93,7.50% +121521,815,3119,State-funded primary,23,8,15,34.80%,65.20%,1,4.30%,6,26.10%,0,23,0,0.00%,100.00%,0.00%,3,3,23,13.00% +121523,815,3122,State-funded primary,38,19,19,50.00%,50.00%,0,0.00%,10,26.30%,3,35,0,7.90%,92.10%,0.00%,4,4,38,10.50% +121524,815,3124,State-funded primary,44,27,17,61.40%,38.60%,3,6.80%,5,11.40%,1,43,0,2.30%,97.70%,0.00%,6,6,38,15.80% +121525,815,3126,State-funded primary,74,41,33,55.40%,44.60%,0,0.00%,10,13.50%,0,74,0,0.00%,100.00%,0.00%,11,11,73,15.10% +121526,815,3130,State-funded primary,61,33,28,54.10%,45.90%,2,3.30%,10,16.40%,0,61,0,0.00%,100.00%,0.00%,6,7,61,11.50% +121528,815,3139,State-funded primary,74,36,38,48.60%,51.40%,1,1.40%,10,13.50%,2,72,0,2.70%,97.30%,0.00%,20,20,74,27.00% +121529,815,3150,State-funded primary,90,38,52,42.20%,57.80%,0,0.00%,15,16.70%,0,90,0,0.00%,100.00%,0.00%,0,0,90,0.00% +121531,816,3152,State-funded primary,118,57,61,48.30%,51.70%,1,0.80%,12,10.20%,0,118,0,0.00%,100.00%,0.00%,3,3,118,2.50% +121534,815,3155,State-funded primary,127,70,57,55.10%,44.90%,0,0.00%,12,9.40%,1,126,0,0.80%,99.20%,0.00%,17,17,127,13.40% +121535,816,3156,State-funded primary,313,154,159,49.20%,50.80%,12,3.80%,31,9.90%,36,276,1,11.50%,88.20%,0.30%,34,35,313,11.20% +121536,816,3158,State-funded primary,216,103,113,47.70%,52.30%,3,1.40%,23,10.60%,52,163,1,24.10%,75.50%,0.50%,22,23,216,10.60% +121537,816,3159,State-funded primary,49,22,27,44.90%,55.10%,1,2.00%,6,12.20%,3,46,0,6.10%,93.90%,0.00%,7,7,49,14.30% +121538,815,3160,State-funded primary,85,37,48,43.50%,56.50%,2,2.40%,9,10.60%,0,85,0,0.00%,100.00%,0.00%,8,8,85,9.40% +121539,815,3161,State-funded primary,37,19,18,51.40%,48.60%,4,10.80%,6,16.20%,0,37,0,0.00%,100.00%,0.00%,17,17,37,45.90% +121541,815,3165,State-funded primary,81,40,41,49.40%,50.60%,0,0.00%,20,24.70%,1,80,0,1.20%,98.80%,0.00%,16,17,75,22.70% +121542,815,3207,State-funded primary,26,17,9,65.40%,34.60%,0,0.00%,1,3.80%,0,26,0,0.00%,100.00%,0.00%,3,3,26,11.50% +121543,815,3208,State-funded primary,32,17,15,53.10%,46.90%,0,0.00%,8,25.00%,0,32,0,0.00%,100.00%,0.00%,5,5,32,15.60% +121544,815,3210,State-funded primary,293,142,151,48.50%,51.50%,6,2.00%,23,7.80%,7,286,0,2.40%,97.60%,0.00%,36,36,293,12.30% +121547,816,3222,State-funded primary,101,48,53,47.50%,52.50%,3,3.00%,16,15.80%,1,100,0,1.00%,99.00%,0.00%,3,5,101,5.00% +121548,815,3223,State-funded primary,78,49,29,62.80%,37.20%,1,1.30%,10,12.80%,0,78,0,0.00%,100.00%,0.00%,3,3,72,4.20% +121549,815,3225,State-funded primary,50,26,24,52.00%,48.00%,0,0.00%,5,10.00%,5,45,0,10.00%,90.00%,0.00%,10,10,48,20.80% +121550,815,3226,State-funded primary,70,37,33,52.90%,47.10%,1,1.40%,8,11.40%,0,70,0,0.00%,100.00%,0.00%,3,3,70,4.30% +121551,815,3227,State-funded primary,102,44,58,43.10%,56.90%,5,4.90%,11,10.80%,0,102,0,0.00%,100.00%,0.00%,12,12,102,11.80% +121552,815,3228,State-funded primary,42,20,22,47.60%,52.40%,0,0.00%,8,19.00%,5,36,1,11.90%,85.70%,2.40%,12,12,42,28.60% +121555,815,3232,State-funded primary,91,50,41,54.90%,45.10%,0,0.00%,15,16.50%,0,91,0,0.00%,100.00%,0.00%,2,2,91,2.20% +121556,815,3233,State-funded primary,85,40,45,47.10%,52.90%,3,3.50%,8,9.40%,0,85,0,0.00%,100.00%,0.00%,7,9,71,12.70% +121558,815,3235,State-funded primary,34,13,21,38.20%,61.80%,0,0.00%,1,2.90%,1,33,0,2.90%,97.10%,0.00%,0,0,34,0.00% +121559,815,3236,State-funded primary,207,102,105,49.30%,50.70%,5,2.40%,24,11.60%,3,204,0,1.40%,98.60%,0.00%,5,5,207,2.40% +121560,815,3237,State-funded primary,55,31,24,56.40%,43.60%,3,5.50%,7,12.70%,1,54,0,1.80%,98.20%,0.00%,6,6,55,10.90% +121561,815,3238,State-funded primary,15,5,10,33.30%,66.70%,1,6.70%,5,33.30%,0,15,0,0.00%,100.00%,0.00%,1,1,15,6.70% +121562,815,3240,State-funded primary,71,36,35,50.70%,49.30%,3,4.20%,15,21.10%,0,71,0,0.00%,100.00%,0.00%,4,4,71,5.60% +121563,815,3241,State-funded primary,54,29,25,53.70%,46.30%,0,0.00%,8,14.80%,1,53,0,1.90%,98.10%,0.00%,7,7,54,13.00% +121564,815,3242,State-funded primary,110,59,51,53.60%,46.40%,5,4.50%,13,11.80%,5,105,0,4.50%,95.50%,0.00%,14,14,94,14.90% +121566,815,3244,State-funded primary,180,99,81,55.00%,45.00%,4,2.20%,25,13.90%,0,180,0,0.00%,100.00%,0.00%,10,10,180,5.60% +121569,815,3248,State-funded primary,181,97,84,53.60%,46.40%,2,1.10%,13,7.20%,3,178,0,1.70%,98.30%,0.00%,23,23,181,12.70% +121570,815,3249,State-funded primary,90,56,34,62.20%,37.80%,4,4.40%,11,12.20%,0,90,0,0.00%,100.00%,0.00%,10,11,90,12.20% +121572,815,3252,State-funded primary,69,33,36,47.80%,52.20%,0,0.00%,10,14.50%,5,64,0,7.20%,92.80%,0.00%,5,5,69,7.20% +121573,815,3253,State-funded primary,117,71,46,60.70%,39.30%,2,1.70%,13,11.10%,3,114,0,2.60%,97.40%,0.00%,7,7,103,6.80% +121575,815,3255,State-funded primary,38,12,26,31.60%,68.40%,0,0.00%,5,13.20%,0,38,0,0.00%,100.00%,0.00%,7,7,38,18.40% +121576,815,3256,State-funded primary,33,19,14,57.60%,42.40%,0,0.00%,5,15.20%,0,33,0,0.00%,100.00%,0.00%,8,8,26,30.80% +121578,815,3258,State-funded primary,43,14,29,32.60%,67.40%,1,2.30%,11,25.60%,0,43,0,0.00%,100.00%,0.00%,5,5,43,11.60% +121580,815,3261,State-funded primary,34,17,17,50.00%,50.00%,0,0.00%,11,32.40%,0,34,0,0.00%,100.00%,0.00%,2,2,34,5.90% +121581,815,3262,State-funded primary,205,109,96,53.20%,46.80%,2,1.00%,21,10.20%,10,195,0,4.90%,95.10%,0.00%,29,29,205,14.10% +121586,815,3268,State-funded primary,347,158,189,45.50%,54.50%,4,1.20%,70,20.20%,46,301,0,13.30%,86.70%,0.00%,105,109,347,31.40% +121587,815,3270,State-funded primary,221,109,112,49.30%,50.70%,2,0.90%,29,13.10%,11,210,0,5.00%,95.00%,0.00%,12,13,197,6.60% +121588,815,3271,State-funded primary,100,52,48,52.00%,48.00%,4,4.00%,8,8.00%,0,100,0,0.00%,100.00%,0.00%,10,11,92,12.00% +121589,815,3272,State-funded primary,5,3,2,60.00%,40.00%,0,0.00%,3,60.00%,1,4,0,20.00%,80.00%,0.00%,3,3,4,75.00% +121590,815,3273,State-funded primary,145,84,61,57.90%,42.10%,2,1.40%,14,9.70%,29,116,0,20.00%,80.00%,0.00%,29,30,145,20.70% +121592,815,3275,State-funded primary,111,57,54,51.40%,48.60%,5,4.50%,12,10.80%,0,111,0,0.00%,100.00%,0.00%,14,15,97,15.50% +121593,815,3276,State-funded primary,107,48,59,44.90%,55.10%,1,0.90%,20,18.70%,0,107,0,0.00%,100.00%,0.00%,25,25,107,23.40% +121594,815,3277,State-funded primary,102,45,57,44.10%,55.90%,1,1.00%,12,11.80%,0,102,0,0.00%,100.00%,0.00%,7,7,86,8.10% +121596,815,3282,State-funded primary,125,59,66,47.20%,52.80%,2,1.60%,23,18.40%,5,120,0,4.00%,96.00%,0.00%,7,7,125,5.60% +121599,815,3285,State-funded primary,94,48,46,51.10%,48.90%,5,5.30%,10,10.60%,3,91,0,3.20%,96.80%,0.00%,18,18,94,19.10% +121600,815,3287,State-funded primary,143,74,69,51.70%,48.30%,3,2.10%,17,11.90%,0,143,0,0.00%,100.00%,0.00%,11,11,143,7.70% +121602,815,3289,State-funded primary,37,16,21,43.20%,56.80%,0,0.00%,3,8.10%,0,37,0,0.00%,100.00%,0.00%,2,2,37,5.40% +121604,815,3301,State-funded primary,110,61,49,55.50%,44.50%,0,0.00%,8,7.30%,2,108,0,1.80%,98.20%,0.00%,8,8,110,7.30% +121606,815,3304,State-funded primary,75,39,36,52.00%,48.00%,0,0.00%,15,20.00%,1,74,0,1.30%,98.70%,0.00%,7,8,47,17.00% +121608,815,3306,State-funded primary,51,20,31,39.20%,60.80%,1,2.00%,11,21.60%,0,51,0,0.00%,100.00%,0.00%,7,7,51,13.70% +121609,815,3307,State-funded primary,200,97,103,48.50%,51.50%,7,3.50%,34,17.00%,3,196,1,1.50%,98.00%,0.50%,46,48,200,24.00% +121610,815,3308,State-funded primary,45,20,25,44.40%,55.60%,1,2.20%,4,8.90%,0,45,0,0.00%,100.00%,0.00%,4,5,45,11.10% +121611,815,3315,State-funded primary,129,63,66,48.80%,51.20%,4,3.10%,8,6.20%,1,128,0,0.80%,99.20%,0.00%,13,14,129,10.90% +121613,815,3319,State-funded primary,108,45,63,41.70%,58.30%,1,0.90%,15,13.90%,6,102,0,5.60%,94.40%,0.00%,8,8,108,7.40% +121614,815,3320,State-funded primary,50,22,28,44.00%,56.00%,0,0.00%,4,8.00%,1,49,0,2.00%,98.00%,0.00%,2,3,50,6.00% +121615,815,3326,State-funded primary,276,137,139,49.60%,50.40%,9,3.30%,42,15.20%,23,253,0,8.30%,91.70%,0.00%,29,29,276,10.50% +121616,815,3331,State-funded primary,34,15,19,44.10%,55.90%,0,0.00%,5,14.70%,0,34,0,0.00%,100.00%,0.00%,5,6,26,23.10% +121619,815,3337,State-funded primary,102,51,51,50.00%,50.00%,0,0.00%,8,7.80%,0,102,0,0.00%,100.00%,0.00%,7,8,102,7.80% +121620,815,3350,State-funded primary,62,29,33,46.80%,53.20%,1,1.60%,5,8.10%,0,62,0,0.00%,100.00%,0.00%,3,3,57,5.30% +121621,815,3351,State-funded primary,83,46,37,55.40%,44.60%,0,0.00%,14,16.90%,0,83,0,0.00%,100.00%,0.00%,3,3,73,4.10% +121622,815,3352,State-funded primary,50,30,20,60.00%,40.00%,1,2.00%,6,12.00%,0,50,0,0.00%,100.00%,0.00%,14,14,50,28.00% +121625,815,3355,State-funded primary,153,63,90,41.20%,58.80%,2,1.30%,14,9.20%,2,151,0,1.30%,98.70%,0.00%,1,1,140,0.70% +121629,815,3360,State-funded primary,55,27,28,49.10%,50.90%,1,1.80%,5,9.10%,4,51,0,7.30%,92.70%,0.00%,10,10,53,18.90% +121631,815,3362,State-funded primary,50,31,19,62.00%,38.00%,4,8.00%,8,16.00%,0,50,0,0.00%,100.00%,0.00%,8,8,47,17.00% +121635,815,3369,State-funded primary,135,68,67,50.40%,49.60%,0,0.00%,19,14.10%,0,135,0,0.00%,100.00%,0.00%,9,9,135,6.70% +121638,815,3372,State-funded primary,148,69,79,46.60%,53.40%,2,1.40%,20,13.50%,32,116,0,21.60%,78.40%,0.00%,11,11,141,7.80% +121663,815,4004,State-funded secondary,589,287,302,48.70%,51.30%,21,3.60%,137,23.30%,22,567,0,3.70%,96.30%,0.00%,144,158,589,26.80% +121666,815,4035,State-funded secondary,986,509,477,51.60%,48.40%,20,2.00%,165,16.70%,31,911,44,3.10%,92.40%,4.50%,149,171,870,19.70% +121667,815,4039,State-funded secondary,780,411,369,52.70%,47.30%,24,3.10%,90,11.50%,18,762,0,2.30%,97.70%,0.00%,140,129,643,20.10% +121668,815,4041,State-funded secondary,404,197,207,48.80%,51.20%,8,2.00%,47,11.60%,5,399,0,1.20%,98.80%,0.00%,87,99,404,24.50% +121670,815,4052,State-funded secondary,547,270,277,49.40%,50.60%,14,2.60%,103,18.80%,19,527,1,3.50%,96.30%,0.20%,96,106,547,19.40% +121673,816,4063,State-funded secondary,1509,757,752,50.20%,49.80%,30,2.00%,155,10.30%,110,1392,7,7.30%,92.20%,0.50%,176,173,1196,14.50% +121679,815,4075,State-funded secondary,345,170,175,49.30%,50.70%,20,5.80%,84,24.30%,3,342,0,0.90%,99.10%,0.00%,53,54,339,15.90% +121681,815,4077,State-funded secondary,1019,467,552,45.80%,54.20%,22,2.20%,57,5.60%,43,973,3,4.20%,95.50%,0.30%,158,155,804,19.30% +121687,815,4202,State-funded secondary,1554,746,808,48.00%,52.00%,39,2.50%,197,12.70%,41,1499,14,2.60%,96.50%,0.90%,243,240,1311,18.30% +121689,815,4205,State-funded secondary,617,278,338,45.10%,54.80%,15,2.40%,94,15.20%,18,599,0,2.90%,97.10%,0.00%,71,73,549,13.30% +121690,815,4206,State-funded secondary,356,163,193,45.80%,54.20%,18,5.10%,56,15.70%,17,339,0,4.80%,95.20%,0.00%,46,52,356,14.60% +121694,815,4215,State-funded secondary,919,482,437,52.40%,47.60%,4,0.40%,63,6.90%,54,839,26,5.90%,91.30%,2.80%,31,26,620,4.20% +121699,815,4221,State-funded secondary,437,216,221,49.40%,50.60%,22,5.00%,109,24.90%,22,414,1,5.00%,94.70%,0.20%,70,80,433,18.50% +121700,815,4223,State-funded secondary,393,183,210,46.60%,53.40%,18,4.60%,97,24.70%,3,390,0,0.80%,99.20%,0.00%,62,69,393,17.60% +121702,815,4225,State-funded secondary,1149,606,538,52.70%,46.80%,26,2.30%,162,14.10%,152,997,0,13.20%,86.80%,0.00%,256,276,1149,24.00% +121711,816,4508,State-funded secondary,1278,638,640,49.90%,50.10%,42,3.30%,106,8.30%,83,1185,10,6.50%,92.70%,0.80%,205,207,1109,18.70% +121716,815,4608,State-funded secondary,838,0,838,0.00%,100.00%,2,0.20%,36,4.30%,43,791,4,5.10%,94.40%,0.50%,46,42,611,6.90% +121720,816,4702,State-funded secondary,1421,737,684,51.90%,48.10%,22,1.50%,148,10.40%,122,1286,13,8.60%,90.50%,0.90%,131,128,937,13.70% +121721,815,5200,State-funded primary,41,23,18,56.10%,43.90%,1,2.40%,0,0.00%,1,40,0,2.40%,97.60%,0.00%,3,4,35,11.40% +121722,816,6000,Independent school,654,292,362,44.60%,55.40%,3,0.50%,83,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121724,816,6002,Independent school,1244,584,660,46.90%,53.10%,0,0.00%,152,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121725,815,6000,Independent school,235,235,0,100.00%,0.00%,6,2.60%,77,32.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121726,816,6003,Independent school,197,197,0,100.00%,0.00%,1,0.50%,30,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121730,815,6002,Independent school,534,267,267,50.00%,50.00%,2,0.40%,109,20.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121732,815,6003,Independent school,185,98,87,53.00%,47.00%,0,0.00%,36,19.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121733,815,6004,Independent school,179,89,90,49.70%,50.30%,6,3.40%,35,19.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121735,815,6006,Independent school,414,181,233,43.70%,56.30%,3,0.70%,184,44.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121738,815,6009,Independent school,205,27,178,13.20%,86.80%,1,0.50%,65,31.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121740,815,6011,Independent school,451,202,249,44.80%,55.20%,0,0.00%,47,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121741,815,6012,Independent school,591,472,119,79.90%,20.10%,5,0.80%,98,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121743,815,6014,Independent school,844,401,443,47.50%,52.50%,0,0.00%,35,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121746,815,6017,Independent school,124,50,74,40.30%,59.70%,0,0.00%,25,20.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121748,815,6019,Independent school,253,118,135,46.60%,53.40%,15,5.90%,46,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121749,815,6035,Independent school,214,214,0,100.00%,0.00%,0,0.00%,57,26.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121752,815,6022,Independent school,348,151,197,43.40%,56.60%,1,0.30%,95,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121753,815,6023,Independent school,4,1,3,25.00%,75.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121757,815,6027,Independent school,146,65,81,44.50%,55.50%,0,0.00%,39,26.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121758,815,6028,Independent school,790,358,432,45.30%,54.70%,1,0.10%,102,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121759,816,6008,Independent school,167,87,80,52.10%,47.90%,2,1.20%,21,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121763,815,6032,Independent school,30,11,19,36.70%,63.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +121764,815,7000,State-funded special school,59,0,59,0.00%,100.00%,59,100.00%,0,0.00%,0,59,0,0.00%,100.00%,0.00%,38,41,59,69.50% +121765,815,7002,Non-maintained special school,66,0,66,0.00%,100.00%,66,100.00%,0,0.00%,1,59,6,1.50%,89.40%,9.10%,4,10,55,18.20% +121766,815,7004,State-funded special school,94,36,58,38.30%,61.70%,94,100.00%,0,0.00%,0,94,0,0.00%,100.00%,0.00%,33,30,63,47.60% +121771,815,7015,State-funded special school,73,22,51,30.10%,69.90%,73,100.00%,0,0.00%,4,69,0,5.50%,94.50%,0.00%,17,12,49,24.50% +121772,815,7017,State-funded special school,96,28,68,29.20%,70.80%,96,100.00%,0,0.00%,1,95,0,1.00%,99.00%,0.00%,45,35,69,50.70% +121776,815,7024,State-funded special school,110,37,73,33.60%,66.40%,110,100.00%,0,0.00%,13,97,0,11.80%,88.20%,0.00%,33,16,55,29.10% +121778,815,7027,State-funded special school,87,31,56,35.60%,64.40%,87,100.00%,0,0.00%,8,79,0,9.20%,90.80%,0.00%,38,33,69,47.80% +121779,815,7029,State-funded special school,308,84,224,27.30%,72.70%,308,100.00%,0,0.00%,10,298,0,3.20%,96.80%,0.00%,103,114,307,37.10% +121782,940,1000,State-funded nursery,115,48,67,41.70%,58.30%,3,2.60%,19,16.50%,31,84,0,27.00%,73.00%,0.00%,0,0,0,0.00% +121783,940,1001,State-funded nursery,110,51,59,46.40%,53.60%,0,0.00%,2,1.80%,28,82,0,25.50%,74.50%,0.00%,0,0,0,0.00% +121784,940,1003,State-funded nursery,86,45,41,52.30%,47.70%,1,1.20%,5,5.80%,52,27,7,60.50%,31.40%,8.10%,0,0,0,0.00% +121785,941,1005,State-funded nursery,86,33,53,38.40%,61.60%,0,0.00%,2,2.30%,25,61,0,29.10%,70.90%,0.00%,0,0,0,0.00% +121786,941,1007,State-funded nursery,43,19,24,44.20%,55.80%,0,0.00%,4,9.30%,17,26,0,39.50%,60.50%,0.00%,0,0,0,0.00% +121787,941,1008,State-funded nursery,45,22,23,48.90%,51.10%,0,0.00%,6,13.30%,17,27,1,37.80%,60.00%,2.20%,0,0,0,0.00% +121788,941,1009,State-funded nursery,55,28,27,50.90%,49.10%,0,0.00%,0,0.00%,8,47,0,14.50%,85.50%,0.00%,0,0,0,0.00% +121791,383,3927,State-funded primary,397,202,195,50.90%,49.10%,15,3.80%,96,24.20%,181,215,1,45.60%,54.20%,0.30%,178,189,397,47.60% +121792,204,3666,State-funded primary,211,103,108,48.80%,51.20%,9,4.30%,33,15.60%,143,68,0,67.80%,32.20%,0.00%,69,71,187,38.00% +121794,941,2002,State-funded primary,169,79,90,46.70%,53.30%,1,0.60%,20,11.80%,0,169,0,0.00%,100.00%,0.00%,18,22,169,13.00% +121798,941,2006,State-funded primary,43,24,19,55.80%,44.20%,0,0.00%,4,9.30%,0,43,0,0.00%,100.00%,0.00%,1,1,43,2.30% +121799,940,2007,State-funded primary,204,96,108,47.10%,52.90%,0,0.00%,22,10.80%,4,200,0,2.00%,98.00%,0.00%,30,30,204,14.70% +121800,941,2008,State-funded primary,253,134,119,53.00%,47.00%,3,1.20%,26,10.30%,4,248,1,1.60%,98.00%,0.40%,36,37,253,14.60% +121803,941,2012,State-funded primary,98,44,54,44.90%,55.10%,2,2.00%,1,1.00%,5,93,0,5.10%,94.90%,0.00%,8,10,98,10.20% +121808,940,2019,State-funded primary,203,111,92,54.70%,45.30%,3,1.50%,19,9.40%,33,170,0,16.30%,83.70%,0.00%,60,61,203,30.00% +121811,941,2023,State-funded primary,47,27,20,57.40%,42.60%,4,8.50%,18,38.30%,1,45,1,2.10%,95.70%,2.10%,7,8,47,17.00% +121812,941,2024,State-funded primary,189,87,102,46.00%,54.00%,2,1.10%,25,13.20%,4,185,0,2.10%,97.90%,0.00%,12,13,189,6.90% +121814,941,2026,State-funded primary,110,51,59,46.40%,53.60%,2,1.80%,14,12.70%,0,110,0,0.00%,100.00%,0.00%,12,12,100,12.00% +121821,940,2041,State-funded primary,138,63,75,45.70%,54.30%,3,2.20%,12,8.70%,11,124,3,8.00%,89.90%,2.20%,17,19,138,13.80% +121822,941,2042,State-funded primary,56,33,23,58.90%,41.10%,0,0.00%,5,8.90%,1,55,0,1.80%,98.20%,0.00%,1,1,56,1.80% +121826,941,2046,State-funded primary,51,27,24,52.90%,47.10%,1,2.00%,10,19.60%,1,50,0,2.00%,98.00%,0.00%,2,2,51,3.90% +121827,941,2047,State-funded primary,110,52,58,47.30%,52.70%,1,0.90%,6,5.50%,2,108,0,1.80%,98.20%,0.00%,7,7,110,6.40% +121828,940,2048,State-funded primary,336,180,156,53.60%,46.40%,6,1.80%,24,7.10%,19,317,0,5.70%,94.30%,0.00%,74,78,336,23.20% +121843,941,2067,State-funded primary,196,91,105,46.40%,53.60%,4,2.00%,32,16.30%,3,193,0,1.50%,98.50%,0.00%,31,34,196,17.30% +121844,941,2068,State-funded primary,132,71,61,53.80%,46.20%,0,0.00%,12,9.10%,2,130,0,1.50%,98.50%,0.00%,16,16,132,12.10% +121845,941,2069,State-funded primary,68,33,35,48.50%,51.50%,0,0.00%,6,8.80%,12,56,0,17.60%,82.40%,0.00%,1,1,68,1.50% +121847,940,2072,State-funded primary,82,48,34,58.50%,41.50%,0,0.00%,5,6.10%,6,76,0,7.30%,92.70%,0.00%,15,16,82,19.50% +121849,941,2074,State-funded primary,172,77,95,44.80%,55.20%,2,1.20%,16,9.30%,10,162,0,5.80%,94.20%,0.00%,19,19,172,11.00% +121850,941,2075,State-funded primary,58,32,26,55.20%,44.80%,1,1.70%,15,25.90%,1,57,0,1.70%,98.30%,0.00%,10,10,58,17.20% +121851,941,2076,State-funded primary,207,97,110,46.90%,53.10%,3,1.40%,10,4.80%,11,191,5,5.30%,92.30%,2.40%,19,19,207,9.20% +121854,941,2079,State-funded primary,317,186,131,58.70%,41.30%,4,1.30%,50,15.80%,10,307,0,3.20%,96.80%,0.00%,20,22,317,6.90% +121857,940,2082,State-funded primary,81,43,38,53.10%,46.90%,3,3.70%,17,21.00%,12,69,0,14.80%,85.20%,0.00%,44,44,81,54.30% +121861,940,2086,State-funded primary,265,137,128,51.70%,48.30%,5,1.90%,40,15.10%,34,231,0,12.80%,87.20%,0.00%,37,37,265,14.00% +121862,940,2087,State-funded primary,55,29,26,52.70%,47.30%,1,1.80%,4,7.30%,18,37,0,32.70%,67.30%,0.00%,14,15,47,31.90% +121864,941,2090,State-funded primary,144,68,76,47.20%,52.80%,2,1.40%,22,15.30%,6,138,0,4.20%,95.80%,0.00%,18,18,144,12.50% +121865,940,2091,State-funded primary,82,38,44,46.30%,53.70%,1,1.20%,9,11.00%,1,81,0,1.20%,98.80%,0.00%,14,14,82,17.10% +121871,940,2100,State-funded primary,177,94,83,53.10%,46.90%,6,3.40%,30,16.90%,66,109,2,37.30%,61.60%,1.10%,28,28,177,15.80% +121876,941,2107,State-funded primary,109,45,64,41.30%,58.70%,0,0.00%,11,10.10%,6,103,0,5.50%,94.50%,0.00%,4,4,102,3.90% +121877,941,2108,State-funded primary,96,50,46,52.10%,47.90%,2,2.10%,10,10.40%,3,93,0,3.10%,96.90%,0.00%,20,20,96,20.80% +121891,940,2130,State-funded primary,352,183,169,52.00%,48.00%,5,1.40%,47,13.40%,50,298,4,14.20%,84.70%,1.10%,51,58,352,16.50% +121897,941,2137,State-funded primary,438,208,230,47.50%,52.50%,4,0.90%,77,17.60%,132,305,1,30.10%,69.60%,0.20%,95,101,413,24.50% +121899,940,2140,State-funded primary,258,144,114,55.80%,44.20%,5,1.90%,26,10.10%,16,242,0,6.20%,93.80%,0.00%,46,47,223,21.10% +121901,940,2144,State-funded primary,397,197,200,49.60%,50.40%,2,0.50%,31,7.80%,48,347,2,12.10%,87.40%,0.50%,67,71,366,19.40% +121902,940,2145,State-funded primary,468,235,233,50.20%,49.80%,4,0.90%,29,6.20%,23,445,0,4.90%,95.10%,0.00%,76,77,468,16.50% +121909,940,2155,State-funded primary,413,198,215,47.90%,52.10%,5,1.20%,38,9.20%,31,381,1,7.50%,92.30%,0.20%,89,92,413,22.30% +121912,941,2160,State-funded primary,392,188,204,48.00%,52.00%,16,4.10%,55,14.00%,220,171,1,56.10%,43.60%,0.30%,130,134,392,34.20% +121920,941,2174,State-funded primary,244,124,120,50.80%,49.20%,13,5.30%,34,13.90%,183,48,13,75.00%,19.70%,5.30%,36,37,205,18.00% +121922,941,2176,State-funded primary,223,106,117,47.50%,52.50%,5,2.20%,36,16.10%,84,138,1,37.70%,61.90%,0.40%,21,21,198,10.60% +121924,941,2181,State-funded primary,237,121,116,51.10%,48.90%,6,2.50%,35,14.80%,51,186,0,21.50%,78.50%,0.00%,57,58,237,24.50% +121926,941,2183,State-funded primary,416,199,217,47.80%,52.20%,3,0.70%,21,5.00%,58,358,0,13.90%,86.10%,0.00%,45,47,416,11.30% +121927,941,2184,State-funded primary,448,225,223,50.20%,49.80%,10,2.20%,59,13.20%,104,343,1,23.20%,76.60%,0.20%,66,71,398,17.80% +121931,941,2188,State-funded primary,659,335,324,50.80%,49.20%,12,1.80%,93,14.10%,135,520,4,20.50%,78.90%,0.60%,116,119,611,19.50% +121939,941,2197,State-funded primary,455,219,236,48.10%,51.90%,5,1.10%,28,6.20%,235,214,6,51.60%,47.00%,1.30%,45,45,417,10.80% +121942,940,2206,State-funded primary,440,230,210,52.30%,47.70%,17,3.90%,63,14.30%,52,388,0,11.80%,88.20%,0.00%,86,88,406,21.70% +121943,941,2208,State-funded primary,478,218,260,45.60%,54.40%,38,7.90%,63,13.20%,203,274,1,42.50%,57.30%,0.20%,116,119,436,27.30% +121945,941,2210,State-funded primary,417,216,201,51.80%,48.20%,12,2.90%,32,7.70%,32,385,0,7.70%,92.30%,0.00%,41,45,417,10.80% +121951,940,2217,State-funded primary,627,316,311,50.40%,49.60%,4,0.60%,48,7.70%,27,600,0,4.30%,95.70%,0.00%,68,71,627,11.30% +121952,941,2218,State-funded primary,311,144,167,46.30%,53.70%,32,10.30%,61,19.60%,116,193,2,37.30%,62.10%,0.60%,94,96,311,30.90% +121957,941,3002,State-funded primary,31,20,11,64.50%,35.50%,1,3.20%,7,22.60%,4,27,0,12.90%,87.10%,0.00%,16,16,31,51.60% +121961,941,3008,State-funded primary,199,107,92,53.80%,46.20%,7,3.50%,17,8.50%,9,190,0,4.50%,95.50%,0.00%,23,24,199,12.10% +121964,941,3012,State-funded primary,489,249,240,50.90%,49.10%,10,2.00%,45,9.20%,9,480,0,1.80%,98.20%,0.00%,68,70,489,14.30% +121967,941,3019,State-funded primary,107,47,60,43.90%,56.10%,2,1.90%,13,12.10%,0,107,0,0.00%,100.00%,0.00%,4,4,107,3.70% +121969,941,3026,State-funded primary,80,42,38,52.50%,47.50%,1,1.30%,4,5.00%,2,78,0,2.50%,97.50%,0.00%,3,3,80,3.80% +121970,941,3028,State-funded primary,85,39,46,45.90%,54.10%,2,2.40%,3,3.50%,26,59,0,30.60%,69.40%,0.00%,27,29,85,34.10% +121971,941,3029,State-funded primary,64,30,34,46.90%,53.10%,1,1.60%,5,7.80%,0,64,0,0.00%,100.00%,0.00%,6,8,64,12.50% +121972,940,3030,State-funded primary,193,93,100,48.20%,51.80%,3,1.60%,12,6.20%,3,190,0,1.60%,98.40%,0.00%,12,12,193,6.20% +121975,940,3033,State-funded primary,114,54,60,47.40%,52.60%,1,0.90%,8,7.00%,0,112,2,0.00%,98.20%,1.80%,4,4,103,3.90% +121976,941,3034,State-funded primary,185,74,111,40.00%,60.00%,1,0.50%,26,14.10%,4,181,0,2.20%,97.80%,0.00%,14,14,185,7.60% +121985,941,3049,State-funded primary,139,65,74,46.80%,53.20%,5,3.60%,16,11.50%,1,138,0,0.70%,99.30%,0.00%,6,7,139,5.00% +121992,941,3060,State-funded primary,66,30,36,45.50%,54.50%,2,3.00%,9,13.60%,1,64,1,1.50%,97.00%,1.50%,2,2,66,3.00% +121993,941,3062,State-funded primary,109,59,50,54.10%,45.90%,1,0.90%,14,12.80%,0,109,0,0.00%,100.00%,0.00%,6,7,78,9.00% +121994,940,3066,State-funded primary,100,41,59,41.00%,59.00%,0,0.00%,23,23.00%,1,99,0,1.00%,99.00%,0.00%,1,1,100,1.00% +121998,940,3070,State-funded primary,228,128,100,56.10%,43.90%,1,0.40%,29,12.70%,84,144,0,36.80%,63.20%,0.00%,25,26,211,12.30% +122002,941,3077,State-funded primary,243,128,115,52.70%,47.30%,1,0.40%,17,7.00%,6,237,0,2.50%,97.50%,0.00%,11,11,210,5.20% +122003,941,3080,State-funded primary,64,24,40,37.50%,62.50%,1,1.60%,11,17.20%,0,64,0,0.00%,100.00%,0.00%,0,1,64,1.60% +122007,941,3088,State-funded primary,87,42,45,48.30%,51.70%,2,2.30%,11,12.60%,1,86,0,1.10%,98.90%,0.00%,11,12,87,13.80% +122011,940,3200,State-funded primary,91,49,42,53.80%,46.20%,1,1.10%,10,11.00%,5,86,0,5.50%,94.50%,0.00%,15,15,91,16.50% +122012,940,3201,State-funded primary,222,114,108,51.40%,48.60%,4,1.80%,24,10.80%,5,217,0,2.30%,97.70%,0.00%,27,29,197,14.70% +122013,941,3202,State-funded primary,103,52,51,50.50%,49.50%,0,0.00%,25,24.30%,6,97,0,5.80%,94.20%,0.00%,5,5,103,4.90% +122017,941,3304,State-funded primary,352,155,197,44.00%,56.00%,4,1.10%,30,8.50%,124,228,0,35.20%,64.80%,0.00%,93,96,352,27.30% +122025,941,3326,State-funded primary,96,42,54,43.80%,56.30%,0,0.00%,15,15.60%,0,96,0,0.00%,100.00%,0.00%,8,8,90,8.90% +122027,941,3331,State-funded primary,109,54,55,49.50%,50.50%,2,1.80%,15,13.80%,3,106,0,2.80%,97.20%,0.00%,6,6,109,5.50% +122031,941,3340,State-funded primary,44,20,24,45.50%,54.50%,0,0.00%,6,13.60%,5,39,0,11.40%,88.60%,0.00%,2,2,44,4.50% +122033,940,3345,State-funded primary,87,54,33,62.10%,37.90%,0,0.00%,15,17.20%,8,79,0,9.20%,90.80%,0.00%,16,17,87,19.50% +122040,941,3400,State-funded primary,70,37,33,52.90%,47.10%,1,1.40%,4,5.70%,9,60,1,12.90%,85.70%,1.40%,10,10,70,14.30% +122045,940,3406,State-funded primary,238,123,115,51.70%,48.30%,6,2.50%,9,3.80%,104,134,0,43.70%,56.30%,0.00%,29,29,210,13.80% +122048,941,3500,State-funded primary,185,87,98,47.00%,53.00%,2,1.10%,19,10.30%,1,184,0,0.50%,99.50%,0.00%,21,22,185,11.90% +122066,940,4055,State-funded secondary,1097,491,606,44.80%,55.20%,14,1.30%,51,4.60%,62,1035,0,5.70%,94.30%,0.00%,172,189,1009,18.70% +122069,941,2014,State-funded primary,604,296,308,49.00%,51.00%,3,0.50%,75,12.40%,228,376,0,37.70%,62.30%,0.00%,130,135,604,22.40% +122076,941,2010,State-funded primary,666,321,345,48.20%,51.80%,13,2.00%,55,8.30%,92,573,1,13.80%,86.00%,0.20%,44,47,623,7.50% +122086,941,2016,State-funded primary,392,206,186,52.60%,47.40%,9,2.30%,78,19.90%,85,306,1,21.70%,78.10%,0.30%,57,62,392,15.80% +122096,941,2001,State-funded primary,393,198,195,50.40%,49.60%,4,1.00%,43,10.90%,77,316,0,19.60%,80.40%,0.00%,67,68,393,17.30% +122102,941,5200,State-funded primary,610,325,285,53.30%,46.70%,8,1.30%,47,7.70%,59,549,2,9.70%,90.00%,0.30%,62,65,610,10.70% +122108,940,5206,State-funded primary,253,136,117,53.80%,46.20%,6,2.40%,21,8.30%,46,207,0,18.20%,81.80%,0.00%,20,20,253,7.90% +122109,940,5207,State-funded primary,430,219,211,50.90%,49.10%,7,1.60%,51,11.90%,62,367,1,14.40%,85.30%,0.20%,54,58,430,13.50% +122111,940,5209,State-funded primary,480,218,262,45.40%,54.60%,10,2.10%,76,15.80%,30,450,0,6.30%,93.80%,0.00%,54,58,451,12.90% +122112,940,5210,State-funded primary,107,66,41,61.70%,38.30%,2,1.90%,5,4.70%,9,98,0,8.40%,91.60%,0.00%,6,6,107,5.60% +122125,941,6000,Independent school,315,136,179,43.20%,56.80%,0,0.00%,72,22.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122126,940,6002,Independent school,103,55,48,53.40%,46.60%,0,0.00%,15,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122127,941,6005,Independent school,130,56,74,43.10%,56.90%,2,1.50%,17,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122129,940,6007,Independent school,1134,476,658,42.00%,58.00%,0,0.00%,174,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122131,940,6010,Independent school,856,362,494,42.30%,57.70%,1,0.10%,64,7.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122133,941,6032,Independent school,398,182,216,45.70%,54.30%,1,0.30%,55,13.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122136,941,6039,Independent school,38,7,31,18.40%,81.60%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122137,941,6043,Independent school,412,177,235,43.00%,57.00%,1,0.20%,88,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122138,941,6045,Independent school,251,116,135,46.20%,53.80%,3,1.20%,43,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122139,941,6046,Independent school,124,80,44,64.50%,35.50%,0,0.00%,21,16.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122141,940,6051,Independent school,257,119,138,46.30%,53.70%,1,0.40%,73,28.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122144,941,6057,Independent school,504,504,0,100.00%,0.00%,1,0.20%,81,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122149,941,6062,Independent school,217,103,114,47.50%,52.50%,0,0.00%,34,15.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122150,941,6063,Independent school,120,32,88,26.70%,73.30%,89,74.20%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122151,941,6064,Independent school,273,113,160,41.40%,58.60%,2,0.70%,59,21.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122160,941,7014,State-funded special school,123,44,79,35.80%,64.20%,123,100.00%,0,0.00%,26,97,0,21.10%,78.90%,0.00%,42,42,123,34.10% +122162,941,7018,State-funded special school,74,10,64,13.50%,86.50%,74,100.00%,0,0.00%,0,74,0,0.00%,100.00%,0.00%,43,49,74,66.20% +122167,941,7028,State-funded special school,40,4,36,10.00%,90.00%,39,97.50%,1,2.50%,2,38,0,5.00%,95.00%,0.00%,19,28,40,70.00% +122170,929,2002,State-funded primary,66,36,30,54.50%,45.50%,2,3.00%,10,15.20%,0,66,0,0.00%,100.00%,0.00%,12,12,66,18.20% +122171,929,2009,State-funded primary,126,65,61,51.60%,48.40%,4,3.20%,29,23.00%,0,125,1,0.00%,99.20%,0.80%,15,16,121,13.20% +122172,929,2015,State-funded primary,356,187,169,52.50%,47.50%,9,2.50%,55,15.40%,5,351,0,1.40%,98.60%,0.00%,45,45,306,14.70% +122173,929,2018,State-funded primary,178,95,83,53.40%,46.60%,1,0.60%,12,6.70%,0,178,0,0.00%,100.00%,0.00%,37,35,130,26.90% +122174,929,2019,State-funded primary,118,52,66,44.10%,55.90%,3,2.50%,13,11.00%,3,114,1,2.50%,96.60%,0.80%,37,39,118,33.10% +122176,929,2030,State-funded primary,255,128,127,50.20%,49.80%,1,0.40%,32,12.50%,5,250,0,2.00%,98.00%,0.00%,63,69,255,27.10% +122177,929,2032,State-funded primary,232,114,118,49.10%,50.90%,6,2.60%,54,23.30%,0,232,0,0.00%,100.00%,0.00%,63,64,198,32.30% +122178,929,2033,State-funded primary,179,84,95,46.90%,53.10%,8,4.50%,81,45.30%,4,175,0,2.20%,97.80%,0.00%,64,65,147,44.20% +122179,929,2035,State-funded primary,104,50,54,48.10%,51.90%,32,30.80%,16,15.40%,0,104,0,0.00%,100.00%,0.00%,38,40,88,45.50% +122180,929,2037,State-funded primary,120,64,56,53.30%,46.70%,1,0.80%,30,25.00%,0,120,0,0.00%,100.00%,0.00%,72,72,95,75.80% +122181,929,2041,State-funded primary,236,115,121,48.70%,51.30%,9,3.80%,57,24.20%,3,233,0,1.30%,98.70%,0.00%,85,89,203,43.80% +122183,929,2043,State-funded primary,74,35,39,47.30%,52.70%,1,1.40%,11,14.90%,0,74,0,0.00%,100.00%,0.00%,10,10,74,13.50% +122185,929,2046,State-funded primary,121,58,63,47.90%,52.10%,6,5.00%,28,23.10%,4,117,0,3.30%,96.70%,0.00%,36,36,121,29.80% +122186,929,2047,State-funded primary,114,53,61,46.50%,53.50%,7,6.10%,17,14.90%,8,104,2,7.00%,91.20%,1.80%,17,18,114,15.80% +122187,929,2050,State-funded primary,125,50,75,40.00%,60.00%,1,0.80%,36,28.80%,3,122,0,2.40%,97.60%,0.00%,30,30,111,27.00% +122188,929,2053,State-funded primary,16,8,8,50.00%,50.00%,0,0.00%,4,25.00%,0,16,0,0.00%,100.00%,0.00%,3,3,10,30.00% +122191,929,2074,State-funded primary,215,113,102,52.60%,47.40%,6,2.80%,55,25.60%,7,208,0,3.30%,96.70%,0.00%,55,56,174,32.20% +122193,929,2076,State-funded primary,221,88,133,39.80%,60.20%,5,2.30%,28,12.70%,4,217,0,1.80%,98.20%,0.00%,108,112,194,57.70% +122194,929,2077,State-funded primary,317,172,145,54.30%,45.70%,11,3.50%,35,11.00%,3,314,0,0.90%,99.10%,0.00%,59,61,317,19.20% +122195,929,2091,State-funded primary,166,82,84,49.40%,50.60%,7,4.20%,17,10.20%,3,148,15,1.80%,89.20%,9.00%,25,26,140,18.60% +122196,929,2098,State-funded primary,76,38,38,50.00%,50.00%,4,5.30%,8,10.50%,1,75,0,1.30%,98.70%,0.00%,10,10,62,16.10% +122197,929,2101,State-funded primary,94,48,46,51.10%,48.90%,2,2.10%,15,16.00%,0,94,0,0.00%,100.00%,0.00%,29,29,81,35.80% +122198,929,2103,State-funded primary,215,112,103,52.10%,47.90%,3,1.40%,34,15.80%,1,214,0,0.50%,99.50%,0.00%,28,30,179,16.80% +122199,929,2105,State-funded primary,21,6,15,28.60%,71.40%,4,19.00%,8,38.10%,0,21,0,0.00%,100.00%,0.00%,15,15,21,71.40% +122202,929,2138,State-funded primary,84,44,40,52.40%,47.60%,1,1.20%,5,6.00%,3,81,0,3.60%,96.40%,0.00%,7,7,84,8.30% +122203,929,2142,State-funded primary,109,47,62,43.10%,56.90%,0,0.00%,32,29.40%,3,106,0,2.80%,97.20%,0.00%,37,33,88,37.50% +122210,929,2185,State-funded primary,332,169,163,50.90%,49.10%,5,1.50%,19,5.70%,2,330,0,0.60%,99.40%,0.00%,27,26,293,8.90% +122214,929,2207,State-funded primary,79,37,42,46.80%,53.20%,4,5.10%,9,11.40%,3,76,0,3.80%,96.20%,0.00%,11,14,79,17.70% +122215,929,2209,State-funded primary,54,27,27,50.00%,50.00%,2,3.70%,9,16.70%,2,52,0,3.70%,96.30%,0.00%,11,11,54,20.40% +122216,929,2212,State-funded primary,158,72,86,45.60%,54.40%,2,1.30%,31,19.60%,2,156,0,1.30%,98.70%,0.00%,52,55,158,34.80% +122221,929,2224,State-funded primary,76,33,43,43.40%,56.60%,2,2.60%,7,9.20%,2,74,0,2.60%,97.40%,0.00%,10,10,70,14.30% +122222,929,2227,State-funded primary,69,37,32,53.60%,46.40%,1,1.40%,10,14.50%,0,69,0,0.00%,100.00%,0.00%,1,1,69,1.40% +122223,929,2228,State-funded primary,186,97,89,52.20%,47.80%,9,4.80%,37,19.90%,8,178,0,4.30%,95.70%,0.00%,42,42,162,25.90% +122224,929,2229,State-funded primary,147,78,69,53.10%,46.90%,2,1.40%,11,7.50%,2,145,0,1.40%,98.60%,0.00%,34,33,115,28.70% +122225,929,2232,State-funded primary,104,43,61,41.30%,58.70%,2,1.90%,29,27.90%,0,104,0,0.00%,100.00%,0.00%,39,37,91,40.70% +122226,929,2234,State-funded primary,23,8,15,34.80%,65.20%,0,0.00%,6,26.10%,2,21,0,8.70%,91.30%,0.00%,4,4,23,17.40% +122227,929,2236,State-funded primary,48,19,29,39.60%,60.40%,1,2.10%,8,16.70%,0,48,0,0.00%,100.00%,0.00%,3,4,41,9.80% +122228,929,2239,State-funded primary,123,55,68,44.70%,55.30%,4,3.30%,6,4.90%,2,121,0,1.60%,98.40%,0.00%,8,8,123,6.50% +122232,929,2246,State-funded primary,46,23,23,50.00%,50.00%,1,2.20%,2,4.30%,1,45,0,2.20%,97.80%,0.00%,9,9,46,19.60% +122233,929,2254,State-funded primary,12,4,8,33.30%,66.70%,1,8.30%,1,8.30%,0,12,0,0.00%,100.00%,0.00%,4,4,12,33.30% +122234,929,2268,State-funded primary,184,86,98,46.70%,53.30%,12,6.50%,17,9.20%,3,181,0,1.60%,98.40%,0.00%,18,18,158,11.40% +122236,929,2277,State-funded primary,93,35,58,37.60%,62.40%,1,1.10%,13,14.00%,3,90,0,3.20%,96.80%,0.00%,21,22,93,23.70% +122238,929,2281,State-funded primary,86,38,48,44.20%,55.80%,1,1.20%,5,5.80%,2,84,0,2.30%,97.70%,0.00%,21,21,82,25.60% +122239,929,2291,State-funded primary,725,378,347,52.10%,47.90%,11,1.50%,99,13.70%,23,702,0,3.20%,96.80%,0.00%,131,137,612,22.40% +122240,929,2293,State-funded primary,88,38,50,43.20%,56.80%,1,1.10%,15,17.00%,0,88,0,0.00%,100.00%,0.00%,1,1,88,1.10% +122242,929,2299,State-funded primary,397,178,219,44.80%,55.20%,3,0.80%,32,8.10%,14,383,0,3.50%,96.50%,0.00%,34,34,355,9.60% +122243,929,2323,State-funded primary,230,128,102,55.70%,44.30%,3,1.30%,32,13.90%,2,227,1,0.90%,98.70%,0.40%,72,71,205,34.60% +122244,929,2325,State-funded primary,84,33,51,39.30%,60.70%,3,3.60%,18,21.40%,0,84,0,0.00%,100.00%,0.00%,14,14,84,16.70% +122247,929,2370,State-funded primary,177,85,92,48.00%,52.00%,4,2.30%,20,11.30%,0,177,0,0.00%,100.00%,0.00%,39,42,177,23.70% +122248,929,2372,State-funded primary,54,28,26,51.90%,48.10%,1,1.90%,19,35.20%,0,54,0,0.00%,100.00%,0.00%,15,15,54,27.80% +122254,929,2397,State-funded primary,511,266,245,52.10%,47.90%,6,1.20%,75,14.70%,12,499,0,2.30%,97.70%,0.00%,176,182,437,41.60% +122258,929,2407,State-funded primary,259,124,135,47.90%,52.10%,3,1.20%,33,12.70%,6,253,0,2.30%,97.70%,0.00%,105,115,224,51.30% +122261,929,2415,State-funded primary,453,204,249,45.00%,55.00%,10,2.20%,70,15.50%,27,426,0,6.00%,94.00%,0.00%,150,154,404,38.10% +122264,929,2525,State-funded primary,104,49,55,47.10%,52.90%,1,1.00%,9,8.70%,4,100,0,3.80%,96.20%,0.00%,4,4,104,3.80% +122266,929,2527,State-funded primary,421,210,211,49.90%,50.10%,2,0.50%,40,9.50%,8,413,0,1.90%,98.10%,0.00%,34,36,368,9.80% +122268,929,2529,State-funded primary,427,210,217,49.20%,50.80%,8,1.90%,59,13.80%,9,418,0,2.10%,97.90%,0.00%,91,93,372,25.00% +122269,929,2530,State-funded primary,328,150,178,45.70%,54.30%,8,2.40%,21,6.40%,10,318,0,3.00%,97.00%,0.00%,21,25,289,8.70% +122271,929,3046,State-funded primary,93,45,48,48.40%,51.60%,5,5.40%,18,19.40%,4,89,0,4.30%,95.70%,0.00%,20,19,68,27.90% +122272,929,3065,State-funded primary,39,23,16,59.00%,41.00%,1,2.60%,4,10.30%,0,39,0,0.00%,100.00%,0.00%,0,0,39,0.00% +122273,929,3095,State-funded primary,108,51,57,47.20%,52.80%,2,1.90%,8,7.40%,0,108,0,0.00%,100.00%,0.00%,0,1,91,1.10% +122276,929,3135,State-funded primary,81,40,41,49.40%,50.60%,6,7.40%,12,14.80%,0,81,0,0.00%,100.00%,0.00%,12,14,81,17.30% +122277,929,3173,State-funded primary,94,42,52,44.70%,55.30%,0,0.00%,10,10.60%,3,91,0,3.20%,96.80%,0.00%,3,3,94,3.20% +122279,929,3264,State-funded primary,98,47,51,48.00%,52.00%,1,1.00%,9,9.20%,0,98,0,0.00%,100.00%,0.00%,9,9,83,10.80% +122280,929,3312,State-funded primary,121,47,74,38.80%,61.20%,3,2.50%,26,21.50%,9,112,0,7.40%,92.60%,0.00%,33,33,105,31.40% +122281,929,3333,State-funded primary,283,146,137,51.60%,48.40%,17,6.00%,55,19.40%,5,278,0,1.80%,98.20%,0.00%,106,111,255,43.50% +122282,929,3346,State-funded primary,161,78,83,48.40%,51.60%,2,1.20%,10,6.20%,13,147,1,8.10%,91.30%,0.60%,21,20,140,14.30% +122283,929,3347,State-funded primary,92,51,41,55.40%,44.60%,3,3.30%,11,12.00%,1,91,0,1.10%,98.90%,0.00%,2,2,78,2.60% +122284,929,3349,State-funded primary,44,24,20,54.50%,45.50%,2,4.50%,8,18.20%,0,44,0,0.00%,100.00%,0.00%,7,7,44,15.90% +122285,929,3355,State-funded primary,71,34,37,47.90%,52.10%,3,4.20%,9,12.70%,1,70,0,1.40%,98.60%,0.00%,0,0,71,0.00% +122287,929,3367,State-funded primary,157,72,85,45.90%,54.10%,1,0.60%,12,7.60%,4,153,0,2.50%,97.50%,0.00%,21,19,131,14.50% +122289,929,3403,State-funded primary,38,16,22,42.10%,57.90%,0,0.00%,4,10.50%,0,38,0,0.00%,100.00%,0.00%,3,4,38,10.50% +122290,929,3408,State-funded primary,70,30,40,42.90%,57.10%,3,4.30%,13,18.60%,5,65,0,7.10%,92.90%,0.00%,4,5,62,8.10% +122291,929,3411,State-funded primary,47,18,29,38.30%,61.70%,1,2.10%,11,23.40%,2,45,0,4.30%,95.70%,0.00%,9,9,47,19.10% +122293,929,3443,State-funded primary,43,22,21,51.20%,48.80%,1,2.30%,6,14.00%,0,43,0,0.00%,100.00%,0.00%,2,2,34,5.90% +122294,929,3447,State-funded primary,3,3,0,100.00%,0.00%,0,0.00%,0,0.00%,0,3,0,0.00%,100.00%,0.00%,0,0,3,0.00% +122295,929,3454,State-funded primary,48,23,25,47.90%,52.10%,0,0.00%,5,10.40%,3,45,0,6.30%,93.80%,0.00%,13,14,48,29.20% +122297,929,3487,State-funded primary,226,107,119,47.30%,52.70%,0,0.00%,20,8.80%,0,226,0,0.00%,100.00%,0.00%,11,11,200,5.50% +122298,929,3492,State-funded primary,75,33,42,44.00%,56.00%,1,1.30%,10,13.30%,1,74,0,1.30%,98.70%,0.00%,11,13,66,19.70% +122299,929,3542,State-funded primary,32,15,17,46.90%,53.10%,0,0.00%,7,21.90%,0,32,0,0.00%,100.00%,0.00%,6,6,26,23.10% +122300,929,3548,State-funded primary,46,27,19,58.70%,41.30%,1,2.20%,10,21.70%,0,46,0,0.00%,100.00%,0.00%,3,3,46,6.50% +122302,929,3560,State-funded primary,41,20,21,48.80%,51.20%,1,2.40%,6,14.60%,0,41,0,0.00%,100.00%,0.00%,0,0,41,0.00% +122326,929,4079,State-funded secondary,361,156,205,43.20%,56.80%,12,3.30%,50,13.90%,6,355,0,1.70%,98.30%,0.00%,23,31,361,8.60% +122328,929,4130,State-funded secondary,423,224,199,53.00%,47.00%,11,2.60%,48,11.30%,12,411,0,2.80%,97.20%,0.00%,105,99,366,27.00% +122334,929,4161,State-funded secondary,307,129,178,42.00%,58.00%,13,4.20%,51,16.60%,1,306,0,0.30%,99.70%,0.00%,76,79,307,25.70% +122335,929,4162,State-funded secondary,291,138,153,47.40%,52.60%,19,6.50%,42,14.40%,7,284,0,2.40%,97.60%,0.00%,103,105,291,36.10% +122348,929,4332,State-funded secondary,359,162,197,45.10%,54.90%,8,2.20%,62,17.30%,16,343,0,4.50%,95.50%,0.00%,110,118,359,32.90% +122350,929,4361,State-funded secondary,71,41,30,57.70%,42.30%,6,8.50%,11,15.50%,0,71,0,0.00%,100.00%,0.00%,11,13,71,18.30% +122352,929,4370,State-funded secondary,103,52,51,50.50%,49.50%,1,1.00%,25,24.30%,1,102,0,1.00%,99.00%,0.00%,18,20,103,19.40% +122354,929,4404,State-funded secondary,334,163,171,48.80%,51.20%,3,0.90%,31,9.30%,26,308,0,7.80%,92.20%,0.00%,88,102,334,30.50% +122362,929,4438,State-funded secondary,1443,706,737,48.90%,51.10%,44,3.00%,224,15.50%,33,1409,1,2.30%,97.60%,0.10%,210,207,1183,17.50% +122363,929,4439,State-funded secondary,742,372,370,50.10%,49.90%,16,2.20%,97,13.10%,18,724,0,2.40%,97.60%,0.00%,232,234,673,34.80% +122374,929,5400,State-funded secondary,563,295,268,52.40%,47.60%,26,4.60%,44,7.80%,12,549,2,2.10%,97.50%,0.40%,148,124,440,28.20% +122376,929,6001,Independent school,346,189,157,54.60%,45.40%,4,1.20%,44,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122377,929,6005,Independent school,201,95,106,47.30%,52.70%,2,1.00%,28,13.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122382,929,7003,State-funded special school,211,53,158,25.10%,74.90%,210,99.50%,1,0.50%,3,200,8,1.40%,94.80%,3.80%,95,93,199,46.70% +122383,929,7006,State-funded special school,114,24,90,21.10%,78.90%,113,99.10%,1,0.90%,0,114,0,0.00%,100.00%,0.00%,74,74,106,69.80% +122384,929,7010,State-funded special school,69,18,51,26.10%,73.90%,69,100.00%,0,0.00%,0,69,0,0.00%,100.00%,0.00%,32,34,66,51.50% +122385,929,7012,State-funded special school,49,15,34,30.60%,69.40%,49,100.00%,0,0.00%,3,46,0,6.10%,93.90%,0.00%,11,11,46,23.90% +122388,929,7021,State-funded special school,188,46,142,24.50%,75.50%,188,100.00%,0,0.00%,3,185,0,1.60%,98.40%,0.00%,106,111,188,59.00% +122389,929,7022,State-funded special school,269,75,194,27.90%,72.10%,269,100.00%,0,0.00%,1,268,0,0.40%,99.60%,0.00%,124,122,238,51.30% +122404,891,2010,State-funded primary,220,106,114,48.20%,51.80%,1,0.50%,19,8.60%,6,214,0,2.70%,97.30%,0.00%,50,50,195,25.60% +122407,892,2045,State-funded primary,227,114,113,50.20%,49.80%,0,0.00%,39,17.20%,176,51,0,77.50%,22.50%,0.00%,102,92,204,45.10% +122413,892,2056,State-funded primary,463,235,228,50.80%,49.20%,2,0.40%,46,9.90%,38,424,1,8.20%,91.60%,0.20%,156,161,402,40.00% +122414,892,2057,State-funded primary,229,117,112,51.10%,48.90%,2,0.90%,23,10.00%,59,170,0,25.80%,74.20%,0.00%,32,33,207,15.90% +122416,892,2061,State-funded primary,353,177,176,50.10%,49.90%,3,0.80%,74,21.00%,174,179,0,49.30%,50.70%,0.00%,129,130,336,38.70% +122426,892,2079,State-funded primary,222,119,103,53.60%,46.40%,0,0.00%,42,18.90%,31,191,0,14.00%,86.00%,0.00%,88,90,202,44.60% +122427,892,2080,State-funded primary,633,306,327,48.30%,51.70%,6,0.90%,50,7.90%,206,427,0,32.50%,67.50%,0.00%,59,59,572,10.30% +122440,891,2093,State-funded primary,259,130,129,50.20%,49.80%,0,0.00%,16,6.20%,26,233,0,10.00%,90.00%,0.00%,35,36,208,17.30% +122441,891,2094,State-funded primary,276,126,150,45.70%,54.30%,0,0.00%,46,16.70%,12,264,0,4.30%,95.70%,0.00%,65,67,276,24.30% +122442,892,2095,State-funded primary,707,350,357,49.50%,50.50%,3,0.40%,72,10.20%,156,551,0,22.10%,77.90%,0.00%,288,289,633,45.70% +122452,891,2107,State-funded primary,192,94,98,49.00%,51.00%,2,1.00%,28,14.60%,10,182,0,5.20%,94.80%,0.00%,50,49,151,32.50% +122453,891,2108,State-funded primary,228,104,124,45.60%,54.40%,0,0.00%,48,21.10%,13,215,0,5.70%,94.30%,0.00%,94,96,228,42.10% +122456,892,2117,State-funded primary,437,197,240,45.10%,54.90%,4,0.90%,32,7.30%,127,310,0,29.10%,70.90%,0.00%,128,136,398,34.20% +122463,891,2126,State-funded primary,394,186,208,47.20%,52.80%,3,0.80%,98,24.90%,50,344,0,12.70%,87.30%,0.00%,74,79,394,20.10% +122465,892,2128,State-funded primary,225,112,113,49.80%,50.20%,2,0.90%,27,12.00%,148,75,2,65.80%,33.30%,0.90%,80,77,206,37.40% +122468,891,2140,State-funded primary,442,221,221,50.00%,50.00%,5,1.10%,55,12.40%,53,389,0,12.00%,88.00%,0.00%,189,188,407,46.20% +122473,891,2150,State-funded primary,350,184,166,52.60%,47.40%,5,1.40%,86,24.60%,31,290,29,8.90%,82.90%,8.30%,111,115,320,35.90% +122474,892,2151,State-funded primary,464,239,225,51.50%,48.50%,2,0.40%,33,7.10%,73,391,0,15.70%,84.30%,0.00%,126,125,413,30.30% +122476,892,2153,State-funded primary,377,197,180,52.30%,47.70%,3,0.80%,89,23.60%,72,305,0,19.10%,80.90%,0.00%,244,234,350,66.90% +122480,892,2157,State-funded primary,360,169,191,46.90%,53.10%,2,0.60%,39,10.80%,245,110,5,68.10%,30.60%,1.40%,109,106,310,34.20% +122481,892,2158,State-funded primary,453,200,253,44.20%,55.80%,14,3.10%,43,9.50%,256,196,1,56.50%,43.30%,0.20%,209,194,408,47.50% +122486,892,2163,State-funded primary,458,216,242,47.20%,52.80%,2,0.40%,62,13.50%,78,380,0,17.00%,83.00%,0.00%,52,54,415,13.00% +122488,891,2165,State-funded primary,218,98,120,45.00%,55.00%,0,0.00%,36,16.50%,14,204,0,6.40%,93.60%,0.00%,80,80,169,47.30% +122490,891,2167,State-funded primary,359,177,182,49.30%,50.70%,1,0.30%,48,13.40%,71,288,0,19.80%,80.20%,0.00%,66,59,314,18.80% +122493,892,2170,State-funded primary,430,211,219,49.10%,50.90%,2,0.50%,51,11.90%,42,388,0,9.80%,90.20%,0.00%,104,103,387,26.60% +122496,891,2174,State-funded primary,199,105,94,52.80%,47.20%,4,2.00%,23,11.60%,8,191,0,4.00%,96.00%,0.00%,53,51,174,29.30% +122497,891,2175,State-funded primary,106,40,66,37.70%,62.30%,0,0.00%,11,10.40%,9,97,0,8.50%,91.50%,0.00%,51,53,106,50.00% +122498,891,2176,State-funded primary,98,50,48,51.00%,49.00%,0,0.00%,7,7.10%,4,94,0,4.10%,95.90%,0.00%,39,32,73,43.80% +122501,891,2180,State-funded primary,186,97,89,52.20%,47.80%,2,1.10%,36,19.40%,6,180,0,3.20%,96.80%,0.00%,79,79,186,42.50% +122509,891,2200,State-funded primary,238,122,116,51.30%,48.70%,0,0.00%,11,4.60%,21,217,0,8.80%,91.20%,0.00%,17,18,238,7.60% +122511,891,2202,State-funded primary,180,80,100,44.40%,55.60%,1,0.60%,12,6.70%,15,165,0,8.30%,91.70%,0.00%,6,7,180,3.90% +122516,891,2213,State-funded primary,196,99,97,50.50%,49.50%,0,0.00%,14,7.10%,15,181,0,7.70%,92.30%,0.00%,29,31,196,15.80% +122520,891,2223,State-funded primary,193,103,90,53.40%,46.60%,4,2.10%,15,7.80%,21,172,0,10.90%,89.10%,0.00%,56,47,151,31.10% +122525,891,2228,State-funded primary,340,174,166,51.20%,48.80%,1,0.30%,42,12.40%,32,308,0,9.40%,90.60%,0.00%,19,20,309,6.50% +122530,891,2237,State-funded primary,132,56,76,42.40%,57.60%,1,0.80%,10,7.60%,11,121,0,8.30%,91.70%,0.00%,22,22,132,16.70% +122531,891,2238,State-funded primary,237,113,124,47.70%,52.30%,2,0.80%,33,13.90%,11,226,0,4.60%,95.40%,0.00%,67,73,237,30.80% +122532,891,2239,State-funded primary,185,90,95,48.60%,51.40%,1,0.50%,14,7.60%,11,174,0,5.90%,94.10%,0.00%,32,33,148,22.30% +122535,891,2248,State-funded primary,211,109,102,51.70%,48.30%,0,0.00%,14,6.60%,4,207,0,1.90%,98.10%,0.00%,18,18,177,10.20% +122536,891,2271,State-funded primary,414,197,217,47.60%,52.40%,5,1.20%,19,4.60%,59,355,0,14.30%,85.70%,0.00%,38,40,414,9.70% +122540,891,2282,State-funded primary,180,85,95,47.20%,52.80%,1,0.60%,26,14.40%,40,140,0,22.20%,77.80%,0.00%,38,41,180,22.80% +122541,891,2286,State-funded primary,182,98,84,53.80%,46.20%,0,0.00%,17,9.30%,34,148,0,18.70%,81.30%,0.00%,19,16,149,10.70% +122545,891,2299,State-funded primary,260,128,132,49.20%,50.80%,0,0.00%,23,8.80%,46,214,0,17.70%,82.30%,0.00%,77,81,260,31.20% +122546,891,2300,State-funded primary,190,90,100,47.40%,52.60%,1,0.50%,17,8.90%,21,169,0,11.10%,88.90%,0.00%,81,84,190,44.20% +122547,891,2301,State-funded primary,168,94,74,56.00%,44.00%,0,0.00%,7,4.20%,25,143,0,14.90%,85.10%,0.00%,46,46,130,35.40% +122551,891,2308,State-funded primary,174,87,87,50.00%,50.00%,2,1.10%,24,13.80%,23,151,0,13.20%,86.80%,0.00%,33,33,122,27.00% +122554,891,2316,State-funded primary,240,120,120,50.00%,50.00%,2,0.80%,28,11.70%,36,204,0,15.00%,85.00%,0.00%,23,25,240,10.40% +122555,891,2317,State-funded primary,177,89,88,50.30%,49.70%,5,2.80%,22,12.40%,27,150,0,15.30%,84.70%,0.00%,11,11,148,7.40% +122556,891,2346,State-funded primary,103,56,47,54.40%,45.60%,0,0.00%,11,10.70%,3,100,0,2.90%,97.10%,0.00%,45,36,74,48.60% +122561,892,2360,State-funded primary,440,195,245,44.30%,55.70%,12,2.70%,104,23.60%,60,380,0,13.60%,86.40%,0.00%,166,162,402,40.30% +122566,891,2395,State-funded primary,211,101,110,47.90%,52.10%,2,0.90%,17,8.10%,6,205,0,2.80%,97.20%,0.00%,38,36,183,19.70% +122571,891,2406,State-funded primary,211,111,100,52.60%,47.40%,6,2.80%,38,18.00%,20,191,0,9.50%,90.50%,0.00%,67,66,181,36.50% +122575,891,2416,State-funded primary,236,125,111,53.00%,47.00%,2,0.80%,43,18.20%,4,232,0,1.70%,98.30%,0.00%,41,42,236,17.80% +122578,891,2436,State-funded primary,168,74,94,44.00%,56.00%,1,0.60%,7,4.20%,2,166,0,1.20%,98.80%,0.00%,22,22,168,13.10% +122579,891,2440,State-funded primary,329,155,174,47.10%,52.90%,8,2.40%,41,12.50%,13,316,0,4.00%,96.00%,0.00%,112,110,290,37.90% +122580,891,2444,State-funded primary,216,93,123,43.10%,56.90%,2,0.90%,22,10.20%,3,213,0,1.40%,98.60%,0.00%,71,67,190,35.30% +122581,891,2450,State-funded primary,63,34,29,54.00%,46.00%,0,0.00%,3,4.80%,4,59,0,6.30%,93.70%,0.00%,13,9,30,30.00% +122584,891,2464,State-funded primary,457,224,233,49.00%,51.00%,3,0.70%,59,12.90%,15,442,0,3.30%,96.70%,0.00%,95,95,416,22.80% +122585,891,2466,State-funded primary,273,129,144,47.30%,52.70%,0,0.00%,33,12.10%,17,256,0,6.20%,93.80%,0.00%,141,145,273,53.10% +122586,891,2470,State-funded primary,240,112,128,46.70%,53.30%,6,2.50%,38,15.80%,19,221,0,7.90%,92.10%,0.00%,79,76,198,38.40% +122587,891,2471,State-funded primary,334,152,182,45.50%,54.50%,2,0.60%,34,10.20%,8,326,0,2.40%,97.60%,0.00%,75,80,304,26.30% +122589,891,2490,State-funded primary,338,163,175,48.20%,51.80%,0,0.00%,13,3.80%,3,335,0,0.90%,99.10%,0.00%,68,70,338,20.70% +122595,891,2532,State-funded primary,166,74,92,44.60%,55.40%,0,0.00%,27,16.30%,67,99,0,40.40%,59.60%,0.00%,55,57,151,37.70% +122596,891,2560,State-funded primary,418,202,216,48.30%,51.70%,2,0.50%,36,8.60%,56,362,0,13.40%,86.60%,0.00%,28,28,418,6.70% +122597,891,2565,State-funded primary,425,204,221,48.00%,52.00%,4,0.90%,5,1.20%,38,387,0,8.90%,91.10%,0.00%,16,17,425,4.00% +122598,891,2568,State-funded primary,239,108,131,45.20%,54.80%,0,0.00%,8,3.30%,54,185,0,22.60%,77.40%,0.00%,7,7,239,2.90% +122600,891,2574,State-funded primary,361,174,187,48.20%,51.80%,2,0.60%,21,5.80%,60,289,12,16.60%,80.10%,3.30%,21,23,361,6.40% +122603,891,2611,State-funded primary,429,227,202,52.90%,47.10%,1,0.20%,37,8.60%,108,291,30,25.20%,67.80%,7.00%,95,96,386,24.90% +122605,891,2616,State-funded primary,453,220,233,48.60%,51.40%,0,0.00%,50,11.00%,74,379,0,16.30%,83.70%,0.00%,84,80,369,21.70% +122612,891,2674,State-funded primary,609,284,325,46.60%,53.40%,6,1.00%,53,8.70%,57,521,31,9.40%,85.60%,5.10%,91,98,609,16.10% +122615,891,2679,State-funded primary,80,46,34,57.50%,42.50%,1,1.30%,6,7.50%,2,78,0,2.50%,97.50%,0.00%,18,18,80,22.50% +122621,891,2693,State-funded primary,475,213,262,44.80%,55.20%,5,1.10%,28,5.90%,23,452,0,4.80%,95.20%,0.00%,35,35,475,7.40% +122625,891,2700,State-funded primary,191,104,87,54.50%,45.50%,0,0.00%,5,2.60%,5,186,0,2.60%,97.40%,0.00%,39,32,139,23.00% +122627,891,2704,State-funded primary,233,110,123,47.20%,52.80%,2,0.90%,12,5.20%,12,221,0,5.20%,94.80%,0.00%,26,27,208,13.00% +122628,891,2705,State-funded primary,206,98,108,47.60%,52.40%,1,0.50%,21,10.20%,9,197,0,4.40%,95.60%,0.00%,25,25,183,13.70% +122631,891,2718,State-funded primary,178,87,91,48.90%,51.10%,0,0.00%,15,8.40%,1,177,0,0.60%,99.40%,0.00%,20,20,178,11.20% +122636,891,2731,State-funded primary,437,203,234,46.50%,53.50%,6,1.40%,38,8.70%,27,410,0,6.20%,93.80%,0.00%,84,85,398,21.40% +122638,891,2734,State-funded primary,197,81,116,41.10%,58.90%,0,0.00%,30,15.20%,4,193,0,2.00%,98.00%,0.00%,29,28,174,16.10% +122639,891,2737,State-funded primary,464,234,230,50.40%,49.60%,3,0.60%,65,14.00%,7,457,0,1.50%,98.50%,0.00%,78,80,405,19.80% +122640,891,2741,State-funded primary,92,39,53,42.40%,57.60%,1,1.10%,15,16.30%,7,85,0,7.60%,92.40%,0.00%,26,25,79,31.60% +122641,891,2742,State-funded primary,109,58,51,53.20%,46.80%,0,0.00%,10,9.20%,0,109,0,0.00%,100.00%,0.00%,4,4,96,4.20% +122644,891,2748,State-funded primary,161,61,100,37.90%,62.10%,2,1.20%,14,8.70%,5,156,0,3.10%,96.90%,0.00%,22,22,161,13.70% +122645,891,2751,State-funded primary,63,23,40,36.50%,63.50%,1,1.60%,5,7.90%,0,63,0,0.00%,100.00%,0.00%,11,12,58,20.70% +122650,891,2768,State-funded primary,203,99,104,48.80%,51.20%,1,0.50%,2,1.00%,13,190,0,6.40%,93.60%,0.00%,9,9,203,4.40% +122651,891,2769,State-funded primary,139,72,67,51.80%,48.20%,0,0.00%,2,1.40%,4,135,0,2.90%,97.10%,0.00%,5,5,139,3.60% +122653,891,2772,State-funded primary,102,59,43,57.80%,42.20%,0,0.00%,13,12.70%,2,100,0,2.00%,98.00%,0.00%,18,17,93,18.30% +122654,891,2775,State-funded primary,173,81,92,46.80%,53.20%,1,0.60%,14,8.10%,2,171,0,1.20%,98.80%,0.00%,10,10,173,5.80% +122655,891,2779,State-funded primary,36,19,17,52.80%,47.20%,0,0.00%,1,2.80%,0,36,0,0.00%,100.00%,0.00%,13,13,33,39.40% +122656,891,2781,State-funded primary,81,38,43,46.90%,53.10%,1,1.20%,10,12.30%,0,81,0,0.00%,100.00%,0.00%,11,12,79,15.20% +122657,891,2784,State-funded primary,175,80,95,45.70%,54.30%,3,1.70%,28,16.00%,3,172,0,1.70%,98.30%,0.00%,33,33,155,21.30% +122658,891,2787,State-funded primary,135,56,79,41.50%,58.50%,0,0.00%,27,20.00%,5,130,0,3.70%,96.30%,0.00%,56,53,125,42.40% +122659,891,2788,State-funded primary,232,117,115,50.40%,49.60%,5,2.20%,38,16.40%,16,216,0,6.90%,93.10%,0.00%,7,7,209,3.30% +122661,891,2790,State-funded primary,48,13,35,27.10%,72.90%,0,0.00%,6,12.50%,1,47,0,2.10%,97.90%,0.00%,0,0,39,0.00% +122662,891,2793,State-funded primary,25,12,13,48.00%,52.00%,0,0.00%,2,8.00%,1,24,0,4.00%,96.00%,0.00%,4,4,25,16.00% +122663,891,2796,State-funded primary,172,84,88,48.80%,51.20%,3,1.70%,20,11.60%,0,172,0,0.00%,100.00%,0.00%,14,15,171,8.80% +122667,891,2802,State-funded primary,200,96,104,48.00%,52.00%,1,0.50%,37,18.50%,12,188,0,6.00%,94.00%,0.00%,48,48,153,31.40% +122668,891,2806,State-funded primary,160,94,66,58.80%,41.30%,2,1.30%,0,0.00%,5,155,0,3.10%,96.90%,0.00%,6,6,160,3.80% +122669,891,2810,State-funded primary,252,124,128,49.20%,50.80%,2,0.80%,8,3.20%,8,244,0,3.20%,96.80%,0.00%,24,22,212,10.40% +122670,891,2812,State-funded primary,334,161,173,48.20%,51.80%,3,0.90%,34,10.20%,24,310,0,7.20%,92.80%,0.00%,57,59,334,17.70% +122671,891,2813,State-funded primary,97,43,54,44.30%,55.70%,0,0.00%,18,18.60%,1,96,0,1.00%,99.00%,0.00%,24,24,81,29.60% +122674,891,2821,State-funded primary,204,107,97,52.50%,47.50%,4,2.00%,33,16.20%,28,176,0,13.70%,86.30%,0.00%,59,60,188,31.90% +122675,891,2822,State-funded primary,303,153,150,50.50%,49.50%,2,0.70%,7,2.30%,28,275,0,9.20%,90.80%,0.00%,22,18,245,7.30% +122677,891,2826,State-funded primary,154,68,86,44.20%,55.80%,1,0.60%,7,4.50%,6,148,0,3.90%,96.10%,0.00%,20,20,154,13.00% +122678,891,2829,State-funded primary,126,59,67,46.80%,53.20%,0,0.00%,13,10.30%,3,123,0,2.40%,97.60%,0.00%,16,17,111,15.30% +122680,891,2844,State-funded primary,58,30,28,51.70%,48.30%,0,0.00%,11,19.00%,0,58,0,0.00%,100.00%,0.00%,7,7,48,14.60% +122681,891,2850,State-funded primary,44,25,19,56.80%,43.20%,2,4.50%,4,9.10%,1,43,0,2.30%,97.70%,0.00%,4,4,44,9.10% +122702,892,2894,State-funded primary,421,206,215,48.90%,51.10%,3,0.70%,66,15.70%,229,190,2,54.40%,45.10%,0.50%,130,130,389,33.40% +122703,892,2897,State-funded primary,167,89,78,53.30%,46.70%,2,1.20%,45,26.90%,18,149,0,10.80%,89.20%,0.00%,100,98,152,64.50% +122707,891,2901,State-funded primary,518,249,269,48.10%,51.90%,3,0.60%,18,3.50%,180,338,0,34.70%,65.30%,0.00%,50,50,518,9.70% +122715,891,2911,State-funded primary,343,175,168,51.00%,49.00%,2,0.60%,29,8.50%,46,297,0,13.40%,86.60%,0.00%,87,86,316,27.20% +122716,891,2912,State-funded primary,334,170,164,50.90%,49.10%,3,0.90%,44,13.20%,22,312,0,6.60%,93.40%,0.00%,109,116,334,34.70% +122717,891,2913,State-funded primary,466,229,237,49.10%,50.90%,4,0.90%,50,10.70%,37,429,0,7.90%,92.10%,0.00%,167,160,409,39.10% +122720,891,2916,State-funded primary,340,170,170,50.00%,50.00%,3,0.90%,40,11.80%,50,288,2,14.70%,84.70%,0.60%,89,90,306,29.40% +122722,891,2918,State-funded primary,360,166,194,46.10%,53.90%,0,0.00%,76,21.10%,16,344,0,4.40%,95.60%,0.00%,60,63,311,20.30% +122727,891,2923,State-funded primary,322,155,167,48.10%,51.90%,0,0.00%,9,2.80%,13,309,0,4.00%,96.00%,0.00%,25,26,289,9.00% +122729,891,2925,State-funded primary,215,101,114,47.00%,53.00%,4,1.90%,17,7.90%,42,173,0,19.50%,80.50%,0.00%,33,25,168,14.90% +122730,891,2926,State-funded primary,221,96,125,43.40%,56.60%,0,0.00%,33,14.90%,31,190,0,14.00%,86.00%,0.00%,49,50,221,22.60% +122731,891,2927,State-funded primary,222,113,109,50.90%,49.10%,1,0.50%,19,8.60%,14,208,0,6.30%,93.70%,0.00%,88,91,205,44.40% +122732,891,2928,State-funded primary,356,166,190,46.60%,53.40%,0,0.00%,34,9.60%,20,336,0,5.60%,94.40%,0.00%,127,128,320,40.00% +122733,892,2929,State-funded primary,647,332,315,51.30%,48.70%,10,1.50%,114,17.60%,455,189,3,70.30%,29.20%,0.50%,237,234,564,41.50% +122734,891,2930,State-funded primary,328,163,165,49.70%,50.30%,2,0.60%,33,10.10%,22,306,0,6.70%,93.30%,0.00%,37,36,303,11.90% +122741,891,3004,State-funded primary,249,131,118,52.60%,47.40%,1,0.40%,19,7.60%,24,225,0,9.60%,90.40%,0.00%,56,54,217,24.90% +122742,891,3008,State-funded primary,361,175,186,48.50%,51.50%,0,0.00%,30,8.30%,19,342,0,5.30%,94.70%,0.00%,52,50,315,15.90% +122743,891,3018,State-funded primary,209,110,99,52.60%,47.40%,0,0.00%,21,10.00%,13,196,0,6.20%,93.80%,0.00%,14,14,209,6.70% +122744,891,3021,State-funded primary,94,48,46,51.10%,48.90%,0,0.00%,12,12.80%,7,87,0,7.40%,92.60%,0.00%,25,25,94,26.60% +122746,891,3032,State-funded primary,176,82,94,46.60%,53.40%,0,0.00%,10,5.70%,8,168,0,4.50%,95.50%,0.00%,19,19,176,10.80% +122749,891,3061,State-funded primary,99,57,42,57.60%,42.40%,0,0.00%,13,13.10%,1,98,0,1.00%,99.00%,0.00%,7,7,92,7.60% +122751,891,3072,State-funded primary,104,44,60,42.30%,57.70%,0,0.00%,9,8.70%,4,100,0,3.80%,96.20%,0.00%,1,1,94,1.10% +122752,891,3073,State-funded primary,208,99,109,47.60%,52.40%,3,1.40%,24,11.50%,6,202,0,2.90%,97.10%,0.00%,27,27,208,13.00% +122753,891,3076,State-funded primary,26,8,18,30.80%,69.20%,2,7.70%,7,26.90%,1,25,0,3.80%,96.20%,0.00%,4,4,23,17.40% +122754,891,3081,State-funded primary,412,202,210,49.00%,51.00%,2,0.50%,31,7.50%,35,377,0,8.50%,91.50%,0.00%,46,47,373,12.60% +122756,891,3084,State-funded primary,82,43,39,52.40%,47.60%,1,1.20%,7,8.50%,0,82,0,0.00%,100.00%,0.00%,5,6,82,7.30% +122757,891,3087,State-funded primary,127,66,61,52.00%,48.00%,1,0.80%,5,3.90%,0,127,0,0.00%,100.00%,0.00%,12,13,124,10.50% +122758,891,3088,State-funded primary,90,46,44,51.10%,48.90%,1,1.10%,4,4.40%,0,90,0,0.00%,100.00%,0.00%,6,7,90,7.80% +122762,891,3112,State-funded primary,106,54,52,50.90%,49.10%,0,0.00%,7,6.60%,0,106,0,0.00%,100.00%,0.00%,6,7,93,7.50% +122763,891,3113,State-funded primary,101,46,55,45.50%,54.50%,1,1.00%,13,12.90%,2,99,0,2.00%,98.00%,0.00%,6,6,101,5.90% +122764,891,3117,State-funded primary,44,21,23,47.70%,52.30%,0,0.00%,2,4.50%,0,44,0,0.00%,100.00%,0.00%,3,3,36,8.30% +122766,891,3119,State-funded primary,55,26,29,47.30%,52.70%,1,1.80%,4,7.30%,3,52,0,5.50%,94.50%,0.00%,12,12,51,23.50% +122767,891,3126,State-funded primary,361,179,182,49.60%,50.40%,3,0.80%,34,9.40%,32,329,0,8.90%,91.10%,0.00%,52,52,361,14.40% +122769,891,3133,State-funded primary,323,144,179,44.60%,55.40%,2,0.60%,18,5.60%,16,307,0,5.00%,95.00%,0.00%,35,40,323,12.40% +122770,891,3143,State-funded primary,173,75,98,43.40%,56.60%,1,0.60%,9,5.20%,6,167,0,3.50%,96.50%,0.00%,11,11,173,6.40% +122771,891,3145,State-funded primary,114,55,59,48.20%,51.80%,2,1.80%,7,6.10%,1,113,0,0.90%,99.10%,0.00%,13,13,114,11.40% +122772,891,3287,State-funded primary,133,66,67,49.60%,50.40%,0,0.00%,13,9.80%,0,133,0,0.00%,100.00%,0.00%,12,12,116,10.30% +122787,891,3352,State-funded primary,201,103,98,51.20%,48.80%,0,0.00%,12,6.00%,23,173,5,11.40%,86.10%,2.50%,44,45,201,22.40% +122788,891,3370,State-funded primary,194,92,102,47.40%,52.60%,2,1.00%,25,12.90%,12,182,0,6.20%,93.80%,0.00%,17,17,194,8.80% +122792,891,3450,State-funded primary,144,69,75,47.90%,52.10%,0,0.00%,11,7.60%,23,120,1,16.00%,83.30%,0.70%,43,44,118,37.30% +122793,891,3494,State-funded primary,172,86,86,50.00%,50.00%,0,0.00%,7,4.10%,6,166,0,3.50%,96.50%,0.00%,15,17,172,9.90% +122794,891,3496,State-funded primary,198,109,89,55.10%,44.90%,0,0.00%,20,10.10%,35,163,0,17.70%,82.30%,0.00%,31,31,198,15.70% +122796,891,3514,State-funded primary,140,84,56,60.00%,40.00%,0,0.00%,6,4.30%,2,138,0,1.40%,98.60%,0.00%,18,18,119,15.10% +122799,891,3539,State-funded primary,96,46,50,47.90%,52.10%,0,0.00%,2,2.10%,2,94,0,2.10%,97.90%,0.00%,7,7,96,7.30% +122801,891,3546,State-funded primary,99,52,47,52.50%,47.50%,2,2.00%,8,8.10%,10,89,0,10.10%,89.90%,0.00%,12,12,94,12.80% +122802,891,3548,State-funded primary,109,58,51,53.20%,46.80%,0,0.00%,11,10.10%,1,108,0,0.90%,99.10%,0.00%,14,14,97,14.40% +122806,891,3566,State-funded primary,202,99,103,49.00%,51.00%,2,1.00%,9,4.50%,7,195,0,3.50%,96.50%,0.00%,17,17,202,8.40% +122807,891,3568,State-funded primary,104,50,54,48.10%,51.90%,0,0.00%,13,12.50%,3,101,0,2.90%,97.10%,0.00%,9,9,104,8.70% +122808,891,3586,State-funded primary,90,52,38,57.80%,42.20%,0,0.00%,1,1.10%,0,90,0,0.00%,100.00%,0.00%,6,7,76,9.20% +122809,891,3592,State-funded primary,92,48,44,52.20%,47.80%,1,1.10%,10,10.90%,3,89,0,3.30%,96.70%,0.00%,13,13,92,14.10% +122810,891,3606,State-funded primary,184,77,107,41.80%,58.20%,1,0.50%,8,4.30%,0,184,0,0.00%,100.00%,0.00%,11,12,184,6.50% +122816,891,3764,State-funded primary,106,47,59,44.30%,55.70%,1,0.90%,14,13.20%,19,86,1,17.90%,81.10%,0.90%,52,50,99,50.50% +122820,891,3768,State-funded primary,200,109,91,54.50%,45.50%,1,0.50%,23,11.50%,72,128,0,36.00%,64.00%,0.00%,60,58,183,31.70% +122854,891,4121,State-funded secondary,1053,482,571,45.80%,54.20%,7,0.70%,56,5.30%,297,733,23,28.20%,69.60%,2.20%,155,161,922,17.50% +122907,891,6000,Independent school,118,56,62,47.50%,52.50%,0,0.00%,6,5.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122908,891,6001,Independent school,687,322,365,46.90%,53.10%,1,0.10%,84,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122912,892,6001,Independent school,207,88,119,42.50%,57.50%,9,4.30%,45,21.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122914,892,6003,Independent school,108,36,72,33.30%,66.70%,0,0.00%,16,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122915,892,6004,Independent school,1166,403,763,34.60%,65.40%,0,0.00%,174,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122931,891,6013,Independent school,179,95,84,53.10%,46.90%,7,3.90%,25,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122932,891,6014,Independent school,100,50,50,50.00%,50.00%,0,0.00%,14,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122933,891,6015,Independent school,95,55,40,57.90%,42.10%,1,1.10%,8,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122936,892,6009,Independent school,707,707,0,100.00%,0.00%,2,0.30%,117,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122938,891,6017,Independent school,93,46,47,49.50%,50.50%,0,0.00%,17,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122941,892,6010,Independent school,68,41,27,60.30%,39.70%,1,1.50%,11,16.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +122949,891,7012,State-funded special school,93,12,81,12.90%,87.10%,93,100.00%,0,0.00%,0,93,0,0.00%,100.00%,0.00%,41,40,76,52.60% +122953,891,7019,State-funded special school,91,26,65,28.60%,71.40%,91,100.00%,0,0.00%,6,85,0,6.60%,93.40%,0.00%,36,36,83,43.40% +122955,891,7021,State-funded special school,159,46,113,28.90%,71.10%,159,100.00%,0,0.00%,4,155,0,2.50%,97.50%,0.00%,76,67,134,50.00% +122956,891,7022,Non-maintained special school,77,23,54,29.90%,70.10%,77,100.00%,0,0.00%,0,77,0,0.00%,100.00%,0.00%,24,22,63,34.90% +122957,891,7023,State-funded special school,100,40,60,40.00%,60.00%,100,100.00%,0,0.00%,8,84,8,8.00%,84.00%,8.00%,32,27,84,32.10% +122961,891,7032,State-funded special school,154,45,109,29.20%,70.80%,154,100.00%,0,0.00%,5,149,0,3.20%,96.80%,0.00%,52,49,132,37.10% +122964,892,7035,State-funded special school,119,17,102,14.30%,85.70%,119,100.00%,0,0.00%,44,75,0,37.00%,63.00%,0.00%,60,58,94,61.70% +122967,931,1005,State-funded nursery,54,26,28,48.10%,51.90%,0,0.00%,10,18.50%,17,35,2,31.50%,64.80%,3.70%,0,0,0,0.00% +122968,931,1006,State-funded nursery,96,51,45,53.10%,46.90%,0,0.00%,19,19.80%,26,68,2,27.10%,70.80%,2.10%,4,0,0,0.00% +122969,931,1010,State-funded nursery,39,22,17,56.40%,43.60%,0,0.00%,12,30.80%,8,31,0,20.50%,79.50%,0.00%,1,0,0,0.00% +122970,931,1011,State-funded nursery,98,40,58,40.80%,59.20%,0,0.00%,19,19.40%,33,65,0,33.70%,66.30%,0.00%,0,0,0,0.00% +122972,931,1017,State-funded nursery,68,30,38,44.10%,55.90%,1,1.50%,12,17.60%,17,51,0,25.00%,75.00%,0.00%,0,0,0,0.00% +122974,931,1019,State-funded nursery,44,19,25,43.20%,56.80%,0,0.00%,16,36.40%,8,36,0,18.20%,81.80%,0.00%,0,0,0,0.00% +122983,931,1031,State-funded nursery,51,29,22,56.90%,43.10%,2,3.90%,7,13.70%,4,47,0,7.80%,92.20%,0.00%,0,0,1,0.00% +122994,931,2055,State-funded primary,428,221,207,51.60%,48.40%,3,0.70%,120,28.00%,99,329,0,23.10%,76.90%,0.00%,190,169,371,45.60% +122996,931,2057,State-funded primary,430,219,211,50.90%,49.10%,10,2.30%,81,18.80%,64,363,3,14.90%,84.40%,0.70%,90,92,398,23.10% +122997,931,2058,State-funded primary,306,144,162,47.10%,52.90%,13,4.20%,53,17.30%,35,271,0,11.40%,88.60%,0.00%,49,50,306,16.30% +123001,931,2103,State-funded primary,83,46,37,55.40%,44.60%,4,4.80%,16,19.30%,2,81,0,2.40%,97.60%,0.00%,15,15,83,18.10% +123002,931,2104,State-funded primary,97,55,42,56.70%,43.30%,2,2.10%,9,9.30%,0,97,0,0.00%,100.00%,0.00%,6,6,97,6.20% +123003,931,2106,State-funded primary,232,112,120,48.30%,51.70%,3,1.30%,15,6.50%,11,221,0,4.70%,95.30%,0.00%,17,17,203,8.40% +123006,931,2200,State-funded primary,360,183,177,50.80%,49.20%,13,3.60%,82,22.80%,52,308,0,14.40%,85.60%,0.00%,62,65,327,19.90% +123007,931,2202,State-funded primary,314,156,158,49.70%,50.30%,10,3.20%,46,14.60%,50,263,1,15.90%,83.80%,0.30%,73,74,300,24.70% +123008,931,2207,State-funded primary,396,191,205,48.20%,51.80%,11,2.80%,36,9.10%,102,294,0,25.80%,74.20%,0.00%,81,85,360,23.60% +123009,931,2208,State-funded primary,140,89,51,63.60%,36.40%,1,0.70%,11,7.90%,3,137,0,2.10%,97.90%,0.00%,5,5,140,3.60% +123011,931,2210,State-funded primary,455,238,217,52.30%,47.70%,6,1.30%,48,10.50%,48,407,0,10.50%,89.50%,0.00%,58,60,414,14.50% +123015,931,2252,State-funded primary,279,137,142,49.10%,50.90%,9,3.20%,29,10.40%,36,243,0,12.90%,87.10%,0.00%,36,37,248,14.90% +123016,931,2254,State-funded primary,239,113,126,47.30%,52.70%,6,2.50%,27,11.30%,9,230,0,3.80%,96.20%,0.00%,28,29,239,12.10% +123021,931,2352,State-funded primary,432,182,250,42.10%,57.90%,27,6.30%,41,9.50%,146,285,1,33.80%,66.00%,0.20%,35,38,385,9.90% +123022,931,2353,State-funded primary,96,43,53,44.80%,55.20%,2,2.10%,17,17.70%,1,95,0,1.00%,99.00%,0.00%,12,12,96,12.50% +123023,931,2354,State-funded primary,266,127,139,47.70%,52.30%,9,3.40%,33,12.40%,30,236,0,11.30%,88.70%,0.00%,41,41,266,15.40% +123025,931,2357,State-funded primary,306,132,174,43.10%,56.90%,7,2.30%,50,16.30%,46,259,1,15.00%,84.60%,0.30%,44,44,306,14.40% +123028,931,2450,State-funded primary,175,93,82,53.10%,46.90%,5,2.90%,20,11.40%,7,167,1,4.00%,95.40%,0.60%,0,10,175,5.70% +123031,931,2456,State-funded primary,75,24,51,32.00%,68.00%,1,1.30%,14,18.70%,4,71,0,5.30%,94.70%,0.00%,9,10,64,15.60% +123034,931,2463,State-funded primary,518,235,283,45.40%,54.60%,15,2.90%,97,18.70%,31,487,0,6.00%,94.00%,0.00%,78,80,518,15.40% +123036,931,2465,State-funded primary,231,105,126,45.50%,54.50%,4,1.70%,37,16.00%,7,224,0,3.00%,97.00%,0.00%,21,22,206,10.70% +123037,931,2504,State-funded primary,147,77,70,52.40%,47.60%,3,2.00%,17,11.60%,15,132,0,10.20%,89.80%,0.00%,8,8,124,6.50% +123038,931,2506,State-funded primary,373,162,211,43.40%,56.60%,7,1.90%,42,11.30%,16,356,1,4.30%,95.40%,0.30%,71,72,373,19.30% +123039,931,2507,State-funded primary,32,13,19,40.60%,59.40%,1,3.10%,4,12.50%,0,32,0,0.00%,100.00%,0.00%,6,6,32,18.80% +123040,931,2510,State-funded primary,174,77,97,44.30%,55.70%,5,2.90%,24,13.80%,6,165,3,3.40%,94.80%,1.70%,21,21,174,12.10% +123041,931,2512,State-funded primary,178,77,101,43.30%,56.70%,1,0.60%,23,12.90%,19,159,0,10.70%,89.30%,0.00%,11,12,178,6.70% +123042,931,2513,State-funded primary,132,71,61,53.80%,46.20%,8,6.10%,30,22.70%,27,105,0,20.50%,79.50%,0.00%,30,32,132,24.20% +123046,931,2525,State-funded primary,287,145,142,50.50%,49.50%,1,0.30%,43,15.00%,173,114,0,60.30%,39.70%,0.00%,66,67,252,26.60% +123047,931,2527,State-funded primary,627,321,306,51.20%,48.80%,10,1.60%,86,13.70%,195,430,2,31.10%,68.60%,0.30%,50,50,627,8.00% +123050,931,2533,State-funded primary,229,112,117,48.90%,51.10%,8,3.50%,14,6.10%,53,176,0,23.10%,76.90%,0.00%,22,23,201,11.40% +123057,931,2555,State-funded primary,312,147,165,47.10%,52.90%,5,1.60%,33,10.60%,20,292,0,6.40%,93.60%,0.00%,25,25,292,8.60% +123059,931,2560,State-funded primary,210,104,106,49.50%,50.50%,4,1.90%,25,11.90%,5,201,4,2.40%,95.70%,1.90%,24,24,210,11.40% +123062,931,2563,State-funded primary,206,98,108,47.60%,52.40%,8,3.90%,38,18.40%,23,183,0,11.20%,88.80%,0.00%,46,46,206,22.30% +123063,931,2565,State-funded primary,101,62,39,61.40%,38.60%,3,3.00%,16,15.80%,16,85,0,15.80%,84.20%,0.00%,16,17,101,16.80% +123072,931,2583,State-funded primary,211,92,119,43.60%,56.40%,7,3.30%,41,19.40%,18,193,0,8.50%,91.50%,0.00%,39,39,211,18.50% +123073,931,2587,State-funded primary,216,111,105,51.40%,48.60%,4,1.90%,31,14.40%,31,185,0,14.40%,85.60%,0.00%,24,24,202,11.90% +123074,931,2589,State-funded primary,402,183,219,45.50%,54.50%,19,4.70%,83,20.60%,144,257,1,35.80%,63.90%,0.20%,116,116,402,28.90% +123075,931,2590,State-funded primary,280,144,136,51.40%,48.60%,9,3.20%,43,15.40%,82,198,0,29.30%,70.70%,0.00%,42,43,280,15.40% +123076,931,2591,State-funded primary,457,212,245,46.40%,53.60%,11,2.40%,61,13.30%,16,441,0,3.50%,96.50%,0.00%,62,63,419,15.00% +123079,931,2594,State-funded primary,451,233,218,51.70%,48.30%,10,2.20%,68,15.10%,59,391,1,13.10%,86.70%,0.20%,95,95,417,22.80% +123080,931,2595,State-funded primary,218,118,100,54.10%,45.90%,7,3.20%,34,15.60%,52,166,0,23.90%,76.10%,0.00%,30,32,193,16.60% +123084,931,2601,State-funded primary,439,221,218,50.30%,49.70%,3,0.70%,53,12.10%,31,407,1,7.10%,92.70%,0.20%,63,64,411,15.60% +123085,931,2602,State-funded primary,227,125,102,55.10%,44.90%,7,3.10%,20,8.80%,46,181,0,20.30%,79.70%,0.00%,17,17,208,8.20% +123087,931,2605,State-funded primary,425,192,233,45.20%,54.80%,14,3.30%,105,24.70%,55,369,1,12.90%,86.80%,0.20%,95,99,383,25.80% +123090,931,3000,State-funded primary,170,83,87,48.80%,51.20%,2,1.20%,30,17.60%,1,169,0,0.60%,99.40%,0.00%,12,12,170,7.10% +123096,931,3043,State-funded primary,103,43,60,41.70%,58.30%,5,4.90%,9,8.70%,4,98,1,3.90%,95.10%,1.00%,31,32,103,31.10% +123097,931,3044,State-funded primary,294,151,143,51.40%,48.60%,10,3.40%,34,11.60%,4,290,0,1.40%,98.60%,0.00%,32,34,267,12.70% +123098,931,3064,State-funded primary,396,178,218,44.90%,55.10%,9,2.30%,80,20.20%,9,387,0,2.30%,97.70%,0.00%,70,70,396,17.70% +123099,931,3065,State-funded primary,141,64,77,45.40%,54.60%,4,2.80%,17,12.10%,4,137,0,2.80%,97.20%,0.00%,18,20,128,15.60% +123100,931,3081,State-funded primary,90,43,47,47.80%,52.20%,5,5.60%,7,7.80%,0,90,0,0.00%,100.00%,0.00%,8,8,79,10.10% +123101,931,3082,State-funded primary,182,95,87,52.20%,47.80%,5,2.70%,26,14.30%,11,171,0,6.00%,94.00%,0.00%,11,11,182,6.00% +123102,931,3083,State-funded primary,99,54,45,54.50%,45.50%,4,4.00%,12,12.10%,5,94,0,5.10%,94.90%,0.00%,9,9,99,9.10% +123103,931,3085,State-funded primary,161,75,86,46.60%,53.40%,5,3.10%,14,8.70%,2,159,0,1.20%,98.80%,0.00%,10,11,137,8.00% +123105,931,3100,State-funded primary,98,58,40,59.20%,40.80%,1,1.00%,14,14.30%,0,98,0,0.00%,100.00%,0.00%,15,15,98,15.30% +123106,931,3120,State-funded primary,186,95,91,51.10%,48.90%,2,1.10%,17,9.10%,4,182,0,2.20%,97.80%,0.00%,11,11,168,6.50% +123107,931,3122,State-funded primary,211,94,117,44.50%,55.50%,0,0.00%,19,9.00%,18,193,0,8.50%,91.50%,0.00%,27,27,184,14.70% +123108,931,3123,State-funded primary,107,62,45,57.90%,42.10%,0,0.00%,10,9.30%,3,104,0,2.80%,97.20%,0.00%,7,7,97,7.20% +123110,931,3125,State-funded primary,141,70,71,49.60%,50.40%,2,1.40%,35,24.80%,3,138,0,2.10%,97.90%,0.00%,38,39,141,27.70% +123115,931,3141,State-funded primary,87,34,53,39.10%,60.90%,4,4.60%,7,8.00%,2,85,0,2.30%,97.70%,0.00%,10,12,80,15.00% +123116,931,3142,State-funded primary,117,59,58,50.40%,49.60%,1,0.90%,14,12.00%,16,101,0,13.70%,86.30%,0.00%,4,4,117,3.40% +123118,931,3145,State-funded primary,322,163,159,50.60%,49.40%,3,0.90%,36,11.20%,45,277,0,14.00%,86.00%,0.00%,29,30,297,10.10% +123119,931,3146,State-funded primary,98,44,54,44.90%,55.10%,5,5.10%,9,9.20%,7,91,0,7.10%,92.90%,0.00%,12,13,98,13.30% +123124,931,3180,State-funded primary,78,36,42,46.20%,53.80%,5,6.40%,13,16.70%,3,75,0,3.80%,96.20%,0.00%,11,11,78,14.10% +123126,931,3182,State-funded primary,415,209,206,50.40%,49.60%,18,4.30%,41,9.90%,13,402,0,3.10%,96.90%,0.00%,33,33,415,8.00% +123127,931,3183,State-funded primary,89,44,45,49.40%,50.60%,1,1.10%,11,12.40%,8,81,0,9.00%,91.00%,0.00%,6,6,89,6.70% +123128,931,3184,State-funded primary,76,39,37,51.30%,48.70%,1,1.30%,9,11.80%,4,72,0,5.30%,94.70%,0.00%,6,6,76,7.90% +123129,931,3186,State-funded primary,68,39,29,57.40%,42.60%,1,1.50%,13,19.10%,11,57,0,16.20%,83.80%,0.00%,9,10,68,14.70% +123130,931,3187,State-funded primary,169,85,84,50.30%,49.70%,5,3.00%,25,14.80%,24,145,0,14.20%,85.80%,0.00%,29,29,169,17.20% +123131,931,3188,State-funded primary,72,24,48,33.30%,66.70%,3,4.20%,23,31.90%,13,59,0,18.10%,81.90%,0.00%,12,12,72,16.70% +123133,931,3200,State-funded primary,235,118,117,50.20%,49.80%,5,2.10%,20,8.50%,15,220,0,6.40%,93.60%,0.00%,12,13,208,6.30% +123135,931,3205,State-funded primary,93,58,35,62.40%,37.60%,1,1.10%,13,14.00%,4,89,0,4.30%,95.70%,0.00%,8,8,93,8.60% +123136,931,3206,State-funded primary,63,29,34,46.00%,54.00%,4,6.30%,12,19.00%,5,58,0,7.90%,92.10%,0.00%,1,1,63,1.60% +123139,931,3210,State-funded primary,461,236,225,51.20%,48.80%,5,1.10%,86,18.70%,224,232,5,48.60%,50.30%,1.10%,125,127,404,31.40% +123140,931,3211,State-funded primary,242,120,122,49.60%,50.40%,11,4.50%,37,15.30%,83,159,0,34.30%,65.70%,0.00%,24,24,242,9.90% +123142,931,3213,State-funded primary,139,60,79,43.20%,56.80%,2,1.40%,16,11.50%,47,92,0,33.80%,66.20%,0.00%,28,28,135,20.70% +123143,931,3216,State-funded primary,199,89,110,44.70%,55.30%,3,1.50%,17,8.50%,41,158,0,20.60%,79.40%,0.00%,17,19,199,9.50% +123146,931,3223,State-funded primary,207,103,104,49.80%,50.20%,4,1.90%,23,11.10%,25,179,3,12.10%,86.50%,1.40%,4,9,207,4.30% +123151,931,3231,State-funded primary,97,50,47,51.50%,48.50%,1,1.00%,15,15.50%,2,95,0,2.10%,97.90%,0.00%,6,7,97,7.20% +123153,931,3233,State-funded primary,82,38,44,46.30%,53.70%,1,1.20%,12,14.60%,9,73,0,11.00%,89.00%,0.00%,21,21,82,25.60% +123154,931,3234,State-funded primary,76,38,38,50.00%,50.00%,4,5.30%,17,22.40%,6,70,0,7.90%,92.10%,0.00%,17,17,76,22.40% +123155,931,3235,State-funded primary,182,89,93,48.90%,51.10%,9,4.90%,22,12.10%,9,173,0,4.90%,95.10%,0.00%,32,32,182,17.60% +123157,931,3238,State-funded primary,118,61,57,51.70%,48.30%,2,1.70%,16,13.60%,4,114,0,3.40%,96.60%,0.00%,3,3,102,2.90% +123159,931,3240,State-funded primary,201,114,87,56.70%,43.30%,2,1.00%,29,14.40%,1,200,0,0.50%,99.50%,0.00%,23,23,201,11.40% +123160,931,3241,State-funded primary,210,101,109,48.10%,51.90%,3,1.40%,18,8.60%,10,200,0,4.80%,95.20%,0.00%,28,29,180,16.10% +123161,931,3242,State-funded primary,68,30,38,44.10%,55.90%,1,1.50%,5,7.40%,1,67,0,1.50%,98.50%,0.00%,6,6,68,8.80% +123166,931,3247,State-funded primary,419,205,214,48.90%,51.10%,17,4.10%,59,14.10%,42,376,1,10.00%,89.70%,0.20%,71,72,419,17.20% +123168,931,3249,State-funded primary,209,91,118,43.50%,56.50%,6,2.90%,24,11.50%,14,191,4,6.70%,91.40%,1.90%,30,30,209,14.40% +123170,931,3251,State-funded primary,106,62,44,58.50%,41.50%,6,5.70%,17,16.00%,3,103,0,2.80%,97.20%,0.00%,16,15,93,16.10% +123172,931,3253,State-funded primary,265,125,140,47.20%,52.80%,6,2.30%,49,18.50%,115,149,1,43.40%,56.20%,0.40%,54,55,222,24.80% +123173,931,3254,State-funded primary,299,150,149,50.20%,49.80%,3,1.00%,26,8.70%,46,253,0,15.40%,84.60%,0.00%,10,11,299,3.70% +123176,931,3257,State-funded primary,293,137,156,46.80%,53.20%,5,1.70%,37,12.60%,12,281,0,4.10%,95.90%,0.00%,23,23,293,7.80% +123177,931,3258,State-funded primary,413,196,217,47.50%,52.50%,12,2.90%,54,13.10%,66,344,3,16.00%,83.30%,0.70%,45,48,387,12.40% +123178,931,3260,State-funded primary,126,58,68,46.00%,54.00%,4,3.20%,15,11.90%,6,120,0,4.80%,95.20%,0.00%,27,27,126,21.40% +123179,931,3262,State-funded primary,362,187,175,51.70%,48.30%,5,1.40%,53,14.60%,198,164,0,54.70%,45.30%,0.00%,87,83,334,24.90% +123183,931,3408,State-funded primary,109,56,53,51.40%,48.60%,3,2.80%,14,12.80%,6,103,0,5.50%,94.50%,0.00%,10,10,109,9.20% +123187,931,3500,State-funded primary,72,29,43,40.30%,59.70%,1,1.40%,7,9.70%,4,68,0,5.60%,94.40%,0.00%,8,8,72,11.10% +123188,931,3505,State-funded primary,452,208,244,46.00%,54.00%,16,3.50%,82,18.10%,112,340,0,24.80%,75.20%,0.00%,73,75,415,18.10% +123197,931,3752,State-funded primary,73,38,35,52.10%,47.90%,1,1.40%,6,8.20%,4,69,0,5.50%,94.50%,0.00%,0,0,73,0.00% +123198,931,3755,State-funded primary,39,18,21,46.20%,53.80%,0,0.00%,9,23.10%,4,35,0,10.30%,89.70%,0.00%,3,4,39,10.30% +123200,931,3801,State-funded primary,55,23,32,41.80%,58.20%,1,1.80%,5,9.10%,0,55,0,0.00%,100.00%,0.00%,3,3,55,5.50% +123201,931,3803,State-funded primary,162,80,82,49.40%,50.60%,2,1.20%,18,11.10%,6,156,0,3.70%,96.30%,0.00%,12,13,162,8.00% +123203,931,3810,State-funded primary,130,67,63,51.50%,48.50%,1,0.80%,11,8.50%,5,125,0,3.80%,96.20%,0.00%,5,5,130,3.80% +123204,931,3820,State-funded primary,118,49,69,41.50%,58.50%,2,1.70%,11,9.30%,34,84,0,28.80%,71.20%,0.00%,20,20,118,16.90% +123207,931,3824,State-funded primary,248,124,124,50.00%,50.00%,12,4.80%,40,16.10%,96,151,1,38.70%,60.90%,0.40%,28,29,248,11.70% +123211,931,3832,State-funded primary,187,90,97,48.10%,51.90%,2,1.10%,22,11.80%,70,117,0,37.40%,62.60%,0.00%,31,25,166,15.10% +123212,931,3833,State-funded primary,318,150,168,47.20%,52.80%,11,3.50%,48,15.10%,129,188,1,40.60%,59.10%,0.30%,43,43,318,13.50% +123213,931,3834,State-funded primary,386,198,188,51.30%,48.70%,9,2.30%,54,14.00%,75,310,1,19.40%,80.30%,0.30%,45,49,386,12.70% +123214,931,3835,State-funded primary,401,199,202,49.60%,50.40%,6,1.50%,26,6.50%,98,302,1,24.40%,75.30%,0.20%,23,24,401,6.00% +123216,931,3838,State-funded primary,413,183,230,44.30%,55.70%,9,2.20%,45,10.90%,273,130,10,66.10%,31.50%,2.40%,35,39,413,9.40% +123218,931,3842,State-funded primary,218,111,107,50.90%,49.10%,4,1.80%,16,7.30%,90,128,0,41.30%,58.70%,0.00%,20,22,181,12.20% +123219,931,3850,State-funded primary,189,96,93,50.80%,49.20%,6,3.20%,22,11.60%,16,173,0,8.50%,91.50%,0.00%,11,11,189,5.80% +123220,931,3851,State-funded primary,87,37,50,42.50%,57.50%,6,6.90%,10,11.50%,2,85,0,2.30%,97.70%,0.00%,11,12,77,15.60% +123222,931,3853,State-funded primary,95,39,56,41.10%,58.90%,2,2.10%,17,17.90%,5,90,0,5.30%,94.70%,0.00%,4,4,95,4.20% +123223,931,3854,State-funded primary,96,40,56,41.70%,58.30%,2,2.10%,17,17.70%,14,82,0,14.60%,85.40%,0.00%,11,12,92,13.00% +123224,931,3855,State-funded primary,115,57,58,49.60%,50.40%,2,1.70%,21,18.30%,8,107,0,7.00%,93.00%,0.00%,13,15,115,13.00% +123225,931,3856,State-funded primary,211,98,113,46.40%,53.60%,5,2.40%,42,19.90%,53,158,0,25.10%,74.90%,0.00%,24,24,183,13.10% +123227,931,3858,State-funded primary,195,91,104,46.70%,53.30%,7,3.60%,30,15.40%,27,168,0,13.80%,86.20%,0.00%,65,67,195,34.40% +123228,931,3859,State-funded primary,434,213,221,49.10%,50.90%,5,1.20%,60,13.80%,107,327,0,24.70%,75.30%,0.00%,36,41,403,10.20% +123236,931,4041,State-funded secondary,639,309,330,48.40%,51.60%,24,3.80%,99,15.50%,46,593,0,7.20%,92.80%,0.00%,116,126,583,21.60% +123273,931,5200,State-funded primary,88,33,55,37.50%,62.50%,5,5.70%,26,29.50%,3,84,1,3.40%,95.50%,1.10%,10,10,88,11.40% +123274,931,6001,Independent school,322,322,0,100.00%,0.00%,1,0.30%,109,33.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123275,931,6002,Independent school,553,222,331,40.10%,59.90%,0,0.00%,150,27.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123276,931,6003,Independent school,203,145,58,71.40%,28.60%,0,0.00%,20,9.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123277,931,6004,Independent school,369,162,207,43.90%,56.10%,6,1.60%,37,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123278,931,6005,Independent school,423,196,227,46.30%,53.70%,2,0.50%,199,47.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123279,931,6009,Independent school,78,44,34,56.40%,43.60%,0,0.00%,8,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123280,931,6021,Independent school,126,62,64,49.20%,50.80%,1,0.80%,31,24.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123282,931,6034,Independent school,372,102,270,27.40%,72.60%,0,0.00%,93,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123283,931,6046,Independent school,611,276,335,45.20%,54.80%,0,0.00%,48,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123285,931,6050,Independent school,517,66,451,12.80%,87.20%,5,1.00%,265,51.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123286,931,6055,Independent school,317,143,174,45.10%,54.90%,0,0.00%,25,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123287,931,6060,Independent school,137,5,132,3.60%,96.40%,0,0.00%,15,10.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123288,931,6062,Independent school,810,362,448,44.70%,55.30%,1,0.10%,146,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123290,931,6064,Independent school,1065,1065,0,100.00%,0.00%,0,0.00%,106,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123291,931,6065,Independent school,158,0,158,0.00%,100.00%,0,0.00%,26,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123292,931,6066,Independent school,779,323,456,41.50%,58.50%,0,0.00%,218,28.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123293,931,6067,Independent school,337,0,337,0.00%,100.00%,0,0.00%,70,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123294,931,6068,Independent school,124,124,0,100.00%,0.00%,3,2.40%,64,51.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123295,931,6070,Independent school,265,233,32,87.90%,12.10%,1,0.40%,68,25.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123297,931,6075,Independent school,163,0,163,0.00%,100.00%,0,0.00%,30,18.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123298,931,6076,Independent school,366,160,206,43.70%,56.30%,0,0.00%,157,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123299,931,6078,Independent school,337,150,187,44.50%,55.50%,0,0.00%,82,24.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123300,931,6079,Independent school,761,1,760,0.10%,99.90%,0,0.00%,160,21.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123301,931,6080,Independent school,408,189,219,46.30%,53.70%,0,0.00%,68,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123303,931,6083,Independent school,546,382,164,70.00%,30.00%,0,0.00%,70,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123306,931,6087,Independent school,387,1,386,0.30%,99.70%,0,0.00%,86,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123308,931,6090,Independent school,373,254,119,68.10%,31.90%,1,0.30%,58,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123310,931,6093,Independent school,864,864,0,100.00%,0.00%,1,0.10%,144,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123311,931,6094,Independent school,977,101,876,10.30%,89.70%,1,0.10%,168,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123312,931,6095,Independent school,1285,0,1285,0.00%,100.00%,0,0.00%,197,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123313,931,6096,Independent school,721,721,0,100.00%,0.00%,1,0.10%,135,18.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123315,931,6100,Independent school,200,104,96,52.00%,48.00%,1,0.50%,49,24.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123317,931,6102,Independent school,64,40,24,62.50%,37.50%,2,3.10%,3,4.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123318,931,6104,Independent school,742,372,370,50.10%,49.90%,1,0.10%,228,30.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123319,931,6105,Independent school,102,60,42,58.80%,41.20%,0,0.00%,8,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123320,931,6106,Independent school,176,0,176,0.00%,100.00%,21,11.90%,21,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123322,931,6109,Independent school,107,43,64,40.20%,59.80%,53,49.50%,54,50.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123326,931,6115,Independent school,48,8,40,16.70%,83.30%,46,95.80%,2,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123329,931,7002,State-funded special school,85,10,75,11.80%,88.20%,85,100.00%,0,0.00%,0,85,0,0.00%,100.00%,0.00%,33,41,84,48.80% +123330,931,7005,Non-maintained special school,22,6,16,27.30%,72.70%,22,100.00%,0,0.00%,0,22,0,0.00%,100.00%,0.00%,0,12,22,54.50% +123331,931,7007,Non-maintained special school,73,0,73,0.00%,100.00%,73,100.00%,0,0.00%,2,69,2,2.70%,94.50%,2.70%,1,8,41,19.50% +123332,931,7010,State-funded special school,121,38,83,31.40%,68.60%,121,100.00%,0,0.00%,14,107,0,11.60%,88.40%,0.00%,42,37,93,39.80% +123333,931,7011,State-funded special school,110,31,79,28.20%,71.80%,110,100.00%,0,0.00%,30,80,0,27.30%,72.70%,0.00%,36,36,98,36.70% +123347,894,1000,State-funded nursery,65,33,32,50.80%,49.20%,2,3.10%,11,16.90%,10,55,0,15.40%,84.60%,0.00%,0,0,0,0.00% +123348,894,1001,State-funded nursery,72,35,37,48.60%,51.40%,0,0.00%,11,15.30%,7,65,0,9.70%,90.30%,0.00%,0,0,0,0.00% +123349,894,1100,State-funded AP school,32,1,31,3.10%,96.90%,28,87.50%,1,3.10%,2,30,0,6.30%,93.80%,0.00%,19,21,32,65.60% +123350,840,3519,State-funded primary,169,79,90,46.70%,53.30%,4,2.40%,29,17.20%,13,156,0,7.70%,92.30%,0.00%,84,88,169,52.10% +123357,893,2032,State-funded primary,56,24,32,42.90%,57.10%,3,5.40%,6,10.70%,2,54,0,3.60%,96.40%,0.00%,9,9,46,19.60% +123358,894,2033,State-funded primary,51,24,27,47.10%,52.90%,3,5.90%,4,7.80%,1,50,0,2.00%,98.00%,0.00%,4,4,51,7.80% +123359,893,2034,State-funded primary,42,24,18,57.10%,42.90%,1,2.40%,8,19.00%,0,42,0,0.00%,100.00%,0.00%,6,7,42,16.70% +123364,894,2041,State-funded primary,163,74,89,45.40%,54.60%,2,1.20%,15,9.20%,40,123,0,24.50%,75.50%,0.00%,61,62,121,51.20% +123366,893,2046,State-funded primary,213,93,120,43.70%,56.30%,3,1.40%,18,8.50%,7,206,0,3.30%,96.70%,0.00%,52,55,193,28.50% +123370,894,2051,State-funded primary,146,71,75,48.60%,51.40%,3,2.10%,23,15.80%,4,142,0,2.70%,97.30%,0.00%,13,13,146,8.90% +123371,893,2052,State-funded primary,255,135,120,52.90%,47.10%,2,0.80%,39,15.30%,9,246,0,3.50%,96.50%,0.00%,63,67,255,26.30% +123372,893,2054,State-funded primary,141,73,68,51.80%,48.20%,3,2.10%,25,17.70%,1,140,0,0.70%,99.30%,0.00%,25,26,114,22.80% +123373,893,2055,State-funded primary,174,92,82,52.90%,47.10%,2,1.10%,19,10.90%,3,171,0,1.70%,98.30%,0.00%,24,24,174,13.80% +123377,894,2061,State-funded primary,427,223,204,52.20%,47.80%,6,1.40%,34,8.00%,30,397,0,7.00%,93.00%,0.00%,38,38,427,8.90% +123378,894,2062,State-funded primary,213,98,115,46.00%,54.00%,1,0.50%,35,16.40%,2,211,0,0.90%,99.10%,0.00%,14,15,213,7.00% +123383,893,2072,State-funded primary,133,64,69,48.10%,51.90%,1,0.80%,19,14.30%,14,119,0,10.50%,89.50%,0.00%,39,40,133,30.10% +123384,894,2074,State-funded primary,255,115,140,45.10%,54.90%,4,1.60%,25,9.80%,8,246,1,3.10%,96.50%,0.40%,43,43,208,20.70% +123385,893,2075,State-funded primary,67,36,31,53.70%,46.30%,0,0.00%,9,13.40%,0,67,0,0.00%,100.00%,0.00%,2,2,57,3.50% +123391,893,2088,State-funded primary,187,95,92,50.80%,49.20%,2,1.10%,24,12.80%,5,177,5,2.70%,94.70%,2.70%,79,81,187,43.30% +123393,893,2090,State-funded primary,393,193,200,49.10%,50.90%,12,3.10%,90,22.90%,32,360,1,8.10%,91.60%,0.30%,115,118,393,30.00% +123395,893,2098,State-funded primary,346,161,185,46.50%,53.50%,8,2.30%,51,14.70%,26,316,4,7.50%,91.30%,1.20%,101,90,278,32.40% +123396,893,2099,State-funded primary,67,29,38,43.30%,56.70%,3,4.50%,3,4.50%,0,66,1,0.00%,98.50%,1.50%,6,7,67,10.40% +123397,893,2101,State-funded primary,84,41,43,48.80%,51.20%,0,0.00%,15,17.90%,9,75,0,10.70%,89.30%,0.00%,22,22,77,28.60% +123399,893,2103,State-funded primary,133,57,76,42.90%,57.10%,2,1.50%,17,12.80%,7,124,2,5.30%,93.20%,1.50%,21,21,117,17.90% +123403,893,2110,State-funded primary,184,84,100,45.70%,54.30%,4,2.20%,45,24.50%,2,181,1,1.10%,98.40%,0.50%,32,33,169,19.50% +123404,894,2112,State-funded primary,275,130,145,47.30%,52.70%,3,1.10%,55,20.00%,80,195,0,29.10%,70.90%,0.00%,120,123,275,44.70% +123405,893,2113,State-funded primary,80,38,42,47.50%,52.50%,1,1.30%,5,6.30%,0,80,0,0.00%,100.00%,0.00%,18,15,68,22.10% +123406,894,2116,State-funded primary,202,91,111,45.00%,55.00%,1,0.50%,35,17.30%,27,175,0,13.40%,86.60%,0.00%,39,39,173,22.50% +123407,893,2117,State-funded primary,209,95,114,45.50%,54.50%,5,2.40%,30,14.40%,0,209,0,0.00%,100.00%,0.00%,34,32,181,17.70% +123410,893,2120,State-funded primary,346,162,184,46.80%,53.20%,10,2.90%,33,9.50%,2,328,16,0.60%,94.80%,4.60%,50,46,272,16.90% +123424,893,2146,State-funded primary,401,205,196,51.10%,48.90%,8,2.00%,27,6.70%,10,391,0,2.50%,97.50%,0.00%,67,58,350,16.60% +123429,894,2153,State-funded primary,235,106,129,45.10%,54.90%,2,0.90%,30,12.80%,38,197,0,16.20%,83.80%,0.00%,99,101,235,43.00% +123433,894,2158,State-funded primary,453,237,216,52.30%,47.70%,7,1.50%,103,22.70%,44,409,0,9.70%,90.30%,0.00%,237,251,409,61.40% +123434,893,2159,State-funded primary,207,99,108,47.80%,52.20%,2,1.00%,23,11.10%,9,198,0,4.30%,95.70%,0.00%,32,29,184,15.80% +123435,894,5203,State-funded primary,278,146,132,52.50%,47.50%,2,0.70%,19,6.80%,13,265,0,4.70%,95.30%,0.00%,31,32,278,11.50% +123437,893,2164,State-funded primary,277,144,133,52.00%,48.00%,2,0.70%,42,15.20%,10,267,0,3.60%,96.40%,0.00%,31,31,233,13.30% +123438,894,2168,State-funded primary,457,227,230,49.70%,50.30%,6,1.30%,87,19.00%,34,423,0,7.40%,92.60%,0.00%,98,103,407,25.30% +123441,894,2172,State-funded primary,351,174,177,49.60%,50.40%,9,2.60%,77,21.90%,56,295,0,16.00%,84.00%,0.00%,96,96,320,30.00% +123443,894,2174,State-funded primary,486,237,249,48.80%,51.20%,6,1.20%,58,11.90%,45,439,2,9.30%,90.30%,0.40%,126,133,392,33.90% +123444,894,2175,State-funded primary,248,127,121,51.20%,48.80%,5,2.00%,38,15.30%,31,217,0,12.50%,87.50%,0.00%,86,91,248,36.70% +123445,894,2176,State-funded primary,217,112,105,51.60%,48.40%,2,0.90%,48,22.10%,29,188,0,13.40%,86.60%,0.00%,112,114,197,57.90% +123447,893,2179,State-funded primary,223,115,108,51.60%,48.40%,2,0.90%,47,21.10%,36,187,0,16.10%,83.90%,0.00%,103,84,184,45.70% +123450,894,2190,State-funded primary,419,212,207,50.60%,49.40%,3,0.70%,58,13.80%,45,374,0,10.70%,89.30%,0.00%,83,84,419,20.00% +123451,894,2191,State-funded primary,275,133,142,48.40%,51.60%,2,0.70%,31,11.30%,64,210,1,23.30%,76.40%,0.40%,84,92,275,33.50% +123452,893,2194,State-funded primary,277,130,147,46.90%,53.10%,6,2.20%,55,19.90%,7,266,4,2.50%,96.00%,1.40%,38,38,277,13.70% +123453,894,2195,State-funded primary,414,193,221,46.60%,53.40%,7,1.70%,45,10.90%,25,389,0,6.00%,94.00%,0.00%,55,56,414,13.50% +123456,894,2200,State-funded primary,404,205,199,50.70%,49.30%,10,2.50%,45,11.10%,167,237,0,41.30%,58.70%,0.00%,114,116,370,31.40% +123457,893,3001,State-funded primary,30,14,16,46.70%,53.30%,2,6.70%,5,16.70%,1,29,0,3.30%,96.70%,0.00%,1,1,26,3.80% +123458,893,3003,State-funded primary,196,100,96,51.00%,49.00%,2,1.00%,23,11.70%,5,191,0,2.60%,97.40%,0.00%,15,15,196,7.70% +123460,893,3010,State-funded primary,53,23,30,43.40%,56.60%,1,1.90%,3,5.70%,0,53,0,0.00%,100.00%,0.00%,2,2,49,4.10% +123461,893,3012,State-funded primary,151,71,80,47.00%,53.00%,5,3.30%,21,13.90%,14,132,5,9.30%,87.40%,3.30%,18,19,137,13.90% +123463,893,3015,State-funded primary,66,31,35,47.00%,53.00%,0,0.00%,10,15.20%,2,64,0,3.00%,97.00%,0.00%,1,1,61,1.60% +123467,893,3022,State-funded primary,92,41,51,44.60%,55.40%,1,1.10%,10,10.90%,2,90,0,2.20%,97.80%,0.00%,3,3,68,4.40% +123468,893,3024,State-funded primary,256,114,142,44.50%,55.50%,12,4.70%,42,16.40%,13,234,9,5.10%,91.40%,3.50%,37,38,231,16.50% +123470,893,3027,State-funded primary,69,32,37,46.40%,53.60%,1,1.40%,16,23.20%,2,65,2,2.90%,94.20%,2.90%,15,12,56,21.40% +123471,893,3030,State-funded primary,129,68,61,52.70%,47.30%,6,4.70%,22,17.10%,3,126,0,2.30%,97.70%,0.00%,25,25,129,19.40% +123472,893,3031,State-funded primary,101,44,57,43.60%,56.40%,3,3.00%,16,15.80%,0,101,0,0.00%,100.00%,0.00%,20,21,101,20.80% +123473,894,3035,State-funded primary,211,110,101,52.10%,47.90%,4,1.90%,35,16.60%,56,155,0,26.50%,73.50%,0.00%,114,114,211,54.00% +123474,894,3039,State-funded primary,225,115,110,51.10%,48.90%,5,2.20%,20,8.90%,1,224,0,0.40%,99.60%,0.00%,22,22,194,11.30% +123475,893,3041,State-funded primary,41,24,17,58.50%,41.50%,0,0.00%,10,24.40%,1,39,1,2.40%,95.10%,2.40%,3,3,41,7.30% +123477,893,3044,State-funded primary,78,39,39,50.00%,50.00%,8,10.30%,7,9.00%,1,77,0,1.30%,98.70%,0.00%,21,20,67,29.90% +123478,893,3046,State-funded primary,112,60,52,53.60%,46.40%,2,1.80%,15,13.40%,3,109,0,2.70%,97.30%,0.00%,3,3,112,2.70% +123480,893,3057,State-funded primary,36,13,23,36.10%,63.90%,0,0.00%,6,16.70%,0,36,0,0.00%,100.00%,0.00%,5,5,36,13.90% +123481,893,3058,State-funded primary,87,37,50,42.50%,57.50%,4,4.60%,4,4.60%,5,82,0,5.70%,94.30%,0.00%,15,12,76,15.80% +123482,893,3068,State-funded primary,113,61,52,54.00%,46.00%,2,1.80%,15,13.30%,2,111,0,1.80%,98.20%,0.00%,7,7,100,7.00% +123484,893,3074,State-funded primary,106,55,51,51.90%,48.10%,4,3.80%,39,36.80%,7,96,3,6.60%,90.60%,2.80%,16,17,106,16.00% +123485,893,3077,State-funded primary,100,48,52,48.00%,52.00%,1,1.00%,11,11.00%,0,100,0,0.00%,100.00%,0.00%,9,8,79,10.10% +123487,893,3079,State-funded primary,126,71,55,56.30%,43.70%,4,3.20%,15,11.90%,1,125,0,0.80%,99.20%,0.00%,14,14,110,12.70% +123488,893,3081,State-funded primary,22,15,7,68.20%,31.80%,1,4.50%,3,13.60%,0,22,0,0.00%,100.00%,0.00%,0,0,22,0.00% +123489,894,3082,State-funded primary,325,153,172,47.10%,52.90%,8,2.50%,41,12.60%,13,312,0,4.00%,96.00%,0.00%,72,81,325,24.90% +123490,893,3083,State-funded primary,121,52,69,43.00%,57.00%,0,0.00%,21,17.40%,1,120,0,0.80%,99.20%,0.00%,9,9,110,8.20% +123491,893,3084,State-funded primary,85,43,42,50.60%,49.40%,3,3.50%,17,20.00%,2,81,2,2.40%,95.30%,2.40%,8,9,81,11.10% +123493,893,3087,State-funded primary,215,107,108,49.80%,50.20%,5,2.30%,33,15.30%,0,215,0,0.00%,100.00%,0.00%,27,27,215,12.60% +123495,893,3090,State-funded primary,127,63,64,49.60%,50.40%,2,1.60%,33,26.00%,1,126,0,0.80%,99.20%,0.00%,25,27,127,21.30% +123496,894,3091,State-funded primary,87,44,43,50.60%,49.40%,1,1.10%,14,16.10%,3,84,0,3.40%,96.60%,0.00%,10,10,87,11.50% +123497,893,3093,State-funded primary,51,32,19,62.70%,37.30%,0,0.00%,5,9.80%,1,50,0,2.00%,98.00%,0.00%,12,12,51,23.50% +123498,893,3094,State-funded primary,96,49,47,51.00%,49.00%,0,0.00%,23,24.00%,1,94,1,1.00%,97.90%,1.00%,11,12,83,14.50% +123499,893,3097,State-funded primary,93,53,40,57.00%,43.00%,0,0.00%,9,9.70%,2,91,0,2.20%,97.80%,0.00%,7,7,93,7.50% +123500,893,3100,State-funded primary,365,185,180,50.70%,49.30%,7,1.90%,21,5.80%,8,353,4,2.20%,96.70%,1.10%,39,39,365,10.70% +123502,893,3103,State-funded primary,427,207,220,48.50%,51.50%,5,1.20%,58,13.60%,52,373,2,12.20%,87.40%,0.50%,45,47,427,11.00% +123503,893,3104,State-funded primary,307,164,143,53.40%,46.60%,6,2.00%,44,14.30%,8,295,4,2.60%,96.10%,1.30%,33,34,307,11.10% +123505,894,3109,State-funded primary,137,70,67,51.10%,48.90%,1,0.70%,17,12.40%,2,135,0,1.50%,98.50%,0.00%,11,11,137,8.00% +123507,893,3112,State-funded primary,149,66,83,44.30%,55.70%,1,0.70%,21,14.10%,3,132,14,2.00%,88.60%,9.40%,14,14,149,9.40% +123508,893,3113,State-funded primary,86,41,45,47.70%,52.30%,2,2.30%,8,9.30%,2,82,2,2.30%,95.30%,2.30%,7,8,73,11.00% +123510,893,3115,State-funded primary,64,32,32,50.00%,50.00%,1,1.60%,12,18.80%,3,60,1,4.70%,93.80%,1.60%,3,3,64,4.70% +123512,893,3117,State-funded primary,142,62,80,43.70%,56.30%,3,2.10%,9,6.30%,1,128,13,0.70%,90.10%,9.20%,26,25,126,19.80% +123513,893,3119,State-funded primary,33,12,21,36.40%,63.60%,2,6.10%,4,12.10%,1,32,0,3.00%,97.00%,0.00%,6,7,31,22.60% +123517,893,3123,State-funded primary,72,38,34,52.80%,47.20%,0,0.00%,11,15.30%,2,70,0,2.80%,97.20%,0.00%,8,8,72,11.10% +123518,893,3126,State-funded primary,128,59,69,46.10%,53.90%,1,0.80%,22,17.20%,2,126,0,1.60%,98.40%,0.00%,17,15,101,14.90% +123519,893,3127,State-funded primary,25,11,14,44.00%,56.00%,0,0.00%,3,12.00%,0,25,0,0.00%,100.00%,0.00%,6,6,25,24.00% +123520,894,3129,State-funded primary,260,127,133,48.80%,51.20%,3,1.20%,40,15.40%,32,228,0,12.30%,87.70%,0.00%,77,85,260,32.70% +123523,893,3133,State-funded primary,236,109,127,46.20%,53.80%,1,0.40%,35,14.80%,4,219,13,1.70%,92.80%,5.50%,50,51,236,21.60% +123525,893,3135,State-funded primary,98,50,48,51.00%,49.00%,4,4.10%,11,11.20%,4,94,0,4.10%,95.90%,0.00%,21,22,96,22.90% +123526,894,3152,State-funded primary,284,149,135,52.50%,47.50%,8,2.80%,48,16.90%,22,262,0,7.70%,92.30%,0.00%,114,117,284,41.20% +123527,894,3154,State-funded primary,564,264,300,46.80%,53.20%,6,1.10%,83,14.70%,58,506,0,10.30%,89.70%,0.00%,146,151,531,28.40% +123528,893,3155,State-funded primary,139,81,58,58.30%,41.70%,0,0.00%,7,5.00%,2,135,2,1.40%,97.10%,1.40%,12,12,139,8.60% +123529,893,3156,State-funded primary,214,109,105,50.90%,49.10%,6,2.80%,33,15.40%,19,194,1,8.90%,90.70%,0.50%,35,35,200,17.50% +123532,893,3159,State-funded primary,118,60,58,50.80%,49.20%,3,2.50%,8,6.80%,1,117,0,0.80%,99.20%,0.00%,12,14,118,11.90% +123534,893,3301,State-funded primary,204,112,92,54.90%,45.10%,3,1.50%,23,11.30%,4,200,0,2.00%,98.00%,0.00%,23,25,204,12.30% +123536,893,3305,State-funded primary,207,93,114,44.90%,55.10%,9,4.30%,14,6.80%,2,205,0,1.00%,99.00%,0.00%,45,45,191,23.60% +123537,893,3307,State-funded primary,65,44,21,67.70%,32.30%,0,0.00%,6,9.20%,2,63,0,3.10%,96.90%,0.00%,13,14,52,26.90% +123539,893,3311,State-funded primary,99,58,41,58.60%,41.40%,1,1.00%,14,14.10%,1,97,1,1.00%,98.00%,1.00%,12,12,99,12.10% +123541,893,3313,State-funded primary,67,27,40,40.30%,59.70%,1,1.50%,9,13.40%,6,61,0,9.00%,91.00%,0.00%,9,9,54,16.70% +123542,894,3315,State-funded primary,208,112,96,53.80%,46.20%,6,2.90%,26,12.50%,4,204,0,1.90%,98.10%,0.00%,21,21,208,10.10% +123546,893,3321,State-funded primary,167,89,78,53.30%,46.70%,3,1.80%,19,11.40%,4,163,0,2.40%,97.60%,0.00%,12,11,131,8.40% +123547,893,3322,State-funded primary,50,25,25,50.00%,50.00%,1,2.00%,7,14.00%,0,50,0,0.00%,100.00%,0.00%,15,13,34,38.20% +123549,893,3329,State-funded primary,227,110,117,48.50%,51.50%,17,7.50%,24,10.60%,4,221,2,1.80%,97.40%,0.90%,44,44,227,19.40% +123550,893,3330,State-funded primary,159,79,80,49.70%,50.30%,2,1.30%,13,8.20%,2,157,0,1.30%,98.70%,0.00%,12,14,141,9.90% +123551,893,3350,State-funded primary,193,90,103,46.60%,53.40%,3,1.60%,16,8.30%,2,190,1,1.00%,98.40%,0.50%,15,16,193,8.30% +123552,894,3352,State-funded primary,197,94,103,47.70%,52.30%,3,1.50%,23,11.70%,11,186,0,5.60%,94.40%,0.00%,22,23,197,11.70% +123553,893,3353,State-funded primary,134,72,62,53.70%,46.30%,4,3.00%,20,14.90%,15,119,0,11.20%,88.80%,0.00%,36,36,134,26.90% +123554,893,3354,State-funded primary,188,88,100,46.80%,53.20%,8,4.30%,32,17.00%,68,120,0,36.20%,63.80%,0.00%,37,35,171,20.50% +123555,894,3356,State-funded primary,238,108,130,45.40%,54.60%,6,2.50%,34,14.30%,105,123,10,44.10%,51.70%,4.20%,31,31,218,14.20% +123556,894,3357,State-funded primary,194,96,98,49.50%,50.50%,0,0.00%,36,18.60%,33,161,0,17.00%,83.00%,0.00%,92,92,194,47.40% +123557,894,3358,State-funded primary,309,150,159,48.50%,51.50%,1,0.30%,31,10.00%,55,254,0,17.80%,82.20%,0.00%,123,126,274,46.00% +123558,894,3359,State-funded primary,155,82,73,52.90%,47.10%,4,2.60%,24,15.50%,58,97,0,37.40%,62.60%,0.00%,43,45,155,29.00% +123559,893,3360,State-funded primary,79,35,44,44.30%,55.70%,0,0.00%,6,7.60%,4,75,0,5.10%,94.90%,0.00%,2,2,70,2.90% +123560,893,3361,State-funded primary,107,58,49,54.20%,45.80%,1,0.90%,16,15.00%,0,107,0,0.00%,100.00%,0.00%,11,11,80,13.80% +123564,893,4376,State-funded secondary,520,270,250,51.90%,48.10%,8,1.50%,33,6.30%,6,514,0,1.20%,98.80%,0.00%,68,72,520,13.80% +123574,894,4405,State-funded secondary,1150,564,586,49.00%,51.00%,20,1.70%,139,12.10%,49,1098,3,4.30%,95.50%,0.30%,192,221,1150,19.20% +123599,893,6000,Independent school,145,73,72,50.30%,49.70%,6,4.10%,28,19.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123600,893,6001,Independent school,577,218,359,37.80%,62.20%,5,0.90%,164,28.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123602,893,6003,Independent school,222,222,0,100.00%,0.00%,1,0.50%,33,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123604,893,6005,Independent school,411,349,62,84.90%,15.10%,2,0.50%,85,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123605,893,6006,Independent school,219,74,145,33.80%,66.20%,0,0.00%,46,21.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123607,893,6008,Independent school,338,145,193,42.90%,57.10%,1,0.30%,20,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123608,893,6009,Independent school,828,281,547,33.90%,66.10%,1,0.10%,206,24.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123609,894,6000,Independent school,236,104,132,44.10%,55.90%,1,0.40%,62,26.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123610,894,6001,Independent school,566,228,338,40.30%,59.70%,0,0.00%,110,19.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123611,894,6002,Independent school,97,53,44,54.60%,45.40%,1,1.00%,10,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123613,893,6011,Independent school,479,198,281,41.30%,58.70%,4,0.80%,113,23.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123614,893,6012,Independent school,101,53,48,52.50%,47.50%,1,1.00%,8,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123616,893,6014,Independent school,163,70,93,42.90%,57.10%,3,1.80%,17,10.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123617,893,6015,Independent school,210,102,108,48.60%,51.40%,0,0.00%,38,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123620,893,6018,Independent school,357,357,0,100.00%,0.00%,2,0.60%,29,8.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123621,894,6003,Independent school,21,5,16,23.80%,76.20%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123623,893,6020,Independent school,571,288,283,50.40%,49.60%,0,0.00%,56,9.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123627,894,6900,State-funded secondary,1545,772,773,50.00%,50.00%,2,0.10%,73,4.70%,67,1477,1,4.30%,95.60%,0.10%,178,128,972,13.20% +123629,894,7001,State-funded special school,187,54,133,28.90%,71.10%,187,100.00%,0,0.00%,11,175,1,5.90%,93.60%,0.50%,77,81,187,43.30% +123631,894,7012,State-funded special school,183,51,132,27.90%,72.10%,183,100.00%,0,0.00%,9,158,16,4.90%,86.30%,8.70%,96,106,183,57.90% +123635,894,7017,State-funded special school,213,48,165,22.50%,77.50%,213,100.00%,0,0.00%,28,185,0,13.10%,86.90%,0.00%,99,97,207,46.90% +123640,933,2008,State-funded primary,219,111,108,50.70%,49.30%,7,3.20%,38,17.40%,4,207,8,1.80%,94.50%,3.70%,58,58,219,26.50% +123641,933,2019,State-funded primary,56,27,29,48.20%,51.80%,2,3.60%,14,25.00%,2,54,0,3.60%,96.40%,0.00%,11,11,56,19.60% +123642,933,2020,State-funded primary,93,56,37,60.20%,39.80%,4,4.30%,8,8.60%,0,92,1,0.00%,98.90%,1.10%,12,14,93,15.10% +123643,933,2022,State-funded primary,126,72,54,57.10%,42.90%,2,1.60%,12,9.50%,4,122,0,3.20%,96.80%,0.00%,12,12,126,9.50% +123644,933,2028,State-funded primary,231,113,118,48.90%,51.10%,5,2.20%,22,9.50%,13,215,3,5.60%,93.10%,1.30%,61,64,231,27.70% +123650,933,2038,State-funded primary,159,83,76,52.20%,47.80%,5,3.10%,20,12.60%,0,159,0,0.00%,100.00%,0.00%,13,14,159,8.80% +123651,933,2041,State-funded primary,154,85,69,55.20%,44.80%,1,0.60%,17,11.00%,9,142,3,5.80%,92.20%,1.90%,24,24,154,15.60% +123653,933,2045,State-funded primary,107,49,58,45.80%,54.20%,4,3.70%,16,15.00%,2,102,3,1.90%,95.30%,2.80%,26,26,107,24.30% +123654,933,2046,State-funded primary,126,67,59,53.20%,46.80%,4,3.20%,24,19.00%,0,112,14,0.00%,88.90%,11.10%,8,11,126,8.70% +123655,933,2047,State-funded primary,159,77,82,48.40%,51.60%,0,0.00%,23,14.50%,10,149,0,6.30%,93.70%,0.00%,34,34,159,21.40% +123658,933,2057,State-funded primary,34,14,20,41.20%,58.80%,0,0.00%,4,11.80%,2,29,3,5.90%,85.30%,8.80%,6,6,34,17.60% +123660,933,2062,State-funded primary,218,98,120,45.00%,55.00%,3,1.40%,39,17.90%,50,168,0,22.90%,77.10%,0.00%,49,50,152,32.90% +123662,933,2067,State-funded primary,54,23,31,42.60%,57.40%,1,1.90%,11,20.40%,4,50,0,7.40%,92.60%,0.00%,14,14,54,25.90% +123663,933,2068,State-funded primary,282,149,133,52.80%,47.20%,4,1.40%,29,10.30%,13,267,2,4.60%,94.70%,0.70%,62,69,282,24.50% +123664,933,2069,State-funded primary,172,85,87,49.40%,50.60%,0,0.00%,24,14.00%,2,170,0,1.20%,98.80%,0.00%,30,32,172,18.60% +123667,933,2081,State-funded primary,381,191,190,50.10%,49.90%,11,2.90%,49,12.90%,35,342,4,9.20%,89.80%,1.00%,77,82,381,21.50% +123669,933,2085,State-funded primary,108,54,54,50.00%,50.00%,4,3.70%,18,16.70%,4,98,6,3.70%,90.70%,5.60%,25,25,108,23.10% +123672,933,2106,State-funded primary,110,44,66,40.00%,60.00%,1,0.90%,8,7.30%,15,95,0,13.60%,86.40%,0.00%,18,18,110,16.40% +123678,933,2150,State-funded primary,105,51,54,48.60%,51.40%,2,1.90%,9,8.60%,3,102,0,2.90%,97.10%,0.00%,11,12,105,11.40% +123679,933,2152,State-funded primary,413,198,215,47.90%,52.10%,26,6.30%,51,12.30%,124,264,25,30.00%,63.90%,6.10%,134,136,413,32.90% +123681,933,2157,State-funded primary,230,109,121,47.40%,52.60%,4,1.70%,98,42.60%,38,192,0,16.50%,83.50%,0.00%,86,86,198,43.40% +123682,933,2165,State-funded primary,225,112,113,49.80%,50.20%,9,4.00%,24,10.70%,15,204,6,6.70%,90.70%,2.70%,49,49,225,21.80% +123683,933,2166,State-funded primary,156,81,75,51.90%,48.10%,4,2.60%,14,9.00%,0,156,0,0.00%,100.00%,0.00%,20,21,156,13.50% +123689,933,2175,State-funded primary,85,37,48,43.50%,56.50%,3,3.50%,9,10.60%,3,75,7,3.50%,88.20%,8.20%,11,13,85,15.30% +123695,933,2182,State-funded primary,434,201,233,46.30%,53.70%,16,3.70%,41,9.40%,93,341,0,21.40%,78.60%,0.00%,127,131,434,30.20% +123697,933,2185,State-funded primary,163,65,98,39.90%,60.10%,3,1.80%,6,3.70%,2,154,7,1.20%,94.50%,4.30%,40,40,163,24.50% +123700,933,2200,State-funded primary,217,105,112,48.40%,51.60%,6,2.80%,19,8.80%,13,197,7,6.00%,90.80%,3.20%,43,43,217,19.80% +123701,933,2203,State-funded primary,71,34,37,47.90%,52.10%,3,4.20%,10,14.10%,1,66,4,1.40%,93.00%,5.60%,11,14,71,19.70% +123703,933,2206,State-funded primary,204,99,105,48.50%,51.50%,4,2.00%,18,8.80%,3,201,0,1.50%,98.50%,0.00%,22,23,204,11.30% +123705,933,2211,State-funded primary,46,22,24,47.80%,52.20%,0,0.00%,10,21.70%,0,45,1,0.00%,97.80%,2.20%,6,6,46,13.00% +123706,933,2212,State-funded primary,60,26,34,43.30%,56.70%,0,0.00%,10,16.70%,3,57,0,5.00%,95.00%,0.00%,2,2,60,3.30% +123710,933,2221,State-funded primary,290,153,137,52.80%,47.20%,14,4.80%,27,9.30%,27,258,5,9.30%,89.00%,1.70%,88,90,270,33.30% +123711,933,2224,State-funded primary,299,149,150,49.80%,50.20%,9,3.00%,60,20.10%,27,258,14,9.00%,86.30%,4.70%,76,76,299,25.40% +123713,933,2227,State-funded primary,201,77,124,38.30%,61.70%,4,2.00%,13,6.50%,13,178,10,6.50%,88.60%,5.00%,40,40,201,19.90% +123714,933,2228,State-funded primary,427,196,231,45.90%,54.10%,9,2.10%,41,9.60%,106,321,0,24.80%,75.20%,0.00%,48,51,427,11.90% +123718,933,2300,State-funded primary,61,27,34,44.30%,55.70%,1,1.60%,16,26.20%,0,54,7,0.00%,88.50%,11.50%,30,30,61,49.20% +123719,933,2302,State-funded primary,221,92,129,41.60%,58.40%,5,2.30%,28,12.70%,8,208,5,3.60%,94.10%,2.30%,31,33,221,14.90% +123720,933,2306,State-funded primary,139,80,59,57.60%,42.40%,0,0.00%,19,13.70%,3,136,0,2.20%,97.80%,0.00%,30,31,139,22.30% +123724,933,2311,State-funded primary,252,130,122,51.60%,48.40%,6,2.40%,31,12.30%,44,207,1,17.50%,82.10%,0.40%,69,73,252,29.00% +123726,933,2314,State-funded primary,109,58,51,53.20%,46.80%,1,0.90%,21,19.30%,64,45,0,58.70%,41.30%,0.00%,28,28,72,38.90% +123730,933,2320,State-funded primary,421,194,227,46.10%,53.90%,14,3.30%,40,9.50%,73,344,4,17.30%,81.70%,1.00%,126,128,421,30.40% +123735,933,2327,State-funded primary,271,119,152,43.90%,56.10%,5,1.80%,22,8.10%,16,254,1,5.90%,93.70%,0.40%,32,32,271,11.80% +123738,933,2331,State-funded primary,174,92,82,52.90%,47.10%,1,0.60%,16,9.20%,7,167,0,4.00%,96.00%,0.00%,24,25,174,14.40% +123739,933,2332,State-funded primary,336,141,195,42.00%,58.00%,25,7.40%,56,16.70%,69,264,3,20.50%,78.60%,0.90%,122,126,336,37.50% +123740,933,3001,State-funded primary,89,51,38,57.30%,42.70%,3,3.40%,7,7.90%,1,80,8,1.10%,89.90%,9.00%,17,17,89,19.10% +123742,933,3008,State-funded primary,74,35,39,47.30%,52.70%,2,2.70%,9,12.20%,0,74,0,0.00%,100.00%,0.00%,6,7,74,9.50% +123743,933,3009,State-funded primary,97,49,48,50.50%,49.50%,0,0.00%,14,14.40%,2,95,0,2.10%,97.90%,0.00%,9,9,97,9.30% +123745,933,3017,State-funded primary,85,35,50,41.20%,58.80%,2,2.40%,14,16.50%,0,78,7,0.00%,91.80%,8.20%,24,26,85,30.60% +123746,933,3020,State-funded primary,84,36,48,42.90%,57.10%,3,3.60%,9,10.70%,2,79,3,2.40%,94.00%,3.60%,8,8,84,9.50% +123747,933,3029,State-funded primary,158,82,76,51.90%,48.10%,2,1.30%,17,10.80%,2,156,0,1.30%,98.70%,0.00%,28,31,137,22.60% +123749,933,3035,State-funded primary,153,77,76,50.30%,49.70%,2,1.30%,8,5.20%,13,140,0,8.50%,91.50%,0.00%,32,33,153,21.60% +123750,933,3037,State-funded primary,186,97,89,52.20%,47.80%,6,3.20%,24,12.90%,2,170,14,1.10%,91.40%,7.50%,47,47,186,25.30% +123751,933,3039,State-funded primary,75,34,41,45.30%,54.70%,3,4.00%,9,12.00%,0,72,3,0.00%,96.00%,4.00%,8,8,75,10.70% +123752,933,3040,State-funded primary,202,106,96,52.50%,47.50%,7,3.50%,16,7.90%,4,197,1,2.00%,97.50%,0.50%,41,41,160,25.60% +123753,933,3041,State-funded primary,163,91,72,55.80%,44.20%,3,1.80%,23,14.10%,11,152,0,6.70%,93.30%,0.00%,19,19,163,11.70% +123754,933,3042,State-funded primary,54,19,35,35.20%,64.80%,1,1.90%,4,7.40%,2,52,0,3.70%,96.30%,0.00%,9,9,30,30.00% +123755,933,3047,State-funded primary,182,84,98,46.20%,53.80%,5,2.70%,26,14.30%,9,170,3,4.90%,93.40%,1.60%,49,49,182,26.90% +123756,933,3048,State-funded primary,29,15,14,51.70%,48.30%,2,6.90%,3,10.30%,0,27,2,0.00%,93.10%,6.90%,4,5,29,17.20% +123758,933,3058,State-funded primary,287,128,159,44.60%,55.40%,4,1.40%,31,10.80%,7,263,17,2.40%,91.60%,5.90%,50,50,287,17.40% +123759,933,3060,State-funded primary,199,94,105,47.20%,52.80%,4,2.00%,17,8.50%,11,182,6,5.50%,91.50%,3.00%,47,47,156,30.10% +123760,933,3061,State-funded primary,108,49,59,45.40%,54.60%,1,0.90%,17,15.70%,0,107,1,0.00%,99.10%,0.90%,40,40,108,37.00% +123761,933,3062,State-funded primary,152,72,80,47.40%,52.60%,2,1.30%,20,13.20%,1,150,1,0.70%,98.70%,0.70%,12,12,152,7.90% +123762,933,3064,State-funded primary,83,41,42,49.40%,50.60%,5,6.00%,11,13.30%,2,78,3,2.40%,94.00%,3.60%,21,22,83,26.50% +123764,933,3066,State-funded primary,491,228,263,46.40%,53.60%,13,2.60%,44,9.00%,7,475,9,1.40%,96.70%,1.80%,106,109,491,22.20% +123766,933,3076,State-funded primary,51,24,27,47.10%,52.90%,2,3.90%,12,23.50%,2,41,8,3.90%,80.40%,15.70%,6,6,51,11.80% +123767,933,3078,State-funded primary,66,34,32,51.50%,48.50%,2,3.00%,8,12.10%,0,64,2,0.00%,97.00%,3.00%,6,6,66,9.10% +123774,933,3101,State-funded primary,45,18,27,40.00%,60.00%,0,0.00%,6,13.30%,0,45,0,0.00%,100.00%,0.00%,9,9,45,20.00% +123775,933,3105,State-funded primary,109,64,45,58.70%,41.30%,2,1.80%,12,11.00%,4,105,0,3.70%,96.30%,0.00%,29,29,109,26.60% +123776,933,3110,State-funded primary,140,73,67,52.10%,47.90%,0,0.00%,19,13.60%,1,131,8,0.70%,93.60%,5.70%,26,26,140,18.60% +123777,933,3114,State-funded primary,168,68,100,40.50%,59.50%,3,1.80%,29,17.30%,4,164,0,2.40%,97.60%,0.00%,42,45,168,26.80% +123779,933,3119,State-funded primary,43,26,17,60.50%,39.50%,0,0.00%,3,7.00%,0,40,3,0.00%,93.00%,7.00%,5,5,43,11.60% +123780,933,3121,State-funded primary,208,106,102,51.00%,49.00%,6,2.90%,10,4.80%,12,194,2,5.80%,93.30%,1.00%,21,21,208,10.10% +123782,933,3129,State-funded primary,171,84,87,49.10%,50.90%,0,0.00%,13,7.60%,1,154,16,0.60%,90.10%,9.40%,26,26,171,15.20% +123783,933,3132,State-funded primary,330,170,160,51.50%,48.50%,10,3.00%,63,19.10%,58,272,0,17.60%,82.40%,0.00%,89,93,330,28.20% +123784,933,3151,State-funded primary,483,221,262,45.80%,54.20%,13,2.70%,27,5.60%,27,451,5,5.60%,93.40%,1.00%,55,57,418,13.60% +123785,933,3152,State-funded primary,325,169,156,52.00%,48.00%,10,3.10%,47,14.50%,16,307,2,4.90%,94.50%,0.60%,85,86,325,26.50% +123786,933,3154,State-funded primary,181,85,96,47.00%,53.00%,4,2.20%,17,9.40%,11,161,9,6.10%,89.00%,5.00%,28,29,181,16.00% +123789,933,3158,State-funded primary,164,77,87,47.00%,53.00%,2,1.20%,14,8.50%,4,160,0,2.40%,97.60%,0.00%,23,23,164,14.00% +123793,933,3178,State-funded primary,278,139,139,50.00%,50.00%,7,2.50%,29,10.40%,12,266,0,4.30%,95.70%,0.00%,32,34,278,12.20% +123795,933,3180,State-funded primary,98,50,48,51.00%,49.00%,0,0.00%,9,9.20%,2,92,4,2.00%,93.90%,4.10%,19,19,98,19.40% +123796,933,3181,State-funded primary,37,20,17,54.10%,45.90%,0,0.00%,10,27.00%,2,35,0,5.40%,94.60%,0.00%,11,11,37,29.70% +123800,933,3186,State-funded primary,204,92,112,45.10%,54.90%,7,3.40%,40,19.60%,5,197,2,2.50%,96.60%,1.00%,54,57,204,27.90% +123802,933,3190,State-funded primary,62,27,35,43.50%,56.50%,1,1.60%,7,11.30%,8,54,0,12.90%,87.10%,0.00%,14,14,62,22.60% +123807,933,3226,State-funded primary,170,71,99,41.80%,58.20%,1,0.60%,29,17.10%,9,158,3,5.30%,92.90%,1.80%,25,26,170,15.30% +123814,933,3276,State-funded primary,133,62,71,46.60%,53.40%,0,0.00%,18,13.50%,0,129,4,0.00%,97.00%,3.00%,14,14,133,10.50% +123815,933,3277,State-funded primary,142,71,71,50.00%,50.00%,4,2.80%,19,13.40%,3,139,0,2.10%,97.90%,0.00%,16,17,142,12.00% +123816,933,3278,State-funded primary,58,34,24,58.60%,41.40%,2,3.40%,13,22.40%,1,57,0,1.70%,98.30%,0.00%,17,17,58,29.30% +123818,933,3281,State-funded primary,102,41,61,40.20%,59.80%,1,1.00%,9,8.80%,1,98,3,1.00%,96.10%,2.90%,15,15,102,14.70% +123820,933,3284,State-funded primary,51,25,26,49.00%,51.00%,1,2.00%,9,17.60%,1,50,0,2.00%,98.00%,0.00%,7,8,51,15.70% +123821,933,3285,State-funded primary,29,14,15,48.30%,51.70%,1,3.40%,5,17.20%,6,22,1,20.70%,75.90%,3.40%,16,18,29,62.10% +123823,933,3287,State-funded primary,69,27,42,39.10%,60.90%,2,2.90%,8,11.60%,4,65,0,5.80%,94.20%,0.00%,8,8,69,11.60% +123827,933,3305,State-funded primary,117,56,61,47.90%,52.10%,0,0.00%,15,12.80%,0,110,7,0.00%,94.00%,6.00%,5,5,117,4.30% +123828,933,3307,State-funded primary,92,46,46,50.00%,50.00%,2,2.20%,4,4.30%,3,85,4,3.30%,92.40%,4.30%,12,12,92,13.00% +123829,933,3311,State-funded primary,48,30,18,62.50%,37.50%,0,0.00%,9,18.80%,4,43,1,8.30%,89.60%,2.10%,13,13,48,27.10% +123830,933,3313,State-funded primary,50,32,18,64.00%,36.00%,1,2.00%,9,18.00%,0,45,5,0.00%,90.00%,10.00%,5,5,50,10.00% +123831,933,3314,State-funded primary,34,13,21,38.20%,61.80%,0,0.00%,5,14.70%,0,34,0,0.00%,100.00%,0.00%,7,7,34,20.60% +123833,933,3322,State-funded primary,189,86,103,45.50%,54.50%,10,5.30%,37,19.60%,18,171,0,9.50%,90.50%,0.00%,64,66,189,34.90% +123834,933,3329,State-funded primary,166,89,77,53.60%,46.40%,11,6.60%,19,11.40%,2,155,9,1.20%,93.40%,5.40%,29,29,166,17.50% +123835,933,3331,State-funded primary,107,57,50,53.30%,46.70%,9,8.40%,15,14.00%,4,102,1,3.70%,95.30%,0.90%,9,9,107,8.40% +123836,933,3342,State-funded primary,55,26,29,47.30%,52.70%,1,1.80%,2,3.60%,3,52,0,5.50%,94.50%,0.00%,6,6,55,10.90% +123837,933,3344,State-funded primary,97,54,43,55.70%,44.30%,2,2.10%,17,17.50%,1,95,1,1.00%,97.90%,1.00%,11,11,78,14.10% +123840,933,3358,State-funded primary,179,98,81,54.70%,45.30%,2,1.10%,31,17.30%,11,152,16,6.10%,84.90%,8.90%,30,31,179,17.30% +123841,933,3359,State-funded primary,32,18,14,56.30%,43.80%,0,0.00%,4,12.50%,0,32,0,0.00%,100.00%,0.00%,4,4,32,12.50% +123843,933,3369,State-funded primary,243,118,125,48.60%,51.40%,4,1.60%,51,21.00%,16,227,0,6.60%,93.40%,0.00%,66,66,243,27.20% +123844,933,3371,State-funded primary,176,96,80,54.50%,45.50%,3,1.70%,18,10.20%,46,128,2,26.10%,72.70%,1.10%,31,31,176,17.60% +123849,933,3436,State-funded primary,207,96,111,46.40%,53.60%,7,3.40%,12,5.80%,3,198,6,1.40%,95.70%,2.90%,15,16,207,7.70% +123850,933,3437,State-funded primary,255,131,124,51.40%,48.60%,5,2.00%,7,2.70%,18,236,1,7.10%,92.50%,0.40%,15,15,255,5.90% +123851,933,3438,State-funded primary,225,124,101,55.10%,44.90%,4,1.80%,20,8.90%,139,86,0,61.80%,38.20%,0.00%,25,25,225,11.10% +123852,933,3439,State-funded primary,439,219,220,49.90%,50.10%,10,2.30%,53,12.10%,73,366,0,16.60%,83.40%,0.00%,50,52,439,11.80% +123854,933,3484,State-funded primary,103,56,47,54.40%,45.60%,1,1.00%,12,11.70%,0,102,1,0.00%,99.00%,1.00%,22,22,103,21.40% +123855,933,3485,State-funded primary,83,43,40,51.80%,48.20%,3,3.60%,10,12.00%,2,79,2,2.40%,95.20%,2.40%,15,15,83,18.10% +123856,933,3486,State-funded primary,201,94,107,46.80%,53.20%,5,2.50%,25,12.40%,9,161,31,4.50%,80.10%,15.40%,53,54,201,26.90% +123860,933,3490,State-funded primary,193,92,101,47.70%,52.30%,6,3.10%,34,17.60%,2,172,19,1.00%,89.10%,9.80%,46,46,193,23.80% +123862,933,4000,State-funded secondary,1283,627,656,48.90%,51.10%,34,2.70%,164,12.80%,88,1177,18,6.90%,91.70%,1.40%,232,212,970,21.90% +123871,933,4277,State-funded primary,64,28,36,43.80%,56.30%,3,4.70%,21,32.80%,4,60,0,6.30%,93.80%,0.00%,12,12,64,18.80% +123878,933,4300,State-funded secondary,973,500,473,51.40%,48.60%,27,2.80%,162,16.60%,135,838,0,13.90%,86.10%,0.00%,283,304,973,31.20% +123883,933,4354,State-funded secondary,1383,718,665,51.90%,48.10%,63,4.60%,244,17.60%,119,1258,6,8.60%,91.00%,0.40%,277,289,1324,21.80% +123893,933,4508,State-funded secondary,816,419,397,51.30%,48.70%,23,2.80%,108,13.20%,18,798,0,2.20%,97.80%,0.00%,144,151,787,19.20% +123899,933,5200,State-funded primary,255,123,132,48.20%,51.80%,4,1.60%,22,8.60%,5,222,28,2.00%,87.10%,11.00%,33,33,255,12.90% +123900,933,5201,State-funded primary,212,102,110,48.10%,51.90%,4,1.90%,41,19.30%,26,185,1,12.30%,87.30%,0.50%,79,79,212,37.30% +123905,933,6004,Independent school,367,172,195,46.90%,53.10%,0,0.00%,47,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123908,933,6016,Independent school,183,91,92,49.70%,50.30%,0,0.00%,43,23.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123909,933,6019,Independent school,258,112,146,43.40%,56.60%,5,1.90%,73,28.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123910,933,6021,Independent school,353,150,203,42.50%,57.50%,0,0.00%,103,29.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123911,933,6022,Independent school,1312,569,743,43.40%,56.60%,1,0.10%,373,28.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123912,933,6023,Independent school,475,198,277,41.70%,58.30%,0,0.00%,81,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123913,933,6024,Independent school,645,349,296,54.10%,45.90%,1,0.20%,102,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123914,933,6025,Independent school,740,329,411,44.50%,55.50%,3,0.40%,112,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123916,933,6029,Independent school,777,393,384,50.60%,49.40%,4,0.50%,115,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123920,933,6089,Independent school,48,0,48,0.00%,100.00%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123921,933,6115,Independent school,472,213,259,45.10%,54.90%,0,0.00%,111,23.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123927,933,6165,Independent school,61,36,25,59.00%,41.00%,0,0.00%,15,24.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123930,933,6178,Independent school,903,412,491,45.60%,54.40%,1,0.10%,117,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123931,933,6182,Independent school,414,207,207,50.00%,50.00%,0,0.00%,46,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123933,933,6185,Independent school,63,22,41,34.90%,65.10%,63,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123934,933,6187,Independent school,296,149,147,50.30%,49.70%,1,0.30%,47,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +123938,933,7003,State-funded special school,194,67,127,34.50%,65.50%,194,100.00%,0,0.00%,18,175,1,9.30%,90.20%,0.50%,86,80,177,45.20% +123940,933,7007,State-funded special school,146,45,101,30.80%,69.20%,146,100.00%,0,0.00%,6,140,0,4.10%,95.90%,0.00%,65,69,146,47.30% +123944,933,7016,State-funded special school,94,25,69,26.60%,73.40%,94,100.00%,0,0.00%,7,86,1,7.40%,91.50%,1.10%,44,39,82,47.60% +123945,933,7018,State-funded special school,60,24,36,40.00%,60.00%,60,100.00%,0,0.00%,0,56,4,0.00%,93.30%,6.70%,28,23,49,46.90% +123962,860,1022,State-funded nursery,23,10,13,43.50%,56.50%,0,0.00%,0,0.00%,0,23,0,0.00%,100.00%,0.00%,0,0,0,0.00% +123967,860,1028,State-funded nursery,28,14,14,50.00%,50.00%,1,3.60%,0,0.00%,2,26,0,7.10%,92.90%,0.00%,0,0,0,0.00% +123970,861,1032,State-funded nursery,58,38,20,65.50%,34.50%,0,0.00%,9,15.50%,16,42,0,27.60%,72.40%,0.00%,3,0,0,0.00% +123999,861,2059,State-funded primary,687,360,327,52.40%,47.60%,19,2.80%,60,8.70%,157,530,0,22.90%,77.10%,0.00%,138,134,628,21.30% +124003,861,2066,State-funded primary,379,191,188,50.40%,49.60%,5,1.30%,61,16.10%,38,341,0,10.00%,90.00%,0.00%,157,148,336,44.00% +124020,861,2100,State-funded primary,346,164,182,47.40%,52.60%,13,3.80%,50,14.50%,42,304,0,12.10%,87.90%,0.00%,205,186,304,61.20% +124021,861,2101,State-funded primary,225,121,104,53.80%,46.20%,3,1.30%,41,18.20%,90,135,0,40.00%,60.00%,0.00%,117,110,200,55.00% +124024,861,2109,State-funded primary,238,119,119,50.00%,50.00%,6,2.50%,25,10.50%,3,235,0,1.30%,98.70%,0.00%,37,35,212,16.50% +124030,861,2116,State-funded primary,456,241,215,52.90%,47.10%,6,1.30%,63,13.80%,43,412,1,9.40%,90.40%,0.20%,156,153,416,36.80% +124034,860,2123,State-funded primary,318,166,152,52.20%,47.80%,4,1.30%,39,12.30%,194,124,0,61.00%,39.00%,0.00%,57,58,318,18.20% +124040,860,2132,State-funded primary,368,186,182,50.50%,49.50%,7,1.90%,78,21.20%,289,79,0,78.50%,21.50%,0.00%,110,111,368,30.20% +124046,860,2140,State-funded primary,372,184,188,49.50%,50.50%,3,0.80%,71,19.10%,50,322,0,13.40%,86.60%,0.00%,95,97,372,26.10% +124054,860,2153,State-funded primary,198,100,98,50.50%,49.50%,4,2.00%,22,11.10%,2,196,0,1.00%,99.00%,0.00%,20,20,198,10.10% +124056,860,2157,State-funded primary,332,167,165,50.30%,49.70%,11,3.30%,59,17.80%,5,327,0,1.50%,98.50%,0.00%,65,65,332,19.60% +124057,860,2158,State-funded primary,96,42,54,43.80%,56.30%,3,3.10%,18,18.80%,0,96,0,0.00%,100.00%,0.00%,18,18,96,18.80% +124061,860,2164,State-funded primary,76,39,37,51.30%,48.70%,3,3.90%,2,2.60%,0,76,0,0.00%,100.00%,0.00%,4,4,76,5.30% +124062,860,2166,State-funded primary,78,36,42,46.20%,53.80%,4,5.10%,25,32.10%,0,78,0,0.00%,100.00%,0.00%,33,34,78,43.60% +124067,860,2177,State-funded primary,307,139,168,45.30%,54.70%,1,0.30%,32,10.40%,5,302,0,1.60%,98.40%,0.00%,138,146,307,47.60% +124068,860,2178,State-funded primary,169,71,98,42.00%,58.00%,0,0.00%,38,22.50%,8,161,0,4.70%,95.30%,0.00%,72,72,169,42.60% +124070,860,2180,State-funded primary,613,291,322,47.50%,52.50%,8,1.30%,30,4.90%,16,597,0,2.60%,97.40%,0.00%,99,100,613,16.30% +124072,860,2184,State-funded primary,368,183,185,49.70%,50.30%,5,1.40%,47,12.80%,18,350,0,4.90%,95.10%,0.00%,103,109,368,29.60% +124076,860,2191,State-funded primary,365,170,195,46.60%,53.40%,10,2.70%,70,19.20%,16,349,0,4.40%,95.60%,0.00%,86,92,365,25.20% +124081,860,2203,State-funded primary,385,202,183,52.50%,47.50%,5,1.30%,42,10.90%,14,371,0,3.60%,96.40%,0.00%,58,60,385,15.60% +124084,860,2207,State-funded primary,289,142,147,49.10%,50.90%,0,0.00%,41,14.20%,8,281,0,2.80%,97.20%,0.00%,29,30,289,10.40% +124085,860,2208,State-funded primary,85,39,46,45.90%,54.10%,0,0.00%,16,18.80%,0,85,0,0.00%,100.00%,0.00%,5,7,85,8.20% +124087,860,2216,State-funded primary,106,53,53,50.00%,50.00%,0,0.00%,4,3.80%,2,104,0,1.90%,98.10%,0.00%,10,10,106,9.40% +124089,860,2218,State-funded primary,164,73,91,44.50%,55.50%,2,1.20%,19,11.60%,13,151,0,7.90%,92.10%,0.00%,35,38,164,23.20% +124093,860,2222,State-funded primary,34,14,20,41.20%,58.80%,1,2.90%,3,8.80%,1,33,0,2.90%,97.10%,0.00%,2,2,34,5.90% +124097,860,2226,State-funded primary,198,101,97,51.00%,49.00%,3,1.50%,30,15.20%,5,193,0,2.50%,97.50%,0.00%,46,47,198,23.70% +124104,860,2239,State-funded primary,168,86,82,51.20%,48.80%,3,1.80%,21,12.50%,17,148,3,10.10%,88.10%,1.80%,70,72,168,42.90% +124105,860,2240,State-funded primary,66,40,26,60.60%,39.40%,0,0.00%,2,3.00%,0,66,0,0.00%,100.00%,0.00%,3,3,66,4.50% +124110,860,2251,State-funded primary,176,89,87,50.60%,49.40%,3,1.70%,22,12.50%,40,136,0,22.70%,77.30%,0.00%,49,51,176,29.00% +124115,860,2256,State-funded primary,170,77,93,45.30%,54.70%,1,0.60%,5,2.90%,5,165,0,2.90%,97.10%,0.00%,11,11,170,6.50% +124119,860,2263,State-funded primary,204,99,105,48.50%,51.50%,1,0.50%,23,11.30%,20,184,0,9.80%,90.20%,0.00%,37,38,204,18.60% +124130,860,2293,State-funded primary,219,106,113,48.40%,51.60%,2,0.90%,3,1.40%,35,184,0,16.00%,84.00%,0.00%,4,5,219,2.30% +124139,860,2306,State-funded primary,199,96,103,48.20%,51.80%,1,0.50%,33,16.60%,13,186,0,6.50%,93.50%,0.00%,28,30,199,15.10% +124141,860,2315,State-funded primary,161,85,76,52.80%,47.20%,2,1.20%,17,10.60%,4,157,0,2.50%,97.50%,0.00%,20,20,161,12.40% +124146,860,2321,State-funded primary,192,99,93,51.60%,48.40%,4,2.10%,16,8.30%,2,190,0,1.00%,99.00%,0.00%,11,12,192,6.30% +124147,860,2322,State-funded primary,134,71,63,53.00%,47.00%,0,0.00%,3,2.20%,6,128,0,4.50%,95.50%,0.00%,24,24,134,17.90% +124150,860,2326,State-funded primary,253,121,132,47.80%,52.20%,5,2.00%,23,9.10%,8,245,0,3.20%,96.80%,0.00%,15,17,253,6.70% +124151,860,2327,State-funded primary,171,83,88,48.50%,51.50%,2,1.20%,26,15.20%,3,168,0,1.80%,98.20%,0.00%,42,44,171,25.70% +124155,860,2332,State-funded primary,251,116,135,46.20%,53.80%,5,2.00%,27,10.80%,19,232,0,7.60%,92.40%,0.00%,56,58,251,23.10% +124161,860,2340,State-funded primary,377,185,192,49.10%,50.90%,3,0.80%,61,16.20%,16,361,0,4.20%,95.80%,0.00%,153,154,377,40.80% +124162,860,2342,State-funded primary,322,158,164,49.10%,50.90%,8,2.50%,34,10.60%,0,322,0,0.00%,100.00%,0.00%,38,43,322,13.40% +124163,860,2344,State-funded primary,215,110,105,51.20%,48.80%,3,1.40%,10,4.70%,10,205,0,4.70%,95.30%,0.00%,15,16,215,7.40% +124164,860,2345,State-funded primary,281,133,148,47.30%,52.70%,4,1.40%,52,18.50%,6,275,0,2.10%,97.90%,0.00%,51,51,281,18.10% +124165,860,2346,State-funded primary,175,95,80,54.30%,45.70%,3,1.70%,32,18.30%,8,167,0,4.60%,95.40%,0.00%,81,83,175,47.40% +124166,860,2348,State-funded primary,116,59,57,50.90%,49.10%,1,0.90%,20,17.20%,27,89,0,23.30%,76.70%,0.00%,56,59,116,50.90% +124168,860,2355,State-funded primary,213,102,111,47.90%,52.10%,5,2.30%,29,13.60%,12,201,0,5.60%,94.40%,0.00%,34,35,213,16.40% +124171,860,2360,State-funded primary,303,144,159,47.50%,52.50%,8,2.60%,39,12.90%,7,296,0,2.30%,97.70%,0.00%,82,82,303,27.10% +124174,860,2368,State-funded primary,149,73,76,49.00%,51.00%,6,4.00%,21,14.10%,3,146,0,2.00%,98.00%,0.00%,34,35,149,23.50% +124175,860,2369,State-funded primary,209,106,103,50.70%,49.30%,6,2.90%,29,13.90%,1,208,0,0.50%,99.50%,0.00%,34,34,209,16.30% +124176,860,2370,State-funded primary,153,70,83,45.80%,54.20%,5,3.30%,30,19.60%,16,137,0,10.50%,89.50%,0.00%,86,86,153,56.20% +124177,860,2372,State-funded primary,286,138,148,48.30%,51.70%,9,3.10%,29,10.10%,22,264,0,7.70%,92.30%,0.00%,38,39,286,13.60% +124183,860,2386,State-funded primary,444,219,225,49.30%,50.70%,7,1.60%,54,12.20%,7,436,1,1.60%,98.20%,0.20%,70,73,444,16.40% +124189,860,2393,State-funded primary,421,221,200,52.50%,47.50%,1,0.20%,39,9.30%,3,418,0,0.70%,99.30%,0.00%,50,53,421,12.60% +124190,860,2394,State-funded primary,365,190,175,52.10%,47.90%,0,0.00%,36,9.90%,6,359,0,1.60%,98.40%,0.00%,50,55,365,15.10% +124192,860,2396,State-funded primary,364,182,182,50.00%,50.00%,7,1.90%,59,16.20%,4,360,0,1.10%,98.90%,0.00%,67,74,364,20.30% +124193,860,2397,State-funded primary,417,199,218,47.70%,52.30%,1,0.20%,43,10.30%,1,416,0,0.20%,99.80%,0.00%,37,40,417,9.60% +124195,860,2399,State-funded primary,206,109,97,52.90%,47.10%,3,1.50%,27,13.10%,2,204,0,1.00%,99.00%,0.00%,16,19,206,9.20% +124196,860,2400,State-funded primary,222,107,115,48.20%,51.80%,4,1.80%,70,31.50%,17,205,0,7.70%,92.30%,0.00%,61,63,222,28.40% +124199,860,2403,State-funded primary,211,102,109,48.30%,51.70%,3,1.40%,26,12.30%,29,182,0,13.70%,86.30%,0.00%,24,25,211,11.80% +124200,860,2404,State-funded primary,193,88,105,45.60%,54.40%,1,0.50%,51,26.40%,17,176,0,8.80%,91.20%,0.00%,102,104,193,53.90% +124202,860,2406,State-funded primary,299,152,147,50.80%,49.20%,0,0.00%,50,16.70%,11,288,0,3.70%,96.30%,0.00%,73,74,299,24.70% +124205,860,2409,State-funded primary,188,86,102,45.70%,54.30%,3,1.60%,26,13.80%,22,166,0,11.70%,88.30%,0.00%,67,68,188,36.20% +124207,860,2411,State-funded primary,280,135,145,48.20%,51.80%,3,1.10%,37,13.20%,3,277,0,1.10%,98.90%,0.00%,87,89,280,31.80% +124209,860,2413,State-funded primary,409,209,200,51.10%,48.90%,6,1.50%,58,14.20%,4,405,0,1.00%,99.00%,0.00%,44,48,409,11.70% +124221,861,2425,State-funded primary,577,272,305,47.10%,52.90%,11,1.90%,124,21.50%,84,493,0,14.60%,85.40%,0.00%,311,299,507,59.00% +124227,861,3016,State-funded primary,216,98,118,45.40%,54.60%,5,2.30%,29,13.40%,61,155,0,28.20%,71.80%,0.00%,116,114,201,56.70% +124231,860,3025,State-funded primary,181,81,100,44.80%,55.20%,2,1.10%,23,12.70%,2,179,0,1.10%,98.90%,0.00%,28,29,181,16.00% +124232,860,3026,State-funded primary,193,84,109,43.50%,56.50%,5,2.60%,22,11.40%,5,188,0,2.60%,97.40%,0.00%,24,26,193,13.50% +124233,860,3027,State-funded primary,122,66,56,54.10%,45.90%,2,1.60%,11,9.00%,0,122,0,0.00%,100.00%,0.00%,18,22,122,18.00% +124234,860,3028,State-funded primary,215,103,112,47.90%,52.10%,1,0.50%,15,7.00%,11,204,0,5.10%,94.90%,0.00%,5,5,215,2.30% +124235,860,3029,State-funded primary,103,47,56,45.60%,54.40%,1,1.00%,15,14.60%,0,99,4,0.00%,96.10%,3.90%,4,4,103,3.90% +124238,860,3035,State-funded primary,198,99,99,50.00%,50.00%,2,1.00%,27,13.60%,1,197,0,0.50%,99.50%,0.00%,17,19,198,9.60% +124240,860,3040,State-funded primary,220,108,112,49.10%,50.90%,4,1.80%,53,24.10%,2,218,0,0.90%,99.10%,0.00%,94,94,220,42.70% +124242,860,3043,State-funded primary,55,26,29,47.30%,52.70%,1,1.80%,9,16.40%,2,53,0,3.60%,96.40%,0.00%,7,10,55,18.20% +124249,860,3051,State-funded primary,49,28,21,57.10%,42.90%,1,2.00%,5,10.20%,2,47,0,4.10%,95.90%,0.00%,6,7,49,14.30% +124254,860,3069,State-funded primary,187,94,93,50.30%,49.70%,0,0.00%,16,8.60%,31,155,1,16.60%,82.90%,0.50%,14,14,187,7.50% +124257,860,3076,State-funded primary,418,222,196,53.10%,46.90%,2,0.50%,39,9.30%,9,408,1,2.20%,97.60%,0.20%,25,25,418,6.00% +124261,860,3082,State-funded primary,44,18,26,40.90%,59.10%,5,11.40%,10,22.70%,0,44,0,0.00%,100.00%,0.00%,7,7,44,15.90% +124262,860,3084,State-funded primary,48,26,22,54.20%,45.80%,1,2.10%,3,6.30%,1,47,0,2.10%,97.90%,0.00%,2,2,48,4.20% +124265,860,3091,State-funded primary,267,125,142,46.80%,53.20%,1,0.40%,32,12.00%,21,246,0,7.90%,92.10%,0.00%,39,41,267,15.40% +124267,860,3093,State-funded primary,194,98,96,50.50%,49.50%,8,4.10%,43,22.20%,3,188,3,1.50%,96.90%,1.50%,63,65,194,33.50% +124268,860,3094,State-funded primary,228,125,103,54.80%,45.20%,1,0.40%,24,10.50%,3,225,0,1.30%,98.70%,0.00%,20,21,228,9.20% +124269,860,3098,State-funded primary,128,68,60,53.10%,46.90%,1,0.80%,18,14.10%,0,128,0,0.00%,100.00%,0.00%,15,15,128,11.70% +124274,860,3110,State-funded primary,54,25,29,46.30%,53.70%,0,0.00%,5,9.30%,0,54,0,0.00%,100.00%,0.00%,5,5,54,9.30% +124275,860,3112,State-funded primary,221,123,98,55.70%,44.30%,2,0.90%,25,11.30%,3,218,0,1.40%,98.60%,0.00%,23,23,221,10.40% +124278,860,3116,State-funded primary,109,55,54,50.50%,49.50%,4,3.70%,23,21.10%,2,107,0,1.80%,98.20%,0.00%,20,21,109,19.30% +124279,860,3117,State-funded primary,71,31,40,43.70%,56.30%,2,2.80%,6,8.50%,2,69,0,2.80%,97.20%,0.00%,8,8,71,11.30% +124289,860,3136,State-funded primary,147,65,82,44.20%,55.80%,4,2.70%,22,15.00%,3,144,0,2.00%,98.00%,0.00%,39,40,147,27.20% +124290,860,3137,State-funded primary,164,89,75,54.30%,45.70%,5,3.00%,23,14.00%,8,156,0,4.90%,95.10%,0.00%,16,16,164,9.80% +124291,860,3139,State-funded primary,248,136,112,54.80%,45.20%,2,0.80%,36,14.50%,3,245,0,1.20%,98.80%,0.00%,49,53,248,21.40% +124294,860,3144,State-funded primary,185,93,92,50.30%,49.70%,4,2.20%,37,20.00%,51,133,1,27.60%,71.90%,0.50%,31,32,185,17.30% +124299,860,3149,State-funded primary,140,66,74,47.10%,52.90%,1,0.70%,29,20.70%,12,128,0,8.60%,91.40%,0.00%,33,35,140,25.00% +124302,860,3152,State-funded primary,59,26,33,44.10%,55.90%,4,6.80%,7,11.90%,0,59,0,0.00%,100.00%,0.00%,11,11,59,18.60% +124309,861,3303,State-funded primary,330,164,166,49.70%,50.30%,8,2.40%,34,10.30%,138,176,16,41.80%,53.30%,4.80%,93,90,304,29.60% +124313,861,3311,State-funded primary,429,198,231,46.20%,53.80%,10,2.30%,69,16.10%,190,226,13,44.30%,52.70%,3.00%,218,205,388,52.80% +124326,860,3420,State-funded primary,373,176,197,47.20%,52.80%,5,1.30%,24,6.40%,198,175,0,53.10%,46.90%,0.00%,65,65,373,17.40% +124331,860,3430,State-funded primary,141,61,80,43.30%,56.70%,3,2.10%,11,7.80%,1,140,0,0.70%,99.30%,0.00%,10,11,141,7.80% +124337,860,3438,State-funded primary,54,24,30,44.40%,55.60%,0,0.00%,5,9.30%,2,52,0,3.70%,96.30%,0.00%,2,2,54,3.70% +124342,860,3446,State-funded primary,50,20,30,40.00%,60.00%,0,0.00%,4,8.00%,1,49,0,2.00%,98.00%,0.00%,1,1,50,2.00% +124343,860,3447,State-funded primary,150,76,74,50.70%,49.30%,2,1.30%,16,10.70%,2,148,0,1.30%,98.70%,0.00%,18,18,150,12.00% +124344,860,3449,State-funded primary,204,90,114,44.10%,55.90%,4,2.00%,30,14.70%,1,203,0,0.50%,99.50%,0.00%,35,38,204,18.60% +124345,860,3450,State-funded primary,131,69,62,52.70%,47.30%,3,2.30%,16,12.20%,3,128,0,2.30%,97.70%,0.00%,11,10,130,7.70% +124349,860,3456,State-funded primary,193,89,104,46.10%,53.90%,0,0.00%,31,16.10%,17,176,0,8.80%,91.20%,0.00%,45,46,193,23.80% +124351,860,3458,State-funded primary,209,115,94,55.00%,45.00%,2,1.00%,17,8.10%,28,181,0,13.40%,86.60%,0.00%,35,35,209,16.70% +124354,860,3461,State-funded primary,206,106,100,51.50%,48.50%,2,1.00%,13,6.30%,18,188,0,8.70%,91.30%,0.00%,20,24,206,11.70% +124357,860,3464,State-funded primary,212,117,95,55.20%,44.80%,4,1.90%,28,13.20%,33,179,0,15.60%,84.40%,0.00%,17,17,212,8.00% +124360,860,3467,State-funded primary,205,85,120,41.50%,58.50%,4,2.00%,22,10.70%,13,192,0,6.30%,93.70%,0.00%,49,50,205,24.40% +124369,860,3478,State-funded primary,188,101,87,53.70%,46.30%,0,0.00%,23,12.20%,30,158,0,16.00%,84.00%,0.00%,42,43,188,22.90% +124372,860,3481,State-funded primary,107,55,52,51.40%,48.60%,1,0.90%,12,11.20%,2,105,0,1.90%,98.10%,0.00%,23,24,107,22.40% +124373,860,3482,State-funded primary,392,191,201,48.70%,51.30%,4,1.00%,52,13.30%,66,326,0,16.80%,83.20%,0.00%,60,62,392,15.80% +124375,860,3484,State-funded primary,130,60,70,46.20%,53.80%,7,5.40%,24,18.50%,16,114,0,12.30%,87.70%,0.00%,58,60,130,46.20% +124376,860,3485,State-funded primary,211,101,110,47.90%,52.10%,2,0.90%,15,7.10%,5,206,0,2.40%,97.60%,0.00%,19,22,211,10.40% +124381,860,3490,State-funded primary,33,22,11,66.70%,33.30%,0,0.00%,1,3.00%,0,33,0,0.00%,100.00%,0.00%,2,2,33,6.10% +124392,860,4055,State-funded secondary,686,368,318,53.60%,46.40%,0,0.00%,85,12.40%,373,313,0,54.40%,45.60%,0.00%,154,134,532,25.20% +124395,860,4066,State-funded secondary,467,208,259,44.50%,55.50%,35,7.50%,69,14.80%,12,455,0,2.60%,97.40%,0.00%,124,127,421,30.20% +124396,860,4067,State-funded secondary,1031,544,487,52.80%,47.20%,15,1.50%,90,8.70%,13,1018,0,1.30%,98.70%,0.00%,129,133,898,14.80% +124400,860,4075,State-funded secondary,1051,473,578,45.00%,55.00%,13,1.20%,124,11.80%,30,1020,1,2.90%,97.10%,0.10%,141,129,774,16.70% +124408,860,4087,State-funded secondary,1607,798,809,49.70%,50.30%,18,1.10%,133,8.30%,85,1522,0,5.30%,94.70%,0.00%,128,137,1230,11.10% +124426,860,4142,State-funded secondary,512,265,247,51.80%,48.20%,10,2.00%,74,14.50%,5,507,0,1.00%,99.00%,0.00%,97,104,512,20.30% +124437,860,4170,State-funded secondary,444,212,232,47.70%,52.30%,6,1.40%,76,17.10%,23,421,0,5.20%,94.80%,0.00%,69,76,444,17.10% +124449,860,4500,State-funded secondary,790,403,387,51.00%,49.00%,23,2.90%,105,13.30%,259,528,3,32.80%,66.80%,0.40%,189,201,693,29.00% +124453,860,4517,State-funded secondary,141,61,80,43.30%,56.70%,8,5.70%,35,24.80%,3,138,0,2.10%,97.90%,0.00%,50,54,141,38.30% +124464,860,5202,State-funded primary,85,35,50,41.20%,58.80%,1,1.20%,7,8.20%,0,85,0,0.00%,100.00%,0.00%,3,4,85,4.70% +124467,860,5402,State-funded secondary,472,245,227,51.90%,48.10%,5,1.10%,78,16.50%,28,444,0,5.90%,94.10%,0.00%,183,199,464,42.90% +124468,860,5403,State-funded secondary,883,460,423,52.10%,47.90%,12,1.40%,133,15.10%,37,846,0,4.20%,95.80%,0.00%,161,180,745,24.20% +124471,860,6005,Independent school,286,193,93,67.50%,32.50%,2,0.70%,82,28.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124473,860,6003,Independent school,776,325,451,41.90%,58.10%,6,0.80%,140,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124474,860,6012,Independent school,535,268,267,50.10%,49.90%,3,0.60%,73,13.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124476,860,6011,Independent school,189,118,71,62.40%,37.60%,6,3.20%,44,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124477,860,6000,Independent school,172,75,97,43.60%,56.40%,1,0.60%,26,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124481,860,6018,Independent school,186,94,92,50.50%,49.50%,2,1.10%,14,7.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124484,861,6000,Independent school,83,41,42,49.40%,50.60%,3,3.60%,15,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124486,860,6008,Independent school,177,86,91,48.60%,51.40%,0,0.00%,32,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124487,860,6015,Independent school,867,444,423,51.20%,48.80%,1,0.10%,71,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124488,860,6022,Independent school,112,43,69,38.40%,61.60%,111,99.10%,1,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124489,860,6009,Independent school,446,225,221,50.40%,49.60%,2,0.40%,47,10.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124495,860,6017,Independent school,46,9,37,19.60%,80.40%,33,71.70%,13,28.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124496,860,7003,State-funded special school,57,26,31,45.60%,54.40%,57,100.00%,0,0.00%,1,56,0,1.80%,98.20%,0.00%,12,12,57,21.10% +124498,861,7005,State-funded special school,95,10,85,10.50%,89.50%,95,100.00%,0,0.00%,1,93,1,1.10%,97.90%,1.10%,62,73,95,76.80% +124500,861,7007,State-funded special school,355,94,261,26.50%,73.50%,355,100.00%,0,0.00%,29,326,0,8.20%,91.80%,0.00%,172,139,281,49.50% +124508,860,7023,State-funded special school,177,47,130,26.60%,73.40%,177,100.00%,0,0.00%,2,175,0,1.10%,98.90%,0.00%,86,86,158,54.40% +124514,860,7032,State-funded special school,135,27,108,20.00%,80.00%,135,100.00%,0,0.00%,0,135,0,0.00%,100.00%,0.00%,44,44,135,32.60% +124518,860,7037,State-funded special school,132,43,89,32.60%,67.40%,132,100.00%,0,0.00%,20,112,0,15.20%,84.80%,0.00%,56,58,132,43.90% +124525,935,1001,State-funded nursery,107,55,52,51.40%,48.60%,0,0.00%,11,10.30%,14,93,0,13.10%,86.90%,0.00%,10,0,0,0.00% +124531,935,2002,State-funded primary,118,59,59,50.00%,50.00%,2,1.70%,14,11.90%,5,113,0,4.20%,95.80%,0.00%,22,22,118,18.60% +124534,935,2007,State-funded primary,322,162,160,50.30%,49.70%,2,0.60%,29,9.00%,9,313,0,2.80%,97.20%,0.00%,52,53,308,17.20% +124536,935,2009,State-funded primary,316,155,161,49.10%,50.90%,5,1.60%,49,15.50%,24,292,0,7.60%,92.40%,0.00%,108,109,293,37.20% +124537,935,2011,State-funded primary,196,101,95,51.50%,48.50%,2,1.00%,28,14.30%,19,177,0,9.70%,90.30%,0.00%,30,31,196,15.80% +124538,935,2012,State-funded primary,75,32,43,42.70%,57.30%,1,1.30%,9,12.00%,1,74,0,1.30%,98.70%,0.00%,21,21,75,28.00% +124539,935,2013,State-funded primary,269,138,131,51.30%,48.70%,11,4.10%,29,10.80%,10,259,0,3.70%,96.30%,0.00%,44,45,269,16.70% +124540,935,2015,State-funded primary,117,61,56,52.10%,47.90%,4,3.40%,11,9.40%,3,114,0,2.60%,97.40%,0.00%,15,15,117,12.80% +124543,935,2020,State-funded primary,207,100,107,48.30%,51.70%,2,1.00%,19,9.20%,2,205,0,1.00%,99.00%,0.00%,15,19,207,9.20% +124544,935,2021,State-funded primary,222,93,129,41.90%,58.10%,17,7.70%,43,19.40%,14,208,0,6.30%,93.70%,0.00%,33,33,222,14.90% +124547,935,2026,State-funded primary,223,101,122,45.30%,54.70%,9,4.00%,27,12.10%,0,223,0,0.00%,100.00%,0.00%,40,38,195,19.50% +124550,935,2032,State-funded primary,325,153,172,47.10%,52.90%,6,1.80%,31,9.50%,29,295,1,8.90%,90.80%,0.30%,44,46,325,14.20% +124552,935,2034,State-funded primary,289,130,159,45.00%,55.00%,13,4.50%,40,13.80%,24,265,0,8.30%,91.70%,0.00%,82,82,289,28.40% +124553,935,2035,State-funded primary,191,89,102,46.60%,53.40%,3,1.60%,22,11.50%,15,176,0,7.90%,92.10%,0.00%,31,32,179,17.90% +124559,935,2042,State-funded primary,514,272,242,52.90%,47.10%,1,0.20%,51,9.90%,32,482,0,6.20%,93.80%,0.00%,94,94,514,18.30% +124565,935,2055,State-funded primary,189,95,94,50.30%,49.70%,1,0.50%,25,13.20%,28,161,0,14.80%,85.20%,0.00%,24,25,189,13.20% +124572,935,2066,State-funded primary,99,52,47,52.50%,47.50%,3,3.00%,19,19.20%,0,99,0,0.00%,100.00%,0.00%,12,12,99,12.10% +124574,935,2068,State-funded primary,437,218,219,49.90%,50.10%,8,1.80%,45,10.30%,10,427,0,2.30%,97.70%,0.00%,70,75,410,18.30% +124577,935,2071,State-funded primary,82,39,43,47.60%,52.40%,0,0.00%,10,12.20%,1,81,0,1.20%,98.80%,0.00%,8,8,82,9.80% +124578,935,2072,State-funded primary,71,36,35,50.70%,49.30%,0,0.00%,10,14.10%,0,71,0,0.00%,100.00%,0.00%,12,12,71,16.90% +124582,935,2076,State-funded primary,310,156,154,50.30%,49.70%,1,0.30%,34,11.00%,37,273,0,11.90%,88.10%,0.00%,40,40,259,15.40% +124584,935,2079,State-funded primary,159,86,73,54.10%,45.90%,0,0.00%,20,12.60%,3,156,0,1.90%,98.10%,0.00%,25,25,159,15.70% +124588,935,2084,State-funded primary,186,83,103,44.60%,55.40%,3,1.60%,31,16.70%,3,183,0,1.60%,98.40%,0.00%,21,21,186,11.30% +124589,935,2085,State-funded primary,98,51,47,52.00%,48.00%,2,2.00%,21,21.40%,3,95,0,3.10%,96.90%,0.00%,18,19,96,19.80% +124593,935,2089,State-funded primary,572,276,296,48.30%,51.70%,8,1.40%,59,10.30%,42,530,0,7.30%,92.70%,0.00%,61,67,523,12.80% +124595,935,2092,State-funded primary,105,46,59,43.80%,56.20%,2,1.90%,19,18.10%,3,102,0,2.90%,97.10%,0.00%,5,5,105,4.80% +124597,935,2095,State-funded primary,177,86,91,48.60%,51.40%,3,1.70%,24,13.60%,8,169,0,4.50%,95.50%,0.00%,54,49,160,30.60% +124602,935,2101,State-funded primary,54,25,29,46.30%,53.70%,1,1.90%,5,9.30%,1,53,0,1.90%,98.10%,0.00%,5,5,54,9.30% +124609,935,2110,State-funded primary,93,44,49,47.30%,52.70%,3,3.20%,14,15.10%,1,92,0,1.10%,98.90%,0.00%,17,17,93,18.30% +124613,935,2117,State-funded primary,387,194,193,50.10%,49.90%,5,1.30%,46,11.90%,6,381,0,1.60%,98.40%,0.00%,64,66,387,17.10% +124614,935,2118,State-funded primary,196,96,100,49.00%,51.00%,13,6.60%,35,17.90%,2,194,0,1.00%,99.00%,0.00%,26,28,196,14.30% +124615,935,2121,State-funded primary,98,52,46,53.10%,46.90%,6,6.10%,15,15.30%,0,98,0,0.00%,100.00%,0.00%,14,14,98,14.30% +124618,935,2124,State-funded primary,97,44,53,45.40%,54.60%,4,4.10%,5,5.20%,1,96,0,1.00%,99.00%,0.00%,12,12,97,12.40% +124619,935,2125,State-funded primary,195,82,113,42.10%,57.90%,2,1.00%,5,2.60%,4,187,4,2.10%,95.90%,2.10%,25,29,195,14.90% +124624,935,2131,State-funded primary,355,183,172,51.50%,48.50%,9,2.50%,41,11.50%,32,323,0,9.00%,91.00%,0.00%,58,63,355,17.70% +124625,935,2132,State-funded primary,441,208,233,47.20%,52.80%,28,6.30%,32,7.30%,35,406,0,7.90%,92.10%,0.00%,42,42,441,9.50% +124627,935,2134,State-funded primary,203,103,100,50.70%,49.30%,3,1.50%,7,3.40%,15,187,1,7.40%,92.10%,0.50%,26,28,203,13.80% +124628,935,2135,State-funded primary,405,191,214,47.20%,52.80%,9,2.20%,28,6.90%,16,389,0,4.00%,96.00%,0.00%,82,79,378,20.90% +124645,935,2157,State-funded primary,304,136,168,44.70%,55.30%,8,2.60%,37,12.20%,155,149,0,51.00%,49.00%,0.00%,104,106,290,36.60% +124650,935,2162,State-funded primary,435,215,220,49.40%,50.60%,9,2.10%,49,11.30%,102,333,0,23.40%,76.60%,0.00%,96,99,401,24.70% +124654,935,2166,State-funded primary,436,225,211,51.60%,48.40%,8,1.80%,22,5.00%,133,300,3,30.50%,68.80%,0.70%,77,79,408,19.40% +124668,935,2184,State-funded primary,414,225,189,54.30%,45.70%,8,1.90%,63,15.20%,20,394,0,4.80%,95.20%,0.00%,40,42,414,10.10% +124675,935,2918,State-funded primary,92,56,36,60.90%,39.10%,1,1.10%,9,9.80%,6,86,0,6.50%,93.50%,0.00%,13,14,92,15.20% +124676,935,2919,State-funded primary,371,192,179,51.80%,48.20%,4,1.10%,33,8.90%,6,365,0,1.60%,98.40%,0.00%,75,76,319,23.80% +124678,935,2921,State-funded primary,197,92,105,46.70%,53.30%,1,0.50%,9,4.60%,5,190,2,2.50%,96.40%,1.00%,19,20,197,10.20% +124680,935,2923,State-funded primary,315,151,164,47.90%,52.10%,3,1.00%,32,10.20%,9,306,0,2.90%,97.10%,0.00%,45,46,315,14.60% +124681,935,2924,State-funded primary,208,101,107,48.60%,51.40%,3,1.40%,23,11.10%,15,192,1,7.20%,92.30%,0.50%,11,11,208,5.30% +124682,935,2925,State-funded primary,392,191,201,48.70%,51.30%,3,0.80%,54,13.80%,40,344,8,10.20%,87.80%,2.00%,39,43,392,11.00% +124685,935,2928,State-funded primary,69,36,33,52.20%,47.80%,1,1.40%,11,15.90%,10,59,0,14.50%,85.50%,0.00%,4,4,69,5.80% +124686,935,3000,State-funded primary,169,85,84,50.30%,49.70%,2,1.20%,9,5.30%,1,168,0,0.60%,99.40%,0.00%,22,23,169,13.60% +124688,935,3003,State-funded primary,157,85,72,54.10%,45.90%,2,1.30%,36,22.90%,1,156,0,0.60%,99.40%,0.00%,19,19,157,12.10% +124689,935,3004,State-funded primary,81,34,47,42.00%,58.00%,3,3.70%,10,12.30%,0,81,0,0.00%,100.00%,0.00%,15,16,81,19.80% +124690,935,3005,State-funded primary,201,104,97,51.70%,48.30%,3,1.50%,15,7.50%,1,200,0,0.50%,99.50%,0.00%,24,24,201,11.90% +124691,935,3006,State-funded primary,183,87,96,47.50%,52.50%,3,1.60%,13,7.10%,3,180,0,1.60%,98.40%,0.00%,21,23,183,12.60% +124692,935,3009,State-funded primary,199,107,92,53.80%,46.20%,2,1.00%,16,8.00%,3,196,0,1.50%,98.50%,0.00%,28,28,199,14.10% +124693,935,3010,State-funded primary,83,38,45,45.80%,54.20%,1,1.20%,10,12.00%,0,83,0,0.00%,100.00%,0.00%,13,14,83,16.90% +124694,935,3013,State-funded primary,67,29,38,43.30%,56.70%,0,0.00%,3,4.50%,1,66,0,1.50%,98.50%,0.00%,11,11,67,16.40% +124698,935,3026,State-funded primary,59,31,28,52.50%,47.50%,0,0.00%,10,16.90%,0,59,0,0.00%,100.00%,0.00%,7,9,59,15.30% +124699,935,3027,State-funded primary,193,85,108,44.00%,56.00%,3,1.60%,18,9.30%,2,191,0,1.00%,99.00%,0.00%,32,33,193,17.10% +124702,935,3036,State-funded primary,170,75,95,44.10%,55.90%,2,1.20%,32,18.80%,1,169,0,0.60%,99.40%,0.00%,27,29,170,17.10% +124703,935,3037,State-funded primary,88,42,46,47.70%,52.30%,0,0.00%,10,11.40%,1,87,0,1.10%,98.90%,0.00%,26,27,84,32.10% +124706,935,3043,State-funded primary,171,87,84,50.90%,49.10%,3,1.80%,13,7.60%,1,170,0,0.60%,99.40%,0.00%,22,22,171,12.90% +124709,935,3048,State-funded primary,203,97,106,47.80%,52.20%,2,1.00%,25,12.30%,8,195,0,3.90%,96.10%,0.00%,24,24,203,11.80% +124710,935,3049,State-funded primary,209,104,105,49.80%,50.20%,1,0.50%,29,13.90%,1,208,0,0.50%,99.50%,0.00%,22,23,209,11.00% +124712,935,3056,State-funded primary,207,106,101,51.20%,48.80%,4,1.90%,8,3.90%,0,207,0,0.00%,100.00%,0.00%,28,28,207,13.50% +124717,935,3064,State-funded primary,128,61,67,47.70%,52.30%,2,1.60%,24,18.80%,5,123,0,3.90%,96.10%,0.00%,24,28,128,21.90% +124718,935,3066,State-funded primary,40,16,24,40.00%,60.00%,2,5.00%,12,30.00%,0,40,0,0.00%,100.00%,0.00%,13,13,40,32.50% +124719,935,3074,State-funded primary,64,23,41,35.90%,64.10%,1,1.60%,13,20.30%,2,62,0,3.10%,96.90%,0.00%,18,18,52,34.60% +124721,935,3076,State-funded primary,76,26,50,34.20%,65.80%,1,1.30%,17,22.40%,1,75,0,1.30%,98.70%,0.00%,25,25,76,32.90% +124723,935,3078,State-funded primary,210,115,95,54.80%,45.20%,3,1.40%,39,18.60%,4,205,1,1.90%,97.60%,0.50%,41,41,210,19.50% +124727,935,3083,State-funded primary,123,67,56,54.50%,45.50%,3,2.40%,19,15.40%,1,122,0,0.80%,99.20%,0.00%,21,21,106,19.80% +124729,935,3085,State-funded primary,201,105,96,52.20%,47.80%,1,0.50%,18,9.00%,1,200,0,0.50%,99.50%,0.00%,22,22,201,10.90% +124732,935,3090,State-funded primary,127,58,69,45.70%,54.30%,2,1.60%,13,10.20%,0,127,0,0.00%,100.00%,0.00%,13,13,127,10.20% +124735,935,3093,State-funded primary,171,74,97,43.30%,56.70%,6,3.50%,22,12.90%,4,167,0,2.30%,97.70%,0.00%,31,31,171,18.10% +124744,935,3104,State-funded primary,63,39,24,61.90%,38.10%,2,3.20%,7,11.10%,4,59,0,6.30%,93.70%,0.00%,7,7,63,11.10% +124747,935,3109,State-funded primary,100,49,51,49.00%,51.00%,1,1.00%,14,14.00%,0,100,0,0.00%,100.00%,0.00%,13,13,87,14.90% +124748,935,3111,State-funded primary,339,167,172,49.30%,50.70%,5,1.50%,45,13.30%,4,335,0,1.20%,98.80%,0.00%,42,44,339,13.00% +124749,935,3112,State-funded primary,278,144,134,51.80%,48.20%,3,1.10%,23,8.30%,8,270,0,2.90%,97.10%,0.00%,24,25,263,9.50% +124750,935,3113,State-funded primary,77,40,37,51.90%,48.10%,2,2.60%,11,14.30%,2,75,0,2.60%,97.40%,0.00%,12,12,67,17.90% +124751,935,3114,State-funded primary,182,81,101,44.50%,55.50%,4,2.20%,16,8.80%,2,180,0,1.10%,98.90%,0.00%,29,30,182,16.50% +124754,935,3117,State-funded primary,56,32,24,57.10%,42.90%,2,3.60%,10,17.90%,0,56,0,0.00%,100.00%,0.00%,11,11,56,19.60% +124757,935,3124,State-funded primary,229,108,121,47.20%,52.80%,21,9.20%,11,4.80%,14,215,0,6.10%,93.90%,0.00%,64,64,203,31.50% +124758,935,3125,State-funded primary,176,84,92,47.70%,52.30%,1,0.60%,18,10.20%,7,169,0,4.00%,96.00%,0.00%,21,24,176,13.60% +124762,935,3308,State-funded primary,230,120,110,52.20%,47.80%,4,1.70%,47,20.40%,32,196,2,13.90%,85.20%,0.90%,67,67,230,29.10% +124763,935,3310,State-funded primary,162,89,73,54.90%,45.10%,0,0.00%,14,8.60%,31,131,0,19.10%,80.90%,0.00%,26,26,162,16.00% +124764,935,3311,State-funded primary,437,226,211,51.70%,48.30%,34,7.80%,83,19.00%,167,270,0,38.20%,61.80%,0.00%,65,68,437,15.60% +124770,935,3322,State-funded primary,98,48,50,49.00%,51.00%,4,4.10%,12,12.20%,1,97,0,1.00%,99.00%,0.00%,10,10,98,10.20% +124772,935,3327,State-funded primary,190,93,97,48.90%,51.10%,0,0.00%,27,14.20%,1,189,0,0.50%,99.50%,0.00%,10,13,190,6.80% +124774,935,3329,State-funded primary,164,78,86,47.60%,52.40%,7,4.30%,17,10.40%,3,161,0,1.80%,98.20%,0.00%,20,22,156,14.10% +124775,935,3330,State-funded primary,364,188,176,51.60%,48.40%,4,1.10%,55,15.10%,16,348,0,4.40%,95.60%,0.00%,55,55,342,16.10% +124777,935,3332,State-funded primary,51,23,28,45.10%,54.90%,4,7.80%,13,25.50%,2,49,0,3.90%,96.10%,0.00%,8,8,51,15.70% +124781,935,3337,State-funded primary,207,91,116,44.00%,56.00%,1,0.50%,14,6.80%,19,188,0,9.20%,90.80%,0.00%,3,3,207,1.40% +124782,935,3338,State-funded primary,420,206,214,49.00%,51.00%,5,1.20%,41,9.80%,147,272,1,35.00%,64.80%,0.20%,84,87,420,20.70% +124786,935,3342,State-funded primary,209,96,113,45.90%,54.10%,3,1.40%,16,7.70%,61,148,0,29.20%,70.80%,0.00%,31,32,209,15.30% +124802,935,4024,State-funded secondary,1570,782,788,49.80%,50.20%,30,1.90%,164,10.40%,29,1522,19,1.80%,96.90%,1.20%,199,227,1356,16.70% +124840,935,4090,State-funded secondary,1732,890,842,51.40%,48.60%,51,2.90%,173,10.00%,296,1426,10,17.10%,82.30%,0.60%,208,205,1262,16.20% +124856,935,4500,State-funded secondary,1196,588,608,49.20%,50.80%,43,3.60%,230,19.20%,69,1124,3,5.80%,94.00%,0.30%,210,240,1196,20.10% +124865,935,6003,Independent school,150,69,81,46.00%,54.00%,6,4.00%,46,30.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124866,935,6005,Independent school,231,90,141,39.00%,61.00%,0,0.00%,41,17.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124868,935,6007,Independent school,279,139,140,49.80%,50.20%,12,4.30%,65,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124870,935,6016,Independent school,62,33,29,53.20%,46.80%,3,4.80%,10,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124872,935,6018,Independent school,213,114,99,53.50%,46.50%,0,0.00%,29,13.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124873,935,6019,Independent school,216,97,119,44.90%,55.10%,1,0.50%,55,25.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124875,935,6023,Independent school,217,111,106,51.20%,48.80%,4,1.80%,34,15.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124876,935,6025,Independent school,157,77,80,49.00%,51.00%,1,0.60%,30,19.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124879,935,6036,Independent school,112,0,112,0.00%,100.00%,112,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124881,935,6039,Independent school,1145,478,667,41.70%,58.30%,0,0.00%,130,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124883,935,6044,Independent school,594,236,358,39.70%,60.30%,1,0.20%,105,17.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124884,935,6046,Independent school,578,267,311,46.20%,53.80%,1,0.20%,130,22.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124885,935,6050,Independent school,63,34,29,54.00%,46.00%,0,0.00%,10,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124886,935,6053,Independent school,848,394,454,46.50%,53.50%,0,0.00%,129,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124887,935,6054,Independent school,745,366,379,49.10%,50.90%,0,0.00%,104,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124888,935,6055,Independent school,498,359,139,72.10%,27.90%,1,0.20%,77,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124889,935,6056,Independent school,686,319,367,46.50%,53.50%,1,0.10%,140,20.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124890,935,6058,Independent school,59,12,47,20.30%,79.70%,54,91.50%,4,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124892,935,6062,Independent school,680,308,372,45.30%,54.70%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124893,935,6065,Independent school,144,63,81,43.80%,56.30%,14,9.70%,21,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124899,935,6076,Independent school,30,18,12,60.00%,40.00%,1,3.30%,5,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +124903,935,7002,State-funded special school,85,28,57,32.90%,67.10%,85,100.00%,0,0.00%,6,79,0,7.10%,92.90%,0.00%,35,37,83,44.60% +124911,936,1001,State-funded nursery,97,46,51,47.40%,52.60%,20,20.60%,11,11.30%,28,68,1,28.90%,70.10%,1.00%,16,0,0,0.00% +124912,936,1004,State-funded nursery,106,50,56,47.20%,52.80%,10,9.40%,27,25.50%,20,86,0,18.90%,81.10%,0.00%,23,0,0,0.00% +124913,936,1006,State-funded nursery,92,37,55,40.20%,59.80%,1,1.10%,14,15.20%,11,81,0,12.00%,88.00%,0.00%,17,0,0,0.00% +124937,936,2008,State-funded primary,199,94,105,47.20%,52.80%,3,1.50%,17,8.50%,9,190,0,4.50%,95.50%,0.00%,25,26,199,13.10% +124939,936,2012,State-funded primary,209,110,99,52.60%,47.40%,9,4.30%,28,13.40%,8,201,0,3.80%,96.20%,0.00%,14,14,209,6.70% +124946,936,2056,State-funded primary,102,46,56,45.10%,54.90%,4,3.90%,19,18.60%,3,99,0,2.90%,97.10%,0.00%,7,8,102,7.80% +124949,936,2072,State-funded primary,419,187,232,44.60%,55.40%,10,2.40%,44,10.50%,8,411,0,1.90%,98.10%,0.00%,32,32,419,7.60% +124952,936,2078,State-funded primary,170,81,89,47.60%,52.40%,6,3.50%,15,8.80%,24,146,0,14.10%,85.90%,0.00%,20,20,170,11.80% +124953,936,2079,State-funded primary,394,181,213,45.90%,54.10%,15,3.80%,49,12.40%,74,320,0,18.80%,81.20%,0.00%,57,57,394,14.50% +124955,936,2083,State-funded primary,453,221,232,48.80%,51.20%,5,1.10%,75,16.60%,63,390,0,13.90%,86.10%,0.00%,51,48,420,11.40% +124956,936,2085,State-funded primary,519,245,274,47.20%,52.80%,30,5.80%,149,28.70%,164,286,69,31.60%,55.10%,13.30%,126,121,426,28.40% +124964,936,2099,State-funded primary,258,119,139,46.10%,53.90%,11,4.30%,22,8.50%,24,234,0,9.30%,90.70%,0.00%,3,3,258,1.20% +124966,936,2101,State-funded primary,184,84,100,45.70%,54.30%,4,2.20%,12,6.50%,44,140,0,23.90%,76.10%,0.00%,16,10,153,6.50% +124968,936,2103,State-funded primary,262,120,142,45.80%,54.20%,4,1.50%,13,5.00%,21,241,0,8.00%,92.00%,0.00%,6,6,262,2.30% +124971,936,2124,State-funded primary,204,99,105,48.50%,51.50%,1,0.50%,25,12.30%,8,196,0,3.90%,96.10%,0.00%,18,19,204,9.30% +124978,936,2136,State-funded primary,205,99,106,48.30%,51.70%,8,3.90%,33,16.10%,22,183,0,10.70%,89.30%,0.00%,21,23,205,11.20% +124979,936,2137,State-funded primary,250,127,123,50.80%,49.20%,8,3.20%,29,11.60%,21,229,0,8.40%,91.60%,0.00%,25,27,250,10.80% +124980,936,2138,State-funded primary,173,84,89,48.60%,51.40%,1,0.60%,4,2.30%,24,149,0,13.90%,86.10%,0.00%,12,12,173,6.90% +124981,936,2140,State-funded primary,267,125,142,46.80%,53.20%,3,1.10%,37,13.90%,35,232,0,13.10%,86.90%,0.00%,36,37,267,13.90% +124982,936,2149,State-funded primary,144,76,68,52.80%,47.20%,2,1.40%,4,2.80%,7,137,0,4.90%,95.10%,0.00%,7,7,144,4.90% +124983,936,2150,State-funded primary,174,79,95,45.40%,54.60%,3,1.70%,6,3.40%,7,167,0,4.00%,96.00%,0.00%,13,13,174,7.50% +124986,936,2156,State-funded primary,202,98,104,48.50%,51.50%,2,1.00%,15,7.40%,0,202,0,0.00%,100.00%,0.00%,19,19,202,9.40% +124987,936,2209,State-funded primary,390,188,202,48.20%,51.80%,6,1.50%,31,7.90%,122,267,1,31.30%,68.50%,0.30%,69,64,327,19.60% +124994,936,2257,State-funded primary,266,137,129,51.50%,48.50%,7,2.60%,14,5.30%,76,190,0,28.60%,71.40%,0.00%,15,15,266,5.60% +124996,936,2268,State-funded primary,154,56,98,36.40%,63.60%,18,11.70%,17,11.00%,15,139,0,9.70%,90.30%,0.00%,34,34,154,22.10% +125003,936,2279,State-funded primary,262,136,126,51.90%,48.10%,8,3.10%,24,9.20%,38,224,0,14.50%,85.50%,0.00%,14,14,262,5.30% +125004,936,2286,State-funded primary,87,35,52,40.20%,59.80%,5,5.70%,9,10.30%,8,75,4,9.20%,86.20%,4.60%,9,9,87,10.30% +125008,936,2297,State-funded primary,663,339,324,51.10%,48.90%,16,2.40%,53,8.00%,37,622,4,5.60%,93.80%,0.60%,58,65,663,9.80% +125009,936,5220,State-funded primary,240,117,123,48.80%,51.30%,7,2.90%,33,13.80%,37,203,0,15.40%,84.60%,0.00%,30,33,240,13.80% +125010,936,2302,State-funded primary,101,56,45,55.40%,44.60%,1,1.00%,10,9.90%,2,98,1,2.00%,97.00%,1.00%,32,27,86,31.40% +125012,936,2311,State-funded primary,356,172,184,48.30%,51.70%,10,2.80%,37,10.40%,29,327,0,8.10%,91.90%,0.00%,48,50,356,14.00% +125014,936,2315,State-funded primary,175,82,93,46.90%,53.10%,3,1.70%,23,13.10%,19,156,0,10.90%,89.10%,0.00%,19,20,175,11.40% +125017,936,2329,State-funded primary,176,75,101,42.60%,57.40%,1,0.60%,17,9.70%,14,162,0,8.00%,92.00%,0.00%,14,15,176,8.50% +125019,936,2335,State-funded primary,254,122,132,48.00%,52.00%,24,9.40%,27,10.60%,18,236,0,7.10%,92.90%,0.00%,30,30,254,11.80% +125021,936,5218,State-funded primary,214,109,105,50.90%,49.10%,8,3.70%,29,13.60%,13,201,0,6.10%,93.90%,0.00%,48,44,186,23.70% +125023,936,2343,State-funded primary,331,179,152,54.10%,45.90%,13,3.90%,28,8.50%,19,312,0,5.70%,94.30%,0.00%,57,59,331,17.80% +125025,936,2349,State-funded primary,535,271,264,50.70%,49.30%,40,7.50%,80,15.00%,23,512,0,4.30%,95.70%,0.00%,64,69,535,12.90% +125026,936,2350,State-funded primary,261,127,134,48.70%,51.30%,11,4.20%,26,10.00%,26,235,0,10.00%,90.00%,0.00%,37,38,261,14.60% +125028,936,2359,State-funded primary,180,77,103,42.80%,57.20%,3,1.70%,10,5.60%,23,156,1,12.80%,86.70%,0.60%,8,8,180,4.40% +125029,936,2361,State-funded primary,206,88,118,42.70%,57.30%,6,2.90%,38,18.40%,25,181,0,12.10%,87.90%,0.00%,42,43,206,20.90% +125037,936,2384,State-funded primary,256,114,142,44.50%,55.50%,9,3.50%,23,9.00%,71,183,2,27.70%,71.50%,0.80%,25,25,256,9.80% +125038,936,2385,State-funded primary,447,237,210,53.00%,47.00%,11,2.50%,80,17.90%,63,384,0,14.10%,85.90%,0.00%,50,50,410,12.20% +125042,936,2394,State-funded primary,210,99,111,47.10%,52.90%,8,3.80%,35,16.70%,22,188,0,10.50%,89.50%,0.00%,79,83,210,39.50% +125044,936,2400,State-funded primary,241,104,137,43.20%,56.80%,7,2.90%,32,13.30%,26,215,0,10.80%,89.20%,0.00%,23,23,241,9.50% +125049,936,2409,State-funded primary,159,75,84,47.20%,52.80%,4,2.50%,14,8.80%,26,133,0,16.40%,83.60%,0.00%,17,17,159,10.70% +125051,936,2415,State-funded primary,148,74,74,50.00%,50.00%,16,10.80%,15,10.10%,6,142,0,4.10%,95.90%,0.00%,27,27,148,18.20% +125052,936,2417,State-funded primary,78,38,40,48.70%,51.30%,5,6.40%,9,11.50%,9,69,0,11.50%,88.50%,0.00%,8,8,78,10.30% +125055,936,2427,State-funded primary,611,297,314,48.60%,51.40%,20,3.30%,84,13.70%,39,544,28,6.40%,89.00%,4.60%,68,68,576,11.80% +125056,936,2428,State-funded primary,507,255,252,50.30%,49.70%,8,1.60%,82,16.20%,83,424,0,16.40%,83.60%,0.00%,120,114,455,25.10% +125058,936,2430,State-funded primary,686,344,342,50.10%,49.90%,40,5.80%,81,11.80%,122,564,0,17.80%,82.20%,0.00%,135,138,650,21.20% +125060,936,2435,State-funded primary,211,96,115,45.50%,54.50%,6,2.80%,36,17.10%,10,201,0,4.70%,95.30%,0.00%,33,33,211,15.60% +125065,936,2445,State-funded primary,88,48,40,54.50%,45.50%,1,1.10%,8,9.10%,12,76,0,13.60%,86.40%,0.00%,23,23,88,26.10% +125066,936,2446,State-funded primary,717,342,375,47.70%,52.30%,10,1.40%,65,9.10%,71,645,1,9.90%,90.00%,0.10%,50,43,656,6.60% +125067,936,2448,State-funded primary,174,88,86,50.60%,49.40%,4,2.30%,12,6.90%,44,130,0,25.30%,74.70%,0.00%,12,12,174,6.90% +125068,936,2453,State-funded primary,447,221,226,49.40%,50.60%,17,3.80%,49,11.00%,95,341,11,21.30%,76.30%,2.50%,106,110,447,24.60% +125070,936,2457,State-funded primary,584,296,288,50.70%,49.30%,12,2.10%,87,14.90%,60,523,1,10.30%,89.60%,0.20%,37,38,584,6.50% +125072,936,2467,State-funded primary,237,125,112,52.70%,47.30%,8,3.40%,28,11.80%,40,197,0,16.90%,83.10%,0.00%,74,68,201,33.80% +125073,936,2468,State-funded primary,304,160,144,52.60%,47.40%,6,2.00%,54,17.80%,35,269,0,11.50%,88.50%,0.00%,49,55,304,18.10% +125075,936,2472,State-funded primary,267,132,135,49.40%,50.60%,5,1.90%,20,7.50%,37,230,0,13.90%,86.10%,0.00%,18,18,267,6.70% +125077,936,2478,State-funded primary,459,222,237,48.40%,51.60%,42,9.20%,48,10.50%,31,428,0,6.80%,93.20%,0.00%,61,61,459,13.30% +125079,936,2484,State-funded primary,360,170,190,47.20%,52.80%,11,3.10%,32,8.90%,21,339,0,5.80%,94.20%,0.00%,57,58,360,16.10% +125081,936,2491,State-funded primary,356,164,192,46.10%,53.90%,15,4.20%,55,15.40%,56,300,0,15.70%,84.30%,0.00%,47,47,356,13.20% +125083,936,2493,State-funded primary,267,143,124,53.60%,46.40%,9,3.40%,25,9.40%,16,251,0,6.00%,94.00%,0.00%,28,28,267,10.50% +125088,936,2873,State-funded primary,253,112,141,44.30%,55.70%,8,3.20%,26,10.30%,63,190,0,24.90%,75.10%,0.00%,81,58,208,27.90% +125094,936,2907,State-funded primary,338,190,148,56.20%,43.80%,14,4.10%,45,13.30%,42,293,3,12.40%,86.70%,0.90%,39,43,338,12.70% +125096,936,2912,State-funded primary,110,44,66,40.00%,60.00%,2,1.80%,8,7.30%,21,89,0,19.10%,80.90%,0.00%,6,4,75,5.30% +125104,936,2925,State-funded primary,410,193,217,47.10%,52.90%,5,1.20%,46,11.20%,66,343,1,16.10%,83.70%,0.20%,39,39,410,9.50% +125107,936,2928,State-funded primary,424,194,230,45.80%,54.20%,33,7.80%,77,18.20%,102,321,1,24.10%,75.70%,0.20%,120,123,424,29.00% +125108,936,2929,State-funded primary,355,179,176,50.40%,49.60%,8,2.30%,54,15.20%,24,331,0,6.80%,93.20%,0.00%,38,38,355,10.70% +125113,936,2937,State-funded primary,629,318,311,50.60%,49.40%,38,6.00%,58,9.20%,178,451,0,28.30%,71.70%,0.00%,145,146,629,23.20% +125116,936,2940,State-funded primary,313,152,161,48.60%,51.40%,11,3.50%,62,19.80%,49,262,2,15.70%,83.70%,0.60%,70,70,240,29.20% +125122,936,2946,State-funded primary,279,128,151,45.90%,54.10%,22,7.90%,114,40.90%,28,251,0,10.00%,90.00%,0.00%,57,50,228,21.90% +125124,936,2948,State-funded primary,453,228,225,50.30%,49.70%,16,3.50%,54,11.90%,18,435,0,4.00%,96.00%,0.00%,86,91,415,21.90% +125125,936,2949,State-funded primary,394,168,226,42.60%,57.40%,33,8.40%,53,13.50%,99,295,0,25.10%,74.90%,0.00%,178,169,351,48.10% +125126,936,2950,State-funded primary,467,249,218,53.30%,46.70%,14,3.00%,99,21.20%,204,263,0,43.70%,56.30%,0.00%,129,124,423,29.30% +125127,936,2951,State-funded primary,438,223,215,50.90%,49.10%,16,3.70%,65,14.80%,67,371,0,15.30%,84.70%,0.00%,143,136,395,34.40% +125130,936,2954,State-funded primary,452,215,237,47.60%,52.40%,26,5.80%,81,17.90%,75,377,0,16.60%,83.40%,0.00%,111,113,413,27.40% +125135,936,3002,State-funded primary,174,95,79,54.60%,45.40%,3,1.70%,26,14.90%,26,148,0,14.90%,85.10%,0.00%,36,38,174,21.80% +125137,936,3931,State-funded primary,206,93,113,45.10%,54.90%,3,1.50%,30,14.60%,16,190,0,7.80%,92.20%,0.00%,27,28,206,13.60% +125140,936,3015,State-funded primary,153,61,92,39.90%,60.10%,5,3.30%,3,2.00%,6,147,0,3.90%,96.10%,0.00%,8,8,153,5.20% +125141,936,3016,State-funded primary,374,184,190,49.20%,50.80%,21,5.60%,34,9.10%,9,365,0,2.40%,97.60%,0.00%,30,31,374,8.30% +125143,936,3022,State-funded primary,211,109,102,51.70%,48.30%,4,1.90%,21,10.00%,17,194,0,8.10%,91.90%,0.00%,12,14,211,6.60% +125145,936,3026,State-funded primary,120,62,58,51.70%,48.30%,1,0.80%,11,9.20%,13,107,0,10.80%,89.20%,0.00%,19,19,120,15.80% +125148,936,3033,State-funded primary,86,47,39,54.70%,45.30%,2,2.30%,12,14.00%,6,80,0,7.00%,93.00%,0.00%,16,16,86,18.60% +125149,936,3035,State-funded primary,76,39,37,51.30%,48.70%,2,2.60%,13,17.10%,7,69,0,9.20%,90.80%,0.00%,5,5,76,6.60% +125150,936,3042,State-funded primary,444,221,223,49.80%,50.20%,9,2.00%,36,8.10%,81,363,0,18.20%,81.80%,0.00%,45,45,400,11.30% +125151,936,3044,State-funded primary,196,91,105,46.40%,53.60%,6,3.10%,25,12.80%,10,184,2,5.10%,93.90%,1.00%,22,23,196,11.70% +125153,936,3050,State-funded primary,372,194,178,52.20%,47.80%,7,1.90%,57,15.30%,14,358,0,3.80%,96.20%,0.00%,72,67,339,19.80% +125156,936,3054,State-funded primary,205,90,115,43.90%,56.10%,19,9.30%,54,26.30%,20,185,0,9.80%,90.20%,0.00%,60,60,205,29.30% +125159,936,3060,State-funded primary,86,38,48,44.20%,55.80%,1,1.20%,12,14.00%,9,77,0,10.50%,89.50%,0.00%,3,3,86,3.50% +125160,936,3061,State-funded primary,148,74,74,50.00%,50.00%,2,1.40%,25,16.90%,41,107,0,27.70%,72.30%,0.00%,25,25,148,16.90% +125163,936,3064,State-funded primary,441,217,224,49.20%,50.80%,10,2.30%,67,15.20%,69,369,3,15.60%,83.70%,0.70%,74,76,441,17.20% +125164,936,3313,State-funded primary,457,230,227,50.30%,49.70%,14,3.10%,33,7.20%,30,426,1,6.60%,93.20%,0.20%,73,77,457,16.80% +125165,936,3314,State-funded primary,130,65,65,50.00%,50.00%,0,0.00%,9,6.90%,10,120,0,7.70%,92.30%,0.00%,10,10,130,7.70% +125167,936,3317,State-funded primary,70,32,38,45.70%,54.30%,0,0.00%,5,7.10%,7,63,0,10.00%,90.00%,0.00%,9,9,70,12.90% +125168,936,3318,State-funded primary,207,89,118,43.00%,57.00%,2,1.00%,25,12.10%,10,197,0,4.80%,95.20%,0.00%,53,58,207,28.00% +125170,936,3324,State-funded primary,59,31,28,52.50%,47.50%,0,0.00%,8,13.60%,2,51,6,3.40%,86.40%,10.20%,4,4,59,6.80% +125171,936,3327,State-funded primary,419,220,199,52.50%,47.50%,12,2.90%,43,10.30%,23,395,1,5.50%,94.30%,0.20%,44,46,419,11.00% +125173,936,3331,State-funded primary,203,105,98,51.70%,48.30%,10,4.90%,20,9.90%,37,166,0,18.20%,81.80%,0.00%,56,60,203,29.60% +125174,936,3333,State-funded primary,198,111,87,56.10%,43.90%,9,4.50%,35,17.70%,13,185,0,6.60%,93.40%,0.00%,28,29,198,14.60% +125176,936,3335,State-funded primary,216,101,115,46.80%,53.20%,9,4.20%,23,10.60%,8,208,0,3.70%,96.30%,0.00%,28,29,191,15.20% +125178,936,3340,State-funded primary,63,37,26,58.70%,41.30%,0,0.00%,4,6.30%,14,49,0,22.20%,77.80%,0.00%,1,1,63,1.60% +125179,936,3341,State-funded primary,294,151,143,51.40%,48.60%,12,4.10%,54,18.40%,33,261,0,11.20%,88.80%,0.00%,29,31,294,10.50% +125180,936,3343,State-funded primary,235,106,129,45.10%,54.90%,7,3.00%,25,10.60%,35,200,0,14.90%,85.10%,0.00%,20,25,235,10.60% +125181,936,3344,State-funded primary,62,28,34,45.20%,54.80%,1,1.60%,9,14.50%,3,59,0,4.80%,95.20%,0.00%,5,5,62,8.10% +125182,936,3345,State-funded primary,438,222,216,50.70%,49.30%,8,1.80%,53,12.10%,30,408,0,6.80%,93.20%,0.00%,49,52,438,11.90% +125183,936,3346,State-funded primary,91,40,51,44.00%,56.00%,0,0.00%,12,13.20%,2,89,0,2.20%,97.80%,0.00%,4,4,91,4.40% +125184,936,3347,State-funded primary,85,39,46,45.90%,54.10%,1,1.20%,2,2.40%,1,84,0,1.20%,98.80%,0.00%,1,1,85,1.20% +125186,936,3350,State-funded primary,238,112,126,47.10%,52.90%,9,3.80%,27,11.30%,10,228,0,4.20%,95.80%,0.00%,13,15,238,6.30% +125189,936,3357,State-funded primary,89,53,36,59.60%,40.40%,1,1.10%,8,9.00%,8,81,0,9.00%,91.00%,0.00%,1,1,89,1.10% +125190,936,3369,State-funded primary,65,37,28,56.90%,43.10%,3,4.60%,5,7.70%,6,59,0,9.20%,90.80%,0.00%,7,7,65,10.80% +125191,936,3370,State-funded primary,163,91,72,55.80%,44.20%,3,1.80%,4,2.50%,8,155,0,4.90%,95.10%,0.00%,8,9,163,5.50% +125192,936,3375,State-funded primary,71,38,33,53.50%,46.50%,3,4.20%,11,15.50%,0,71,0,0.00%,100.00%,0.00%,7,7,71,9.90% +125193,936,3376,State-funded primary,202,107,95,53.00%,47.00%,1,0.50%,8,4.00%,6,196,0,3.00%,97.00%,0.00%,19,22,202,10.90% +125194,936,3380,State-funded primary,631,318,313,50.40%,49.60%,13,2.10%,61,9.70%,15,616,0,2.40%,97.60%,0.00%,74,76,631,12.00% +125195,936,3381,State-funded primary,91,43,48,47.30%,52.70%,1,1.10%,2,2.20%,3,88,0,3.30%,96.70%,0.00%,8,9,91,9.90% +125196,936,3387,State-funded primary,418,211,207,50.50%,49.50%,13,3.10%,36,8.60%,27,387,4,6.50%,92.60%,1.00%,22,23,418,5.50% +125197,936,3405,State-funded primary,76,36,40,47.40%,52.60%,1,1.30%,6,7.90%,1,75,0,1.30%,98.70%,0.00%,6,6,76,7.90% +125198,936,3407,State-funded primary,88,41,47,46.60%,53.40%,2,2.30%,8,9.10%,22,66,0,25.00%,75.00%,0.00%,4,4,88,4.50% +125199,936,3408,State-funded primary,88,39,49,44.30%,55.70%,9,10.20%,19,21.60%,8,80,0,9.10%,90.90%,0.00%,34,34,88,38.60% +125200,936,3415,State-funded primary,313,152,161,48.60%,51.40%,15,4.80%,57,18.20%,8,305,0,2.60%,97.40%,0.00%,32,32,313,10.20% +125201,936,3416,State-funded primary,356,168,188,47.20%,52.80%,5,1.40%,41,11.50%,66,290,0,18.50%,81.50%,0.00%,34,35,356,9.80% +125202,936,3417,State-funded primary,209,97,112,46.40%,53.60%,7,3.30%,21,10.00%,10,199,0,4.80%,95.20%,0.00%,12,14,209,6.70% +125203,936,3421,State-funded primary,401,189,212,47.10%,52.90%,18,4.50%,54,13.50%,108,293,0,26.90%,73.10%,0.00%,47,48,401,12.00% +125204,936,3422,State-funded primary,175,102,73,58.30%,41.70%,4,2.30%,16,9.10%,64,111,0,36.60%,63.40%,0.00%,17,17,175,9.70% +125205,936,3423,State-funded primary,435,215,220,49.40%,50.60%,9,2.10%,35,8.00%,195,240,0,44.80%,55.20%,0.00%,31,33,435,7.60% +125209,936,3439,State-funded primary,191,96,95,50.30%,49.70%,6,3.10%,9,4.70%,36,155,0,18.80%,81.20%,0.00%,12,12,191,6.30% +125211,936,3443,State-funded primary,420,200,220,47.60%,52.40%,6,1.40%,22,5.20%,71,349,0,16.90%,83.10%,0.00%,27,29,420,6.90% +125212,936,3446,State-funded primary,326,150,176,46.00%,54.00%,3,0.90%,17,5.20%,31,295,0,9.50%,90.50%,0.00%,22,26,326,8.00% +125218,936,3468,State-funded primary,398,199,199,50.00%,50.00%,7,1.80%,57,14.30%,38,358,2,9.50%,89.90%,0.50%,38,38,373,10.20% +125219,936,3469,State-funded primary,403,205,198,50.90%,49.10%,10,2.50%,37,9.20%,30,372,1,7.40%,92.30%,0.20%,26,28,403,6.90% +125220,936,3470,State-funded primary,218,117,101,53.70%,46.30%,5,2.30%,25,11.50%,36,182,0,16.50%,83.50%,0.00%,18,19,218,8.70% +125228,936,3580,State-funded primary,390,171,219,43.80%,56.20%,7,1.80%,52,13.30%,44,346,0,11.30%,88.70%,0.00%,63,64,390,16.40% +125229,936,3581,State-funded primary,403,204,199,50.60%,49.40%,6,1.50%,51,12.70%,35,367,1,8.70%,91.10%,0.20%,32,32,403,7.90% +125230,936,3583,State-funded primary,558,257,301,46.10%,53.90%,18,3.20%,66,11.80%,34,524,0,6.10%,93.90%,0.00%,80,82,558,14.70% +125231,936,3585,State-funded primary,108,62,46,57.40%,42.60%,0,0.00%,13,12.00%,4,104,0,3.70%,96.30%,0.00%,9,9,82,11.00% +125234,936,3916,State-funded primary,626,314,312,50.20%,49.80%,15,2.40%,51,8.10%,297,329,0,47.40%,52.60%,0.00%,50,50,626,8.00% +125238,936,3920,State-funded primary,632,306,326,48.40%,51.60%,9,1.40%,63,10.00%,272,360,0,43.00%,57.00%,0.00%,27,28,632,4.40% +125242,936,3924,State-funded primary,400,190,210,47.50%,52.50%,12,3.00%,26,6.50%,27,373,0,6.80%,93.30%,0.00%,33,33,400,8.30% +125243,936,3925,State-funded primary,119,60,59,50.40%,49.60%,2,1.70%,20,16.80%,4,115,0,3.40%,96.60%,0.00%,10,7,71,9.90% +125245,936,3927,State-funded primary,182,93,89,51.10%,48.90%,4,2.20%,11,6.00%,6,176,0,3.30%,96.70%,0.00%,7,8,182,4.40% +125246,936,3928,State-funded primary,73,35,38,47.90%,52.10%,2,2.70%,29,39.70%,1,72,0,1.40%,98.60%,0.00%,7,7,73,9.60% +125259,936,4162,State-funded secondary,770,380,390,49.40%,50.60%,22,2.90%,149,19.40%,35,735,0,4.50%,95.50%,0.00%,68,108,770,14.00% +125271,936,4463,State-funded secondary,1102,557,545,50.50%,49.50%,18,1.60%,163,14.80%,120,982,0,10.90%,89.10%,0.00%,185,211,1102,19.10% +125273,936,4465,State-funded secondary,1516,722,794,47.60%,52.40%,23,1.50%,302,19.90%,131,1385,0,8.60%,91.40%,0.00%,233,282,1516,18.60% +125275,936,4611,State-funded secondary,1518,729,789,48.00%,52.00%,27,1.80%,59,3.90%,253,1265,0,16.70%,83.30%,0.00%,49,73,1211,6.00% +125278,936,4622,State-funded secondary,1922,1009,913,52.50%,47.50%,41,2.10%,27,1.40%,205,1625,92,10.70%,84.50%,4.80%,115,133,1618,8.20% +125279,936,4623,State-funded secondary,1097,535,562,48.80%,51.20%,35,3.20%,112,10.20%,103,994,0,9.40%,90.60%,0.00%,72,83,897,9.30% +125281,936,4765,State-funded secondary,645,316,329,49.00%,51.00%,34,5.30%,137,21.20%,44,601,0,6.80%,93.20%,0.00%,120,132,645,20.50% +125284,936,5202,State-funded primary,211,101,110,47.90%,52.10%,8,3.80%,14,6.60%,14,197,0,6.60%,93.40%,0.00%,22,22,211,10.40% +125288,936,5206,State-funded primary,381,200,181,52.50%,47.50%,6,1.60%,36,9.40%,93,286,2,24.40%,75.10%,0.50%,28,28,381,7.30% +125289,936,5207,State-funded primary,382,186,196,48.70%,51.30%,9,2.40%,49,12.80%,35,345,2,9.20%,90.30%,0.50%,57,60,382,15.70% +125292,936,5210,State-funded primary,437,211,226,48.30%,51.70%,7,1.60%,51,11.70%,29,408,0,6.60%,93.40%,0.00%,89,83,405,20.50% +125293,936,5211,State-funded primary,417,213,204,51.10%,48.90%,21,5.00%,56,13.40%,20,397,0,4.80%,95.20%,0.00%,56,59,417,14.10% +125296,936,5214,State-funded primary,407,190,217,46.70%,53.30%,15,3.70%,40,9.80%,23,383,1,5.70%,94.10%,0.20%,20,20,407,4.90% +125298,936,5216,State-funded primary,272,124,148,45.60%,54.40%,7,2.60%,37,13.60%,106,166,0,39.00%,61.00%,0.00%,23,25,272,9.20% +125299,936,5217,State-funded primary,431,208,223,48.30%,51.70%,20,4.60%,49,11.40%,84,347,0,19.50%,80.50%,0.00%,39,39,431,9.00% +125314,936,5414,State-funded secondary,1504,736,768,48.90%,51.10%,20,1.30%,144,9.60%,337,1167,0,22.40%,77.60%,0.00%,213,249,1504,16.60% +125315,936,5415,State-funded secondary,1412,694,718,49.20%,50.80%,23,1.60%,170,12.00%,197,1214,1,14.00%,86.00%,0.10%,87,92,1219,7.50% +125317,936,6000,Independent school,337,166,171,49.30%,50.70%,3,0.90%,55,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125318,936,6001,Independent school,244,85,159,34.80%,65.20%,3,1.20%,75,30.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125320,936,6004,Independent school,849,849,0,100.00%,0.00%,2,0.20%,142,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125321,936,6009,Independent school,797,100,697,12.50%,87.50%,4,0.50%,189,23.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125322,936,6010,Independent school,421,421,0,100.00%,0.00%,0,0.00%,154,36.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125323,936,6017,Independent school,1016,415,601,40.80%,59.20%,2,0.20%,364,35.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125326,936,6020,Independent school,265,13,252,4.90%,95.10%,0,0.00%,38,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125328,936,6024,Independent school,384,167,217,43.50%,56.50%,0,0.00%,82,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125329,936,6026,Independent school,250,25,225,10.00%,90.00%,34,13.60%,66,26.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125331,936,6028,Independent school,164,74,90,45.10%,54.90%,1,0.60%,9,5.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125332,936,6030,Independent school,1097,484,613,44.10%,55.90%,2,0.20%,203,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125333,936,6031,Independent school,300,300,0,100.00%,0.00%,3,1.00%,52,17.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125334,936,6032,Independent school,1098,542,556,49.40%,50.60%,1,0.10%,152,13.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125335,936,6034,Independent school,278,61,217,21.90%,78.10%,1,0.40%,39,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125336,936,6036,Independent school,317,122,195,38.50%,61.50%,1,0.30%,54,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125337,936,6037,Independent school,367,167,200,45.50%,54.50%,0,0.00%,63,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125338,936,6038,Independent school,499,233,266,46.70%,53.30%,0,0.00%,172,34.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125340,936,6041,Independent school,935,304,631,32.50%,67.50%,0,0.00%,193,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125341,936,6042,Independent school,268,159,109,59.30%,40.70%,10,3.70%,46,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125342,936,6046,Independent school,1002,1002,0,100.00%,0.00%,1,0.10%,102,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125344,936,6049,Independent school,146,108,38,74.00%,26.00%,1,0.70%,16,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125345,936,6050,Independent school,787,787,0,100.00%,0.00%,1,0.10%,133,16.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125346,936,6052,Independent school,338,131,207,38.80%,61.20%,1,0.30%,63,18.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125347,936,6053,Independent school,541,214,327,39.60%,60.40%,5,0.90%,102,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125348,936,6054,Independent school,315,162,153,51.40%,48.60%,4,1.30%,78,24.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125349,936,6061,Independent school,944,458,486,48.50%,51.50%,1,0.10%,108,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125351,936,6065,Independent school,661,270,391,40.80%,59.20%,1,0.20%,132,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125352,936,6068,Independent school,278,269,9,96.80%,3.20%,4,1.40%,49,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125353,936,6070,Independent school,839,377,462,44.90%,55.10%,2,0.20%,254,30.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125355,936,6076,Independent school,504,234,270,46.40%,53.60%,1,0.20%,68,13.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125356,936,6078,Independent school,473,220,253,46.50%,53.50%,0,0.00%,137,29.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125357,936,6080,Independent school,235,129,106,54.90%,45.10%,0,0.00%,39,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125359,936,6090,Independent school,497,227,270,45.70%,54.30%,0,0.00%,52,10.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125360,936,6091,Independent school,142,68,74,47.90%,52.10%,3,2.10%,12,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125361,936,6092,Independent school,1038,422,616,40.70%,59.30%,1,0.10%,183,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125364,936,6102,Independent school,83,0,83,0.00%,100.00%,1,1.20%,21,25.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125365,936,6103,Independent school,437,140,297,32.00%,68.00%,0,0.00%,102,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125366,936,6104,Independent school,235,91,144,38.70%,61.30%,0,0.00%,61,26.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125367,936,6109,Independent school,316,106,210,33.50%,66.50%,0,0.00%,47,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125368,936,6110,Independent school,229,58,171,25.30%,74.70%,0,0.00%,46,20.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125369,936,6111,Independent school,613,613,0,100.00%,0.00%,0,0.00%,128,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125370,936,6132,Independent school,110,58,52,52.70%,47.30%,0,0.00%,20,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125372,936,6139,Independent school,152,79,73,52.00%,48.00%,3,2.00%,7,4.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125374,936,6161,Independent school,84,8,76,9.50%,90.50%,0,0.00%,4,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125375,936,6163,Independent school,467,467,0,100.00%,0.00%,2,0.40%,137,29.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125376,936,6175,Independent school,191,76,115,39.80%,60.20%,1,0.50%,69,36.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125377,936,6181,Independent school,126,60,66,47.60%,52.40%,1,0.80%,25,19.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125378,936,6199,Independent school,51,25,26,49.00%,51.00%,0,0.00%,3,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125380,936,6203,Independent school,694,196,498,28.20%,71.80%,10,1.40%,17,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125382,936,6231,Independent school,127,89,38,70.10%,29.90%,0,0.00%,4,3.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125385,936,6251,Independent school,180,81,99,45.00%,55.00%,101,56.10%,79,43.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125386,936,6252,Independent school,579,267,312,46.10%,53.90%,1,0.20%,41,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125387,936,6255,Independent school,930,447,483,48.10%,51.90%,6,0.60%,344,37.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125388,936,6259,Independent school,404,153,251,37.90%,62.10%,0,0.00%,1,0.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125389,936,6272,Independent school,704,305,399,43.30%,56.70%,0,0.00%,68,9.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125391,936,6307,Independent school,175,72,103,41.10%,58.90%,1,0.60%,54,30.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125392,936,6308,Independent school,274,128,146,46.70%,53.30%,1,0.40%,49,17.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125393,936,6315,Independent school,269,118,151,43.90%,56.10%,1,0.40%,46,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125394,936,6347,Independent school,282,122,160,43.30%,56.70%,1,0.40%,80,28.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125397,936,6395,Independent school,474,150,324,31.60%,68.40%,6,1.30%,56,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125399,936,6401,Independent school,345,147,198,42.60%,57.40%,3,0.90%,51,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125400,936,6402,Independent school,167,167,0,100.00%,0.00%,0,0.00%,11,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125402,936,6418,Independent school,644,644,0,100.00%,0.00%,1,0.20%,150,23.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125403,936,6420,Independent school,474,0,474,0.00%,100.00%,315,66.50%,159,33.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125404,936,6422,Independent school,214,0,214,0.00%,100.00%,2,0.90%,22,10.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125405,936,6435,Independent school,108,49,59,45.40%,54.60%,1,0.90%,8,7.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125406,936,6438,Independent school,265,124,141,46.80%,53.20%,0,0.00%,69,26.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125407,936,6444,Independent school,415,136,279,32.80%,67.20%,0,0.00%,55,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125411,936,6503,Independent school,449,4,445,0.90%,99.10%,3,0.70%,162,36.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125414,936,6510,Independent school,305,146,159,47.90%,52.10%,3,1.00%,34,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125416,936,6519,Independent school,502,45,457,9.00%,91.00%,0,0.00%,80,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125420,936,6528,Independent school,112,52,60,46.40%,53.60%,0,0.00%,14,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125421,936,6529,Independent school,1292,625,667,48.40%,51.60%,5,0.40%,238,18.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125422,936,6531,Independent school,1489,731,758,49.10%,50.90%,1,0.10%,217,14.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125423,936,6532,Independent school,654,371,283,56.70%,43.30%,0,0.00%,120,18.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125424,936,6534,Independent school,1313,0,1313,0.00%,100.00%,0,0.00%,156,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125425,936,6535,Independent school,573,573,0,100.00%,0.00%,1,0.20%,70,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125427,936,6538,Independent school,999,466,533,46.60%,53.40%,0,0.00%,228,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125428,936,6539,Independent school,87,44,43,50.60%,49.40%,0,0.00%,3,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125429,936,6543,Independent school,116,92,24,79.30%,20.70%,1,0.90%,41,35.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125432,936,6548,Independent school,65,32,33,49.20%,50.80%,1,1.50%,3,4.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125435,936,6552,Independent school,102,46,56,45.10%,54.90%,5,4.90%,11,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125436,936,6554,Independent school,62,24,38,38.70%,61.30%,61,98.40%,1,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125437,936,6556,Independent school,193,85,108,44.00%,56.00%,2,1.00%,21,10.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125442,936,6564,Independent school,355,233,122,65.60%,34.40%,1,0.30%,110,31.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125443,936,6566,Independent school,627,296,331,47.20%,52.80%,2,0.30%,98,15.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125444,936,6567,Independent school,276,137,139,49.60%,50.40%,0,0.00%,33,12.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125447,936,6570,Independent school,239,224,15,93.70%,6.30%,0,0.00%,43,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125452,936,7003,State-funded special school,125,61,64,48.80%,51.20%,125,100.00%,0,0.00%,4,121,0,3.20%,96.80%,0.00%,50,50,125,40.00% +125453,936,7005,Non-maintained special school,62,13,49,21.00%,79.00%,62,100.00%,0,0.00%,4,58,0,6.50%,93.50%,0.00%,0,15,48,31.30% +125454,936,7007,Non-maintained special school,208,71,137,34.10%,65.90%,205,98.60%,3,1.40%,4,204,0,1.90%,98.10%,0.00%,9,31,146,21.20% +125456,936,7011,Non-maintained special school,73,21,52,28.80%,71.20%,73,100.00%,0,0.00%,5,68,0,6.80%,93.20%,0.00%,21,23,54,42.60% +125458,936,7014,State-funded special school,87,0,87,0.00%,100.00%,87,100.00%,0,0.00%,1,86,0,1.10%,98.90%,0.00%,22,27,87,31.00% +125459,936,7019,State-funded special school,94,94,0,100.00%,0.00%,94,100.00%,0,0.00%,0,94,0,0.00%,100.00%,0.00%,15,18,94,19.10% +125468,936,7043,State-funded special school,87,34,53,39.10%,60.90%,87,100.00%,0,0.00%,14,73,0,16.10%,83.90%,0.00%,24,19,61,31.10% +125469,936,7048,State-funded special school,106,38,68,35.80%,64.20%,98,92.50%,8,7.50%,18,88,0,17.00%,83.00%,0.00%,28,22,90,24.40% +125470,936,7049,State-funded special school,80,32,48,40.00%,60.00%,80,100.00%,0,0.00%,11,69,0,13.80%,86.30%,0.00%,21,17,56,30.40% +125472,936,7051,State-funded special school,166,48,118,28.90%,71.10%,162,97.60%,4,2.40%,20,146,0,12.00%,88.00%,0.00%,54,54,162,33.30% +125473,936,7053,State-funded special school,148,43,105,29.10%,70.90%,140,94.60%,8,5.40%,35,113,0,23.60%,76.40%,0.00%,51,49,141,34.80% +125474,936,7056,State-funded special school,124,37,87,29.80%,70.20%,120,96.80%,4,3.20%,21,103,0,16.90%,83.10%,0.00%,38,34,110,30.90% +125477,936,7062,State-funded special school,218,45,173,20.60%,79.40%,218,100.00%,0,0.00%,36,182,0,16.50%,83.50%,0.00%,58,54,192,28.10% +125478,936,7063,Non-maintained special school,76,22,54,28.90%,71.10%,75,98.70%,1,1.30%,0,76,0,0.00%,100.00%,0.00%,13,17,76,22.40% +125480,936,7065,State-funded special school,201,86,115,42.80%,57.20%,201,100.00%,0,0.00%,20,181,0,10.00%,90.00%,0.00%,80,70,156,44.90% +125481,936,7066,State-funded special school,158,56,102,35.40%,64.60%,158,100.00%,0,0.00%,8,149,1,5.10%,94.30%,0.60%,60,66,138,47.80% +125484,937,1000,State-funded nursery,63,32,31,50.80%,49.20%,0,0.00%,19,30.20%,6,57,0,9.50%,90.50%,0.00%,0,0,0,0.00% +125486,937,1002,State-funded nursery,71,34,37,47.90%,52.10%,1,1.40%,16,22.50%,12,59,0,16.90%,83.10%,0.00%,0,0,0,0.00% +125487,937,1003,State-funded nursery,72,35,37,48.60%,51.40%,3,4.20%,11,15.30%,17,55,0,23.60%,76.40%,0.00%,0,0,0,0.00% +125488,937,1020,State-funded nursery,59,31,28,52.50%,47.50%,0,0.00%,17,28.80%,7,52,0,11.90%,88.10%,0.00%,0,0,0,0.00% +125490,937,1022,State-funded nursery,71,37,34,52.10%,47.90%,4,5.60%,5,7.00%,13,58,0,18.30%,81.70%,0.00%,5,0,0,0.00% +125491,937,1041,State-funded nursery,65,33,32,50.80%,49.20%,1,1.50%,9,13.80%,17,48,0,26.20%,73.80%,0.00%,0,0,0,0.00% +125500,937,2001,State-funded primary,109,53,56,48.60%,51.40%,2,1.80%,33,30.30%,8,101,0,7.30%,92.70%,0.00%,38,37,95,38.90% +125507,937,2017,State-funded primary,202,107,95,53.00%,47.00%,1,0.50%,23,11.40%,0,202,0,0.00%,100.00%,0.00%,6,6,202,3.00% +125510,937,2021,State-funded primary,216,115,101,53.20%,46.80%,2,0.90%,21,9.70%,58,158,0,26.90%,73.10%,0.00%,34,35,216,16.20% +125511,937,2024,State-funded primary,70,36,34,51.40%,48.60%,2,2.90%,12,17.10%,3,67,0,4.30%,95.70%,0.00%,14,14,70,20.00% +125512,937,2028,State-funded primary,580,270,310,46.60%,53.40%,10,1.70%,79,13.60%,29,551,0,5.00%,95.00%,0.00%,181,184,580,31.70% +125513,937,2029,State-funded primary,270,138,132,51.10%,48.90%,3,1.10%,19,7.00%,20,250,0,7.40%,92.60%,0.00%,90,91,270,33.70% +125515,937,2032,State-funded primary,198,100,98,50.50%,49.50%,2,1.00%,61,30.80%,1,188,9,0.50%,94.90%,4.50%,68,68,198,34.30% +125519,937,2043,State-funded primary,222,101,121,45.50%,54.50%,5,2.30%,53,23.90%,26,196,0,11.70%,88.30%,0.00%,47,47,211,22.30% +125521,937,2046,State-funded primary,98,43,55,43.90%,56.10%,3,3.10%,26,26.50%,2,96,0,2.00%,98.00%,0.00%,18,18,98,18.40% +125525,937,2052,State-funded primary,380,185,195,48.70%,51.30%,6,1.60%,34,8.90%,71,305,4,18.70%,80.30%,1.10%,150,152,380,40.00% +125526,937,2053,State-funded primary,416,206,210,49.50%,50.50%,8,1.90%,30,7.20%,55,361,0,13.20%,86.80%,0.00%,66,67,416,16.10% +125528,937,2058,State-funded primary,260,143,117,55.00%,45.00%,6,2.30%,28,10.80%,6,254,0,2.30%,97.70%,0.00%,23,22,228,9.60% +125530,937,2064,State-funded primary,77,40,37,51.90%,48.10%,5,6.50%,29,37.70%,8,69,0,10.40%,89.60%,0.00%,42,39,69,56.50% +125537,937,2103,State-funded primary,231,113,118,48.90%,51.10%,8,3.50%,14,6.10%,136,95,0,58.90%,41.10%,0.00%,58,53,178,29.80% +125539,937,2107,State-funded primary,167,93,74,55.70%,44.30%,0,0.00%,14,8.40%,11,156,0,6.60%,93.40%,0.00%,34,34,167,20.40% +125545,937,2123,State-funded primary,268,124,144,46.30%,53.70%,4,1.50%,32,11.90%,15,253,0,5.60%,94.40%,0.00%,36,36,268,13.40% +125550,937,2307,State-funded primary,152,78,74,51.30%,48.70%,1,0.70%,9,5.90%,8,144,0,5.30%,94.70%,0.00%,5,5,152,3.30% +125551,937,2308,State-funded primary,217,87,130,40.10%,59.90%,3,1.40%,19,8.80%,20,197,0,9.20%,90.80%,0.00%,7,7,217,3.20% +125552,937,2309,State-funded primary,260,121,139,46.50%,53.50%,7,2.70%,25,9.60%,23,237,0,8.80%,91.20%,0.00%,20,22,260,8.50% +125554,937,2312,State-funded primary,224,93,131,41.50%,58.50%,6,2.70%,18,8.00%,32,191,1,14.30%,85.30%,0.40%,28,28,208,13.50% +125556,937,2315,State-funded primary,357,204,153,57.10%,42.90%,2,0.60%,35,9.80%,29,328,0,8.10%,91.90%,0.00%,45,47,357,13.20% +125559,937,2322,State-funded primary,189,87,102,46.00%,54.00%,6,3.20%,40,21.20%,34,155,0,18.00%,82.00%,0.00%,57,57,189,30.20% +125560,937,2324,State-funded primary,361,174,187,48.20%,51.80%,11,3.00%,59,16.30%,89,272,0,24.70%,75.30%,0.00%,115,117,361,32.40% +125561,937,2325,State-funded primary,367,181,186,49.30%,50.70%,7,1.90%,59,16.10%,34,333,0,9.30%,90.70%,0.00%,68,70,367,19.10% +125562,937,2326,State-funded primary,261,133,128,51.00%,49.00%,2,0.80%,16,6.10%,6,255,0,2.30%,97.70%,0.00%,24,24,261,9.20% +125563,937,2327,State-funded primary,267,121,146,45.30%,54.70%,8,3.00%,26,9.70%,98,168,1,36.70%,62.90%,0.40%,35,35,267,13.10% +125565,937,2330,State-funded primary,412,202,210,49.00%,51.00%,2,0.50%,16,3.90%,51,361,0,12.40%,87.60%,0.00%,39,39,412,9.50% +125566,937,2332,State-funded primary,175,91,84,52.00%,48.00%,9,5.10%,39,22.30%,26,149,0,14.90%,85.10%,0.00%,38,39,175,22.30% +125570,937,2405,State-funded primary,542,273,269,50.40%,49.60%,5,0.90%,52,9.60%,127,415,0,23.40%,76.60%,0.00%,156,159,524,30.30% +125573,937,2410,State-funded primary,179,93,86,52.00%,48.00%,1,0.60%,18,10.10%,30,149,0,16.80%,83.20%,0.00%,18,18,179,10.10% +125575,937,2415,State-funded primary,209,98,111,46.90%,53.10%,6,2.90%,15,7.20%,51,158,0,24.40%,75.60%,0.00%,31,31,209,14.80% +125576,937,2417,State-funded primary,208,104,104,50.00%,50.00%,7,3.40%,24,11.50%,90,118,0,43.30%,56.70%,0.00%,84,88,208,42.30% +125579,937,2420,State-funded primary,166,80,86,48.20%,51.80%,6,3.60%,5,3.00%,34,132,0,20.50%,79.50%,0.00%,39,39,166,23.50% +125580,937,2421,State-funded primary,263,132,131,50.20%,49.80%,12,4.60%,28,10.60%,46,216,1,17.50%,82.10%,0.40%,59,60,263,22.80% +125581,937,2423,State-funded primary,167,77,90,46.10%,53.90%,4,2.40%,23,13.80%,13,154,0,7.80%,92.20%,0.00%,21,21,167,12.60% +125584,937,2569,State-funded primary,207,104,103,50.20%,49.80%,5,2.40%,22,10.60%,8,199,0,3.90%,96.10%,0.00%,28,30,207,14.50% +125585,937,2571,State-funded primary,162,79,83,48.80%,51.20%,5,3.10%,34,21.00%,56,106,0,34.60%,65.40%,0.00%,66,66,162,40.70% +125591,937,2581,State-funded primary,361,161,200,44.60%,55.40%,5,1.40%,70,19.40%,18,343,0,5.00%,95.00%,0.00%,66,68,361,18.80% +125595,937,2585,State-funded primary,269,134,135,49.80%,50.20%,4,1.50%,45,16.70%,31,238,0,11.50%,88.50%,0.00%,66,67,269,24.90% +125598,937,2590,State-funded primary,478,239,239,50.00%,50.00%,7,1.50%,75,15.70%,141,337,0,29.50%,70.50%,0.00%,135,143,478,29.90% +125603,937,2598,State-funded primary,250,119,131,47.60%,52.40%,3,1.20%,21,8.40%,71,179,0,28.40%,71.60%,0.00%,55,53,198,26.80% +125605,937,2601,State-funded primary,333,173,160,52.00%,48.00%,4,1.20%,74,22.20%,35,298,0,10.50%,89.50%,0.00%,97,98,333,29.40% +125607,937,2603,State-funded primary,241,107,134,44.40%,55.60%,5,2.10%,29,12.00%,54,187,0,22.40%,77.60%,0.00%,93,95,241,39.40% +125609,937,2605,State-funded primary,211,104,107,49.30%,50.70%,7,3.30%,23,10.90%,12,199,0,5.70%,94.30%,0.00%,11,11,211,5.20% +125610,937,2606,State-funded primary,324,146,178,45.10%,54.90%,8,2.50%,17,5.20%,48,276,0,14.80%,85.20%,0.00%,20,21,324,6.50% +125616,937,2614,State-funded primary,143,61,82,42.70%,57.30%,6,4.20%,45,31.50%,18,125,0,12.60%,87.40%,0.00%,52,54,143,37.80% +125618,937,2616,State-funded primary,196,95,101,48.50%,51.50%,3,1.50%,21,10.70%,59,137,0,30.10%,69.90%,0.00%,28,28,147,19.00% +125620,937,2618,State-funded primary,323,161,162,49.80%,50.20%,14,4.30%,28,8.70%,5,318,0,1.50%,98.50%,0.00%,49,52,323,16.10% +125623,937,3002,State-funded primary,211,103,108,48.80%,51.20%,3,1.40%,33,15.60%,3,208,0,1.40%,98.60%,0.00%,29,31,211,14.70% +125625,937,3011,State-funded primary,315,163,152,51.70%,48.30%,3,1.00%,43,13.70%,17,298,0,5.40%,94.60%,0.00%,67,68,315,21.60% +125631,937,3024,State-funded primary,198,102,96,51.50%,48.50%,9,4.50%,14,7.10%,5,193,0,2.50%,97.50%,0.00%,26,27,198,13.60% +125635,937,3031,State-funded primary,88,37,51,42.00%,58.00%,3,3.40%,24,27.30%,2,86,0,2.30%,97.70%,0.00%,27,29,88,33.00% +125637,937,3035,State-funded primary,117,60,57,51.30%,48.70%,0,0.00%,18,15.40%,0,117,0,0.00%,100.00%,0.00%,9,9,117,7.70% +125639,937,3040,State-funded primary,40,25,15,62.50%,37.50%,0,0.00%,9,22.50%,1,39,0,2.50%,97.50%,0.00%,14,14,40,35.00% +125640,937,3041,State-funded primary,116,43,73,37.10%,62.90%,3,2.60%,7,6.00%,3,113,0,2.60%,97.40%,0.00%,10,13,116,11.20% +125646,937,3057,State-funded primary,84,50,34,59.50%,40.50%,0,0.00%,20,23.80%,6,78,0,7.10%,92.90%,0.00%,25,25,84,29.80% +125653,937,3101,State-funded primary,245,116,129,47.30%,52.70%,9,3.70%,64,26.10%,46,199,0,18.80%,81.20%,0.00%,101,103,207,49.80% +125654,937,3103,State-funded primary,205,102,103,49.80%,50.20%,7,3.40%,14,6.80%,71,134,0,34.60%,65.40%,0.00%,58,58,179,32.40% +125656,937,3106,State-funded primary,433,215,218,49.70%,50.30%,9,2.10%,52,12.00%,47,386,0,10.90%,89.10%,0.00%,95,97,409,23.70% +125657,937,3141,State-funded primary,210,107,103,51.00%,49.00%,2,1.00%,19,9.00%,10,200,0,4.80%,95.20%,0.00%,33,33,210,15.70% +125660,937,3144,State-funded primary,204,94,110,46.10%,53.90%,6,2.90%,16,7.80%,6,198,0,2.90%,97.10%,0.00%,24,26,204,12.70% +125661,937,3146,State-funded primary,420,205,215,48.80%,51.20%,3,0.70%,38,9.00%,62,358,0,14.80%,85.20%,0.00%,27,30,420,7.10% +125662,937,3147,State-funded primary,170,91,79,53.50%,46.50%,3,1.80%,14,8.20%,4,166,0,2.40%,97.60%,0.00%,23,25,170,14.70% +125665,937,3152,State-funded primary,209,108,101,51.70%,48.30%,4,1.90%,13,6.20%,11,198,0,5.30%,94.70%,0.00%,31,31,209,14.80% +125666,937,3154,State-funded primary,208,104,104,50.00%,50.00%,7,3.40%,47,22.60%,32,176,0,15.40%,84.60%,0.00%,50,51,208,24.50% +125667,937,3157,State-funded primary,358,182,176,50.80%,49.20%,11,3.10%,64,17.90%,116,242,0,32.40%,67.60%,0.00%,51,53,358,14.80% +125670,937,3177,State-funded primary,226,113,113,50.00%,50.00%,2,0.90%,31,13.70%,44,182,0,19.50%,80.50%,0.00%,20,21,226,9.30% +125676,937,3192,State-funded primary,219,101,118,46.10%,53.90%,3,1.40%,27,12.30%,12,207,0,5.50%,94.50%,0.00%,27,27,194,13.90% +125677,937,3193,State-funded primary,182,90,92,49.50%,50.50%,4,2.20%,25,13.70%,20,162,0,11.00%,89.00%,0.00%,21,26,182,14.30% +125681,937,3204,State-funded primary,405,199,206,49.10%,50.90%,7,1.70%,38,9.40%,69,328,8,17.00%,81.00%,2.00%,70,70,405,17.30% +125682,937,3205,State-funded primary,420,214,206,51.00%,49.00%,11,2.60%,85,20.20%,57,363,0,13.60%,86.40%,0.00%,79,84,420,20.00% +125684,937,3207,State-funded primary,200,106,94,53.00%,47.00%,1,0.50%,39,19.50%,2,198,0,1.00%,99.00%,0.00%,34,34,200,17.00% +125689,937,3302,State-funded primary,624,322,302,51.60%,48.40%,5,0.80%,53,8.50%,30,594,0,4.80%,95.20%,0.00%,114,116,624,18.60% +125693,937,5205,State-funded primary,96,48,48,50.00%,50.00%,2,2.10%,15,15.60%,5,91,0,5.20%,94.80%,0.00%,13,13,96,13.50% +125696,937,3313,State-funded primary,73,38,35,52.10%,47.90%,0,0.00%,11,15.10%,6,67,0,8.20%,91.80%,0.00%,11,11,73,15.10% +125701,937,3371,State-funded primary,331,163,168,49.20%,50.80%,9,2.70%,36,10.90%,65,265,1,19.60%,80.10%,0.30%,68,68,310,21.90% +125703,937,3391,State-funded primary,257,125,132,48.60%,51.40%,6,2.30%,28,10.90%,15,242,0,5.80%,94.20%,0.00%,25,25,257,9.70% +125708,937,3505,State-funded primary,155,72,83,46.50%,53.50%,1,0.60%,25,16.10%,15,140,0,9.70%,90.30%,0.00%,45,43,142,30.30% +125714,937,3542,State-funded primary,103,58,45,56.30%,43.70%,1,1.00%,5,4.90%,21,80,2,20.40%,77.70%,1.90%,6,6,103,5.80% +125715,937,3543,State-funded primary,201,104,97,51.70%,48.30%,2,1.00%,38,18.90%,98,103,0,48.80%,51.20%,0.00%,53,54,201,26.90% +125716,937,3544,State-funded primary,219,100,119,45.70%,54.30%,4,1.80%,42,19.20%,103,116,0,47.00%,53.00%,0.00%,24,25,207,12.10% +125717,937,3545,State-funded primary,120,68,52,56.70%,43.30%,1,0.80%,12,10.00%,55,62,3,45.80%,51.70%,2.50%,31,31,120,25.80% +125719,937,3547,State-funded primary,205,102,103,49.80%,50.20%,2,1.00%,25,12.20%,26,179,0,12.70%,87.30%,0.00%,39,39,205,19.00% +125721,937,3561,State-funded primary,108,54,54,50.00%,50.00%,1,0.90%,8,7.40%,3,105,0,2.80%,97.20%,0.00%,15,15,102,14.70% +125729,937,3587,State-funded primary,211,107,104,50.70%,49.30%,2,0.90%,23,10.90%,5,205,1,2.40%,97.20%,0.50%,26,26,211,12.30% +125760,937,5201,State-funded primary,82,48,34,58.50%,41.50%,1,1.20%,9,11.00%,0,82,0,0.00%,100.00%,0.00%,2,2,82,2.40% +125761,937,5202,State-funded primary,194,97,97,50.00%,50.00%,11,5.70%,24,12.40%,85,108,1,43.80%,55.70%,0.50%,70,70,194,36.10% +125762,937,5203,State-funded primary,100,55,45,55.00%,45.00%,1,1.00%,14,14.00%,0,100,0,0.00%,100.00%,0.00%,17,18,100,18.00% +125763,937,5204,State-funded primary,179,92,87,51.40%,48.60%,2,1.10%,17,9.50%,31,148,0,17.30%,82.70%,0.00%,20,20,179,11.20% +125764,937,5400,State-funded secondary,1096,572,524,52.20%,47.80%,23,2.10%,158,14.40%,252,840,4,23.00%,76.60%,0.40%,336,353,1096,32.20% +125772,937,6001,Independent school,317,143,174,45.10%,54.90%,5,1.60%,50,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125773,937,6002,Independent school,380,148,232,38.90%,61.10%,2,0.50%,53,13.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125774,937,6004,Independent school,409,167,242,40.80%,59.20%,5,1.20%,29,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125775,937,6005,Independent school,303,294,9,97.00%,3.00%,2,0.70%,47,15.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125777,937,6010,Independent school,862,378,484,43.90%,56.10%,0,0.00%,106,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125778,937,6016,Independent school,374,182,192,48.70%,51.30%,2,0.50%,40,10.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125780,937,6019,Independent school,494,345,149,69.80%,30.20%,1,0.20%,39,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125781,937,6020,Independent school,1243,0,1243,0.00%,100.00%,2,0.20%,83,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125784,937,6041,Independent school,184,104,80,56.50%,43.50%,0,0.00%,17,9.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125787,937,6084,Independent school,924,406,518,43.90%,56.10%,2,0.20%,258,27.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125788,937,6089,Independent school,794,794,0,100.00%,0.00%,0,0.00%,118,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125790,937,6092,Independent school,62,16,46,25.80%,74.20%,62,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125791,937,6094,Independent school,62,21,41,33.90%,66.10%,0,0.00%,6,9.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125794,937,7000,State-funded special school,253,83,170,32.80%,67.20%,253,100.00%,0,0.00%,11,240,2,4.30%,94.90%,0.80%,81,85,227,37.40% +125805,937,7028,State-funded special school,278,67,211,24.10%,75.90%,278,100.00%,0,0.00%,26,252,0,9.40%,90.60%,0.00%,91,82,233,35.20% +125807,938,1000,State-funded nursery,144,68,76,47.20%,52.80%,1,0.70%,39,27.10%,45,99,0,31.30%,68.80%,0.00%,0,0,0,0.00% +125808,938,1001,State-funded nursery,112,46,66,41.10%,58.90%,2,1.80%,30,26.80%,16,96,0,14.30%,85.70%,0.00%,0,0,1,0.00% +125809,938,1003,State-funded nursery,149,55,94,36.90%,63.10%,2,1.30%,19,12.80%,21,128,0,14.10%,85.90%,0.00%,1,0,2,0.00% +125810,938,1004,State-funded nursery,121,68,53,56.20%,43.80%,0,0.00%,34,28.10%,5,116,0,4.10%,95.90%,0.00%,1,0,0,0.00% +125814,895,6000,Independent school,3,0,3,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +125816,938,2000,State-funded primary,213,102,111,47.90%,52.10%,2,0.90%,22,10.30%,8,205,0,3.80%,96.20%,0.00%,18,18,213,8.50% +125819,938,2009,State-funded primary,199,98,101,49.20%,50.80%,4,2.00%,19,9.50%,7,192,0,3.50%,96.50%,0.00%,9,11,199,5.50% +125820,938,2010,State-funded primary,409,193,216,47.20%,52.80%,6,1.50%,38,9.30%,16,393,0,3.90%,96.10%,0.00%,51,55,409,13.40% +125821,938,2011,State-funded primary,214,103,111,48.10%,51.90%,2,0.90%,35,16.40%,7,207,0,3.30%,96.70%,0.00%,7,7,214,3.30% +125825,938,2015,State-funded primary,139,70,69,50.40%,49.60%,1,0.70%,10,7.20%,3,136,0,2.20%,97.80%,0.00%,25,25,139,18.00% +125826,938,2018,State-funded primary,202,107,95,53.00%,47.00%,5,2.50%,25,12.40%,70,132,0,34.70%,65.30%,0.00%,48,50,202,24.80% +125829,938,2025,State-funded primary,294,149,145,50.70%,49.30%,4,1.40%,44,15.00%,19,267,8,6.50%,90.80%,2.70%,82,86,294,29.30% +125830,938,2028,State-funded primary,96,43,53,44.80%,55.20%,2,2.10%,19,19.80%,3,93,0,3.10%,96.90%,0.00%,19,20,96,20.80% +125832,938,2030,State-funded primary,104,50,54,48.10%,51.90%,4,3.80%,16,15.40%,7,97,0,6.70%,93.30%,0.00%,4,5,104,4.80% +125835,938,2035,State-funded primary,244,105,139,43.00%,57.00%,5,2.00%,23,9.40%,39,205,0,16.00%,84.00%,0.00%,12,12,244,4.90% +125836,938,2036,State-funded primary,156,83,73,53.20%,46.80%,0,0.00%,25,16.00%,13,143,0,8.30%,91.70%,0.00%,30,30,156,19.20% +125837,938,2037,State-funded primary,104,45,59,43.30%,56.70%,0,0.00%,11,10.60%,11,93,0,10.60%,89.40%,0.00%,25,25,104,24.00% +125838,938,2038,State-funded primary,131,71,60,54.20%,45.80%,3,2.30%,10,7.60%,9,122,0,6.90%,93.10%,0.00%,10,11,131,8.40% +125841,938,2042,State-funded primary,405,192,213,47.40%,52.60%,11,2.70%,111,27.40%,22,383,0,5.40%,94.60%,0.00%,23,26,405,6.40% +125845,938,2046,State-funded primary,170,93,77,54.70%,45.30%,5,2.90%,23,13.50%,19,151,0,11.20%,88.80%,0.00%,15,15,170,8.80% +125846,938,2048,State-funded primary,48,26,22,54.20%,45.80%,0,0.00%,7,14.60%,0,48,0,0.00%,100.00%,0.00%,9,10,48,20.80% +125847,938,2049,State-funded primary,209,102,107,48.80%,51.20%,1,0.50%,15,7.20%,13,196,0,6.20%,93.80%,0.00%,32,35,209,16.70% +125848,938,2050,State-funded primary,192,97,95,50.50%,49.50%,1,0.50%,13,6.80%,0,192,0,0.00%,100.00%,0.00%,15,15,192,7.80% +125849,938,2051,State-funded primary,214,93,121,43.50%,56.50%,3,1.40%,11,5.10%,2,212,0,0.90%,99.10%,0.00%,9,9,214,4.20% +125850,938,2052,State-funded primary,105,48,57,45.70%,54.30%,0,0.00%,9,8.60%,0,105,0,0.00%,100.00%,0.00%,9,10,105,9.50% +125853,938,2058,State-funded primary,139,61,78,43.90%,56.10%,3,2.20%,19,13.70%,2,137,0,1.40%,98.60%,0.00%,20,25,139,18.00% +125854,938,2066,State-funded primary,45,28,17,62.20%,37.80%,2,4.40%,8,17.80%,2,43,0,4.40%,95.60%,0.00%,12,13,45,28.90% +125856,938,2069,State-funded primary,101,46,55,45.50%,54.50%,5,5.00%,13,12.90%,4,97,0,4.00%,96.00%,0.00%,13,13,101,12.90% +125857,938,2070,State-funded primary,327,157,170,48.00%,52.00%,8,2.40%,55,16.80%,17,310,0,5.20%,94.80%,0.00%,46,48,327,14.70% +125858,938,2071,State-funded primary,204,87,117,42.60%,57.40%,5,2.50%,20,9.80%,1,203,0,0.50%,99.50%,0.00%,33,35,204,17.20% +125859,938,2072,State-funded primary,201,97,104,48.30%,51.70%,9,4.50%,27,13.40%,2,196,3,1.00%,97.50%,1.50%,7,7,201,3.50% +125860,938,2073,State-funded primary,207,118,89,57.00%,43.00%,2,1.00%,39,18.80%,4,203,0,1.90%,98.10%,0.00%,13,13,207,6.30% +125862,938,2076,State-funded primary,296,153,143,51.70%,48.30%,6,2.00%,40,13.50%,14,282,0,4.70%,95.30%,0.00%,54,54,267,20.20% +125863,938,2077,State-funded primary,190,114,76,60.00%,40.00%,5,2.60%,24,12.60%,29,161,0,15.30%,84.70%,0.00%,33,36,190,18.90% +125864,938,2080,State-funded primary,266,137,129,51.50%,48.50%,16,6.00%,63,23.70%,30,236,0,11.30%,88.70%,0.00%,71,69,232,29.70% +125865,938,2082,State-funded primary,606,319,287,52.60%,47.40%,7,1.20%,65,10.70%,30,576,0,5.00%,95.00%,0.00%,42,42,606,6.90% +125868,938,2093,State-funded primary,215,110,105,51.20%,48.80%,2,0.90%,22,10.20%,9,206,0,4.20%,95.80%,0.00%,14,17,215,7.90% +125873,938,2101,State-funded primary,290,148,142,51.00%,49.00%,7,2.40%,60,20.70%,92,197,1,31.70%,67.90%,0.30%,78,83,290,28.60% +125874,938,2102,State-funded primary,407,194,213,47.70%,52.30%,9,2.20%,57,14.00%,16,391,0,3.90%,96.10%,0.00%,57,62,407,15.20% +125875,938,2105,State-funded primary,174,87,87,50.00%,50.00%,2,1.10%,12,6.90%,3,171,0,1.70%,98.30%,0.00%,24,24,174,13.80% +125878,938,2110,State-funded primary,235,114,121,48.50%,51.50%,4,1.70%,41,17.40%,3,232,0,1.30%,98.70%,0.00%,50,50,235,21.30% +125880,938,2112,State-funded primary,211,111,100,52.60%,47.40%,5,2.40%,17,8.10%,16,194,1,7.60%,91.90%,0.50%,25,25,211,11.80% +125883,938,2124,State-funded primary,411,182,229,44.30%,55.70%,5,1.20%,59,14.40%,113,298,0,27.50%,72.50%,0.00%,53,54,411,13.10% +125885,938,2131,State-funded primary,204,114,90,55.90%,44.10%,6,2.90%,30,14.70%,4,200,0,2.00%,98.00%,0.00%,24,24,204,11.80% +125887,938,2133,State-funded primary,412,236,176,57.30%,42.70%,1,0.20%,35,8.50%,27,385,0,6.60%,93.40%,0.00%,18,18,412,4.40% +125901,938,2153,State-funded primary,679,305,374,44.90%,55.10%,29,4.30%,66,9.70%,279,399,1,41.10%,58.80%,0.10%,115,119,627,19.00% +125905,938,2161,State-funded primary,356,181,175,50.80%,49.20%,4,1.10%,68,19.10%,110,246,0,30.90%,69.10%,0.00%,44,48,356,13.50% +125913,938,2172,State-funded primary,520,251,269,48.30%,51.70%,10,1.90%,62,11.90%,22,498,0,4.20%,95.80%,0.00%,112,113,520,21.70% +125914,938,2173,State-funded primary,410,194,216,47.30%,52.70%,6,1.50%,23,5.60%,13,397,0,3.20%,96.80%,0.00%,55,58,410,14.10% +125918,938,2182,State-funded primary,418,216,202,51.70%,48.30%,12,2.90%,30,7.20%,28,390,0,6.70%,93.30%,0.00%,54,55,418,13.20% +125919,938,2183,State-funded primary,264,124,140,47.00%,53.00%,5,1.90%,21,8.00%,14,250,0,5.30%,94.70%,0.00%,30,31,264,11.70% +125921,938,2185,State-funded primary,426,195,231,45.80%,54.20%,23,5.40%,50,11.70%,35,391,0,8.20%,91.80%,0.00%,87,90,426,21.10% +125922,938,2186,State-funded primary,207,99,108,47.80%,52.20%,2,1.00%,23,11.10%,33,174,0,15.90%,84.10%,0.00%,36,41,207,19.80% +125927,938,2198,State-funded primary,214,105,109,49.10%,50.90%,10,4.70%,28,13.10%,12,200,2,5.60%,93.50%,0.90%,53,57,214,26.60% +125928,938,2199,State-funded primary,265,127,138,47.90%,52.10%,6,2.30%,30,11.30%,12,253,0,4.50%,95.50%,0.00%,30,30,265,11.30% +125929,938,2200,State-funded primary,136,75,61,55.10%,44.90%,3,2.20%,9,6.60%,4,132,0,2.90%,97.10%,0.00%,20,21,136,15.40% +125930,938,2201,State-funded primary,477,234,243,49.10%,50.90%,4,0.80%,44,9.20%,36,438,3,7.50%,91.80%,0.60%,69,73,477,15.30% +125931,938,2202,State-funded primary,400,174,226,43.50%,56.50%,13,3.30%,39,9.80%,45,355,0,11.30%,88.80%,0.00%,57,59,400,14.80% +125932,938,2205,State-funded primary,249,110,139,44.20%,55.80%,3,1.20%,47,18.90%,29,220,0,11.60%,88.40%,0.00%,29,27,205,13.20% +125933,938,2206,State-funded primary,270,129,141,47.80%,52.20%,2,0.70%,15,5.60%,9,261,0,3.30%,96.70%,0.00%,12,12,270,4.40% +125936,938,2209,State-funded primary,123,56,67,45.50%,54.50%,9,7.30%,36,29.30%,21,102,0,17.10%,82.90%,0.00%,33,35,94,37.20% +125939,938,2213,State-funded primary,371,171,200,46.10%,53.90%,5,1.30%,39,10.50%,9,362,0,2.40%,97.60%,0.00%,22,23,371,6.20% +125940,938,2214,State-funded primary,269,144,125,53.50%,46.50%,1,0.40%,27,10.00%,11,256,2,4.10%,95.20%,0.70%,32,32,269,11.90% +125941,938,2215,State-funded primary,349,180,169,51.60%,48.40%,9,2.60%,39,11.20%,29,320,0,8.30%,91.70%,0.00%,63,65,349,18.60% +125943,938,2218,State-funded primary,173,87,86,50.30%,49.70%,2,1.20%,16,9.20%,12,161,0,6.90%,93.10%,0.00%,22,23,173,13.30% +125944,938,2219,State-funded primary,415,195,220,47.00%,53.00%,10,2.40%,43,10.40%,29,386,0,7.00%,93.00%,0.00%,27,30,415,7.20% +125945,938,2220,State-funded primary,419,193,226,46.10%,53.90%,2,0.50%,51,12.20%,34,385,0,8.10%,91.90%,0.00%,24,24,418,5.70% +125949,938,2225,State-funded primary,408,198,210,48.50%,51.50%,4,1.00%,44,10.80%,33,375,0,8.10%,91.90%,0.00%,41,42,408,10.30% +125950,938,2227,State-funded primary,149,70,79,47.00%,53.00%,11,7.40%,26,17.40%,10,139,0,6.70%,93.30%,0.00%,50,53,149,35.60% +125952,938,2229,State-funded primary,303,166,137,54.80%,45.20%,27,8.90%,71,23.40%,18,285,0,5.90%,94.10%,0.00%,83,87,303,28.70% +125954,938,2231,State-funded primary,526,257,269,48.90%,51.10%,7,1.30%,42,8.00%,41,485,0,7.80%,92.20%,0.00%,68,68,526,12.90% +125955,938,2232,State-funded primary,716,352,364,49.20%,50.80%,15,2.10%,89,12.40%,35,678,3,4.90%,94.70%,0.40%,94,99,716,13.80% +125958,938,2235,State-funded primary,196,97,99,49.50%,50.50%,4,2.00%,17,8.70%,37,159,0,18.90%,81.10%,0.00%,25,27,196,13.80% +125959,938,2237,State-funded primary,411,229,182,55.70%,44.30%,14,3.40%,59,14.40%,19,392,0,4.60%,95.40%,0.00%,96,101,411,24.60% +125960,938,2238,State-funded primary,252,123,129,48.80%,51.20%,10,4.00%,50,19.80%,74,178,0,29.40%,70.60%,0.00%,43,43,252,17.10% +125961,938,2239,State-funded primary,560,276,284,49.30%,50.70%,18,3.20%,162,28.90%,127,433,0,22.70%,77.30%,0.00%,126,132,560,23.60% +125962,938,2240,State-funded primary,240,108,132,45.00%,55.00%,2,0.80%,33,13.80%,54,186,0,22.50%,77.50%,0.00%,22,24,240,10.00% +125964,938,2242,State-funded primary,317,161,156,50.80%,49.20%,8,2.50%,33,10.40%,30,286,1,9.50%,90.20%,0.30%,39,39,317,12.30% +125965,938,2243,State-funded primary,412,216,196,52.40%,47.60%,5,1.20%,30,7.30%,14,398,0,3.40%,96.60%,0.00%,15,15,412,3.60% +125967,938,2245,State-funded primary,176,84,92,47.70%,52.30%,5,2.80%,31,17.60%,23,153,0,13.10%,86.90%,0.00%,29,29,176,16.50% +125968,938,2246,State-funded primary,195,86,109,44.10%,55.90%,9,4.60%,38,19.50%,5,190,0,2.60%,97.40%,0.00%,8,9,195,4.60% +125970,938,3000,State-funded primary,53,21,32,39.60%,60.40%,2,3.80%,7,13.20%,2,51,0,3.80%,96.20%,0.00%,11,11,53,20.80% +125971,938,3001,State-funded primary,193,103,90,53.40%,46.60%,8,4.10%,31,16.10%,7,186,0,3.60%,96.40%,0.00%,11,13,193,6.70% +125972,938,3002,State-funded primary,123,52,71,42.30%,57.70%,2,1.60%,14,11.40%,12,111,0,9.80%,90.20%,0.00%,21,21,123,17.10% +125973,938,3003,State-funded primary,202,92,110,45.50%,54.50%,6,3.00%,28,13.90%,41,161,0,20.30%,79.70%,0.00%,35,38,202,18.80% +125974,938,3004,State-funded primary,69,39,30,56.50%,43.50%,1,1.40%,14,20.30%,5,64,0,7.20%,92.80%,0.00%,15,17,69,24.60% +125976,938,3006,State-funded primary,191,109,82,57.10%,42.90%,6,3.10%,38,19.90%,11,180,0,5.80%,94.20%,0.00%,39,42,191,22.00% +125978,938,3009,State-funded primary,78,33,45,42.30%,57.70%,2,2.60%,15,19.20%,0,78,0,0.00%,100.00%,0.00%,7,8,78,10.30% +125979,938,3010,State-funded primary,70,36,34,51.40%,48.60%,1,1.40%,14,20.00%,4,65,1,5.70%,92.90%,1.40%,8,68,70,97.10% +125980,938,3013,State-funded primary,59,25,34,42.40%,57.60%,1,1.70%,6,10.20%,0,59,0,0.00%,100.00%,0.00%,1,1,59,1.70% +125981,938,3014,State-funded primary,205,93,112,45.40%,54.60%,3,1.50%,31,15.10%,13,192,0,6.30%,93.70%,0.00%,33,33,205,16.10% +125982,938,3016,State-funded primary,185,88,97,47.60%,52.40%,2,1.10%,24,13.00%,8,177,0,4.30%,95.70%,0.00%,28,28,185,15.10% +125983,938,3017,State-funded primary,210,99,111,47.10%,52.90%,5,2.40%,29,13.80%,10,200,0,4.80%,95.20%,0.00%,24,24,210,11.40% +125984,938,3018,State-funded primary,127,57,70,44.90%,55.10%,4,3.10%,5,3.90%,4,123,0,3.10%,96.90%,0.00%,15,17,127,13.40% +125985,938,3020,State-funded primary,148,72,76,48.60%,51.40%,1,0.70%,18,12.20%,4,144,0,2.70%,97.30%,0.00%,13,13,148,8.80% +125986,938,3021,State-funded primary,112,54,58,48.20%,51.80%,3,2.70%,14,12.50%,13,99,0,11.60%,88.40%,0.00%,8,12,112,10.70% +125987,938,3022,State-funded primary,83,41,42,49.40%,50.60%,0,0.00%,5,6.00%,1,82,0,1.20%,98.80%,0.00%,2,3,83,3.60% +125988,938,3023,State-funded primary,194,97,97,50.00%,50.00%,3,1.50%,19,9.80%,16,178,0,8.20%,91.80%,0.00%,46,48,194,24.70% +125989,938,3024,State-funded primary,96,45,51,46.90%,53.10%,1,1.00%,16,16.70%,7,89,0,7.30%,92.70%,0.00%,7,8,96,8.30% +125990,938,3026,State-funded primary,169,85,84,50.30%,49.70%,5,3.00%,20,11.80%,8,161,0,4.70%,95.30%,0.00%,27,27,169,16.00% +125991,938,3027,State-funded primary,66,31,35,47.00%,53.00%,1,1.50%,12,18.20%,2,64,0,3.00%,97.00%,0.00%,11,12,66,18.20% +125992,938,3028,State-funded primary,78,48,30,61.50%,38.50%,0,0.00%,8,10.30%,1,77,0,1.30%,98.70%,0.00%,7,7,78,9.00% +125993,938,3029,State-funded primary,64,37,27,57.80%,42.20%,2,3.10%,10,15.60%,3,61,0,4.70%,95.30%,0.00%,10,10,64,15.60% +125994,938,3030,State-funded primary,80,38,42,47.50%,52.50%,1,1.30%,13,16.30%,2,78,0,2.50%,97.50%,0.00%,24,24,80,30.00% +125995,938,3031,State-funded primary,127,54,73,42.50%,57.50%,4,3.10%,21,16.50%,3,124,0,2.40%,97.60%,0.00%,17,18,127,14.20% +125996,938,3033,State-funded primary,387,197,190,50.90%,49.10%,20,5.20%,50,12.90%,9,377,1,2.30%,97.40%,0.30%,54,57,387,14.70% +125997,938,3036,State-funded primary,211,103,108,48.80%,51.20%,2,0.90%,22,10.40%,4,207,0,1.90%,98.10%,0.00%,16,16,211,7.60% +125998,938,3037,State-funded primary,206,91,115,44.20%,55.80%,3,1.50%,33,16.00%,4,202,0,1.90%,98.10%,0.00%,13,13,206,6.30% +125999,938,3038,State-funded primary,96,51,45,53.10%,46.90%,2,2.10%,16,16.70%,0,96,0,0.00%,100.00%,0.00%,7,7,96,7.30% +126000,938,3039,State-funded primary,102,54,48,52.90%,47.10%,0,0.00%,17,16.70%,7,95,0,6.90%,93.10%,0.00%,16,16,102,15.70% +126001,938,3040,State-funded primary,298,143,155,48.00%,52.00%,10,3.40%,27,9.10%,30,268,0,10.10%,89.90%,0.00%,60,68,298,22.80% +126002,938,3042,State-funded primary,99,41,58,41.40%,58.60%,2,2.00%,18,18.20%,0,99,0,0.00%,100.00%,0.00%,8,9,99,9.10% +126003,938,3043,State-funded primary,226,113,113,50.00%,50.00%,5,2.20%,39,17.30%,5,221,0,2.20%,97.80%,0.00%,30,30,226,13.30% +126004,938,3045,State-funded primary,100,46,54,46.00%,54.00%,2,2.00%,16,16.00%,2,97,1,2.00%,97.00%,1.00%,11,11,100,11.00% +126005,938,3050,State-funded primary,96,51,45,53.10%,46.90%,2,2.10%,16,16.70%,13,83,0,13.50%,86.50%,0.00%,13,16,96,16.70% +126006,938,3051,State-funded primary,137,59,78,43.10%,56.90%,4,2.90%,17,12.40%,8,129,0,5.80%,94.20%,0.00%,16,16,137,11.70% +126007,938,3052,State-funded primary,101,38,63,37.60%,62.40%,1,1.00%,17,16.80%,4,96,1,4.00%,95.00%,1.00%,4,7,101,6.90% +126009,938,3055,State-funded primary,96,52,44,54.20%,45.80%,0,0.00%,15,15.60%,16,79,1,16.70%,82.30%,1.00%,19,19,96,19.80% +126010,938,3056,State-funded primary,142,70,72,49.30%,50.70%,3,2.10%,21,14.80%,3,138,1,2.10%,97.20%,0.70%,13,13,142,9.20% +126011,938,3057,State-funded primary,68,19,49,27.90%,72.10%,4,5.90%,17,25.00%,2,66,0,2.90%,97.10%,0.00%,7,7,68,10.30% +126012,938,3058,State-funded primary,134,74,60,55.20%,44.80%,0,0.00%,18,13.40%,11,123,0,8.20%,91.80%,0.00%,7,7,134,5.20% +126013,938,3059,State-funded primary,211,104,107,49.30%,50.70%,4,1.90%,26,12.30%,21,190,0,10.00%,90.00%,0.00%,34,37,211,17.50% +126015,938,3061,State-funded primary,105,51,54,48.60%,51.40%,7,6.70%,20,19.00%,1,104,0,1.00%,99.00%,0.00%,19,19,105,18.10% +126016,938,3062,State-funded primary,820,386,434,47.10%,52.90%,22,2.70%,96,11.70%,48,772,0,5.90%,94.10%,0.00%,88,90,820,11.00% +126017,938,3063,State-funded primary,117,53,64,45.30%,54.70%,2,1.70%,20,17.10%,9,108,0,7.70%,92.30%,0.00%,16,16,117,13.70% +126018,938,3300,State-funded primary,401,199,202,49.60%,50.40%,5,1.20%,38,9.50%,6,395,0,1.50%,98.50%,0.00%,54,55,401,13.70% +126019,938,3301,State-funded primary,204,107,97,52.50%,47.50%,5,2.50%,20,9.80%,1,203,0,0.50%,99.50%,0.00%,17,19,204,9.30% +126020,938,3302,State-funded primary,51,27,24,52.90%,47.10%,0,0.00%,6,11.80%,5,46,0,9.80%,90.20%,0.00%,6,6,51,11.80% +126021,938,3303,State-funded primary,311,149,162,47.90%,52.10%,6,1.90%,45,14.50%,54,257,0,17.40%,82.60%,0.00%,72,76,311,24.40% +126022,938,3304,State-funded primary,74,31,43,41.90%,58.10%,1,1.40%,15,20.30%,4,70,0,5.40%,94.60%,0.00%,1,1,74,1.40% +126024,938,3308,State-funded primary,92,46,46,50.00%,50.00%,1,1.10%,11,12.00%,4,88,0,4.30%,95.70%,0.00%,21,22,92,23.90% +126025,938,3309,State-funded primary,118,52,66,44.10%,55.90%,1,0.80%,11,9.30%,1,117,0,0.80%,99.20%,0.00%,15,16,118,13.60% +126027,938,3313,State-funded primary,135,61,74,45.20%,54.80%,8,5.90%,19,14.10%,5,130,0,3.70%,96.30%,0.00%,14,18,135,13.30% +126028,938,3314,State-funded primary,385,179,206,46.50%,53.50%,15,3.90%,47,12.20%,24,361,0,6.20%,93.80%,0.00%,58,64,385,16.60% +126029,938,3315,State-funded primary,204,115,89,56.40%,43.60%,5,2.50%,29,14.20%,38,166,0,18.60%,81.40%,0.00%,14,14,204,6.90% +126030,938,3317,State-funded primary,138,64,74,46.40%,53.60%,1,0.70%,31,22.50%,7,131,0,5.10%,94.90%,0.00%,7,7,138,5.10% +126033,938,3324,State-funded primary,430,198,232,46.00%,54.00%,9,2.10%,35,8.10%,36,390,4,8.40%,90.70%,0.90%,42,42,430,9.80% +126034,938,3326,State-funded primary,395,197,198,49.90%,50.10%,8,2.00%,41,10.40%,106,289,0,26.80%,73.20%,0.00%,87,91,395,23.00% +126036,938,3328,State-funded primary,202,102,100,50.50%,49.50%,4,2.00%,16,7.90%,10,192,0,5.00%,95.00%,0.00%,11,13,202,6.40% +126037,938,3329,State-funded primary,314,172,142,54.80%,45.20%,10,3.20%,39,12.40%,139,175,0,44.30%,55.70%,0.00%,44,44,314,14.00% +126038,938,3330,State-funded primary,322,152,170,47.20%,52.80%,6,1.90%,49,15.20%,115,207,0,35.70%,64.30%,0.00%,21,22,322,6.80% +126039,938,3331,State-funded primary,202,99,103,49.00%,51.00%,3,1.50%,16,7.90%,52,150,0,25.70%,74.30%,0.00%,32,34,202,16.80% +126040,938,3332,State-funded primary,232,115,117,49.60%,50.40%,5,2.20%,26,11.20%,75,157,0,32.30%,67.70%,0.00%,42,42,232,18.10% +126043,938,3335,State-funded primary,408,183,225,44.90%,55.10%,14,3.40%,49,12.00%,76,332,0,18.60%,81.40%,0.00%,83,84,408,20.60% +126045,938,3339,State-funded primary,424,217,207,51.20%,48.80%,15,3.50%,41,9.70%,23,401,0,5.40%,94.60%,0.00%,50,52,424,12.30% +126046,938,3340,State-funded primary,422,213,209,50.50%,49.50%,7,1.70%,51,12.10%,138,284,0,32.70%,67.30%,0.00%,59,59,422,14.00% +126047,938,3341,State-funded primary,210,114,96,54.30%,45.70%,10,4.80%,15,7.10%,51,159,0,24.30%,75.70%,0.00%,38,41,210,19.50% +126048,938,3342,State-funded primary,310,147,163,47.40%,52.60%,3,1.00%,49,15.80%,17,293,0,5.50%,94.50%,0.00%,73,75,310,24.20% +126050,938,3344,State-funded primary,419,219,200,52.30%,47.70%,8,1.90%,49,11.70%,19,400,0,4.50%,95.50%,0.00%,63,65,419,15.50% +126051,938,3345,State-funded primary,161,80,81,49.70%,50.30%,6,3.70%,27,16.80%,10,151,0,6.20%,93.80%,0.00%,21,21,161,13.00% +126052,938,3348,State-funded primary,220,111,109,50.50%,49.50%,4,1.80%,31,14.10%,27,193,0,12.30%,87.70%,0.00%,36,36,220,16.40% +126053,938,3349,State-funded primary,199,87,112,43.70%,56.30%,7,3.50%,28,14.10%,34,165,0,17.10%,82.90%,0.00%,12,14,199,7.00% +126054,938,3350,State-funded primary,417,196,221,47.00%,53.00%,7,1.70%,69,16.50%,13,404,0,3.10%,96.90%,0.00%,33,37,417,8.90% +126055,938,3351,State-funded primary,201,101,100,50.20%,49.80%,5,2.50%,28,13.90%,15,186,0,7.50%,92.50%,0.00%,17,17,201,8.50% +126057,938,3353,State-funded primary,113,50,63,44.20%,55.80%,0,0.00%,15,13.30%,5,108,0,4.40%,95.60%,0.00%,7,7,113,6.20% +126060,938,3356,State-funded primary,204,102,102,50.00%,50.00%,3,1.50%,44,21.60%,17,187,0,8.30%,91.70%,0.00%,5,6,204,2.90% +126061,938,3357,State-funded primary,418,209,209,50.00%,50.00%,10,2.40%,55,13.20%,83,334,1,19.90%,79.90%,0.20%,26,29,418,6.90% +126064,938,4002,State-funded secondary,1525,670,855,43.90%,56.10%,30,2.00%,253,16.60%,84,1436,5,5.50%,94.20%,0.30%,114,147,1525,9.60% +126065,938,4009,State-funded secondary,1023,97,926,9.50%,90.50%,21,2.10%,187,18.30%,82,941,0,8.00%,92.00%,0.00%,110,136,1023,13.30% +126066,938,4010,State-funded secondary,1347,1347,0,100.00%,0.00%,14,1.00%,311,23.10%,148,1199,0,11.00%,89.00%,0.00%,120,139,1347,10.30% +126068,938,4025,State-funded secondary,1736,847,889,48.80%,51.20%,26,1.50%,408,23.50%,30,1706,0,1.70%,98.30%,0.00%,169,172,1498,11.50% +126069,938,4028,State-funded secondary,756,362,394,47.90%,52.10%,31,4.10%,132,17.50%,27,729,0,3.60%,96.40%,0.00%,130,151,756,20.00% +126071,938,4030,State-funded secondary,1202,576,626,47.90%,52.10%,14,1.20%,190,15.80%,294,907,1,24.50%,75.50%,0.10%,314,319,1044,30.60% +126080,938,4059,State-funded secondary,1512,764,748,50.50%,49.50%,12,0.80%,216,14.30%,208,1304,0,13.80%,86.20%,0.00%,233,240,1331,18.00% +126081,938,4060,State-funded secondary,1345,634,711,47.10%,52.90%,68,5.10%,140,10.40%,60,1285,0,4.50%,95.50%,0.00%,231,248,1193,20.80% +126085,938,4102,State-funded secondary,1185,610,575,51.50%,48.50%,21,1.80%,208,17.60%,61,1123,1,5.10%,94.80%,0.10%,155,178,1185,15.00% +126087,938,4105,State-funded secondary,1225,600,625,49.00%,51.00%,19,1.60%,170,13.90%,36,1188,1,2.90%,97.00%,0.10%,78,91,1225,7.40% +126088,938,4106,State-funded secondary,1624,787,837,48.50%,51.50%,39,2.40%,415,25.60%,113,1510,1,7.00%,93.00%,0.10%,158,169,1363,12.40% +126089,938,4107,State-funded secondary,1719,861,858,50.10%,49.90%,36,2.10%,342,19.90%,135,1581,3,7.90%,92.00%,0.20%,140,152,1355,11.20% +126093,938,4502,State-funded secondary,1295,1295,0,100.00%,0.00%,36,2.80%,153,11.80%,103,1192,0,8.00%,92.00%,0.00%,147,179,1295,13.80% +126094,938,4601,State-funded secondary,650,58,592,8.90%,91.10%,21,3.20%,158,24.30%,60,581,9,9.20%,89.40%,1.40%,122,145,650,22.30% +126095,938,4602,State-funded secondary,1061,555,506,52.30%,47.70%,34,3.20%,156,14.70%,402,659,0,37.90%,62.10%,0.00%,145,138,858,16.10% +126096,938,4603,State-funded secondary,923,418,505,45.30%,54.70%,33,3.60%,170,18.40%,55,868,0,6.00%,94.00%,0.00%,143,162,923,17.60% +126098,938,4606,State-funded secondary,1320,645,675,48.90%,51.10%,16,1.20%,262,19.80%,415,898,7,31.40%,68.00%,0.50%,280,293,1088,26.90% +126104,938,6005,Independent school,306,153,153,50.00%,50.00%,0,0.00%,52,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126105,938,6007,Independent school,385,180,205,46.80%,53.20%,2,0.50%,156,40.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126106,938,6008,Independent school,196,79,117,40.30%,59.70%,0,0.00%,30,15.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126107,938,6011,Independent school,836,405,431,48.40%,51.60%,0,0.00%,151,18.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126108,938,6013,Independent school,600,261,339,43.50%,56.50%,0,0.00%,98,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126109,938,6015,Independent school,137,62,75,45.30%,54.70%,1,0.70%,56,40.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126110,938,6023,Independent school,950,386,564,40.60%,59.40%,0,0.00%,433,45.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126111,938,6026,Independent school,248,109,139,44.00%,56.00%,2,0.80%,66,26.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126112,938,6027,Independent school,378,156,222,41.30%,58.70%,1,0.30%,80,21.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126113,938,6028,Independent school,328,123,205,37.50%,62.50%,1,0.30%,56,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126114,938,6029,Independent school,202,94,108,46.50%,53.50%,0,0.00%,23,11.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126115,938,6030,Independent school,380,191,189,50.30%,49.70%,3,0.80%,50,13.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126118,938,6072,Independent school,81,35,46,43.20%,56.80%,1,1.20%,13,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126119,938,6094,Independent school,95,0,95,0.00%,100.00%,63,66.30%,32,33.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126121,938,6125,Independent school,110,49,61,44.50%,55.50%,0,0.00%,6,5.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126122,938,6128,Independent school,94,34,60,36.20%,63.80%,2,2.10%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126126,938,6144,Independent school,340,240,100,70.60%,29.40%,1,0.30%,96,28.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126130,938,6174,Independent school,168,80,88,47.60%,52.40%,8,4.80%,36,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126132,938,6188,Independent school,196,96,100,49.00%,51.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126133,938,6200,Independent school,1072,500,572,46.60%,53.40%,0,0.00%,124,11.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126134,938,6201,Independent school,566,535,31,94.50%,5.50%,1,0.20%,70,12.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126135,938,6203,Independent school,337,156,181,46.30%,53.70%,0,0.00%,92,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126136,938,6206,Independent school,1321,639,682,48.40%,51.60%,0,0.00%,357,27.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126137,938,6208,Independent school,660,224,436,33.90%,66.10%,1,0.20%,211,32.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126139,938,6217,Independent school,60,11,49,18.30%,81.70%,60,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126141,938,6219,Independent school,38,9,29,23.70%,76.30%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126143,938,6223,Independent school,392,209,183,53.30%,46.70%,0,0.00%,40,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126149,938,6249,Independent school,16,1,15,6.30%,93.80%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126150,938,6251,Independent school,294,142,152,48.30%,51.70%,2,0.70%,49,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126151,938,6252,Independent school,469,215,254,45.80%,54.20%,8,1.70%,56,11.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126154,938,7003,Non-maintained special school,118,0,118,0.00%,100.00%,118,100.00%,0,0.00%,1,117,0,0.80%,99.20%,0.00%,51,56,98,57.10% +126155,938,7004,State-funded special school,235,65,170,27.70%,72.30%,235,100.00%,0,0.00%,16,218,1,6.80%,92.80%,0.40%,86,89,235,37.90% +126157,938,7006,State-funded special school,213,74,139,34.70%,65.30%,213,100.00%,0,0.00%,36,177,0,16.90%,83.10%,0.00%,72,64,176,36.40% +126159,938,7008,State-funded special school,190,58,132,30.50%,69.50%,189,99.50%,1,0.50%,8,182,0,4.20%,95.80%,0.00%,80,81,190,42.60% +126160,938,7009,State-funded special school,126,36,90,28.60%,71.40%,125,99.20%,1,0.80%,15,111,0,11.90%,88.10%,0.00%,33,27,95,28.40% +126161,938,7010,State-funded special school,275,84,191,30.50%,69.50%,275,100.00%,0,0.00%,18,257,0,6.50%,93.50%,0.00%,110,106,240,44.20% +126162,938,7011,State-funded special school,217,63,154,29.00%,71.00%,217,100.00%,0,0.00%,56,161,0,25.80%,74.20%,0.00%,70,71,215,33.00% +126163,938,7012,State-funded special school,152,45,107,29.60%,70.40%,152,100.00%,0,0.00%,19,133,0,12.50%,87.50%,0.00%,55,43,116,37.10% +126169,938,7021,State-funded special school,140,33,107,23.60%,76.40%,140,100.00%,0,0.00%,9,129,2,6.40%,92.10%,1.40%,45,45,140,32.10% +126170,938,7022,State-funded special school,68,0,68,0.00%,100.00%,68,100.00%,0,0.00%,0,68,0,0.00%,100.00%,0.00%,44,45,68,66.20% +126171,866,1100,State-funded AP school,63,25,38,39.70%,60.30%,10,15.90%,51,81.00%,3,59,1,4.80%,93.70%,1.60%,34,41,61,67.20% +126178,865,2009,State-funded primary,139,79,60,56.80%,43.20%,2,1.40%,18,12.90%,2,137,0,1.40%,98.60%,0.00%,21,22,139,15.80% +126182,865,2023,State-funded primary,152,82,70,53.90%,46.10%,5,3.30%,43,28.30%,17,135,0,11.20%,88.80%,0.00%,63,63,152,41.40% +126183,866,2026,State-funded primary,204,79,125,38.70%,61.30%,1,0.50%,42,20.60%,20,184,0,9.80%,90.20%,0.00%,39,42,181,23.20% +126186,865,2031,State-funded primary,197,95,102,48.20%,51.80%,11,5.60%,24,12.20%,0,197,0,0.00%,100.00%,0.00%,15,16,197,8.10% +126188,865,2034,State-funded primary,262,144,118,55.00%,45.00%,3,1.10%,40,15.30%,16,244,2,6.10%,93.10%,0.80%,42,42,262,16.00% +126195,865,2045,State-funded primary,138,71,67,51.40%,48.60%,2,1.40%,22,15.90%,3,135,0,2.20%,97.80%,0.00%,8,8,138,5.80% +126198,865,2052,State-funded primary,103,45,58,43.70%,56.30%,5,4.90%,34,33.00%,2,101,0,1.90%,98.10%,0.00%,11,11,103,10.70% +126199,865,2053,State-funded primary,73,39,34,53.40%,46.60%,0,0.00%,14,19.20%,1,72,0,1.40%,98.60%,0.00%,6,6,73,8.20% +126200,865,2060,State-funded primary,47,22,25,46.80%,53.20%,1,2.10%,5,10.60%,0,47,0,0.00%,100.00%,0.00%,4,5,47,10.60% +126204,865,2086,State-funded primary,85,47,38,55.30%,44.70%,1,1.20%,20,23.50%,6,79,0,7.10%,92.90%,0.00%,6,6,68,8.80% +126205,865,2087,State-funded primary,196,86,110,43.90%,56.10%,1,0.50%,26,13.30%,1,195,0,0.50%,99.50%,0.00%,10,11,196,5.60% +126206,865,2091,State-funded primary,229,117,112,51.10%,48.90%,8,3.50%,37,16.20%,19,210,0,8.30%,91.70%,0.00%,41,42,229,18.30% +126210,866,2095,State-funded primary,238,111,127,46.60%,53.40%,11,4.60%,27,11.30%,25,213,0,10.50%,89.50%,0.00%,69,69,238,29.00% +126213,866,2103,State-funded primary,663,341,322,51.40%,48.60%,24,3.60%,95,14.30%,274,388,1,41.30%,58.50%,0.20%,136,138,591,23.40% +126228,866,2123,State-funded primary,419,185,234,44.20%,55.80%,7,1.70%,45,10.70%,148,270,1,35.30%,64.40%,0.20%,100,102,375,27.20% +126231,866,2133,State-funded primary,205,97,108,47.30%,52.70%,1,0.50%,14,6.80%,12,193,0,5.90%,94.10%,0.00%,9,9,205,4.40% +126233,865,2136,State-funded primary,208,112,96,53.80%,46.20%,21,10.10%,30,14.40%,20,187,1,9.60%,89.90%,0.50%,64,65,208,31.30% +126235,865,2140,State-funded primary,134,69,65,51.50%,48.50%,3,2.20%,21,15.70%,10,123,1,7.50%,91.80%,0.70%,14,16,134,11.90% +126240,866,2147,State-funded primary,482,250,232,51.90%,48.10%,13,2.70%,61,12.70%,90,392,0,18.70%,81.30%,0.00%,72,77,420,18.30% +126248,865,2159,State-funded primary,358,157,201,43.90%,56.10%,23,6.40%,48,13.40%,71,287,0,19.80%,80.20%,0.00%,15,29,334,8.70% +126252,866,2166,State-funded primary,196,98,98,50.00%,50.00%,3,1.50%,38,19.40%,21,175,0,10.70%,89.30%,0.00%,30,34,196,17.30% +126253,866,2167,State-funded primary,375,182,193,48.50%,51.50%,18,4.80%,56,14.90%,25,348,2,6.70%,92.80%,0.50%,53,53,298,17.80% +126254,865,2168,State-funded primary,284,140,144,49.30%,50.70%,9,3.20%,38,13.40%,14,270,0,4.90%,95.10%,0.00%,108,109,284,38.40% +126255,865,2170,State-funded primary,382,176,206,46.10%,53.90%,14,3.70%,51,13.40%,26,356,0,6.80%,93.20%,0.00%,72,75,382,19.60% +126259,865,2178,State-funded primary,218,115,103,52.80%,47.20%,5,2.30%,23,10.60%,10,206,2,4.60%,94.50%,0.90%,61,57,176,32.40% +126260,865,2180,State-funded primary,294,149,145,50.70%,49.30%,3,1.00%,42,14.30%,26,268,0,8.80%,91.20%,0.00%,61,64,294,21.80% +126262,865,2184,State-funded primary,255,128,127,50.20%,49.80%,7,2.70%,36,14.10%,25,230,0,9.80%,90.20%,0.00%,37,39,255,15.30% +126263,865,2185,State-funded primary,214,110,104,51.40%,48.60%,6,2.80%,33,15.40%,7,206,1,3.30%,96.30%,0.50%,41,42,214,19.60% +126264,865,2190,State-funded primary,206,99,107,48.10%,51.90%,4,1.90%,64,31.10%,20,186,0,9.70%,90.30%,0.00%,104,99,181,54.70% +126265,865,2191,State-funded primary,219,96,123,43.80%,56.20%,27,12.30%,28,12.80%,34,184,1,15.50%,84.00%,0.50%,36,36,219,16.40% +126269,865,2196,State-funded primary,225,120,105,53.30%,46.70%,4,1.80%,46,20.40%,21,204,0,9.30%,90.70%,0.00%,65,65,225,28.90% +126287,865,2218,State-funded primary,289,129,160,44.60%,55.40%,7,2.40%,39,13.50%,14,275,0,4.80%,95.20%,0.00%,42,43,289,14.90% +126289,865,2222,State-funded primary,258,132,126,51.20%,48.80%,12,4.70%,47,18.20%,27,231,0,10.50%,89.50%,0.00%,30,31,258,12.00% +126291,865,2225,State-funded primary,396,194,202,49.00%,51.00%,8,2.00%,42,10.60%,15,380,1,3.80%,96.00%,0.30%,59,61,396,15.40% +126292,865,2226,State-funded primary,215,105,110,48.80%,51.20%,23,10.70%,23,10.70%,17,195,3,7.90%,90.70%,1.40%,52,53,215,24.70% +126293,865,2227,State-funded primary,179,83,96,46.40%,53.60%,3,1.70%,26,14.50%,59,119,1,33.00%,66.50%,0.60%,55,56,179,31.30% +126295,866,2229,State-funded primary,596,293,303,49.20%,50.80%,6,1.00%,59,9.90%,70,524,2,11.70%,87.90%,0.30%,76,78,596,13.10% +126297,865,3002,State-funded primary,216,112,104,51.90%,48.10%,4,1.90%,31,14.40%,5,211,0,2.30%,97.70%,0.00%,17,17,216,7.90% +126300,866,3009,State-funded primary,43,21,22,48.80%,51.20%,0,0.00%,8,18.60%,2,41,0,4.70%,95.30%,0.00%,13,13,43,30.20% +126302,865,3013,State-funded primary,162,81,81,50.00%,50.00%,0,0.00%,15,9.30%,4,148,10,2.50%,91.40%,6.20%,4,4,162,2.50% +126303,865,3015,State-funded primary,435,209,226,48.00%,52.00%,6,1.40%,37,8.50%,13,421,1,3.00%,96.80%,0.20%,19,20,435,4.60% +126304,865,3017,State-funded primary,65,36,29,55.40%,44.60%,0,0.00%,12,18.50%,6,59,0,9.20%,90.80%,0.00%,30,31,65,47.70% +126305,865,3018,State-funded primary,90,48,42,53.30%,46.70%,2,2.20%,14,15.60%,0,90,0,0.00%,100.00%,0.00%,5,6,90,6.70% +126306,865,3019,State-funded primary,56,27,29,48.20%,51.80%,2,3.60%,17,30.40%,1,55,0,1.80%,98.20%,0.00%,5,5,56,8.90% +126307,865,3020,State-funded primary,78,28,50,35.90%,64.10%,4,5.10%,29,37.20%,2,76,0,2.60%,97.40%,0.00%,8,8,78,10.30% +126313,865,3035,State-funded primary,205,100,105,48.80%,51.20%,7,3.40%,29,14.10%,4,201,0,2.00%,98.00%,0.00%,23,23,205,11.20% +126316,865,3040,State-funded primary,243,118,125,48.60%,51.40%,5,2.10%,37,15.20%,11,232,0,4.50%,95.50%,0.00%,11,11,243,4.50% +126317,865,3045,State-funded primary,306,149,157,48.70%,51.30%,5,1.60%,59,19.30%,9,282,15,2.90%,92.20%,4.90%,45,48,306,15.70% +126318,865,3047,State-funded primary,101,40,61,39.60%,60.40%,1,1.00%,15,14.90%,0,101,0,0.00%,100.00%,0.00%,6,6,101,5.90% +126319,865,3048,State-funded primary,131,66,65,50.40%,49.60%,1,0.80%,22,16.80%,0,131,0,0.00%,100.00%,0.00%,11,12,131,9.20% +126320,865,3049,State-funded primary,95,46,49,48.40%,51.60%,2,2.10%,13,13.70%,2,93,0,2.10%,97.90%,0.00%,8,8,95,8.40% +126324,865,3063,State-funded primary,179,80,99,44.70%,55.30%,7,3.90%,34,19.00%,4,175,0,2.20%,97.80%,0.00%,32,34,179,19.00% +126327,865,3086,State-funded primary,75,36,39,48.00%,52.00%,5,6.70%,9,12.00%,0,75,0,0.00%,100.00%,0.00%,15,16,75,21.30% +126328,865,3088,State-funded primary,149,74,75,49.70%,50.30%,3,2.00%,24,16.10%,3,146,0,2.00%,98.00%,0.00%,25,26,149,17.40% +126329,865,3090,State-funded primary,152,66,86,43.40%,56.60%,5,3.30%,30,19.70%,0,152,0,0.00%,100.00%,0.00%,12,13,152,8.60% +126330,865,3091,State-funded primary,164,88,76,53.70%,46.30%,2,1.20%,14,8.50%,31,133,0,18.90%,81.10%,0.00%,16,17,143,11.90% +126332,865,3096,State-funded primary,140,68,72,48.60%,51.40%,4,2.90%,14,10.00%,8,132,0,5.70%,94.30%,0.00%,11,12,140,8.60% +126333,865,3100,State-funded primary,67,31,36,46.30%,53.70%,1,1.50%,7,10.40%,4,63,0,6.00%,94.00%,0.00%,14,15,67,22.40% +126334,865,3102,State-funded primary,98,48,50,49.00%,51.00%,3,3.10%,23,23.50%,12,85,1,12.20%,86.70%,1.00%,10,10,98,10.20% +126335,865,3104,State-funded primary,120,69,51,57.50%,42.50%,2,1.70%,20,16.70%,8,112,0,6.70%,93.30%,0.00%,21,23,120,19.20% +126343,865,3134,State-funded primary,87,41,46,47.10%,52.90%,0,0.00%,9,10.30%,5,82,0,5.70%,94.30%,0.00%,2,2,87,2.30% +126344,865,3135,State-funded primary,191,89,102,46.60%,53.40%,9,4.70%,30,15.70%,6,185,0,3.10%,96.90%,0.00%,14,14,191,7.30% +126345,865,3140,State-funded primary,89,45,44,50.60%,49.40%,3,3.40%,16,18.00%,1,88,0,1.10%,98.90%,0.00%,7,7,89,7.90% +126349,865,3149,State-funded primary,185,86,99,46.50%,53.50%,4,2.20%,14,7.60%,15,170,0,8.10%,91.90%,0.00%,14,14,185,7.60% +126350,865,3150,State-funded primary,330,159,171,48.20%,51.80%,10,3.00%,48,14.50%,20,301,9,6.10%,91.20%,2.70%,44,44,330,13.30% +126351,865,3158,State-funded primary,306,146,160,47.70%,52.30%,7,2.30%,65,21.20%,26,280,0,8.50%,91.50%,0.00%,60,62,306,20.30% +126354,865,3161,State-funded primary,30,15,15,50.00%,50.00%,0,0.00%,10,33.30%,4,26,0,13.30%,86.70%,0.00%,5,5,30,16.70% +126356,865,3163,State-funded primary,114,48,66,42.10%,57.90%,4,3.50%,12,10.50%,7,107,0,6.10%,93.90%,0.00%,7,7,114,6.10% +126359,865,3166,State-funded primary,183,84,99,45.90%,54.10%,3,1.60%,33,18.00%,3,180,0,1.60%,98.40%,0.00%,36,36,183,19.70% +126360,865,3170,State-funded primary,258,132,126,51.20%,48.80%,4,1.60%,30,11.60%,18,240,0,7.00%,93.00%,0.00%,54,55,258,21.30% +126361,865,3172,State-funded primary,146,72,74,49.30%,50.70%,6,4.10%,22,15.10%,4,142,0,2.70%,97.30%,0.00%,16,16,146,11.00% +126362,865,3174,State-funded primary,163,90,73,55.20%,44.80%,1,0.60%,16,9.80%,2,161,0,1.20%,98.80%,0.00%,5,7,163,4.30% +126366,865,3186,State-funded primary,93,45,48,48.40%,51.60%,2,2.20%,8,8.60%,1,92,0,1.10%,98.90%,0.00%,6,8,93,8.60% +126368,865,3191,State-funded primary,210,100,110,47.60%,52.40%,1,0.50%,18,8.60%,11,199,0,5.20%,94.80%,0.00%,14,15,210,7.10% +126369,865,3192,State-funded primary,258,125,133,48.40%,51.60%,25,9.70%,54,20.90%,12,239,7,4.70%,92.60%,2.70%,94,98,258,38.00% +126370,865,3193,State-funded primary,293,141,152,48.10%,51.90%,11,3.80%,35,11.90%,10,282,1,3.40%,96.20%,0.30%,56,66,293,22.50% +126372,865,3201,State-funded primary,195,90,105,46.20%,53.80%,3,1.50%,21,10.80%,2,193,0,1.00%,99.00%,0.00%,8,8,195,4.10% +126374,865,3205,State-funded primary,111,54,57,48.60%,51.40%,3,2.70%,17,15.30%,4,107,0,3.60%,96.40%,0.00%,13,13,111,11.70% +126379,865,3220,State-funded primary,130,63,67,48.50%,51.50%,1,0.80%,18,13.80%,1,129,0,0.80%,99.20%,0.00%,9,11,130,8.50% +126380,865,3222,State-funded primary,117,57,60,48.70%,51.30%,1,0.90%,11,9.40%,0,117,0,0.00%,100.00%,0.00%,18,18,94,19.10% +126382,865,3229,State-funded primary,113,54,59,47.80%,52.20%,2,1.80%,11,9.70%,6,107,0,5.30%,94.70%,0.00%,14,15,113,13.30% +126383,865,3230,State-funded primary,82,32,50,39.00%,61.00%,2,2.40%,11,13.40%,7,75,0,8.50%,91.50%,0.00%,12,12,82,14.60% +126388,865,3239,State-funded primary,118,55,63,46.60%,53.40%,4,3.40%,25,21.20%,5,113,0,4.20%,95.80%,0.00%,35,36,118,30.50% +126390,865,3242,State-funded primary,154,73,81,47.40%,52.60%,0,0.00%,21,13.60%,4,150,0,2.60%,97.40%,0.00%,15,15,154,9.70% +126392,865,3300,State-funded primary,199,99,100,49.70%,50.30%,6,3.00%,22,11.10%,3,196,0,1.50%,98.50%,0.00%,19,19,199,9.50% +126394,865,3306,State-funded primary,101,57,44,56.40%,43.60%,2,2.00%,18,17.80%,2,99,0,2.00%,98.00%,0.00%,3,5,101,5.00% +126396,865,3316,State-funded primary,99,53,46,53.50%,46.50%,1,1.00%,9,9.10%,1,97,1,1.00%,98.00%,1.00%,10,12,99,12.10% +126397,865,3318,State-funded primary,101,49,52,48.50%,51.50%,0,0.00%,13,12.90%,4,97,0,4.00%,96.00%,0.00%,9,10,101,9.90% +126400,865,3330,State-funded primary,208,99,109,47.60%,52.40%,3,1.40%,28,13.50%,7,201,0,3.40%,96.60%,0.00%,20,20,208,9.60% +126404,865,3355,State-funded primary,143,74,69,51.70%,48.30%,1,0.70%,32,22.40%,3,140,0,2.10%,97.90%,0.00%,14,14,143,9.80% +126405,865,3362,State-funded primary,202,107,95,53.00%,47.00%,7,3.50%,21,10.40%,24,178,0,11.90%,88.10%,0.00%,17,19,202,9.40% +126411,865,3383,State-funded primary,218,106,112,48.60%,51.40%,7,3.20%,19,8.70%,41,177,0,18.80%,81.20%,0.00%,38,40,218,18.30% +126413,865,3387,State-funded primary,156,68,88,43.60%,56.40%,3,1.90%,21,13.50%,75,81,0,48.10%,51.90%,0.00%,58,61,156,39.10% +126419,865,3402,State-funded primary,87,44,43,50.60%,49.40%,2,2.30%,19,21.80%,0,87,0,0.00%,100.00%,0.00%,7,7,87,8.00% +126423,865,3412,State-funded primary,114,50,64,43.90%,56.10%,18,15.80%,22,19.30%,15,98,1,13.20%,86.00%,0.90%,39,44,114,38.60% +126424,865,3418,State-funded primary,128,58,70,45.30%,54.70%,0,0.00%,29,22.70%,17,111,0,13.30%,86.70%,0.00%,27,29,128,22.70% +126425,865,3425,State-funded primary,205,103,102,50.20%,49.80%,6,2.90%,28,13.70%,87,118,0,42.40%,57.60%,0.00%,29,30,205,14.60% +126429,865,3430,State-funded primary,308,163,145,52.90%,47.10%,8,2.60%,24,7.80%,101,206,1,32.80%,66.90%,0.30%,44,44,308,14.30% +126430,865,3435,State-funded primary,86,44,42,51.20%,48.80%,1,1.20%,15,17.40%,3,83,0,3.50%,96.50%,0.00%,4,4,86,4.70% +126431,865,3437,State-funded primary,184,89,95,48.40%,51.60%,4,2.20%,42,22.80%,13,171,0,7.10%,92.90%,0.00%,27,27,184,14.70% +126435,865,3449,State-funded primary,200,100,100,50.00%,50.00%,4,2.00%,17,8.50%,10,189,1,5.00%,94.50%,0.50%,12,14,200,7.00% +126438,865,3453,State-funded primary,59,22,37,37.30%,62.70%,4,6.80%,4,6.80%,2,57,0,3.40%,96.60%,0.00%,2,2,59,3.40% +126439,865,3454,State-funded primary,119,58,61,48.70%,51.30%,0,0.00%,16,13.40%,3,116,0,2.50%,97.50%,0.00%,11,11,119,9.20% +126440,866,3455,State-funded primary,201,97,104,48.30%,51.70%,1,0.50%,35,17.40%,54,147,0,26.90%,73.10%,0.00%,63,67,201,33.30% +126443,866,3458,State-funded primary,177,112,65,63.30%,36.70%,0,0.00%,10,5.60%,59,118,0,33.30%,66.70%,0.00%,30,31,142,21.80% +126444,865,3459,State-funded primary,61,31,30,50.80%,49.20%,1,1.60%,11,18.00%,2,59,0,3.30%,96.70%,0.00%,8,8,61,13.10% +126445,865,3460,State-funded primary,151,71,80,47.00%,53.00%,5,3.30%,19,12.60%,14,137,0,9.30%,90.70%,0.00%,19,23,151,15.20% +126446,865,3461,State-funded primary,75,32,43,42.70%,57.30%,0,0.00%,8,10.70%,3,72,0,4.00%,96.00%,0.00%,9,9,75,12.00% +126458,865,4070,State-funded secondary,1019,473,546,46.40%,53.60%,31,3.00%,207,20.30%,59,954,6,5.80%,93.60%,0.60%,140,168,1019,16.50% +126473,865,4610,State-funded secondary,594,228,366,38.40%,61.60%,24,4.00%,132,22.20%,85,507,2,14.30%,85.40%,0.30%,125,136,594,22.90% +126475,865,5201,State-funded primary,268,120,148,44.80%,55.20%,4,1.50%,34,12.70%,4,264,0,1.50%,98.50%,0.00%,19,19,268,7.10% +126479,865,5205,State-funded primary,199,89,110,44.70%,55.30%,32,16.10%,32,16.10%,27,172,0,13.60%,86.40%,0.00%,68,72,199,36.20% +126480,865,5206,State-funded primary,207,101,106,48.80%,51.20%,42,20.30%,43,20.80%,36,171,0,17.40%,82.60%,0.00%,110,111,207,53.60% +126481,865,5207,State-funded primary,142,67,75,47.20%,52.80%,4,2.80%,24,16.90%,20,122,0,14.10%,85.90%,0.00%,29,27,128,21.10% +126482,865,5208,State-funded primary,169,94,75,55.60%,44.40%,4,2.40%,15,8.90%,26,140,3,15.40%,82.80%,1.80%,20,22,155,14.20% +126483,865,5209,State-funded primary,295,137,158,46.40%,53.60%,6,2.00%,68,23.10%,42,252,1,14.20%,85.40%,0.30%,61,65,295,22.00% +126489,865,5215,State-funded primary,284,152,132,53.50%,46.50%,7,2.50%,44,15.50%,14,269,1,4.90%,94.70%,0.40%,79,83,284,29.20% +126492,865,5218,State-funded primary,289,139,150,48.10%,51.90%,7,2.40%,45,15.60%,27,261,1,9.30%,90.30%,0.30%,34,36,289,12.50% +126493,865,5219,State-funded primary,242,113,129,46.70%,53.30%,14,5.80%,67,27.70%,28,213,1,11.60%,88.00%,0.40%,15,16,242,6.60% +126510,865,5415,State-funded secondary,890,468,422,52.60%,47.40%,20,2.20%,81,9.10%,38,852,0,4.30%,95.70%,0.00%,185,185,781,23.70% +126512,865,6001,Independent school,407,259,148,63.60%,36.40%,3,0.70%,92,22.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126513,865,6016,Independent school,524,448,76,85.50%,14.50%,0,0.00%,69,13.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126516,865,6013,Independent school,1010,442,568,43.80%,56.20%,0,0.00%,165,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126517,865,6014,Independent school,204,92,112,45.10%,54.90%,3,1.50%,43,21.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126518,865,6022,Independent school,220,90,130,40.90%,59.10%,1,0.50%,35,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126519,865,6006,Independent school,428,428,0,100.00%,0.00%,4,0.90%,138,32.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126521,865,6004,Independent school,223,111,112,49.80%,50.20%,0,0.00%,49,22.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126522,865,6009,Independent school,556,261,295,46.90%,53.10%,4,0.70%,96,17.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126523,865,6005,Independent school,96,37,59,38.50%,61.50%,4,4.20%,8,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126524,865,6023,Independent school,254,132,122,52.00%,48.00%,0,0.00%,58,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126526,865,6010,Independent school,209,94,115,45.00%,55.00%,1,0.50%,25,12.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126528,865,6026,Independent school,182,91,91,50.00%,50.00%,4,2.20%,40,22.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126532,865,6007,Independent school,873,440,433,50.40%,49.60%,0,0.00%,228,26.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126533,865,6028,Independent school,230,111,119,48.30%,51.70%,0,0.00%,15,6.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126535,865,6008,Independent school,156,62,94,39.70%,60.30%,127,81.40%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126536,866,6001,Independent school,77,45,32,58.40%,41.60%,1,1.30%,7,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126542,865,6024,Independent school,35,12,23,34.30%,65.70%,12,34.30%,23,65.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126549,866,7006,State-funded special school,265,79,186,29.80%,70.20%,265,100.00%,0,0.00%,29,236,0,10.90%,89.10%,0.00%,109,103,220,46.80% +126550,865,7007,State-funded special school,97,23,74,23.70%,76.30%,97,100.00%,0,0.00%,1,96,0,1.00%,99.00%,0.00%,61,64,97,66.00% +126562,925,1010,State-funded nursery,80,41,39,51.30%,48.80%,0,0.00%,9,11.30%,18,62,0,22.50%,77.50%,0.00%,2,0,0,0.00% +126563,925,1011,State-funded nursery,99,43,56,43.40%,56.60%,0,0.00%,0,0.00%,2,97,0,2.00%,98.00%,0.00%,2,0,0,0.00% +126564,925,1012,State-funded nursery,51,20,31,39.20%,60.80%,1,2.00%,13,25.50%,27,24,0,52.90%,47.10%,0.00%,0,0,0,0.00% +126565,826,1090,State-funded nursery,34,12,22,35.30%,64.70%,0,0.00%,7,20.60%,16,18,0,47.10%,52.90%,0.00%,0,0,0,0.00% +126620,317,6077,Independent school,118,54,64,45.80%,54.20%,0,0.00%,4,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +126705,373,7040,State-funded special school,96,16,80,16.70%,83.30%,96,100.00%,0,0.00%,0,96,0,0.00%,100.00%,0.00%,79,83,96,86.50% +126712,373,7041,State-funded special school,95,15,80,15.80%,84.20%,94,98.90%,1,1.10%,6,89,0,6.30%,93.70%,0.00%,75,80,95,84.20% +126911,838,3700,State-funded primary,519,266,253,51.30%,48.70%,14,2.70%,114,22.00%,30,489,0,5.80%,94.20%,0.00%,181,179,476,37.60% +127003,935,6083,Independent school,27,0,27,0.00%,100.00%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +127046,317,3527,State-funded primary,877,459,418,52.30%,47.70%,22,2.50%,74,8.40%,720,143,14,82.10%,16.30%,1.60%,81,89,827,10.80% +127133,838,3701,State-funded primary,427,215,212,50.40%,49.60%,11,2.60%,114,26.70%,3,424,0,0.70%,99.30%,0.00%,112,113,427,26.50% +127715,344,7215,State-funded special school,116,25,91,21.60%,78.40%,115,99.10%,1,0.90%,1,115,0,0.90%,99.10%,0.00%,78,90,116,77.60% +127802,352,7749,State-funded special school,150,42,108,28.00%,72.00%,150,100.00%,0,0.00%,25,125,0,16.70%,83.30%,0.00%,82,91,150,60.70% +128077,884,3393,State-funded primary,633,303,330,47.90%,52.10%,10,1.60%,97,15.30%,141,490,2,22.30%,77.40%,0.30%,229,222,585,37.90% +128078,855,6021,Independent school,45,3,42,6.70%,93.30%,42,93.30%,1,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +128088,872,1109,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +129252,908,6095,Independent school,14,2,12,14.30%,85.70%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +129342,334,6905,State-funded secondary,899,476,423,52.90%,47.10%,22,2.40%,201,22.40%,20,879,0,2.20%,97.80%,0.00%,416,428,841,50.90% +129466,355,3803,State-funded primary,456,233,223,51.10%,48.90%,8,1.80%,85,18.60%,202,250,4,44.30%,54.80%,0.90%,234,222,412,53.90% +129511,926,6154,Independent school,105,56,49,53.30%,46.70%,2,1.90%,40,38.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +129571,342,6089,Independent school,4,2,2,50.00%,50.00%,2,50.00%,2,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +129645,856,4724,State-funded secondary,391,391,0,100.00%,0.00%,3,0.80%,20,5.10%,306,76,9,78.30%,19.40%,2.30%,82,93,391,23.80% +129650,850,2722,State-funded primary,413,214,199,51.80%,48.20%,9,2.20%,44,10.70%,35,378,0,8.50%,91.50%,0.00%,78,82,413,19.90% +129823,840,3520,State-funded primary,288,134,154,46.50%,53.50%,8,2.80%,91,31.60%,8,280,0,2.80%,97.20%,0.00%,159,159,265,60.00% +130095,304,3605,State-funded primary,868,429,439,49.40%,50.60%,29,3.30%,104,12.00%,761,104,3,87.70%,12.00%,0.30%,161,168,821,20.50% +130239,205,6402,Independent school,425,206,219,48.50%,51.50%,0,0.00%,63,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130243,206,6383,Independent school,109,49,60,45.00%,55.00%,0,0.00%,4,3.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130244,330,6113,Independent school,161,82,79,50.90%,49.10%,0,0.00%,6,3.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130247,870,6905,State-funded secondary,891,323,568,36.30%,63.70%,21,2.40%,135,15.20%,266,617,8,29.90%,69.20%,0.90%,279,278,660,42.10% +130254,826,2351,State-funded primary,333,170,163,51.10%,48.90%,3,0.90%,38,11.40%,69,264,0,20.70%,79.30%,0.00%,140,142,312,45.50% +130255,891,2937,State-funded primary,395,213,182,53.90%,46.10%,0,0.00%,46,11.60%,74,321,0,18.70%,81.30%,0.00%,140,139,357,38.90% +130256,808,2362,State-funded primary,528,243,285,46.00%,54.00%,7,1.30%,36,6.80%,37,491,0,7.00%,93.00%,0.00%,53,55,474,11.60% +130257,803,2340,State-funded primary,227,95,132,41.90%,58.10%,8,3.50%,35,15.40%,84,143,0,37.00%,63.00%,0.00%,27,27,227,11.90% +130259,342,2070,State-funded primary,642,304,338,47.40%,52.60%,6,0.90%,120,18.70%,74,568,0,11.50%,88.50%,0.00%,346,348,558,62.40% +130261,888,2833,State-funded primary,208,107,101,51.40%,48.60%,5,2.40%,6,2.90%,12,196,0,5.80%,94.20%,0.00%,22,22,208,10.60% +130262,888,2832,State-funded primary,207,106,101,51.20%,48.80%,5,2.40%,49,23.70%,8,199,0,3.90%,96.10%,0.00%,78,78,207,37.70% +130270,896,2725,State-funded primary,295,136,159,46.10%,53.90%,9,3.10%,70,23.70%,5,290,0,1.70%,98.30%,0.00%,120,110,260,42.30% +130274,383,6119,Independent school,40,40,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130278,850,6034,Independent school,136,58,78,42.60%,57.40%,2,1.50%,6,4.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130283,925,6041,Independent school,26,14,12,53.80%,46.20%,0,0.00%,7,26.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130285,350,6017,Independent school,172,0,172,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130286,355,6040,Independent school,264,264,0,100.00%,0.00%,1,0.40%,29,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130296,341,2218,State-funded primary,191,91,100,47.60%,52.40%,2,1.00%,39,20.40%,39,152,0,20.40%,79.60%,0.00%,126,126,174,72.40% +130302,204,2533,State-funded primary,461,245,216,53.10%,46.90%,24,5.20%,76,16.50%,90,363,8,19.50%,78.70%,1.70%,103,95,410,23.20% +130303,204,2534,State-funded primary,546,276,270,50.50%,49.50%,18,3.30%,79,14.50%,163,382,1,29.90%,70.00%,0.20%,117,120,501,24.00% +130305,336,3024,State-funded primary,437,212,225,48.50%,51.50%,8,1.80%,70,16.00%,128,309,0,29.30%,70.70%,0.00%,225,227,437,51.90% +130312,840,2748,State-funded primary,214,107,107,50.00%,50.00%,3,1.40%,16,7.50%,15,199,0,7.00%,93.00%,0.00%,7,7,214,3.30% +130316,838,1101,State-funded AP school,38,12,26,31.60%,68.40%,31,81.60%,6,15.80%,0,38,0,0.00%,100.00%,0.00%,22,24,38,63.20% +130318,352,6040,Independent school,224,224,0,100.00%,0.00%,0,0.00%,21,9.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130323,335,6009,Independent school,54,33,21,61.10%,38.90%,0,0.00%,10,18.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130324,344,2274,State-funded primary,408,173,235,42.40%,57.60%,15,3.70%,48,11.80%,23,385,0,5.60%,94.40%,0.00%,77,74,370,20.00% +130325,850,2775,State-funded primary,196,97,99,49.50%,50.50%,6,3.10%,35,17.90%,11,185,0,5.60%,94.40%,0.00%,97,97,196,49.50% +130327,351,3351,State-funded primary,226,114,112,50.40%,49.60%,10,4.40%,38,16.80%,62,164,0,27.40%,72.60%,0.00%,65,65,209,31.10% +130328,825,2354,State-funded primary,431,211,220,49.00%,51.00%,10,2.30%,21,4.90%,176,255,0,40.80%,59.20%,0.00%,50,51,431,11.80% +130336,888,2836,State-funded primary,483,221,262,45.80%,54.20%,11,2.30%,58,12.00%,8,475,0,1.70%,98.30%,0.00%,224,215,415,51.80% +130340,301,2071,State-funded primary,670,289,381,43.10%,56.90%,44,6.60%,81,12.10%,231,430,9,34.50%,64.20%,1.30%,175,180,619,29.10% +130342,202,2842,State-funded primary,218,127,91,58.30%,41.70%,6,2.80%,50,22.90%,140,78,0,64.20%,35.80%,0.00%,81,83,197,42.10% +130343,320,2082,State-funded primary,454,224,230,49.30%,50.70%,14,3.10%,74,16.30%,163,291,0,35.90%,64.10%,0.00%,70,77,405,19.00% +130344,919,1101,State-funded AP school,2,0,2,0.00%,100.00%,0,0.00%,2,100.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +130349,919,1105,State-funded AP school,7,1,6,14.30%,85.70%,3,42.90%,4,57.10%,0,7,0,0.00%,100.00%,0.00%,1,1,7,14.30% +130351,382,2154,State-funded primary,464,234,230,50.40%,49.60%,7,1.50%,47,10.10%,370,94,0,79.70%,20.30%,0.00%,81,82,416,19.70% +130352,211,2922,State-funded primary,610,289,321,47.40%,52.60%,29,4.80%,93,15.20%,514,96,0,84.30%,15.70%,0.00%,299,293,564,52.00% +130353,856,7217,State-funded special school,103,26,77,25.20%,74.80%,102,99.00%,1,1.00%,59,44,0,57.30%,42.70%,0.00%,37,37,103,35.90% +130357,301,2070,State-funded primary,574,271,303,47.20%,52.80%,32,5.60%,70,12.20%,284,290,0,49.50%,50.50%,0.00%,166,173,518,33.40% +130358,309,2078,State-funded primary,403,191,212,47.40%,52.60%,9,2.20%,63,15.60%,280,119,4,69.50%,29.50%,1.00%,133,135,379,35.60% +130359,919,1102,State-funded AP school,8,3,5,37.50%,62.50%,0,0.00%,8,100.00%,0,8,0,0.00%,100.00%,0.00%,5,5,8,62.50% +130362,919,7044,State-funded special school,85,22,63,25.90%,74.10%,85,100.00%,0,0.00%,4,81,0,4.70%,95.30%,0.00%,25,30,85,35.30% +130367,909,6048,Independent school,14,4,10,28.60%,71.40%,13,92.90%,1,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130371,856,7218,State-funded special school,418,117,301,28.00%,72.00%,414,99.00%,0,0.00%,134,284,0,32.10%,67.90%,0.00%,177,155,352,44.00% +130372,871,2255,State-funded primary,694,313,381,45.10%,54.90%,19,2.70%,130,18.70%,615,79,0,88.60%,11.40%,0.00%,182,189,627,30.10% +130375,384,2203,State-funded primary,215,106,109,49.30%,50.70%,4,1.90%,24,11.20%,7,208,0,3.30%,96.70%,0.00%,38,40,192,20.80% +130378,808,2371,State-funded primary,378,162,216,42.90%,57.10%,3,0.80%,29,7.70%,96,282,0,25.40%,74.60%,0.00%,216,212,312,67.90% +130379,937,3216,State-funded primary,104,47,57,45.20%,54.80%,2,1.90%,10,9.60%,3,101,0,2.90%,97.10%,0.00%,10,10,104,9.60% +130380,352,2328,State-funded primary,664,328,336,49.40%,50.60%,19,2.90%,62,9.30%,428,236,0,64.50%,35.50%,0.00%,287,271,602,45.00% +130381,316,2096,State-funded primary,993,498,495,50.20%,49.80%,24,2.40%,108,10.90%,928,56,9,93.50%,5.60%,0.90%,227,243,825,29.50% +130382,342,3208,State-funded primary,393,188,205,47.80%,52.20%,13,3.30%,32,8.10%,40,353,0,10.20%,89.80%,0.00%,170,172,393,43.80% +130384,359,3431,State-funded primary,178,84,94,47.20%,52.80%,8,4.50%,64,36.00%,28,150,0,15.70%,84.30%,0.00%,95,95,178,53.40% +130388,865,3467,State-funded primary,121,63,58,52.10%,47.90%,0,0.00%,14,11.60%,3,118,0,2.50%,97.50%,0.00%,16,16,121,13.20% +130395,341,2221,State-funded primary,442,201,241,45.50%,54.50%,9,2.00%,59,13.30%,386,55,1,87.30%,12.40%,0.20%,232,234,406,57.60% +130396,355,2097,State-funded primary,436,232,204,53.20%,46.80%,6,1.40%,44,10.10%,30,404,2,6.90%,92.70%,0.50%,34,36,407,8.80% +130398,212,6398,Independent school,652,314,338,48.20%,51.80%,1,0.20%,126,19.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130826,302,6081,Independent school,213,0,213,0.00%,100.00%,5,2.30%,36,16.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130854,935,6084,Independent school,1,1,0,100.00%,0.00%,0,0.00%,1,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130855,935,6085,Independent school,6,6,0,100.00%,0.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130856,209,1103,State-funded AP school,75,32,43,42.70%,57.30%,0,0.00%,33,44.00%,2,72,1,2.70%,96.00%,1.30%,35,54,75,72.00% +130857,380,6066,Independent school,137,71,66,51.80%,48.20%,0,0.00%,2,1.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130859,384,2189,State-funded primary,368,166,202,45.10%,54.90%,35,9.50%,41,11.10%,9,359,0,2.40%,97.60%,0.00%,80,82,331,24.80% +130861,850,1004,State-funded nursery,87,42,45,48.30%,51.70%,0,0.00%,29,33.30%,9,78,0,10.30%,89.70%,0.00%,0,0,0,0.00% +130862,384,2193,State-funded primary,457,236,221,51.60%,48.40%,16,3.50%,67,14.70%,42,415,0,9.20%,90.80%,0.00%,109,111,401,27.70% +130863,384,2192,State-funded primary,284,128,156,45.10%,54.90%,15,5.30%,37,13.00%,14,270,0,4.90%,95.10%,0.00%,94,98,258,38.00% +130864,384,2186,State-funded primary,201,107,94,53.20%,46.80%,3,1.50%,10,5.00%,13,188,0,6.50%,93.50%,0.00%,65,66,149,44.30% +130866,384,2191,State-funded primary,436,212,224,48.60%,51.40%,8,1.80%,85,19.50%,39,397,0,8.90%,91.10%,0.00%,152,157,388,40.50% +130867,937,2623,State-funded primary,651,325,326,49.90%,50.10%,6,0.90%,35,5.40%,126,518,7,19.40%,79.60%,1.10%,60,63,651,9.70% +130868,937,2622,State-funded primary,412,190,222,46.10%,53.90%,6,1.50%,130,31.60%,200,212,0,48.50%,51.50%,0.00%,96,96,412,23.30% +130870,937,2620,State-funded primary,246,104,142,42.30%,57.70%,9,3.70%,37,15.00%,34,211,1,13.80%,85.80%,0.40%,35,35,224,15.60% +130875,937,3212,State-funded primary,162,78,84,48.10%,51.90%,5,3.10%,30,18.50%,9,153,0,5.60%,94.40%,0.00%,45,47,150,31.30% +130877,937,3591,State-funded primary,336,164,172,48.80%,51.20%,4,1.20%,58,17.30%,181,144,11,53.90%,42.90%,3.30%,105,103,299,34.40% +130878,937,3593,State-funded primary,304,159,145,52.30%,47.70%,8,2.60%,31,10.20%,7,297,0,2.30%,97.70%,0.00%,28,33,304,10.90% +130881,937,3215,State-funded primary,130,67,63,51.50%,48.50%,3,2.30%,9,6.90%,2,128,0,1.50%,98.50%,0.00%,10,11,119,9.20% +130883,937,3213,State-funded primary,207,103,104,49.80%,50.20%,5,2.40%,26,12.60%,77,130,0,37.20%,62.80%,0.00%,52,54,207,26.10% +130884,937,3589,State-funded primary,189,98,91,51.90%,48.10%,4,2.10%,21,11.10%,1,188,0,0.50%,99.50%,0.00%,21,22,189,11.60% +130885,937,2625,State-funded primary,639,313,326,49.00%,51.00%,16,2.50%,61,9.50%,115,517,7,18.00%,80.90%,1.10%,75,79,639,12.40% +130886,937,2626,State-funded primary,179,102,77,57.00%,43.00%,6,3.40%,30,16.80%,14,164,1,7.80%,91.60%,0.60%,22,22,179,12.30% +130887,937,2628,State-funded primary,386,180,206,46.60%,53.40%,2,0.50%,44,11.40%,51,335,0,13.20%,86.80%,0.00%,64,65,386,16.80% +130889,937,2629,State-funded primary,682,335,347,49.10%,50.90%,19,2.80%,73,10.70%,84,598,0,12.30%,87.70%,0.00%,235,236,629,37.50% +130893,937,2630,State-funded primary,177,84,93,47.50%,52.50%,4,2.30%,32,18.10%,14,163,0,7.90%,92.10%,0.00%,26,26,177,14.70% +130894,937,2631,State-funded primary,424,210,214,49.50%,50.50%,7,1.70%,27,6.40%,52,372,0,12.30%,87.70%,0.00%,52,55,424,13.00% +130895,937,2632,State-funded primary,468,201,267,42.90%,57.10%,13,2.80%,50,10.70%,55,410,3,11.80%,87.60%,0.60%,74,76,468,16.20% +130896,937,2633,State-funded primary,326,156,170,47.90%,52.10%,8,2.50%,87,26.70%,57,269,0,17.50%,82.50%,0.00%,137,137,326,42.00% +130897,937,2634,State-funded primary,387,186,201,48.10%,51.90%,19,4.90%,68,17.60%,56,331,0,14.50%,85.50%,0.00%,112,114,387,29.50% +130898,937,2635,State-funded primary,108,42,66,38.90%,61.10%,4,3.70%,25,23.10%,27,79,2,25.00%,73.10%,1.90%,36,36,108,33.30% +130902,890,6096,Independent school,11,0,11,0.00%,100.00%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130908,806,6907,State-funded secondary,1530,809,721,52.90%,47.10%,26,1.70%,257,16.80%,136,1371,23,8.90%,89.60%,1.50%,519,553,1283,43.10% +130909,380,6905,State-funded secondary,900,386,514,42.90%,57.10%,22,2.40%,105,11.70%,285,591,24,31.70%,65.70%,2.70%,219,248,900,27.60% +130910,937,3590,State-funded primary,218,107,111,49.10%,50.90%,7,3.20%,29,13.30%,5,213,0,2.30%,97.70%,0.00%,26,26,218,11.90% +130912,213,6905,State-funded secondary,1232,598,634,48.50%,51.50%,27,2.20%,103,8.40%,1063,169,0,86.30%,13.70%,0.00%,540,468,909,51.50% +130913,357,6056,Independent school,5,0,5,0.00%,100.00%,1,20.00%,4,80.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130915,306,2107,State-funded primary,654,327,327,50.00%,50.00%,8,1.20%,82,12.50%,237,417,0,36.20%,63.80%,0.00%,34,36,619,5.80% +130918,210,2856,State-funded primary,558,254,304,45.50%,54.50%,15,2.70%,71,12.70%,105,452,1,18.80%,81.00%,0.20%,111,100,479,20.90% +130919,301,2072,State-funded primary,455,247,208,54.30%,45.70%,10,2.20%,109,24.00%,227,228,0,49.90%,50.10%,0.00%,115,118,409,28.90% +130921,203,2918,State-funded primary,428,212,216,49.50%,50.50%,12,2.80%,90,21.00%,104,324,0,24.30%,75.70%,0.00%,171,173,395,43.80% +130925,382,2153,State-funded primary,672,350,322,52.10%,47.90%,16,2.40%,87,12.90%,416,256,0,61.90%,38.10%,0.00%,204,204,613,33.30% +130927,856,2387,State-funded primary,553,261,292,47.20%,52.80%,6,1.10%,46,8.30%,189,363,1,34.20%,65.60%,0.20%,78,81,521,15.50% +130929,896,3647,State-funded primary,134,71,63,53.00%,47.00%,3,2.20%,1,0.70%,0,134,0,0.00%,100.00%,0.00%,13,14,134,10.40% +130931,893,3160,State-funded primary,154,76,78,49.40%,50.60%,4,2.60%,18,11.70%,4,140,10,2.60%,90.90%,6.50%,16,16,154,10.40% +130932,204,2897,State-funded primary,434,192,242,44.20%,55.80%,17,3.90%,54,12.40%,191,243,0,44.00%,56.00%,0.00%,51,51,415,12.30% +130934,319,2049,State-funded primary,635,283,352,44.60%,55.40%,58,9.10%,76,12.00%,194,439,2,30.60%,69.10%,0.30%,171,173,609,28.40% +130938,886,2682,State-funded primary,413,201,212,48.70%,51.30%,7,1.70%,65,15.70%,11,402,0,2.70%,97.30%,0.00%,55,57,413,13.80% +130940,840,2751,State-funded primary,362,198,164,54.70%,45.30%,10,2.80%,27,7.50%,76,285,1,21.00%,78.70%,0.30%,73,62,287,21.60% +130942,390,7008,State-funded special school,131,37,94,28.20%,71.80%,131,100.00%,0,0.00%,13,118,0,9.90%,90.10%,0.00%,71,61,103,59.20% +130946,840,2750,State-funded primary,216,114,102,52.80%,47.20%,11,5.10%,53,24.50%,2,214,0,0.90%,99.10%,0.00%,80,81,194,41.80% +130948,886,3298,State-funded primary,169,81,88,47.90%,52.10%,7,4.10%,43,25.40%,10,159,0,5.90%,94.10%,0.00%,51,54,169,32.00% +130949,867,2254,State-funded primary,476,239,237,50.20%,49.80%,9,1.90%,66,13.90%,69,405,2,14.50%,85.10%,0.40%,101,104,430,24.20% +130951,937,2637,State-funded primary,216,120,96,55.60%,44.40%,7,3.20%,27,12.50%,129,87,0,59.70%,40.30%,0.00%,39,36,192,18.80% +130952,886,2680,State-funded primary,485,256,229,52.80%,47.20%,11,2.30%,46,9.50%,43,442,0,8.90%,91.10%,0.00%,36,38,420,9.00% +130954,845,2166,State-funded primary,264,141,123,53.40%,46.60%,3,1.10%,26,9.80%,11,253,0,4.20%,95.80%,0.00%,23,25,207,12.10% +130955,359,3432,State-funded primary,177,85,92,48.00%,52.00%,3,1.70%,25,14.10%,17,160,0,9.60%,90.40%,0.00%,37,37,177,20.90% +130958,308,7008,State-funded special school,137,33,104,24.10%,75.90%,137,100.00%,0,0.00%,46,91,0,33.60%,66.40%,0.00%,74,75,135,55.60% +130961,341,7059,State-funded special school,91,33,58,36.30%,63.70%,91,100.00%,0,0.00%,6,85,0,6.60%,93.40%,0.00%,55,42,57,73.70% +130962,931,2608,State-funded primary,430,212,218,49.30%,50.70%,15,3.50%,59,13.70%,99,331,0,23.00%,77.00%,0.00%,16,18,387,4.70% +130964,384,3022,State-funded primary,196,105,91,53.60%,46.40%,5,2.60%,22,11.20%,5,191,0,2.60%,97.40%,0.00%,31,31,196,15.80% +130972,384,2195,State-funded primary,233,120,113,51.50%,48.50%,6,2.60%,28,12.00%,12,221,0,5.20%,94.80%,0.00%,38,40,207,19.30% +130977,384,3023,State-funded primary,230,115,115,50.00%,50.00%,3,1.30%,10,4.30%,6,224,0,2.60%,97.40%,0.00%,10,11,203,5.40% +130978,803,2339,State-funded primary,200,95,105,47.50%,52.50%,6,3.00%,25,12.50%,15,176,9,7.50%,88.00%,4.50%,20,21,200,10.50% +130979,886,6110,Independent school,30,7,23,23.30%,76.70%,29,96.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +130980,380,1107,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +130984,885,1103,State-funded AP school,9,0,9,0.00%,100.00%,2,22.20%,6,66.70%,0,9,0,0.00%,100.00%,0.00%,3,3,9,33.30% +130987,885,1105,State-funded AP school,16,5,11,31.30%,68.80%,6,37.50%,10,62.50%,1,15,0,6.30%,93.80%,0.00%,13,13,16,81.30% +130991,884,1109,State-funded AP school,51,16,35,31.40%,68.60%,12,23.50%,31,60.80%,3,48,0,5.90%,94.10%,0.00%,26,27,51,52.90% +130995,316,2097,State-funded primary,939,470,469,50.10%,49.90%,10,1.10%,69,7.30%,798,127,14,85.00%,13.50%,1.50%,225,232,821,28.30% +130996,891,7041,State-funded special school,161,36,125,22.40%,77.60%,160,99.40%,1,0.60%,7,154,0,4.30%,95.70%,0.00%,72,67,136,49.30% +130998,302,3516,State-funded primary,222,107,115,48.20%,51.80%,9,4.10%,26,11.70%,74,148,0,33.30%,66.70%,0.00%,35,36,201,17.90% +131001,938,3366,State-funded primary,414,191,223,46.10%,53.90%,4,1.00%,58,14.00%,14,400,0,3.40%,96.60%,0.00%,42,42,414,10.10% +131002,856,3435,State-funded primary,548,252,296,46.00%,54.00%,6,1.10%,75,13.70%,203,345,0,37.00%,63.00%,0.00%,115,120,521,23.00% +131004,860,6029,Independent school,92,22,70,23.90%,76.10%,92,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131005,892,3326,State-funded primary,454,217,237,47.80%,52.20%,4,0.90%,88,19.40%,84,370,0,18.50%,81.50%,0.00%,231,219,406,53.90% +131006,892,3327,State-funded primary,233,115,118,49.40%,50.60%,0,0.00%,56,24.00%,19,214,0,8.20%,91.80%,0.00%,112,99,201,49.30% +131007,892,3329,State-funded primary,484,238,246,49.20%,50.80%,4,0.80%,91,18.80%,78,406,0,16.10%,83.90%,0.00%,159,154,420,36.70% +131008,355,2096,State-funded primary,333,179,154,53.80%,46.20%,7,2.10%,47,14.10%,18,312,3,5.40%,93.70%,0.90%,106,108,307,35.20% +131013,317,2069,State-funded primary,689,344,345,49.90%,50.10%,25,3.60%,69,10.00%,450,238,1,65.30%,34.50%,0.10%,97,98,629,15.60% +131015,355,6053,Independent school,232,0,232,0.00%,100.00%,15,6.50%,109,47.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131016,933,6195,Independent school,46,10,36,21.70%,78.30%,46,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131017,892,3328,State-funded primary,203,91,112,44.80%,55.20%,2,1.00%,27,13.30%,72,130,1,35.50%,64.00%,0.50%,95,92,183,50.30% +131018,857,6004,Independent school,21,1,20,4.80%,95.20%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131019,800,3449,State-funded primary,405,202,203,49.90%,50.10%,7,1.70%,54,13.30%,33,372,0,8.10%,91.90%,0.00%,40,42,405,10.40% +131020,886,3902,State-funded primary,297,127,170,42.80%,57.20%,27,9.10%,33,11.10%,25,272,0,8.40%,91.60%,0.00%,115,117,297,39.40% +131021,929,2531,State-funded primary,716,370,346,51.70%,48.30%,20,2.80%,158,22.10%,37,679,0,5.20%,94.80%,0.00%,354,361,621,58.10% +131022,342,7007,State-funded special school,116,40,76,34.50%,65.50%,116,100.00%,0,0.00%,4,112,0,3.40%,96.60%,0.00%,61,28,59,47.50% +131023,211,7169,State-funded special school,90,41,49,45.60%,54.40%,90,100.00%,0,0.00%,68,22,0,75.60%,24.40%,0.00%,51,47,85,55.30% +131025,888,6029,Independent school,127,0,127,0.00%,100.00%,127,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131026,302,6104,Independent school,324,324,0,100.00%,0.00%,1,0.30%,32,9.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131030,352,2330,State-funded primary,665,329,336,49.50%,50.50%,20,3.00%,97,14.60%,119,546,0,17.90%,82.10%,0.00%,82,82,612,13.40% +131033,893,6097,Independent school,5,0,5,0.00%,100.00%,1,20.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131036,394,2182,State-funded primary,206,108,98,52.40%,47.60%,0,0.00%,39,18.90%,3,203,0,1.50%,98.50%,0.00%,98,98,187,52.40% +131037,355,2095,State-funded primary,558,286,272,51.30%,48.70%,8,1.40%,77,13.80%,96,452,10,17.20%,81.00%,1.80%,183,169,499,33.90% +131038,350,3369,State-funded primary,289,128,161,44.30%,55.70%,3,1.00%,50,17.30%,10,279,0,3.50%,96.50%,0.00%,40,42,259,16.20% +131042,306,6088,Independent school,154,72,82,46.80%,53.20%,2,1.30%,31,20.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131057,320,2083,State-funded primary,213,112,101,52.60%,47.40%,24,11.30%,45,21.10%,81,132,0,38.00%,62.00%,0.00%,37,39,191,20.40% +131059,304,6076,Independent school,119,0,119,0.00%,100.00%,0,0.00%,4,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131062,204,6906,State-funded secondary,1036,437,599,42.20%,57.80%,58,5.60%,148,14.30%,570,466,0,55.00%,45.00%,0.00%,511,503,901,55.80% +131064,931,6125,Independent school,36,2,34,5.60%,94.40%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131065,341,6906,State-funded secondary,1327,558,769,42.00%,58.00%,19,1.40%,230,17.30%,451,876,0,34.00%,66.00%,0.00%,640,702,1177,59.60% +131066,869,1111,State-funded AP school,55,19,36,34.50%,65.50%,28,50.90%,13,23.60%,2,53,0,3.60%,96.40%,0.00%,23,25,53,47.20% +131068,850,7079,State-funded special school,139,39,100,28.10%,71.90%,139,100.00%,0,0.00%,14,125,0,10.10%,89.90%,0.00%,53,54,127,42.50% +131070,890,3816,State-funded primary,563,283,280,50.30%,49.70%,2,0.40%,82,14.60%,17,546,0,3.00%,97.00%,0.00%,161,165,563,29.30% +131072,936,3065,State-funded primary,180,90,90,50.00%,50.00%,8,4.40%,27,15.00%,61,119,0,33.90%,66.10%,0.00%,64,65,165,39.40% +131073,860,3497,State-funded primary,202,102,100,50.50%,49.50%,1,0.50%,9,4.50%,7,195,0,3.50%,96.50%,0.00%,29,29,202,14.40% +131077,390,2238,State-funded primary,401,213,188,53.10%,46.90%,4,1.00%,46,11.50%,25,376,0,6.20%,93.80%,0.00%,134,136,370,36.80% +131079,940,7031,State-funded special school,232,56,176,24.10%,75.90%,232,100.00%,0,0.00%,30,201,1,12.90%,86.60%,0.40%,74,76,232,32.80% +131081,390,2239,State-funded primary,207,114,93,55.10%,44.90%,11,5.30%,33,15.90%,10,197,0,4.80%,95.20%,0.00%,45,51,181,28.20% +131082,373,3432,State-funded primary,497,245,252,49.30%,50.70%,9,1.80%,119,23.90%,90,407,0,18.10%,81.90%,0.00%,268,233,416,56.00% +131083,356,3529,State-funded primary,445,201,244,45.20%,54.80%,38,8.50%,67,15.10%,86,359,0,19.30%,80.70%,0.00%,180,178,403,44.20% +131089,821,2295,State-funded primary,918,430,488,46.80%,53.20%,25,2.70%,170,18.50%,775,142,1,84.40%,15.50%,0.10%,249,256,833,30.70% +131096,309,2079,State-funded primary,382,186,196,48.70%,51.30%,6,1.60%,28,7.30%,55,327,0,14.40%,85.60%,0.00%,85,89,307,29.00% +131099,856,7221,State-funded special school,186,46,140,24.70%,75.30%,186,100.00%,0,0.00%,57,129,0,30.60%,69.40%,0.00%,84,65,142,45.80% +131100,919,1108,State-funded AP school,5,2,3,40.00%,60.00%,0,0.00%,3,60.00%,0,5,0,0.00%,100.00%,0.00%,3,3,5,60.00% +131102,301,7005,State-funded special school,302,85,217,28.10%,71.90%,295,97.70%,7,2.30%,120,182,0,39.70%,60.30%,0.00%,134,97,224,43.30% +131103,319,2048,State-funded primary,442,221,221,50.00%,50.00%,3,0.70%,62,14.00%,134,304,4,30.30%,68.80%,0.90%,138,138,406,34.00% +131105,341,3956,State-funded primary,477,225,252,47.20%,52.80%,18,3.80%,73,15.30%,18,459,0,3.80%,96.20%,0.00%,55,55,425,12.90% +131106,390,2234,State-funded primary,449,233,216,51.90%,48.10%,4,0.90%,22,4.90%,16,433,0,3.60%,96.40%,0.00%,14,15,414,3.60% +131107,390,2235,State-funded primary,224,110,114,49.10%,50.90%,4,1.80%,30,13.40%,14,210,0,6.30%,93.80%,0.00%,83,84,178,47.20% +131108,878,2090,State-funded primary,218,107,111,49.10%,50.90%,10,4.60%,16,7.30%,14,204,0,6.40%,93.60%,0.00%,19,19,187,10.20% +131109,203,3670,State-funded primary,648,330,318,50.90%,49.10%,24,3.70%,190,29.30%,239,405,4,36.90%,62.50%,0.60%,157,165,574,28.70% +131111,383,3928,State-funded primary,458,232,226,50.70%,49.30%,2,0.40%,74,16.20%,7,451,0,1.50%,98.50%,0.00%,86,81,417,19.40% +131112,936,3932,State-funded primary,627,333,294,53.10%,46.90%,16,2.60%,77,12.30%,181,446,0,28.90%,71.10%,0.00%,52,53,627,8.50% +131116,850,2777,State-funded primary,218,100,118,45.90%,54.10%,34,15.60%,38,17.40%,21,197,0,9.60%,90.40%,0.00%,97,98,218,45.00% +131117,850,2776,State-funded primary,254,114,140,44.90%,55.10%,27,10.60%,51,20.10%,14,240,0,5.50%,94.50%,0.00%,93,95,254,37.40% +131119,892,6012,Independent school,174,174,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131121,302,6106,Independent school,304,0,304,0.00%,100.00%,1,0.30%,45,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131122,373,6028,Independent school,76,76,0,100.00%,0.00%,2,2.60%,2,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131124,815,6037,Independent school,368,150,218,40.80%,59.20%,0,0.00%,16,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131125,936,2960,State-funded primary,428,219,209,51.20%,48.80%,9,2.10%,57,13.30%,56,372,0,13.10%,86.90%,0.00%,89,85,398,21.40% +131127,846,6020,Independent school,52,16,36,30.80%,69.20%,18,34.60%,3,5.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131128,302,6107,Independent school,99,37,62,37.40%,62.60%,2,2.00%,4,4.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131130,938,2249,State-funded primary,197,82,115,41.60%,58.40%,3,1.50%,16,8.10%,7,190,0,3.60%,96.40%,0.00%,9,9,197,4.60% +131131,382,6019,Independent school,142,77,65,54.20%,45.80%,0,0.00%,5,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131134,358,1103,State-funded AP school,39,9,30,23.10%,76.90%,19,48.70%,18,46.20%,1,38,0,2.60%,97.40%,0.00%,22,27,39,69.20% +131136,384,6120,Independent school,50,16,34,32.00%,68.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131138,888,6030,Independent school,12,2,10,16.70%,83.30%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131139,938,6255,Independent school,38,11,27,28.90%,71.10%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131141,204,2898,State-funded primary,334,174,160,52.10%,47.90%,14,4.20%,40,12.00%,141,193,0,42.20%,57.80%,0.00%,183,174,308,56.50% +131144,307,2187,State-funded primary,733,382,351,52.10%,47.90%,11,1.50%,74,10.10%,348,384,1,47.50%,52.40%,0.10%,167,176,684,25.70% +131145,867,2813,State-funded primary,419,215,204,51.30%,48.70%,9,2.10%,43,10.30%,61,358,0,14.60%,85.40%,0.00%,12,14,419,3.30% +131151,941,1010,State-funded nursery,114,53,61,46.50%,53.50%,1,0.90%,1,0.90%,54,60,0,47.40%,52.60%,0.00%,0,0,0,0.00% +131153,336,2116,State-funded primary,309,145,164,46.90%,53.10%,4,1.30%,50,16.20%,211,98,0,68.30%,31.70%,0.00%,135,139,251,55.40% +131156,830,3164,State-funded primary,251,131,120,52.20%,47.80%,2,0.80%,18,7.20%,5,245,1,2.00%,97.60%,0.40%,72,72,224,32.10% +131157,370,2138,State-funded primary,318,156,162,49.10%,50.90%,8,2.50%,46,14.50%,19,299,0,6.00%,94.00%,0.00%,155,148,278,53.20% +131163,888,6032,Independent school,35,15,20,42.90%,57.10%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131164,330,6094,Independent school,77,77,0,100.00%,0.00%,0,0.00%,2,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131165,205,6390,Independent school,647,246,401,38.00%,62.00%,0,0.00%,162,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131168,840,3213,State-funded primary,463,211,252,45.60%,54.40%,5,1.10%,52,11.20%,3,460,0,0.60%,99.40%,0.00%,63,53,393,13.50% +131170,204,6398,Independent school,293,0,293,0.00%,100.00%,29,9.90%,60,20.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131171,893,6099,Independent school,8,8,0,100.00%,0.00%,3,37.50%,5,62.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131173,936,6577,Independent school,502,212,290,42.20%,57.80%,1,0.20%,152,30.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131175,821,1023,State-funded nursery,134,66,68,49.30%,50.70%,2,1.50%,25,18.70%,75,59,0,56.00%,44.00%,0.00%,86,1,2,50.00% +131177,909,2713,State-funded primary,567,280,287,49.40%,50.60%,23,4.10%,44,7.80%,42,525,0,7.40%,92.60%,0.00%,164,167,512,32.60% +131178,333,2181,State-funded primary,478,244,234,51.00%,49.00%,12,2.50%,50,10.50%,282,181,15,59.00%,37.90%,3.10%,137,141,426,33.10% +131181,886,6073,Independent school,83,35,48,42.20%,57.80%,0,0.00%,5,6.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131182,938,1110,State-funded AP school,139,39,100,28.10%,71.90%,30,21.60%,109,78.40%,4,135,0,2.90%,97.10%,0.00%,72,82,139,59.00% +131184,333,2180,State-funded primary,844,392,452,46.40%,53.60%,36,4.30%,110,13.00%,323,516,5,38.30%,61.10%,0.60%,321,325,768,42.30% +131189,938,1109,State-funded AP school,3,2,1,66.70%,33.30%,0,0.00%,3,100.00%,1,2,0,33.30%,66.70%,0.00%,1,0,0,0.00% +131190,826,2353,State-funded primary,454,218,236,48.00%,52.00%,3,0.70%,52,11.50%,133,321,0,29.30%,70.70%,0.00%,101,110,454,24.20% +131192,872,3371,State-funded primary,603,282,321,46.80%,53.20%,9,1.50%,62,10.30%,283,297,23,46.90%,49.30%,3.80%,34,34,560,6.10% +131197,873,3392,State-funded primary,329,147,182,44.70%,55.30%,6,1.80%,35,10.60%,50,277,2,15.20%,84.20%,0.60%,58,60,329,18.20% +131200,390,7009,State-funded special school,57,19,38,33.30%,66.70%,57,100.00%,0,0.00%,5,52,0,8.80%,91.20%,0.00%,22,20,41,48.80% +131201,313,1100,State-funded AP school,101,33,68,32.70%,67.30%,54,53.50%,47,46.50%,12,87,2,11.90%,86.10%,2.00%,64,67,89,75.30% +131203,391,2033,State-funded primary,617,303,314,49.10%,50.90%,12,1.90%,46,7.50%,276,341,0,44.70%,55.30%,0.00%,73,77,617,12.50% +131209,881,2082,State-funded primary,489,229,260,46.80%,53.20%,4,0.80%,54,11.00%,62,426,1,12.70%,87.10%,0.20%,49,62,489,12.70% +131212,333,2183,State-funded primary,445,229,216,51.50%,48.50%,13,2.90%,79,17.80%,88,356,1,19.80%,80.00%,0.20%,205,211,410,51.50% +131213,390,7007,State-funded special school,181,44,137,24.30%,75.70%,180,99.40%,1,0.60%,17,164,0,9.40%,90.60%,0.00%,84,85,181,47.00% +131216,813,2001,State-funded primary,337,160,177,47.50%,52.50%,14,4.20%,32,9.50%,59,278,0,17.50%,82.50%,0.00%,181,177,309,57.30% +131217,876,3179,State-funded primary,201,98,103,48.80%,51.20%,3,1.50%,41,20.40%,4,197,0,2.00%,98.00%,0.00%,112,112,201,55.70% +131218,206,2852,State-funded primary,314,150,164,47.80%,52.20%,19,6.10%,55,17.50%,242,72,0,77.10%,22.90%,0.00%,184,162,259,62.50% +131219,881,5280,State-funded primary,415,202,213,48.70%,51.30%,4,1.00%,90,21.70%,107,308,0,25.80%,74.20%,0.00%,100,107,415,25.80% +131221,929,3922,State-funded primary,28,13,15,46.40%,53.60%,1,3.60%,5,17.90%,0,28,0,0.00%,100.00%,0.00%,1,1,16,6.30% +131223,333,2182,State-funded primary,226,108,118,47.80%,52.20%,5,2.20%,25,11.10%,120,106,0,53.10%,46.90%,0.00%,89,92,206,44.70% +131225,803,2341,State-funded primary,422,201,221,47.60%,52.40%,11,2.60%,64,15.20%,100,321,1,23.70%,76.10%,0.20%,42,46,422,10.90% +131228,359,3433,State-funded primary,394,205,189,52.00%,48.00%,9,2.30%,119,30.20%,62,332,0,15.70%,84.30%,0.00%,186,186,394,47.20% +131231,812,3519,State-funded primary,317,157,160,49.50%,50.50%,5,1.60%,67,21.10%,36,281,0,11.40%,88.60%,0.00%,134,139,290,47.90% +131232,940,1011,State-funded nursery,145,73,72,50.30%,49.70%,7,4.80%,35,24.10%,39,106,0,26.90%,73.10%,0.00%,1,0,0,0.00% +131233,840,2943,State-funded primary,414,194,220,46.90%,53.10%,5,1.20%,57,13.80%,17,397,0,4.10%,95.90%,0.00%,113,113,371,30.50% +131237,210,6391,Independent school,39,6,33,15.40%,84.60%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131238,873,3384,State-funded primary,207,98,109,47.30%,52.70%,5,2.40%,28,13.50%,26,181,0,12.60%,87.40%,0.00%,42,42,207,20.30% +131239,331,2154,State-funded primary,314,156,158,49.70%,50.30%,5,1.60%,54,17.20%,27,283,4,8.60%,90.10%,1.30%,49,47,292,16.10% +131241,331,2155,State-funded primary,270,121,149,44.80%,55.20%,1,0.40%,46,17.00%,157,113,0,58.10%,41.90%,0.00%,129,131,244,53.70% +131246,203,2921,State-funded primary,780,379,401,48.60%,51.40%,25,3.20%,97,12.40%,278,460,42,35.60%,59.00%,5.40%,226,232,741,31.30% +131247,208,2897,State-funded primary,363,176,187,48.50%,51.50%,7,1.90%,29,8.00%,151,212,0,41.60%,58.40%,0.00%,141,135,342,39.50% +131249,916,2177,State-funded primary,261,125,136,47.90%,52.10%,8,3.10%,89,34.10%,85,169,7,32.60%,64.80%,2.70%,113,115,261,44.10% +131250,916,2178,State-funded primary,190,81,109,42.60%,57.40%,9,4.70%,63,33.20%,61,129,0,32.10%,67.90%,0.00%,108,108,190,56.80% +131251,808,3396,State-funded primary,336,151,185,44.90%,55.10%,3,0.90%,41,12.20%,10,326,0,3.00%,97.00%,0.00%,40,43,299,14.40% +131258,888,7116,State-funded special school,126,39,87,31.00%,69.00%,126,100.00%,0,0.00%,5,121,0,4.00%,96.00%,0.00%,35,33,87,37.90% +131259,888,7117,State-funded special school,98,24,74,24.50%,75.50%,98,100.00%,0,0.00%,4,94,0,4.10%,95.90%,0.00%,41,41,96,42.70% +131261,302,6119,Independent school,164,94,70,57.30%,42.70%,0,0.00%,1,0.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131262,213,6906,State-funded secondary,1134,568,566,50.10%,49.90%,27,2.40%,162,14.30%,651,483,0,57.40%,42.60%,0.00%,523,511,987,51.80% +131268,205,6400,Independent school,180,100,80,55.60%,44.40%,2,1.10%,56,31.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131271,350,3373,State-funded primary,436,217,219,49.80%,50.20%,6,1.40%,107,24.50%,83,352,1,19.00%,80.70%,0.20%,179,189,380,49.70% +131272,852,2401,State-funded primary,346,179,167,51.70%,48.30%,7,2.00%,74,21.40%,34,312,0,9.80%,90.20%,0.00%,183,184,345,53.30% +131277,925,7032,State-funded special school,108,18,90,16.70%,83.30%,108,100.00%,0,0.00%,1,107,0,0.90%,99.10%,0.00%,58,67,108,62.00% +131281,344,2001,State-funded primary,452,219,233,48.50%,51.50%,21,4.60%,78,17.30%,22,430,0,4.90%,95.10%,0.00%,285,272,396,68.70% +131285,357,3331,State-funded primary,230,123,107,53.50%,46.50%,7,3.00%,41,17.80%,109,121,0,47.40%,52.60%,0.00%,53,53,206,25.70% +131287,926,3152,State-funded primary,333,163,170,48.90%,51.10%,8,2.40%,40,12.00%,12,321,0,3.60%,96.40%,0.00%,55,56,333,16.80% +131288,302,6109,Independent school,25,11,14,44.00%,56.00%,1,4.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131291,202,6396,Independent school,89,32,57,36.00%,64.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131294,805,1100,State-funded AP school,24,6,18,25.00%,75.00%,5,20.80%,11,45.80%,0,24,0,0.00%,100.00%,0.00%,16,18,24,75.00% +131295,359,7020,State-funded special school,117,25,92,21.40%,78.60%,104,88.90%,13,11.10%,5,112,0,4.30%,95.70%,0.00%,33,34,117,29.10% +131304,317,2071,State-funded primary,657,325,332,49.50%,50.50%,35,5.30%,89,13.50%,544,110,3,82.80%,16.70%,0.50%,112,114,619,18.40% +131306,356,3524,State-funded primary,374,199,175,53.20%,46.80%,7,1.90%,59,15.80%,99,275,0,26.50%,73.50%,0.00%,131,133,374,35.60% +131309,888,3343,State-funded primary,216,99,117,45.80%,54.20%,4,1.90%,26,12.00%,3,213,0,1.40%,98.60%,0.00%,31,31,216,14.40% +131310,307,4036,State-funded secondary,1551,718,833,46.30%,53.70%,85,5.50%,274,17.70%,468,1083,0,30.20%,69.80%,0.00%,243,238,1218,19.50% +131313,341,2222,State-funded primary,345,170,175,49.30%,50.70%,6,1.70%,59,17.10%,85,260,0,24.60%,75.40%,0.00%,182,169,302,56.00% +131316,310,2101,State-funded primary,852,413,439,48.50%,51.50%,22,2.60%,57,6.70%,522,328,2,61.30%,38.50%,0.20%,101,101,809,12.50% +131319,919,7047,State-funded special school,59,6,53,10.20%,89.80%,59,100.00%,0,0.00%,1,58,0,1.70%,98.30%,0.00%,34,39,59,66.10% +131322,830,7000,State-funded special school,45,6,39,13.30%,86.70%,45,100.00%,0,0.00%,0,45,0,0.00%,100.00%,0.00%,33,35,45,77.80% +131325,206,2853,State-funded primary,401,210,191,52.40%,47.60%,6,1.50%,82,20.40%,181,218,2,45.10%,54.40%,0.50%,187,198,358,55.30% +131327,830,6033,Independent school,14,0,14,0.00%,100.00%,13,92.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131330,873,6024,Independent school,34,23,11,67.60%,32.40%,29,85.30%,5,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131331,359,3434,State-funded primary,337,182,155,54.00%,46.00%,7,2.10%,31,9.20%,39,298,0,11.60%,88.40%,0.00%,127,119,301,39.50% +131332,340,3360,State-funded primary,348,190,158,54.60%,45.40%,3,0.90%,23,6.60%,8,340,0,2.30%,97.70%,0.00%,115,121,307,39.40% +131340,208,2898,State-funded primary,340,170,170,50.00%,50.00%,16,4.70%,96,28.20%,126,214,0,37.10%,62.90%,0.00%,215,212,316,67.10% +131341,371,2205,State-funded primary,354,194,160,54.80%,45.20%,4,1.10%,76,21.50%,64,290,0,18.10%,81.90%,0.00%,112,111,317,35.00% +131342,204,6400,Independent school,274,274,0,100.00%,0.00%,9,3.30%,56,20.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131343,204,6401,Independent school,120,56,64,46.70%,53.30%,0,0.00%,21,17.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131348,826,2506,State-funded primary,222,115,107,51.80%,48.20%,3,1.40%,12,5.40%,82,140,0,36.90%,63.10%,0.00%,25,21,177,11.90% +131349,877,3304,State-funded primary,468,233,235,49.80%,50.20%,5,1.10%,45,9.60%,27,441,0,5.80%,94.20%,0.00%,148,150,417,36.00% +131350,896,2729,State-funded primary,220,107,113,48.60%,51.40%,17,7.70%,57,25.90%,17,203,0,7.70%,92.30%,0.00%,127,119,194,61.30% +131351,314,6070,Independent school,40,21,19,52.50%,47.50%,0,0.00%,6,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131353,884,6011,Independent school,48,1,47,2.10%,97.90%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131355,888,6034,Independent school,257,257,0,100.00%,0.00%,0,0.00%,1,0.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131356,846,6043,Independent school,14,6,8,42.90%,57.10%,13,92.90%,1,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131357,380,3379,State-funded primary,468,248,220,53.00%,47.00%,13,2.80%,47,10.00%,82,385,1,17.50%,82.30%,0.20%,135,132,419,31.50% +131359,302,5949,State-funded primary,370,168,202,45.40%,54.60%,5,1.40%,25,6.80%,86,284,0,23.20%,76.80%,0.00%,13,14,343,4.10% +131362,206,6379,Independent school,196,107,89,54.60%,45.40%,1,0.50%,32,16.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131367,916,1104,State-funded AP school,2,2,0,100.00%,0.00%,0,0.00%,2,100.00%,0,2,0,0.00%,100.00%,0.00%,2,2,2,100.00% +131379,354,6036,Independent school,4,0,4,0.00%,100.00%,1,25.00%,3,75.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131381,845,2169,State-funded primary,430,230,200,53.50%,46.50%,8,1.90%,66,15.30%,50,380,0,11.60%,88.40%,0.00%,120,121,430,28.10% +131388,211,6387,Independent school,168,0,168,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131389,889,6005,Independent school,452,0,452,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131395,305,6078,Independent school,92,26,66,28.30%,71.70%,91,98.90%,1,1.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131397,826,2000,State-funded primary,416,213,203,51.20%,48.80%,5,1.20%,36,8.70%,73,336,7,17.50%,80.80%,1.70%,82,86,416,20.70% +131401,831,2001,State-funded primary,404,190,214,47.00%,53.00%,8,2.00%,53,13.10%,24,380,0,5.90%,94.10%,0.00%,163,172,361,47.60% +131403,302,6110,Independent school,136,136,0,100.00%,0.00%,1,0.70%,1,0.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131407,308,2090,State-funded primary,494,232,262,47.00%,53.00%,22,4.50%,42,8.50%,247,247,0,50.00%,50.00%,0.00%,143,147,494,29.80% +131410,803,3300,State-funded primary,205,105,100,51.20%,48.80%,5,2.40%,18,8.80%,106,97,2,51.70%,47.30%,1.00%,16,16,205,7.80% +131411,886,6075,Independent school,304,168,136,55.30%,44.70%,0,0.00%,14,4.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131414,890,2834,State-funded primary,226,118,108,52.20%,47.80%,2,0.90%,35,15.50%,9,217,0,4.00%,96.00%,0.00%,98,88,181,48.60% +131416,811,1014,State-funded nursery,83,45,38,54.20%,45.80%,3,3.60%,7,8.40%,0,83,0,0.00%,100.00%,0.00%,0,0,0,0.00% +131418,304,3602,State-funded primary,197,122,75,61.90%,38.10%,9,4.60%,27,13.70%,136,58,3,69.00%,29.40%,1.50%,75,73,180,40.60% +131420,850,2778,State-funded primary,618,276,342,44.70%,55.30%,10,1.60%,39,6.30%,61,557,0,9.90%,90.10%,0.00%,43,46,618,7.40% +131421,896,2727,State-funded primary,234,97,137,41.50%,58.50%,5,2.10%,35,15.00%,21,213,0,9.00%,91.00%,0.00%,65,61,205,29.80% +131422,886,6076,Independent school,25,6,19,24.00%,76.00%,19,76.00%,6,24.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131425,806,7000,State-funded special school,195,71,124,36.40%,63.60%,195,100.00%,0,0.00%,41,154,0,21.00%,79.00%,0.00%,100,79,151,52.30% +131426,311,2092,State-funded primary,648,322,326,49.70%,50.30%,19,2.90%,46,7.10%,277,368,3,42.70%,56.80%,0.50%,167,169,590,28.60% +131433,335,2245,State-funded primary,543,250,293,46.00%,54.00%,11,2.00%,96,17.70%,21,522,0,3.90%,96.10%,0.00%,158,161,479,33.60% +131435,355,6035,Independent school,476,0,476,0.00%,100.00%,1,0.20%,2,0.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131442,331,2153,State-funded primary,442,218,224,49.30%,50.70%,3,0.70%,46,10.40%,317,124,1,71.70%,28.10%,0.20%,157,160,416,38.50% +131443,909,2714,State-funded primary,269,153,116,56.90%,43.10%,7,2.60%,39,14.50%,2,267,0,0.70%,99.30%,0.00%,78,79,220,35.90% +131447,342,1001,State-funded nursery,61,35,26,57.40%,42.60%,0,0.00%,3,4.90%,2,59,0,3.30%,96.70%,0.00%,0,0,0,0.00% +131450,850,3665,State-funded primary,613,283,330,46.20%,53.80%,31,5.10%,72,11.70%,39,574,0,6.40%,93.60%,0.00%,56,60,613,9.80% +131455,933,6211,Independent school,31,4,27,12.90%,87.10%,31,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131456,919,5213,State-funded primary,203,100,103,49.30%,50.70%,2,1.00%,17,8.40%,7,196,0,3.40%,96.60%,0.00%,7,9,203,4.40% +131457,807,2000,State-funded primary,321,150,171,46.70%,53.30%,10,3.10%,58,18.10%,1,315,5,0.30%,98.10%,1.60%,89,98,291,33.70% +131459,370,2141,State-funded primary,311,162,149,52.10%,47.90%,3,1.00%,32,10.30%,53,256,2,17.00%,82.30%,0.60%,55,57,279,20.40% +131462,825,6031,Independent school,37,21,16,56.80%,43.20%,36,97.30%,1,2.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131465,330,5949,State-funded primary,628,336,292,53.50%,46.50%,8,1.30%,40,6.40%,496,132,0,79.00%,21.00%,0.00%,213,218,628,34.70% +131466,390,2236,State-funded primary,324,148,176,45.70%,54.30%,3,0.90%,51,15.70%,20,304,0,6.20%,93.80%,0.00%,140,138,288,47.90% +131478,309,2080,State-funded primary,290,152,138,52.40%,47.60%,12,4.10%,51,17.60%,257,27,6,88.60%,9.30%,2.10%,59,61,271,22.50% +131479,888,7109,State-funded special school,106,25,81,23.60%,76.40%,106,100.00%,0,0.00%,13,93,0,12.30%,87.70%,0.00%,37,33,94,35.10% +131480,341,2226,State-funded primary,312,172,140,55.10%,44.90%,6,1.90%,92,29.50%,88,224,0,28.20%,71.80%,0.00%,170,153,264,58.00% +131490,925,3169,State-funded primary,195,89,106,45.60%,54.40%,13,6.70%,36,18.50%,19,176,0,9.70%,90.30%,0.00%,147,148,195,75.90% +131504,938,6265,Independent school,19,7,12,36.80%,63.20%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131505,919,2005,State-funded primary,194,96,98,49.50%,50.50%,11,5.70%,42,21.60%,38,156,0,19.60%,80.40%,0.00%,73,71,173,41.00% +131506,351,1100,State-funded AP school,127,51,76,40.20%,59.80%,38,29.90%,60,47.20%,5,121,1,3.90%,95.30%,0.80%,80,93,127,73.20% +131507,803,3440,State-funded primary,445,220,225,49.40%,50.60%,16,3.60%,57,12.80%,31,414,0,7.00%,93.00%,0.00%,64,65,406,16.00% +131511,335,2246,State-funded primary,698,360,338,51.60%,48.40%,17,2.40%,125,17.90%,496,202,0,71.10%,28.90%,0.00%,251,251,625,40.20% +131512,355,4620,State-funded secondary,706,343,363,48.60%,51.40%,47,6.70%,123,17.40%,198,508,0,28.00%,72.00%,0.00%,265,299,706,42.40% +131513,856,2379,State-funded primary,304,160,144,52.60%,47.40%,13,4.30%,44,14.50%,50,254,0,16.40%,83.60%,0.00%,70,68,286,23.80% +131516,850,3669,State-funded primary,312,152,160,48.70%,51.30%,7,2.20%,66,21.20%,15,297,0,4.80%,95.20%,0.00%,48,49,312,15.70% +131518,938,2252,State-funded primary,438,201,237,45.90%,54.10%,13,3.00%,31,7.10%,29,409,0,6.60%,93.40%,0.00%,46,50,438,11.40% +131519,806,2000,State-funded primary,627,311,316,49.60%,50.40%,4,0.60%,92,14.70%,476,151,0,75.90%,24.10%,0.00%,254,238,501,47.50% +131520,212,3645,State-funded primary,358,172,186,48.00%,52.00%,30,8.40%,52,14.50%,142,176,40,39.70%,49.20%,11.20%,136,134,337,39.80% +131522,801,2023,State-funded primary,409,202,207,49.40%,50.60%,7,1.70%,34,8.30%,32,377,0,7.80%,92.20%,0.00%,32,33,409,8.10% +131523,825,2507,State-funded primary,191,86,105,45.00%,55.00%,9,4.70%,24,12.60%,33,158,0,17.30%,82.70%,0.00%,87,87,191,45.50% +131526,384,7056,State-funded special school,97,14,83,14.40%,85.60%,97,100.00%,0,0.00%,1,94,2,1.00%,96.90%,2.10%,64,69,97,71.10% +131527,887,3760,State-funded primary,453,215,238,47.50%,52.50%,8,1.80%,101,22.30%,152,300,1,33.60%,66.20%,0.20%,183,190,413,46.00% +131530,359,7022,State-funded special school,327,85,242,26.00%,74.00%,324,99.10%,3,0.90%,8,312,7,2.40%,95.40%,2.10%,154,136,262,51.90% +131531,850,6085,Independent school,55,8,47,14.50%,85.50%,55,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131534,885,7025,State-funded special school,242,65,177,26.90%,73.10%,226,93.40%,16,6.60%,19,217,6,7.90%,89.70%,2.50%,77,77,242,31.80% +131535,856,1103,State-funded AP school,30,15,15,50.00%,50.00%,4,13.30%,5,16.70%,1,29,0,3.30%,96.70%,0.00%,20,22,30,73.30% +131536,891,6026,Independent school,9,3,6,33.30%,66.70%,6,66.70%,1,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131544,392,7008,State-funded special school,228,65,163,28.50%,71.50%,228,100.00%,0,0.00%,22,206,0,9.60%,90.40%,0.00%,101,88,188,46.80% +131545,840,3522,State-funded primary,352,157,195,44.60%,55.40%,1,0.30%,50,14.20%,10,342,0,2.80%,97.20%,0.00%,102,95,309,30.70% +131547,336,4731,State-funded secondary,635,329,306,51.80%,48.20%,12,1.90%,91,14.30%,263,368,4,41.40%,58.00%,0.60%,314,312,558,55.90% +131551,356,6027,Independent school,23,2,21,8.70%,91.30%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131552,878,7088,State-funded special school,108,0,108,0.00%,100.00%,108,100.00%,0,0.00%,0,108,0,0.00%,100.00%,0.00%,66,76,108,70.40% +131554,356,2116,State-funded primary,464,231,233,49.80%,50.20%,18,3.90%,45,9.70%,46,418,0,9.90%,90.10%,0.00%,51,53,433,12.20% +131556,852,6009,Independent school,18,18,0,100.00%,0.00%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131559,850,7000,State-funded special school,143,44,99,30.80%,69.20%,143,100.00%,0,0.00%,35,108,0,24.50%,75.50%,0.00%,44,36,122,29.50% +131567,886,6113,Independent school,45,26,19,57.80%,42.20%,0,0.00%,1,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131570,383,3929,State-funded primary,209,98,111,46.90%,53.10%,0,0.00%,40,19.10%,23,186,0,11.00%,89.00%,0.00%,26,28,209,13.40% +131574,331,7021,State-funded special school,150,8,142,5.30%,94.70%,150,100.00%,0,0.00%,8,142,0,5.30%,94.70%,0.00%,107,116,150,77.30% +131575,888,6094,Independent school,44,8,36,18.20%,81.80%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131577,310,3512,State-funded primary,666,323,343,48.50%,51.50%,14,2.10%,77,11.60%,258,408,0,38.70%,61.30%,0.00%,81,82,628,13.10% +131579,881,2005,State-funded primary,298,149,149,50.00%,50.00%,6,2.00%,39,13.10%,8,290,0,2.70%,97.30%,0.00%,35,38,298,12.80% +131580,335,2247,State-funded primary,492,248,244,50.40%,49.60%,11,2.20%,71,14.40%,48,444,0,9.80%,90.20%,0.00%,202,207,402,51.50% +131581,335,2248,State-funded primary,212,95,117,44.80%,55.20%,6,2.80%,38,17.90%,11,201,0,5.20%,94.80%,0.00%,99,105,197,53.30% +131584,309,1101,State-funded AP school,53,23,30,43.40%,56.60%,13,24.50%,37,69.80%,16,37,0,30.20%,69.80%,0.00%,31,30,44,68.20% +131587,344,2279,State-funded primary,182,105,77,57.70%,42.30%,2,1.10%,34,18.70%,2,180,0,1.10%,98.90%,0.00%,65,70,152,46.10% +131590,311,2093,State-funded primary,412,192,220,46.60%,53.40%,74,18.00%,55,13.30%,87,313,12,21.10%,76.00%,2.90%,110,110,398,27.60% +131591,333,2186,State-funded primary,464,237,227,51.10%,48.90%,11,2.40%,121,26.10%,180,284,0,38.80%,61.20%,0.00%,123,127,420,30.20% +131595,309,2082,State-funded primary,517,261,256,50.50%,49.50%,24,4.60%,79,15.30%,374,143,0,72.30%,27.70%,0.00%,168,172,462,37.20% +131596,868,1103,State-funded AP school,25,8,17,32.00%,68.00%,3,12.00%,22,88.00%,0,25,0,0.00%,100.00%,0.00%,13,15,25,60.00% +131597,341,2227,State-funded primary,474,207,267,43.70%,56.30%,15,3.20%,125,26.40%,410,60,4,86.50%,12.70%,0.80%,265,250,422,59.20% +131602,938,2254,State-funded primary,177,80,97,45.20%,54.80%,0,0.00%,20,11.30%,26,151,0,14.70%,85.30%,0.00%,5,5,177,2.80% +131603,938,2255,State-funded primary,566,259,307,45.80%,54.20%,23,4.10%,76,13.40%,70,496,0,12.40%,87.60%,0.00%,75,82,566,14.50% +131609,204,6907,State-funded secondary,1115,516,599,46.30%,53.70%,56,5.00%,118,10.60%,545,570,0,48.90%,51.10%,0.00%,553,488,880,55.50% +131611,886,6079,Independent school,136,53,83,39.00%,61.00%,136,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131617,302,2076,State-funded primary,347,175,172,50.40%,49.60%,13,3.70%,33,9.50%,294,53,0,84.70%,15.30%,0.00%,120,121,321,37.70% +131619,335,1101,State-funded AP school,49,18,31,36.70%,63.30%,45,91.80%,3,6.10%,1,48,0,2.00%,98.00%,0.00%,26,31,49,63.30% +131625,317,3528,State-funded primary,894,422,472,47.20%,52.80%,44,4.90%,79,8.80%,752,127,15,84.10%,14.20%,1.70%,150,153,828,18.50% +131626,803,1100,State-funded AP school,71,18,53,25.40%,74.60%,33,46.50%,38,53.50%,2,69,0,2.80%,97.20%,0.00%,35,36,71,50.70% +131629,841,1100,State-funded AP school,36,12,24,33.30%,66.70%,16,44.40%,20,55.60%,0,36,0,0.00%,100.00%,0.00%,24,25,36,69.40% +131638,312,2084,State-funded primary,659,310,349,47.00%,53.00%,28,4.20%,156,23.70%,347,311,1,52.70%,47.20%,0.20%,210,212,598,35.50% +131642,891,2942,State-funded primary,310,172,138,55.50%,44.50%,3,1.00%,38,12.30%,19,291,0,6.10%,93.90%,0.00%,59,63,282,22.30% +131644,807,3396,State-funded primary,250,125,125,50.00%,50.00%,0,0.00%,54,21.60%,1,249,0,0.40%,99.60%,0.00%,111,111,216,51.40% +131652,860,1106,State-funded AP school,30,11,19,36.70%,63.30%,4,13.30%,26,86.70%,0,30,0,0.00%,100.00%,0.00%,13,14,30,46.70% +131657,308,2089,State-funded primary,382,186,196,48.70%,51.30%,12,3.10%,28,7.30%,253,128,1,66.20%,33.50%,0.30%,114,118,366,32.20% +131662,212,6001,Independent school,43,13,30,30.20%,69.80%,39,90.70%,4,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131666,888,6037,Independent school,30,9,21,30.00%,70.00%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131670,826,2001,State-funded primary,142,65,77,45.80%,54.20%,2,1.40%,14,9.90%,55,87,0,38.70%,61.30%,0.00%,23,24,142,16.90% +131672,330,2474,State-funded primary,415,211,204,50.80%,49.20%,1,0.20%,65,15.70%,55,360,0,13.30%,86.70%,0.00%,121,124,415,29.90% +131673,333,3006,State-funded primary,460,230,230,50.00%,50.00%,17,3.70%,64,13.90%,112,348,0,24.30%,75.70%,0.00%,198,201,418,48.10% +131675,205,6395,Independent school,176,62,114,35.20%,64.80%,144,81.80%,32,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131682,317,3514,State-funded primary,390,183,207,46.90%,53.10%,17,4.40%,23,5.90%,82,308,0,21.00%,79.00%,0.00%,44,45,355,12.70% +131685,831,2005,State-funded primary,315,173,142,54.90%,45.10%,8,2.50%,46,14.60%,80,235,0,25.40%,74.60%,0.00%,121,126,315,40.00% +131687,330,6097,Independent school,326,150,176,46.00%,54.00%,6,1.80%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131689,872,2246,State-funded primary,480,231,249,48.10%,51.90%,23,4.80%,83,17.30%,221,259,0,46.00%,54.00%,0.00%,83,84,431,19.50% +131690,206,4325,State-funded secondary,672,287,385,42.70%,57.30%,25,3.70%,111,16.50%,238,434,0,35.40%,64.60%,0.00%,374,415,672,61.80% +131693,874,2453,State-funded primary,213,102,111,47.90%,52.10%,4,1.90%,25,11.70%,66,147,0,31.00%,69.00%,0.00%,18,21,213,9.90% +131695,860,6023,Independent school,56,21,35,37.50%,62.50%,0,0.00%,7,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131697,320,7011,State-funded special school,25,4,21,16.00%,84.00%,22,88.00%,3,12.00%,5,20,0,20.00%,80.00%,0.00%,24,24,25,96.00% +131698,803,2002,State-funded primary,195,96,99,49.20%,50.80%,3,1.50%,22,11.30%,41,154,0,21.00%,79.00%,0.00%,77,78,195,40.00% +131699,803,2003,State-funded primary,208,94,114,45.20%,54.80%,7,3.40%,29,13.90%,37,170,1,17.80%,81.70%,0.50%,57,58,208,27.90% +131705,803,2005,State-funded primary,409,178,231,43.50%,56.50%,13,3.20%,36,8.80%,147,260,2,35.90%,63.60%,0.50%,25,26,409,6.40% +131706,204,2899,State-funded primary,433,211,222,48.70%,51.30%,16,3.70%,33,7.60%,133,300,0,30.70%,69.30%,0.00%,49,54,406,13.30% +131715,878,6060,Independent school,39,9,30,23.10%,76.90%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131717,850,2009,State-funded primary,407,199,208,48.90%,51.10%,4,1.00%,26,6.40%,86,321,0,21.10%,78.90%,0.00%,17,18,407,4.40% +131718,826,2002,State-funded primary,626,306,320,48.90%,51.10%,23,3.70%,37,5.90%,54,571,1,8.60%,91.20%,0.20%,89,89,626,14.20% +131720,888,2838,State-funded primary,210,107,103,51.00%,49.00%,3,1.40%,27,12.90%,7,203,0,3.30%,96.70%,0.00%,19,19,210,9.00% +131722,891,2941,State-funded primary,246,110,136,44.70%,55.30%,0,0.00%,8,3.30%,33,213,0,13.40%,86.60%,0.00%,32,33,211,15.60% +131723,306,1004,State-funded nursery,113,60,53,53.10%,46.90%,0,0.00%,16,14.20%,55,58,0,48.70%,51.30%,0.00%,0,0,0,0.00% +131724,306,1005,State-funded nursery,50,22,28,44.00%,56.00%,0,0.00%,14,28.00%,32,18,0,64.00%,36.00%,0.00%,0,0,0,0.00% +131726,354,4801,State-funded secondary,750,351,399,46.80%,53.20%,25,3.30%,44,5.90%,64,686,0,8.50%,91.50%,0.00%,145,166,750,22.10% +131727,895,2731,State-funded primary,399,204,195,51.10%,48.90%,11,2.80%,24,6.00%,7,392,0,1.80%,98.20%,0.00%,59,61,399,15.30% +131731,309,2083,State-funded primary,322,157,165,48.80%,51.20%,13,4.00%,40,12.40%,216,106,0,67.10%,32.90%,0.00%,98,103,299,34.40% +131734,384,2204,State-funded primary,457,218,239,47.70%,52.30%,10,2.20%,70,15.30%,266,191,0,58.20%,41.80%,0.00%,140,140,413,33.90% +131737,211,2999,State-funded primary,449,220,229,49.00%,51.00%,15,3.30%,47,10.50%,365,84,0,81.30%,18.70%,0.00%,164,162,407,39.80% +131740,206,2857,State-funded primary,335,164,171,49.00%,51.00%,8,2.40%,55,16.40%,91,243,1,27.20%,72.50%,0.30%,187,194,308,63.00% +131741,206,2856,State-funded primary,209,101,108,48.30%,51.70%,9,4.30%,64,30.60%,139,70,0,66.50%,33.50%,0.00%,96,97,193,50.30% +131743,865,6032,Independent school,59,35,24,59.30%,40.70%,1,1.70%,1,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131745,211,6389,Independent school,140,0,140,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131747,210,6907,State-funded secondary,880,880,0,100.00%,0.00%,6,0.70%,80,9.10%,317,478,85,36.00%,54.30%,9.70%,389,438,802,54.60% +131748,886,7069,State-funded special school,352,101,251,28.70%,71.30%,349,99.10%,3,0.90%,31,321,0,8.80%,91.20%,0.00%,126,113,303,37.30% +131749,370,6905,State-funded secondary,907,433,474,47.70%,52.30%,37,4.10%,88,9.70%,121,784,2,13.30%,86.40%,0.20%,385,420,907,46.30% +131751,353,6019,Independent school,15,5,10,33.30%,66.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131752,205,6905,State-funded secondary,1087,527,560,48.50%,51.50%,20,1.80%,138,12.70%,320,712,55,29.40%,65.50%,5.10%,458,431,883,48.80% +131753,307,1103,State-funded AP school,57,17,40,29.80%,70.20%,3,5.30%,54,94.70%,21,36,0,36.80%,63.20%,0.00%,23,35,57,61.40% +131757,309,4037,State-funded secondary,1192,537,655,45.10%,54.90%,30,2.50%,105,8.80%,679,486,27,57.00%,40.80%,2.30%,402,550,1192,46.10% +131767,803,2007,State-funded primary,205,98,107,47.80%,52.20%,14,6.80%,17,8.30%,22,183,0,10.70%,89.30%,0.00%,18,18,205,8.80% +131769,867,1105,State-funded AP school,24,7,17,29.20%,70.80%,6,25.00%,15,62.50%,0,24,0,0.00%,100.00%,0.00%,12,13,24,54.20% +131772,890,1100,State-funded AP school,76,25,51,32.90%,67.10%,4,5.30%,72,94.70%,0,76,0,0.00%,100.00%,0.00%,51,62,76,81.60% +131773,206,2854,State-funded primary,438,217,221,49.50%,50.50%,18,4.10%,48,11.00%,154,284,0,35.20%,64.80%,0.00%,184,178,401,44.40% +131775,301,2075,State-funded primary,1118,516,602,46.20%,53.80%,34,3.00%,139,12.40%,1006,112,0,90.00%,10.00%,0.00%,297,321,1007,31.90% +131778,207,6396,Independent school,7,5,2,71.40%,28.60%,2,28.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131780,886,6084,Independent school,15,9,6,60.00%,40.00%,13,86.70%,2,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131782,916,2179,State-funded primary,210,106,104,50.50%,49.50%,7,3.30%,14,6.70%,5,205,0,2.40%,97.60%,0.00%,20,22,210,10.50% +131783,916,2180,State-funded primary,270,126,144,46.70%,53.30%,9,3.30%,18,6.70%,10,260,0,3.70%,96.30%,0.00%,41,42,270,15.60% +131784,916,2181,State-funded primary,410,207,203,50.50%,49.50%,8,2.00%,60,14.60%,33,377,0,8.00%,92.00%,0.00%,66,70,410,17.10% +131788,307,6080,Independent school,32,14,18,43.80%,56.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131789,846,2001,State-funded primary,377,176,201,46.70%,53.30%,32,8.50%,74,19.60%,44,333,0,11.70%,88.30%,0.00%,133,134,364,36.80% +131792,896,6028,Independent school,17,5,12,29.40%,70.60%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131799,831,2003,State-funded primary,237,120,117,50.60%,49.40%,6,2.50%,12,5.10%,11,226,0,4.60%,95.40%,0.00%,15,17,210,8.10% +131800,341,2229,State-funded primary,495,248,247,50.10%,49.90%,11,2.20%,103,20.80%,388,107,0,78.40%,21.60%,0.00%,214,217,411,52.80% +131802,941,6067,Independent school,25,3,22,12.00%,88.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131806,881,2004,State-funded primary,414,204,210,49.30%,50.70%,8,1.90%,60,14.50%,6,408,0,1.40%,98.60%,0.00%,50,51,414,12.30% +131810,886,6085,Independent school,16,3,13,18.80%,81.30%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131814,891,3290,State-funded primary,405,207,198,51.10%,48.90%,6,1.50%,65,16.00%,6,399,0,1.50%,98.50%,0.00%,30,30,365,8.20% +131815,825,2006,State-funded primary,685,346,339,50.50%,49.50%,12,1.80%,117,17.10%,361,324,0,52.70%,47.30%,0.00%,160,161,607,26.50% +131818,341,2230,State-funded primary,429,209,220,48.70%,51.30%,18,4.20%,121,28.20%,35,394,0,8.20%,91.80%,0.00%,223,222,394,56.30% +131824,208,2900,State-funded primary,633,334,299,52.80%,47.20%,15,2.40%,53,8.40%,207,422,4,32.70%,66.70%,0.60%,147,137,569,24.10% +131827,838,1100,State-funded AP school,35,11,24,31.40%,68.60%,20,57.10%,15,42.90%,0,35,0,0.00%,100.00%,0.00%,25,30,35,85.70% +131830,302,6111,Independent school,39,25,14,64.10%,35.90%,4,10.30%,10,25.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131836,340,3361,State-funded primary,248,125,123,50.40%,49.60%,5,2.00%,55,22.20%,4,244,0,1.60%,98.40%,0.00%,81,84,208,40.40% +131837,341,3960,State-funded primary,216,99,117,45.80%,54.20%,7,3.20%,24,11.10%,36,180,0,16.70%,83.30%,0.00%,109,108,193,56.00% +131838,881,7070,State-funded special school,153,38,115,24.80%,75.20%,151,98.70%,2,1.30%,16,137,0,10.50%,89.50%,0.00%,48,44,122,36.10% +131839,852,2000,State-funded primary,503,251,252,49.90%,50.10%,15,3.00%,65,12.90%,252,250,1,50.10%,49.70%,0.20%,190,191,503,38.00% +131841,203,2922,State-funded primary,595,287,308,48.20%,51.80%,15,2.50%,104,17.50%,353,242,0,59.30%,40.70%,0.00%,206,221,595,37.10% +131842,206,2855,State-funded primary,496,242,254,48.80%,51.20%,19,3.80%,108,21.80%,144,350,2,29.00%,70.60%,0.40%,240,228,418,54.50% +131843,210,2858,State-funded primary,382,195,187,51.00%,49.00%,20,5.20%,54,14.10%,103,279,0,27.00%,73.00%,0.00%,189,176,347,50.70% +131844,301,2073,State-funded primary,635,300,335,47.20%,52.80%,10,1.60%,68,10.70%,347,285,3,54.60%,44.90%,0.50%,164,170,593,28.70% +131845,301,2074,State-funded primary,618,299,319,48.40%,51.60%,11,1.80%,96,15.50%,362,256,0,58.60%,41.40%,0.00%,194,196,564,34.80% +131847,317,2072,State-funded primary,1129,517,612,45.80%,54.20%,31,2.70%,42,3.70%,981,148,0,86.90%,13.10%,0.00%,153,155,1039,14.90% +131848,353,3503,State-funded primary,244,114,130,46.70%,53.30%,16,6.60%,62,25.40%,14,230,0,5.70%,94.30%,0.00%,54,63,222,28.40% +131849,382,2157,State-funded primary,521,244,277,46.80%,53.20%,18,3.50%,67,12.90%,38,445,38,7.30%,85.40%,7.30%,151,153,471,32.50% +131850,821,2001,State-funded primary,455,210,245,46.20%,53.80%,8,1.80%,49,10.80%,256,199,0,56.30%,43.70%,0.00%,208,212,410,51.70% +131851,821,2002,State-funded primary,458,210,248,45.90%,54.10%,15,3.30%,76,16.60%,198,260,0,43.20%,56.80%,0.00%,121,129,417,30.90% +131852,825,2000,State-funded primary,702,346,356,49.30%,50.70%,40,5.70%,126,17.90%,151,551,0,21.50%,78.50%,0.00%,169,172,642,26.80% +131871,309,2085,State-funded primary,415,191,224,46.00%,54.00%,11,2.70%,72,17.30%,150,265,0,36.10%,63.90%,0.00%,29,35,415,8.40% +131874,208,2901,State-funded primary,232,116,116,50.00%,50.00%,11,4.70%,42,18.10%,62,170,0,26.70%,73.30%,0.00%,135,131,216,60.60% +131879,309,2084,State-funded primary,558,272,286,48.70%,51.30%,12,2.20%,75,13.40%,323,233,2,57.90%,41.80%,0.40%,242,225,495,45.50% +131880,352,4770,State-funded secondary,1046,490,556,46.80%,53.20%,38,3.60%,113,10.80%,322,724,0,30.80%,69.20%,0.00%,434,533,1046,51.00% +131884,352,3504,State-funded primary,227,113,114,49.80%,50.20%,6,2.60%,33,14.50%,108,119,0,47.60%,52.40%,0.00%,78,71,206,34.50% +131885,358,7009,State-funded special school,55,7,48,12.70%,87.30%,54,98.20%,1,1.80%,0,54,1,0.00%,98.20%,1.80%,22,37,55,67.30% +131887,356,7510,State-funded special school,39,3,36,7.70%,92.30%,39,100.00%,0,0.00%,0,39,0,0.00%,100.00%,0.00%,25,25,39,64.10% +131889,356,7511,State-funded special school,47,0,47,0.00%,100.00%,47,100.00%,0,0.00%,0,47,0,0.00%,100.00%,0.00%,36,37,47,78.70% +131895,373,6905,State-funded secondary,1205,622,583,51.60%,48.40%,18,1.50%,157,13.00%,467,732,6,38.80%,60.70%,0.50%,620,583,1034,56.40% +131896,373,6906,State-funded secondary,984,493,491,50.10%,49.90%,26,2.60%,146,14.80%,258,694,32,26.20%,70.50%,3.30%,549,607,984,61.70% +131897,315,6905,State-funded secondary,1368,605,763,44.20%,55.80%,31,2.30%,120,8.80%,61,1300,7,4.50%,95.00%,0.50%,437,476,1147,41.50% +131905,840,7000,State-funded special school,64,10,54,15.60%,84.40%,64,100.00%,0,0.00%,1,63,0,1.60%,98.40%,0.00%,48,52,64,81.30% +131907,825,2005,State-funded primary,229,108,121,47.20%,52.80%,2,0.90%,29,12.70%,17,212,0,7.40%,92.60%,0.00%,6,6,203,3.00% +131908,825,2009,State-funded primary,407,202,205,49.60%,50.40%,6,1.50%,30,7.40%,62,343,2,15.20%,84.30%,0.50%,41,42,407,10.30% +131916,304,3603,State-funded primary,202,0,202,0.00%,100.00%,1,0.50%,22,10.90%,35,167,0,17.30%,82.70%,0.00%,3,3,181,1.70% +131917,393,2086,State-funded primary,235,120,115,51.10%,48.90%,3,1.30%,31,13.20%,6,229,0,2.60%,97.40%,0.00%,27,28,204,13.70% +131919,840,3523,State-funded primary,234,114,120,48.70%,51.30%,3,1.30%,75,32.10%,6,228,0,2.60%,97.40%,0.00%,139,136,184,73.90% +131920,330,3435,State-funded primary,421,204,217,48.50%,51.50%,4,1.00%,38,9.00%,125,296,0,29.70%,70.30%,0.00%,31,33,421,7.80% +131930,317,2073,State-funded primary,654,324,330,49.50%,50.50%,12,1.80%,66,10.10%,432,182,40,66.10%,27.80%,6.10%,109,109,604,18.00% +131931,352,2008,State-funded primary,463,230,233,49.70%,50.30%,11,2.40%,93,20.10%,143,320,0,30.90%,69.10%,0.00%,254,228,413,55.20% +131933,825,7035,State-funded special school,78,16,62,20.50%,79.50%,78,100.00%,0,0.00%,7,71,0,9.00%,91.00%,0.00%,31,31,78,39.70% +131936,211,2002,State-funded primary,429,219,210,51.00%,49.00%,15,3.50%,53,12.40%,135,293,1,31.50%,68.30%,0.20%,159,155,400,38.80% +131937,873,6029,Independent school,100,41,59,41.00%,59.00%,2,2.00%,27,27.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131938,352,2340,State-funded primary,464,209,255,45.00%,55.00%,13,2.80%,34,7.30%,80,384,0,17.20%,82.80%,0.00%,268,239,394,60.70% +131940,312,6063,Independent school,240,31,209,12.90%,87.10%,240,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131945,856,4005,State-funded secondary,973,473,500,48.60%,51.40%,8,0.80%,162,16.60%,273,697,3,28.10%,71.60%,0.30%,454,478,967,49.40% +131956,896,2732,State-funded primary,209,113,96,54.10%,45.90%,4,1.90%,25,12.00%,17,192,0,8.10%,91.90%,0.00%,65,67,187,35.80% +131960,381,6010,Independent school,38,4,34,10.50%,89.50%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131962,935,2929,State-funded primary,420,207,213,49.30%,50.70%,10,2.40%,37,8.80%,36,384,0,8.60%,91.40%,0.00%,48,49,420,11.70% +131969,865,4000,State-funded secondary,895,448,447,50.10%,49.90%,34,3.80%,114,12.70%,34,859,2,3.80%,96.00%,0.20%,160,162,733,22.10% +131970,302,2077,State-funded primary,965,442,523,45.80%,54.20%,56,5.80%,242,25.10%,726,239,0,75.20%,24.80%,0.00%,395,406,838,48.40% +131975,933,6200,Independent school,50,9,41,18.00%,82.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131976,936,6579,Independent school,76,9,67,11.80%,88.20%,76,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131978,202,6399,Independent school,201,96,105,47.80%,52.20%,2,1.00%,20,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131979,352,6049,Independent school,126,0,126,0.00%,100.00%,0,0.00%,32,25.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131981,931,6117,Independent school,305,126,179,41.30%,58.70%,1,0.30%,52,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +131986,391,7034,State-funded special school,169,72,97,42.60%,57.40%,161,95.30%,8,4.70%,47,122,0,27.80%,72.20%,0.00%,95,94,162,58.00% +131987,391,7035,State-funded special school,205,71,134,34.60%,65.40%,203,99.00%,2,1.00%,49,156,0,23.90%,76.10%,0.00%,134,112,159,70.40% +131996,873,2449,State-funded primary,417,223,194,53.50%,46.50%,10,2.40%,48,11.50%,110,307,0,26.40%,73.60%,0.00%,85,87,417,20.90% +132003,869,6014,Independent school,54,7,47,13.00%,87.00%,54,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132007,330,2478,State-funded primary,452,207,245,45.80%,54.20%,4,0.90%,23,5.10%,49,401,2,10.80%,88.70%,0.40%,33,35,424,8.30% +132013,931,6118,Independent school,301,165,136,54.80%,45.20%,1,0.30%,33,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132014,384,1007,State-funded nursery,108,51,57,47.20%,52.80%,5,4.60%,11,10.20%,47,61,0,43.50%,56.50%,0.00%,0,0,0,0.00% +132018,336,1010,State-funded nursery,168,73,95,43.50%,56.50%,5,3.00%,12,7.10%,24,144,0,14.30%,85.70%,0.00%,0,0,9,0.00% +132025,852,2001,State-funded primary,646,284,362,44.00%,56.00%,23,3.60%,109,16.90%,50,590,6,7.70%,91.30%,0.90%,305,306,646,47.40% +132027,815,1100,State-funded AP school,7,1,6,14.30%,85.70%,1,14.30%,2,28.60%,1,6,0,14.30%,85.70%,0.00%,5,5,7,71.40% +132031,873,2452,State-funded primary,362,171,191,47.20%,52.80%,8,2.20%,83,22.90%,26,336,0,7.20%,92.80%,0.00%,108,114,362,31.50% +132033,342,1101,State-funded AP school,44,14,30,31.80%,68.20%,6,13.60%,38,86.40%,0,44,0,0.00%,100.00%,0.00%,25,35,44,79.50% +132047,816,2013,State-funded primary,372,182,190,48.90%,51.10%,12,3.20%,52,14.00%,8,362,2,2.20%,97.30%,0.50%,17,17,352,4.80% +132048,931,6119,Independent school,124,51,73,41.10%,58.90%,17,13.70%,50,40.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132051,889,7107,State-funded special school,207,60,147,29.00%,71.00%,207,100.00%,0,0.00%,83,124,0,40.10%,59.90%,0.00%,85,78,177,44.10% +132056,887,3756,State-funded primary,671,342,329,51.00%,49.00%,7,1.00%,77,11.50%,182,489,0,27.10%,72.90%,0.00%,69,79,621,12.70% +132057,931,2610,State-funded primary,415,193,222,46.50%,53.50%,19,4.60%,74,17.80%,38,376,1,9.20%,90.60%,0.20%,54,55,398,13.80% +132058,316,4037,State-funded secondary,1577,777,800,49.30%,50.70%,6,0.40%,111,7.00%,1136,440,1,72.00%,27.90%,0.10%,597,723,1577,45.80% +132060,885,2921,State-funded primary,443,228,215,51.50%,48.50%,8,1.80%,81,18.30%,5,437,1,1.10%,98.60%,0.20%,93,89,404,22.00% +132064,866,2005,State-funded primary,378,176,202,46.60%,53.40%,10,2.60%,116,30.70%,126,252,0,33.30%,66.70%,0.00%,163,170,317,53.60% +132066,203,6299,Independent school,179,91,88,50.80%,49.20%,4,2.20%,19,10.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132069,938,6258,Independent school,16,0,16,0.00%,100.00%,8,50.00%,8,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132073,335,2249,State-funded primary,476,245,231,51.50%,48.50%,7,1.50%,29,6.10%,18,458,0,3.80%,96.20%,0.00%,54,57,425,13.40% +132074,330,2479,State-funded primary,733,358,375,48.80%,51.20%,17,2.30%,119,16.20%,508,204,21,69.30%,27.80%,2.90%,302,293,662,44.30% +132076,335,2250,State-funded primary,459,217,242,47.30%,52.70%,19,4.10%,85,18.50%,254,205,0,55.30%,44.70%,0.00%,155,160,409,39.10% +132077,212,1102,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +132079,888,6046,Independent school,14,3,11,21.40%,78.60%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132086,894,2202,State-funded primary,375,191,184,50.90%,49.10%,10,2.70%,59,15.70%,59,316,0,15.70%,84.30%,0.00%,217,219,345,63.50% +132089,871,2256,State-funded primary,1650,818,832,49.60%,50.40%,33,2.00%,204,12.40%,944,644,62,57.20%,39.00%,3.80%,469,484,1540,31.40% +132091,919,2008,State-funded primary,438,218,220,49.80%,50.20%,7,1.60%,55,12.60%,64,374,0,14.60%,85.40%,0.00%,63,69,402,17.20% +132093,865,2003,State-funded primary,405,200,205,49.40%,50.60%,14,3.50%,69,17.00%,19,386,0,4.70%,95.30%,0.00%,108,110,405,27.20% +132095,888,6040,Independent school,18,7,11,38.90%,61.10%,0,0.00%,9,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132097,887,6006,Independent school,172,69,103,40.10%,59.90%,172,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132099,382,6021,Independent school,251,142,109,56.60%,43.40%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132104,885,1001,State-funded nursery,98,47,51,48.00%,52.00%,0,0.00%,0,0.00%,41,57,0,41.80%,58.20%,0.00%,0,0,0,0.00% +132105,919,2007,State-funded primary,225,107,118,47.60%,52.40%,13,5.80%,40,17.80%,74,151,0,32.90%,67.10%,0.00%,80,82,225,36.40% +132119,341,6046,Independent school,378,174,204,46.00%,54.00%,1,0.30%,65,17.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132120,830,6024,Independent school,14,2,12,14.30%,85.70%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132121,356,2119,State-funded primary,497,243,254,48.90%,51.10%,19,3.80%,40,8.00%,81,416,0,16.30%,83.70%,0.00%,277,276,442,62.40% +132128,889,1100,State-funded AP school,79,21,58,26.60%,73.40%,10,12.70%,69,87.30%,2,77,0,2.50%,97.50%,0.00%,53,62,79,78.50% +132130,929,1100,State-funded AP school,21,8,13,38.10%,61.90%,1,4.80%,19,90.50%,1,20,0,4.80%,95.20%,0.00%,16,17,21,81.00% +132131,860,1105,State-funded AP school,41,9,32,22.00%,78.00%,2,4.90%,39,95.10%,1,40,0,2.40%,97.60%,0.00%,25,26,41,63.40% +132133,831,1103,State-funded AP school,45,12,33,26.70%,73.30%,0,0.00%,42,93.30%,12,33,0,26.70%,73.30%,0.00%,25,29,45,64.40% +132134,317,6071,Independent school,261,123,138,47.10%,52.90%,0,0.00%,11,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132137,204,3000,State-funded primary,225,113,112,50.20%,49.80%,13,5.80%,39,17.30%,70,155,0,31.10%,68.90%,0.00%,86,85,204,41.70% +132140,333,2189,State-funded primary,459,223,236,48.60%,51.40%,9,2.00%,94,20.50%,33,426,0,7.20%,92.80%,0.00%,147,150,414,36.20% +132141,392,2087,State-funded primary,422,194,228,46.00%,54.00%,2,0.50%,23,5.50%,10,412,0,2.40%,97.60%,0.00%,114,117,377,31.00% +132142,881,2013,State-funded primary,414,192,222,46.40%,53.60%,17,4.10%,40,9.70%,61,352,1,14.70%,85.00%,0.20%,114,120,414,29.00% +132145,390,2237,State-funded primary,213,120,93,56.30%,43.70%,2,0.90%,30,14.10%,35,178,0,16.40%,83.60%,0.00%,85,91,196,46.40% +132147,355,2098,State-funded primary,646,323,323,50.00%,50.00%,16,2.50%,118,18.30%,308,332,6,47.70%,51.40%,0.90%,316,294,587,50.10% +132148,886,7070,State-funded special school,232,72,160,31.00%,69.00%,217,93.50%,15,6.50%,20,212,0,8.60%,91.40%,0.00%,78,71,186,38.20% +132151,213,1053,State-funded nursery,72,22,50,30.60%,69.40%,4,5.60%,30,41.70%,49,23,0,68.10%,31.90%,0.00%,16,0,0,0.00% +132152,373,2364,State-funded primary,489,255,234,52.10%,47.90%,6,1.20%,38,7.80%,32,457,0,6.50%,93.50%,0.00%,35,34,451,7.50% +132153,355,7029,State-funded special school,307,79,228,25.70%,74.30%,306,99.70%,1,0.30%,61,246,0,19.90%,80.10%,0.00%,182,184,307,59.90% +132155,359,7018,State-funded special school,64,2,62,3.10%,96.90%,64,100.00%,0,0.00%,1,63,0,1.60%,98.40%,0.00%,44,45,64,70.30% +132164,881,2015,State-funded primary,563,274,289,48.70%,51.30%,16,2.80%,69,12.30%,23,538,2,4.10%,95.60%,0.40%,83,86,563,15.30% +132169,315,2092,State-funded primary,434,221,213,50.90%,49.10%,6,1.40%,92,21.20%,165,269,0,38.00%,62.00%,0.00%,175,166,389,42.70% +132170,909,2716,State-funded primary,127,63,64,49.60%,50.40%,11,8.70%,23,18.10%,2,125,0,1.60%,98.40%,0.00%,55,56,127,44.10% +132172,840,2003,State-funded primary,244,116,128,47.50%,52.50%,7,2.90%,64,26.20%,15,229,0,6.10%,93.90%,0.00%,151,144,230,62.60% +132176,341,2232,State-funded primary,292,143,149,49.00%,51.00%,8,2.70%,50,17.10%,140,152,0,47.90%,52.10%,0.00%,134,136,256,53.10% +132179,925,3507,State-funded primary,372,192,180,51.60%,48.40%,11,3.00%,77,20.70%,37,335,0,9.90%,90.10%,0.00%,90,95,372,25.50% +132183,380,2198,State-funded primary,440,204,236,46.40%,53.60%,11,2.50%,96,21.80%,55,385,0,12.50%,87.50%,0.00%,281,268,390,68.70% +132185,380,2197,State-funded primary,421,194,227,46.10%,53.90%,8,1.90%,43,10.20%,173,248,0,41.10%,58.90%,0.00%,144,142,382,37.20% +132188,342,2072,State-funded primary,211,103,108,48.80%,51.20%,0,0.00%,42,19.90%,31,180,0,14.70%,85.30%,0.00%,74,76,192,39.60% +132190,892,6013,Independent school,79,42,37,53.20%,46.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132194,891,2946,State-funded primary,316,157,159,49.70%,50.30%,1,0.30%,16,5.10%,35,281,0,11.10%,88.90%,0.00%,38,38,316,12.00% +132195,876,2725,State-funded primary,253,127,126,50.20%,49.80%,7,2.80%,28,11.10%,16,237,0,6.30%,93.70%,0.00%,128,130,235,55.30% +132196,801,2027,State-funded primary,521,240,281,46.10%,53.90%,21,4.00%,127,24.40%,62,459,0,11.90%,88.10%,0.00%,193,170,436,39.00% +132197,336,2117,State-funded primary,412,197,215,47.80%,52.20%,1,0.20%,52,12.60%,274,138,0,66.50%,33.50%,0.00%,223,222,382,58.10% +132198,343,3383,State-funded primary,205,99,106,48.30%,51.70%,1,0.50%,29,14.10%,13,192,0,6.30%,93.70%,0.00%,89,82,181,45.30% +132199,803,2008,State-funded primary,362,171,191,47.20%,52.80%,6,1.70%,32,8.80%,36,326,0,9.90%,90.10%,0.00%,85,88,362,24.30% +132201,330,2482,State-funded primary,449,219,230,48.80%,51.20%,1,0.20%,99,22.00%,377,72,0,84.00%,16.00%,0.00%,189,194,401,48.40% +132203,308,2092,State-funded primary,688,340,348,49.40%,50.60%,32,4.70%,72,10.50%,194,475,19,28.20%,69.00%,2.80%,138,149,637,23.40% +132208,343,3384,State-funded primary,355,185,170,52.10%,47.90%,1,0.30%,130,36.60%,115,240,0,32.40%,67.60%,0.00%,217,202,323,62.50% +132209,811,3511,State-funded primary,238,122,116,51.30%,48.70%,10,4.20%,46,19.30%,25,213,0,10.50%,89.50%,0.00%,77,78,238,32.80% +132210,826,2005,State-funded primary,312,150,162,48.10%,51.90%,8,2.60%,23,7.40%,117,195,0,37.50%,62.50%,0.00%,54,55,312,17.60% +132211,856,2000,State-funded primary,615,290,325,47.20%,52.80%,11,1.80%,98,15.90%,242,373,0,39.30%,60.70%,0.00%,267,253,576,43.90% +132212,850,2011,State-funded primary,414,211,203,51.00%,49.00%,13,3.10%,38,9.20%,38,375,1,9.20%,90.60%,0.20%,41,41,414,9.90% +132215,879,2729,State-funded primary,389,195,194,50.10%,49.90%,8,2.10%,97,24.90%,30,354,5,7.70%,91.00%,1.30%,185,189,343,55.10% +132217,380,4112,State-funded secondary,1167,549,618,47.00%,53.00%,47,4.00%,128,11.00%,21,1146,0,1.80%,98.20%,0.00%,209,239,1040,23.00% +132221,380,2203,State-funded primary,404,188,216,46.50%,53.50%,8,2.00%,33,8.20%,12,392,0,3.00%,97.00%,0.00%,22,22,404,5.40% +132225,830,2011,State-funded primary,311,138,173,44.40%,55.60%,26,8.40%,69,22.20%,27,267,17,8.70%,85.90%,5.50%,127,123,289,42.60% +132226,855,2003,State-funded primary,608,306,302,50.30%,49.70%,7,1.20%,78,12.80%,7,599,2,1.20%,98.50%,0.30%,81,82,608,13.50% +132227,933,2333,State-funded primary,326,159,167,48.80%,51.20%,4,1.20%,27,8.30%,13,304,9,4.00%,93.30%,2.80%,65,68,326,20.90% +132228,816,2015,State-funded primary,401,214,187,53.40%,46.60%,7,1.70%,29,7.20%,38,363,0,9.50%,90.50%,0.00%,84,81,376,21.50% +132229,866,2009,State-funded primary,343,185,158,53.90%,46.10%,27,7.90%,44,12.80%,87,255,1,25.40%,74.30%,0.30%,108,110,317,34.70% +132231,333,7017,State-funded special school,214,62,152,29.00%,71.00%,214,100.00%,0,0.00%,89,125,0,41.60%,58.40%,0.00%,110,74,143,51.70% +132232,333,7018,State-funded special school,147,46,101,31.30%,68.70%,147,100.00%,0,0.00%,31,116,0,21.10%,78.90%,0.00%,69,70,147,47.60% +132233,333,7019,State-funded special school,231,68,163,29.40%,70.60%,231,100.00%,0,0.00%,24,207,0,10.40%,89.60%,0.00%,116,90,162,55.60% +132236,823,2001,State-funded primary,247,115,132,46.60%,53.40%,9,3.60%,15,6.10%,9,238,0,3.60%,96.40%,0.00%,23,23,208,11.10% +132237,212,6403,Independent school,172,66,106,38.40%,61.60%,3,1.70%,24,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132240,861,2000,State-funded primary,420,218,202,51.90%,48.10%,4,1.00%,63,15.00%,43,377,0,10.20%,89.80%,0.00%,62,66,389,17.00% +132241,352,2341,State-funded primary,550,255,295,46.40%,53.60%,13,2.40%,136,24.70%,137,413,0,24.90%,75.10%,0.00%,380,339,482,70.30% +132242,891,2947,State-funded primary,452,209,243,46.20%,53.80%,6,1.30%,40,8.80%,60,392,0,13.30%,86.70%,0.00%,39,37,407,9.10% +132243,891,2948,State-funded primary,430,219,211,50.90%,49.10%,3,0.70%,92,21.40%,78,352,0,18.10%,81.90%,0.00%,172,163,382,42.70% +132245,202,2843,State-funded primary,637,300,337,47.10%,52.90%,22,3.50%,72,11.30%,414,223,0,65.00%,35.00%,0.00%,299,306,598,51.20% +132246,821,2004,State-funded primary,748,369,379,49.30%,50.70%,14,1.90%,119,15.90%,251,489,8,33.60%,65.40%,1.10%,93,97,748,13.00% +132247,877,2729,State-funded primary,167,83,84,49.70%,50.30%,4,2.40%,24,14.40%,53,114,0,31.70%,68.30%,0.00%,66,64,159,40.30% +132250,891,3782,State-funded primary,326,144,182,44.20%,55.80%,4,1.20%,92,28.20%,102,224,0,31.30%,68.70%,0.00%,131,135,295,45.80% +132251,925,2248,State-funded primary,404,207,197,51.20%,48.80%,21,5.20%,59,14.60%,21,383,0,5.20%,94.80%,0.00%,79,82,404,20.30% +132253,309,2088,State-funded primary,260,131,129,50.40%,49.60%,19,7.30%,40,15.40%,202,58,0,77.70%,22.30%,0.00%,110,129,239,54.00% +132256,308,4043,State-funded secondary,1547,758,789,49.00%,51.00%,75,4.80%,142,9.20%,215,1303,29,13.90%,84.20%,1.90%,201,200,1214,16.50% +132260,860,3000,State-funded primary,240,117,123,48.80%,51.30%,8,3.30%,24,10.00%,3,237,0,1.30%,98.80%,0.00%,32,32,240,13.30% +132261,330,2477,State-funded primary,772,385,387,49.90%,50.10%,8,1.00%,74,9.60%,249,518,5,32.30%,67.10%,0.60%,64,67,772,8.70% +132263,313,2078,State-funded primary,464,217,247,46.80%,53.20%,29,6.30%,99,21.30%,333,131,0,71.80%,28.20%,0.00%,139,144,410,35.10% +132264,313,2079,State-funded primary,467,240,227,51.40%,48.60%,8,1.70%,103,22.10%,195,272,0,41.80%,58.20%,0.00%,154,157,425,36.90% +132266,313,2081,State-funded primary,429,211,218,49.20%,50.80%,20,4.70%,62,14.50%,246,182,1,57.30%,42.40%,0.20%,157,170,395,43.00% +132268,936,4468,State-funded secondary,783,407,376,52.00%,48.00%,30,3.80%,172,22.00%,121,659,3,15.50%,84.20%,0.40%,151,171,783,21.80% +132349,811,3512,State-funded primary,420,216,204,51.40%,48.60%,10,2.40%,47,11.20%,19,401,0,4.50%,95.50%,0.00%,102,102,400,25.50% +132711,210,6908,State-funded secondary,863,844,19,97.80%,2.20%,11,1.30%,69,8.00%,264,581,18,30.60%,67.30%,2.10%,309,334,737,45.30% +132727,320,6905,State-funded secondary,1092,466,626,42.70%,57.30%,36,3.30%,150,13.70%,625,466,1,57.20%,42.70%,0.10%,387,371,891,41.60% +132731,860,7000,State-funded special school,81,12,69,14.80%,85.20%,80,98.80%,1,1.20%,0,81,0,0.00%,100.00%,0.00%,47,51,81,63.00% +132732,382,6026,Independent school,60,18,42,30.00%,70.00%,38,63.30%,21,35.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132735,860,6024,Independent school,55,6,49,10.90%,89.10%,55,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132736,204,6407,Independent school,124,0,124,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132738,888,6047,Independent school,93,46,47,49.50%,50.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132741,355,1101,State-funded AP school,31,7,24,22.60%,77.40%,3,9.70%,28,90.30%,3,28,0,9.70%,90.30%,0.00%,23,25,31,80.60% +132743,330,6101,Independent school,16,4,12,25.00%,75.00%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132749,889,6007,Independent school,201,201,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132750,335,6010,Independent school,407,327,80,80.30%,19.70%,3,0.70%,18,4.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132760,925,6045,Independent school,358,181,177,50.60%,49.40%,2,0.60%,53,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132763,874,2456,State-funded primary,634,299,335,47.20%,52.80%,14,2.20%,82,12.90%,163,471,0,25.70%,74.30%,0.00%,118,118,634,18.60% +132764,886,2689,State-funded primary,417,193,224,46.30%,53.70%,10,2.40%,50,12.00%,37,380,0,8.90%,91.10%,0.00%,99,100,417,24.00% +132766,311,2094,State-funded primary,621,300,321,48.30%,51.70%,8,1.30%,78,12.60%,66,550,5,10.60%,88.60%,0.80%,39,40,621,6.40% +132768,877,2730,State-funded primary,265,128,137,48.30%,51.70%,4,1.50%,19,7.20%,36,229,0,13.60%,86.40%,0.00%,8,8,225,3.60% +132770,891,3293,State-funded primary,426,215,211,50.50%,49.50%,5,1.20%,40,9.40%,31,395,0,7.30%,92.70%,0.00%,144,141,392,36.00% +132771,929,7024,State-funded special school,98,14,84,14.30%,85.70%,98,100.00%,0,0.00%,0,98,0,0.00%,100.00%,0.00%,66,74,98,75.50% +132772,893,6096,Independent school,22,4,18,18.20%,81.80%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132776,306,6094,Independent school,12,3,9,25.00%,75.00%,4,33.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132778,878,2724,State-funded primary,430,215,215,50.00%,50.00%,20,4.70%,97,22.60%,75,355,0,17.40%,82.60%,0.00%,156,149,386,38.60% +132786,826,2006,State-funded primary,179,93,86,52.00%,48.00%,1,0.60%,28,15.60%,63,116,0,35.20%,64.80%,0.00%,32,32,179,17.90% +132787,826,2007,State-funded primary,412,214,198,51.90%,48.10%,6,1.50%,61,14.80%,138,274,0,33.50%,66.50%,0.00%,53,54,412,13.10% +132788,207,6399,Independent school,79,28,51,35.40%,64.60%,4,5.10%,8,10.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132789,316,2101,State-funded primary,468,220,248,47.00%,53.00%,18,3.80%,77,16.50%,390,69,9,83.30%,14.70%,1.90%,114,124,412,30.10% +132791,204,6408,Independent school,64,36,28,56.30%,43.80%,0,0.00%,8,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132793,341,2233,State-funded primary,411,202,209,49.10%,50.90%,9,2.20%,92,22.40%,26,385,0,6.30%,93.70%,0.00%,116,117,411,28.50% +132795,383,2512,State-funded primary,436,215,221,49.30%,50.70%,7,1.60%,45,10.30%,68,366,2,15.60%,83.90%,0.50%,69,68,403,16.90% +132796,341,2234,State-funded primary,531,265,266,49.90%,50.10%,13,2.40%,102,19.20%,148,383,0,27.90%,72.10%,0.00%,157,159,415,38.30% +132797,211,6390,Independent school,138,0,138,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132799,393,1021,State-funded nursery,79,35,44,44.30%,55.70%,6,7.60%,9,11.40%,2,77,0,2.50%,97.50%,0.00%,21,7,8,87.50% +132800,203,2924,State-funded primary,443,224,219,50.60%,49.40%,9,2.00%,86,19.40%,239,204,0,54.00%,46.00%,0.00%,116,118,388,30.40% +132801,850,2015,State-funded primary,645,308,337,47.80%,52.20%,15,2.30%,48,7.40%,87,557,1,13.50%,86.40%,0.20%,52,53,645,8.20% +132802,850,2016,State-funded primary,176,73,103,41.50%,58.50%,4,2.30%,27,15.30%,73,103,0,41.50%,58.50%,0.00%,71,74,176,42.00% +132806,336,2118,State-funded primary,464,213,251,45.90%,54.10%,12,2.60%,55,11.90%,318,146,0,68.50%,31.50%,0.00%,204,209,417,50.10% +132808,808,2003,State-funded primary,254,129,125,50.80%,49.20%,7,2.80%,16,6.30%,17,237,0,6.70%,93.30%,0.00%,10,10,209,4.80% +132812,316,2104,State-funded primary,379,187,192,49.30%,50.70%,9,2.40%,64,16.90%,271,67,41,71.50%,17.70%,10.80%,107,109,348,31.30% +132815,380,1012,State-funded nursery,159,67,92,42.10%,57.90%,20,12.60%,50,31.40%,78,81,0,49.10%,50.90%,0.00%,23,0,0,0.00% +132816,301,1100,State-funded AP school,69,27,42,39.10%,60.90%,2,2.90%,14,20.30%,16,48,5,23.20%,69.60%,7.20%,20,31,69,44.90% +132820,885,2920,State-funded primary,441,215,226,48.80%,51.20%,4,0.90%,91,20.60%,108,333,0,24.50%,75.50%,0.00%,97,99,402,24.60% +132824,856,1100,State-funded AP school,14,2,12,14.30%,85.70%,13,92.90%,1,7.10%,0,14,0,0.00%,100.00%,0.00%,11,11,14,78.60% +132827,203,2925,State-funded primary,425,196,229,46.10%,53.90%,13,3.10%,65,15.30%,207,217,1,48.70%,51.10%,0.20%,167,161,384,41.90% +132828,888,6048,Independent school,56,9,47,16.10%,83.90%,56,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132832,865,2005,State-funded primary,199,103,96,51.80%,48.20%,8,4.00%,13,6.50%,5,194,0,2.50%,97.50%,0.00%,39,41,199,20.60% +132835,909,2717,State-funded primary,259,129,130,49.80%,50.20%,8,3.10%,57,22.00%,7,252,0,2.70%,97.30%,0.00%,87,90,259,34.70% +132848,320,6501,Independent school,101,0,101,0.00%,100.00%,0,0.00%,5,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132855,929,6046,Independent school,24,3,21,12.50%,87.50%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +132905,352,7061,State-funded special school,199,63,136,31.70%,68.30%,196,98.50%,3,1.50%,72,127,0,36.20%,63.80%,0.00%,105,80,139,57.60% +132927,803,3441,State-funded primary,151,86,65,57.00%,43.00%,0,0.00%,25,16.60%,9,142,0,6.00%,94.00%,0.00%,14,14,151,9.30% +133060,888,1050,State-funded nursery,172,79,93,45.90%,54.10%,0,0.00%,18,10.50%,134,38,0,77.90%,22.10%,0.00%,0,0,0,0.00% +133114,883,6905,State-funded secondary,1074,538,536,50.10%,49.90%,26,2.40%,152,14.20%,270,795,9,25.10%,74.00%,0.80%,394,436,1074,40.60% +133164,892,1109,State-funded AP school,74,18,56,24.30%,75.70%,20,27.00%,9,12.20%,42,25,7,56.80%,33.80%,9.50%,9,14,29,48.30% +133177,886,3904,State-funded primary,406,186,220,45.80%,54.20%,32,7.90%,72,17.70%,57,349,0,14.00%,86.00%,0.00%,194,198,354,55.90% +133233,865,3469,State-funded primary,56,29,27,51.80%,48.20%,2,3.60%,8,14.30%,3,53,0,5.40%,94.60%,0.00%,16,16,56,28.60% +133255,881,3254,State-funded primary,460,226,234,49.10%,50.90%,12,2.60%,146,31.70%,156,302,2,33.90%,65.70%,0.40%,142,168,420,40.00% +133261,333,3007,State-funded primary,467,202,265,43.30%,56.70%,11,2.40%,52,11.10%,217,250,0,46.50%,53.50%,0.00%,68,69,417,16.50% +133262,341,6082,Independent school,37,10,27,27.00%,73.00%,37,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133264,909,2718,State-funded primary,117,58,59,49.60%,50.40%,2,1.70%,11,9.40%,3,114,0,2.60%,97.40%,0.00%,45,46,104,44.20% +133269,891,3298,State-funded primary,227,103,124,45.40%,54.60%,0,0.00%,26,11.50%,5,222,0,2.20%,97.80%,0.00%,35,31,209,14.80% +133270,894,3366,State-funded primary,653,323,330,49.50%,50.50%,10,1.50%,156,23.90%,134,519,0,20.50%,79.50%,0.00%,237,243,546,44.50% +133272,891,3781,State-funded primary,326,159,167,48.80%,51.20%,0,0.00%,67,20.60%,38,288,0,11.70%,88.30%,0.00%,52,52,291,17.90% +133273,891,3780,State-funded primary,220,97,123,44.10%,55.90%,2,0.90%,39,17.70%,33,187,0,15.00%,85.00%,0.00%,71,71,189,37.60% +133274,891,3779,State-funded primary,420,213,207,50.70%,49.30%,4,1.00%,53,12.60%,163,257,0,38.80%,61.20%,0.00%,121,125,381,32.80% +133277,891,3775,State-funded primary,624,293,331,47.00%,53.00%,5,0.80%,126,20.20%,200,423,1,32.10%,67.80%,0.20%,162,162,580,27.90% +133278,891,3776,State-funded primary,452,212,240,46.90%,53.10%,2,0.40%,33,7.30%,20,432,0,4.40%,95.60%,0.00%,32,33,417,7.90% +133284,358,2077,State-funded primary,430,218,212,50.70%,49.30%,4,0.90%,49,11.40%,103,327,0,24.00%,76.00%,0.00%,86,87,400,21.80% +133285,350,6018,Independent school,121,121,0,100.00%,0.00%,0,0.00%,2,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133286,353,2110,State-funded primary,223,108,115,48.40%,51.60%,0,0.00%,35,15.70%,56,167,0,25.10%,74.90%,0.00%,44,46,202,22.80% +133288,211,2003,State-funded primary,362,190,172,52.50%,47.50%,6,1.70%,22,6.10%,101,261,0,27.90%,72.10%,0.00%,151,157,309,50.80% +133289,211,4298,State-funded secondary,510,0,510,0.00%,100.00%,26,5.10%,51,10.00%,108,402,0,21.20%,78.80%,0.00%,195,281,510,55.10% +133291,890,2835,State-funded primary,419,192,227,45.80%,54.20%,7,1.70%,94,22.40%,70,349,0,16.70%,83.30%,0.00%,240,249,377,66.00% +133292,850,2017,State-funded primary,99,44,55,44.40%,55.60%,3,3.00%,13,13.10%,6,93,0,6.10%,93.90%,0.00%,21,22,99,22.20% +133298,886,6089,Independent school,14,2,12,14.30%,85.70%,10,71.40%,4,28.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133300,894,2203,State-funded primary,499,225,274,45.10%,54.90%,0,0.00%,102,20.40%,104,395,0,20.80%,79.20%,0.00%,98,98,421,23.30% +133303,850,2020,State-funded primary,311,154,157,49.50%,50.50%,11,3.50%,75,24.10%,11,300,0,3.50%,96.50%,0.00%,195,197,311,63.30% +133307,211,6391,Independent school,124,0,124,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133309,341,6047,Independent school,21,6,15,28.60%,71.40%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133311,873,2453,State-funded primary,243,139,104,57.20%,42.80%,13,5.30%,16,6.60%,71,170,2,29.20%,70.00%,0.80%,60,59,210,28.10% +133312,881,3257,State-funded primary,415,199,216,48.00%,52.00%,14,3.40%,43,10.40%,9,403,3,2.20%,97.10%,0.70%,34,35,415,8.40% +133315,208,2903,State-funded primary,167,79,88,47.30%,52.70%,6,3.60%,28,16.80%,101,66,0,60.50%,39.50%,0.00%,95,95,154,61.70% +133316,310,7006,State-funded special school,133,44,89,33.10%,66.90%,133,100.00%,0,0.00%,78,55,0,58.60%,41.40%,0.00%,35,39,133,29.30% +133317,310,7005,State-funded special school,121,32,89,26.40%,73.60%,121,100.00%,0,0.00%,80,40,1,66.10%,33.10%,0.80%,42,31,88,35.20% +133318,384,2206,State-funded primary,312,141,171,45.20%,54.80%,40,12.80%,67,21.50%,50,262,0,16.00%,84.00%,0.00%,144,144,274,52.60% +133320,876,2726,State-funded primary,207,94,113,45.40%,54.60%,6,2.90%,12,5.80%,2,205,0,1.00%,99.00%,0.00%,55,56,207,27.10% +133321,938,2259,State-funded primary,210,105,105,50.00%,50.00%,0,0.00%,22,10.50%,31,179,0,14.80%,85.20%,0.00%,4,4,210,1.90% +133322,876,2727,State-funded primary,327,172,155,52.60%,47.40%,17,5.20%,52,15.90%,23,304,0,7.00%,93.00%,0.00%,152,152,292,52.10% +133323,919,2026,State-funded primary,239,99,140,41.40%,58.60%,6,2.50%,52,21.80%,28,211,0,11.70%,88.30%,0.00%,98,100,213,46.90% +133326,356,2120,State-funded primary,336,152,184,45.20%,54.80%,6,1.80%,50,14.90%,58,278,0,17.30%,82.70%,0.00%,80,81,316,25.60% +133329,341,2236,State-funded primary,391,188,203,48.10%,51.90%,7,1.80%,68,17.40%,64,327,0,16.40%,83.60%,0.00%,215,215,366,58.70% +133330,341,2237,State-funded primary,421,211,210,50.10%,49.90%,14,3.30%,53,12.60%,33,388,0,7.80%,92.20%,0.00%,73,74,397,18.60% +133331,341,2240,State-funded primary,645,332,313,51.50%,48.50%,19,2.90%,119,18.40%,180,465,0,27.90%,72.10%,0.00%,243,258,620,41.60% +133332,341,2235,State-funded primary,427,210,217,49.20%,50.80%,10,2.30%,65,15.20%,149,273,5,34.90%,63.90%,1.20%,129,129,392,32.90% +133333,341,3021,State-funded primary,483,232,251,48.00%,52.00%,16,3.30%,130,26.90%,75,408,0,15.50%,84.50%,0.00%,210,216,419,51.60% +133334,341,2241,State-funded primary,462,231,231,50.00%,50.00%,4,0.90%,46,10.00%,42,419,1,9.10%,90.70%,0.20%,127,132,416,31.70% +133335,341,3023,State-funded primary,420,188,232,44.80%,55.20%,4,1.00%,152,36.20%,29,391,0,6.90%,93.10%,0.00%,163,168,386,43.50% +133336,341,3022,State-funded primary,438,224,214,51.10%,48.90%,15,3.40%,106,24.20%,31,407,0,7.10%,92.90%,0.00%,200,203,409,49.60% +133337,341,2239,State-funded primary,230,111,119,48.30%,51.70%,3,1.30%,37,16.10%,13,217,0,5.70%,94.30%,0.00%,79,76,203,37.40% +133338,341,2238,State-funded primary,383,197,186,51.40%,48.60%,3,0.80%,88,23.00%,44,339,0,11.50%,88.50%,0.00%,141,146,342,42.70% +133343,318,2039,State-funded primary,107,54,53,50.50%,49.50%,8,7.50%,20,18.70%,49,58,0,45.80%,54.20%,0.00%,39,41,107,38.30% +133346,909,6051,Independent school,7,0,7,0.00%,100.00%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133348,846,6023,Independent school,20,2,18,10.00%,90.00%,1,5.00%,4,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133349,856,6015,Independent school,228,228,0,100.00%,0.00%,0,0.00%,2,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133352,895,3810,State-funded primary,390,187,203,47.90%,52.10%,10,2.60%,61,15.60%,163,227,0,41.80%,58.20%,0.00%,99,101,368,27.40% +133364,302,2078,State-funded primary,355,0,355,0.00%,100.00%,7,2.00%,22,6.20%,58,297,0,16.30%,83.70%,0.00%,13,21,355,5.90% +133365,302,2079,State-funded primary,471,471,0,100.00%,0.00%,3,0.60%,45,9.60%,34,437,0,7.20%,92.80%,0.00%,12,14,414,3.40% +133367,886,2692,State-funded primary,366,195,171,53.30%,46.70%,5,1.40%,22,6.00%,25,341,0,6.80%,93.20%,0.00%,90,91,366,24.90% +133372,888,1048,State-funded nursery,91,46,45,50.50%,49.50%,0,0.00%,13,14.30%,13,78,0,14.30%,85.70%,0.00%,0,0,0,0.00% +133374,816,2017,State-funded primary,519,250,269,48.20%,51.80%,12,2.30%,136,26.20%,19,500,0,3.70%,96.30%,0.00%,168,166,491,33.80% +133383,872,2247,State-funded primary,454,219,235,48.20%,51.80%,12,2.60%,76,16.70%,125,324,5,27.50%,71.40%,1.10%,50,50,421,11.90% +133384,392,2088,State-funded primary,451,225,226,49.90%,50.10%,0,0.00%,60,13.30%,17,433,1,3.80%,96.00%,0.20%,119,124,401,30.90% +133385,304,6079,Independent school,115,66,49,57.40%,42.60%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133386,309,6905,State-funded secondary,1144,507,637,44.30%,55.70%,17,1.50%,151,13.20%,685,342,117,59.90%,29.90%,10.20%,369,394,950,41.50% +133390,909,2720,State-funded primary,157,78,79,49.70%,50.30%,13,8.30%,18,11.50%,8,149,0,5.10%,94.90%,0.00%,92,92,144,63.90% +133392,878,6202,Independent school,45,12,33,26.70%,73.30%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133395,916,2184,State-funded primary,112,54,58,48.20%,51.80%,3,2.70%,15,13.40%,2,106,4,1.80%,94.60%,3.60%,7,7,112,6.30% +133397,390,7010,State-funded special school,62,8,54,12.90%,87.10%,60,96.80%,2,3.20%,2,60,0,3.20%,96.80%,0.00%,50,50,62,80.60% +133398,888,1121,State-funded AP school,74,32,42,43.20%,56.80%,11,14.90%,63,85.10%,0,74,0,0.00%,100.00%,0.00%,53,57,74,77.00% +133401,203,7200,State-funded special school,27,4,23,14.80%,85.20%,25,92.60%,2,7.40%,2,25,0,7.40%,92.60%,0.00%,16,19,27,70.40% +133405,317,4040,State-funded secondary,1841,870,971,47.30%,52.70%,21,1.10%,112,6.10%,1087,749,5,59.00%,40.70%,0.30%,342,338,1494,22.60% +133409,354,1100,State-funded AP school,123,44,79,35.80%,64.20%,3,2.40%,114,92.70%,9,114,0,7.30%,92.70%,0.00%,73,88,123,71.50% +133410,380,1103,State-funded AP school,53,11,42,20.80%,79.20%,24,45.30%,29,54.70%,8,45,0,15.10%,84.90%,0.00%,45,49,53,92.50% +133421,341,7065,State-funded special school,59,13,46,22.00%,78.00%,59,100.00%,0,0.00%,1,58,0,1.70%,98.30%,0.00%,47,53,59,89.80% +133425,382,6022,Independent school,74,41,33,55.40%,44.60%,1,1.40%,16,21.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133429,811,6012,Independent school,13,3,10,23.10%,76.90%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133430,931,6120,Independent school,230,140,90,60.90%,39.10%,0,0.00%,27,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133432,392,7007,State-funded special school,122,14,108,11.50%,88.50%,118,96.70%,4,3.30%,2,120,0,1.60%,98.40%,0.00%,96,101,122,82.80% +133437,888,2839,State-funded primary,440,214,226,48.60%,51.40%,8,1.80%,52,11.80%,19,421,0,4.30%,95.70%,0.00%,160,163,420,38.80% +133438,306,6104,Independent school,197,58,139,29.40%,70.60%,189,95.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133439,204,6409,Independent school,92,37,55,40.20%,59.80%,63,68.50%,29,31.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133440,208,7194,State-funded special school,110,29,81,26.40%,73.60%,110,100.00%,0,0.00%,47,63,0,42.70%,57.30%,0.00%,62,68,106,64.20% +133441,341,7070,State-funded special school,276,86,190,31.20%,68.80%,276,100.00%,0,0.00%,15,261,0,5.40%,94.60%,0.00%,135,140,242,57.90% +133442,208,7195,State-funded special school,78,32,46,41.00%,59.00%,78,100.00%,0,0.00%,26,52,0,33.30%,66.70%,0.00%,53,31,40,77.50% +133443,318,6586,Independent school,295,120,175,40.70%,59.30%,0,0.00%,71,24.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133444,307,6082,Independent school,112,40,72,35.70%,64.30%,12,10.70%,15,13.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133446,354,3513,State-funded primary,903,437,466,48.40%,51.60%,40,4.40%,110,12.20%,214,680,9,23.70%,75.30%,1.00%,321,328,840,39.00% +133447,209,6361,Independent school,10,4,6,40.00%,60.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133449,204,6410,Independent school,101,48,53,47.50%,52.50%,0,0.00%,16,15.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133453,380,6113,Independent school,184,93,91,50.50%,49.50%,0,0.00%,2,1.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133474,331,2158,State-funded primary,446,214,232,48.00%,52.00%,4,0.90%,86,19.30%,193,251,2,43.30%,56.30%,0.40%,223,225,406,55.40% +133475,331,2157,State-funded primary,170,84,86,49.40%,50.60%,4,2.40%,35,20.60%,40,128,2,23.50%,75.30%,1.20%,80,82,160,51.30% +133476,331,2156,State-funded primary,484,243,241,50.20%,49.80%,5,1.00%,94,19.40%,220,261,3,45.50%,53.90%,0.60%,228,231,414,55.80% +133477,936,6581,Independent school,14,14,0,100.00%,0.00%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133478,893,6025,Independent school,56,12,44,21.40%,78.60%,52,92.90%,4,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133480,811,2000,State-funded primary,403,195,208,48.40%,51.60%,21,5.20%,101,25.10%,17,386,0,4.20%,95.80%,0.00%,146,146,403,36.20% +133481,811,2001,State-funded primary,215,92,123,42.80%,57.20%,3,1.40%,23,10.70%,13,202,0,6.00%,94.00%,0.00%,27,30,215,14.00% +133485,876,6000,Independent school,14,6,8,42.90%,57.10%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133486,313,2082,State-funded primary,161,84,77,52.20%,47.80%,3,1.90%,29,18.00%,93,68,0,57.80%,42.20%,0.00%,53,57,148,38.50% +133488,919,2027,State-funded primary,422,226,196,53.60%,46.40%,12,2.80%,111,26.30%,38,383,1,9.00%,90.80%,0.20%,135,136,392,34.70% +133516,830,2012,State-funded primary,236,122,114,51.70%,48.30%,2,0.80%,26,11.00%,6,230,0,2.50%,97.50%,0.00%,22,22,211,10.40% +133517,320,6061,Independent school,183,99,84,54.10%,45.90%,2,1.10%,8,4.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133519,811,2003,State-funded primary,68,37,31,54.40%,45.60%,9,13.20%,12,17.60%,0,68,0,0.00%,100.00%,0.00%,30,29,62,46.80% +133522,933,6210,Independent school,46,8,38,17.40%,82.60%,46,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133527,933,6203,Independent school,35,7,28,20.00%,80.00%,34,97.10%,1,2.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133528,306,6095,Independent school,70,29,41,41.40%,58.60%,0,0.00%,5,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133532,931,2613,State-funded primary,455,227,228,49.90%,50.10%,2,0.40%,66,14.50%,59,396,0,13.00%,87.00%,0.00%,59,63,415,15.20% +133533,302,6114,Independent school,209,98,111,46.90%,53.10%,2,1.00%,23,11.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133538,830,2013,State-funded primary,477,234,243,49.10%,50.90%,28,5.90%,87,18.20%,7,442,28,1.50%,92.70%,5.90%,125,126,445,28.30% +133539,886,6093,Independent school,37,19,18,51.40%,48.60%,37,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133540,888,6050,Independent school,141,30,111,21.30%,78.70%,141,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133541,889,6009,Independent school,42,0,42,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133545,205,4320,State-funded secondary,703,420,283,59.70%,40.30%,43,6.10%,34,4.80%,230,469,4,32.70%,66.70%,0.60%,198,0,0,0.00% +133546,888,2841,State-funded primary,211,109,102,51.70%,48.30%,2,0.90%,48,22.70%,59,151,1,28.00%,71.60%,0.50%,106,106,211,50.20% +133552,940,2230,State-funded primary,407,179,228,44.00%,56.00%,5,1.20%,32,7.90%,23,384,0,5.70%,94.30%,0.00%,33,33,407,8.10% +133553,302,6115,Independent school,372,0,372,0.00%,100.00%,3,0.80%,16,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133555,383,2513,State-funded primary,254,127,127,50.00%,50.00%,2,0.80%,39,15.40%,6,248,0,2.40%,97.60%,0.00%,22,23,219,10.50% +133556,331,3010,State-funded primary,348,154,194,44.30%,55.70%,6,1.70%,27,7.80%,220,125,3,63.20%,35.90%,0.90%,136,139,314,44.30% +133560,933,2334,State-funded primary,255,135,120,52.90%,47.10%,6,2.40%,36,14.10%,19,236,0,7.50%,92.50%,0.00%,52,57,255,22.40% +133561,301,4029,State-funded secondary,1682,852,830,50.70%,49.30%,44,2.60%,145,8.60%,421,1215,46,25.00%,72.20%,2.70%,501,522,1460,35.80% +133570,873,6041,Independent school,16,1,15,6.30%,93.80%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133574,211,2004,State-funded primary,452,229,223,50.70%,49.30%,20,4.40%,62,13.70%,393,59,0,86.90%,13.10%,0.00%,216,221,408,54.20% +133580,868,4084,State-funded secondary,535,275,260,51.40%,48.60%,20,3.70%,126,23.60%,106,427,2,19.80%,79.80%,0.40%,124,139,535,26.00% +133581,850,7001,State-funded special school,84,0,84,0.00%,100.00%,84,100.00%,0,0.00%,0,84,0,0.00%,100.00%,0.00%,53,61,84,72.60% +133583,860,1109,State-funded AP school,45,9,36,20.00%,80.00%,0,0.00%,45,100.00%,0,45,0,0.00%,100.00%,0.00%,28,32,45,71.10% +133584,208,2905,State-funded primary,320,141,179,44.10%,55.90%,3,0.90%,66,20.60%,181,138,1,56.60%,43.10%,0.30%,163,175,272,64.30% +133596,823,6018,Independent school,96,43,53,44.80%,55.20%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133599,204,4318,State-funded secondary,358,358,0,100.00%,0.00%,7,2.00%,28,7.80%,26,332,0,7.30%,92.70%,0.00%,11,11,358,3.10% +133600,940,2231,State-funded primary,417,196,221,47.00%,53.00%,23,5.50%,55,13.20%,107,309,1,25.70%,74.10%,0.20%,162,163,417,39.10% +133603,330,6103,Independent school,155,88,67,56.80%,43.20%,0,0.00%,5,3.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133605,935,2931,State-funded primary,120,61,59,50.80%,49.20%,1,0.80%,22,18.30%,12,108,0,10.00%,90.00%,0.00%,19,24,110,21.80% +133615,341,3024,State-funded primary,391,183,208,46.80%,53.20%,4,1.00%,48,12.30%,80,311,0,20.50%,79.50%,0.00%,147,156,343,45.50% +133621,384,2208,State-funded primary,490,234,256,47.80%,52.20%,22,4.50%,125,25.50%,32,458,0,6.50%,93.50%,0.00%,139,144,406,35.50% +133622,888,2840,State-funded primary,393,184,209,46.80%,53.20%,8,2.00%,50,12.70%,111,282,0,28.20%,71.80%,0.00%,229,232,365,63.60% +133627,886,3299,State-funded primary,462,231,231,50.00%,50.00%,25,5.40%,81,17.50%,70,392,0,15.20%,84.80%,0.00%,93,93,462,20.10% +133628,881,6047,Independent school,190,97,93,51.10%,48.90%,0,0.00%,15,7.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133633,384,6121,Independent school,224,120,104,53.60%,46.40%,0,0.00%,24,10.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133637,371,2209,State-funded primary,322,149,173,46.30%,53.70%,0,0.00%,51,15.80%,21,301,0,6.50%,93.50%,0.00%,180,179,284,63.00% +133645,888,2842,State-funded primary,194,105,89,54.10%,45.90%,2,1.00%,31,16.00%,14,180,0,7.20%,92.80%,0.00%,56,58,194,29.90% +133646,211,6392,Independent school,113,31,82,27.40%,72.60%,0,0.00%,3,2.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133651,873,6032,Independent school,8,0,8,0.00%,100.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133653,845,7000,Non-maintained special school,111,42,69,37.80%,62.20%,111,100.00%,0,0.00%,5,106,0,4.50%,95.50%,0.00%,36,33,91,36.30% +133660,304,1105,State-funded AP school,37,11,26,29.70%,70.30%,1,2.70%,36,97.30%,12,25,0,32.40%,67.60%,0.00%,15,25,37,67.60% +133661,881,3826,State-funded primary,208,94,114,45.20%,54.80%,8,3.80%,10,4.80%,20,188,0,9.60%,90.40%,0.00%,26,26,208,12.50% +133662,208,3000,State-funded primary,355,166,189,46.80%,53.20%,37,10.40%,80,22.50%,149,206,0,42.00%,58.00%,0.00%,189,182,325,56.00% +133668,310,1003,State-funded nursery,84,32,52,38.10%,61.90%,4,4.80%,0,0.00%,68,13,3,81.00%,15.50%,3.60%,0,0,0,0.00% +133669,204,2900,State-funded primary,274,147,127,53.60%,46.40%,6,2.20%,47,17.20%,138,136,0,50.40%,49.60%,0.00%,152,155,260,59.60% +133675,852,1100,State-funded AP school,43,8,35,18.60%,81.40%,20,46.50%,23,53.50%,6,37,0,14.00%,86.00%,0.00%,34,36,43,83.70% +133676,877,2732,State-funded primary,242,114,128,47.10%,52.90%,5,2.10%,36,14.90%,73,168,1,30.20%,69.40%,0.40%,48,48,204,23.50% +133678,355,1103,State-funded AP school,45,5,40,11.10%,88.90%,32,71.10%,11,24.40%,0,45,0,0.00%,100.00%,0.00%,38,39,45,86.70% +133680,393,3010,State-funded primary,310,156,154,50.30%,49.70%,4,1.30%,77,24.80%,3,307,0,1.00%,99.00%,0.00%,123,127,310,41.00% +133688,888,7110,State-funded special school,24,13,11,54.20%,45.80%,24,100.00%,0,0.00%,6,18,0,25.00%,75.00%,0.00%,13,13,23,56.50% +133689,801,1101,State-funded AP school,50,34,16,68.00%,32.00%,13,26.00%,4,8.00%,3,29,18,6.00%,58.00%,36.00%,16,24,43,55.80% +133691,341,3025,State-funded primary,386,169,217,43.80%,56.20%,15,3.90%,78,20.20%,81,305,0,21.00%,79.00%,0.00%,189,194,347,55.90% +133697,335,6905,State-funded secondary,1368,690,678,50.40%,49.60%,31,2.30%,145,10.60%,98,1264,6,7.20%,92.40%,0.40%,425,403,1059,38.10% +133700,813,2003,State-funded primary,414,233,181,56.30%,43.70%,9,2.20%,43,10.40%,32,382,0,7.70%,92.30%,0.00%,127,131,395,33.20% +133701,840,2004,State-funded primary,264,125,139,47.30%,52.70%,13,4.90%,43,16.30%,4,260,0,1.50%,98.50%,0.00%,164,170,226,75.20% +133702,341,3026,State-funded primary,250,118,132,47.20%,52.80%,42,16.80%,41,16.40%,111,136,3,44.40%,54.40%,1.20%,122,123,229,53.70% +133704,852,2003,State-funded primary,399,186,213,46.60%,53.40%,21,5.30%,83,20.80%,41,356,2,10.30%,89.20%,0.50%,220,225,399,56.40% +133707,309,3001,State-funded primary,578,259,319,44.80%,55.20%,47,8.10%,101,17.50%,424,154,0,73.40%,26.60%,0.00%,213,219,540,40.60% +133712,353,2113,State-funded primary,643,305,338,47.40%,52.60%,11,1.70%,93,14.50%,100,543,0,15.60%,84.40%,0.00%,215,236,602,39.20% +133718,384,7054,State-funded special school,199,70,129,35.20%,64.80%,199,100.00%,0,0.00%,32,167,0,16.10%,83.90%,0.00%,97,98,196,50.00% +133719,384,7055,State-funded special school,163,56,107,34.40%,65.60%,163,100.00%,0,0.00%,15,143,5,9.20%,87.70%,3.10%,67,56,120,46.70% +133720,334,2098,State-funded primary,464,218,246,47.00%,53.00%,21,4.50%,74,15.90%,96,368,0,20.70%,79.30%,0.00%,64,66,427,15.50% +133721,936,2964,State-funded primary,421,214,207,50.80%,49.20%,6,1.40%,52,12.40%,90,331,0,21.40%,78.60%,0.00%,65,65,421,15.40% +133724,304,4033,State-funded secondary,1887,920,967,48.80%,51.20%,49,2.60%,272,14.40%,195,1692,0,10.30%,89.70%,0.00%,73,88,1419,6.20% +133725,393,4033,State-funded secondary,832,393,439,47.20%,52.80%,73,8.80%,183,22.00%,8,821,3,1.00%,98.70%,0.40%,305,356,832,42.80% +133727,909,2721,State-funded primary,183,96,87,52.50%,47.50%,12,6.60%,25,13.70%,18,164,1,9.80%,89.60%,0.50%,95,95,175,54.30% +133728,318,2040,State-funded primary,415,217,198,52.30%,47.70%,5,1.20%,17,4.10%,272,143,0,65.50%,34.50%,0.00%,33,34,415,8.20% +133731,936,1009,State-funded nursery,169,79,90,46.70%,53.30%,7,4.10%,37,21.90%,56,112,1,33.10%,66.30%,0.60%,27,0,0,0.00% +133732,941,3205,State-funded primary,207,101,106,48.80%,51.20%,3,1.40%,18,8.70%,34,173,0,16.40%,83.60%,0.00%,18,18,207,8.70% +133740,839,7016,Non-maintained special school,27,12,15,44.40%,55.60%,27,100.00%,0,0.00%,2,25,0,7.40%,92.60%,0.00%,1,2,14,14.30% +133743,868,7206,Non-maintained special school,77,9,68,11.70%,88.30%,77,100.00%,0,0.00%,4,73,0,5.20%,94.80%,0.00%,15,22,68,32.40% +133744,921,1102,State-funded AP school,39,10,29,25.60%,74.40%,13,33.30%,23,59.00%,1,38,0,2.60%,97.40%,0.00%,21,25,39,64.10% +133748,343,7014,Non-maintained special school,72,5,67,6.90%,93.10%,70,97.20%,2,2.80%,1,65,6,1.40%,90.30%,8.30%,21,23,55,41.80% +133749,302,1102,State-funded AP school,13,10,3,76.90%,23.10%,0,0.00%,6,46.20%,0,13,0,0.00%,100.00%,0.00%,6,8,12,66.70% +133754,315,1100,State-funded AP school,66,34,32,51.50%,48.50%,0,0.00%,39,59.10%,23,43,0,34.80%,65.20%,0.00%,16,23,66,34.80% +133756,825,3377,State-funded primary,461,239,222,51.80%,48.20%,31,6.70%,123,26.70%,163,295,3,35.40%,64.00%,0.70%,140,142,420,33.80% +133758,384,2209,State-funded primary,677,333,344,49.20%,50.80%,26,3.80%,140,20.70%,162,514,1,23.90%,75.90%,0.10%,288,291,618,47.10% +133759,330,2486,State-funded primary,210,113,97,53.80%,46.20%,5,2.40%,49,23.30%,26,184,0,12.40%,87.60%,0.00%,147,140,195,71.80% +133768,806,6905,State-funded secondary,918,466,452,50.80%,49.20%,28,3.10%,137,14.90%,163,755,0,17.80%,82.20%,0.00%,622,656,918,71.50% +133770,352,2010,State-funded primary,488,231,257,47.30%,52.70%,37,7.60%,45,9.20%,318,169,1,65.20%,34.60%,0.20%,178,167,437,38.20% +133773,919,3978,State-funded primary,359,187,172,52.10%,47.90%,11,3.10%,30,8.40%,73,286,0,20.30%,79.70%,0.00%,89,91,359,25.30% +133774,315,3507,State-funded primary,452,234,218,51.80%,48.20%,9,2.00%,79,17.50%,307,145,0,67.90%,32.10%,0.00%,143,146,413,35.40% +133778,850,1118,State-funded AP school,24,10,14,41.70%,58.30%,1,4.20%,23,95.80%,0,24,0,0.00%,100.00%,0.00%,17,18,24,75.00% +133779,391,7038,Non-maintained special school,37,7,30,18.90%,81.10%,37,100.00%,0,0.00%,3,34,0,8.10%,91.90%,0.00%,22,28,37,75.70% +133893,878,3779,State-funded primary,238,113,125,47.50%,52.50%,7,2.90%,86,36.10%,3,235,0,1.30%,98.70%,0.00%,78,79,201,39.30% +133925,350,2084,State-funded primary,250,124,126,49.60%,50.40%,16,6.40%,32,12.80%,67,183,0,26.80%,73.20%,0.00%,81,83,215,38.60% +133926,350,2085,State-funded primary,317,152,165,47.90%,52.10%,9,2.80%,42,13.20%,19,298,0,6.00%,94.00%,0.00%,59,60,284,21.10% +133929,351,3352,State-funded primary,338,160,178,47.30%,52.70%,18,5.30%,62,18.30%,150,188,0,44.40%,55.60%,0.00%,108,111,294,37.80% +133930,873,3386,State-funded primary,421,207,214,49.20%,50.80%,6,1.40%,37,8.80%,164,243,14,39.00%,57.70%,3.30%,46,47,421,11.20% +133931,317,3516,State-funded primary,338,158,180,46.70%,53.30%,9,2.70%,27,8.00%,149,189,0,44.10%,55.90%,0.00%,79,80,338,23.70% +133932,317,3517,State-funded primary,313,159,154,50.80%,49.20%,4,1.30%,10,3.20%,143,170,0,45.70%,54.30%,0.00%,21,22,267,8.20% +133934,317,3519,State-funded primary,897,444,453,49.50%,50.50%,32,3.60%,56,6.20%,759,131,7,84.60%,14.60%,0.80%,93,94,832,11.30% +133935,317,3520,State-funded primary,477,243,234,50.90%,49.10%,21,4.40%,24,5.00%,124,352,1,26.00%,73.80%,0.20%,56,58,477,12.20% +133936,317,3521,State-funded primary,444,205,239,46.20%,53.80%,15,3.40%,20,4.50%,142,301,1,32.00%,67.80%,0.20%,17,17,360,4.70% +133938,317,3523,State-funded primary,396,193,203,48.70%,51.30%,12,3.00%,63,15.90%,201,191,4,50.80%,48.20%,1.00%,29,29,340,8.50% +133939,317,3524,State-funded primary,465,245,220,52.70%,47.30%,12,2.60%,56,12.00%,285,179,1,61.30%,38.50%,0.20%,64,66,465,14.20% +133943,852,2004,State-funded primary,265,141,124,53.20%,46.80%,3,1.10%,43,16.20%,70,195,0,26.40%,73.60%,0.00%,71,71,209,34.00% +133944,351,3353,State-funded primary,482,237,245,49.20%,50.80%,7,1.50%,90,18.70%,280,201,1,58.10%,41.70%,0.20%,96,101,429,23.50% +133945,352,1102,State-funded AP school,91,7,84,7.70%,92.30%,82,90.10%,9,9.90%,6,85,0,6.60%,93.40%,0.00%,66,78,91,85.70% +133948,916,6077,Independent school,271,145,126,53.50%,46.50%,0,0.00%,18,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133961,886,3893,State-funded primary,213,118,95,55.40%,44.60%,5,2.30%,28,13.10%,48,163,2,22.50%,76.50%,0.90%,93,95,213,44.60% +133964,850,6079,Independent school,38,6,32,15.80%,84.20%,0,0.00%,1,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133967,938,3358,State-funded primary,462,222,240,48.10%,51.90%,10,2.20%,35,7.60%,272,189,1,58.90%,40.90%,0.20%,94,98,407,24.10% +133973,938,3364,State-funded primary,658,323,335,49.10%,50.90%,37,5.60%,112,17.00%,391,240,27,59.40%,36.50%,4.10%,173,189,604,31.30% +133975,919,1028,State-funded nursery,73,34,39,46.60%,53.40%,0,0.00%,12,16.40%,13,60,0,17.80%,82.20%,0.00%,0,0,0,0.00% +133980,350,3370,State-funded primary,524,257,267,49.00%,51.00%,18,3.40%,39,7.40%,474,50,0,90.50%,9.50%,0.00%,77,86,424,20.30% +133987,889,3998,State-funded primary,422,200,222,47.40%,52.60%,12,2.80%,77,18.20%,15,407,0,3.60%,96.40%,0.00%,35,37,422,8.80% +133989,860,6026,Independent school,23,5,18,21.70%,78.30%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +133994,373,3429,State-funded primary,460,223,237,48.50%,51.50%,24,5.20%,148,32.20%,111,349,0,24.10%,75.90%,0.00%,286,264,414,63.80% +133996,330,3421,State-funded primary,839,432,407,51.50%,48.50%,9,1.10%,118,14.10%,278,531,30,33.10%,63.30%,3.60%,274,277,839,33.00% +134000,893,6026,Independent school,49,9,40,18.40%,81.60%,30,61.20%,17,34.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134003,315,6906,State-funded secondary,823,382,441,46.40%,53.60%,16,1.90%,193,23.50%,381,438,4,46.30%,53.20%,0.50%,336,343,729,47.10% +134009,205,3649,State-funded primary,430,227,203,52.80%,47.20%,17,4.00%,25,5.80%,190,240,0,44.20%,55.80%,0.00%,58,64,410,15.60% +134010,205,6401,Independent school,115,62,53,53.90%,46.10%,1,0.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134022,881,3781,State-funded primary,408,202,206,49.50%,50.50%,18,4.40%,52,12.70%,31,377,0,7.60%,92.40%,0.00%,67,75,408,18.40% +134028,891,3772,State-funded primary,587,271,316,46.20%,53.80%,9,1.50%,70,11.90%,15,572,0,2.60%,97.40%,0.00%,176,182,534,34.10% +134034,330,6104,Independent school,133,133,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134041,212,2005,State-funded primary,628,321,307,51.10%,48.90%,10,1.60%,65,10.40%,416,212,0,66.20%,33.80%,0.00%,114,119,628,18.90% +134042,938,4003,State-funded secondary,1469,737,732,50.20%,49.80%,33,2.20%,203,13.80%,179,1288,2,12.20%,87.70%,0.10%,164,165,1234,13.40% +134043,926,2001,State-funded primary,189,92,97,48.70%,51.30%,7,3.70%,35,18.50%,3,186,0,1.60%,98.40%,0.00%,45,49,189,25.90% +134057,886,2065,State-funded primary,625,308,317,49.30%,50.70%,7,1.10%,59,9.40%,49,576,0,7.80%,92.20%,0.00%,47,51,625,8.20% +134064,356,7103,Non-maintained special school,101,20,81,19.80%,80.20%,101,100.00%,0,0.00%,2,91,8,2.00%,90.10%,7.90%,36,31,67,46.30% +134065,881,2020,State-funded primary,476,203,273,42.60%,57.40%,5,1.10%,65,13.70%,107,369,0,22.50%,77.50%,0.00%,143,147,476,30.90% +134072,826,2017,State-funded primary,416,207,209,49.80%,50.20%,10,2.40%,61,14.70%,115,285,16,27.60%,68.50%,3.80%,83,83,416,20.00% +134073,826,3376,State-funded primary,452,240,212,53.10%,46.90%,7,1.50%,25,5.50%,149,302,1,33.00%,66.80%,0.20%,37,40,415,9.60% +134076,806,2002,State-funded primary,475,234,241,49.30%,50.70%,3,0.60%,66,13.90%,67,408,0,14.10%,85.90%,0.00%,171,175,405,43.20% +134078,840,2005,State-funded primary,340,173,167,50.90%,49.10%,4,1.20%,128,37.60%,6,334,0,1.80%,98.20%,0.00%,147,131,278,47.10% +134080,838,3408,State-funded primary,370,178,192,48.10%,51.90%,12,3.20%,96,25.90%,27,343,0,7.30%,92.70%,0.00%,130,130,370,35.10% +134084,309,6087,Independent school,134,65,69,48.50%,51.50%,4,3.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134085,871,6003,Independent school,97,43,54,44.30%,55.70%,0,0.00%,5,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134087,919,6243,Independent school,79,51,28,64.60%,35.40%,10,12.70%,7,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134091,330,6105,Independent school,41,21,20,51.20%,48.80%,0,0.00%,7,17.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134094,330,2004,State-funded primary,336,160,176,47.60%,52.40%,2,0.60%,76,22.60%,43,293,0,12.80%,87.20%,0.00%,127,128,312,41.00% +134098,330,2005,State-funded primary,658,338,320,51.40%,48.60%,9,1.40%,130,19.80%,167,491,0,25.40%,74.60%,0.00%,127,125,632,19.80% +134099,330,2011,State-funded primary,645,319,326,49.50%,50.50%,10,1.60%,110,17.10%,161,477,7,25.00%,74.00%,1.10%,190,178,606,29.40% +134102,330,2015,State-funded primary,440,205,235,46.60%,53.40%,4,0.90%,88,20.00%,346,90,4,78.60%,20.50%,0.90%,203,194,402,48.30% +134108,936,1120,State-funded AP school,4,1,3,25.00%,75.00%,0,0.00%,4,100.00%,1,3,0,25.00%,75.00%,0.00%,0,0,2,0.00% +134109,936,1121,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +134116,933,6204,Independent school,119,66,53,55.50%,44.50%,0,0.00%,19,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134117,909,2002,State-funded primary,218,97,121,44.50%,55.50%,18,8.30%,72,33.00%,8,210,0,3.70%,96.30%,0.00%,108,109,165,66.10% +134127,888,1113,State-funded AP school,72,15,57,20.80%,79.20%,5,6.90%,67,93.10%,6,66,0,8.30%,91.70%,0.00%,48,53,72,73.60% +134130,888,1116,State-funded AP school,92,33,59,35.90%,64.10%,6,6.50%,27,29.30%,5,87,0,5.40%,94.60%,0.00%,44,50,92,54.30% +134137,941,6008,Independent school,30,7,23,23.30%,76.70%,29,96.70%,1,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134140,380,6114,Independent school,175,0,175,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134142,210,6393,Independent school,192,91,101,47.40%,52.60%,2,1.00%,8,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134145,212,6405,Independent school,59,15,44,25.40%,74.60%,56,94.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134148,845,6051,Independent school,39,13,26,33.30%,66.70%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134151,866,3460,State-funded primary,451,220,231,48.80%,51.20%,13,2.90%,41,9.10%,53,398,0,11.80%,88.20%,0.00%,24,25,420,6.00% +134155,821,2006,State-funded primary,449,208,241,46.30%,53.70%,13,2.90%,89,19.80%,197,252,0,43.90%,56.10%,0.00%,132,140,413,33.90% +134159,861,1111,State-funded AP school,2,1,1,50.00%,50.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +134160,211,2005,State-funded primary,481,249,232,51.80%,48.20%,18,3.70%,125,26.00%,265,216,0,55.10%,44.90%,0.00%,223,211,431,49.00% +134171,878,3375,State-funded primary,331,162,169,48.90%,51.10%,22,6.60%,50,15.10%,67,264,0,20.20%,79.80%,0.00%,152,160,331,48.30% +134175,305,6079,Independent school,78,34,44,43.60%,56.40%,9,11.50%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134179,873,6033,Independent school,42,14,28,33.30%,66.70%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134184,394,7001,State-funded special school,120,24,96,20.00%,80.00%,120,100.00%,0,0.00%,7,113,0,5.80%,94.20%,0.00%,51,51,120,42.50% +134185,303,2019,State-funded primary,221,102,119,46.20%,53.80%,10,4.50%,46,20.80%,64,157,0,29.00%,71.00%,0.00%,58,53,201,26.40% +134186,877,6001,Independent school,62,10,52,16.10%,83.90%,62,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134187,393,2001,State-funded primary,658,330,328,50.20%,49.80%,6,0.90%,105,16.00%,11,647,0,1.70%,98.30%,0.00%,159,161,606,26.60% +134190,916,7025,State-funded special school,128,44,84,34.40%,65.60%,128,100.00%,0,0.00%,4,124,0,3.10%,96.90%,0.00%,55,51,117,43.60% +134191,909,6053,Independent school,40,16,24,40.00%,60.00%,33,82.50%,7,17.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134192,213,6393,Independent school,121,60,61,49.60%,50.40%,0,0.00%,2,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134195,351,4005,State-funded secondary,229,0,229,0.00%,100.00%,16,7.00%,42,18.30%,13,216,0,5.70%,94.30%,0.00%,5,5,207,2.40% +134210,341,2001,State-funded primary,225,110,115,48.90%,51.10%,7,3.10%,29,12.90%,37,188,0,16.40%,83.60%,0.00%,76,85,200,42.50% +134211,940,2029,State-funded primary,291,140,151,48.10%,51.90%,3,1.00%,30,10.30%,15,276,0,5.20%,94.80%,0.00%,21,24,291,8.20% +134214,909,3661,State-funded primary,273,130,143,47.60%,52.40%,14,5.10%,60,22.00%,7,266,0,2.60%,97.40%,0.00%,100,105,246,42.70% +134217,307,3511,State-funded primary,255,135,120,52.90%,47.10%,5,2.00%,33,12.90%,206,49,0,80.80%,19.20%,0.00%,91,92,210,43.80% +134220,354,2001,State-funded primary,409,185,224,45.20%,54.80%,21,5.10%,44,10.80%,299,110,0,73.10%,26.90%,0.00%,190,191,376,50.80% +134222,210,6905,State-funded secondary,1577,741,836,47.00%,53.00%,43,2.70%,225,14.30%,317,1232,28,20.10%,78.10%,1.80%,643,616,1183,52.10% +134223,806,6906,State-funded secondary,1347,666,681,49.40%,50.60%,80,5.90%,228,16.90%,83,1264,0,6.20%,93.80%,0.00%,419,443,1205,36.80% +134224,352,6905,State-funded secondary,1090,452,638,41.50%,58.50%,37,3.40%,122,11.20%,877,211,2,80.50%,19.40%,0.20%,529,617,1090,56.60% +134225,210,6906,State-funded secondary,589,251,338,42.60%,57.40%,9,1.50%,101,17.10%,303,276,10,51.40%,46.90%,1.70%,262,325,589,55.20% +134226,304,6905,State-funded secondary,1156,532,624,46.00%,54.00%,19,1.60%,127,11.00%,679,435,42,58.70%,37.60%,3.60%,379,383,901,42.50% +134229,925,7031,State-funded special school,80,8,72,10.00%,90.00%,80,100.00%,0,0.00%,0,80,0,0.00%,100.00%,0.00%,46,53,80,66.30% +134230,393,2002,State-funded primary,430,200,230,46.50%,53.50%,11,2.60%,120,27.90%,13,417,0,3.00%,97.00%,0.00%,187,193,386,50.00% +134235,371,3324,State-funded primary,361,169,192,46.80%,53.20%,9,2.50%,53,14.70%,55,306,0,15.20%,84.80%,0.00%,157,160,329,48.60% +134237,350,3371,State-funded primary,423,221,202,52.20%,47.80%,8,1.90%,47,11.10%,56,367,0,13.20%,86.80%,0.00%,112,115,395,29.10% +134241,801,1012,State-funded nursery,134,63,71,47.00%,53.00%,0,0.00%,39,29.10%,17,117,0,12.70%,87.30%,0.00%,32,0,0,0.00% +134243,313,6072,Independent school,145,72,73,49.70%,50.30%,0,0.00%,20,13.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134244,317,6076,Independent school,28,13,15,46.40%,53.60%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134245,341,2004,State-funded primary,456,207,249,45.40%,54.60%,9,2.00%,64,14.00%,182,274,0,39.90%,60.10%,0.00%,223,227,411,55.20% +134248,896,2012,State-funded primary,401,198,203,49.40%,50.60%,9,2.20%,67,16.70%,58,343,0,14.50%,85.50%,0.00%,82,86,401,21.40% +134249,896,2013,State-funded primary,171,84,87,49.10%,50.90%,5,2.90%,48,28.10%,22,149,0,12.90%,87.10%,0.00%,83,84,171,49.10% +134250,341,2006,State-funded primary,565,264,301,46.70%,53.30%,61,10.80%,115,20.40%,85,479,1,15.00%,84.80%,0.20%,189,195,450,43.30% +134253,892,6905,State-funded secondary,1106,431,675,39.00%,61.00%,5,0.50%,87,7.90%,699,400,7,63.20%,36.20%,0.60%,528,523,1051,49.80% +134256,336,1103,State-funded AP school,57,14,43,24.60%,75.40%,2,3.50%,55,96.50%,4,53,0,7.00%,93.00%,0.00%,29,41,57,71.90% +134257,336,1104,State-funded AP school,14,5,9,35.70%,64.30%,2,14.30%,12,85.70%,2,12,0,14.30%,85.70%,0.00%,7,11,14,78.60% +134260,881,1108,State-funded AP school,2,2,0,100.00%,0.00%,0,0.00%,2,100.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +134269,331,1106,State-funded AP school,79,29,50,36.70%,63.30%,4,5.10%,28,35.40%,11,68,0,13.90%,86.10%,0.00%,49,54,79,68.40% +134273,205,3650,State-funded primary,226,105,121,46.50%,53.50%,13,5.80%,37,16.40%,158,68,0,69.90%,30.10%,0.00%,149,129,183,70.50% +134274,206,1110,State-funded AP school,29,16,13,55.20%,44.80%,11,37.90%,18,62.10%,4,23,2,13.80%,79.30%,6.90%,17,16,24,66.70% +134279,330,2019,State-funded primary,404,213,191,52.70%,47.30%,12,3.00%,74,18.30%,32,372,0,7.90%,92.10%,0.00%,203,218,404,54.00% +134281,330,2021,State-funded primary,406,208,198,51.20%,48.80%,5,1.20%,61,15.00%,172,232,2,42.40%,57.10%,0.50%,214,216,387,55.80% +134283,357,4006,State-funded secondary,936,480,456,51.30%,48.70%,26,2.80%,151,16.10%,75,857,4,8.00%,91.60%,0.40%,224,309,936,33.00% +134289,821,6010,Independent school,110,58,52,52.70%,47.30%,0,0.00%,2,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134294,831,6006,Independent school,118,88,30,74.60%,25.40%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134297,359,7001,State-funded special school,116,20,96,17.20%,82.80%,108,93.10%,8,6.90%,7,109,0,6.00%,94.00%,0.00%,59,53,105,50.50% +134302,373,2369,State-funded primary,518,261,257,50.40%,49.60%,18,3.50%,92,17.80%,387,130,1,74.70%,25.10%,0.20%,192,170,421,40.40% +134305,856,2388,State-funded primary,430,201,229,46.70%,53.30%,10,2.30%,59,13.70%,121,309,0,28.10%,71.90%,0.00%,189,190,406,46.80% +134307,308,2094,State-funded primary,228,104,124,45.60%,54.40%,16,7.00%,57,25.00%,134,94,0,58.80%,41.20%,0.00%,85,88,216,40.70% +134311,308,6905,State-funded secondary,815,443,372,54.40%,45.60%,19,2.30%,60,7.40%,459,356,0,56.30%,43.70%,0.00%,375,369,691,53.40% +134314,206,6905,State-funded secondary,1536,733,803,47.70%,52.30%,34,2.20%,202,13.20%,350,1181,5,22.80%,76.90%,0.30%,490,453,1224,37.00% +134315,813,6004,Independent school,32,4,28,12.50%,87.50%,31,96.90%,1,3.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134317,383,2002,State-funded primary,326,177,149,54.30%,45.70%,3,0.90%,30,9.20%,19,307,0,5.80%,94.20%,0.00%,49,52,292,17.80% +134318,826,3383,State-funded primary,428,212,216,49.50%,50.50%,7,1.60%,55,12.90%,211,216,1,49.30%,50.50%,0.20%,57,59,399,14.80% +134321,876,1100,State-funded AP school,37,19,18,51.40%,48.60%,5,13.50%,32,86.50%,0,37,0,0.00%,100.00%,0.00%,26,27,37,73.00% +134336,896,3802,State-funded primary,318,152,166,47.80%,52.20%,5,1.60%,43,13.50%,23,295,0,7.20%,92.80%,0.00%,25,27,318,8.50% +134343,343,3378,State-funded primary,462,225,237,48.70%,51.30%,6,1.30%,111,24.00%,49,413,0,10.60%,89.40%,0.00%,216,204,411,49.60% +134353,860,3492,State-funded primary,417,218,199,52.30%,47.70%,3,0.70%,44,10.60%,4,413,0,1.00%,99.00%,0.00%,47,48,417,11.50% +134366,317,1101,State-funded AP school,19,3,16,15.80%,84.20%,0,0.00%,2,10.50%,6,13,0,31.60%,68.40%,0.00%,8,8,19,42.10% +134367,888,1117,State-funded AP school,55,21,34,38.20%,61.80%,1,1.80%,52,94.50%,1,54,0,1.80%,98.20%,0.00%,33,33,55,60.00% +134369,307,6905,State-funded secondary,1677,760,917,45.30%,54.70%,39,2.30%,160,9.50%,1047,629,1,62.40%,37.50%,0.10%,599,602,1431,42.10% +134371,343,3385,State-funded primary,333,163,170,48.90%,51.10%,6,1.80%,65,19.50%,22,311,0,6.60%,93.40%,0.00%,179,161,284,56.70% +134373,838,1105,State-funded AP school,42,9,33,21.40%,78.60%,27,64.30%,15,35.70%,1,41,0,2.40%,97.60%,0.00%,31,32,42,76.20% +134374,839,1106,State-funded AP school,19,11,8,57.90%,42.10%,0,0.00%,19,100.00%,1,18,0,5.30%,94.70%,0.00%,10,11,19,57.90% +134376,384,3341,State-funded primary,434,231,203,53.20%,46.80%,21,4.80%,75,17.30%,8,426,0,1.80%,98.20%,0.00%,93,94,393,23.90% +134388,301,6002,Independent school,47,4,43,8.50%,91.50%,47,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134390,893,1100,State-funded AP school,57,15,42,26.30%,73.70%,7,12.30%,29,50.90%,0,57,0,0.00%,100.00%,0.00%,34,34,57,59.60% +134395,830,6027,Independent school,19,6,13,31.60%,68.40%,18,94.70%,1,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134398,881,6048,Independent school,18,8,10,44.40%,55.60%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134402,203,6300,Independent school,15,4,11,26.70%,73.30%,12,80.00%,3,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134405,383,3917,State-funded primary,340,161,179,47.40%,52.60%,0,0.00%,40,11.80%,24,316,0,7.10%,92.90%,0.00%,57,61,304,20.10% +134407,383,3921,State-funded primary,424,210,214,49.50%,50.50%,1,0.20%,58,13.70%,19,405,0,4.50%,95.50%,0.00%,55,59,375,15.70% +134417,316,6064,Independent school,519,414,105,79.80%,20.20%,2,0.40%,17,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134423,826,3384,State-funded primary,83,45,38,54.20%,45.80%,4,4.80%,14,16.90%,11,72,0,13.30%,86.70%,0.00%,15,15,83,18.10% +134424,872,6013,Independent school,28,3,25,10.70%,89.30%,0,0.00%,1,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134426,331,3437,State-funded primary,152,60,92,39.50%,60.50%,11,7.20%,38,25.00%,53,99,0,34.90%,65.10%,0.00%,47,47,146,32.20% +134429,380,6117,Independent school,203,144,59,70.90%,29.10%,0,0.00%,10,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134438,855,6020,Independent school,33,11,22,33.30%,66.70%,33,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134440,926,6150,Independent school,83,34,49,41.00%,59.00%,20,24.10%,40,48.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134452,886,6104,Independent school,163,82,81,50.30%,49.70%,2,1.20%,10,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134455,926,6153,Independent school,103,44,59,42.70%,57.30%,1,1.00%,8,7.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134460,865,6037,Independent school,205,113,92,55.10%,44.90%,3,1.50%,34,16.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134463,916,6078,Independent school,148,77,71,52.00%,48.00%,0,0.00%,29,19.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134464,937,6109,Independent school,124,65,59,52.40%,47.60%,0,0.00%,4,3.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134467,870,6037,Independent school,64,35,29,54.70%,45.30%,1,1.60%,8,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134469,358,6018,Independent school,286,200,86,69.90%,30.10%,0,0.00%,15,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134471,341,3961,State-funded primary,435,219,216,50.30%,49.70%,11,2.50%,57,13.10%,102,333,0,23.40%,76.60%,0.00%,239,248,382,64.90% +134473,929,3918,State-funded primary,357,169,188,47.30%,52.70%,7,2.00%,56,15.70%,6,349,2,1.70%,97.80%,0.60%,38,45,357,12.60% +134476,330,3428,State-funded primary,446,221,225,49.60%,50.40%,5,1.10%,86,19.30%,129,317,0,28.90%,71.10%,0.00%,82,79,416,19.00% +134479,352,3505,State-funded primary,316,146,170,46.20%,53.80%,4,1.30%,41,13.00%,126,190,0,39.90%,60.10%,0.00%,136,131,290,45.20% +134480,935,6082,Independent school,133,73,60,54.90%,45.10%,0,0.00%,11,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134493,896,6007,Independent school,99,43,56,43.40%,56.60%,3,3.00%,9,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134503,823,6019,Independent school,160,73,87,45.60%,54.40%,2,1.30%,33,20.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134507,208,3642,State-funded primary,210,104,106,49.50%,50.50%,3,1.40%,41,19.50%,186,24,0,88.60%,11.40%,0.00%,75,81,210,38.60% +134513,383,3922,State-funded primary,408,200,208,49.00%,51.00%,3,0.70%,119,29.20%,40,368,0,9.80%,90.20%,0.00%,183,192,380,50.50% +134515,886,3896,State-funded primary,174,77,97,44.30%,55.70%,5,2.90%,27,15.50%,21,153,0,12.10%,87.90%,0.00%,69,70,174,40.20% +134523,335,1104,State-funded AP school,71,16,55,22.50%,77.50%,0,0.00%,33,46.50%,4,67,0,5.60%,94.40%,0.00%,56,59,71,83.10% +134525,821,1102,State-funded AP school,60,19,41,31.70%,68.30%,2,3.30%,58,96.70%,8,52,0,13.30%,86.70%,0.00%,29,43,60,71.70% +134532,394,3332,State-funded primary,243,120,123,49.40%,50.60%,7,2.90%,36,14.80%,8,235,0,3.30%,96.70%,0.00%,93,94,197,47.70% +134562,936,6585,Independent school,177,80,97,45.20%,54.80%,3,1.70%,68,38.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134571,330,6106,Independent school,111,0,111,0.00%,100.00%,0,0.00%,14,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134575,354,6006,Independent school,88,0,88,0.00%,100.00%,0,0.00%,1,1.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134577,316,6063,Independent school,111,33,78,29.70%,70.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134579,320,6064,Independent school,108,54,54,50.00%,50.00%,0,0.00%,1,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134580,308,6068,Independent school,15,8,7,53.30%,46.70%,0,0.00%,1,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134582,886,6097,Independent school,18,4,14,22.20%,77.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134585,306,6096,Independent school,98,0,98,0.00%,100.00%,0,0.00%,2,2.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134587,380,6116,Independent school,42,42,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134589,813,6007,Independent school,189,90,99,47.60%,52.40%,3,1.60%,23,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134591,316,6065,Independent school,27,17,10,63.00%,37.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134594,315,6081,Independent school,65,10,55,15.40%,84.60%,65,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134595,856,6018,Independent school,51,19,32,37.30%,62.70%,1,2.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134597,307,1104,State-funded AP school,3,0,3,0.00%,100.00%,3,100.00%,0,0.00%,1,2,0,33.30%,66.70%,0.00%,3,3,3,100.00% +134598,888,3998,State-funded primary,164,82,82,50.00%,50.00%,6,3.70%,16,9.80%,20,144,0,12.20%,87.80%,0.00%,78,80,139,57.60% +134599,888,3996,State-funded primary,385,179,206,46.50%,53.50%,9,2.30%,69,17.90%,78,307,0,20.30%,79.70%,0.00%,181,181,350,51.70% +134603,888,3995,State-funded primary,169,93,76,55.00%,45.00%,2,1.20%,49,29.00%,20,149,0,11.80%,88.20%,0.00%,55,52,150,34.70% +134605,886,6108,Independent school,24,4,20,16.70%,83.30%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134621,808,3393,State-funded primary,467,217,250,46.50%,53.50%,8,1.70%,29,6.20%,16,451,0,3.40%,96.60%,0.00%,87,88,398,22.10% +134623,356,1103,State-funded AP school,99,34,65,34.30%,65.70%,33,33.30%,66,66.70%,0,99,0,0.00%,100.00%,0.00%,65,69,99,69.70% +134625,888,7111,State-funded special school,66,7,59,10.60%,89.40%,66,100.00%,0,0.00%,2,64,0,3.00%,97.00%,0.00%,52,56,66,84.80% +134627,316,6066,Independent school,194,194,0,100.00%,0.00%,0,0.00%,1,0.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134634,845,6054,Independent school,32,5,27,15.60%,84.40%,32,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134635,204,1103,State-funded AP school,41,11,30,26.80%,73.20%,5,12.20%,28,68.30%,23,18,0,56.10%,43.90%,0.00%,17,21,41,51.20% +134640,855,7215,State-funded special school,224,83,141,37.10%,62.90%,224,100.00%,0,0.00%,3,221,0,1.30%,98.70%,0.00%,84,71,191,37.20% +134641,878,3777,State-funded primary,343,173,170,50.40%,49.60%,8,2.30%,42,12.20%,52,288,3,15.20%,84.00%,0.90%,32,29,313,9.30% +134646,350,4805,State-funded secondary,1068,503,565,47.10%,52.90%,11,1.00%,93,8.70%,391,673,4,36.60%,63.00%,0.40%,324,387,1068,36.20% +134652,850,3199,State-funded primary,200,103,97,51.50%,48.50%,8,4.00%,43,21.50%,25,175,0,12.50%,87.50%,0.00%,84,84,200,42.00% +134657,840,3524,State-funded primary,424,207,217,48.80%,51.20%,5,1.20%,87,20.50%,10,413,1,2.40%,97.40%,0.20%,161,143,369,38.80% +134658,341,7069,State-funded special school,179,64,115,35.80%,64.20%,179,100.00%,0,0.00%,18,156,5,10.10%,87.20%,2.80%,99,104,149,69.80% +134659,381,3332,State-funded primary,235,118,117,50.20%,49.80%,16,6.80%,29,12.30%,11,224,0,4.70%,95.30%,0.00%,135,124,209,59.30% +134660,815,6036,Independent school,20,5,15,25.00%,75.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134661,342,3828,State-funded primary,311,132,179,42.40%,57.60%,7,2.30%,59,19.00%,24,287,0,7.70%,92.30%,0.00%,133,134,288,46.50% +134662,840,7033,State-funded special school,348,108,240,31.00%,69.00%,348,100.00%,0,0.00%,8,340,0,2.30%,97.70%,0.00%,179,167,307,54.40% +134663,840,7034,State-funded special school,195,54,141,27.70%,72.30%,195,100.00%,0,0.00%,6,189,0,3.10%,96.90%,0.00%,112,116,192,60.40% +134664,207,6401,Independent school,443,232,211,52.40%,47.60%,0,0.00%,118,26.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134666,860,3494,State-funded primary,185,96,89,51.90%,48.10%,7,3.80%,48,25.90%,6,179,0,3.20%,96.80%,0.00%,102,103,185,55.70% +134668,313,6074,Independent school,162,84,78,51.90%,48.10%,2,1.20%,15,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134674,878,1008,State-funded nursery,140,71,69,50.70%,49.30%,0,0.00%,11,7.90%,21,119,0,15.00%,85.00%,0.00%,0,0,0,0.00% +134677,302,3518,State-funded primary,440,212,228,48.20%,51.80%,6,1.40%,50,11.40%,276,162,2,62.70%,36.80%,0.50%,149,167,402,41.50% +134680,309,3511,State-funded primary,422,201,221,47.60%,52.40%,15,3.60%,52,12.30%,156,266,0,37.00%,63.00%,0.00%,78,80,390,20.50% +134681,309,3512,State-funded primary,424,208,216,49.10%,50.90%,20,4.70%,67,15.80%,200,223,1,47.20%,52.60%,0.20%,83,89,391,22.80% +134687,370,3324,State-funded primary,448,226,222,50.40%,49.60%,6,1.30%,45,10.00%,51,397,0,11.40%,88.60%,0.00%,159,163,415,39.30% +134693,204,6905,State-funded secondary,1447,694,753,48.00%,52.00%,75,5.20%,179,12.40%,699,747,1,48.30%,51.60%,0.10%,516,489,1079,45.30% +134694,933,1109,State-funded AP school,29,7,22,24.10%,75.90%,20,69.00%,9,31.00%,0,26,3,0.00%,89.70%,10.30%,21,22,29,75.90% +134697,933,1112,State-funded AP school,34,7,27,20.60%,79.40%,22,64.70%,12,35.30%,1,33,0,2.90%,97.10%,0.00%,25,26,34,76.50% +134699,933,1114,State-funded AP school,35,16,19,45.70%,54.30%,24,68.60%,10,28.60%,1,33,1,2.90%,94.30%,2.90%,14,16,35,45.70% +134701,821,3363,State-funded primary,884,416,468,47.10%,52.90%,30,3.40%,126,14.30%,585,293,6,66.20%,33.10%,0.70%,179,186,834,22.30% +134705,807,3394,State-funded primary,291,142,149,48.80%,51.20%,32,11.00%,54,18.60%,56,234,1,19.20%,80.40%,0.30%,153,154,251,61.40% +134708,808,3394,State-funded primary,703,344,359,48.90%,51.10%,11,1.60%,120,17.10%,20,683,0,2.80%,97.20%,0.00%,36,40,627,6.40% +134719,841,3515,State-funded primary,503,248,255,49.30%,50.70%,4,0.80%,68,13.50%,22,481,0,4.40%,95.60%,0.00%,108,112,503,22.30% +134727,816,7032,State-funded special school,197,65,132,33.00%,67.00%,197,100.00%,0,0.00%,8,189,0,4.10%,95.90%,0.00%,60,51,158,32.30% +134732,936,3937,State-funded primary,262,122,140,46.60%,53.40%,8,3.10%,45,17.20%,56,206,0,21.40%,78.60%,0.00%,97,90,232,38.80% +134734,850,3667,State-funded primary,387,163,224,42.10%,57.90%,15,3.90%,39,10.10%,6,381,0,1.60%,98.40%,0.00%,157,161,387,41.60% +134739,909,3662,State-funded primary,374,162,212,43.30%,56.70%,4,1.10%,51,13.60%,2,372,0,0.50%,99.50%,0.00%,46,47,311,15.10% +134740,867,3357,State-funded primary,317,160,157,50.50%,49.50%,16,5.00%,57,18.00%,49,268,0,15.50%,84.50%,0.00%,65,66,300,22.00% +134742,359,3437,State-funded primary,470,234,236,49.80%,50.20%,19,4.00%,77,16.40%,99,370,1,21.10%,78.70%,0.20%,225,225,411,54.70% +134745,331,3438,State-funded primary,454,235,219,51.80%,48.20%,5,1.10%,63,13.90%,124,330,0,27.30%,72.70%,0.00%,188,187,405,46.20% +134751,373,3433,State-funded primary,414,203,211,49.00%,51.00%,9,2.20%,104,25.10%,132,282,0,31.90%,68.10%,0.00%,242,237,392,60.50% +134758,933,1115,State-funded AP school,34,6,28,17.60%,82.40%,25,73.50%,9,26.50%,0,34,0,0.00%,100.00%,0.00%,23,23,34,67.60% +134759,353,1100,State-funded AP school,42,12,30,28.60%,71.40%,4,9.50%,38,90.50%,3,39,0,7.10%,92.90%,0.00%,24,30,42,71.40% +134764,302,6086,Independent school,251,98,153,39.00%,61.00%,0,0.00%,7,2.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134765,873,1105,State-funded AP school,1,1,0,100.00%,0.00%,0,0.00%,0,0.00%,0,1,0,0.00%,100.00%,0.00%,0,0,1,0.00% +134766,896,1103,State-funded AP school,8,5,3,62.50%,37.50%,4,50.00%,4,50.00%,0,8,0,0.00%,100.00%,0.00%,2,0,0,0.00% +134768,332,1104,State-funded AP school,18,7,11,38.90%,61.10%,0,0.00%,14,77.80%,0,18,0,0.00%,100.00%,0.00%,17,17,18,94.40% +134769,850,6084,Independent school,603,251,352,41.60%,58.40%,3,0.50%,129,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134770,888,6054,Independent school,41,21,20,51.20%,48.80%,2,4.90%,5,12.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134773,830,3549,State-funded primary,173,85,88,49.10%,50.90%,3,1.70%,24,13.90%,3,170,0,1.70%,98.30%,0.00%,69,63,148,42.60% +134774,330,3431,State-funded primary,663,331,332,49.90%,50.10%,5,0.80%,104,15.70%,76,586,1,11.50%,88.40%,0.20%,110,111,623,17.80% +134776,938,3365,State-funded primary,423,208,215,49.20%,50.80%,7,1.70%,40,9.50%,121,302,0,28.60%,71.40%,0.00%,27,27,423,6.40% +134779,356,3525,State-funded primary,444,221,223,49.80%,50.20%,3,0.70%,80,18.00%,14,430,0,3.20%,96.80%,0.00%,47,50,397,12.60% +134780,303,3510,State-funded primary,412,204,208,49.50%,50.50%,4,1.00%,36,8.70%,96,316,0,23.30%,76.70%,0.00%,23,27,388,7.00% +134781,909,6054,Independent school,12,0,12,0.00%,100.00%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134782,206,6381,Independent school,283,140,143,49.50%,50.50%,0,0.00%,37,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134783,886,7072,State-funded special school,410,134,276,32.70%,67.30%,390,95.10%,20,4.90%,16,394,0,3.90%,96.10%,0.00%,164,148,343,43.10% +134784,353,3504,State-funded primary,426,210,216,49.30%,50.70%,10,2.30%,64,15.00%,40,386,0,9.40%,90.60%,0.00%,122,125,378,33.10% +134785,343,3379,State-funded primary,255,127,128,49.80%,50.20%,14,5.50%,100,39.20%,29,226,0,11.40%,88.60%,0.00%,167,151,200,75.50% +134789,909,3663,State-funded primary,286,145,141,50.70%,49.30%,9,3.10%,21,7.30%,1,285,0,0.30%,99.70%,0.00%,18,18,256,7.00% +134791,938,3370,State-funded primary,548,282,266,51.50%,48.50%,10,1.80%,81,14.80%,46,500,2,8.40%,91.20%,0.40%,81,85,548,15.50% +134798,302,6905,State-funded secondary,1736,745,991,42.90%,57.10%,44,2.50%,182,10.50%,955,669,112,55.00%,38.50%,6.50%,656,610,1374,44.40% +134800,309,6084,Independent school,88,45,43,51.10%,48.90%,0,0.00%,3,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134805,821,6006,Independent school,98,0,98,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134807,821,6007,Independent school,165,165,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134809,856,6017,Independent school,296,191,105,64.50%,35.50%,2,0.70%,5,1.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134810,211,6394,Independent school,159,0,159,0.00%,100.00%,0,0.00%,1,0.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134813,393,7006,State-funded special school,46,6,40,13.00%,87.00%,46,100.00%,0,0.00%,0,46,0,0.00%,100.00%,0.00%,35,37,46,80.40% +134814,941,6905,State-funded secondary,1721,831,890,48.30%,51.70%,30,1.70%,237,13.80%,558,1157,6,32.40%,67.20%,0.30%,382,402,1476,27.20% +134815,208,6905,State-funded secondary,754,338,416,44.80%,55.20%,30,4.00%,98,13.00%,367,314,73,48.70%,41.60%,9.70%,310,318,621,51.20% +134822,213,6395,Independent school,384,0,384,0.00%,100.00%,0,0.00%,55,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134833,936,6584,Independent school,102,41,61,40.20%,59.80%,102,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134840,330,3432,State-funded primary,848,456,392,53.80%,46.20%,12,1.40%,244,28.80%,758,87,3,89.40%,10.30%,0.40%,397,415,781,53.10% +134841,892,3323,State-funded primary,372,180,192,48.40%,51.60%,3,0.80%,27,7.30%,67,305,0,18.00%,82.00%,0.00%,187,179,332,53.90% +134842,892,3324,State-funded primary,235,128,107,54.50%,45.50%,1,0.40%,47,20.00%,89,146,0,37.90%,62.10%,0.00%,102,96,207,46.40% +134844,850,1005,State-funded nursery,100,41,59,41.00%,59.00%,0,0.00%,38,38.00%,10,90,0,10.00%,90.00%,0.00%,0,0,1,0.00% +134845,357,2081,State-funded primary,442,233,209,52.70%,47.30%,8,1.80%,147,33.30%,40,400,2,9.00%,90.50%,0.50%,155,176,407,43.20% +134846,304,1110,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +134852,894,3361,State-funded primary,465,222,243,47.70%,52.30%,6,1.30%,59,12.70%,202,263,0,43.40%,56.60%,0.00%,173,190,392,48.50% +134853,808,3395,State-funded primary,447,218,229,48.80%,51.20%,7,1.60%,87,19.50%,98,349,0,21.90%,78.10%,0.00%,211,216,391,55.20% +134855,840,3516,State-funded primary,231,111,120,48.10%,51.90%,2,0.90%,29,12.60%,3,228,0,1.30%,98.70%,0.00%,93,94,189,49.70% +134857,886,3898,State-funded primary,420,179,241,42.60%,57.40%,8,1.90%,33,7.90%,52,368,0,12.40%,87.60%,0.00%,143,145,329,44.10% +134859,878,1110,State-funded AP school,2,2,0,100.00%,0.00%,0,0.00%,1,50.00%,1,1,0,50.00%,50.00%,0.00%,1,1,2,50.00% +134860,882,3825,State-funded primary,465,228,237,49.00%,51.00%,8,1.70%,49,10.50%,80,385,0,17.20%,82.80%,0.00%,157,149,419,35.60% +134865,342,7008,State-funded special school,223,64,159,28.70%,71.30%,223,100.00%,0,0.00%,3,220,0,1.30%,98.70%,0.00%,104,109,223,48.90% +134867,813,3508,State-funded primary,307,147,160,47.90%,52.10%,9,2.90%,46,15.00%,11,296,0,3.60%,96.40%,0.00%,123,116,268,43.30% +134870,936,1122,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +134872,888,1118,State-funded AP school,57,24,33,42.10%,57.90%,9,15.80%,43,75.40%,1,54,2,1.80%,94.70%,3.50%,29,33,57,57.90% +134880,860,1111,State-funded AP school,21,4,17,19.00%,81.00%,2,9.50%,6,28.60%,8,13,0,38.10%,61.90%,0.00%,7,11,21,52.40% +134883,356,3526,State-funded primary,409,178,231,43.50%,56.50%,28,6.80%,40,9.80%,23,386,0,5.60%,94.40%,0.00%,36,37,409,9.00% +134884,383,7074,State-funded special school,245,81,164,33.10%,66.90%,244,99.60%,1,0.40%,15,227,3,6.10%,92.70%,1.20%,120,92,178,51.70% +134887,306,6073,Independent school,108,51,57,47.20%,52.80%,2,1.90%,25,23.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134888,342,7009,Non-maintained special school,64,12,52,18.80%,81.30%,64,100.00%,0,0.00%,2,58,4,3.10%,90.60%,6.30%,0,21,54,38.90% +134889,892,7041,Non-maintained special school,54,5,49,9.30%,90.70%,54,100.00%,0,0.00%,6,48,0,11.10%,88.90%,0.00%,19,16,39,41.00% +134891,310,6080,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134893,874,6035,Independent school,23,2,21,8.70%,91.30%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134894,873,3389,State-funded primary,417,219,198,52.50%,47.50%,7,1.70%,54,12.90%,187,230,0,44.80%,55.20%,0.00%,70,72,417,17.30% +134896,938,3368,State-funded primary,460,224,236,48.70%,51.30%,19,4.10%,122,26.50%,11,449,0,2.40%,97.60%,0.00%,115,120,460,26.10% +134897,896,3804,State-funded primary,203,104,99,51.20%,48.80%,8,3.90%,63,31.00%,18,185,0,8.90%,91.10%,0.00%,93,94,203,46.30% +134902,936,7069,Non-maintained special school,41,21,20,51.20%,48.80%,36,87.80%,5,12.20%,6,35,0,14.60%,85.40%,0.00%,0,10,28,35.70% +134903,210,3670,State-funded primary,275,131,144,47.60%,52.40%,29,10.50%,74,26.90%,139,136,0,50.50%,49.50%,0.00%,150,140,233,60.10% +134904,887,3759,State-funded primary,668,328,340,49.10%,50.90%,9,1.30%,51,7.60%,24,644,0,3.60%,96.40%,0.00%,44,45,624,7.20% +134908,330,6111,Independent school,188,120,68,63.80%,36.20%,0,0.00%,77,41.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134909,933,6207,Independent school,33,12,21,36.40%,63.60%,33,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134911,213,6405,Independent school,118,33,85,28.00%,72.00%,106,89.80%,12,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134913,383,3925,State-funded primary,224,110,114,49.10%,50.90%,3,1.30%,46,20.50%,1,223,0,0.40%,99.60%,0.00%,35,32,204,15.70% +134917,800,3448,State-funded primary,265,134,131,50.60%,49.40%,15,5.70%,56,21.10%,20,245,0,7.50%,92.50%,0.00%,80,77,231,33.30% +134919,316,1101,State-funded AP school,17,6,11,35.30%,64.70%,1,5.90%,16,94.10%,1,16,0,5.90%,94.10%,0.00%,10,15,17,88.20% +134924,937,3596,State-funded primary,256,140,116,54.70%,45.30%,5,2.00%,35,13.70%,5,251,0,2.00%,98.00%,0.00%,62,64,256,25.00% +134928,916,3370,State-funded primary,418,204,214,48.80%,51.20%,9,2.20%,65,15.60%,141,276,1,33.70%,66.00%,0.20%,67,69,418,16.50% +134929,310,3511,State-funded primary,338,174,164,51.50%,48.50%,3,0.90%,42,12.40%,161,177,0,47.60%,52.40%,0.00%,97,97,338,28.70% +134932,318,6081,Independent school,268,139,129,51.90%,48.10%,0,0.00%,65,24.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134937,873,7025,State-funded special school,179,59,120,33.00%,67.00%,179,100.00%,0,0.00%,30,149,0,16.80%,83.20%,0.00%,70,61,150,40.70% +134938,857,6005,Independent school,101,9,92,8.90%,91.10%,101,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134940,882,6053,Independent school,8,0,8,0.00%,100.00%,2,25.00%,2,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134945,850,3668,State-funded primary,331,159,172,48.00%,52.00%,5,1.50%,41,12.40%,20,304,7,6.00%,91.80%,2.10%,55,54,292,18.50% +134958,926,3424,State-funded primary,460,226,234,49.10%,50.90%,14,3.00%,89,19.30%,140,320,0,30.40%,69.60%,0.00%,186,189,417,45.30% +134960,926,3425,State-funded primary,688,339,349,49.30%,50.70%,22,3.20%,109,15.80%,203,473,12,29.50%,68.80%,1.70%,249,259,579,44.70% +134964,926,3428,State-funded primary,350,171,179,48.90%,51.10%,4,1.10%,55,15.70%,74,274,2,21.10%,78.30%,0.60%,38,38,350,10.90% +134965,926,3429,State-funded primary,439,215,224,49.00%,51.00%,8,1.80%,105,23.90%,142,297,0,32.30%,67.70%,0.00%,147,163,391,41.70% +134966,354,3511,State-funded primary,626,303,323,48.40%,51.60%,17,2.70%,118,18.80%,251,375,0,40.10%,59.90%,0.00%,281,285,590,48.30% +134967,890,3815,State-funded primary,391,180,211,46.00%,54.00%,12,3.10%,69,17.60%,14,377,0,3.60%,96.40%,0.00%,127,130,376,34.60% +134970,331,1107,State-funded AP school,3,1,2,33.30%,66.70%,1,33.30%,0,0.00%,0,1,2,0.00%,33.30%,66.70%,0,2,3,66.70% +134971,886,7073,State-funded special school,219,56,163,25.60%,74.40%,219,100.00%,0,0.00%,2,217,0,0.90%,99.10%,0.00%,67,76,207,36.70% +134972,873,7026,State-funded special school,219,73,146,33.30%,66.70%,219,100.00%,0,0.00%,38,180,1,17.40%,82.20%,0.50%,96,80,186,43.00% +134973,383,3926,State-funded primary,426,218,208,51.20%,48.80%,1,0.20%,58,13.60%,50,375,1,11.70%,88.00%,0.20%,93,96,394,24.40% +134977,865,3465,State-funded primary,121,49,72,40.50%,59.50%,1,0.80%,15,12.40%,0,121,0,0.00%,100.00%,0.00%,16,16,121,13.20% +134978,926,6419,Independent school,7,1,6,14.30%,85.70%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134979,873,3390,State-funded primary,172,82,90,47.70%,52.30%,11,6.40%,48,27.90%,57,115,0,33.10%,66.90%,0.00%,56,54,152,35.50% +134982,330,6112,Independent school,30,5,25,16.70%,83.30%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +134987,839,3699,State-funded primary,652,327,325,50.20%,49.80%,17,2.60%,54,8.30%,19,633,0,2.90%,97.10%,0.00%,48,49,652,7.50% +134988,343,3380,State-funded primary,239,124,115,51.90%,48.10%,6,2.50%,24,10.00%,1,237,1,0.40%,99.20%,0.40%,16,16,210,7.60% +134989,888,4799,State-funded secondary,1064,511,553,48.00%,52.00%,30,2.80%,116,10.90%,273,758,33,25.70%,71.20%,3.10%,297,325,1064,30.50% +134991,888,1049,State-funded nursery,58,25,33,43.10%,56.90%,0,0.00%,12,20.70%,13,45,0,22.40%,77.60%,0.00%,9,0,0,0.00% +134993,333,6905,State-funded secondary,1325,600,725,45.30%,54.70%,21,1.60%,112,8.50%,582,743,0,43.90%,56.10%,0.00%,277,261,998,26.20% +134994,888,4801,State-funded secondary,1103,542,561,49.10%,50.90%,33,3.00%,232,21.00%,41,1061,1,3.70%,96.20%,0.10%,463,475,1103,43.10% +134996,888,4803,State-funded secondary,1125,503,622,44.70%,55.30%,19,1.70%,210,18.70%,807,318,0,71.70%,28.30%,0.00%,349,380,1125,33.80% +134999,894,3362,State-funded primary,450,215,235,47.80%,52.20%,9,2.00%,45,10.00%,89,361,0,19.80%,80.20%,0.00%,90,92,403,22.80% +135001,392,6011,Independent school,47,11,36,23.40%,76.60%,47,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135003,888,4806,State-funded secondary,1380,694,686,50.30%,49.70%,23,1.70%,276,20.00%,112,1264,4,8.10%,91.60%,0.30%,466,497,1380,36.00% +135004,312,6906,State-funded secondary,306,142,164,46.40%,53.60%,11,3.60%,72,23.50%,47,259,0,15.40%,84.60%,0.00%,98,96,240,40.00% +135007,371,6905,State-funded secondary,1254,658,596,52.50%,47.50%,12,1.00%,156,12.40%,126,1128,0,10.00%,90.00%,0.00%,376,398,1091,36.50% +135009,936,3940,State-funded primary,385,179,206,46.50%,53.50%,18,4.70%,77,20.00%,76,308,1,19.70%,80.00%,0.30%,149,130,332,39.20% +135010,319,1102,State-funded AP school,5,1,4,20.00%,80.00%,1,20.00%,4,80.00%,0,5,0,0.00%,100.00%,0.00%,1,1,5,20.00% +135012,888,7112,State-funded special school,126,40,86,31.70%,68.30%,126,100.00%,0,0.00%,20,106,0,15.90%,84.10%,0.00%,52,54,126,42.90% +135013,888,7113,State-funded special school,182,56,126,30.80%,69.20%,181,99.50%,1,0.50%,53,129,0,29.10%,70.90%,0.00%,100,86,144,59.70% +135014,888,7114,State-funded special school,113,30,83,26.50%,73.50%,113,100.00%,0,0.00%,26,87,0,23.00%,77.00%,0.00%,38,40,113,35.40% +135015,888,7115,State-funded special school,162,50,112,30.90%,69.10%,162,100.00%,0,0.00%,56,106,0,34.60%,65.40%,0.00%,74,60,121,49.60% +135016,335,3327,State-funded primary,256,130,126,50.80%,49.20%,7,2.70%,38,14.80%,23,233,0,9.00%,91.00%,0.00%,123,126,217,58.10% +135017,354,3512,State-funded primary,530,249,281,47.00%,53.00%,17,3.20%,87,16.40%,85,445,0,16.00%,84.00%,0.00%,255,258,530,48.70% +135018,886,6103,Independent school,34,13,21,38.20%,61.80%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135019,896,3807,State-funded primary,486,230,256,47.30%,52.70%,21,4.30%,62,12.80%,10,475,1,2.10%,97.70%,0.20%,57,58,408,14.20% +135021,823,3351,State-funded primary,489,258,231,52.80%,47.20%,6,1.20%,37,7.60%,11,478,0,2.20%,97.80%,0.00%,22,19,431,4.40% +135027,352,6062,Independent school,20,5,15,25.00%,75.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135029,333,3406,State-funded primary,448,234,214,52.20%,47.80%,7,1.60%,33,7.40%,218,230,0,48.70%,51.30%,0.00%,168,171,403,42.40% +135030,382,3410,State-funded primary,628,297,331,47.30%,52.70%,16,2.50%,59,9.40%,18,610,0,2.90%,97.10%,0.00%,65,66,628,10.50% +135031,894,3363,State-funded primary,439,228,211,51.90%,48.10%,5,1.10%,120,27.30%,55,383,1,12.50%,87.20%,0.20%,215,217,407,53.30% +135035,885,4001,State-funded secondary,973,482,491,49.50%,50.50%,29,3.00%,177,18.20%,18,955,0,1.80%,98.20%,0.00%,169,173,871,19.90% +135036,885,3011,State-funded primary,246,105,141,42.70%,57.30%,6,2.40%,33,13.40%,3,243,0,1.20%,98.80%,0.00%,37,34,211,16.10% +135046,885,3330,State-funded primary,253,130,123,51.40%,48.60%,9,3.60%,39,15.40%,6,247,0,2.40%,97.60%,0.00%,28,26,207,12.60% +135047,885,2907,State-funded primary,427,210,217,49.20%,50.80%,5,1.20%,90,21.10%,23,404,0,5.40%,94.60%,0.00%,116,110,394,27.90% +135048,885,3016,State-funded primary,221,115,106,52.00%,48.00%,1,0.50%,50,22.60%,1,220,0,0.50%,99.50%,0.00%,44,37,200,18.50% +135050,885,2910,State-funded primary,866,441,425,50.90%,49.10%,8,0.90%,146,16.90%,24,842,0,2.80%,97.20%,0.00%,193,183,756,24.20% +135051,885,3021,State-funded primary,417,200,217,48.00%,52.00%,5,1.20%,44,10.60%,4,413,0,1.00%,99.00%,0.00%,49,50,417,12.00% +135052,885,2911,State-funded primary,327,155,172,47.40%,52.60%,6,1.80%,52,15.90%,17,301,9,5.20%,92.00%,2.80%,85,77,268,28.70% +135057,885,3331,State-funded primary,208,101,107,48.60%,51.40%,12,5.80%,41,19.70%,41,167,0,19.70%,80.30%,0.00%,129,111,179,62.00% +135061,885,4503,State-funded secondary,920,478,442,52.00%,48.00%,32,3.50%,111,12.10%,19,901,0,2.10%,97.90%,0.00%,191,208,857,24.30% +135063,941,3511,State-funded primary,204,97,107,47.50%,52.50%,1,0.50%,10,4.90%,6,198,0,2.90%,97.10%,0.00%,11,11,204,5.40% +135064,929,3920,State-funded primary,29,15,14,51.70%,48.30%,0,0.00%,6,20.70%,0,29,0,0.00%,100.00%,0.00%,10,10,26,38.50% +135065,813,6003,Independent school,30,7,23,23.30%,76.70%,24,80.00%,6,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135066,926,6152,Independent school,111,17,94,15.30%,84.70%,111,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135067,885,3400,State-funded primary,151,57,94,37.70%,62.30%,6,4.00%,42,27.80%,15,136,0,9.90%,90.10%,0.00%,73,71,129,55.00% +135070,209,6906,State-funded secondary,1254,516,738,41.10%,58.90%,19,1.50%,243,19.40%,263,980,11,21.00%,78.10%,0.90%,479,479,995,48.10% +135071,355,6905,State-funded secondary,892,433,459,48.50%,51.50%,17,1.90%,131,14.70%,186,706,0,20.90%,79.10%,0.00%,363,434,892,48.70% +135072,302,6118,Independent school,40,40,0,100.00%,0.00%,16,40.00%,24,60.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135073,209,6905,State-funded secondary,1376,697,679,50.70%,49.30%,36,2.60%,165,12.00%,208,1161,7,15.10%,84.40%,0.50%,349,355,1104,32.20% +135074,830,6039,Independent school,85,51,34,60.00%,40.00%,1,1.20%,7,8.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135076,885,3397,State-funded primary,473,228,245,48.20%,51.80%,3,0.60%,85,18.00%,3,434,36,0.60%,91.80%,7.60%,93,87,417,20.90% +135077,811,3509,State-funded primary,202,87,115,43.10%,56.90%,4,2.00%,18,8.90%,2,200,0,1.00%,99.00%,0.00%,23,24,202,11.90% +135078,811,3510,State-funded primary,328,157,171,47.90%,52.10%,6,1.80%,37,11.30%,13,315,0,4.00%,96.00%,0.00%,47,42,287,14.60% +135079,869,3359,State-funded primary,468,213,255,45.50%,54.50%,25,5.30%,37,7.90%,140,313,15,29.90%,66.90%,3.20%,54,55,440,12.50% +135080,869,3360,State-funded primary,411,203,208,49.40%,50.60%,10,2.40%,44,10.70%,43,367,1,10.50%,89.30%,0.20%,64,63,333,18.90% +135081,335,3329,State-funded primary,459,209,250,45.50%,54.50%,12,2.60%,71,15.50%,102,355,2,22.20%,77.30%,0.40%,164,171,418,40.90% +135083,919,3983,State-funded primary,227,120,107,52.90%,47.10%,7,3.10%,41,18.10%,44,182,1,19.40%,80.20%,0.40%,66,68,211,32.20% +135084,919,3984,State-funded primary,226,96,130,42.50%,57.50%,2,0.90%,23,10.20%,19,207,0,8.40%,91.60%,0.00%,42,45,203,22.20% +135085,343,3382,State-funded primary,236,130,106,55.10%,44.90%,3,1.30%,51,21.60%,3,233,0,1.30%,98.70%,0.00%,45,46,209,22.00% +135086,302,3520,State-funded primary,421,193,228,45.80%,54.20%,10,2.40%,20,4.80%,65,355,1,15.40%,84.30%,0.20%,4,4,421,1.00% +135088,841,3517,State-funded primary,543,271,272,49.90%,50.10%,5,0.90%,67,12.30%,24,519,0,4.40%,95.60%,0.00%,165,158,514,30.70% +135090,313,6081,Independent school,80,40,40,50.00%,50.00%,2,2.50%,2,2.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135092,888,6095,Independent school,74,21,53,28.40%,71.60%,74,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135097,916,6081,Independent school,153,76,77,49.70%,50.30%,2,1.30%,8,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135099,871,3367,State-funded primary,617,327,290,53.00%,47.00%,24,3.90%,84,13.60%,439,176,2,71.20%,28.50%,0.30%,110,113,617,18.30% +135105,850,6086,Independent school,39,8,31,20.50%,79.50%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135106,886,3906,State-funded primary,417,192,225,46.00%,54.00%,9,2.20%,41,9.80%,41,374,2,9.80%,89.70%,0.50%,69,72,417,17.30% +135107,826,3389,State-funded primary,387,185,202,47.80%,52.20%,7,1.80%,37,9.60%,52,333,2,13.40%,86.00%,0.50%,68,70,387,18.10% +135108,892,1012,State-funded nursery,100,51,49,51.00%,49.00%,0,0.00%,16,16.00%,41,59,0,41.00%,59.00%,0.00%,12,0,0,0.00% +135111,938,6272,Independent school,19,4,15,21.10%,78.90%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135113,841,6003,Independent school,16,5,11,31.30%,68.80%,10,62.50%,6,37.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135115,811,3513,State-funded primary,416,204,212,49.00%,51.00%,2,0.50%,50,12.00%,13,403,0,3.10%,96.90%,0.00%,38,39,416,9.40% +135118,886,3907,State-funded primary,609,289,320,47.50%,52.50%,18,3.00%,126,20.70%,47,561,1,7.70%,92.10%,0.20%,109,115,609,18.90% +135120,831,6905,State-funded secondary,1198,569,629,47.50%,52.50%,50,4.20%,98,8.20%,206,990,2,17.20%,82.60%,0.20%,257,315,1019,30.90% +135122,357,4028,State-funded secondary,1380,831,549,60.20%,39.80%,19,1.40%,105,7.60%,125,1253,2,9.10%,90.80%,0.10%,477,572,1380,41.40% +135125,886,3909,State-funded primary,460,222,238,48.30%,51.70%,22,4.80%,84,18.30%,70,389,1,15.20%,84.60%,0.20%,221,227,421,53.90% +135126,808,3397,State-funded primary,367,174,193,47.40%,52.60%,7,1.90%,86,23.40%,16,351,0,4.40%,95.60%,0.00%,156,160,322,49.70% +135130,886,3910,State-funded primary,619,292,327,47.20%,52.80%,52,8.40%,72,11.60%,33,586,0,5.30%,94.70%,0.00%,153,154,619,24.90% +135131,873,3942,State-funded primary,600,302,298,50.30%,49.70%,17,2.80%,77,12.80%,61,538,1,10.20%,89.70%,0.20%,154,155,600,25.80% +135132,873,3943,State-funded primary,420,230,190,54.80%,45.20%,12,2.90%,52,12.40%,66,347,7,15.70%,82.60%,1.70%,71,71,420,16.90% +135136,896,3813,State-funded primary,513,245,268,47.80%,52.20%,16,3.10%,31,6.00%,41,472,0,8.00%,92.00%,0.00%,60,63,470,13.40% +135139,334,3517,State-funded primary,485,248,237,51.10%,48.90%,9,1.90%,109,22.50%,28,457,0,5.80%,94.20%,0.00%,292,293,451,65.00% +135140,202,6400,Independent school,394,119,275,30.20%,69.80%,0,0.00%,87,22.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135148,926,3431,State-funded primary,590,279,311,47.30%,52.70%,18,3.10%,86,14.60%,132,457,1,22.40%,77.50%,0.20%,68,68,540,12.60% +135149,894,6905,State-funded secondary,1219,600,619,49.20%,50.80%,18,1.50%,153,12.60%,117,1029,73,9.60%,84.40%,6.00%,364,346,985,35.10% +135155,307,6338,Independent school,87,87,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135164,886,3913,State-funded primary,138,59,79,42.80%,57.20%,4,2.90%,24,17.40%,19,119,0,13.80%,86.20%,0.00%,44,45,138,32.60% +135167,202,6401,Independent school,12,1,11,8.30%,91.70%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135168,355,6054,Independent school,121,0,121,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135170,333,6906,State-funded secondary,1557,702,855,45.10%,54.90%,18,1.20%,134,8.60%,707,833,17,45.40%,53.50%,1.10%,541,551,1294,42.60% +135174,341,6907,State-funded secondary,1054,1048,6,99.40%,0.60%,10,0.90%,189,17.90%,215,839,0,20.40%,79.60%,0.00%,212,216,783,27.60% +135175,205,7206,Non-maintained special school,53,23,30,43.40%,56.60%,53,100.00%,0,0.00%,20,33,0,37.70%,62.30%,0.00%,23,28,53,52.80% +135176,812,6905,State-funded secondary,618,276,342,44.70%,55.30%,13,2.10%,133,21.50%,42,576,0,6.80%,93.20%,0.00%,203,225,618,36.40% +135177,865,3471,State-funded primary,301,144,157,47.80%,52.20%,13,4.30%,73,24.30%,29,271,1,9.60%,90.00%,0.30%,17,24,301,8.00% +135180,938,6050,Independent school,16,4,12,25.00%,75.00%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135185,855,6023,Independent school,44,21,23,47.70%,52.30%,6,13.60%,7,15.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135187,830,6034,Independent school,10,6,4,60.00%,40.00%,3,30.00%,7,70.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135193,320,3311,State-funded primary,365,172,193,47.10%,52.90%,19,5.20%,42,11.50%,147,218,0,40.30%,59.70%,0.00%,132,133,325,40.90% +135197,886,3916,State-funded primary,390,184,206,47.20%,52.80%,12,3.10%,66,16.90%,14,376,0,3.60%,96.40%,0.00%,178,182,390,46.70% +135198,886,6122,Independent school,6,0,6,0.00%,100.00%,5,83.30%,1,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135199,359,7023,State-funded special school,87,9,78,10.30%,89.70%,87,100.00%,0,0.00%,0,87,0,0.00%,100.00%,0.00%,63,64,87,73.60% +135200,354,7013,State-funded special school,120,29,91,24.20%,75.80%,118,98.30%,2,1.70%,45,75,0,37.50%,62.50%,0.00%,51,51,120,42.50% +135201,354,7014,State-funded special school,121,31,90,25.60%,74.40%,120,99.20%,1,0.80%,21,100,0,17.40%,82.60%,0.00%,55,56,121,46.30% +135202,354,7015,State-funded special school,326,87,239,26.70%,73.30%,324,99.40%,2,0.60%,90,236,0,27.60%,72.40%,0.00%,154,123,224,54.90% +135203,801,3438,State-funded primary,603,287,316,47.60%,52.40%,5,0.80%,109,18.10%,87,515,1,14.40%,85.40%,0.20%,134,139,603,23.10% +135206,866,3465,State-funded primary,360,166,194,46.10%,53.90%,6,1.70%,37,10.30%,36,324,0,10.00%,90.00%,0.00%,63,66,360,18.30% +135208,330,6115,Independent school,45,6,39,13.30%,86.70%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135209,812,6906,State-funded secondary,895,401,494,44.80%,55.20%,28,3.10%,129,14.40%,30,865,0,3.40%,96.60%,0.00%,396,438,895,48.90% +135210,383,3931,State-funded primary,703,330,373,46.90%,53.10%,3,0.40%,104,14.80%,297,406,0,42.20%,57.80%,0.00%,182,188,617,30.50% +135211,310,3514,State-funded primary,432,212,220,49.10%,50.90%,20,4.60%,47,10.90%,259,171,2,60.00%,39.60%,0.50%,134,134,394,34.00% +135212,886,3917,State-funded primary,769,363,406,47.20%,52.80%,52,6.80%,100,13.00%,69,699,1,9.00%,90.90%,0.10%,313,326,734,44.40% +135213,869,3361,State-funded primary,403,190,213,47.10%,52.90%,9,2.20%,86,21.30%,67,336,0,16.60%,83.40%,0.00%,100,102,355,28.70% +135214,886,3918,State-funded primary,703,333,370,47.40%,52.60%,27,3.80%,164,23.30%,40,663,0,5.70%,94.30%,0.00%,292,299,672,44.50% +135215,333,3408,State-funded primary,633,300,333,47.40%,52.60%,7,1.10%,80,12.60%,214,409,10,33.80%,64.60%,1.60%,267,276,591,46.70% +135216,384,6348,Independent school,101,21,80,20.80%,79.20%,101,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135217,855,6026,Independent school,73,15,58,20.50%,79.50%,73,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135219,888,6097,Independent school,108,61,47,56.50%,43.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135221,919,3987,State-funded primary,220,109,111,49.50%,50.50%,3,1.40%,64,29.10%,60,160,0,27.30%,72.70%,0.00%,52,53,202,26.20% +135222,919,3988,State-funded primary,361,175,186,48.50%,51.50%,9,2.50%,55,15.20%,106,255,0,29.40%,70.60%,0.00%,145,149,342,43.60% +135223,919,3989,State-funded primary,430,207,223,48.10%,51.90%,14,3.30%,41,9.50%,178,252,0,41.40%,58.60%,0.00%,123,126,406,31.00% +135224,919,3990,State-funded primary,433,206,227,47.60%,52.40%,11,2.50%,96,22.20%,85,348,0,19.60%,80.40%,0.00%,117,120,404,29.70% +135226,302,3523,State-funded primary,673,347,326,51.60%,48.40%,15,2.20%,88,13.10%,315,358,0,46.80%,53.20%,0.00%,167,168,610,27.50% +135228,380,7031,State-funded special school,230,71,159,30.90%,69.10%,230,100.00%,0,0.00%,54,176,0,23.50%,76.50%,0.00%,84,90,226,39.80% +135229,380,7032,State-funded special school,245,58,187,23.70%,76.30%,245,100.00%,0,0.00%,66,179,0,26.90%,73.10%,0.00%,125,118,184,64.10% +135232,305,7012,State-funded special school,332,91,241,27.40%,72.60%,332,100.00%,0,0.00%,42,290,0,12.70%,87.30%,0.00%,135,120,291,41.20% +135234,333,6907,State-funded secondary,1416,694,722,49.00%,51.00%,20,1.40%,149,10.50%,709,703,4,50.10%,49.60%,0.30%,427,433,1224,35.40% +135237,936,3941,State-funded primary,398,204,194,51.30%,48.70%,27,6.80%,74,18.60%,66,332,0,16.60%,83.40%,0.00%,113,116,398,29.10% +135240,850,6088,Independent school,35,6,29,17.10%,82.90%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135241,830,6035,Independent school,4,4,0,100.00%,0.00%,1,25.00%,3,75.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135242,213,6907,State-funded secondary,1303,640,663,49.10%,50.90%,35,2.70%,186,14.30%,863,397,43,66.20%,30.50%,3.30%,704,607,1050,57.80% +135244,894,3367,State-funded primary,212,86,126,40.60%,59.40%,1,0.50%,55,25.90%,4,208,0,1.90%,98.10%,0.00%,47,48,212,22.60% +135246,896,3815,State-funded primary,367,176,191,48.00%,52.00%,4,1.10%,61,16.60%,33,334,0,9.00%,91.00%,0.00%,69,69,339,20.40% +135247,813,6005,Independent school,91,7,84,7.70%,92.30%,91,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135249,306,6905,State-funded secondary,2155,974,1181,45.20%,54.80%,20,0.90%,350,16.20%,670,1473,12,31.10%,68.40%,0.60%,676,782,1713,45.70% +135250,926,6158,Independent school,27,16,11,59.30%,40.70%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135252,935,6086,Independent school,24,0,24,0.00%,100.00%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135253,333,1106,State-funded AP school,6,0,6,0.00%,100.00%,1,16.70%,5,83.30%,0,6,0,0.00%,100.00%,0.00%,5,5,6,83.30% +135254,333,1107,State-funded AP school,66,14,52,21.20%,78.80%,0,0.00%,58,87.90%,3,27,36,4.50%,40.90%,54.50%,36,44,66,66.70% +135256,896,3817,State-funded primary,302,141,161,46.70%,53.30%,21,7.00%,33,10.90%,40,262,0,13.20%,86.80%,0.00%,131,128,270,47.40% +135258,353,3506,State-funded primary,664,324,340,48.80%,51.20%,12,1.80%,77,11.60%,602,62,0,90.70%,9.30%,0.00%,189,200,608,32.90% +135259,860,6105,Independent school,14,4,10,28.60%,71.40%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135260,210,1104,State-funded AP school,48,21,27,43.80%,56.30%,1,2.10%,44,91.70%,1,47,0,2.10%,97.90%,0.00%,25,35,48,72.90% +135261,313,3941,State-funded primary,399,202,197,50.60%,49.40%,7,1.80%,31,7.80%,336,63,0,84.20%,15.80%,0.00%,56,59,373,15.80% +135262,356,6905,State-funded secondary,988,491,497,49.70%,50.30%,29,2.90%,204,20.60%,159,829,0,16.10%,83.90%,0.00%,369,401,988,40.60% +135263,874,6905,State-funded secondary,2406,1228,1178,51.00%,49.00%,42,1.70%,148,6.20%,960,1381,65,39.90%,57.40%,2.70%,656,732,2088,35.10% +135264,209,6907,State-funded secondary,1052,456,596,43.30%,56.70%,19,1.80%,138,13.10%,313,727,12,29.80%,69.10%,1.10%,374,450,1052,42.80% +135265,931,3861,State-funded primary,422,213,209,50.50%,49.50%,12,2.80%,61,14.50%,69,353,0,16.40%,83.60%,0.00%,49,50,383,13.10% +135266,916,3372,State-funded primary,212,101,111,47.60%,52.40%,9,4.20%,28,13.20%,6,206,0,2.80%,97.20%,0.00%,21,26,212,12.30% +135267,341,3965,State-funded primary,439,223,216,50.80%,49.20%,9,2.10%,127,28.90%,93,346,0,21.20%,78.80%,0.00%,234,235,391,60.10% +135270,826,3390,State-funded primary,595,297,298,49.90%,50.10%,10,1.70%,58,9.70%,133,462,0,22.40%,77.60%,0.00%,101,106,547,19.40% +135271,826,3391,State-funded primary,1290,632,658,49.00%,51.00%,17,1.30%,136,10.50%,648,635,7,50.20%,49.20%,0.50%,117,120,1219,9.80% +135277,212,6411,Independent school,242,117,125,48.30%,51.70%,1,0.40%,9,3.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135279,352,3506,State-funded primary,407,177,230,43.50%,56.50%,9,2.20%,72,17.70%,155,252,0,38.10%,61.90%,0.00%,234,219,368,59.50% +135281,860,3500,State-funded primary,350,171,179,48.90%,51.10%,10,2.90%,46,13.10%,94,256,0,26.90%,73.10%,0.00%,143,146,350,41.70% +135283,940,3514,State-funded primary,241,114,127,47.30%,52.70%,8,3.30%,23,9.50%,41,200,0,17.00%,83.00%,0.00%,38,39,211,18.50% +135286,391,3875,State-funded primary,450,228,222,50.70%,49.30%,2,0.40%,20,4.40%,26,424,0,5.80%,94.20%,0.00%,13,13,450,2.90% +135287,373,7043,State-funded special school,212,83,129,39.20%,60.80%,212,100.00%,0,0.00%,61,150,1,28.80%,70.80%,0.50%,118,95,158,60.10% +135288,333,3409,State-funded primary,468,226,242,48.30%,51.70%,19,4.10%,60,12.80%,379,88,1,81.00%,18.80%,0.20%,137,139,425,32.70% +135290,886,6909,State-funded secondary,1064,531,533,49.90%,50.10%,45,4.20%,218,20.50%,23,1041,0,2.20%,97.80%,0.00%,292,301,900,33.40% +135292,815,6098,Independent school,4,4,0,100.00%,0.00%,1,25.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135294,812,6907,State-funded secondary,1038,493,545,47.50%,52.50%,18,1.70%,169,16.30%,125,893,20,12.00%,86.00%,1.90%,454,505,958,52.70% +135295,803,6906,State-funded secondary,1247,592,655,47.50%,52.50%,16,1.30%,199,16.00%,264,949,34,21.20%,76.10%,2.70%,346,239,855,28.00% +135296,352,6907,State-funded secondary,1595,686,909,43.00%,57.00%,59,3.70%,187,11.70%,982,608,5,61.60%,38.10%,0.30%,479,500,1326,37.70% +135297,886,6910,State-funded secondary,1359,591,768,43.50%,56.50%,38,2.80%,177,13.00%,234,1119,6,17.20%,82.30%,0.40%,301,299,1155,25.90% +135298,304,6113,Independent school,169,76,93,45.00%,55.00%,0,0.00%,10,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135300,801,6907,State-funded secondary,1331,628,703,47.20%,52.80%,41,3.10%,222,16.70%,257,1072,2,19.30%,80.50%,0.20%,453,484,1331,36.40% +135305,886,6911,State-funded secondary,690,366,324,53.00%,47.00%,39,5.70%,79,11.40%,62,626,2,9.00%,90.70%,0.30%,258,284,690,41.20% +135306,940,6906,State-funded secondary,1143,565,578,49.40%,50.60%,109,9.50%,132,11.50%,304,839,0,26.60%,73.40%,0.00%,213,216,1015,21.30% +135307,355,3806,State-funded primary,356,168,188,47.20%,52.80%,6,1.70%,75,21.10%,107,248,1,30.10%,69.70%,0.30%,127,119,317,37.50% +135311,306,6906,State-funded secondary,1271,538,733,42.30%,57.70%,11,0.90%,105,8.30%,356,911,4,28.00%,71.70%,0.30%,322,335,894,37.50% +135313,354,6905,State-funded secondary,781,407,374,52.10%,47.90%,20,2.60%,127,16.30%,124,655,2,15.90%,83.90%,0.30%,346,381,781,48.80% +135314,841,6905,State-funded secondary,551,289,262,52.50%,47.50%,13,2.40%,61,11.10%,55,496,0,10.00%,90.00%,0.00%,171,253,551,45.90% +135315,210,6909,State-funded secondary,1026,440,586,42.90%,57.10%,23,2.20%,155,15.10%,555,407,64,54.10%,39.70%,6.20%,536,493,823,59.90% +135316,212,6905,State-funded secondary,1427,575,852,40.30%,59.70%,47,3.30%,191,13.40%,681,704,42,47.70%,49.30%,2.90%,343,356,1168,30.50% +135317,940,6907,State-funded secondary,1186,567,619,47.80%,52.20%,27,2.30%,137,11.60%,149,1036,1,12.60%,87.40%,0.10%,146,144,919,15.70% +135321,933,6214,Independent school,440,219,221,49.80%,50.20%,2,0.50%,159,36.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135323,838,3702,State-funded primary,111,51,60,45.90%,54.10%,3,2.70%,19,17.10%,7,104,0,6.30%,93.70%,0.00%,18,19,111,17.10% +135327,895,3818,State-funded primary,380,206,174,54.20%,45.80%,8,2.10%,12,3.20%,7,373,0,1.80%,98.20%,0.00%,26,29,380,7.60% +135328,881,3837,State-funded primary,394,211,183,53.60%,46.40%,5,1.30%,45,11.40%,36,358,0,9.10%,90.90%,0.00%,63,67,394,17.00% +135330,916,1106,State-funded AP school,74,12,62,16.20%,83.80%,17,23.00%,29,39.20%,6,68,0,8.10%,91.90%,0.00%,41,51,74,68.90% +135331,916,1107,State-funded AP school,49,14,35,28.60%,71.40%,7,14.30%,18,36.70%,2,47,0,4.10%,95.90%,0.00%,23,32,49,65.30% +135335,331,6905,State-funded secondary,894,445,449,49.80%,50.20%,5,0.60%,91,10.20%,348,544,2,38.90%,60.90%,0.20%,368,392,854,45.90% +135337,821,6905,State-funded secondary,1575,799,776,50.70%,49.30%,22,1.40%,170,10.80%,458,1117,0,29.10%,70.90%,0.00%,438,485,1429,33.90% +135338,821,6906,State-funded secondary,1443,741,702,51.40%,48.60%,16,1.10%,156,10.80%,846,549,48,58.60%,38.00%,3.30%,472,522,1336,39.10% +135341,353,3507,State-funded primary,355,173,182,48.70%,51.30%,9,2.50%,41,11.50%,32,323,0,9.00%,91.00%,0.00%,121,124,329,37.70% +135345,831,7029,State-funded special school,115,21,94,18.30%,81.70%,115,100.00%,0,0.00%,3,111,1,2.60%,96.50%,0.90%,75,86,115,74.80% +135346,888,7118,State-funded special school,217,77,140,35.50%,64.50%,214,98.60%,3,1.40%,33,184,0,15.20%,84.80%,0.00%,99,57,138,41.30% +135347,888,7119,State-funded special school,88,32,56,36.40%,63.60%,88,100.00%,0,0.00%,22,64,2,25.00%,72.70%,2.30%,30,31,85,36.50% +135348,879,3772,State-funded primary,497,254,243,51.10%,48.90%,7,1.40%,92,18.50%,41,456,0,8.20%,91.80%,0.00%,258,253,473,53.50% +135353,916,3373,State-funded primary,409,219,190,53.50%,46.50%,16,3.90%,76,18.60%,61,347,1,14.90%,84.80%,0.20%,95,100,409,24.40% +135364,866,6905,State-funded secondary,1883,942,941,50.00%,50.00%,39,2.10%,300,15.90%,380,1503,0,20.20%,79.80%,0.00%,766,767,1643,46.70% +135365,931,6905,State-funded secondary,1001,498,503,49.80%,50.20%,21,2.10%,174,17.40%,242,759,0,24.20%,75.80%,0.00%,268,283,873,32.40% +135366,891,6031,Independent school,25,13,12,52.00%,48.00%,2,8.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135367,380,6906,State-funded secondary,1746,795,951,45.50%,54.50%,66,3.80%,243,13.90%,482,1254,10,27.60%,71.80%,0.60%,730,749,1558,48.10% +135371,886,6913,State-funded secondary,1337,576,761,43.10%,56.90%,26,1.90%,147,11.00%,160,1177,0,12.00%,88.00%,0.00%,313,312,998,31.30% +135372,886,6912,State-funded secondary,719,347,372,48.30%,51.70%,22,3.10%,87,12.10%,101,618,0,14.00%,86.00%,0.00%,314,342,719,47.60% +135373,304,6121,Independent school,36,9,27,25.00%,75.00%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135374,822,3352,State-funded primary,448,226,222,50.40%,49.60%,7,1.60%,46,10.30%,77,371,0,17.20%,82.80%,0.00%,73,75,414,18.10% +135380,873,6044,Independent school,6,0,6,0.00%,100.00%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135386,874,7025,State-funded special school,59,3,56,5.10%,94.90%,59,100.00%,0,0.00%,3,56,0,5.10%,94.90%,0.00%,32,39,59,66.10% +135389,208,6906,State-funded secondary,464,215,249,46.30%,53.70%,9,1.90%,58,12.50%,207,239,18,44.60%,51.50%,3.90%,254,287,464,61.90% +135390,856,6020,Independent school,108,55,53,50.90%,49.10%,1,0.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135393,891,6032,Independent school,27,6,21,22.20%,77.80%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135404,873,6045,Independent school,187,96,91,51.30%,48.70%,0,0.00%,34,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135405,908,6096,Independent school,9,0,9,0.00%,100.00%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135407,936,6590,Independent school,43,9,34,20.90%,79.10%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135409,210,6397,Independent school,118,53,65,44.90%,55.10%,0,0.00%,9,7.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135410,909,6056,Independent school,54,0,54,0.00%,100.00%,51,94.40%,1,1.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135418,937,6106,Independent school,27,10,17,37.00%,63.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135419,936,6592,Independent school,81,19,62,23.50%,76.50%,81,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135422,330,6121,Independent school,6,0,6,0.00%,100.00%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135423,391,6905,State-funded secondary,1497,755,742,50.40%,49.60%,34,2.30%,314,21.00%,755,742,0,50.40%,49.60%,0.00%,950,904,1315,68.70% +135424,805,6002,Independent school,15,4,11,26.70%,73.30%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135432,886,1123,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135433,891,3795,State-funded primary,382,185,197,48.40%,51.60%,5,1.30%,59,15.40%,2,380,0,0.50%,99.50%,0.00%,66,70,382,18.30% +135437,916,3374,State-funded primary,82,35,47,42.70%,57.30%,0,0.00%,17,20.70%,0,76,6,0.00%,92.70%,7.30%,6,6,82,7.30% +135438,886,6123,Independent school,97,0,97,0.00%,100.00%,97,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135445,893,6106,Independent school,29,7,22,24.10%,75.90%,29,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135449,333,6908,State-funded secondary,1177,575,602,48.90%,51.10%,20,1.70%,86,7.30%,189,986,2,16.10%,83.80%,0.20%,217,255,1062,24.00% +135453,334,6010,Independent school,17,1,16,5.90%,94.10%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135457,888,7120,State-funded special school,145,19,126,13.10%,86.90%,145,100.00%,0,0.00%,2,143,0,1.40%,98.60%,0.00%,84,89,145,61.40% +135458,891,3796,State-funded primary,295,139,156,47.10%,52.90%,1,0.30%,30,10.20%,30,265,0,10.20%,89.80%,0.00%,52,55,264,20.80% +135461,335,7014,State-funded special school,77,10,67,13.00%,87.00%,77,100.00%,0,0.00%,0,77,0,0.00%,100.00%,0.00%,49,55,77,71.40% +135462,886,1124,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135465,886,1127,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135466,886,1128,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135467,886,1129,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135479,340,4615,State-funded secondary,1127,569,558,50.50%,49.50%,26,2.30%,199,17.70%,68,1059,0,6.00%,94.00%,0.00%,524,530,1032,51.40% +135482,307,3512,State-funded primary,423,204,219,48.20%,51.80%,3,0.70%,41,9.70%,389,34,0,92.00%,8.00%,0.00%,92,97,378,25.70% +135483,335,6013,Independent school,103,0,103,0.00%,100.00%,0,0.00%,3,2.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135484,865,3472,State-funded primary,331,165,166,49.80%,50.20%,10,3.00%,80,24.20%,74,257,0,22.40%,77.60%,0.00%,74,74,293,25.30% +135486,865,6041,Independent school,54,17,37,31.50%,68.50%,0,0.00%,1,1.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135493,307,6339,Independent school,48,9,39,18.80%,81.30%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135496,894,3368,State-funded primary,348,186,162,53.40%,46.60%,4,1.10%,58,16.70%,59,289,0,17.00%,83.00%,0.00%,70,74,348,21.30% +135497,344,3376,State-funded primary,242,107,135,44.20%,55.80%,4,1.70%,53,21.90%,4,238,0,1.70%,98.30%,0.00%,25,25,216,11.60% +135498,830,3551,State-funded primary,400,185,215,46.30%,53.80%,6,1.50%,88,22.00%,10,388,2,2.50%,97.00%,0.50%,196,198,400,49.50% +135502,371,1110,State-funded AP school,22,5,17,22.70%,77.30%,22,100.00%,0,0.00%,0,22,0,0.00%,100.00%,0.00%,15,15,22,68.20% +135504,355,1105,State-funded AP school,61,16,45,26.20%,73.80%,1,1.60%,59,96.70%,5,56,0,8.20%,91.80%,0.00%,37,43,61,70.50% +135505,896,3820,State-funded primary,223,112,111,50.20%,49.80%,10,4.50%,10,4.50%,31,192,0,13.90%,86.10%,0.00%,82,71,179,39.70% +135507,302,6906,State-funded secondary,1626,786,840,48.30%,51.70%,46,2.80%,115,7.10%,366,1096,164,22.50%,67.40%,10.10%,190,206,1333,15.50% +135508,357,6905,State-funded secondary,1292,722,570,55.90%,44.10%,23,1.80%,233,18.00%,327,962,3,25.30%,74.50%,0.20%,508,575,1292,44.50% +135510,886,6126,Independent school,25,3,22,12.00%,88.00%,24,96.00%,1,4.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135511,893,6107,Independent school,26,8,18,30.80%,69.20%,20,76.90%,6,23.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135526,356,6031,Independent school,15,6,9,40.00%,60.00%,12,80.00%,3,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135528,919,3992,State-funded primary,390,183,207,46.90%,53.10%,7,1.80%,32,8.20%,59,331,0,15.10%,84.90%,0.00%,33,34,364,9.30% +135529,850,3670,State-funded primary,199,106,93,53.30%,46.70%,7,3.50%,35,17.60%,16,183,0,8.00%,92.00%,0.00%,106,107,199,53.80% +135530,855,6041,Independent school,63,5,58,7.90%,92.10%,63,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135531,207,6905,State-funded secondary,1182,535,647,45.30%,54.70%,24,2.00%,128,10.80%,348,828,6,29.40%,70.10%,0.50%,446,391,900,43.40% +135534,309,7008,Non-maintained special school,100,15,85,15.00%,85.00%,100,100.00%,0,0.00%,22,78,0,22.00%,78.00%,0.00%,42,43,79,54.40% +135539,821,6011,Independent school,143,71,72,49.70%,50.30%,0,0.00%,1,0.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135541,888,6104,Independent school,68,11,57,16.20%,83.80%,68,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135543,888,6041,Independent school,19,0,19,0.00%,100.00%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135547,371,7015,State-funded special school,140,44,96,31.40%,68.60%,140,100.00%,0,0.00%,7,133,0,5.00%,95.00%,0.00%,54,51,130,39.20% +135552,921,4604,State-funded secondary,1108,575,533,51.90%,48.10%,30,2.70%,160,14.40%,81,1027,0,7.30%,92.70%,0.00%,240,249,896,27.80% +135555,909,6097,Independent school,1,1,0,100.00%,0.00%,0,0.00%,1,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135557,359,6009,Independent school,27,10,17,37.00%,63.00%,26,96.30%,1,3.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135558,320,1105,State-funded AP school,2,1,1,50.00%,50.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,2,2,2,100.00% +135561,330,6128,Independent school,82,25,57,30.50%,69.50%,4,4.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135562,313,3942,State-funded primary,669,330,339,49.30%,50.70%,8,1.20%,108,16.10%,392,277,0,58.60%,41.40%,0.00%,126,129,619,20.80% +135563,925,6905,State-funded secondary,1087,548,539,50.40%,49.60%,41,3.80%,304,28.00%,204,880,3,18.80%,81.00%,0.30%,530,494,949,52.10% +135564,925,6906,State-funded secondary,986,456,530,46.20%,53.80%,28,2.80%,171,17.30%,94,892,0,9.50%,90.50%,0.00%,282,272,855,31.80% +135565,925,6907,State-funded secondary,1756,903,853,51.40%,48.60%,17,1.00%,124,7.10%,322,1434,0,18.30%,81.70%,0.00%,204,206,1323,15.60% +135566,936,3944,State-funded primary,225,113,112,50.20%,49.80%,9,4.00%,64,28.40%,29,196,0,12.90%,87.10%,0.00%,64,64,225,28.40% +135567,895,3821,State-funded primary,321,157,164,48.90%,51.10%,14,4.40%,37,11.50%,8,313,0,2.50%,97.50%,0.00%,75,76,321,23.70% +135568,873,3945,State-funded primary,395,189,206,47.80%,52.20%,24,6.10%,24,6.10%,147,248,0,37.20%,62.80%,0.00%,130,133,395,33.70% +135569,331,7024,State-funded special school,160,47,113,29.40%,70.60%,159,99.40%,1,0.60%,61,99,0,38.10%,61.90%,0.00%,57,68,160,42.50% +135573,892,7042,State-funded special school,161,69,92,42.90%,57.10%,153,95.00%,8,5.00%,59,102,0,36.60%,63.40%,0.00%,89,73,121,60.30% +135575,801,6908,State-funded secondary,1176,590,586,50.20%,49.80%,54,4.60%,136,11.60%,250,920,6,21.30%,78.20%,0.50%,191,170,761,22.30% +135576,887,6130,Independent school,15,3,12,20.00%,80.00%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135580,889,6905,State-funded secondary,1106,505,601,45.70%,54.30%,16,1.40%,114,10.30%,110,980,16,9.90%,88.60%,1.40%,284,321,1002,32.00% +135581,801,6909,State-funded secondary,931,915,16,98.30%,1.70%,22,2.40%,82,8.80%,201,695,35,21.60%,74.70%,3.80%,167,168,775,21.70% +135582,894,6906,State-funded secondary,1106,567,539,51.30%,48.70%,27,2.40%,174,15.70%,82,1024,0,7.40%,92.60%,0.00%,369,381,925,41.20% +135583,891,6905,State-funded secondary,1036,533,503,51.40%,48.60%,22,2.10%,87,8.40%,67,969,0,6.50%,93.50%,0.00%,273,268,909,29.50% +135584,210,6912,State-funded secondary,1334,625,709,46.90%,53.10%,38,2.80%,262,19.60%,530,803,1,39.70%,60.20%,0.10%,746,726,1185,61.30% +135585,881,3839,State-funded primary,417,217,200,52.00%,48.00%,9,2.20%,43,10.30%,118,299,0,28.30%,71.70%,0.00%,70,83,417,19.90% +135587,206,6906,State-funded secondary,897,420,477,46.80%,53.20%,37,4.10%,132,14.70%,347,549,1,38.70%,61.20%,0.10%,476,474,806,58.80% +135588,311,3509,State-funded primary,579,268,311,46.30%,53.70%,5,0.90%,49,8.50%,73,505,1,12.60%,87.20%,0.20%,57,58,579,10.00% +135596,919,6261,Independent school,61,30,31,49.20%,50.80%,0,0.00%,2,3.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135597,801,6910,State-funded secondary,1303,682,621,52.30%,47.70%,49,3.80%,244,18.70%,109,1180,14,8.40%,90.60%,1.10%,756,750,1152,65.10% +135598,810,6905,State-funded secondary,1412,678,734,48.00%,52.00%,29,2.10%,132,9.30%,126,1285,1,8.90%,91.00%,0.10%,647,701,1297,54.00% +135599,333,6909,State-funded secondary,1223,594,629,48.60%,51.40%,18,1.50%,153,12.50%,125,1097,1,10.20%,89.70%,0.10%,435,487,1153,42.20% +135600,304,6906,State-funded secondary,1640,823,817,50.20%,49.80%,41,2.50%,99,6.00%,734,863,43,44.80%,52.60%,2.60%,473,415,1305,31.80% +135604,825,6040,Independent school,7,2,5,28.60%,71.40%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135607,938,3372,State-funded primary,412,200,212,48.50%,51.50%,8,1.90%,89,21.60%,41,370,1,10.00%,89.80%,0.20%,53,55,412,13.30% +135608,330,6129,Independent school,7,4,3,57.10%,42.90%,0,0.00%,1,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135612,933,3494,State-funded primary,430,194,236,45.10%,54.90%,32,7.40%,74,17.20%,74,353,3,17.20%,82.10%,0.70%,160,164,430,38.10% +135614,208,3643,State-funded primary,239,116,123,48.50%,51.50%,10,4.20%,13,5.40%,209,30,0,87.40%,12.60%,0.00%,78,82,210,39.00% +135616,207,6408,Independent school,42,6,36,14.30%,85.70%,40,95.20%,2,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135619,929,6905,State-funded secondary,1987,995,992,50.10%,49.90%,40,2.00%,209,10.50%,66,1921,0,3.30%,96.70%,0.00%,403,395,1734,22.80% +135620,909,6905,State-funded secondary,870,423,447,48.60%,51.40%,33,3.80%,104,12.00%,30,840,0,3.40%,96.60%,0.00%,219,233,870,26.80% +135621,909,6906,State-funded secondary,1026,504,522,49.10%,50.90%,21,2.00%,62,6.00%,160,866,0,15.60%,84.40%,0.00%,291,308,941,32.70% +135623,886,6132,Independent school,5,0,5,0.00%,100.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135628,852,6905,State-funded secondary,818,394,424,48.20%,51.80%,7,0.90%,131,16.00%,255,560,3,31.20%,68.50%,0.40%,354,395,818,48.30% +135629,852,6906,State-funded secondary,887,401,486,45.20%,54.80%,18,2.00%,125,14.10%,100,787,0,11.30%,88.70%,0.00%,335,357,887,40.20% +135630,886,6914,State-funded secondary,1035,502,533,48.50%,51.50%,75,7.20%,149,14.40%,24,1011,0,2.30%,97.70%,0.00%,244,269,894,30.10% +135631,871,6905,State-funded secondary,1154,527,627,45.70%,54.30%,29,2.50%,94,8.10%,267,871,16,23.10%,75.50%,1.40%,222,216,896,24.10% +135632,909,6907,State-funded secondary,1212,608,604,50.20%,49.80%,46,3.80%,124,10.20%,13,1198,1,1.10%,98.80%,0.10%,256,243,1028,23.60% +135633,355,6056,Independent school,88,33,55,37.50%,62.50%,60,68.20%,3,3.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135634,929,3923,State-funded primary,107,52,55,48.60%,51.40%,1,0.90%,18,16.80%,2,105,0,1.90%,98.10%,0.00%,22,22,82,26.80% +135635,896,3822,State-funded primary,309,148,161,47.90%,52.10%,5,1.60%,66,21.40%,17,292,0,5.50%,94.50%,0.00%,72,76,309,24.60% +135640,394,1102,State-funded AP school,98,24,74,24.50%,75.50%,9,9.20%,60,61.20%,0,98,0,0.00%,100.00%,0.00%,74,76,98,77.60% +135648,352,3507,State-funded primary,469,235,234,50.10%,49.90%,7,1.50%,83,17.70%,287,182,0,61.20%,38.80%,0.00%,224,202,409,49.40% +135649,888,6905,State-funded secondary,1090,571,519,52.40%,47.60%,13,1.20%,162,14.90%,203,866,21,18.60%,79.40%,1.90%,342,343,961,35.70% +135650,926,6905,State-funded secondary,601,288,313,47.90%,52.10%,25,4.20%,123,20.50%,75,525,1,12.50%,87.40%,0.20%,206,197,526,37.50% +135651,881,6905,State-funded secondary,1065,524,541,49.20%,50.80%,30,2.80%,139,13.10%,42,1023,0,3.90%,96.10%,0.00%,278,304,948,32.10% +135652,881,6906,State-funded secondary,1571,748,823,47.60%,52.40%,34,2.20%,159,10.10%,28,1540,3,1.80%,98.00%,0.20%,134,171,1331,12.80% +135653,881,6907,State-funded secondary,891,439,451,49.30%,50.60%,27,3.00%,88,9.90%,29,862,0,3.30%,96.70%,0.00%,176,226,891,25.40% +135654,306,6907,State-funded secondary,927,438,489,47.20%,52.80%,64,6.90%,138,14.90%,44,883,0,4.70%,95.30%,0.00%,229,250,927,27.00% +135656,341,1108,State-funded AP school,93,24,69,25.80%,74.20%,9,9.70%,62,66.70%,6,86,1,6.50%,92.50%,1.10%,32,73,93,78.50% +135661,355,6906,State-funded secondary,960,461,499,48.00%,52.00%,27,2.80%,168,17.50%,294,666,0,30.60%,69.40%,0.00%,472,562,960,58.50% +135662,884,6905,State-funded secondary,607,299,308,49.30%,50.70%,16,2.60%,62,10.20%,92,513,2,15.20%,84.50%,0.30%,213,232,607,38.20% +135663,801,6911,State-funded secondary,867,448,419,51.70%,48.30%,21,2.40%,88,10.10%,70,797,0,8.10%,91.90%,0.00%,327,346,867,39.90% +135665,826,6905,State-funded secondary,1168,585,583,50.10%,49.90%,10,0.90%,102,8.70%,531,637,0,45.50%,54.50%,0.00%,435,510,1125,45.30% +135670,305,6080,Independent school,42,13,29,31.00%,69.00%,36,85.70%,2,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135671,801,6912,State-funded secondary,754,361,393,47.90%,52.10%,26,3.40%,107,14.20%,86,667,1,11.40%,88.50%,0.10%,298,330,754,43.80% +135672,884,6906,State-funded secondary,339,169,170,49.90%,50.10%,14,4.10%,83,24.50%,8,331,0,2.40%,97.60%,0.00%,53,57,318,17.90% +135673,933,6216,Independent school,11,1,10,9.10%,90.90%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135674,813,6905,State-funded secondary,789,390,399,49.40%,50.60%,17,2.20%,107,13.60%,433,356,0,54.90%,45.10%,0.00%,295,317,789,40.20% +135676,213,6908,State-funded secondary,1136,537,599,47.30%,52.70%,48,4.20%,83,7.30%,371,758,7,32.70%,66.70%,0.60%,499,523,985,53.10% +135677,303,6906,State-funded secondary,1290,558,732,43.30%,56.70%,31,2.40%,120,9.30%,208,1058,24,16.10%,82.00%,1.90%,182,188,987,19.00% +135683,309,6002,Independent school,39,15,24,38.50%,61.50%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135687,310,6204,Independent school,42,18,24,42.90%,57.10%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135688,330,6205,Independent school,2,0,2,0.00%,100.00%,2,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135689,935,6226,Independent school,67,30,37,44.80%,55.20%,1,1.50%,14,20.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135691,938,6228,Independent school,30,12,18,40.00%,60.00%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135693,872,6231,Independent school,34,17,17,50.00%,50.00%,0,0.00%,9,26.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135700,811,2478,State-funded primary,388,173,215,44.60%,55.40%,13,3.40%,50,12.90%,17,334,37,4.40%,86.10%,9.50%,187,183,361,50.70% +135720,353,3393,State-funded primary,452,234,218,51.80%,48.20%,12,2.70%,116,25.70%,294,158,0,65.00%,35.00%,0.00%,216,217,403,53.80% +135721,886,6915,State-funded secondary,1486,723,763,48.70%,51.30%,64,4.30%,475,32.00%,85,1401,0,5.70%,94.30%,0.00%,715,694,1354,51.30% +135727,916,2200,State-funded primary,385,176,209,45.70%,54.30%,15,3.90%,137,35.60%,65,311,9,16.90%,80.80%,2.30%,149,153,385,39.70% +135729,205,6200,Independent school,45,36,9,80.00%,20.00%,0,0.00%,17,37.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135735,933,6000,Independent school,26,2,24,7.70%,92.30%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135736,896,2014,State-funded primary,270,124,146,45.90%,54.10%,2,0.70%,18,6.70%,10,260,0,3.70%,96.30%,0.00%,31,32,270,11.90% +135743,372,1107,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +135744,938,6911,State-funded secondary,1380,601,775,43.60%,56.20%,36,2.60%,279,20.20%,59,1321,0,4.30%,95.70%,0.00%,264,281,1281,21.90% +135745,938,6912,State-funded secondary,1402,696,706,49.60%,50.40%,37,2.60%,238,17.00%,148,1254,0,10.60%,89.40%,0.00%,340,358,1288,27.80% +135746,356,2284,State-funded primary,421,209,212,49.60%,50.40%,8,1.90%,59,14.00%,22,399,0,5.20%,94.80%,0.00%,86,86,421,20.40% +135747,302,5427,State-funded secondary,1347,638,709,47.40%,52.60%,98,7.30%,7,0.50%,185,1162,0,13.70%,86.30%,0.00%,60,57,994,5.70% +135749,876,6013,Independent school,24,3,21,12.50%,87.50%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135753,354,6035,Independent school,28,3,25,10.70%,89.30%,28,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135754,941,6070,Independent school,14,5,9,35.70%,64.30%,3,21.40%,9,64.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135760,938,6913,State-funded secondary,1170,582,588,49.70%,50.30%,23,2.00%,242,20.70%,76,1094,0,6.50%,93.50%,0.00%,160,178,1058,16.80% +135761,892,6906,State-funded secondary,835,390,445,46.70%,53.30%,16,1.90%,139,16.60%,220,614,1,26.30%,73.50%,0.10%,417,419,791,53.00% +135762,212,4008,State-funded secondary,843,374,469,44.40%,55.60%,76,9.00%,122,14.50%,373,470,0,44.20%,55.80%,0.00%,340,340,674,50.40% +135769,335,6906,State-funded secondary,1383,647,736,46.80%,53.20%,43,3.10%,265,19.20%,79,1304,0,5.70%,94.30%,0.00%,555,560,1233,45.40% +135770,350,6905,State-funded secondary,1091,474,617,43.40%,56.60%,19,1.70%,193,17.70%,707,368,16,64.80%,33.70%,1.50%,403,446,1091,40.90% +135773,878,6061,Independent school,40,3,37,7.50%,92.50%,40,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135778,881,1115,State-funded AP school,1,0,1,0.00%,100.00%,0,0.00%,1,100.00%,0,1,0,0.00%,100.00%,0.00%,0,0,0,0.00% +135779,801,3439,State-funded primary,255,111,144,43.50%,56.50%,3,1.20%,57,22.40%,34,221,0,13.30%,86.70%,0.00%,86,86,205,42.00% +135785,941,6071,Independent school,19,13,6,68.40%,31.60%,6,31.60%,13,68.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135789,893,5206,State-funded primary,446,201,245,45.10%,54.90%,11,2.50%,49,11.00%,33,411,2,7.40%,92.20%,0.40%,95,96,404,23.80% +135790,893,5207,State-funded primary,121,55,66,45.50%,54.50%,5,4.10%,13,10.70%,0,121,0,0.00%,100.00%,0.00%,13,12,103,11.70% +135791,885,7026,State-funded special school,324,108,216,33.30%,66.70%,302,93.20%,22,6.80%,8,316,0,2.50%,97.50%,0.00%,130,119,268,44.40% +135792,333,6005,Independent school,83,0,83,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135794,307,6401,Independent school,63,6,57,9.50%,90.50%,63,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135796,340,3363,State-funded primary,456,233,223,51.10%,48.90%,10,2.20%,63,13.80%,77,379,0,16.90%,83.10%,0.00%,287,273,413,66.10% +135797,866,5222,State-funded primary,430,182,248,42.30%,57.70%,8,1.90%,52,12.10%,56,374,0,13.00%,87.00%,0.00%,57,62,395,15.70% +135799,941,6072,Independent school,22,9,13,40.90%,59.10%,0,0.00%,8,36.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135801,319,6074,Independent school,119,20,99,16.80%,83.20%,119,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135803,878,6213,Independent school,21,2,19,9.50%,90.50%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135804,865,6905,State-funded secondary,1120,570,550,50.90%,49.10%,33,2.90%,152,13.60%,79,1039,2,7.10%,92.80%,0.20%,171,194,971,20.00% +135805,825,6042,Independent school,12,5,7,41.70%,58.30%,5,41.70%,7,58.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135807,340,3364,State-funded primary,486,220,266,45.30%,54.70%,48,9.90%,97,20.00%,44,442,0,9.10%,90.90%,0.00%,303,287,441,65.10% +135812,311,2097,State-funded primary,659,328,331,49.80%,50.20%,10,1.50%,49,7.40%,216,438,5,32.80%,66.50%,0.80%,138,140,602,23.30% +135813,938,3376,State-funded primary,615,323,292,52.50%,47.50%,8,1.30%,72,11.70%,56,558,1,9.10%,90.70%,0.20%,83,86,615,14.00% +135814,938,7023,Non-maintained special school,63,21,42,33.30%,66.70%,63,100.00%,0,0.00%,1,62,0,1.60%,98.40%,0.00%,21,19,46,41.30% +135815,373,7044,Non-maintained special school,46,21,25,45.70%,54.30%,46,100.00%,0,0.00%,2,44,0,4.30%,95.70%,0.00%,10,19,42,45.20% +135816,210,6913,State-funded secondary,878,26,852,3.00%,97.00%,14,1.60%,115,13.10%,343,532,3,39.10%,60.60%,0.30%,295,298,743,40.10% +135818,394,6906,State-funded secondary,1021,493,527,48.30%,51.60%,20,2.00%,145,14.20%,14,1007,0,1.40%,98.60%,0.00%,426,452,1021,44.30% +135822,888,6109,Independent school,79,0,79,0.00%,100.00%,0,0.00%,1,1.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135823,850,7041,State-funded special school,144,48,96,33.30%,66.70%,144,100.00%,0,0.00%,9,135,0,6.30%,93.80%,0.00%,52,49,131,37.40% +135826,886,5468,State-funded secondary,929,458,471,49.30%,50.70%,47,5.10%,233,25.10%,90,839,0,9.70%,90.30%,0.00%,520,539,882,61.10% +135827,803,7032,State-funded special school,63,4,59,6.30%,93.70%,63,100.00%,0,0.00%,1,62,0,1.60%,98.40%,0.00%,35,39,62,62.90% +135830,933,2335,State-funded primary,403,193,210,47.90%,52.10%,8,2.00%,30,7.40%,10,391,2,2.50%,97.00%,0.50%,60,62,403,15.40% +135831,313,2083,State-funded primary,607,288,319,47.40%,52.60%,10,1.60%,86,14.20%,436,171,0,71.80%,28.20%,0.00%,144,151,527,28.70% +135832,933,3290,State-funded primary,106,54,52,50.90%,49.10%,1,0.90%,12,11.30%,2,104,0,1.90%,98.10%,0.00%,12,13,106,12.30% +135834,840,6010,Independent school,17,4,13,23.50%,76.50%,14,82.40%,3,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135835,204,6908,State-funded secondary,1138,477,661,41.90%,58.10%,54,4.70%,175,15.40%,511,607,20,44.90%,53.30%,1.80%,562,514,943,54.50% +135837,881,6060,Independent school,25,7,18,28.00%,72.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135838,840,3527,State-funded primary,351,168,183,47.90%,52.10%,5,1.40%,17,4.80%,1,350,0,0.30%,99.70%,0.00%,97,100,351,28.50% +135839,308,6305,Independent school,42,4,38,9.50%,90.50%,41,97.60%,1,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135841,359,3438,State-funded primary,355,169,186,47.60%,52.40%,8,2.30%,87,24.50%,44,311,0,12.40%,87.60%,0.00%,189,185,324,57.10% +135842,393,3318,State-funded primary,245,137,108,55.90%,44.10%,2,0.80%,31,12.70%,25,220,0,10.20%,89.80%,0.00%,116,117,225,52.00% +135843,209,5201,State-funded secondary,830,383,447,46.10%,53.90%,7,0.80%,120,14.50%,219,611,0,26.40%,73.60%,0.00%,269,311,793,39.20% +135849,879,6010,Independent school,87,50,37,57.50%,42.50%,2,2.30%,17,19.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135850,815,1102,State-funded AP school,14,5,9,35.70%,64.30%,1,7.10%,9,64.30%,0,14,0,0.00%,100.00%,0.00%,7,9,14,64.30% +135851,815,1103,State-funded AP school,2,2,0,100.00%,0.00%,0,0.00%,2,100.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +135857,916,5221,State-funded primary,352,178,174,50.60%,49.40%,13,3.70%,92,26.10%,58,285,9,16.50%,81.00%,2.60%,153,159,352,45.20% +135858,856,6022,Independent school,209,99,110,47.40%,52.60%,0,0.00%,2,1.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135859,926,6160,Independent school,38,4,34,10.50%,89.50%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135860,888,5207,State-funded primary,611,285,326,46.60%,53.40%,4,0.70%,63,10.30%,31,580,0,5.10%,94.90%,0.00%,57,59,611,9.70% +135862,381,5208,State-funded primary,171,87,84,50.90%,49.10%,4,2.30%,22,12.90%,1,170,0,0.60%,99.40%,0.00%,19,22,171,12.90% +135864,357,6906,State-funded secondary,919,431,488,46.90%,53.10%,39,4.20%,152,16.50%,171,748,0,18.60%,81.40%,0.00%,317,355,919,38.60% +135866,380,6908,State-funded secondary,1890,840,1050,44.40%,55.60%,28,1.50%,251,13.30%,769,1072,49,40.70%,56.70%,2.60%,549,555,1626,34.10% +135867,801,3441,State-funded primary,737,337,400,45.70%,54.30%,9,1.20%,132,17.90%,126,611,0,17.10%,82.90%,0.00%,187,187,737,25.40% +135872,801,3442,State-funded primary,472,212,260,44.90%,55.10%,15,3.20%,71,15.00%,31,441,0,6.60%,93.40%,0.00%,131,131,414,31.60% +135874,352,6908,State-funded secondary,1274,606,668,47.60%,52.40%,50,3.90%,238,18.70%,197,1077,0,15.50%,84.50%,0.00%,759,839,1274,65.90% +135876,919,6905,State-funded secondary,1123,557,566,49.60%,50.40%,20,1.80%,152,13.50%,131,987,5,11.70%,87.90%,0.40%,319,337,1025,32.90% +135877,344,6905,State-funded secondary,1210,1210,0,100.00%,0.00%,27,2.20%,158,13.10%,55,1155,0,4.50%,95.50%,0.00%,176,177,1058,16.70% +135878,394,6907,State-funded secondary,423,216,207,51.10%,48.90%,3,0.70%,103,24.30%,24,393,6,5.70%,92.90%,1.40%,242,252,423,59.60% +135879,825,6905,State-funded secondary,1814,934,880,51.50%,48.50%,50,2.80%,287,15.80%,432,1379,3,23.80%,76.00%,0.20%,368,387,1675,23.10% +135880,313,3943,State-funded primary,667,314,353,47.10%,52.90%,7,1.00%,83,12.40%,403,258,6,60.40%,38.70%,0.90%,80,89,619,14.40% +135881,892,6907,State-funded secondary,2263,1123,1140,49.60%,50.40%,14,0.60%,206,9.10%,981,1206,76,43.30%,53.30%,3.40%,832,875,2074,42.20% +135882,330,6206,Independent school,227,174,53,76.70%,23.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135885,850,3671,State-funded primary,181,88,93,48.60%,51.40%,7,3.90%,18,9.90%,12,169,0,6.60%,93.40%,0.00%,29,30,181,16.60% +135886,929,6906,State-funded secondary,1018,526,492,51.70%,48.30%,26,2.60%,167,16.40%,26,992,0,2.60%,97.40%,0.00%,445,446,937,47.60% +135887,850,3672,State-funded primary,777,369,408,47.50%,52.50%,45,5.80%,95,12.20%,161,616,0,20.70%,79.30%,0.00%,177,183,777,23.60% +135888,886,6916,State-funded secondary,1084,504,580,46.50%,53.50%,23,2.10%,217,20.00%,103,978,3,9.50%,90.20%,0.30%,237,242,944,25.60% +135890,919,1109,State-funded AP school,16,5,11,31.30%,68.80%,2,12.50%,8,50.00%,1,15,0,6.30%,93.80%,0.00%,8,10,16,62.50% +135891,936,1126,State-funded AP school,13,7,6,53.80%,46.20%,0,0.00%,10,76.90%,1,12,0,7.70%,92.30%,0.00%,7,7,13,53.80% +135894,936,1128,State-funded AP school,20,9,11,45.00%,55.00%,4,20.00%,15,75.00%,2,17,1,10.00%,85.00%,5.00%,13,14,20,70.00% +135895,881,6908,State-funded secondary,925,420,505,45.40%,54.60%,20,2.20%,123,13.30%,217,708,0,23.50%,76.50%,0.00%,426,507,925,54.80% +135897,881,6909,State-funded secondary,781,392,389,50.20%,49.80%,14,1.80%,66,8.50%,211,569,1,27.00%,72.90%,0.10%,303,281,591,47.50% +135901,209,6409,Independent school,60,0,60,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135903,881,3840,State-funded primary,358,159,199,44.40%,55.60%,8,2.20%,23,6.40%,6,352,0,1.70%,98.30%,0.00%,50,60,358,16.80% +135904,926,6906,State-funded secondary,699,334,365,47.80%,52.20%,23,3.30%,132,18.90%,115,584,0,16.50%,83.50%,0.00%,359,377,699,53.90% +135907,330,6905,State-funded secondary,799,403,396,50.40%,49.60%,16,2.00%,100,12.50%,548,251,0,68.60%,31.40%,0.00%,459,491,799,61.50% +135911,330,6907,State-funded secondary,825,368,457,44.60%,55.40%,17,2.10%,158,19.20%,84,740,1,10.20%,89.70%,0.10%,466,506,825,61.30% +135913,885,6905,State-funded secondary,1122,570,552,50.80%,49.20%,27,2.40%,148,13.20%,73,1046,3,6.50%,93.20%,0.30%,232,258,1016,25.40% +135930,938,6267,Independent school,61,16,45,26.20%,73.80%,61,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135934,373,6907,State-funded secondary,794,378,416,47.60%,52.40%,15,1.90%,165,20.80%,310,474,10,39.00%,59.70%,1.30%,368,416,794,52.40% +135935,383,6906,State-funded secondary,1407,754,653,53.60%,46.40%,6,0.40%,263,18.70%,89,1318,0,6.30%,93.70%,0.00%,555,599,1407,42.60% +135936,888,6906,State-funded secondary,759,379,380,49.90%,50.10%,9,1.20%,113,14.90%,240,518,1,31.60%,68.20%,0.10%,301,326,759,43.00% +135940,909,6908,State-funded secondary,1159,570,589,49.20%,50.80%,65,5.60%,126,10.90%,18,1141,0,1.60%,98.40%,0.00%,331,370,1159,31.90% +135942,371,6906,State-funded secondary,746,356,390,47.70%,52.30%,11,1.50%,64,8.60%,16,724,6,2.10%,97.10%,0.80%,290,320,746,42.90% +135945,810,6906,State-funded secondary,1479,726,753,49.10%,50.90%,36,2.40%,289,19.50%,200,1275,4,13.50%,86.20%,0.30%,486,529,1359,38.90% +135946,823,6905,State-funded secondary,664,293,371,44.10%,55.90%,21,3.20%,110,16.60%,123,499,42,18.50%,75.20%,6.30%,186,201,631,31.90% +135951,303,6907,State-funded secondary,1040,510,530,49.00%,51.00%,20,1.90%,120,11.50%,103,934,3,9.90%,89.80%,0.30%,267,303,866,35.00% +135952,355,1106,State-funded AP school,5,3,2,60.00%,40.00%,0,0.00%,3,60.00%,0,5,0,0.00%,100.00%,0.00%,4,5,5,100.00% +135955,306,6908,State-funded secondary,1097,483,614,44.00%,56.00%,12,1.10%,155,14.10%,417,667,13,38.00%,60.80%,1.20%,401,412,921,44.70% +135956,335,6907,State-funded secondary,984,469,515,47.70%,52.30%,35,3.60%,214,21.70%,157,825,2,16.00%,83.80%,0.20%,424,444,920,48.30% +135957,881,6910,State-funded secondary,1415,685,730,48.40%,51.60%,31,2.20%,344,24.30%,43,1372,0,3.00%,97.00%,0.00%,690,718,1285,55.90% +135958,308,6906,State-funded secondary,1537,778,759,50.60%,49.40%,37,2.40%,287,18.70%,1158,379,0,75.30%,24.70%,0.00%,675,642,1269,50.60% +135959,801,6913,State-funded secondary,1083,509,574,47.00%,53.00%,28,2.60%,186,17.20%,251,828,4,23.20%,76.50%,0.40%,308,337,1083,31.10% +135960,883,6906,State-funded secondary,694,311,383,44.80%,55.20%,36,5.20%,84,12.10%,132,526,36,19.00%,75.80%,5.20%,252,283,694,40.80% +135961,384,6905,State-funded secondary,1995,986,1009,49.40%,50.60%,31,1.60%,106,5.30%,192,1794,9,9.60%,89.90%,0.50%,243,255,1766,14.40% +135962,938,6914,State-funded secondary,1734,789,945,45.50%,54.50%,57,3.30%,266,15.30%,145,1589,0,8.40%,91.60%,0.00%,275,266,1465,18.20% +135963,371,6907,State-funded secondary,1080,540,540,50.00%,50.00%,23,2.10%,204,18.90%,47,1033,0,4.40%,95.60%,0.00%,374,383,992,38.60% +135964,887,6905,State-funded secondary,1273,647,626,50.80%,49.20%,12,0.90%,158,12.40%,84,1109,80,6.60%,87.10%,6.30%,322,346,1157,29.90% +135965,851,6905,State-funded secondary,853,426,427,49.90%,50.10%,20,2.30%,212,24.90%,316,537,0,37.00%,63.00%,0.00%,456,477,853,55.90% +135966,940,6908,State-funded secondary,1858,878,980,47.30%,52.70%,26,1.40%,278,15.00%,276,1572,10,14.90%,84.60%,0.50%,406,417,1607,25.90% +135967,940,6909,State-funded secondary,1404,538,866,38.30%,61.70%,28,2.00%,171,12.20%,371,1005,28,26.40%,71.60%,2.00%,397,433,1285,33.70% +135968,306,6909,State-funded secondary,1828,913,915,49.90%,50.10%,36,2.00%,155,8.50%,590,1219,19,32.30%,66.70%,1.00%,744,780,1602,48.70% +135970,330,6908,State-funded secondary,901,411,490,45.60%,54.40%,11,1.20%,87,9.70%,653,241,7,72.50%,26.70%,0.80%,607,531,727,73.00% +135971,334,6906,State-funded secondary,1267,617,650,48.70%,51.30%,21,1.70%,146,11.50%,73,1163,31,5.80%,91.80%,2.40%,383,403,1107,36.40% +135973,304,6907,State-funded secondary,1230,580,650,47.20%,52.80%,17,1.40%,75,6.10%,956,265,9,77.70%,21.50%,0.70%,467,474,1058,44.80% +135975,357,6003,Independent school,7,0,7,0.00%,100.00%,6,85.70%,1,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135979,333,6910,State-funded secondary,1141,529,612,46.40%,53.60%,32,2.80%,138,12.10%,228,905,8,20.00%,79.30%,0.70%,347,379,1141,33.20% +135980,874,6906,State-funded secondary,1113,580,533,52.10%,47.90%,19,1.70%,174,15.60%,283,830,0,25.40%,74.60%,0.00%,344,337,975,34.60% +135985,916,3375,State-funded primary,306,147,159,48.00%,52.00%,11,3.60%,64,20.90%,37,267,2,12.10%,87.30%,0.70%,87,88,306,28.80% +135987,822,6013,Independent school,23,12,11,52.20%,47.80%,17,73.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135988,309,6088,Independent school,129,49,80,38.00%,62.00%,1,0.80%,2,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135989,211,6397,Independent school,102,53,49,52.00%,48.00%,2,2.00%,6,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135990,822,6014,Independent school,10,10,0,100.00%,0.00%,3,30.00%,7,70.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135995,870,6016,Independent school,44,21,23,47.70%,52.30%,0,0.00%,2,4.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +135996,822,3024,State-funded primary,613,310,303,50.60%,49.40%,20,3.30%,62,10.10%,146,467,0,23.80%,76.20%,0.00%,98,96,573,16.80% +135998,359,6011,Independent school,25,12,13,48.00%,52.00%,0,0.00%,4,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136000,390,6008,Independent school,392,0,392,0.00%,100.00%,4,1.00%,50,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136003,888,6111,Independent school,57,4,53,7.00%,93.00%,57,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136005,384,3343,State-funded primary,422,212,210,50.20%,49.80%,14,3.30%,45,10.70%,15,407,0,3.60%,96.40%,0.00%,94,97,382,25.40% +136006,891,3797,State-funded primary,254,129,125,50.80%,49.20%,0,0.00%,60,23.60%,6,248,0,2.40%,97.60%,0.00%,160,139,200,69.50% +136008,921,2043,State-funded primary,396,180,216,45.50%,54.50%,10,2.50%,88,22.20%,6,390,0,1.50%,98.50%,0.00%,125,131,396,33.10% +136010,921,4030,State-funded secondary,1361,719,642,52.80%,47.20%,63,4.60%,195,14.30%,33,1327,1,2.40%,97.50%,0.10%,335,283,809,35.00% +136012,921,4032,State-funded secondary,597,305,292,51.10%,48.90%,46,7.70%,63,10.60%,7,590,0,1.20%,98.80%,0.00%,129,147,597,24.60% +136013,921,2044,State-funded secondary,1272,585,687,46.00%,54.00%,71,5.60%,210,16.50%,59,1213,0,4.60%,95.40%,0.00%,348,381,1272,30.00% +136014,302,6122,Independent school,281,281,0,100.00%,0.00%,2,0.70%,37,13.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136015,204,6073,Independent school,276,276,0,100.00%,0.00%,9,3.30%,16,5.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136016,916,6905,State-funded secondary,1062,539,523,50.80%,49.20%,45,4.20%,181,17.00%,209,844,9,19.70%,79.50%,0.80%,342,344,877,39.20% +136019,865,6043,Independent school,33,9,24,27.30%,72.70%,33,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136023,874,6003,Independent school,64,64,0,100.00%,0.00%,1,1.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136027,353,6905,State-funded secondary,1474,731,743,49.60%,50.40%,25,1.70%,201,13.60%,637,837,0,43.20%,56.80%,0.00%,719,777,1474,52.70% +136028,301,4704,State-funded secondary,1441,654,787,45.40%,54.60%,70,4.90%,155,10.80%,630,808,3,43.70%,56.10%,0.20%,510,513,1219,42.10% +136032,330,6909,State-funded secondary,1023,499,524,48.80%,51.20%,10,1.00%,142,13.90%,313,709,1,30.60%,69.30%,0.10%,545,552,890,62.00% +136035,881,1120,State-funded AP school,58,12,46,20.70%,79.30%,22,37.90%,36,62.10%,0,57,1,0.00%,98.30%,1.70%,23,42,58,72.40% +136039,891,6036,Independent school,35,12,23,34.30%,65.70%,18,51.40%,16,45.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136040,384,6126,Independent school,13,2,11,15.40%,84.60%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136042,372,6905,State-funded secondary,1131,552,579,48.80%,51.20%,31,2.70%,219,19.40%,27,1104,0,2.40%,97.60%,0.00%,301,318,969,32.80% +136044,925,6909,State-funded secondary,2351,1191,1160,50.70%,49.30%,79,3.40%,255,10.80%,125,2114,112,5.30%,89.90%,4.80%,562,577,2012,28.70% +136046,312,6082,Independent school,83,83,0,100.00%,0.00%,1,1.20%,6,7.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136047,873,6048,Independent school,131,27,104,20.60%,79.40%,131,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136052,316,6072,Independent school,152,33,119,21.70%,78.30%,152,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136056,344,3375,State-funded primary,148,58,90,39.20%,60.80%,1,0.70%,36,24.30%,2,146,0,1.40%,98.60%,0.00%,84,83,135,61.50% +136057,207,6005,Independent school,397,176,221,44.30%,55.70%,0,0.00%,97,24.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136058,813,2181,State-funded primary,319,168,151,52.70%,47.30%,4,1.30%,41,12.90%,24,295,0,7.50%,92.50%,0.00%,55,58,319,18.20% +136061,937,2083,State-funded primary,420,208,212,49.50%,50.50%,17,4.00%,65,15.50%,27,393,0,6.40%,93.60%,0.00%,132,124,395,31.40% +136062,341,2176,State-funded primary,213,106,107,49.80%,50.20%,2,0.90%,56,26.30%,143,70,0,67.10%,32.90%,0.00%,119,123,194,63.40% +136066,803,2011,State-funded primary,417,205,212,49.20%,50.80%,10,2.40%,67,16.10%,24,389,4,5.80%,93.30%,1.00%,49,50,417,12.00% +136068,866,2012,State-funded primary,419,204,215,48.70%,51.30%,7,1.70%,37,8.80%,122,293,4,29.10%,69.90%,1.00%,52,53,373,14.20% +136069,888,6056,Independent school,5,2,3,40.00%,60.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136071,831,1104,State-funded AP school,12,3,9,25.00%,75.00%,2,16.70%,10,83.30%,0,12,0,0.00%,100.00%,0.00%,10,12,12,100.00% +136074,916,2185,State-funded primary,418,208,210,49.80%,50.20%,14,3.30%,136,32.50%,53,362,3,12.70%,86.60%,0.70%,83,86,418,20.60% +136076,355,2041,State-funded primary,509,219,290,43.00%,57.00%,49,9.60%,101,19.80%,202,307,0,39.70%,60.30%,0.00%,206,199,449,44.30% +136078,850,2107,State-funded primary,407,222,185,54.50%,45.50%,21,5.20%,61,15.00%,11,396,0,2.70%,97.30%,0.00%,149,159,407,39.10% +136079,355,2042,State-funded primary,471,227,244,48.20%,51.80%,5,1.10%,97,20.60%,135,336,0,28.70%,71.30%,0.00%,212,190,414,45.90% +136080,355,2043,State-funded primary,238,120,118,50.40%,49.60%,5,2.10%,24,10.10%,92,146,0,38.70%,61.30%,0.00%,61,59,211,28.00% +136083,873,6049,Independent school,450,201,249,44.70%,55.30%,0,0.00%,18,4.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136085,822,6905,State-funded secondary,1309,685,624,52.30%,47.70%,29,2.20%,109,8.30%,534,772,3,40.80%,59.00%,0.20%,393,384,1129,34.00% +136086,355,6057,Independent school,201,201,0,100.00%,0.00%,3,1.50%,14,7.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136087,358,3332,State-funded primary,629,322,307,51.20%,48.80%,11,1.70%,32,5.10%,141,488,0,22.40%,77.60%,0.00%,20,22,629,3.50% +136088,343,6134,Independent school,54,20,34,37.00%,63.00%,54,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136090,311,6905,State-funded secondary,1216,607,609,49.90%,50.10%,33,2.70%,107,8.80%,319,897,0,26.20%,73.80%,0.00%,455,446,1031,43.30% +136091,333,4028,State-funded secondary,1917,981,936,51.20%,48.80%,28,1.50%,279,14.60%,621,1191,105,32.40%,62.10%,5.50%,694,729,1691,43.10% +136092,203,6040,Independent school,59,34,25,57.60%,42.40%,3,5.10%,20,33.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136094,381,6905,State-funded secondary,1605,789,816,49.20%,50.80%,42,2.60%,230,14.30%,81,1524,0,5.00%,95.00%,0.00%,541,576,1605,35.90% +136098,888,6042,Independent school,159,86,73,54.10%,45.90%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136100,203,6041,Independent school,22,9,13,40.90%,59.10%,2,9.10%,18,81.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136102,861,6905,State-funded secondary,1120,584,536,52.10%,47.90%,29,2.60%,202,18.00%,354,741,25,31.60%,66.20%,2.20%,451,483,1120,43.10% +136105,352,6913,State-funded secondary,1224,593,631,48.40%,51.60%,31,2.50%,210,17.20%,575,638,11,47.00%,52.10%,0.90%,671,731,1224,59.70% +136106,845,6905,State-funded secondary,856,411,445,48.00%,52.00%,22,2.60%,133,15.50%,108,748,0,12.60%,87.40%,0.00%,350,369,856,43.10% +136107,887,6906,State-funded secondary,1403,667,736,47.50%,52.50%,120,8.60%,261,18.60%,200,1192,11,14.30%,85.00%,0.80%,406,445,1204,37.00% +136108,887,6907,State-funded secondary,1188,590,598,49.70%,50.30%,14,1.20%,203,17.10%,315,854,19,26.50%,71.90%,1.60%,452,483,1069,45.20% +136109,382,3049,State-funded primary,409,195,214,47.70%,52.30%,16,3.90%,52,12.70%,94,315,0,23.00%,77.00%,0.00%,167,168,409,41.10% +136110,212,6041,Independent school,68,28,40,41.20%,58.80%,68,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136111,801,2028,State-funded primary,569,305,264,53.60%,46.40%,7,1.20%,54,9.50%,137,428,4,24.10%,75.20%,0.70%,167,168,569,29.50% +136112,850,6075,Independent school,74,40,34,54.10%,45.90%,6,8.10%,23,31.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136114,938,7013,State-funded special school,274,96,178,35.00%,65.00%,274,100.00%,0,0.00%,29,245,0,10.60%,89.40%,0.00%,73,61,218,28.00% +136115,353,6906,State-funded secondary,1338,650,688,48.60%,51.40%,19,1.40%,83,6.20%,740,598,0,55.30%,44.70%,0.00%,526,604,1338,45.10% +136117,355,6006,Independent school,294,294,0,100.00%,0.00%,5,1.70%,47,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136118,341,2242,State-funded primary,537,260,277,48.40%,51.60%,10,1.90%,76,14.20%,337,199,1,62.80%,37.10%,0.20%,245,246,495,49.70% +136119,341,6908,State-funded secondary,901,420,481,46.60%,53.40%,25,2.80%,196,21.80%,254,646,1,28.20%,71.70%,0.10%,548,451,686,65.70% +136120,839,6905,State-funded secondary,1161,511,650,44.00%,56.00%,33,2.80%,210,18.10%,239,888,34,20.60%,76.50%,2.90%,239,258,1056,24.40% +136122,822,6015,Independent school,18,5,13,27.80%,72.20%,17,94.40%,1,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136123,330,6170,Independent school,128,128,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136124,344,3363,State-funded primary,204,93,111,45.60%,54.40%,13,6.40%,77,37.70%,14,190,0,6.90%,93.10%,0.00%,95,74,158,46.80% +136125,839,6906,State-funded secondary,953,490,463,51.40%,48.60%,53,5.60%,156,16.40%,87,854,12,9.10%,89.60%,1.30%,290,298,818,36.40% +136126,331,6906,State-funded secondary,1467,617,850,42.10%,57.90%,29,2.00%,253,17.20%,1006,457,4,68.60%,31.20%,0.30%,611,534,1113,48.00% +136127,830,6905,State-funded secondary,841,409,432,48.60%,51.40%,15,1.80%,157,18.70%,77,764,0,9.20%,90.80%,0.00%,317,349,841,41.50% +136128,886,6905,State-funded secondary,1373,702,671,51.10%,48.90%,45,3.30%,213,15.50%,69,1304,0,5.00%,95.00%,0.00%,229,255,1215,21.00% +136135,350,6907,State-funded secondary,730,345,385,47.30%,52.70%,18,2.50%,95,13.00%,131,596,3,17.90%,81.60%,0.40%,277,303,730,41.50% +136136,860,6905,State-funded secondary,954,465,489,48.70%,51.30%,15,1.60%,121,12.70%,57,897,0,6.00%,94.00%,0.00%,313,338,954,35.40% +136137,204,6909,State-funded secondary,1064,494,570,46.40%,53.60%,31,2.90%,110,10.30%,614,446,4,57.70%,41.90%,0.40%,448,452,909,49.70% +136141,342,6905,State-funded secondary,1414,694,720,49.10%,50.90%,24,1.70%,263,18.60%,54,1360,0,3.80%,96.20%,0.00%,476,506,1277,39.60% +136142,879,6905,State-funded secondary,597,294,303,49.20%,50.80%,18,3.00%,251,42.00%,17,580,0,2.80%,97.20%,0.00%,290,310,597,51.90% +136143,355,6039,Independent school,389,389,0,100.00%,0.00%,4,1.00%,59,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136145,861,6906,State-funded secondary,1154,598,556,51.80%,48.20%,37,3.20%,156,13.50%,112,1042,0,9.70%,90.30%,0.00%,397,449,1154,38.90% +136146,808,6906,State-funded secondary,734,364,370,49.60%,50.40%,14,1.90%,126,17.20%,87,644,3,11.90%,87.70%,0.40%,403,447,734,60.90% +136147,308,6907,State-funded secondary,1383,677,706,49.00%,51.00%,32,2.30%,550,39.80%,740,643,0,53.50%,46.50%,0.00%,531,497,1170,42.50% +136152,330,6906,State-funded secondary,1190,583,607,49.00%,51.00%,11,0.90%,197,16.60%,267,920,3,22.40%,77.30%,0.30%,521,555,1044,53.20% +136153,826,6013,Independent school,296,134,162,45.30%,54.70%,0,0.00%,27,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136156,850,6905,State-funded secondary,567,255,312,45.00%,55.00%,32,5.60%,153,27.00%,18,549,0,3.20%,96.80%,0.00%,296,327,567,57.70% +136158,937,6905,State-funded secondary,928,454,474,48.90%,51.10%,12,1.30%,176,19.00%,49,879,0,5.30%,94.70%,0.00%,352,371,928,40.00% +136161,885,1121,State-funded AP school,28,8,20,28.60%,71.40%,1,3.60%,27,96.40%,1,27,0,3.60%,96.40%,0.00%,17,17,28,60.70% +136162,845,6059,Independent school,104,48,56,46.20%,53.80%,2,1.90%,12,11.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136163,393,3319,State-funded primary,469,223,246,47.50%,52.50%,10,2.10%,106,22.60%,23,446,0,4.90%,95.10%,0.00%,194,195,432,45.10% +136164,846,6905,State-funded secondary,838,381,457,45.50%,54.50%,51,6.10%,176,21.00%,103,711,24,12.30%,84.80%,2.90%,344,367,727,50.50% +136167,830,6037,Independent school,3,0,3,0.00%,100.00%,2,66.70%,1,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136168,830,6038,Independent school,4,0,4,0.00%,100.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136172,205,6906,State-funded secondary,929,432,497,46.50%,53.50%,36,3.90%,95,10.20%,514,414,1,55.30%,44.60%,0.10%,316,326,699,46.60% +136174,352,6914,State-funded secondary,1620,793,827,49.00%,51.00%,46,2.80%,266,16.40%,567,1038,15,35.00%,64.10%,0.90%,718,799,1620,49.30% +136175,886,6917,State-funded secondary,808,378,430,46.80%,53.20%,85,10.50%,231,28.60%,35,769,4,4.30%,95.20%,0.50%,379,354,717,49.40% +136177,886,6918,State-funded secondary,501,202,299,40.30%,59.70%,1,0.20%,56,11.20%,70,430,1,14.00%,85.80%,0.20%,5,25,376,6.60% +136178,393,3320,State-funded primary,687,325,362,47.30%,52.70%,4,0.60%,138,20.10%,7,680,0,1.00%,99.00%,0.00%,264,269,622,43.20% +136183,865,6906,State-funded secondary,693,335,358,48.30%,51.70%,46,6.60%,198,28.60%,58,635,0,8.40%,91.60%,0.00%,226,227,608,37.30% +136184,896,6906,State-funded secondary,1056,520,536,49.20%,50.80%,30,2.80%,192,18.20%,45,1010,1,4.30%,95.60%,0.10%,411,443,1056,42.00% +136185,876,6905,State-funded secondary,1011,513,498,50.70%,49.30%,15,1.50%,131,13.00%,15,996,0,1.50%,98.50%,0.00%,493,448,854,52.50% +136186,926,6907,State-funded secondary,1330,654,676,49.20%,50.80%,42,3.20%,184,13.80%,130,1191,9,9.80%,89.50%,0.70%,335,335,1167,28.70% +136187,926,6908,State-funded secondary,887,427,460,48.10%,51.90%,44,5.00%,235,26.50%,48,838,1,5.40%,94.50%,0.10%,339,361,887,40.70% +136189,380,6349,Independent school,168,0,168,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136191,313,3944,State-funded primary,431,210,221,48.70%,51.30%,5,1.20%,66,15.30%,329,96,6,76.30%,22.30%,1.40%,125,127,398,31.90% +136192,812,6908,State-funded secondary,884,422,462,47.70%,52.30%,15,1.70%,92,10.40%,30,854,0,3.40%,96.60%,0.00%,270,321,884,36.30% +136193,933,6905,State-funded secondary,872,421,451,48.30%,51.70%,31,3.60%,160,18.30%,77,770,25,8.80%,88.30%,2.90%,228,259,872,29.70% +136194,925,6910,State-funded secondary,1406,653,753,46.40%,53.60%,55,3.90%,215,15.30%,132,1274,0,9.40%,90.60%,0.00%,285,304,1193,25.50% +136195,881,6911,State-funded secondary,897,464,433,51.70%,48.30%,17,1.90%,218,24.30%,114,783,0,12.70%,87.30%,0.00%,352,407,897,45.40% +136197,886,6919,State-funded secondary,1763,874,889,49.60%,50.40%,59,3.30%,312,17.70%,379,1381,3,21.50%,78.30%,0.20%,640,654,1587,41.20% +136198,380,6909,State-funded secondary,714,353,361,49.40%,50.60%,25,3.50%,89,12.50%,291,421,2,40.80%,59.00%,0.30%,214,240,714,33.60% +136200,878,6905,State-funded secondary,403,217,186,53.80%,46.20%,23,5.70%,70,17.40%,25,374,4,6.20%,92.80%,1.00%,78,101,381,26.50% +136201,941,6910,State-funded secondary,1404,643,761,45.80%,54.20%,21,1.50%,163,11.60%,422,942,40,30.10%,67.10%,2.80%,283,293,1265,23.20% +136202,926,6909,State-funded secondary,945,473,472,50.10%,49.90%,38,4.00%,123,13.00%,177,768,0,18.70%,81.30%,0.00%,245,266,945,28.10% +136203,306,6910,State-funded secondary,960,478,482,49.80%,50.20%,12,1.30%,149,15.50%,266,690,4,27.70%,71.90%,0.40%,360,376,836,45.00% +136204,926,6910,State-funded secondary,1258,648,610,51.50%,48.50%,43,3.40%,117,9.30%,362,896,0,28.80%,71.20%,0.00%,340,348,1131,30.80% +136205,886,6920,State-funded secondary,1388,521,867,37.50%,62.50%,45,3.20%,178,12.80%,99,1286,3,7.10%,92.70%,0.20%,238,252,1201,21.00% +136206,839,6907,State-funded secondary,851,392,459,46.10%,53.90%,26,3.10%,223,26.20%,140,710,1,16.50%,83.40%,0.10%,328,352,851,41.40% +136208,318,6907,State-funded secondary,994,462,532,46.50%,53.50%,35,3.50%,121,12.20%,234,760,0,23.50%,76.50%,0.00%,227,251,866,29.00% +136210,852,6011,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136211,886,6136,Independent school,42,16,26,38.10%,61.90%,40,95.20%,2,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136213,330,6910,State-funded secondary,606,208,398,34.30%,65.70%,9,1.50%,92,15.20%,206,399,1,34.00%,65.80%,0.20%,304,364,606,60.10% +136217,925,6911,State-funded secondary,1029,536,493,52.10%,47.90%,50,4.90%,269,26.10%,51,978,0,5.00%,95.00%,0.00%,592,580,928,62.50% +136220,861,6004,Independent school,25,9,16,36.00%,64.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136222,340,3365,State-funded primary,222,110,112,49.50%,50.50%,11,5.00%,53,23.90%,17,192,13,7.70%,86.50%,5.90%,112,111,199,55.80% +136223,353,3509,State-funded primary,452,230,222,50.90%,49.10%,9,2.00%,42,9.30%,26,425,1,5.80%,94.00%,0.20%,138,137,412,33.30% +136226,306,6107,Independent school,124,124,0,100.00%,0.00%,0,0.00%,2,1.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136227,941,6073,Independent school,44,9,35,20.50%,79.50%,43,97.70%,1,2.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136228,305,6081,Independent school,45,21,24,46.70%,53.30%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136230,356,6035,Independent school,7,3,4,42.90%,57.10%,4,57.10%,3,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136231,304,6114,Independent school,108,108,0,100.00%,0.00%,0,0.00%,19,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136232,892,3332,State-funded primary,413,205,208,49.60%,50.40%,4,1.00%,78,18.90%,62,349,2,15.00%,84.50%,0.50%,202,212,378,56.10% +136236,873,6028,Independent school,12,8,4,66.70%,33.30%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136237,888,6113,Independent school,89,20,69,22.50%,77.50%,18,20.20%,71,79.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136239,358,6019,Independent school,8,5,3,62.50%,37.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136241,873,3946,State-funded primary,475,245,230,51.60%,48.40%,13,2.70%,38,8.00%,232,243,0,48.80%,51.20%,0.00%,90,91,411,22.10% +136242,352,6070,Independent school,4,1,3,25.00%,75.00%,2,50.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136244,317,6080,Independent school,2,2,0,100.00%,0.00%,1,50.00%,1,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136245,860,6443,Independent school,22,13,9,59.10%,40.90%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136251,886,3920,State-funded primary,212,100,112,47.20%,52.80%,14,6.60%,19,9.00%,12,199,1,5.70%,93.90%,0.50%,88,88,212,41.50% +136252,393,7007,State-funded special school,166,52,114,31.30%,68.70%,166,100.00%,0,0.00%,16,150,0,9.60%,90.40%,0.00%,92,82,143,57.30% +136257,354,6202,Independent school,10,4,6,40.00%,60.00%,6,60.00%,4,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136258,391,6040,Independent school,30,30,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136259,806,6002,Independent school,51,14,37,27.50%,72.50%,8,15.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136260,885,6039,Independent school,12,2,10,16.70%,83.30%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136261,931,6907,State-funded secondary,1345,673,672,50.00%,50.00%,27,2.00%,162,12.00%,559,779,7,41.60%,57.90%,0.50%,339,334,1125,29.70% +136262,885,6040,Independent school,80,4,76,5.00%,95.00%,80,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136263,302,6201,Independent school,76,19,57,25.00%,75.00%,76,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136264,352,6071,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136265,305,6082,Independent school,109,11,98,10.10%,89.90%,109,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136266,874,5417,State-funded secondary,1660,837,823,50.40%,49.60%,27,1.60%,139,8.40%,86,1574,0,5.20%,94.80%,0.00%,216,223,1310,17.00% +136267,317,5400,State-funded secondary,1247,597,650,47.90%,52.10%,36,2.90%,107,8.60%,785,436,26,63.00%,35.00%,2.10%,254,227,915,24.80% +136268,812,4078,State-funded secondary,1971,1007,964,51.10%,48.90%,11,0.60%,131,6.60%,159,1811,1,8.10%,91.90%,0.10%,284,329,1761,18.70% +136269,908,5201,State-funded primary,73,31,42,42.50%,57.50%,0,0.00%,13,17.80%,0,73,0,0.00%,100.00%,0.00%,16,13,62,21.00% +136270,886,3912,State-funded primary,578,275,303,47.60%,52.40%,17,2.90%,92,15.90%,60,517,1,10.40%,89.40%,0.20%,187,192,578,33.20% +136271,935,4036,State-funded secondary,1048,513,535,49.00%,51.00%,18,1.70%,136,13.00%,28,1013,7,2.70%,96.70%,0.70%,107,114,845,13.50% +136272,882,5401,State-funded secondary,1267,53,1214,4.20%,95.80%,1,0.10%,40,3.20%,199,1067,1,15.70%,84.20%,0.10%,68,70,911,7.70% +136273,357,5400,State-funded secondary,1106,0,1106,0.00%,100.00%,17,1.50%,38,3.40%,187,900,19,16.90%,81.40%,1.70%,220,303,1106,27.40% +136274,891,2921,State-funded primary,601,290,311,48.30%,51.70%,2,0.30%,85,14.10%,108,493,0,18.00%,82.00%,0.00%,155,159,532,29.90% +136275,826,2133,State-funded primary,631,326,305,51.70%,48.30%,8,1.30%,184,29.20%,382,249,0,60.50%,39.50%,0.00%,226,228,631,36.10% +136276,919,5401,State-funded secondary,1533,0,1533,0.00%,100.00%,53,3.50%,99,6.50%,295,1229,9,19.20%,80.20%,0.60%,65,75,1124,6.70% +136277,812,4084,State-funded secondary,930,443,487,47.60%,52.40%,11,1.20%,66,7.10%,64,866,0,6.90%,93.10%,0.00%,115,134,930,14.40% +136278,895,5401,State-funded secondary,1564,789,775,50.40%,49.60%,44,2.80%,104,6.60%,52,1511,1,3.30%,96.60%,0.10%,161,162,1201,13.50% +136279,895,4220,State-funded secondary,1431,690,741,48.20%,51.80%,32,2.20%,157,11.00%,35,1381,15,2.40%,96.50%,1.00%,151,154,1139,13.50% +136280,878,2004,State-funded primary,513,240,273,46.80%,53.20%,4,0.80%,55,10.70%,16,497,0,3.10%,96.90%,0.00%,45,41,432,9.50% +136281,305,5406,State-funded secondary,588,210,378,35.70%,64.30%,13,2.20%,174,29.60%,77,509,2,13.10%,86.60%,0.30%,262,286,588,48.60% +136283,382,5401,State-funded secondary,1520,727,793,47.80%,52.20%,6,0.40%,16,1.10%,378,1136,6,24.90%,74.70%,0.40%,95,64,1048,6.10% +136285,909,2130,State-funded primary,204,105,99,51.50%,48.50%,2,1.00%,3,1.50%,1,203,0,0.50%,99.50%,0.00%,16,16,160,10.00% +136286,886,5434,State-funded secondary,1784,849,935,47.60%,52.40%,105,5.90%,162,9.10%,80,1702,2,4.50%,95.40%,0.10%,385,414,1598,25.90% +136287,878,5405,State-funded secondary,1069,537,532,50.20%,49.80%,36,3.40%,62,5.80%,28,1026,15,2.60%,96.00%,1.40%,139,182,1069,17.00% +136289,919,5403,State-funded secondary,1451,1451,0,100.00%,0.00%,7,0.50%,65,4.50%,510,928,13,35.10%,64.00%,0.90%,78,73,1048,7.00% +136290,302,5401,State-funded secondary,1297,0,1297,0.00%,100.00%,3,0.20%,11,0.80%,466,826,5,35.90%,63.70%,0.40%,47,44,957,4.60% +136291,891,5401,State-funded secondary,1628,784,844,48.20%,51.80%,8,0.50%,118,7.20%,147,1465,16,9.00%,90.00%,1.00%,248,254,1406,18.10% +136292,916,5410,State-funded secondary,1414,741,673,52.40%,47.60%,36,2.50%,150,10.60%,41,1359,14,2.90%,96.10%,1.00%,163,162,1129,14.30% +136293,866,2212,State-funded primary,552,283,269,51.30%,48.70%,19,3.40%,98,17.80%,86,466,0,15.60%,84.40%,0.00%,289,294,544,54.00% +136294,933,4259,State-funded secondary,1417,757,660,53.40%,46.60%,21,1.50%,168,11.90%,48,1365,4,3.40%,96.30%,0.30%,198,204,1273,16.00% +136295,933,4274,State-funded secondary,1319,655,664,49.70%,50.30%,28,2.10%,177,13.40%,125,1193,1,9.50%,90.40%,0.10%,266,262,1190,22.00% +136296,865,5414,State-funded secondary,1531,750,781,49.00%,51.00%,45,2.90%,177,11.60%,61,1469,1,4.00%,96.00%,0.10%,159,167,1244,13.40% +136297,358,5405,State-funded secondary,1100,490,610,44.50%,55.50%,10,0.90%,55,5.00%,181,878,41,16.50%,79.80%,3.70%,88,78,754,10.30% +136298,210,4318,State-funded secondary,1289,613,676,47.60%,52.40%,61,4.70%,230,17.80%,86,1196,7,6.70%,92.80%,0.50%,216,193,932,20.70% +136299,941,5404,State-funded secondary,1607,154,1453,9.60%,90.40%,13,0.80%,263,16.40%,248,1357,2,15.40%,84.40%,0.10%,97,112,1119,10.00% +136301,372,4024,State-funded secondary,1481,758,723,51.20%,48.80%,50,3.40%,93,6.30%,294,1181,6,19.90%,79.70%,0.40%,400,398,1280,31.10% +136302,886,5421,State-funded secondary,1844,895,949,48.50%,51.50%,96,5.20%,77,4.20%,163,1680,1,8.80%,91.10%,0.10%,419,364,1132,32.20% +136303,335,5200,State-funded primary,328,144,184,43.90%,56.10%,1,0.30%,30,9.10%,254,73,1,77.40%,22.30%,0.30%,25,25,276,9.10% +136304,886,4031,State-funded secondary,585,305,280,52.10%,47.90%,22,3.80%,91,15.60%,35,550,0,6.00%,94.00%,0.00%,233,251,585,42.90% +136305,886,4080,State-funded secondary,889,882,7,99.20%,0.80%,4,0.40%,62,7.00%,49,840,0,5.50%,94.50%,0.00%,74,68,714,9.50% +136306,916,4001,State-funded secondary,1226,160,1066,13.10%,86.90%,6,0.50%,48,3.90%,183,1038,5,14.90%,84.70%,0.40%,50,43,784,5.50% +136307,870,4020,State-funded secondary,1575,741,834,47.00%,53.00%,17,1.10%,164,10.40%,259,1283,33,16.40%,81.50%,2.10%,135,138,1270,10.90% +136308,302,5406,State-funded secondary,1893,945,948,49.90%,50.10%,40,2.10%,50,2.60%,604,1272,17,31.90%,67.20%,0.90%,154,144,1303,11.10% +136309,210,4265,State-funded secondary,2513,1252,1261,49.80%,50.20%,75,3.00%,460,18.30%,370,2141,2,14.70%,85.20%,0.10%,316,332,2105,15.80% +136310,334,4014,State-funded secondary,1709,794,915,46.50%,53.50%,40,2.30%,142,8.30%,199,1497,13,11.60%,87.60%,0.80%,146,146,1402,10.40% +136311,800,4133,State-funded secondary,713,325,388,45.60%,54.40%,37,5.20%,153,21.50%,16,697,0,2.20%,97.80%,0.00%,150,158,654,24.20% +136312,908,2409,State-funded primary,333,174,159,52.30%,47.70%,1,0.30%,39,11.70%,28,305,0,8.40%,91.60%,0.00%,56,56,333,16.80% +136313,887,5445,State-funded secondary,1182,1173,9,99.20%,0.80%,0,0.00%,35,3.00%,340,842,0,28.80%,71.20%,0.00%,78,88,998,8.80% +136315,925,5401,State-funded secondary,527,273,254,51.80%,48.20%,6,1.10%,15,2.80%,29,498,0,5.50%,94.50%,0.00%,61,63,426,14.80% +136316,935,2003,State-funded primary,436,201,235,46.10%,53.90%,13,3.00%,74,17.00%,63,337,36,14.40%,77.30%,8.30%,74,81,398,20.40% +136317,886,5463,State-funded secondary,1353,669,684,49.40%,50.60%,13,1.00%,199,14.70%,52,1291,10,3.80%,95.40%,0.70%,369,393,1214,32.40% +136318,908,2448,State-funded primary,415,204,211,49.20%,50.80%,19,4.60%,61,14.70%,7,395,13,1.70%,95.20%,3.10%,83,85,391,21.70% +136319,821,4104,State-funded secondary,1129,583,546,51.60%,48.40%,44,3.90%,124,11.00%,949,180,0,84.10%,15.90%,0.00%,293,346,1129,30.60% +136320,334,3313,State-funded primary,246,129,117,52.40%,47.60%,2,0.80%,32,13.00%,22,224,0,8.90%,91.10%,0.00%,34,36,214,16.80% +136321,880,5401,State-funded secondary,1075,25,1050,2.30%,97.70%,4,0.40%,23,2.10%,56,1019,0,5.20%,94.80%,0.00%,52,52,820,6.30% +136322,935,4102,State-funded secondary,1219,609,610,50.00%,50.00%,16,1.30%,110,9.00%,118,1085,16,9.70%,89.00%,1.30%,169,179,1076,16.60% +136323,860,4061,State-funded secondary,1557,757,800,48.60%,51.40%,22,1.40%,135,8.70%,119,1438,0,7.60%,92.40%,0.00%,123,121,1219,9.90% +136324,886,5414,State-funded secondary,1340,679,661,50.70%,49.30%,50,3.70%,178,13.30%,62,1277,1,4.60%,95.30%,0.10%,237,252,1062,23.70% +136325,881,5263,State-funded primary,272,112,160,41.20%,58.80%,9,3.30%,23,8.50%,35,236,1,12.90%,86.80%,0.40%,21,21,272,7.70% +136326,383,2396,State-funded primary,453,239,214,52.80%,47.20%,3,0.70%,57,12.60%,33,419,1,7.30%,92.50%,0.20%,32,39,415,9.40% +136327,308,4015,State-funded secondary,1542,758,784,49.20%,50.80%,28,1.80%,81,5.30%,593,945,4,38.50%,61.30%,0.30%,425,435,1296,33.60% +136328,881,5264,State-funded primary,365,181,184,49.60%,50.40%,12,3.30%,59,16.20%,32,332,1,8.80%,91.00%,0.30%,42,47,365,12.90% +136329,312,4654,State-funded secondary,1603,774,829,48.30%,51.70%,25,1.60%,124,7.70%,1121,482,0,69.90%,30.10%,0.00%,211,226,1409,16.00% +136331,372,4025,State-funded secondary,1850,922,928,49.80%,50.20%,62,3.40%,261,14.10%,39,1761,50,2.10%,95.20%,2.70%,286,401,1600,25.10% +136332,873,5203,State-funded primary,312,141,171,45.20%,54.80%,7,2.20%,53,17.00%,81,231,0,26.00%,74.00%,0.00%,24,25,259,9.70% +136333,334,4017,State-funded secondary,1805,887,918,49.10%,50.90%,21,1.20%,217,12.00%,96,1709,0,5.30%,94.70%,0.00%,169,155,1507,10.30% +136334,303,5403,State-funded secondary,1736,249,1487,14.30%,85.70%,8,0.50%,7,0.40%,206,1530,0,11.90%,88.10%,0.00%,141,114,959,11.90% +136335,800,4128,State-funded secondary,1857,940,917,50.60%,49.40%,32,1.70%,228,12.30%,36,1814,7,1.90%,97.70%,0.40%,260,255,1495,17.10% +136336,878,4184,State-funded secondary,2469,1175,1294,47.60%,52.40%,39,1.60%,300,12.20%,47,2422,0,1.90%,98.10%,0.00%,292,323,2042,15.80% +136337,887,4069,State-funded secondary,895,875,20,97.80%,2.20%,1,0.10%,16,1.80%,149,746,0,16.60%,83.40%,0.00%,97,96,714,13.40% +136338,936,5221,State-funded primary,720,365,355,50.70%,49.30%,14,1.90%,62,8.60%,83,637,0,11.50%,88.50%,0.00%,56,61,720,8.50% +136339,873,5204,State-funded primary,434,231,203,53.20%,46.80%,16,3.70%,85,19.60%,62,372,0,14.30%,85.70%,0.00%,67,73,434,16.80% +136340,895,4123,State-funded secondary,1398,1395,3,99.80%,0.20%,16,1.10%,36,2.60%,97,1227,74,6.90%,87.80%,5.30%,136,137,1172,11.70% +136341,313,4027,State-funded secondary,1536,687,849,44.70%,55.30%,40,2.60%,205,13.30%,1158,374,4,75.40%,24.30%,0.30%,370,328,1193,27.50% +136342,881,5415,State-funded secondary,760,349,411,45.90%,54.10%,15,2.00%,149,19.60%,83,657,20,10.90%,86.40%,2.60%,215,264,760,34.70% +136343,383,4112,State-funded secondary,1900,960,940,50.50%,49.50%,16,0.80%,196,10.30%,58,1837,5,3.10%,96.70%,0.30%,220,234,1530,15.30% +136344,886,2654,State-funded primary,408,199,209,48.80%,51.20%,23,5.60%,45,11.00%,89,319,0,21.80%,78.20%,0.00%,171,180,408,44.10% +136345,823,2217,State-funded primary,365,188,177,51.50%,48.50%,6,1.60%,24,6.60%,50,315,0,13.70%,86.30%,0.00%,22,24,314,7.60% +136347,334,4661,State-funded secondary,1322,680,642,51.40%,48.60%,18,1.40%,202,15.30%,223,1099,0,16.90%,83.10%,0.00%,463,457,1162,39.30% +136348,391,4303,State-funded secondary,752,366,386,48.70%,51.30%,19,2.50%,82,10.90%,82,669,1,10.90%,89.00%,0.10%,169,177,752,23.50% +136349,886,5455,State-funded secondary,477,1,476,0.20%,99.80%,12,2.50%,71,14.90%,44,432,1,9.20%,90.60%,0.20%,114,117,424,27.60% +136350,925,5406,State-funded secondary,687,349,338,50.80%,49.20%,6,0.90%,10,1.50%,32,654,1,4.70%,95.20%,0.10%,37,36,505,7.10% +136351,886,2656,State-funded primary,467,227,240,48.60%,51.40%,5,1.10%,38,8.10%,14,453,0,3.00%,97.00%,0.00%,30,32,433,7.40% +136352,391,4429,State-funded secondary,1932,924,1008,47.80%,52.20%,29,1.50%,161,8.30%,269,1662,1,13.90%,86.00%,0.10%,300,234,1248,18.80% +136353,916,5403,State-funded secondary,1243,589,654,47.40%,52.60%,3,0.20%,50,4.00%,173,1068,2,13.90%,85.90%,0.20%,32,23,756,3.00% +136354,925,3510,State-funded primary,675,317,358,47.00%,53.00%,20,3.00%,48,7.10%,80,595,0,11.90%,88.10%,0.00%,145,144,611,23.60% +136355,305,5418,State-funded secondary,1713,903,810,52.70%,47.30%,80,4.70%,244,14.20%,103,1589,21,6.00%,92.80%,1.20%,161,168,1309,12.80% +136356,926,2006,State-funded primary,370,167,203,45.10%,54.90%,7,1.90%,44,11.90%,16,353,1,4.30%,95.40%,0.30%,48,48,298,16.10% +136357,909,5411,State-funded secondary,1174,591,583,50.30%,49.70%,20,1.70%,191,16.30%,16,1129,29,1.40%,96.20%,2.50%,74,79,995,7.90% +136358,925,5418,State-funded secondary,1235,637,598,51.60%,48.40%,28,2.30%,193,15.60%,35,1200,0,2.80%,97.20%,0.00%,192,198,1066,18.60% +136359,886,5406,State-funded secondary,1516,225,1291,14.80%,85.20%,8,0.50%,95,6.30%,613,891,12,40.40%,58.80%,0.80%,82,72,917,7.90% +136361,891,4084,State-funded secondary,1583,791,792,50.00%,50.00%,11,0.70%,129,8.10%,158,1423,2,10.00%,89.90%,0.10%,308,295,1289,22.90% +136362,320,2040,State-funded primary,442,243,199,55.00%,45.00%,18,4.10%,91,20.60%,183,259,0,41.40%,58.60%,0.00%,119,125,395,31.60% +136364,320,2007,State-funded primary,478,215,263,45.00%,55.00%,12,2.50%,27,5.60%,79,399,0,16.50%,83.50%,0.00%,65,68,422,16.10% +136365,888,2040,State-funded primary,252,108,144,42.90%,57.10%,0,0.00%,18,7.10%,0,252,0,0.00%,100.00%,0.00%,21,22,223,9.90% +136366,878,5400,State-funded secondary,1038,469,569,45.20%,54.80%,5,0.50%,34,3.30%,72,961,5,6.90%,92.60%,0.50%,47,46,767,6.00% +136367,878,4110,State-funded secondary,1294,658,636,50.90%,49.10%,33,2.60%,198,15.30%,33,1252,9,2.60%,96.80%,0.70%,131,145,1044,13.90% +136368,839,5403,State-funded secondary,1224,1224,0,100.00%,0.00%,8,0.70%,175,14.30%,70,1146,8,5.70%,93.60%,0.70%,80,74,928,8.00% +136369,303,4000,State-funded secondary,1462,509,953,34.80%,65.20%,14,1.00%,22,1.50%,209,1253,0,14.30%,85.70%,0.00%,44,44,1023,4.30% +136373,825,6043,Independent school,11,5,6,45.50%,54.50%,7,63.60%,4,36.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136374,884,2159,State-funded primary,165,73,92,44.20%,55.80%,5,3.00%,11,6.70%,3,162,0,1.80%,98.20%,0.00%,34,34,165,20.60% +136375,381,2049,State-funded primary,413,205,208,49.60%,50.40%,7,1.70%,32,7.70%,5,406,2,1.20%,98.30%,0.50%,33,35,413,8.50% +136376,358,2005,State-funded primary,240,130,110,54.20%,45.80%,7,2.90%,20,8.30%,86,153,1,35.80%,63.80%,0.40%,8,8,211,3.80% +136377,358,5400,State-funded secondary,1498,765,733,51.10%,48.90%,64,4.30%,190,12.70%,134,1364,0,8.90%,91.10%,0.00%,132,136,1318,10.30% +136378,358,4016,State-funded secondary,653,0,653,0.00%,100.00%,19,2.90%,78,11.90%,42,611,0,6.40%,93.60%,0.00%,113,127,653,19.40% +136379,886,4092,State-funded secondary,1542,1442,100,93.50%,6.50%,4,0.30%,73,4.70%,425,1117,0,27.60%,72.40%,0.00%,93,80,1089,7.30% +136380,879,2693,State-funded primary,440,213,227,48.40%,51.60%,5,1.10%,47,10.70%,6,434,0,1.40%,98.60%,0.00%,33,32,402,8.00% +136381,888,5402,State-funded secondary,1006,1006,0,100.00%,0.00%,0,0.00%,85,8.40%,176,826,4,17.50%,82.10%,0.40%,56,40,727,5.50% +136382,886,5462,State-funded secondary,1503,737,766,49.00%,51.00%,4,0.30%,21,1.40%,165,1326,12,11.00%,88.20%,0.80%,179,150,1010,14.90% +136383,908,4154,State-funded secondary,1564,807,757,51.60%,48.40%,81,5.20%,190,12.10%,107,1457,0,6.80%,93.20%,0.00%,400,370,1269,29.20% +136384,908,2406,State-funded primary,506,260,246,51.40%,48.60%,14,2.80%,67,13.20%,21,485,0,4.20%,95.80%,0.00%,97,110,506,21.70% +136386,393,4605,State-funded secondary,1225,638,587,52.10%,47.90%,16,1.30%,125,10.20%,16,1209,0,1.30%,98.70%,0.00%,116,140,1015,13.80% +136388,880,4116,State-funded secondary,1034,561,473,54.30%,45.70%,12,1.20%,46,4.40%,17,1017,0,1.60%,98.40%,0.00%,57,60,750,8.00% +136389,865,5402,State-funded secondary,858,437,421,50.90%,49.10%,23,2.70%,52,6.10%,12,846,0,1.40%,98.60%,0.00%,109,116,858,13.50% +136390,888,5403,State-funded secondary,1417,705,712,49.80%,50.20%,1,0.10%,83,5.90%,106,1309,2,7.50%,92.40%,0.10%,98,73,750,9.70% +136391,865,5412,State-funded secondary,1142,1047,95,91.70%,8.30%,1,0.10%,53,4.60%,91,1051,0,8.00%,92.00%,0.00%,19,25,786,3.20% +136392,383,4101,State-funded secondary,1429,725,704,50.70%,49.30%,10,0.70%,194,13.60%,152,1277,0,10.60%,89.40%,0.00%,251,285,1429,19.90% +136393,886,2608,State-funded primary,404,186,218,46.00%,54.00%,18,4.50%,48,11.90%,117,287,0,29.00%,71.00%,0.00%,121,123,404,30.40% +136394,384,4009,State-funded secondary,799,422,377,52.80%,47.20%,23,2.90%,38,4.80%,394,401,4,49.30%,50.20%,0.50%,256,276,799,34.50% +136395,350,2018,State-funded primary,511,259,252,50.70%,49.30%,4,0.80%,68,13.30%,378,133,0,74.00%,26.00%,0.00%,111,119,415,28.70% +136396,919,4101,State-funded secondary,1332,679,653,51.00%,49.00%,19,1.40%,99,7.40%,160,1172,0,12.00%,88.00%,0.00%,129,136,1102,12.30% +136398,874,5404,State-funded secondary,1242,640,602,51.50%,48.50%,33,2.70%,40,3.20%,112,1129,1,9.00%,90.90%,0.10%,118,98,872,11.20% +136399,884,4428,State-funded secondary,1425,708,717,49.70%,50.30%,13,0.90%,229,16.10%,61,1361,3,4.30%,95.50%,0.20%,207,216,1229,17.60% +136400,845,4611,State-funded secondary,1432,707,725,49.40%,50.60%,41,2.90%,251,17.50%,108,1324,0,7.50%,92.50%,0.00%,545,597,1432,41.70% +136401,845,4612,State-funded secondary,862,421,441,48.80%,51.20%,19,2.20%,234,27.10%,30,832,0,3.50%,96.50%,0.00%,354,388,862,45.00% +136402,302,3524,State-funded primary,234,99,135,42.30%,57.70%,12,5.10%,41,17.50%,43,191,0,18.40%,81.60%,0.00%,11,12,210,5.70% +136405,884,4046,State-funded secondary,442,200,242,45.20%,54.80%,9,2.00%,72,16.30%,10,431,1,2.30%,97.50%,0.20%,48,55,442,12.40% +136406,330,5411,State-funded secondary,1489,677,812,45.50%,54.50%,55,3.70%,237,15.90%,752,736,1,50.50%,49.40%,0.10%,682,834,1489,56.00% +136407,850,3673,State-funded primary,394,207,187,52.50%,47.50%,17,4.30%,41,10.40%,36,358,0,9.10%,90.90%,0.00%,79,81,394,20.60% +136411,344,4798,State-funded secondary,757,327,430,43.20%,56.80%,9,1.20%,249,32.90%,99,658,0,13.10%,86.90%,0.00%,485,523,757,69.10% +136412,881,5410,State-funded secondary,1163,1163,0,100.00%,0.00%,2,0.20%,28,2.40%,235,910,18,20.20%,78.20%,1.50%,31,35,847,4.10% +136413,320,2018,State-funded primary,1257,599,658,47.70%,52.30%,71,5.60%,106,8.40%,424,831,2,33.70%,66.10%,0.20%,242,258,1169,22.10% +136414,860,4176,State-funded secondary,2444,1282,1162,52.50%,47.50%,34,1.40%,209,8.60%,608,1836,0,24.90%,75.10%,0.00%,425,432,2006,21.50% +136415,925,5415,State-funded secondary,1428,675,753,47.30%,52.70%,42,2.90%,137,9.60%,58,1362,8,4.10%,95.40%,0.60%,181,188,1201,15.70% +136416,935,4504,State-funded secondary,681,332,349,48.80%,51.20%,14,2.10%,66,9.70%,6,675,0,0.90%,99.10%,0.00%,66,74,681,10.90% +136417,886,5443,State-funded secondary,1131,1102,29,97.40%,2.60%,2,0.20%,99,8.80%,125,996,10,11.10%,88.10%,0.90%,19,21,892,2.40% +136418,302,4215,State-funded secondary,1350,633,717,46.90%,53.10%,46,3.40%,176,13.00%,582,761,7,43.10%,56.40%,0.50%,330,308,1045,29.50% +136419,825,4504,State-funded secondary,1368,89,1279,6.50%,93.50%,12,0.90%,80,5.80%,195,1173,0,14.30%,85.70%,0.00%,35,24,922,2.60% +136420,871,5408,State-funded secondary,1151,524,627,45.50%,54.50%,4,0.30%,39,3.40%,537,602,12,46.70%,52.30%,1.00%,71,55,829,6.60% +136421,342,4803,State-funded secondary,1351,670,681,49.60%,50.40%,30,2.20%,238,17.60%,59,1292,0,4.40%,95.60%,0.00%,362,386,1351,28.60% +136423,209,7183,State-funded special school,231,48,183,20.80%,79.20%,231,100.00%,0,0.00%,66,165,0,28.60%,71.40%,0.00%,124,106,191,55.50% +136425,892,6074,Independent school,156,75,81,48.10%,51.90%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136430,356,3530,State-funded primary,503,252,251,50.10%,49.90%,8,1.60%,53,10.50%,26,476,1,5.20%,94.60%,0.20%,115,112,454,24.70% +136431,301,3507,State-funded primary,666,335,331,50.30%,49.70%,21,3.20%,106,15.90%,252,414,0,37.80%,62.20%,0.00%,168,176,605,29.10% +136432,353,4608,State-funded secondary,1502,771,731,51.30%,48.70%,47,3.10%,175,11.70%,242,1260,0,16.10%,83.90%,0.00%,462,531,1502,35.40% +136434,935,6229,Independent school,4,1,3,25.00%,75.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136439,894,2181,State-funded primary,450,243,207,54.00%,46.00%,7,1.60%,17,3.80%,60,383,7,13.30%,85.10%,1.60%,46,49,409,12.00% +136440,330,3436,State-funded primary,179,90,89,50.30%,49.70%,0,0.00%,22,12.30%,47,132,0,26.30%,73.70%,0.00%,86,86,179,48.00% +136441,881,3832,State-funded primary,277,130,147,46.90%,53.10%,6,2.20%,21,7.60%,8,269,0,2.90%,97.10%,0.00%,36,36,277,13.00% +136442,873,5416,State-funded secondary,827,432,395,52.20%,47.80%,22,2.70%,116,14.00%,74,752,1,8.90%,90.90%,0.10%,85,93,827,11.20% +136443,882,5446,State-funded secondary,1317,103,1214,7.80%,92.20%,10,0.80%,29,2.20%,98,1189,30,7.40%,90.30%,2.30%,72,54,894,6.00% +136444,882,5428,State-funded secondary,1245,1193,52,95.80%,4.20%,1,0.10%,24,1.90%,172,1050,23,13.80%,84.30%,1.80%,90,74,878,8.40% +136445,307,3513,State-funded primary,897,435,462,48.50%,51.50%,28,3.10%,131,14.60%,269,628,0,30.00%,70.00%,0.00%,158,164,840,19.50% +136447,850,5201,State-funded primary,183,100,83,54.60%,45.40%,5,2.70%,21,11.50%,4,179,0,2.20%,97.80%,0.00%,14,14,183,7.70% +136448,870,5413,State-funded secondary,865,865,0,100.00%,0.00%,2,0.20%,14,1.60%,215,650,0,24.90%,75.10%,0.00%,51,37,582,6.40% +136449,870,5401,State-funded secondary,1119,1,1118,0.10%,99.90%,6,0.50%,24,2.10%,279,837,3,24.90%,74.80%,0.30%,35,39,756,5.20% +136450,208,4322,State-funded secondary,844,419,425,49.60%,50.40%,29,3.40%,237,28.10%,600,244,0,71.10%,28.90%,0.00%,503,551,844,65.30% +136451,840,4215,State-funded secondary,1162,600,562,51.60%,48.40%,4,0.30%,156,13.40%,13,1149,0,1.10%,98.90%,0.00%,314,342,1162,29.40% +136453,935,4606,State-funded secondary,1001,502,499,50.10%,49.90%,33,3.30%,75,7.50%,204,796,1,20.40%,79.50%,0.10%,404,433,1001,43.30% +136454,826,4703,State-funded secondary,2418,1191,1227,49.30%,50.70%,37,1.50%,128,5.30%,552,1846,20,22.80%,76.30%,0.80%,341,338,2018,16.70% +136455,886,4046,State-funded secondary,1966,1885,81,95.90%,4.10%,1,0.10%,88,4.50%,112,1845,9,5.70%,93.80%,0.50%,68,63,1505,4.20% +136456,887,4199,State-funded secondary,1668,1632,36,97.80%,2.20%,12,0.70%,187,11.20%,116,1502,50,7.00%,90.00%,3.00%,274,292,1381,21.10% +136457,870,2031,State-funded primary,453,217,236,47.90%,52.10%,12,2.60%,60,13.20%,113,337,3,24.90%,74.40%,0.70%,97,92,419,22.00% +136458,358,5404,State-funded secondary,1349,0,1349,0.00%,100.00%,3,0.20%,98,7.30%,499,850,0,37.00%,63.00%,0.00%,43,36,964,3.70% +136459,937,4112,State-funded secondary,1471,740,731,50.30%,49.70%,23,1.60%,207,14.10%,22,1449,0,1.50%,98.50%,0.00%,215,238,1224,19.40% +136460,861,5901,State-funded secondary,1156,617,539,53.40%,46.60%,5,0.40%,24,2.10%,285,871,0,24.70%,75.30%,0.00%,58,50,759,6.60% +136462,384,4023,State-funded secondary,1739,871,868,50.10%,49.90%,35,2.00%,108,6.20%,54,1633,52,3.10%,93.90%,3.00%,270,285,1506,18.90% +136463,873,5406,State-funded secondary,1935,915,1020,47.30%,52.70%,156,8.10%,281,14.50%,197,1736,2,10.20%,89.70%,0.10%,178,160,1485,10.80% +136464,305,5401,State-funded secondary,1393,608,785,43.60%,56.40%,31,2.20%,192,13.80%,88,1305,0,6.30%,93.70%,0.00%,241,273,1170,23.30% +136465,886,5448,State-funded secondary,1586,760,826,47.90%,52.10%,43,2.70%,137,8.60%,36,1515,35,2.30%,95.50%,2.20%,364,373,1324,28.20% +136466,305,4604,State-funded secondary,1365,648,717,47.50%,52.50%,16,1.20%,161,11.80%,213,1151,1,15.60%,84.30%,0.10%,339,348,1146,30.40% +136467,305,5408,State-funded secondary,1057,1049,8,99.20%,0.80%,12,1.10%,98,9.30%,254,728,75,24.00%,68.90%,7.10%,209,221,903,24.50% +136468,826,5410,State-funded secondary,1774,882,892,49.70%,50.30%,33,1.90%,113,6.40%,322,1437,15,18.20%,81.00%,0.80%,197,209,1301,16.10% +136469,885,5403,State-funded secondary,1285,623,662,48.50%,51.50%,8,0.60%,35,2.70%,92,1192,1,7.20%,92.80%,0.10%,126,125,968,12.90% +136470,822,5402,State-funded secondary,1741,853,888,49.00%,51.00%,20,1.10%,51,2.90%,111,1629,1,6.40%,93.60%,0.10%,165,166,1332,12.50% +136471,822,5404,State-funded secondary,1007,498,509,49.50%,50.50%,41,4.10%,84,8.30%,78,928,1,7.70%,92.20%,0.10%,121,137,1007,13.60% +136474,916,5408,State-funded secondary,1383,683,700,49.40%,50.60%,32,2.30%,90,6.50%,83,1292,8,6.00%,93.40%,0.60%,73,61,1001,6.10% +136479,925,4017,State-funded secondary,272,107,165,39.30%,60.70%,21,7.70%,84,30.90%,13,259,0,4.80%,95.20%,0.00%,102,109,272,40.10% +136480,941,2214,State-funded primary,423,203,220,48.00%,52.00%,3,0.70%,49,11.60%,20,396,7,4.70%,93.60%,1.70%,28,34,423,8.00% +136481,926,5400,State-funded secondary,1424,712,712,50.00%,50.00%,23,1.60%,148,10.40%,110,1293,21,7.70%,90.80%,1.50%,85,95,999,9.50% +136482,919,5427,State-funded secondary,925,460,465,49.70%,50.30%,41,4.40%,94,10.20%,74,851,0,8.00%,92.00%,0.00%,27,38,701,5.40% +136483,800,5401,State-funded secondary,1243,611,632,49.20%,50.80%,48,3.90%,175,14.10%,103,1138,2,8.30%,91.60%,0.20%,224,227,1084,20.90% +136484,825,5404,State-funded secondary,1424,0,1424,0.00%,100.00%,10,0.70%,19,1.30%,472,952,0,33.10%,66.90%,0.00%,47,41,1006,4.10% +136486,394,2081,State-funded primary,240,122,118,50.80%,49.20%,9,3.80%,67,27.90%,3,237,0,1.30%,98.80%,0.00%,73,75,195,38.50% +136487,394,2083,State-funded primary,347,161,186,46.40%,53.60%,11,3.20%,83,23.90%,13,334,0,3.70%,96.30%,0.00%,147,149,309,48.20% +136488,941,4004,State-funded secondary,1436,720,716,50.10%,49.90%,10,0.70%,159,11.10%,27,1408,1,1.90%,98.10%,0.10%,96,106,1160,9.10% +136489,941,4042,State-funded secondary,1336,655,681,49.00%,51.00%,16,1.20%,177,13.20%,36,1300,0,2.70%,97.30%,0.00%,157,167,1135,14.70% +136490,882,5423,State-funded secondary,1333,1293,40,97.00%,3.00%,4,0.30%,45,3.40%,223,1110,0,16.70%,83.30%,0.00%,90,79,907,8.70% +136491,925,4514,State-funded secondary,1004,497,507,49.50%,50.50%,31,3.10%,197,19.60%,29,969,6,2.90%,96.50%,0.60%,270,282,882,32.00% +136492,878,2213,State-funded primary,219,104,115,47.50%,52.50%,2,0.90%,20,9.10%,2,217,0,0.90%,99.10%,0.00%,52,53,219,24.20% +136493,878,3774,State-funded primary,244,109,135,44.70%,55.30%,6,2.50%,54,22.10%,8,236,0,3.30%,96.70%,0.00%,109,94,204,46.10% +136494,878,5402,State-funded secondary,1021,528,493,51.70%,48.30%,33,3.20%,210,20.60%,15,1003,3,1.50%,98.20%,0.30%,170,207,922,22.50% +136495,878,4120,State-funded secondary,957,483,473,50.50%,49.40%,29,3.00%,138,14.40%,23,933,1,2.40%,97.50%,0.10%,202,220,835,26.30% +136496,879,5406,State-funded secondary,1238,78,1160,6.30%,93.70%,6,0.50%,53,4.30%,89,1121,28,7.20%,90.50%,2.30%,73,66,893,7.40% +136497,815,4200,State-funded secondary,2115,1049,1066,49.60%,50.40%,47,2.20%,336,15.90%,116,1997,2,5.50%,94.40%,0.10%,167,140,1448,9.70% +136498,358,4029,State-funded secondary,1331,601,730,45.20%,54.80%,13,1.00%,159,11.90%,118,1211,2,8.90%,91.00%,0.20%,42,34,953,3.60% +136499,886,2141,State-funded primary,379,174,205,45.90%,54.10%,11,2.90%,31,8.20%,36,343,0,9.50%,90.50%,0.00%,19,23,379,6.10% +136500,865,5413,State-funded secondary,1178,120,1058,10.20%,89.80%,0,0.00%,10,0.80%,84,1069,25,7.10%,90.70%,2.10%,39,32,787,4.10% +136501,886,5428,State-funded secondary,979,505,474,51.60%,48.40%,2,0.20%,107,10.90%,57,922,0,5.80%,94.20%,0.00%,90,73,759,9.60% +136502,382,4801,State-funded secondary,920,459,461,49.90%,50.10%,17,1.80%,153,16.60%,321,588,11,34.90%,63.90%,1.20%,461,474,920,51.50% +136503,355,6058,Independent school,265,0,265,0.00%,100.00%,2,0.80%,40,15.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136504,205,6405,Independent school,6,2,4,33.30%,66.70%,2,33.30%,3,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136505,830,5401,State-funded secondary,1607,810,797,50.40%,49.60%,25,1.60%,121,7.50%,19,1577,11,1.20%,98.10%,0.70%,102,95,1200,7.90% +136506,880,4114,State-funded secondary,997,997,0,100.00%,0.00%,3,0.30%,95,9.50%,52,943,2,5.20%,94.60%,0.20%,47,45,782,5.80% +136510,937,6108,Independent school,36,20,16,55.60%,44.40%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136511,382,3412,State-funded primary,405,190,215,46.90%,53.10%,13,3.20%,56,13.80%,5,400,0,1.20%,98.80%,0.00%,56,57,405,14.10% +136512,870,3361,State-funded primary,577,271,306,47.00%,53.00%,25,4.30%,146,25.30%,180,395,2,31.20%,68.50%,0.30%,228,217,520,41.70% +136514,874,3386,State-funded primary,421,201,220,47.70%,52.30%,21,5.00%,40,9.50%,139,282,0,33.00%,67.00%,0.00%,78,80,421,19.00% +136515,926,4081,State-funded secondary,1880,982,898,52.20%,47.80%,30,1.60%,110,5.90%,410,1470,0,21.80%,78.20%,0.00%,288,278,1400,19.90% +136516,894,4364,State-funded secondary,737,737,0,100.00%,0.00%,1,0.10%,36,4.90%,87,630,20,11.80%,85.50%,2.70%,36,31,536,5.80% +136517,305,5403,State-funded secondary,1612,102,1510,6.30%,93.70%,32,2.00%,240,14.90%,93,1451,68,5.80%,90.00%,4.20%,147,146,1164,12.50% +136518,895,5201,State-funded primary,189,90,99,47.60%,52.40%,1,0.50%,4,2.10%,2,187,0,1.10%,98.90%,0.00%,5,5,172,2.90% +136519,312,5401,State-funded secondary,1697,815,882,48.00%,52.00%,13,0.80%,80,4.70%,435,1257,5,25.60%,74.10%,0.30%,300,267,1333,20.00% +136521,871,5405,State-funded secondary,1265,569,696,45.00%,55.00%,6,0.50%,30,2.40%,671,588,6,53.00%,46.50%,0.50%,60,49,902,5.40% +136522,313,4029,State-funded secondary,1491,716,775,48.00%,52.00%,45,3.00%,209,14.00%,1140,349,2,76.50%,23.40%,0.10%,392,322,1046,30.80% +136523,908,2229,State-funded primary,313,160,153,51.10%,48.90%,4,1.30%,45,14.40%,12,291,10,3.80%,93.00%,3.20%,100,92,278,33.10% +136524,908,4158,State-funded secondary,1870,920,950,49.20%,50.80%,36,1.90%,186,9.90%,59,1807,4,3.20%,96.60%,0.20%,450,463,1650,28.10% +136525,841,4221,State-funded secondary,672,315,357,46.90%,53.10%,40,6.00%,57,8.50%,9,663,0,1.30%,98.70%,0.00%,122,151,672,22.50% +136526,909,5404,State-funded secondary,950,492,458,51.80%,48.20%,18,1.90%,98,10.30%,70,874,6,7.40%,92.00%,0.60%,143,152,797,19.10% +136527,916,5420,State-funded secondary,1013,518,495,51.10%,48.90%,19,1.90%,138,13.60%,12,1001,0,1.20%,98.80%,0.00%,149,164,1013,16.20% +136528,916,5200,State-funded primary,400,195,205,48.80%,51.30%,27,6.80%,93,23.30%,45,347,8,11.30%,86.80%,2.00%,174,178,374,47.60% +136529,936,4459,State-funded secondary,1151,540,611,46.90%,53.10%,41,3.60%,223,19.40%,194,949,8,16.90%,82.50%,0.70%,284,301,1151,26.20% +136530,857,5406,State-funded secondary,1069,547,522,51.20%,48.80%,34,3.20%,85,8.00%,43,1026,0,4.00%,96.00%,0.00%,147,154,1069,14.40% +136531,936,4151,State-funded secondary,1655,839,816,50.70%,49.30%,34,2.10%,148,8.90%,75,1575,5,4.50%,95.20%,0.30%,113,124,1655,7.50% +136532,884,2005,State-funded primary,205,100,105,48.80%,51.20%,1,0.50%,29,14.10%,4,201,0,2.00%,98.00%,0.00%,17,19,205,9.30% +136533,908,4165,State-funded secondary,1729,844,885,48.80%,51.20%,40,2.30%,163,9.40%,58,1671,0,3.40%,96.60%,0.00%,275,273,1522,17.90% +136534,936,5404,State-funded secondary,1711,103,1608,6.00%,94.00%,23,1.30%,246,14.40%,208,1501,2,12.20%,87.70%,0.10%,96,93,1222,7.60% +136536,926,3433,State-funded primary,135,60,75,44.40%,55.60%,4,3.00%,36,26.70%,3,132,0,2.20%,97.80%,0.00%,17,17,135,12.60% +136537,925,5407,State-funded secondary,729,347,382,47.60%,52.40%,33,4.50%,59,8.10%,108,621,0,14.80%,85.20%,0.00%,257,273,706,38.70% +136538,303,4603,State-funded secondary,1067,500,567,46.90%,53.10%,54,5.10%,140,13.10%,192,875,0,18.00%,82.00%,0.00%,285,281,884,31.80% +136539,823,2042,State-funded primary,192,97,95,50.50%,49.50%,6,3.10%,51,26.60%,5,187,0,2.60%,97.40%,0.00%,23,23,157,14.60% +136540,305,5413,State-funded secondary,1433,685,748,47.80%,52.20%,15,1.00%,159,11.10%,167,1266,0,11.70%,88.30%,0.00%,317,322,1061,30.30% +136542,941,3035,State-funded primary,178,83,95,46.60%,53.40%,1,0.60%,13,7.30%,9,169,0,5.10%,94.90%,0.00%,11,11,178,6.20% +136543,896,4623,State-funded secondary,1144,526,618,46.00%,54.00%,17,1.50%,108,9.40%,84,1060,0,7.30%,92.70%,0.00%,161,171,1008,17.00% +136544,816,4602,State-funded secondary,1176,586,590,49.80%,50.20%,35,3.00%,97,8.20%,53,1120,3,4.50%,95.20%,0.30%,137,148,1176,12.60% +136545,305,5409,State-funded secondary,1298,661,637,50.90%,49.10%,27,2.10%,199,15.30%,33,1263,2,2.50%,97.30%,0.20%,259,261,1085,24.10% +136547,381,2031,State-funded primary,700,372,328,53.10%,46.90%,22,3.10%,118,16.90%,14,686,0,2.00%,98.00%,0.00%,234,227,629,36.10% +136548,830,4196,State-funded secondary,1107,571,536,51.60%,48.40%,11,1.00%,131,11.80%,30,1074,3,2.70%,97.00%,0.30%,157,142,891,15.90% +136549,861,2001,State-funded primary,525,250,275,47.60%,52.40%,52,9.90%,54,10.30%,407,118,0,77.50%,22.50%,0.00%,79,76,459,16.60% +136551,305,5405,State-funded secondary,1265,1184,81,93.60%,6.40%,1,0.10%,119,9.40%,245,1020,0,19.40%,80.60%,0.00%,68,33,813,4.10% +136552,822,4000,State-funded secondary,889,428,461,48.10%,51.90%,7,0.80%,56,6.30%,193,696,0,21.70%,78.30%,0.00%,178,195,889,21.90% +136553,896,3128,State-funded primary,166,80,86,48.20%,51.80%,1,0.60%,11,6.60%,1,165,0,0.60%,99.40%,0.00%,6,6,166,3.60% +136554,919,5407,State-funded secondary,1449,729,720,50.30%,49.70%,29,2.00%,138,9.50%,97,1352,0,6.70%,93.30%,0.00%,45,42,1005,4.20% +136555,881,4001,State-funded secondary,1053,533,520,50.60%,49.40%,29,2.80%,194,18.40%,99,954,0,9.40%,90.60%,0.00%,163,212,879,24.10% +136556,879,4178,State-funded secondary,1152,561,591,48.70%,51.30%,22,1.90%,125,10.90%,30,1121,1,2.60%,97.30%,0.10%,228,233,1005,23.20% +136557,879,4179,State-funded secondary,1341,665,676,49.60%,50.40%,28,2.10%,170,12.70%,65,1276,0,4.80%,95.20%,0.00%,152,169,1157,14.60% +136558,879,4181,State-funded secondary,1026,458,568,44.60%,55.40%,22,2.10%,150,14.60%,164,841,21,16.00%,82.00%,2.00%,170,173,862,20.10% +136559,823,4003,State-funded secondary,1615,854,761,52.90%,47.10%,40,2.50%,114,7.10%,31,1579,5,1.90%,97.80%,0.30%,127,124,1187,10.40% +136560,823,4117,State-funded secondary,708,353,355,49.90%,50.10%,41,5.80%,98,13.80%,19,689,0,2.70%,97.30%,0.00%,120,128,708,18.10% +136561,878,2401,State-funded primary,201,106,95,52.70%,47.30%,14,7.00%,24,11.90%,8,193,0,4.00%,96.00%,0.00%,41,46,201,22.90% +136562,878,2409,State-funded primary,145,78,67,53.80%,46.20%,7,4.80%,30,20.70%,1,144,0,0.70%,99.30%,0.00%,41,42,145,29.00% +136563,878,2463,State-funded primary,80,37,43,46.30%,53.80%,2,2.50%,6,7.50%,2,77,1,2.50%,96.30%,1.30%,5,8,80,10.00% +136564,306,2048,State-funded primary,375,166,209,44.30%,55.70%,10,2.70%,46,12.30%,250,125,0,66.70%,33.30%,0.00%,137,139,353,39.40% +136565,306,2047,State-funded primary,447,223,224,49.90%,50.10%,10,2.20%,62,13.90%,279,168,0,62.40%,37.60%,0.00%,203,210,447,47.00% +136566,306,3419,State-funded primary,448,217,231,48.40%,51.60%,6,1.30%,80,17.90%,241,207,0,53.80%,46.20%,0.00%,186,190,410,46.30% +136567,908,4166,State-funded secondary,1148,553,595,48.20%,51.80%,24,2.10%,151,13.20%,38,1110,0,3.30%,96.70%,0.00%,199,222,1148,19.30% +136568,879,4180,State-funded secondary,1682,833,849,49.50%,50.50%,44,2.60%,211,12.50%,89,1584,9,5.30%,94.20%,0.50%,246,280,1476,19.00% +136569,878,4108,State-funded secondary,821,379,442,46.20%,53.80%,42,5.10%,117,14.30%,17,804,0,2.10%,97.90%,0.00%,148,181,705,25.70% +136570,886,5449,State-funded secondary,1020,517,503,50.70%,49.30%,6,0.60%,27,2.60%,52,962,6,5.10%,94.30%,0.60%,71,66,765,8.60% +136571,886,4172,State-funded secondary,773,365,408,47.20%,52.80%,10,1.30%,275,35.60%,194,569,10,25.10%,73.60%,1.30%,455,480,731,65.70% +136572,908,4162,State-funded secondary,656,330,326,50.30%,49.70%,12,1.80%,101,15.40%,13,643,0,2.00%,98.00%,0.00%,104,115,656,17.50% +136573,908,4156,State-funded secondary,1428,663,765,46.40%,53.60%,31,2.20%,170,11.90%,37,1383,8,2.60%,96.80%,0.60%,250,281,1428,19.70% +136574,839,5410,State-funded secondary,909,439,470,48.30%,51.70%,22,2.40%,112,12.30%,32,877,0,3.50%,96.50%,0.00%,99,99,685,14.50% +136575,908,4143,State-funded secondary,1208,603,605,49.90%,50.10%,40,3.30%,190,15.70%,18,1189,1,1.50%,98.40%,0.10%,280,298,1092,27.30% +136576,311,4003,State-funded secondary,636,335,301,52.70%,47.30%,23,3.60%,71,11.20%,172,462,2,27.00%,72.60%,0.30%,231,265,636,41.70% +136577,881,5403,State-funded secondary,2052,999,1053,48.70%,51.30%,20,1.00%,171,8.30%,59,1979,14,2.90%,96.40%,0.70%,212,230,1638,14.00% +136578,916,5404,State-funded secondary,1101,285,816,25.90%,74.10%,9,0.80%,62,5.60%,154,947,0,14.00%,86.00%,0.00%,47,39,765,5.10% +136579,881,5418,State-funded secondary,1607,808,799,50.30%,49.70%,27,1.70%,200,12.40%,58,1522,27,3.60%,94.70%,1.70%,221,260,1427,18.20% +136580,873,4007,State-funded secondary,1245,622,623,50.00%,50.00%,31,2.50%,42,3.40%,124,1121,0,10.00%,90.00%,0.00%,156,164,1245,13.20% +136581,886,4249,State-funded secondary,1655,876,779,52.90%,47.10%,31,1.90%,153,9.20%,262,1393,0,15.80%,84.20%,0.00%,224,233,1330,17.50% +136582,886,4058,State-funded secondary,1647,1604,43,97.40%,2.60%,0,0.00%,11,0.70%,286,1356,5,17.40%,82.30%,0.30%,89,88,1256,7.00% +136583,886,4196,State-funded secondary,1460,784,676,53.70%,46.30%,23,1.60%,133,9.10%,113,1346,1,7.70%,92.20%,0.10%,349,338,1274,26.50% +136584,886,4120,State-funded secondary,757,378,379,49.90%,50.10%,36,4.80%,168,22.20%,41,716,0,5.40%,94.60%,0.00%,191,220,757,29.10% +136585,886,5460,State-funded secondary,1236,647,589,52.30%,47.70%,9,0.70%,33,2.70%,122,1110,4,9.90%,89.80%,0.30%,191,155,876,17.70% +136586,305,5402,State-funded secondary,1745,220,1525,12.60%,87.40%,76,4.40%,287,16.40%,75,1651,19,4.30%,94.60%,1.10%,98,85,1105,7.70% +136587,937,4241,State-funded secondary,1742,878,864,50.40%,49.60%,34,2.00%,214,12.30%,206,1536,0,11.80%,88.20%,0.00%,226,205,1350,15.20% +136588,879,4152,State-funded secondary,823,804,19,97.70%,2.30%,4,0.50%,41,5.00%,88,731,4,10.70%,88.80%,0.50%,66,55,623,8.80% +136589,330,4108,State-funded secondary,932,424,508,45.50%,54.50%,20,2.10%,210,22.50%,126,802,4,13.50%,86.10%,0.40%,451,486,932,52.10% +136590,330,5414,State-funded secondary,1057,988,69,93.50%,6.50%,10,0.90%,136,12.90%,81,971,5,7.70%,91.90%,0.50%,173,210,798,26.30% +136592,330,4060,State-funded secondary,986,940,46,95.30%,4.70%,11,1.10%,52,5.30%,306,679,1,31.00%,68.90%,0.10%,229,208,767,27.10% +136593,357,5402,State-funded secondary,983,983,0,100.00%,0.00%,11,1.10%,82,8.30%,210,771,2,21.40%,78.40%,0.20%,226,280,983,28.50% +136594,887,4068,State-funded secondary,1067,112,955,10.50%,89.50%,5,0.50%,23,2.20%,154,913,0,14.40%,85.60%,0.00%,99,93,727,12.80% +136595,937,5406,State-funded secondary,889,845,44,95.10%,4.90%,0,0.00%,46,5.20%,302,587,0,34.00%,66.00%,0.00%,63,45,594,7.60% +136597,908,2313,State-funded primary,296,143,153,48.30%,51.70%,8,2.70%,25,8.40%,2,294,0,0.70%,99.30%,0.00%,27,28,296,9.50% +136598,908,2743,State-funded primary,514,219,295,42.60%,57.40%,53,10.30%,132,25.70%,12,502,0,2.30%,97.70%,0.00%,133,131,452,29.00% +136599,303,2005,State-funded primary,580,295,285,50.90%,49.10%,11,1.90%,72,12.40%,209,360,11,36.00%,62.10%,1.90%,203,206,538,38.30% +136600,311,5402,State-funded secondary,1543,738,805,47.80%,52.20%,27,1.70%,29,1.90%,110,1414,19,7.10%,91.60%,1.20%,81,64,1039,6.20% +136601,933,3240,State-funded primary,176,89,87,50.60%,49.40%,5,2.80%,8,4.50%,1,174,1,0.60%,98.90%,0.60%,14,14,145,9.70% +136602,880,2456,State-funded primary,397,196,201,49.40%,50.60%,21,5.30%,31,7.80%,23,374,0,5.80%,94.20%,0.00%,123,124,397,31.20% +136603,886,5464,State-funded secondary,1865,911,954,48.80%,51.20%,19,1.00%,113,6.10%,167,1614,84,9.00%,86.50%,4.50%,120,112,1469,7.60% +136604,381,5406,State-funded secondary,1299,671,628,51.70%,48.30%,36,2.80%,102,7.90%,35,1262,2,2.70%,97.20%,0.20%,262,254,1034,24.60% +136605,881,5427,State-funded secondary,1246,606,640,48.60%,51.40%,19,1.50%,170,13.60%,29,1216,1,2.30%,97.60%,0.10%,149,191,1071,17.80% +136606,919,5400,State-funded secondary,1511,782,729,51.80%,48.20%,10,0.70%,80,5.30%,422,1059,30,27.90%,70.10%,2.00%,83,93,1216,7.60% +136607,919,5426,State-funded secondary,1203,560,643,46.60%,53.40%,18,1.50%,93,7.70%,105,1085,13,8.70%,90.20%,1.10%,165,188,1022,18.40% +136608,919,4016,State-funded secondary,1429,696,733,48.70%,51.30%,14,1.00%,189,13.20%,74,1292,63,5.20%,90.40%,4.40%,199,202,1031,19.60% +136609,919,4197,State-funded secondary,1712,777,935,45.40%,54.60%,22,1.30%,392,22.90%,189,1504,19,11.00%,87.90%,1.10%,120,106,1211,8.80% +136610,873,5415,State-funded secondary,1407,710,697,50.50%,49.50%,50,3.60%,148,10.50%,142,1265,0,10.10%,89.90%,0.00%,207,218,1407,15.50% +136611,865,4066,State-funded secondary,1243,626,617,50.40%,49.60%,43,3.50%,201,16.20%,33,1210,0,2.70%,97.30%,0.00%,160,174,1065,16.30% +136612,878,4012,State-funded secondary,2205,1086,1119,49.30%,50.70%,97,4.40%,383,17.40%,98,2106,1,4.40%,95.50%,0.00%,384,396,1923,20.60% +136613,384,4026,State-funded secondary,988,519,469,52.50%,47.50%,29,2.90%,138,14.00%,52,929,7,5.30%,94.00%,0.70%,430,438,945,46.30% +136614,908,4163,State-funded secondary,562,253,309,45.00%,55.00%,18,3.20%,91,16.20%,24,538,0,4.30%,95.70%,0.00%,175,185,562,32.90% +136615,314,4010,State-funded secondary,1232,1232,0,100.00%,0.00%,2,0.20%,35,2.80%,499,726,7,40.50%,58.90%,0.60%,57,56,895,6.30% +136616,333,4024,State-funded secondary,1533,700,833,45.70%,54.30%,21,1.40%,140,9.10%,449,1081,3,29.30%,70.50%,0.20%,369,386,1286,30.00% +136617,816,4500,State-funded secondary,1851,928,923,50.10%,49.90%,36,1.90%,174,9.40%,176,1667,8,9.50%,90.10%,0.40%,326,307,1512,20.30% +136618,332,5404,State-funded secondary,1726,840,886,48.70%,51.30%,17,1.00%,136,7.90%,293,1433,0,17.00%,83.00%,0.00%,367,362,1426,25.40% +136619,335,2224,State-funded primary,465,225,240,48.40%,51.60%,22,4.70%,80,17.20%,15,450,0,3.20%,96.80%,0.00%,81,81,397,20.40% +136620,335,5402,State-funded secondary,1471,715,756,48.60%,51.40%,35,2.40%,171,11.60%,79,1392,0,5.40%,94.60%,0.00%,452,444,1254,35.40% +136621,319,5400,State-funded secondary,1298,0,1298,0.00%,100.00%,4,0.30%,16,1.20%,612,680,6,47.10%,52.40%,0.50%,39,52,940,5.50% +136622,937,5407,State-funded secondary,1323,534,789,40.40%,59.60%,6,0.50%,178,13.50%,94,1227,2,7.10%,92.70%,0.20%,35,22,773,2.80% +136623,916,5412,State-funded secondary,1328,622,706,46.80%,53.20%,34,2.60%,80,6.00%,138,1189,1,10.40%,89.50%,0.10%,217,235,1129,20.80% +136624,925,4019,State-funded secondary,942,606,336,64.30%,35.70%,25,2.70%,160,17.00%,162,772,8,17.20%,82.00%,0.80%,295,301,835,36.00% +136625,881,5426,State-funded secondary,1233,613,620,49.70%,50.30%,43,3.50%,111,9.00%,56,1177,0,4.50%,95.50%,0.00%,81,95,916,10.40% +136626,879,4190,State-funded secondary,1295,648,647,50.00%,50.00%,39,3.00%,197,15.20%,154,1135,6,11.90%,87.60%,0.50%,491,505,1190,42.40% +136627,891,4107,State-funded secondary,1824,858,966,47.00%,53.00%,15,0.80%,132,7.20%,120,1693,11,6.60%,92.80%,0.60%,285,295,1518,19.40% +136628,891,4328,State-funded secondary,1755,871,884,49.60%,50.40%,6,0.30%,52,3.00%,117,1603,35,6.70%,91.30%,2.00%,81,69,1342,5.10% +136629,857,5404,State-funded secondary,910,445,465,48.90%,51.10%,36,4.00%,47,5.20%,59,850,1,6.50%,93.40%,0.10%,118,131,910,14.40% +136630,865,2028,State-funded primary,676,326,350,48.20%,51.80%,11,1.60%,113,16.70%,25,651,0,3.70%,96.30%,0.00%,87,93,676,13.80% +136631,312,5410,State-funded secondary,1375,1369,6,99.60%,0.40%,23,1.70%,102,7.40%,652,723,0,47.40%,52.60%,0.00%,344,303,1158,26.20% +136632,865,5404,State-funded secondary,1640,819,821,49.90%,50.10%,41,2.50%,121,7.40%,109,1527,4,6.60%,93.10%,0.20%,229,234,1346,17.40% +136633,384,4015,State-funded secondary,1503,729,774,48.50%,51.50%,67,4.50%,168,11.20%,84,1419,0,5.60%,94.40%,0.00%,365,381,1492,25.50% +136634,831,5412,State-funded secondary,1475,718,757,48.70%,51.30%,39,2.60%,178,12.10%,48,1423,4,3.30%,96.50%,0.30%,235,291,1475,19.70% +136635,878,2626,State-funded primary,175,76,99,43.40%,56.60%,7,4.00%,10,5.70%,3,172,0,1.70%,98.30%,0.00%,32,32,175,18.30% +136636,873,4027,State-funded secondary,710,361,349,50.80%,49.20%,16,2.30%,124,17.50%,290,420,0,40.80%,59.20%,0.00%,108,110,640,17.20% +136637,872,4053,State-funded secondary,1863,887,976,47.60%,52.40%,84,4.50%,241,12.90%,625,1219,19,33.50%,65.40%,1.00%,134,118,1403,8.40% +136638,878,4009,State-funded secondary,974,479,495,49.20%,50.80%,43,4.40%,149,15.30%,24,950,0,2.50%,97.50%,0.00%,148,180,887,20.30% +136639,933,4355,State-funded secondary,945,476,469,50.40%,49.60%,21,2.20%,100,10.60%,27,914,4,2.90%,96.70%,0.40%,159,167,945,17.70% +136640,850,4015,State-funded secondary,1465,716,749,48.90%,51.10%,23,1.60%,152,10.40%,63,1402,0,4.30%,95.70%,0.00%,182,221,1465,15.10% +136641,852,3202,State-funded primary,405,197,208,48.60%,51.40%,12,3.00%,93,23.00%,211,194,0,52.10%,47.90%,0.00%,123,123,373,33.00% +136642,881,5411,State-funded secondary,1131,81,1050,7.20%,92.80%,8,0.70%,19,1.70%,98,999,34,8.70%,88.30%,3.00%,15,17,749,2.30% +136643,850,5407,State-funded secondary,1869,950,919,50.80%,49.20%,26,1.40%,84,4.50%,130,1731,8,7.00%,92.60%,0.40%,103,119,1617,7.40% +136644,305,5407,State-funded secondary,1728,855,873,49.50%,50.50%,74,4.30%,136,7.90%,63,1652,13,3.60%,95.60%,0.80%,116,100,1256,8.00% +136645,896,4149,State-funded secondary,1393,714,679,51.30%,48.70%,25,1.80%,56,4.00%,57,1336,0,4.10%,95.90%,0.00%,144,147,1111,13.20% +136646,878,4003,State-funded secondary,1279,616,663,48.20%,51.80%,38,3.00%,136,10.60%,60,1208,11,4.70%,94.40%,0.90%,211,229,1140,20.10% +136647,869,4042,State-funded secondary,1877,914,963,48.70%,51.30%,69,3.70%,203,10.80%,124,1753,0,6.60%,93.40%,0.00%,275,276,1519,18.20% +136648,880,5200,State-funded primary,406,190,216,46.80%,53.20%,9,2.20%,83,20.40%,34,372,0,8.40%,91.60%,0.00%,160,156,376,41.50% +136649,839,4177,State-funded secondary,1802,870,932,48.30%,51.70%,34,1.90%,225,12.50%,87,1714,1,4.80%,95.10%,0.10%,241,222,1316,16.90% +136650,873,4031,State-funded secondary,561,251,309,44.70%,55.10%,18,3.20%,72,12.80%,140,420,1,25.00%,74.90%,0.20%,203,220,561,39.20% +136651,821,4102,State-funded secondary,1180,0,1180,0.00%,100.00%,25,2.10%,107,9.10%,824,348,8,69.80%,29.50%,0.70%,289,335,1180,28.40% +136652,850,5402,State-funded secondary,1000,488,512,48.80%,51.20%,31,3.10%,160,16.00%,101,897,2,10.10%,89.70%,0.20%,220,236,855,27.60% +136653,873,2087,State-funded primary,680,331,349,48.70%,51.30%,18,2.60%,84,12.40%,24,655,1,3.50%,96.30%,0.10%,177,178,631,28.20% +136654,850,4127,State-funded secondary,1921,1003,918,52.20%,47.80%,39,2.00%,205,10.70%,95,1818,8,4.90%,94.60%,0.40%,275,295,1921,15.40% +136655,895,4226,State-funded secondary,1275,626,649,49.10%,50.90%,33,2.60%,44,3.50%,21,1253,1,1.60%,98.30%,0.10%,173,160,1013,15.80% +136656,304,5400,State-funded secondary,1604,757,847,47.20%,52.80%,33,2.10%,71,4.40%,741,857,6,46.20%,53.40%,0.40%,206,210,1351,15.50% +136657,850,5403,State-funded secondary,1573,764,807,48.60%,51.30%,42,2.70%,169,10.70%,29,1544,0,1.80%,98.20%,0.00%,167,177,1305,13.60% +136658,302,4212,State-funded secondary,1452,656,796,45.20%,54.80%,50,3.40%,161,11.10%,595,830,27,41.00%,57.20%,1.90%,247,222,1111,20.00% +136659,880,2468,State-funded primary,460,223,237,48.50%,51.50%,10,2.20%,54,11.70%,24,436,0,5.20%,94.80%,0.00%,87,89,423,21.00% +136660,822,2014,State-funded primary,413,189,224,45.80%,54.20%,12,2.90%,36,8.70%,324,87,2,78.50%,21.10%,0.50%,128,125,362,34.50% +136661,351,5201,State-funded primary,447,0,447,0.00%,100.00%,8,1.80%,106,23.70%,15,432,0,3.40%,96.60%,0.00%,5,5,397,1.30% +136662,887,4530,State-funded secondary,1479,93,1386,6.30%,93.70%,6,0.40%,113,7.60%,235,1225,19,15.90%,82.80%,1.30%,112,101,1055,9.60% +136663,311,5401,State-funded secondary,878,419,459,47.70%,52.30%,20,2.30%,308,35.10%,157,718,3,17.90%,81.80%,0.30%,193,210,878,23.90% +136664,815,4518,State-funded secondary,889,889,0,100.00%,0.00%,1,0.10%,55,6.20%,79,810,0,8.90%,91.10%,0.00%,59,50,629,7.90% +136665,210,2169,State-funded primary,358,156,202,43.60%,56.40%,15,4.20%,51,14.20%,26,332,0,7.30%,92.70%,0.00%,40,42,358,11.70% +136666,916,4002,State-funded secondary,988,969,19,98.10%,1.90%,4,0.40%,113,11.40%,186,800,2,18.80%,81.00%,0.20%,33,32,768,4.20% +136667,811,4056,State-funded secondary,2115,1043,1072,49.30%,50.70%,38,1.80%,133,6.30%,100,2013,2,4.70%,95.20%,0.10%,163,168,1728,9.70% +136668,879,4187,State-funded secondary,1132,555,577,49.00%,51.00%,30,2.70%,224,19.80%,147,983,2,13.00%,86.80%,0.20%,426,418,934,44.80% +136669,316,4031,State-funded secondary,2774,1397,1377,50.40%,49.60%,50,1.80%,206,7.40%,2157,590,27,77.80%,21.30%,1.00%,712,756,1977,38.20% +136670,873,2072,State-funded primary,204,95,109,46.60%,53.40%,8,3.90%,12,5.90%,10,194,0,4.90%,95.10%,0.00%,66,69,204,33.80% +136671,909,5400,State-funded secondary,1082,534,548,49.40%,50.60%,19,1.80%,140,12.90%,53,1029,0,4.90%,95.10%,0.00%,117,113,898,12.60% +136672,371,5400,State-funded secondary,1076,536,540,49.80%,50.20%,29,2.70%,106,9.90%,20,1055,1,1.90%,98.00%,0.10%,115,129,1076,12.00% +136673,878,4005,State-funded secondary,1115,532,583,47.70%,52.30%,57,5.10%,105,9.40%,26,1089,0,2.30%,97.70%,0.00%,96,107,908,11.80% +136674,382,4040,State-funded secondary,1508,771,737,51.10%,48.90%,27,1.80%,105,7.00%,231,1276,1,15.30%,84.60%,0.10%,308,239,1159,20.60% +136675,371,4608,State-funded secondary,825,399,426,48.40%,51.60%,9,1.10%,82,9.90%,44,775,6,5.30%,93.90%,0.70%,213,239,825,29.00% +136677,873,4002,State-funded secondary,1400,712,688,50.90%,49.10%,44,3.10%,138,9.90%,97,1303,0,6.90%,93.10%,0.00%,263,274,1400,19.60% +136678,315,6589,Independent school,22,5,17,22.70%,77.30%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136680,861,4712,State-funded secondary,1052,523,529,49.70%,50.30%,20,1.90%,155,14.70%,55,997,0,5.20%,94.80%,0.00%,372,415,1052,39.40% +136681,861,4714,State-funded secondary,1387,678,709,48.90%,51.10%,48,3.50%,248,17.90%,97,1290,0,7.00%,93.00%,0.00%,597,652,1387,47.00% +136684,825,1112,State-funded AP school,3,0,3,0.00%,100.00%,3,100.00%,0,0.00%,1,2,0,33.30%,66.70%,0.00%,1,1,3,33.30% +136686,341,3967,State-funded primary,485,244,241,50.30%,49.70%,12,2.50%,106,21.90%,121,364,0,24.90%,75.10%,0.00%,208,215,450,47.80% +136706,869,6201,Independent school,8,3,5,37.50%,62.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136708,802,4145,State-funded secondary,1022,519,503,50.80%,49.20%,35,3.40%,212,20.70%,163,857,2,15.90%,83.90%,0.20%,345,380,1021,37.20% +136709,305,5400,State-funded secondary,1578,1487,91,94.20%,5.80%,23,1.50%,168,10.60%,212,1366,0,13.40%,86.60%,0.00%,135,130,1150,11.30% +136711,312,5403,State-funded secondary,1472,723,749,49.10%,50.90%,19,1.30%,163,11.10%,734,725,13,49.90%,49.30%,0.90%,284,277,1201,23.10% +136712,868,2186,State-funded primary,330,152,178,46.10%,53.90%,2,0.60%,31,9.40%,41,287,2,12.40%,87.00%,0.60%,8,8,330,2.40% +136713,823,4034,State-funded secondary,992,456,536,46.00%,54.00%,41,4.10%,143,14.40%,21,971,0,2.10%,97.90%,0.00%,118,130,992,13.10% +136714,306,2019,State-funded primary,461,229,232,49.70%,50.30%,7,1.50%,47,10.20%,319,142,0,69.20%,30.80%,0.00%,103,121,418,28.90% +136715,850,4175,State-funded secondary,1466,719,747,49.00%,51.00%,25,1.70%,72,4.90%,127,1331,8,8.70%,90.80%,0.50%,70,80,1466,5.50% +136716,830,4052,State-funded secondary,1067,533,534,50.00%,50.00%,31,2.90%,186,17.40%,38,991,38,3.60%,92.90%,3.60%,283,286,967,29.60% +136717,888,4010,State-funded secondary,1115,535,580,48.00%,52.00%,16,1.40%,150,13.50%,18,1096,1,1.60%,98.30%,0.10%,160,192,1115,17.20% +136718,372,4021,State-funded secondary,1590,784,806,49.30%,50.70%,21,1.30%,197,12.40%,77,1513,0,4.80%,95.20%,0.00%,260,294,1424,20.60% +136719,850,5401,State-funded secondary,1116,497,619,44.50%,55.50%,25,2.20%,76,6.80%,27,1089,0,2.40%,97.60%,0.00%,128,105,861,12.20% +136720,303,4021,State-funded secondary,1345,637,708,47.40%,52.60%,37,2.80%,147,10.90%,130,1177,38,9.70%,87.50%,2.80%,339,395,1192,33.10% +136721,874,2288,State-funded primary,205,98,107,47.80%,52.20%,7,3.40%,22,10.70%,135,70,0,65.90%,34.10%,0.00%,91,93,205,45.40% +136722,802,4129,State-funded secondary,1687,826,861,49.00%,51.00%,19,1.10%,202,12.00%,56,1630,1,3.30%,96.60%,0.10%,133,134,1340,10.00% +136723,825,4503,State-funded secondary,1321,1321,0,100.00%,0.00%,8,0.60%,44,3.30%,193,1124,4,14.60%,85.10%,0.30%,52,46,941,4.90% +136724,892,4064,State-funded secondary,1326,603,723,45.50%,54.50%,11,0.80%,119,9.00%,450,864,12,33.90%,65.20%,0.90%,216,243,1326,18.30% +136725,916,5418,State-funded secondary,1772,875,897,49.40%,50.60%,27,1.50%,164,9.30%,211,1502,59,11.90%,84.80%,3.30%,284,301,1490,20.20% +136726,825,3322,State-funded primary,322,157,165,48.80%,51.20%,8,2.50%,22,6.80%,45,277,0,14.00%,86.00%,0.00%,21,21,322,6.50% +136727,886,5422,State-funded secondary,1096,49,1047,4.50%,95.50%,2,0.20%,33,3.00%,133,962,1,12.10%,87.80%,0.10%,51,52,785,6.60% +136728,815,4152,State-funded secondary,790,396,394,50.10%,49.90%,17,2.20%,81,10.30%,38,752,0,4.80%,95.20%,0.00%,152,155,720,21.50% +136729,881,4400,State-funded secondary,789,388,401,49.20%,50.80%,46,5.80%,146,18.50%,14,775,0,1.80%,98.20%,0.00%,124,157,789,19.90% +136730,826,4097,State-funded secondary,1863,920,943,49.40%,50.60%,33,1.80%,161,8.60%,392,1469,2,21.00%,78.90%,0.10%,273,286,1503,19.00% +136731,888,4689,State-funded secondary,1696,862,834,50.80%,49.20%,15,0.90%,182,10.70%,134,1562,0,7.90%,92.10%,0.00%,147,125,1393,9.00% +136732,909,5401,State-funded secondary,1038,494,544,47.60%,52.40%,9,0.90%,41,3.90%,85,953,0,8.20%,91.80%,0.00%,32,29,804,3.60% +136734,881,5238,State-funded primary,506,228,278,45.10%,54.90%,13,2.60%,59,11.70%,25,481,0,4.90%,95.10%,0.00%,10,18,506,3.60% +136735,341,5900,State-funded secondary,1172,550,622,46.90%,53.10%,48,4.10%,126,10.80%,68,1104,0,5.80%,94.20%,0.00%,134,143,859,16.60% +136736,815,4210,State-funded secondary,1873,921,952,49.20%,50.80%,37,2.00%,155,8.30%,74,1799,0,4.00%,96.00%,0.00%,241,231,1493,15.50% +136737,307,5200,State-funded primary,416,203,213,48.80%,51.20%,10,2.40%,44,10.60%,336,80,0,80.80%,19.20%,0.00%,84,86,381,22.60% +136740,207,6016,Independent school,23,8,15,34.80%,65.20%,8,34.80%,3,13.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136742,888,5401,State-funded secondary,1261,72,1189,5.70%,94.30%,13,1.00%,151,12.00%,110,1151,0,8.70%,91.30%,0.00%,56,47,858,5.50% +136743,352,1105,State-funded AP school,143,35,108,24.50%,75.50%,9,6.30%,134,93.70%,27,112,4,18.90%,78.30%,2.80%,119,125,143,87.40% +136745,840,4000,State-funded secondary,1007,516,491,51.20%,48.80%,19,1.90%,179,17.80%,25,978,4,2.50%,97.10%,0.40%,496,523,1007,51.90% +136746,301,6003,Independent school,83,83,0,100.00%,0.00%,1,1.20%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136747,207,6000,Independent school,77,33,44,42.90%,57.10%,1,1.30%,1,1.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136748,840,6012,Independent school,6,6,0,100.00%,0.00%,3,50.00%,3,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136750,205,4000,State-funded secondary,911,470,441,51.60%,48.40%,20,2.20%,26,2.90%,340,571,0,37.30%,62.70%,0.00%,168,172,647,26.60% +136752,340,6001,Independent school,12,5,7,41.70%,58.30%,7,58.30%,2,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136753,921,4001,State-funded secondary,1457,736,721,50.50%,49.50%,65,4.50%,293,20.10%,64,1393,0,4.40%,95.60%,0.00%,384,395,1340,29.50% +136754,855,1102,State-funded AP school,3,0,3,0.00%,100.00%,1,33.30%,2,66.70%,0,3,0,0.00%,100.00%,0.00%,3,3,3,100.00% +136755,936,2001,State-funded primary,180,90,90,50.00%,50.00%,4,2.20%,10,5.60%,37,142,1,20.60%,78.90%,0.60%,11,11,180,6.10% +136756,319,4019,State-funded secondary,1239,568,671,45.80%,54.20%,17,1.40%,98,7.90%,381,857,1,30.80%,69.20%,0.10%,268,292,1036,28.20% +136757,935,4001,State-funded secondary,586,281,305,48.00%,52.00%,18,3.10%,60,10.20%,5,581,0,0.90%,99.10%,0.00%,84,96,586,16.40% +136758,881,5405,State-funded secondary,1439,700,739,48.60%,51.40%,38,2.60%,146,10.10%,196,1227,16,13.60%,85.30%,1.10%,158,239,1228,19.50% +136759,884,2094,State-funded primary,26,12,14,46.20%,53.80%,2,7.70%,3,11.50%,4,22,0,15.40%,84.60%,0.00%,2,2,26,7.70% +136760,908,2449,State-funded primary,418,207,211,49.50%,50.50%,10,2.40%,41,9.80%,18,400,0,4.30%,95.70%,0.00%,48,50,418,12.00% +136761,884,2061,State-funded primary,587,283,304,48.20%,51.80%,5,0.90%,80,13.60%,123,464,0,21.00%,79.00%,0.00%,94,89,533,16.70% +136762,860,2141,State-funded primary,266,132,134,49.60%,50.40%,1,0.40%,30,11.30%,33,233,0,12.40%,87.60%,0.00%,39,40,266,15.00% +136763,839,5406,State-funded secondary,1513,740,773,48.90%,51.10%,24,1.60%,135,8.90%,44,1469,0,2.90%,97.10%,0.00%,184,185,1273,14.50% +136764,916,5417,State-funded secondary,476,234,242,49.20%,50.80%,23,4.80%,97,20.40%,9,460,7,1.90%,96.60%,1.50%,85,89,476,18.70% +136765,884,2154,State-funded primary,192,94,98,49.00%,51.00%,5,2.60%,25,13.00%,1,191,0,0.50%,99.50%,0.00%,15,15,169,8.90% +136766,823,4077,State-funded secondary,573,299,274,52.20%,47.80%,14,2.40%,38,6.60%,38,535,0,6.60%,93.40%,0.00%,62,69,573,12.00% +136767,916,5400,State-funded secondary,878,869,9,99.00%,1.00%,2,0.20%,36,4.10%,88,788,2,10.00%,89.70%,0.20%,52,58,729,8.00% +136768,312,5404,State-funded secondary,1360,582,778,42.80%,57.20%,26,1.90%,72,5.30%,603,707,50,44.30%,52.00%,3.70%,385,413,1145,36.10% +136770,840,4178,State-funded secondary,973,489,482,50.30%,49.50%,15,1.50%,249,25.60%,20,953,0,2.10%,97.90%,0.00%,403,373,811,46.00% +136771,825,4009,State-funded secondary,1223,0,1223,0.00%,100.00%,8,0.70%,5,0.40%,247,972,4,20.20%,79.50%,0.30%,40,41,907,4.50% +136772,916,4024,State-funded secondary,1663,806,857,48.50%,51.50%,36,2.20%,246,14.80%,187,1475,1,11.20%,88.70%,0.10%,260,264,1377,19.20% +136773,335,5404,State-funded secondary,1312,134,1178,10.20%,89.80%,3,0.20%,41,3.10%,447,865,0,34.10%,65.90%,0.00%,187,198,836,23.70% +136774,933,4290,State-funded secondary,582,260,322,44.70%,55.30%,14,2.40%,43,7.40%,32,542,8,5.50%,93.10%,1.40%,132,148,582,25.40% +136775,873,5408,State-funded secondary,1171,575,596,49.10%,50.90%,28,2.40%,158,13.50%,123,1035,13,10.50%,88.40%,1.10%,146,157,1171,13.40% +136776,881,5408,State-funded secondary,2147,1093,1054,50.90%,49.10%,61,2.80%,315,14.70%,92,2054,1,4.30%,95.70%,0.00%,129,166,1502,11.10% +136777,335,5403,State-funded secondary,908,902,6,99.30%,0.70%,1,0.10%,46,5.10%,280,598,30,30.80%,65.90%,3.30%,140,167,718,23.30% +136778,330,4300,State-funded secondary,1220,1220,0,100.00%,0.00%,1,0.10%,57,4.70%,331,887,2,27.10%,72.70%,0.20%,110,95,898,10.60% +136779,876,4103,State-funded secondary,1198,603,595,50.30%,49.70%,20,1.70%,188,15.70%,20,1178,0,1.70%,98.30%,0.00%,357,376,1198,31.40% +136780,344,5900,State-funded secondary,995,0,995,0.00%,100.00%,5,0.50%,30,3.00%,85,910,0,8.50%,91.50%,0.00%,90,102,791,12.90% +136781,825,4505,State-funded secondary,1165,570,595,48.90%,51.10%,2,0.20%,133,11.40%,98,1061,6,8.40%,91.10%,0.50%,25,23,740,3.10% +136782,935,4040,State-funded secondary,1092,557,535,51.00%,49.00%,17,1.60%,104,9.50%,42,1047,3,3.80%,95.90%,0.30%,137,140,848,16.50% +136783,933,4583,State-funded secondary,1033,519,514,50.20%,49.80%,6,0.60%,71,6.90%,48,984,1,4.60%,95.30%,0.10%,105,105,777,13.50% +136784,909,5209,State-funded primary,203,107,96,52.70%,47.30%,6,3.00%,26,12.80%,5,198,0,2.50%,97.50%,0.00%,6,6,186,3.20% +136785,319,5403,State-funded secondary,2135,1023,1112,47.90%,52.10%,46,2.20%,175,8.20%,437,1696,2,20.50%,79.40%,0.10%,265,251,1642,15.30% +136786,937,5408,State-funded secondary,849,406,443,47.80%,52.20%,19,2.20%,84,9.90%,19,830,0,2.20%,97.80%,0.00%,119,134,849,15.80% +136787,319,5404,State-funded secondary,1031,46,985,4.50%,95.50%,9,0.90%,46,4.50%,365,666,0,35.40%,64.60%,0.00%,24,18,674,2.70% +136788,381,5400,State-funded secondary,1245,590,655,47.40%,52.60%,5,0.40%,78,6.30%,92,1152,1,7.40%,92.50%,0.10%,63,54,900,6.00% +136789,319,5405,State-funded secondary,1530,1530,0,100.00%,0.00%,2,0.10%,53,3.50%,610,919,1,39.90%,60.10%,0.10%,129,108,1042,10.40% +136790,925,2057,State-funded primary,524,256,268,48.90%,51.10%,8,1.50%,35,6.70%,10,514,0,1.90%,98.10%,0.00%,111,114,472,24.20% +136791,933,4291,State-funded secondary,775,372,403,48.00%,52.00%,9,1.20%,85,11.00%,22,753,0,2.80%,97.20%,0.00%,150,141,625,22.60% +136792,826,2082,State-funded primary,233,107,126,45.90%,54.10%,2,0.90%,17,7.30%,11,215,7,4.70%,92.30%,3.00%,36,36,233,15.50% +136793,925,5221,State-funded primary,585,276,309,47.20%,52.80%,20,3.40%,85,14.50%,219,366,0,37.40%,62.60%,0.00%,100,107,585,18.30% +136794,886,2249,State-funded primary,580,287,293,49.50%,50.50%,14,2.40%,91,15.70%,69,510,1,11.90%,87.90%,0.20%,135,140,533,26.30% +136795,319,5401,State-funded secondary,1521,1521,0,100.00%,0.00%,1,0.10%,53,3.50%,656,863,2,43.10%,56.70%,0.10%,82,67,1074,6.20% +136796,319,2045,State-funded primary,683,321,362,47.00%,53.00%,16,2.30%,87,12.70%,340,343,0,49.80%,50.20%,0.00%,101,103,631,16.30% +136797,319,4002,State-funded secondary,1406,1405,1,99.90%,0.10%,16,1.10%,136,9.70%,337,1068,1,24.00%,76.00%,0.10%,300,341,1229,27.70% +136798,319,5407,State-funded secondary,1102,35,1067,3.20%,96.80%,1,0.10%,21,1.90%,322,674,106,29.20%,61.20%,9.60%,60,63,751,8.40% +136799,319,4000,State-funded secondary,1479,50,1429,3.40%,96.60%,22,1.50%,134,9.10%,346,1121,12,23.40%,75.80%,0.80%,352,345,1234,28.00% +136800,319,4007,State-funded secondary,1881,841,1040,44.70%,55.30%,51,2.70%,146,7.80%,595,1211,75,31.60%,64.40%,4.00%,447,448,1536,29.20% +136801,888,4001,State-funded secondary,578,578,0,100.00%,0.00%,5,0.90%,26,4.50%,515,61,2,89.10%,10.60%,0.30%,109,117,578,20.20% +136802,873,2000,State-funded primary,287,151,136,52.60%,47.40%,9,3.10%,66,23.00%,91,196,0,31.70%,68.30%,0.00%,129,134,266,50.40% +136803,884,4058,State-funded secondary,893,428,465,47.90%,52.10%,13,1.50%,147,16.50%,61,820,12,6.80%,91.80%,1.30%,151,159,773,20.60% +136804,800,3447,State-funded primary,193,99,94,51.30%,48.70%,8,4.10%,33,17.10%,7,186,0,3.60%,96.40%,0.00%,54,51,166,30.70% +136806,896,5205,State-funded primary,415,188,227,45.30%,54.70%,11,2.70%,29,7.00%,192,223,0,46.30%,53.70%,0.00%,68,73,378,19.30% +136807,202,2000,State-funded primary,98,58,40,59.20%,40.80%,1,1.00%,11,11.20%,25,73,0,25.50%,74.50%,0.00%,24,27,98,27.60% +136808,309,2011,State-funded primary,203,99,104,48.80%,51.20%,5,2.50%,23,11.30%,25,178,0,12.30%,87.70%,0.00%,2,2,203,1.00% +136809,313,2004,State-funded primary,676,319,357,47.20%,52.80%,16,2.40%,72,10.70%,540,136,0,79.90%,20.10%,0.00%,115,119,606,19.60% +136810,341,2007,State-funded primary,416,204,212,49.00%,51.00%,6,1.40%,55,13.20%,16,396,4,3.80%,95.20%,1.00%,42,44,416,10.60% +136813,341,2009,State-funded primary,674,338,336,50.10%,49.90%,10,1.50%,35,5.20%,38,633,3,5.60%,93.90%,0.40%,101,104,633,16.40% +136814,873,2001,State-funded primary,516,282,234,54.70%,45.30%,18,3.50%,22,4.30%,70,446,0,13.60%,86.40%,0.00%,100,102,516,19.80% +136817,204,6000,Independent school,89,89,0,100.00%,0.00%,4,4.50%,16,18.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136821,926,2020,State-funded primary,187,95,92,50.80%,49.20%,9,4.80%,23,12.30%,75,112,0,40.10%,59.90%,0.00%,33,35,187,18.70% +136822,801,4001,State-funded secondary,1217,609,608,50.00%,50.00%,20,1.60%,174,14.30%,102,1111,4,8.40%,91.30%,0.30%,175,163,1007,16.20% +136824,861,4000,State-funded secondary,1103,570,533,51.70%,48.30%,26,2.40%,200,18.10%,457,646,0,41.40%,58.60%,0.00%,429,474,1103,43.00% +136825,353,2003,State-funded primary,213,111,102,52.10%,47.90%,1,0.50%,36,16.90%,44,169,0,20.70%,79.30%,0.00%,117,125,197,63.50% +136826,383,4000,State-funded secondary,1033,504,526,48.80%,50.90%,10,1.00%,198,19.20%,243,790,0,23.50%,76.50%,0.00%,567,612,1033,59.20% +136827,935,4092,State-funded secondary,1887,876,1011,46.40%,53.60%,56,3.00%,144,7.60%,259,1594,34,13.70%,84.50%,1.80%,280,304,1580,19.20% +136828,936,5401,State-funded secondary,1686,838,848,49.70%,50.30%,38,2.30%,240,14.20%,139,1547,0,8.20%,91.80%,0.00%,194,235,1532,15.30% +136829,823,4040,State-funded secondary,686,336,350,49.00%,51.00%,21,3.10%,91,13.30%,19,665,2,2.80%,96.90%,0.30%,78,79,686,11.50% +136830,801,2112,State-funded primary,365,186,179,51.00%,49.00%,5,1.40%,39,10.70%,34,331,0,9.30%,90.70%,0.00%,15,16,365,4.40% +136831,908,2222,State-funded primary,371,189,182,50.90%,49.10%,6,1.60%,51,13.70%,9,362,0,2.40%,97.60%,0.00%,107,111,371,29.90% +136832,936,4464,State-funded secondary,729,348,381,47.70%,52.30%,17,2.30%,64,8.80%,179,549,1,24.60%,75.30%,0.10%,211,239,729,32.80% +136833,936,4036,State-funded secondary,1521,736,785,48.40%,51.60%,24,1.60%,100,6.60%,61,1460,0,4.00%,96.00%,0.00%,94,93,1189,7.80% +136834,935,4076,State-funded secondary,1923,961,962,50.00%,50.00%,46,2.40%,212,11.00%,38,1876,9,2.00%,97.60%,0.50%,257,270,1521,17.80% +136836,841,2663,State-funded primary,391,202,189,51.70%,48.30%,4,1.00%,65,16.60%,66,325,0,16.90%,83.10%,0.00%,152,153,391,39.10% +136838,841,4288,State-funded secondary,1259,621,638,49.30%,50.70%,19,1.50%,186,14.80%,50,1208,1,4.00%,95.90%,0.10%,239,265,1259,21.00% +136839,933,4250,State-funded secondary,567,274,293,48.30%,51.70%,21,3.70%,82,14.50%,11,556,0,1.90%,98.10%,0.00%,94,102,567,18.00% +136841,933,2250,State-funded primary,182,98,84,53.80%,46.20%,2,1.10%,9,4.90%,2,132,48,1.10%,72.50%,26.40%,12,12,148,8.10% +136842,826,4000,State-funded secondary,2990,1561,1429,52.20%,47.80%,32,1.10%,199,6.70%,665,2309,16,22.20%,77.20%,0.50%,606,564,2373,23.80% +136844,826,4704,State-funded secondary,1587,787,800,49.60%,50.40%,33,2.10%,169,10.60%,294,1293,0,18.50%,81.50%,0.00%,215,199,1234,16.10% +136845,825,4065,State-funded secondary,1362,711,651,52.20%,47.80%,12,0.90%,38,2.80%,204,1149,9,15.00%,84.40%,0.70%,84,62,926,6.70% +136846,825,4058,State-funded secondary,1305,1305,0,100.00%,0.00%,2,0.20%,60,4.60%,309,983,13,23.70%,75.30%,1.00%,64,53,909,5.80% +136847,886,5439,State-funded secondary,1356,625,731,46.10%,53.90%,21,1.50%,216,15.90%,55,1262,39,4.10%,93.10%,2.90%,245,256,1152,22.20% +136848,933,2113,State-funded primary,533,266,267,49.90%,50.10%,60,11.30%,35,6.60%,23,495,15,4.30%,92.90%,2.80%,81,83,464,17.90% +136849,865,5403,State-funded secondary,364,151,213,41.50%,58.50%,30,8.20%,60,16.50%,3,361,0,0.80%,99.20%,0.00%,80,85,364,23.40% +136850,839,5409,State-funded secondary,1199,0,1199,0.00%,100.00%,6,0.50%,143,11.90%,162,1034,3,13.50%,86.20%,0.30%,43,42,891,4.70% +136851,933,4100,State-funded secondary,1047,521,526,49.80%,50.20%,47,4.50%,180,17.20%,185,861,1,17.70%,82.20%,0.10%,193,207,1047,19.80% +136852,908,4149,State-funded secondary,1147,569,578,49.60%,50.40%,59,5.10%,190,16.60%,21,1124,2,1.80%,98.00%,0.20%,207,224,1147,19.50% +136853,826,3388,State-funded primary,719,357,362,49.70%,50.30%,11,1.50%,56,7.80%,181,538,0,25.20%,74.80%,0.00%,97,99,672,14.70% +136854,883,5439,State-funded secondary,1318,675,643,51.20%,48.80%,18,1.40%,178,13.50%,59,1258,1,4.50%,95.40%,0.10%,245,248,1114,22.30% +136855,881,2200,State-funded primary,317,151,166,47.60%,52.40%,2,0.60%,21,6.60%,86,231,0,27.10%,72.90%,0.00%,46,47,317,14.80% +136856,802,4135,State-funded secondary,2157,1018,1139,47.20%,52.80%,24,1.10%,208,9.60%,95,2062,0,4.40%,95.60%,0.00%,140,158,1789,8.80% +136857,919,2003,State-funded primary,414,184,230,44.40%,55.60%,4,1.00%,32,7.70%,28,385,1,6.80%,93.00%,0.20%,30,32,395,8.10% +136858,825,4001,State-funded secondary,1059,555,504,52.40%,47.60%,41,3.90%,106,10.00%,353,697,9,33.30%,65.80%,0.80%,321,313,899,34.80% +136859,887,2588,State-funded primary,415,218,197,52.50%,47.50%,4,1.00%,24,5.80%,10,405,0,2.40%,97.60%,0.00%,21,21,415,5.10% +136860,866,4074,State-funded secondary,695,329,366,47.30%,52.70%,11,1.60%,137,19.70%,36,657,2,5.20%,94.50%,0.30%,90,108,695,15.50% +136861,881,5468,State-funded secondary,1693,796,897,47.00%,53.00%,23,1.40%,149,8.80%,72,1620,1,4.30%,95.70%,0.10%,194,217,1375,15.80% +136862,908,2431,State-funded primary,365,178,187,48.80%,51.20%,10,2.70%,37,10.10%,9,356,0,2.50%,97.50%,0.00%,92,94,365,25.80% +136863,881,4480,State-funded secondary,1623,778,845,47.90%,52.10%,45,2.80%,73,4.50%,137,1485,1,8.40%,91.50%,0.10%,163,186,1342,13.90% +136864,887,5420,State-funded secondary,1567,728,839,46.50%,53.50%,2,0.10%,55,3.50%,169,1398,0,10.80%,89.20%,0.00%,112,101,1199,8.40% +136865,938,2134,State-funded primary,421,213,208,50.60%,49.40%,4,1.00%,56,13.30%,10,411,0,2.40%,97.60%,0.00%,34,37,421,8.80% +136866,938,2136,State-funded primary,301,139,162,46.20%,53.80%,5,1.70%,31,10.30%,9,292,0,3.00%,97.00%,0.00%,14,15,301,5.00% +136867,878,4060,State-funded secondary,1135,544,591,47.90%,52.10%,57,5.00%,194,17.10%,52,1081,2,4.60%,95.20%,0.20%,265,342,1135,30.10% +136868,881,5421,State-funded secondary,1516,745,771,49.10%,50.90%,46,3.00%,209,13.80%,94,1422,0,6.20%,93.80%,0.00%,363,370,1259,29.40% +136869,908,2454,State-funded primary,472,215,257,45.60%,54.40%,3,0.60%,67,14.20%,21,443,8,4.40%,93.90%,1.70%,92,98,472,20.80% +136871,925,5412,State-funded secondary,710,406,304,57.20%,42.80%,9,1.30%,112,15.80%,59,645,6,8.30%,90.80%,0.80%,173,171,582,29.40% +136873,908,4172,State-funded secondary,1066,519,547,48.70%,51.30%,14,1.30%,176,16.50%,18,1047,1,1.70%,98.20%,0.10%,201,218,1066,20.50% +136874,916,5402,State-funded secondary,1067,1039,28,97.40%,2.60%,1,0.10%,71,6.70%,45,924,98,4.20%,86.60%,9.20%,38,39,791,4.90% +136875,881,5433,State-funded secondary,1867,919,948,49.20%,50.80%,19,1.00%,135,7.20%,69,1797,1,3.70%,96.30%,0.10%,173,184,1475,12.50% +136876,870,5410,State-funded secondary,1037,478,559,46.10%,53.90%,25,2.40%,163,15.70%,373,655,9,36.00%,63.20%,0.90%,340,349,921,37.90% +136877,919,5410,State-funded secondary,1690,807,883,47.80%,52.20%,18,1.10%,171,10.10%,322,1358,10,19.10%,80.40%,0.60%,152,152,1342,11.30% +136878,891,4404,State-funded secondary,1898,958,940,50.50%,49.50%,6,0.30%,128,6.70%,181,1708,9,9.50%,90.00%,0.50%,201,199,1495,13.30% +136879,908,2017,State-funded primary,241,113,128,46.90%,53.10%,5,2.10%,39,16.20%,1,239,1,0.40%,99.20%,0.40%,35,36,241,14.90% +136880,872,4047,State-funded secondary,1408,1397,11,99.20%,0.80%,8,0.60%,78,5.50%,454,935,19,32.20%,66.40%,1.30%,80,83,1185,7.00% +136881,908,2223,State-funded primary,294,132,162,44.90%,55.10%,9,3.10%,26,8.80%,12,282,0,4.10%,95.90%,0.00%,50,50,242,20.70% +136882,330,4220,State-funded secondary,978,493,485,50.40%,49.60%,7,0.70%,137,14.00%,755,218,5,77.20%,22.30%,0.50%,502,468,756,61.90% +136883,212,4328,State-funded secondary,1279,599,680,46.80%,53.20%,52,4.10%,166,13.00%,251,1015,13,19.60%,79.40%,1.00%,254,253,977,25.90% +136884,825,4500,State-funded secondary,1332,0,1332,0.00%,100.00%,5,0.40%,26,2.00%,310,1013,9,23.30%,76.10%,0.70%,44,43,930,4.60% +136885,335,5406,State-funded secondary,1582,767,815,48.50%,51.50%,17,1.10%,195,12.30%,131,1451,0,8.30%,91.70%,0.00%,241,264,1349,19.60% +136886,860,5404,State-funded secondary,1141,550,591,48.20%,51.80%,30,2.60%,111,9.70%,22,1119,0,1.90%,98.10%,0.00%,127,145,952,15.20% +136887,873,4029,State-funded secondary,1041,531,510,51.00%,49.00%,26,2.50%,167,16.00%,211,829,1,20.30%,79.60%,0.10%,150,161,1014,15.90% +136888,936,2479,State-funded primary,845,403,442,47.70%,52.30%,13,1.50%,90,10.70%,41,804,0,4.90%,95.10%,0.00%,14,16,845,1.90% +136889,350,3368,State-funded primary,647,321,326,49.60%,50.40%,13,2.00%,57,8.80%,148,499,0,22.90%,77.10%,0.00%,166,170,610,27.90% +136890,885,4432,State-funded secondary,1496,795,701,53.10%,46.90%,14,0.90%,220,14.70%,138,1358,0,9.20%,90.80%,0.00%,290,298,1302,22.90% +136891,872,4505,State-funded secondary,1829,873,956,47.70%,52.30%,33,1.80%,213,11.60%,156,1604,69,8.50%,87.70%,3.80%,93,77,1321,5.80% +136892,880,3751,State-funded primary,466,219,247,47.00%,53.00%,14,3.00%,84,18.00%,17,449,0,3.60%,96.40%,0.00%,140,126,383,32.90% +136893,888,4686,State-funded secondary,1137,612,525,53.80%,46.20%,12,1.10%,108,9.50%,8,1127,2,0.70%,99.10%,0.20%,33,43,1137,3.80% +136894,933,4455,State-funded secondary,959,482,477,50.30%,49.70%,40,4.20%,85,8.90%,153,806,0,16.00%,84.00%,0.00%,161,170,959,17.70% +136895,344,4067,State-funded secondary,934,324,610,34.70%,65.30%,61,6.50%,222,23.80%,30,902,2,3.20%,96.60%,0.20%,493,480,841,57.10% +136896,815,4217,State-funded secondary,1072,500,572,46.60%,53.40%,17,1.60%,92,8.60%,96,972,4,9.00%,90.70%,0.40%,189,186,892,20.90% +136897,885,4435,State-funded secondary,884,439,445,49.70%,50.30%,12,1.40%,103,11.70%,9,875,0,1.00%,99.00%,0.00%,132,140,884,15.80% +136898,885,4010,State-funded secondary,1147,582,565,50.70%,49.30%,17,1.50%,155,13.50%,38,1108,1,3.30%,96.60%,0.10%,85,88,947,9.30% +136899,919,5404,State-funded secondary,1430,668,762,46.70%,53.30%,36,2.50%,116,8.10%,288,1140,2,20.10%,79.70%,0.10%,75,80,1057,7.60% +136900,889,5406,State-funded secondary,1500,777,723,51.80%,48.20%,21,1.40%,102,6.80%,285,1210,5,19.00%,80.70%,0.30%,258,278,1278,21.80% +136901,919,5421,State-funded secondary,1586,785,801,49.50%,50.50%,21,1.30%,204,12.90%,166,1420,0,10.50%,89.50%,0.00%,69,61,1198,5.10% +136902,909,5414,State-funded secondary,1255,615,640,49.00%,51.00%,24,1.90%,94,7.50%,30,1220,5,2.40%,97.20%,0.40%,88,94,994,9.50% +136903,850,5418,State-funded secondary,1400,723,677,51.60%,48.40%,35,2.50%,145,10.40%,63,1331,6,4.50%,95.10%,0.40%,146,166,1400,11.90% +136904,881,4390,State-funded secondary,1535,686,849,44.70%,55.30%,42,2.70%,109,7.10%,37,1498,0,2.40%,97.60%,0.00%,213,227,1259,18.00% +136905,380,4502,State-funded secondary,2083,1052,1031,50.50%,49.50%,46,2.20%,255,12.20%,84,1997,2,4.00%,95.90%,0.10%,94,97,1569,6.20% +136906,936,4456,State-funded secondary,1932,883,1049,45.70%,54.30%,43,2.20%,280,14.50%,264,1668,0,13.70%,86.30%,0.00%,124,139,1507,9.20% +136907,937,5403,State-funded secondary,1777,878,899,49.40%,50.60%,43,2.40%,247,13.90%,234,1539,4,13.20%,86.60%,0.20%,222,218,1384,15.80% +136908,330,5410,State-funded secondary,1570,815,755,51.90%,48.10%,25,1.60%,188,12.00%,99,1470,1,6.30%,93.60%,0.10%,259,283,1302,21.70% +136909,334,4030,State-funded secondary,1245,651,594,52.30%,47.70%,17,1.40%,239,19.20%,43,1196,6,3.50%,96.10%,0.50%,169,185,1063,17.40% +136910,314,5400,State-funded secondary,1419,141,1278,9.90%,90.10%,9,0.60%,54,3.80%,400,1019,0,28.20%,71.80%,0.00%,52,35,911,3.80% +136911,865,4067,State-funded secondary,1725,829,896,48.10%,51.90%,41,2.40%,261,15.10%,192,1532,1,11.10%,88.80%,0.10%,191,215,1441,14.90% +136912,878,4004,State-funded secondary,731,374,357,51.20%,48.80%,22,3.00%,109,14.90%,20,702,9,2.70%,96.00%,1.20%,131,155,682,22.70% +136913,933,4283,State-funded secondary,1050,552,498,52.60%,47.40%,10,1.00%,137,13.00%,39,1009,2,3.70%,96.10%,0.20%,163,179,1050,17.00% +136914,319,4011,State-funded secondary,1718,892,826,51.90%,48.10%,61,3.60%,150,8.70%,392,1308,18,22.80%,76.10%,1.00%,245,242,1386,17.50% +136915,305,2056,State-funded primary,836,418,418,50.00%,50.00%,14,1.70%,52,6.20%,167,669,0,20.00%,80.00%,0.00%,23,24,836,2.90% +136916,933,4358,State-funded secondary,1199,610,589,50.90%,49.10%,27,2.30%,91,7.60%,135,1064,0,11.30%,88.70%,0.00%,134,148,1199,12.30% +136917,933,4309,State-funded secondary,1083,588,495,54.30%,45.70%,22,2.00%,100,9.20%,92,989,2,8.50%,91.30%,0.20%,174,188,1083,17.40% +136918,935,4017,State-funded secondary,763,345,418,45.20%,54.80%,18,2.40%,88,11.50%,29,734,0,3.80%,96.20%,0.00%,138,161,763,21.10% +136919,878,3110,State-funded primary,81,42,39,51.90%,48.10%,2,2.50%,12,14.80%,2,79,0,2.50%,97.50%,0.00%,9,9,66,13.60% +136920,305,5205,State-funded primary,642,317,325,49.40%,50.60%,17,2.60%,74,11.50%,38,604,0,5.90%,94.10%,0.00%,35,35,642,5.50% +136921,811,4058,State-funded secondary,987,519,468,52.60%,47.40%,24,2.40%,155,15.70%,39,948,0,4.00%,96.00%,0.00%,238,248,876,28.30% +136922,919,4802,State-funded secondary,1071,488,583,45.60%,54.40%,34,3.20%,81,7.60%,28,1042,1,2.60%,97.30%,0.10%,42,48,816,5.90% +136923,886,4000,State-funded secondary,765,365,400,47.70%,52.30%,25,3.30%,139,18.20%,83,668,14,10.80%,87.30%,1.80%,229,255,765,33.30% +136924,885,4017,State-funded secondary,1006,481,525,47.80%,52.20%,12,1.20%,75,7.50%,21,985,0,2.10%,97.90%,0.00%,128,166,906,18.30% +136925,885,4030,State-funded secondary,1188,588,600,49.50%,50.50%,38,3.20%,153,12.90%,30,1156,2,2.50%,97.30%,0.20%,178,185,1005,18.40% +136926,933,2329,State-funded primary,449,221,228,49.20%,50.80%,5,1.10%,44,9.80%,53,396,0,11.80%,88.20%,0.00%,95,95,416,22.80% +136927,885,4005,State-funded secondary,1260,620,640,49.20%,50.80%,15,1.20%,152,12.10%,62,1198,0,4.90%,95.10%,0.00%,279,278,1077,25.80% +136930,856,2001,State-funded primary,429,215,214,50.10%,49.90%,4,0.90%,31,7.20%,153,276,0,35.70%,64.30%,0.00%,23,23,429,5.40% +136931,873,1000,State-funded nursery,62,41,21,66.10%,33.90%,1,1.60%,9,14.50%,20,41,1,32.30%,66.10%,1.60%,0,0,0,0.00% +136932,303,2020,State-funded primary,287,137,150,47.70%,52.30%,12,4.20%,60,20.90%,130,157,0,45.30%,54.70%,0.00%,184,192,287,66.90% +136934,317,2000,State-funded primary,340,175,165,51.50%,48.50%,10,2.90%,21,6.20%,289,47,4,85.00%,13.80%,1.20%,53,59,340,17.40% +136936,373,6002,Independent school,50,10,40,20.00%,80.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136938,302,2001,State-funded primary,159,80,79,50.30%,49.70%,1,0.60%,12,7.50%,25,134,0,15.70%,84.30%,0.00%,5,5,159,3.10% +136941,370,2000,State-funded primary,565,292,273,51.70%,48.30%,17,3.00%,55,9.70%,7,558,0,1.20%,98.80%,0.00%,64,64,518,12.40% +136943,805,2000,State-funded primary,106,55,51,51.90%,48.10%,0,0.00%,35,33.00%,16,90,0,15.10%,84.90%,0.00%,62,61,89,68.50% +136944,330,4000,State-funded secondary,984,724,260,73.60%,26.40%,9,0.90%,119,12.10%,13,971,0,1.30%,98.70%,0.00%,87,50,344,14.50% +136947,846,6018,Independent school,162,86,76,53.10%,46.90%,2,1.20%,14,8.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136948,941,4000,State-funded secondary,1429,641,788,44.90%,55.10%,16,1.10%,129,9.00%,366,964,99,25.60%,67.50%,6.90%,429,459,1311,35.00% +136949,855,6019,Independent school,35,9,26,25.70%,74.30%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136951,871,2000,State-funded primary,760,407,353,53.60%,46.40%,3,0.40%,132,17.40%,366,394,0,48.20%,51.80%,0.00%,77,81,760,10.70% +136952,308,2000,State-funded primary,813,395,418,48.60%,51.40%,29,3.60%,87,10.70%,471,342,0,57.90%,42.10%,0.00%,267,277,699,39.60% +136954,830,6003,Independent school,74,21,53,28.40%,71.60%,74,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136955,871,6002,Independent school,71,71,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +136957,908,2754,State-funded primary,261,135,126,51.70%,48.30%,7,2.70%,41,15.70%,5,256,0,1.90%,98.10%,0.00%,81,75,229,32.80% +136958,925,4049,State-funded secondary,475,270,205,56.80%,43.20%,27,5.70%,62,13.10%,7,468,0,1.50%,98.50%,0.00%,115,131,475,27.60% +136959,860,4153,State-funded secondary,470,238,232,50.60%,49.40%,13,2.80%,71,15.10%,12,458,0,2.60%,97.40%,0.00%,105,113,443,25.50% +136960,916,5414,State-funded secondary,1477,778,699,52.70%,47.30%,29,2.00%,172,11.60%,57,1419,1,3.90%,96.10%,0.10%,179,181,1131,16.00% +136961,860,4612,State-funded secondary,546,269,277,49.30%,50.70%,11,2.00%,54,9.90%,13,533,0,2.40%,97.60%,0.00%,94,99,546,18.10% +136962,380,4613,State-funded secondary,796,796,0,100.00%,0.00%,5,0.60%,66,8.30%,524,246,26,65.80%,30.90%,3.30%,199,185,615,30.10% +136963,331,4037,State-funded secondary,1648,842,806,51.10%,48.90%,14,0.80%,262,15.90%,332,1314,2,20.10%,79.70%,0.10%,184,161,1283,12.50% +136964,825,5409,State-funded secondary,1434,686,748,47.80%,52.20%,63,4.40%,135,9.40%,118,1316,0,8.20%,91.80%,0.00%,195,189,1183,16.00% +136965,358,4014,State-funded secondary,927,927,0,100.00%,0.00%,14,1.50%,103,11.10%,88,837,2,9.50%,90.30%,0.20%,156,169,927,18.20% +136966,800,4107,State-funded secondary,1461,1419,42,97.10%,2.90%,29,2.00%,115,7.90%,106,1352,3,7.30%,92.50%,0.20%,151,143,1151,12.40% +136967,881,5278,State-funded primary,422,237,185,56.20%,43.80%,18,4.30%,28,6.60%,181,237,4,42.90%,56.20%,0.90%,77,79,422,18.70% +136968,925,4048,State-funded secondary,626,312,314,49.80%,50.20%,29,4.60%,90,14.40%,8,618,0,1.30%,98.70%,0.00%,270,282,626,45.00% +136969,935,4099,State-funded secondary,1875,934,941,49.80%,50.20%,40,2.10%,317,16.90%,94,1781,0,5.00%,95.00%,0.00%,208,213,1541,13.80% +136970,933,4257,State-funded secondary,608,308,300,50.70%,49.30%,30,4.90%,90,14.80%,20,588,0,3.30%,96.70%,0.00%,144,155,608,25.50% +136971,840,4047,State-funded secondary,1608,761,847,47.30%,52.70%,29,1.80%,141,8.80%,12,1594,2,0.70%,99.10%,0.10%,272,270,1198,22.50% +136972,830,4500,State-funded secondary,1342,711,631,53.00%,47.00%,17,1.30%,160,11.90%,50,1292,0,3.70%,96.30%,0.00%,179,184,1081,17.00% +136973,919,4070,State-funded secondary,1358,643,715,47.30%,52.70%,22,1.60%,32,2.40%,91,1266,1,6.70%,93.20%,0.10%,61,58,1013,5.70% +136974,873,5403,State-funded secondary,916,440,476,48.00%,52.00%,23,2.50%,46,5.00%,37,879,0,4.00%,96.00%,0.00%,136,134,785,17.10% +136975,812,2176,State-funded primary,358,167,191,46.60%,53.40%,8,2.20%,35,9.80%,11,347,0,3.10%,96.90%,0.00%,54,57,358,15.90% +136976,940,5400,State-funded secondary,1169,1157,12,99.00%,1.00%,7,0.60%,106,9.10%,131,1038,0,11.20%,88.80%,0.00%,141,152,946,16.10% +136977,881,5253,State-funded primary,354,167,187,47.20%,52.80%,4,1.10%,28,7.90%,49,305,0,13.80%,86.20%,0.00%,28,36,354,10.20% +136978,316,5400,State-funded secondary,1495,500,995,33.40%,66.60%,64,4.30%,92,6.20%,1160,331,4,77.60%,22.10%,0.30%,571,646,1495,43.20% +136979,893,4437,State-funded secondary,1459,743,716,50.90%,49.10%,18,1.20%,170,11.70%,120,1322,17,8.20%,90.60%,1.20%,248,248,1258,19.70% +136980,866,5409,State-funded secondary,1409,684,725,48.50%,51.50%,48,3.40%,201,14.30%,409,1000,0,29.00%,71.00%,0.00%,229,269,1409,19.10% +136981,866,5211,State-funded primary,388,204,184,52.60%,47.40%,6,1.50%,19,4.90%,302,86,0,77.80%,22.20%,0.00%,48,51,388,13.10% +136982,916,4600,State-funded secondary,1509,678,831,44.90%,55.10%,43,2.80%,73,4.80%,347,1160,2,23.00%,76.90%,0.10%,252,258,1193,21.60% +136983,885,2153,State-funded primary,86,40,46,46.50%,53.50%,2,2.30%,10,11.60%,0,86,0,0.00%,100.00%,0.00%,16,16,86,18.60% +136984,885,2105,State-funded primary,361,183,178,50.70%,49.30%,4,1.10%,65,18.00%,20,341,0,5.50%,94.50%,0.00%,199,201,327,61.50% +136985,916,5428,State-funded secondary,527,264,263,50.10%,49.90%,24,4.60%,85,16.10%,11,516,0,2.10%,97.90%,0.00%,89,96,527,18.20% +136986,937,4233,State-funded secondary,1235,640,595,51.80%,48.20%,17,1.40%,116,9.40%,15,1135,85,1.20%,91.90%,6.90%,229,291,1050,27.70% +136987,355,4050,State-funded secondary,1007,473,534,47.00%,53.00%,6,0.60%,202,20.10%,172,814,21,17.10%,80.80%,2.10%,332,391,1007,38.80% +136988,841,2666,State-funded primary,265,136,129,51.30%,48.70%,5,1.90%,14,5.30%,18,247,0,6.80%,93.20%,0.00%,13,13,265,4.90% +136989,841,2647,State-funded primary,352,163,189,46.30%,53.70%,8,2.30%,29,8.20%,31,321,0,8.80%,91.20%,0.00%,38,41,352,11.60% +136990,935,4000,State-funded secondary,659,333,326,50.50%,49.50%,8,1.20%,27,4.10%,27,632,0,4.10%,95.90%,0.00%,90,102,585,17.40% +136991,937,4108,State-funded secondary,690,365,325,52.90%,47.10%,22,3.20%,93,13.50%,24,666,0,3.50%,96.50%,0.00%,108,123,690,17.80% +136992,873,5411,State-funded secondary,1688,826,862,48.90%,51.10%,35,2.10%,185,11.00%,123,1561,4,7.30%,92.50%,0.20%,308,303,1418,21.40% +136994,334,4015,State-funded secondary,1594,805,789,50.50%,49.50%,70,4.40%,297,18.60%,159,1435,0,10.00%,90.00%,0.00%,257,260,1355,19.20% +136995,811,4625,State-funded secondary,861,0,861,0.00%,100.00%,41,4.80%,128,14.90%,23,838,0,2.70%,97.30%,0.00%,114,109,736,14.80% +136996,839,5405,State-funded secondary,1179,1175,4,99.70%,0.30%,6,0.50%,101,8.60%,146,1033,0,12.40%,87.60%,0.00%,57,52,886,5.90% +136997,888,4041,State-funded secondary,557,294,263,52.80%,47.20%,12,2.20%,80,14.40%,12,545,0,2.20%,97.80%,0.00%,55,60,557,10.80% +136998,935,4075,State-funded secondary,946,479,467,50.60%,49.40%,19,2.00%,123,13.00%,37,909,0,3.90%,96.10%,0.00%,174,196,842,23.30% +136999,916,5207,State-funded primary,269,107,162,39.80%,60.20%,4,1.50%,24,8.90%,6,263,0,2.20%,97.80%,0.00%,8,8,269,3.00% +137000,802,4139,State-funded secondary,1640,827,813,50.40%,49.60%,18,1.10%,113,6.90%,58,1572,10,3.50%,95.90%,0.60%,136,145,1331,10.90% +137001,384,4029,State-funded secondary,1038,500,538,48.20%,51.80%,33,3.20%,153,14.70%,27,1010,1,2.60%,97.30%,0.10%,263,286,1038,27.60% +137002,919,4141,State-funded secondary,991,473,518,47.70%,52.30%,18,1.80%,168,17.00%,20,968,3,2.00%,97.70%,0.30%,75,74,735,10.10% +137003,936,5413,State-funded secondary,1379,676,703,49.00%,51.00%,16,1.20%,236,17.10%,139,1230,10,10.10%,89.20%,0.70%,134,136,1191,11.40% +137004,813,4076,State-funded secondary,706,359,347,50.80%,49.20%,19,2.70%,147,20.80%,206,500,0,29.20%,70.80%,0.00%,216,228,706,32.30% +137005,212,5400,State-funded secondary,2181,1056,1125,48.40%,51.60%,63,2.90%,143,6.60%,343,1810,28,15.70%,83.00%,1.30%,280,239,1411,16.90% +137006,305,5412,State-funded secondary,1711,1605,106,93.80%,6.20%,26,1.50%,160,9.40%,193,1517,1,11.30%,88.70%,0.10%,134,119,1199,9.90% +137007,334,4012,State-funded secondary,1030,491,539,47.70%,52.30%,75,7.30%,143,13.90%,157,866,7,15.20%,84.10%,0.70%,222,258,1030,25.00% +137008,334,4019,State-funded secondary,1161,569,592,49.00%,51.00%,13,1.10%,167,14.40%,138,973,50,11.90%,83.80%,4.30%,243,288,1161,24.80% +137009,313,4022,State-funded secondary,977,472,505,48.30%,51.70%,10,1.00%,119,12.20%,417,559,1,42.70%,57.20%,0.10%,302,317,891,35.60% +137010,871,5208,State-funded primary,919,458,461,49.80%,50.20%,14,1.50%,95,10.30%,424,495,0,46.10%,53.90%,0.00%,259,268,838,32.00% +137011,384,4030,State-funded secondary,1589,802,787,50.50%,49.50%,52,3.30%,454,28.60%,119,1470,0,7.50%,92.50%,0.00%,419,430,1418,30.30% +137012,878,2258,State-funded primary,489,231,258,47.20%,52.80%,15,3.10%,47,9.60%,20,469,0,4.10%,95.90%,0.00%,72,72,432,16.70% +137013,881,4420,State-funded secondary,1343,716,627,53.30%,46.70%,31,2.30%,81,6.00%,79,1262,2,5.90%,94.00%,0.10%,196,205,1131,18.10% +137014,936,2309,State-funded primary,436,208,228,47.70%,52.30%,4,0.90%,24,5.50%,9,427,0,2.10%,97.90%,0.00%,24,25,436,5.70% +137016,211,2000,State-funded primary,317,160,157,50.50%,49.50%,7,2.20%,50,15.80%,118,199,0,37.20%,62.80%,0.00%,26,37,317,11.70% +137018,318,6006,Independent school,453,186,267,41.10%,58.90%,2,0.40%,51,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137019,936,4165,State-funded secondary,902,439,463,48.70%,51.30%,29,3.20%,80,8.90%,58,844,0,6.40%,93.60%,0.00%,101,120,902,13.30% +137020,357,5401,State-funded secondary,834,0,834,0.00%,100.00%,15,1.80%,121,14.50%,58,776,0,7.00%,93.00%,0.00%,165,218,834,26.10% +137021,841,3211,State-funded primary,88,50,38,56.80%,43.20%,3,3.40%,11,12.50%,3,85,0,3.40%,96.60%,0.00%,18,18,75,24.00% +137022,841,3132,State-funded primary,243,126,117,51.90%,48.10%,3,1.20%,13,5.30%,3,240,0,1.20%,98.80%,0.00%,23,26,243,10.70% +137023,878,2219,State-funded primary,182,92,90,50.50%,49.50%,3,1.60%,17,9.30%,1,181,0,0.50%,99.50%,0.00%,33,36,163,22.10% +137024,878,4054,State-funded secondary,748,392,356,52.40%,47.60%,26,3.50%,47,6.30%,12,735,1,1.60%,98.30%,0.10%,117,138,748,18.40% +137025,878,2224,State-funded primary,49,27,22,55.10%,44.90%,3,6.10%,8,16.30%,1,48,0,2.00%,98.00%,0.00%,7,6,41,14.60% +137027,881,5254,State-funded primary,325,158,167,48.60%,51.40%,3,0.90%,19,5.80%,12,313,0,3.70%,96.30%,0.00%,42,40,270,14.80% +137028,310,4024,State-funded secondary,2028,897,1131,44.20%,55.80%,51,2.50%,209,10.30%,1106,897,25,54.50%,44.20%,1.20%,236,252,1621,15.50% +137029,881,5222,State-funded primary,409,197,212,48.20%,51.80%,4,1.00%,37,9.00%,8,401,0,2.00%,98.00%,0.00%,26,35,409,8.60% +137030,881,2915,State-funded primary,243,107,136,44.00%,56.00%,3,1.20%,16,6.60%,3,239,1,1.20%,98.40%,0.40%,30,31,208,14.90% +137031,916,3358,State-funded primary,215,106,109,49.30%,50.70%,3,1.40%,14,6.50%,38,177,0,17.70%,82.30%,0.00%,19,20,215,9.30% +137032,305,2040,State-funded primary,326,139,187,42.60%,57.40%,11,3.40%,30,9.20%,57,269,0,17.50%,82.50%,0.00%,36,38,270,14.10% +137033,916,5406,State-funded secondary,1528,781,747,51.10%,48.90%,36,2.40%,141,9.20%,16,1512,0,1.00%,99.00%,0.00%,123,127,1252,10.10% +137034,330,4241,State-funded secondary,1295,623,672,48.10%,51.90%,10,0.80%,250,19.30%,949,338,8,73.30%,26.10%,0.60%,626,606,1062,57.10% +137035,305,2011,State-funded primary,496,236,260,47.60%,52.40%,18,3.60%,57,11.50%,49,447,0,9.90%,90.10%,0.00%,96,103,496,20.80% +137036,381,5404,State-funded secondary,977,493,484,50.50%,49.50%,15,1.50%,122,12.50%,26,937,14,2.70%,95.90%,1.40%,243,270,977,27.60% +137037,852,4275,State-funded secondary,1031,462,569,44.80%,55.20%,22,2.10%,119,11.50%,326,705,0,31.60%,68.40%,0.00%,283,293,1031,28.40% +137038,919,4011,State-funded secondary,1066,26,1040,2.40%,97.60%,14,1.30%,155,14.50%,200,860,6,18.80%,80.70%,0.60%,111,114,845,13.50% +137039,353,4011,State-funded secondary,1057,524,533,49.60%,50.40%,42,4.00%,172,16.30%,560,497,0,53.00%,47.00%,0.00%,407,451,1057,42.70% +137040,311,4700,State-funded secondary,1178,99,1079,8.40%,91.60%,23,2.00%,30,2.50%,234,896,48,19.90%,76.10%,4.10%,86,75,753,10.00% +137042,841,2002,State-funded primary,460,215,245,46.70%,53.30%,12,2.60%,58,12.60%,8,452,0,1.70%,98.30%,0.00%,80,81,414,19.60% +137043,330,5408,State-funded secondary,1001,0,1001,0.00%,100.00%,4,0.40%,76,7.60%,213,783,5,21.30%,78.20%,0.50%,200,162,701,23.10% +137044,330,5406,State-funded secondary,1098,1098,0,100.00%,0.00%,3,0.30%,21,1.90%,259,837,2,23.60%,76.20%,0.20%,201,176,749,23.50% +137045,330,5407,State-funded secondary,982,0,982,0.00%,100.00%,8,0.80%,31,3.20%,193,789,0,19.70%,80.30%,0.00%,181,165,659,25.00% +137046,330,5405,State-funded secondary,1305,428,877,32.80%,67.20%,5,0.40%,75,5.70%,254,1051,0,19.50%,80.50%,0.00%,199,166,898,18.50% +137047,330,5404,State-funded secondary,1274,1274,0,100.00%,0.00%,2,0.20%,47,3.70%,340,932,2,26.70%,73.20%,0.20%,205,173,894,19.40% +137048,881,4471,State-funded secondary,1672,809,863,48.40%,51.60%,44,2.60%,155,9.30%,78,1591,3,4.70%,95.20%,0.20%,124,126,1330,9.50% +137049,940,4015,State-funded secondary,1086,492,594,45.30%,54.70%,9,0.80%,163,15.00%,68,1014,4,6.30%,93.40%,0.40%,205,218,959,22.70% +137051,885,4434,State-funded secondary,1483,722,760,48.70%,51.20%,44,3.00%,202,13.60%,313,1170,0,21.10%,78.90%,0.00%,252,285,1483,19.20% +137052,826,4018,State-funded secondary,2215,1098,1117,49.60%,50.40%,34,1.50%,341,15.40%,159,2049,7,7.20%,92.50%,0.30%,246,237,1819,13.00% +137053,330,4331,State-funded secondary,1532,756,776,49.30%,50.70%,32,2.10%,188,12.30%,95,1432,5,6.20%,93.50%,0.30%,184,207,1222,16.90% +137054,881,2901,State-funded primary,404,203,201,50.20%,49.80%,7,1.70%,36,8.90%,14,390,0,3.50%,96.50%,0.00%,55,57,379,15.00% +137055,935,4056,State-funded secondary,1391,683,708,49.10%,50.90%,29,2.10%,253,18.20%,33,1357,1,2.40%,97.60%,0.10%,254,251,1220,20.60% +137056,881,5234,State-funded primary,213,99,114,46.50%,53.50%,6,2.80%,24,11.30%,88,125,0,41.30%,58.70%,0.00%,17,18,192,9.40% +137057,865,4537,State-funded secondary,1398,711,687,50.90%,49.10%,27,1.90%,286,20.50%,65,1333,0,4.60%,95.40%,0.00%,129,142,1140,12.50% +137058,881,5458,State-funded secondary,1044,491,553,47.00%,53.00%,18,1.70%,73,7.00%,271,766,7,26.00%,73.40%,0.70%,169,175,859,20.40% +137059,916,4068,State-funded secondary,672,332,340,49.40%,50.60%,28,4.20%,82,12.20%,17,638,17,2.50%,94.90%,2.50%,94,102,672,15.20% +137060,314,4011,State-funded secondary,1431,1410,21,98.50%,1.50%,33,2.30%,60,4.20%,469,962,0,32.80%,67.20%,0.00%,190,184,1138,16.20% +137061,826,5207,State-funded primary,675,305,370,45.20%,54.80%,14,2.10%,102,15.10%,308,339,28,45.60%,50.20%,4.10%,78,108,675,16.00% +137062,801,3026,State-funded primary,407,204,203,50.10%,49.90%,4,1.00%,50,12.30%,43,363,1,10.60%,89.20%,0.20%,48,48,407,11.80% +137063,846,4001,State-funded secondary,953,451,502,47.30%,52.70%,19,2.00%,148,15.50%,70,883,0,7.30%,92.70%,0.00%,259,283,953,29.70% +137064,895,4001,State-funded secondary,582,285,297,49.00%,51.00%,39,6.70%,52,8.90%,21,561,0,3.60%,96.40%,0.00%,148,159,582,27.30% +137065,383,4065,State-funded secondary,861,428,433,49.70%,50.30%,5,0.60%,133,15.40%,566,292,3,65.70%,33.90%,0.30%,467,510,861,59.20% +137066,371,4000,State-funded secondary,784,402,382,51.30%,48.70%,9,1.10%,122,15.60%,47,735,2,6.00%,93.80%,0.30%,335,357,784,45.50% +137068,801,2030,State-funded primary,565,287,278,50.80%,49.20%,6,1.10%,55,9.70%,68,497,0,12.00%,88.00%,0.00%,52,53,565,9.40% +137069,305,2017,State-funded primary,353,172,181,48.70%,51.30%,2,0.60%,23,6.50%,36,317,0,10.20%,89.80%,0.00%,16,16,353,4.50% +137070,305,2018,State-funded primary,496,217,279,43.80%,56.30%,26,5.20%,55,11.10%,75,421,0,15.10%,84.90%,0.00%,39,41,496,8.30% +137071,886,2000,State-funded primary,419,201,218,48.00%,52.00%,22,5.30%,80,19.10%,145,274,0,34.60%,65.40%,0.00%,213,209,385,54.30% +137072,881,5455,State-funded secondary,698,344,354,49.30%,50.70%,17,2.40%,85,12.20%,117,581,0,16.80%,83.20%,0.00%,248,259,603,43.00% +137073,884,4021,State-funded secondary,636,280,356,44.00%,56.00%,18,2.80%,104,16.40%,45,591,0,7.10%,92.90%,0.00%,134,141,636,22.20% +137074,866,3426,State-funded primary,391,210,181,53.70%,46.30%,4,1.00%,40,10.20%,315,76,0,80.60%,19.40%,0.00%,42,44,391,11.30% +137075,310,4021,State-funded secondary,1543,655,888,42.40%,57.60%,36,2.30%,130,8.40%,1086,457,0,70.40%,29.60%,0.00%,351,333,1334,25.00% +137076,908,2000,State-funded primary,204,106,98,52.00%,48.00%,8,3.90%,34,16.70%,3,196,5,1.50%,96.10%,2.50%,64,66,204,32.40% +137077,312,5406,State-funded secondary,922,393,529,42.60%,57.40%,16,1.70%,76,8.20%,701,219,2,76.00%,23.80%,0.20%,189,261,825,31.60% +137078,312,5407,State-funded secondary,452,203,249,44.90%,55.10%,4,0.90%,44,9.70%,322,129,1,71.20%,28.50%,0.20%,132,174,446,39.00% +137079,937,4000,State-funded secondary,803,413,390,51.40%,48.60%,23,2.90%,140,17.40%,58,745,0,7.20%,92.80%,0.00%,266,279,803,34.70% +137080,933,4450,State-funded secondary,787,377,410,47.90%,52.10%,17,2.20%,126,16.00%,37,750,0,4.70%,95.30%,0.00%,134,148,787,18.80% +137081,881,5223,State-funded primary,217,109,108,50.20%,49.80%,1,0.50%,37,17.10%,17,200,0,7.80%,92.20%,0.00%,7,7,217,3.20% +137082,874,4000,State-funded secondary,1375,631,744,45.90%,54.10%,24,1.70%,57,4.10%,191,1176,8,13.90%,85.50%,0.60%,267,275,1159,23.70% +137083,383,5400,State-funded secondary,1659,839,820,50.60%,49.40%,10,0.60%,136,8.20%,430,1225,4,25.90%,73.80%,0.20%,291,243,1254,19.40% +137085,891,4005,State-funded secondary,1308,631,677,48.20%,51.80%,10,0.80%,123,9.40%,61,1224,23,4.70%,93.60%,1.80%,278,267,1144,23.30% +137086,940,4601,State-funded secondary,1488,755,733,50.70%,49.30%,16,1.10%,73,4.90%,107,1381,0,7.20%,92.80%,0.00%,63,73,1078,6.80% +137087,941,4051,State-funded secondary,1269,659,610,51.90%,48.10%,12,0.90%,177,13.90%,102,1167,0,8.00%,92.00%,0.00%,209,232,1102,21.10% +137088,317,4800,State-funded secondary,1163,536,627,46.10%,53.90%,12,1.00%,96,8.30%,487,673,3,41.90%,57.90%,0.30%,260,289,951,30.40% +137089,941,4005,State-funded secondary,2138,1108,1030,51.80%,48.20%,31,1.40%,167,7.80%,261,1870,7,12.20%,87.50%,0.30%,176,172,1803,9.50% +137090,919,4498,State-funded secondary,1365,644,721,47.20%,52.80%,41,3.00%,210,15.40%,58,1305,2,4.20%,95.60%,0.10%,199,212,1179,18.00% +137091,825,4079,State-funded secondary,1313,660,653,50.30%,49.70%,8,0.60%,28,2.10%,149,1155,9,11.30%,88.00%,0.70%,16,15,913,1.60% +137092,926,4089,State-funded secondary,948,473,475,49.90%,50.10%,8,0.80%,80,8.40%,83,862,3,8.80%,90.90%,0.30%,167,173,810,21.40% +137093,208,5402,State-funded secondary,1803,867,936,48.10%,51.90%,81,4.50%,240,13.30%,551,1202,50,30.60%,66.70%,2.80%,493,526,1535,34.30% +137094,308,5404,State-funded secondary,1061,0,1061,0.00%,100.00%,27,2.50%,73,6.90%,247,807,7,23.30%,76.10%,0.70%,223,227,870,26.10% +137096,938,4004,State-funded secondary,477,232,245,48.60%,51.40%,16,3.40%,66,13.80%,27,450,0,5.70%,94.30%,0.00%,94,106,477,22.20% +137097,916,4513,State-funded secondary,1036,523,513,50.50%,49.50%,27,2.60%,100,9.70%,28,1008,0,2.70%,97.30%,0.00%,72,82,843,9.70% +137098,860,6037,Independent school,68,9,59,13.20%,86.80%,68,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137099,886,5465,State-funded secondary,1424,84,1340,5.90%,94.10%,5,0.40%,44,3.10%,304,1118,2,21.30%,78.50%,0.10%,92,87,1034,8.40% +137100,860,4002,State-funded secondary,1265,620,645,49.00%,51.00%,26,2.10%,175,13.80%,31,1234,0,2.50%,97.50%,0.00%,282,300,1134,26.50% +137101,885,4500,State-funded secondary,1103,551,552,50.00%,50.00%,35,3.20%,78,7.10%,27,1076,0,2.40%,97.60%,0.00%,124,129,886,14.60% +137102,916,3084,State-funded primary,213,95,118,44.60%,55.40%,6,2.80%,32,15.00%,2,210,1,0.90%,98.60%,0.50%,16,16,213,7.50% +137104,886,5450,State-funded secondary,1496,1438,58,96.10%,3.90%,12,0.80%,161,10.80%,81,1415,0,5.40%,94.60%,0.00%,181,155,1144,13.50% +137106,803,4003,State-funded secondary,1004,489,515,48.70%,51.30%,21,2.10%,158,15.70%,57,941,6,5.70%,93.70%,0.60%,248,268,1004,26.70% +137107,909,5406,State-funded secondary,352,180,172,51.10%,48.90%,3,0.90%,65,18.50%,7,345,0,2.00%,98.00%,0.00%,51,53,292,18.20% +137108,881,2578,State-funded primary,1103,514,589,46.60%,53.40%,26,2.40%,31,2.80%,303,799,1,27.50%,72.40%,0.10%,154,158,918,17.20% +137109,830,4002,State-funded secondary,958,424,534,44.30%,55.70%,20,2.10%,131,13.70%,28,914,16,2.90%,95.40%,1.70%,370,386,958,40.30% +137110,919,4080,State-funded secondary,1405,664,741,47.30%,52.70%,50,3.60%,334,23.80%,149,1250,6,10.60%,89.00%,0.40%,265,279,1198,23.30% +137111,888,4193,State-funded secondary,721,348,373,48.30%,51.70%,7,1.00%,54,7.50%,17,704,0,2.40%,97.60%,0.00%,111,118,721,16.40% +137112,891,4000,State-funded secondary,829,397,432,47.90%,52.10%,9,1.10%,59,7.10%,40,788,1,4.80%,95.10%,0.10%,141,139,738,18.80% +137114,306,2013,State-funded primary,592,291,301,49.20%,50.80%,14,2.40%,97,16.40%,336,256,0,56.80%,43.20%,0.00%,188,190,592,32.10% +137115,855,4015,State-funded secondary,846,379,467,44.80%,55.20%,32,3.80%,134,15.80%,17,829,0,2.00%,98.00%,0.00%,95,103,846,12.20% +137116,936,4160,State-funded secondary,1106,569,537,51.40%,48.60%,17,1.50%,184,16.60%,146,960,0,13.20%,86.80%,0.00%,180,206,1106,18.60% +137117,891,4001,State-funded secondary,1138,567,571,49.80%,50.20%,13,1.10%,157,13.80%,43,1084,11,3.80%,95.30%,1.00%,290,301,1039,29.00% +137118,933,4287,State-funded secondary,110,51,59,46.40%,53.60%,4,3.60%,16,14.50%,3,106,1,2.70%,96.40%,0.90%,27,28,110,25.50% +137119,887,4000,State-funded secondary,1702,858,844,50.40%,49.60%,58,3.40%,267,15.70%,115,1495,92,6.80%,87.80%,5.40%,368,415,1584,26.20% +137120,855,4043,State-funded secondary,931,371,560,39.80%,60.20%,30,3.20%,120,12.90%,136,794,1,14.60%,85.30%,0.10%,106,136,931,14.60% +137121,305,4000,State-funded secondary,1163,396,767,34.00%,66.00%,23,2.00%,117,10.10%,229,923,11,19.70%,79.40%,0.90%,221,228,991,23.00% +137123,916,5401,State-funded secondary,1230,143,1087,11.60%,88.40%,6,0.50%,37,3.00%,108,1112,10,8.80%,90.40%,0.80%,35,29,793,3.70% +137124,878,5404,State-funded secondary,1327,660,667,49.70%,50.30%,62,4.70%,150,11.30%,43,1283,1,3.20%,96.70%,0.10%,269,310,1189,26.10% +137125,850,4128,State-funded secondary,944,457,487,48.40%,51.60%,40,4.20%,91,9.60%,48,896,0,5.10%,94.90%,0.00%,167,188,944,19.90% +137126,933,2216,State-funded primary,487,235,252,48.30%,51.70%,18,3.70%,48,9.90%,110,376,1,22.60%,77.20%,0.20%,47,52,433,12.00% +137127,888,3451,State-funded primary,182,90,92,49.50%,50.50%,2,1.10%,14,7.70%,4,178,0,2.20%,97.80%,0.00%,5,7,182,3.80% +137128,850,4130,State-funded secondary,1179,578,601,49.00%,51.00%,24,2.00%,57,4.80%,52,1127,0,4.40%,95.60%,0.00%,92,112,1179,9.50% +137129,850,4129,State-funded secondary,1240,603,637,48.60%,51.40%,38,3.10%,216,17.40%,67,1173,0,5.40%,94.60%,0.00%,200,223,1240,18.00% +137130,344,4010,State-funded secondary,780,780,0,100.00%,0.00%,8,1.00%,128,16.40%,74,706,0,9.50%,90.50%,0.00%,301,329,780,42.20% +137131,302,4208,State-funded secondary,1132,1132,0,100.00%,0.00%,7,0.60%,109,9.60%,351,779,2,31.00%,68.80%,0.20%,206,216,1004,21.50% +137132,916,3064,State-funded primary,109,52,57,47.70%,52.30%,5,4.60%,11,10.10%,5,104,0,4.60%,95.40%,0.00%,13,13,97,13.40% +137133,353,4600,State-funded secondary,1680,892,788,53.10%,46.90%,38,2.30%,80,4.80%,226,1452,2,13.50%,86.40%,0.10%,156,152,1247,12.20% +137134,935,4002,State-funded secondary,866,437,429,50.50%,49.50%,26,3.00%,96,11.10%,44,822,0,5.10%,94.90%,0.00%,321,345,866,39.80% +137135,925,5413,State-funded secondary,1297,632,665,48.70%,51.30%,13,1.00%,186,14.30%,28,1267,2,2.20%,97.70%,0.20%,172,191,1168,16.40% +137136,886,2001,State-funded primary,202,93,109,46.00%,54.00%,6,3.00%,24,11.90%,26,176,0,12.90%,87.10%,0.00%,84,88,202,43.60% +137138,303,4002,State-funded secondary,1328,626,702,47.10%,52.90%,19,1.40%,227,17.10%,499,829,0,37.60%,62.40%,0.00%,315,328,1097,29.90% +137139,815,4611,State-funded secondary,2003,1041,962,52.00%,48.00%,70,3.50%,28,1.40%,109,1864,30,5.40%,93.10%,1.50%,79,66,1323,5.00% +137140,931,4142,State-funded secondary,1705,826,879,48.40%,51.60%,28,1.60%,290,17.00%,68,1635,2,4.00%,95.90%,0.10%,210,233,1344,17.30% +137141,891,4002,State-funded secondary,913,456,457,49.90%,50.10%,8,0.90%,88,9.60%,29,879,5,3.20%,96.30%,0.50%,357,372,882,42.20% +137142,908,2756,State-funded primary,217,107,110,49.30%,50.70%,6,2.80%,19,8.80%,3,214,0,1.40%,98.60%,0.00%,45,44,200,22.00% +137146,860,4004,State-funded secondary,874,440,434,50.30%,49.70%,5,0.60%,96,11.00%,68,806,0,7.80%,92.20%,0.00%,220,232,874,26.50% +137147,866,5220,State-funded primary,406,201,205,49.50%,50.50%,5,1.20%,19,4.70%,121,284,1,29.80%,70.00%,0.20%,34,34,359,9.50% +137148,384,2142,State-funded primary,209,101,108,48.30%,51.70%,3,1.40%,7,3.30%,9,200,0,4.30%,95.70%,0.00%,16,17,209,8.10% +137149,916,3366,State-funded primary,108,49,59,45.40%,54.60%,6,5.60%,12,11.10%,2,106,0,1.90%,98.10%,0.00%,15,15,108,13.90% +137151,811,2769,State-funded primary,429,217,212,50.60%,49.40%,17,4.00%,23,5.40%,21,408,0,4.90%,95.10%,0.00%,19,20,429,4.70% +137152,881,4004,State-funded secondary,1156,548,608,47.40%,52.60%,18,1.60%,171,14.80%,5,1151,0,0.40%,99.60%,0.00%,155,160,999,16.00% +137154,886,4242,State-funded secondary,1136,530,606,46.70%,53.30%,67,5.90%,146,12.90%,61,1070,5,5.40%,94.20%,0.40%,361,366,1027,35.60% +137155,330,5201,State-funded primary,442,213,229,48.20%,51.80%,0,0.00%,29,6.60%,32,410,0,7.20%,92.80%,0.00%,24,25,421,5.90% +137156,919,5416,State-funded secondary,1478,742,734,50.20%,49.70%,21,1.40%,147,9.90%,93,1385,0,6.30%,93.70%,0.00%,126,146,1193,12.20% +137157,205,5400,State-funded secondary,1374,110,1264,8.00%,92.00%,39,2.80%,97,7.10%,508,866,0,37.00%,63.00%,0.00%,122,116,997,11.60% +137158,891,4032,State-funded secondary,1266,616,650,48.70%,51.30%,9,0.70%,162,12.80%,92,1174,0,7.30%,92.70%,0.00%,312,319,1178,27.10% +137159,891,4635,State-funded secondary,1214,602,612,49.60%,50.40%,7,0.60%,92,7.60%,44,1163,7,3.60%,95.80%,0.60%,221,225,1071,21.00% +137160,866,5417,State-funded secondary,1600,759,841,47.40%,52.60%,60,3.80%,129,8.10%,156,1444,0,9.80%,90.30%,0.00%,210,225,1393,16.20% +137161,855,4003,State-funded secondary,1169,555,614,47.50%,52.50%,18,1.50%,145,12.40%,28,1137,4,2.40%,97.30%,0.30%,86,87,854,10.20% +137162,885,4004,State-funded secondary,1127,528,599,46.90%,53.10%,20,1.80%,208,18.50%,20,1076,31,1.80%,95.50%,2.80%,247,263,987,26.60% +137163,838,4615,State-funded secondary,2093,1106,987,52.80%,47.20%,56,2.70%,270,12.90%,81,2010,2,3.90%,96.00%,0.10%,285,228,1366,16.70% +137164,860,4005,State-funded secondary,629,311,318,49.40%,50.60%,19,3.00%,99,15.70%,5,624,0,0.80%,99.20%,0.00%,208,201,521,38.60% +137166,925,5402,State-funded secondary,1188,0,1188,0.00%,100.00%,2,0.20%,81,6.80%,151,1032,5,12.70%,86.90%,0.40%,72,66,886,7.40% +137167,885,4437,State-funded secondary,947,453,494,47.80%,52.20%,10,1.10%,130,13.70%,204,743,0,21.50%,78.50%,0.00%,213,209,772,27.10% +137168,330,2481,State-funded primary,463,227,236,49.00%,51.00%,18,3.90%,68,14.70%,264,198,1,57.00%,42.80%,0.20%,204,200,418,47.80% +137169,823,4096,State-funded secondary,1503,784,719,52.20%,47.80%,35,2.30%,72,4.80%,63,1439,1,4.20%,95.70%,0.10%,174,156,1104,14.10% +137170,855,4017,State-funded secondary,971,465,506,47.90%,52.10%,20,2.10%,68,7.00%,38,933,0,3.90%,96.10%,0.00%,98,113,971,11.60% +137171,344,4052,State-funded secondary,1193,1193,0,100.00%,0.00%,1,0.10%,46,3.90%,88,1102,3,7.40%,92.40%,0.30%,91,77,910,8.50% +137172,937,4240,State-funded secondary,645,303,342,47.00%,53.00%,15,2.30%,102,15.80%,6,639,0,0.90%,99.10%,0.00%,104,109,645,16.90% +137173,916,2144,State-funded primary,159,76,83,47.80%,52.20%,3,1.90%,18,11.30%,8,151,0,5.00%,95.00%,0.00%,3,3,159,1.90% +137174,933,2102,State-funded primary,219,125,94,57.10%,42.90%,11,5.00%,27,12.30%,61,158,0,27.90%,72.10%,0.00%,62,64,196,32.70% +137175,933,2070,State-funded primary,197,94,103,47.70%,52.30%,4,2.00%,25,12.70%,5,185,7,2.50%,93.90%,3.60%,44,46,197,23.40% +137176,878,4112,State-funded secondary,887,446,441,50.30%,49.70%,18,2.00%,156,17.60%,30,846,11,3.40%,95.40%,1.20%,190,230,787,29.20% +137177,310,4033,State-funded secondary,998,433,565,43.40%,56.60%,8,0.80%,119,11.90%,739,259,0,74.00%,26.00%,0.00%,264,256,887,28.90% +137178,310,4032,State-funded secondary,1390,1390,0,100.00%,0.00%,22,1.60%,120,8.60%,862,528,0,62.00%,38.00%,0.00%,326,316,1143,27.60% +137179,935,4029,State-funded secondary,205,97,108,47.30%,52.70%,4,2.00%,17,8.30%,8,197,0,3.90%,96.10%,0.00%,28,33,205,16.10% +137180,935,4030,State-funded secondary,295,136,159,46.10%,53.90%,4,1.40%,38,12.90%,25,269,1,8.50%,91.20%,0.30%,86,98,295,33.20% +137181,202,4000,State-funded secondary,1171,505,666,43.10%,56.90%,38,3.20%,120,10.20%,605,519,47,51.70%,44.30%,4.00%,432,443,895,49.50% +137182,892,2081,State-funded primary,393,188,205,47.80%,52.20%,2,0.50%,61,15.50%,168,225,0,42.70%,57.30%,0.00%,144,151,358,42.20% +137183,908,2511,State-funded primary,176,76,100,43.20%,56.80%,3,1.70%,18,10.20%,6,170,0,3.40%,96.60%,0.00%,47,40,149,26.80% +137184,892,4000,State-funded secondary,876,876,0,100.00%,0.00%,5,0.60%,98,11.20%,542,329,5,61.90%,37.60%,0.60%,294,305,796,38.30% +137186,885,4801,State-funded secondary,655,311,344,47.50%,52.50%,32,4.90%,151,23.10%,25,618,12,3.80%,94.40%,1.80%,213,235,655,35.90% +137188,881,5432,State-funded secondary,1706,876,830,51.30%,48.70%,53,3.10%,231,13.50%,58,1648,0,3.40%,96.60%,0.00%,450,481,1530,31.40% +137190,866,5410,State-funded secondary,1392,759,633,54.50%,45.50%,34,2.40%,196,14.10%,276,1113,3,19.80%,80.00%,0.20%,199,204,1095,18.60% +137191,866,3000,State-funded primary,488,241,247,49.40%,50.60%,13,2.70%,65,13.30%,135,352,1,27.70%,72.10%,0.20%,43,44,488,9.00% +137192,933,4282,State-funded secondary,555,267,288,48.10%,51.90%,16,2.90%,83,15.00%,84,471,0,15.10%,84.90%,0.00%,105,118,555,21.30% +137194,916,2164,State-funded primary,446,230,216,51.60%,48.40%,7,1.60%,78,17.50%,81,365,0,18.20%,81.80%,0.00%,117,124,401,30.90% +137195,306,2008,State-funded primary,200,98,102,49.00%,51.00%,6,3.00%,16,8.00%,93,107,0,46.50%,53.50%,0.00%,68,73,200,36.50% +137196,812,4009,State-funded secondary,638,277,361,43.40%,56.60%,28,4.40%,135,21.20%,68,570,0,10.70%,89.30%,0.00%,330,342,638,53.60% +137197,311,4000,State-funded secondary,1059,456,603,43.10%,56.90%,81,7.60%,97,9.20%,124,932,3,11.70%,88.00%,0.30%,117,131,1059,12.40% +137198,310,4027,State-funded secondary,1177,552,625,46.90%,53.10%,32,2.70%,146,12.40%,705,471,1,59.90%,40.00%,0.10%,344,368,1041,35.40% +137199,310,4022,State-funded secondary,1302,579,723,44.50%,55.50%,17,1.30%,146,11.20%,933,369,0,71.70%,28.30%,0.00%,323,288,999,28.80% +137200,812,4092,State-funded secondary,909,438,471,48.20%,51.80%,27,3.00%,66,7.30%,15,893,1,1.70%,98.20%,0.10%,102,125,909,13.80% +137201,925,2075,State-funded primary,258,121,137,46.90%,53.10%,7,2.70%,34,13.20%,5,253,0,1.90%,98.10%,0.00%,32,33,258,12.80% +137202,933,4258,State-funded secondary,441,219,222,49.70%,50.30%,36,8.20%,76,17.20%,25,416,0,5.70%,94.30%,0.00%,120,129,441,29.30% +137203,933,4201,State-funded secondary,1053,556,497,52.80%,47.20%,35,3.30%,173,16.40%,87,961,5,8.30%,91.30%,0.50%,205,225,1053,21.40% +137204,310,4020,State-funded secondary,1215,525,690,43.20%,56.80%,28,2.30%,183,15.10%,743,470,2,61.20%,38.70%,0.20%,338,323,1016,31.80% +137205,909,5405,State-funded secondary,1048,528,520,50.40%,49.60%,19,1.80%,114,10.90%,31,1017,0,3.00%,97.00%,0.00%,114,110,895,12.30% +137206,879,4186,State-funded secondary,1170,585,585,50.00%,50.00%,57,4.90%,197,16.80%,42,1128,0,3.60%,96.40%,0.00%,289,284,1003,28.30% +137207,916,2069,State-funded primary,209,104,105,49.80%,50.20%,5,2.40%,32,15.30%,20,189,0,9.60%,90.40%,0.00%,11,11,209,5.30% +137208,935,4098,State-funded secondary,586,292,294,49.80%,50.20%,20,3.40%,71,12.10%,51,535,0,8.70%,91.30%,0.00%,114,128,586,21.80% +137209,331,4033,State-funded secondary,1216,625,591,51.40%,48.60%,10,0.80%,206,16.90%,278,919,19,22.90%,75.60%,1.60%,329,327,1087,30.10% +137211,938,2001,State-funded primary,460,227,233,49.30%,50.70%,8,1.70%,49,10.70%,73,387,0,15.90%,84.10%,0.00%,89,89,415,21.40% +137212,801,2017,State-funded primary,457,218,239,47.70%,52.30%,5,1.10%,75,16.40%,30,427,0,6.60%,93.40%,0.00%,80,74,409,18.10% +137213,925,5403,State-funded secondary,806,66,740,8.20%,91.80%,5,0.60%,91,11.30%,30,776,0,3.70%,96.30%,0.00%,52,41,578,7.10% +137214,883,5438,State-funded secondary,1225,568,657,46.40%,53.60%,41,3.30%,149,12.20%,98,1125,2,8.00%,91.80%,0.20%,193,220,1225,18.00% +137215,825,5403,State-funded secondary,1336,680,656,50.90%,49.10%,35,2.60%,81,6.10%,118,1218,0,8.80%,91.20%,0.00%,215,237,1154,20.50% +137216,305,2002,State-funded primary,622,299,323,48.10%,51.90%,10,1.60%,83,13.30%,85,535,2,13.70%,86.00%,0.30%,32,33,622,5.30% +137217,916,5419,State-funded secondary,869,452,417,52.00%,48.00%,38,4.40%,137,15.80%,18,851,0,2.10%,97.90%,0.00%,119,138,869,15.90% +137218,935,4097,State-funded secondary,900,438,462,48.70%,51.30%,14,1.60%,147,16.30%,25,872,3,2.80%,96.90%,0.30%,121,144,900,16.00% +137219,825,4061,State-funded secondary,1285,1285,0,100.00%,0.00%,1,0.10%,38,3.00%,183,1090,12,14.20%,84.80%,0.90%,22,20,908,2.20% +137220,881,2696,State-funded primary,209,92,117,44.00%,56.00%,9,4.30%,14,6.70%,8,201,0,3.80%,96.20%,0.00%,20,21,209,10.00% +137221,307,5403,State-funded secondary,1510,687,823,45.50%,54.50%,35,2.30%,283,18.70%,689,813,8,45.60%,53.80%,0.50%,467,427,1183,36.10% +137223,908,4152,State-funded secondary,945,430,515,45.50%,54.50%,22,2.30%,132,14.00%,29,915,1,3.10%,96.80%,0.10%,191,195,837,23.30% +137224,919,5411,State-funded secondary,507,236,271,46.50%,53.50%,17,3.40%,96,18.90%,78,428,1,15.40%,84.40%,0.20%,106,119,432,27.50% +137225,331,4043,State-funded secondary,881,407,474,46.20%,53.80%,19,2.20%,212,24.10%,252,629,0,28.60%,71.40%,0.00%,243,248,810,30.60% +137226,881,2598,State-funded primary,430,209,221,48.60%,51.40%,8,1.90%,42,9.80%,66,364,0,15.30%,84.70%,0.00%,6,9,430,2.10% +137227,886,5403,State-funded secondary,1079,86,993,8.00%,92.00%,10,0.90%,65,6.00%,150,888,41,13.90%,82.30%,3.80%,75,85,841,10.10% +137228,878,4055,State-funded secondary,839,413,426,49.20%,50.80%,49,5.80%,192,22.90%,16,822,1,1.90%,98.00%,0.10%,153,195,839,23.20% +137229,850,4168,State-funded secondary,1296,634,662,48.90%,51.10%,27,2.10%,117,9.00%,59,1231,6,4.60%,95.00%,0.50%,160,180,1296,13.90% +137230,865,4072,State-funded secondary,1504,706,798,46.90%,53.10%,77,5.10%,138,9.20%,58,1436,10,3.90%,95.50%,0.70%,237,245,1273,19.20% +137231,334,4018,State-funded secondary,1098,523,575,47.60%,52.40%,18,1.60%,124,11.30%,145,940,13,13.20%,85.60%,1.20%,293,313,1098,28.50% +137233,311,5403,State-funded secondary,834,834,0,100.00%,0.00%,11,1.30%,36,4.30%,177,651,6,21.20%,78.10%,0.70%,65,59,604,9.80% +137235,937,4002,State-funded secondary,823,823,0,100.00%,0.00%,1,0.10%,7,0.90%,79,736,8,9.60%,89.40%,1.00%,18,20,600,3.30% +137236,937,4124,State-funded secondary,1744,880,864,50.50%,49.50%,31,1.80%,194,11.10%,182,1501,61,10.40%,86.10%,3.50%,337,318,1515,21.00% +137237,936,5410,State-funded secondary,1007,483,524,48.00%,52.00%,29,2.90%,135,13.40%,88,919,0,8.70%,91.30%,0.00%,126,160,1007,15.90% +137238,919,2337,State-funded primary,384,190,194,49.50%,50.50%,9,2.30%,104,27.10%,123,261,0,32.00%,68.00%,0.00%,96,104,373,27.90% +137239,850,4143,State-funded secondary,1151,550,601,47.80%,52.20%,62,5.40%,92,8.00%,98,1045,8,8.50%,90.80%,0.70%,168,193,1151,16.80% +137240,881,5463,State-funded secondary,1280,635,645,49.60%,50.40%,25,2.00%,158,12.30%,70,1210,0,5.50%,94.50%,0.00%,151,170,1083,15.70% +137241,881,5413,State-funded secondary,1201,570,631,47.50%,52.50%,36,3.00%,137,11.40%,17,1184,0,1.40%,98.60%,0.00%,146,181,1051,17.20% +137242,305,2024,State-funded primary,440,203,237,46.10%,53.90%,9,2.00%,33,7.50%,167,273,0,38.00%,62.00%,0.00%,64,66,440,15.00% +137243,344,4056,State-funded secondary,1270,1224,46,96.40%,3.60%,1,0.10%,85,6.70%,117,1153,0,9.20%,90.80%,0.00%,63,55,927,5.90% +137244,305,3510,State-funded primary,438,223,215,50.90%,49.10%,14,3.20%,85,19.40%,12,426,0,2.70%,97.30%,0.00%,62,62,410,15.10% +137246,881,5243,State-funded primary,315,161,154,51.10%,48.90%,5,1.60%,31,9.80%,11,304,0,3.50%,96.50%,0.00%,39,40,315,12.70% +137247,881,5211,State-funded primary,313,149,164,47.60%,52.40%,10,3.20%,49,15.70%,2,311,0,0.60%,99.40%,0.00%,58,58,313,18.50% +137248,873,5412,State-funded secondary,1334,634,700,47.50%,52.50%,63,4.70%,130,9.70%,250,1083,1,18.70%,81.20%,0.10%,360,363,1212,30.00% +137249,823,4099,State-funded secondary,728,372,356,51.10%,48.90%,20,2.70%,113,15.50%,11,717,0,1.50%,98.50%,0.00%,83,89,728,12.20% +137250,886,5400,State-funded secondary,1068,976,92,91.40%,8.60%,0,0.00%,16,1.50%,170,875,23,15.90%,81.90%,2.20%,53,57,827,6.90% +137251,909,5407,State-funded secondary,370,184,186,49.70%,50.30%,12,3.20%,55,14.90%,8,361,1,2.20%,97.60%,0.30%,49,50,318,15.70% +137252,909,5412,State-funded secondary,1333,671,662,50.30%,49.70%,33,2.50%,259,19.40%,36,1297,0,2.70%,97.30%,0.00%,200,210,1137,18.50% +137254,909,5413,State-funded secondary,961,475,486,49.40%,50.60%,42,4.40%,93,9.70%,19,940,2,2.00%,97.80%,0.20%,139,148,834,17.70% +137255,916,2157,State-funded primary,329,173,156,52.60%,47.40%,9,2.70%,104,31.60%,76,253,0,23.10%,76.90%,0.00%,133,145,329,44.10% +137256,825,4084,State-funded secondary,1037,528,509,50.90%,49.10%,43,4.10%,134,12.90%,271,763,3,26.10%,73.60%,0.30%,241,248,945,26.20% +137257,908,3876,State-funded primary,217,119,98,54.80%,45.20%,2,0.90%,34,15.70%,3,214,0,1.40%,98.60%,0.00%,25,25,217,11.50% +137258,908,3549,State-funded primary,428,194,234,45.30%,54.70%,7,1.60%,60,14.00%,30,398,0,7.00%,93.00%,0.00%,82,82,428,19.20% +137259,871,4082,State-funded secondary,921,921,0,100.00%,0.00%,10,1.10%,96,10.40%,469,420,32,50.90%,45.60%,3.50%,238,230,798,28.80% +137260,881,5429,State-funded secondary,1145,563,582,49.20%,50.80%,25,2.20%,96,8.40%,21,1090,34,1.80%,95.20%,3.00%,162,172,986,17.40% +137261,825,4044,State-funded secondary,1114,543,571,48.70%,51.30%,36,3.20%,127,11.40%,83,1029,2,7.50%,92.40%,0.20%,128,129,953,13.50% +137262,394,4072,State-funded secondary,1116,562,554,50.40%,49.60%,9,0.80%,149,13.40%,7,1109,0,0.60%,99.40%,0.00%,369,382,1116,34.20% +137263,938,4029,State-funded secondary,1879,888,991,47.30%,52.70%,30,1.60%,235,12.50%,625,1248,6,33.30%,66.40%,0.30%,277,280,1501,18.70% +137264,866,4086,State-funded secondary,1275,642,633,50.40%,49.60%,44,3.50%,139,10.90%,204,1070,1,16.00%,83.90%,0.10%,257,285,1122,25.40% +137266,916,5206,State-funded primary,380,183,197,48.20%,51.80%,6,1.60%,58,15.30%,30,350,0,7.90%,92.10%,0.00%,21,25,380,6.60% +137267,867,4603,State-funded secondary,1074,566,508,52.70%,47.30%,24,2.20%,122,11.40%,80,993,1,7.40%,92.50%,0.10%,52,56,865,6.50% +137269,909,4060,State-funded secondary,211,88,123,41.70%,58.30%,37,17.50%,42,19.90%,0,211,0,0.00%,100.00%,0.00%,23,28,211,13.30% +137270,919,4028,State-funded secondary,1342,612,730,45.60%,54.40%,19,1.40%,170,12.70%,133,1195,14,9.90%,89.00%,1.00%,98,98,999,9.80% +137271,916,2135,State-funded primary,637,321,316,50.40%,49.60%,10,1.60%,108,17.00%,45,592,0,7.10%,92.90%,0.00%,132,138,637,21.70% +137272,331,4800,State-funded secondary,1692,871,821,51.50%,48.50%,17,1.00%,252,14.90%,683,992,17,40.40%,58.60%,1.00%,344,325,1353,24.00% +137273,313,6006,Independent school,170,86,84,50.60%,49.40%,0,0.00%,8,4.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137274,335,4001,State-funded secondary,1564,776,788,49.60%,50.40%,22,1.40%,170,10.90%,167,1397,0,10.70%,89.30%,0.00%,939,933,1434,65.10% +137275,355,6059,Independent school,58,12,46,20.70%,79.30%,37,63.80%,21,36.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137277,380,4004,State-funded secondary,847,352,495,41.60%,58.40%,20,2.40%,127,15.00%,315,517,15,37.20%,61.00%,1.80%,235,261,847,30.80% +137279,850,6089,Independent school,82,21,61,25.60%,74.40%,81,98.80%,1,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137280,825,4000,State-funded secondary,1107,545,562,49.20%,50.80%,52,4.70%,155,14.00%,228,866,13,20.60%,78.20%,1.20%,188,196,960,20.40% +137281,870,2002,State-funded primary,98,52,46,53.10%,46.90%,0,0.00%,17,17.30%,31,67,0,31.60%,68.40%,0.00%,10,11,98,11.20% +137282,925,4001,State-funded secondary,1391,680,711,48.90%,51.10%,43,3.10%,328,23.60%,145,1246,0,10.40%,89.60%,0.00%,362,328,1139,28.80% +137284,882,5414,State-funded secondary,1119,525,594,46.90%,53.10%,32,2.90%,111,9.90%,55,1061,3,4.90%,94.80%,0.30%,199,241,1119,21.50% +137285,933,4504,State-funded secondary,1464,708,756,48.40%,51.60%,34,2.30%,222,15.20%,96,1365,3,6.60%,93.20%,0.20%,191,188,1187,15.80% +137286,839,5951,State-funded special school,90,27,63,30.00%,70.00%,90,100.00%,0,0.00%,21,69,0,23.30%,76.70%,0.00%,35,30,76,39.50% +137287,871,4510,State-funded secondary,1158,407,751,35.10%,64.90%,44,3.80%,142,12.30%,598,556,4,51.60%,48.00%,0.30%,343,301,901,33.40% +137288,919,4009,State-funded secondary,1368,1368,0,100.00%,0.00%,14,1.00%,140,10.20%,165,1173,30,12.10%,85.70%,2.20%,92,85,1044,8.10% +137289,358,5407,State-funded secondary,1389,1389,0,100.00%,0.00%,1,0.10%,43,3.10%,284,1105,0,20.40%,79.60%,0.00%,42,51,1019,5.00% +137290,823,3007,State-funded primary,127,62,65,48.80%,51.20%,0,0.00%,9,7.10%,1,126,0,0.80%,99.20%,0.00%,9,9,103,8.70% +137291,823,2154,State-funded primary,43,27,16,62.80%,37.20%,4,9.30%,3,7.00%,0,43,0,0.00%,100.00%,0.00%,3,3,43,7.00% +137292,885,2204,State-funded primary,594,311,283,52.40%,47.60%,6,1.00%,71,12.00%,28,566,0,4.70%,95.30%,0.00%,102,99,535,18.50% +137293,852,3656,State-funded primary,652,350,302,53.70%,46.30%,15,2.30%,93,14.30%,326,326,0,50.00%,50.00%,0.00%,85,89,652,13.70% +137294,353,4605,State-funded secondary,1835,961,874,52.40%,47.60%,50,2.70%,54,2.90%,83,1743,9,4.50%,95.00%,0.50%,248,275,1549,17.80% +137295,208,5202,State-funded primary,408,200,208,49.00%,51.00%,12,2.90%,55,13.50%,203,205,0,49.80%,50.20%,0.00%,82,83,381,21.80% +137296,888,4626,State-funded secondary,962,501,461,52.10%,47.90%,12,1.20%,70,7.30%,7,955,0,0.70%,99.30%,0.00%,66,76,962,7.90% +137297,343,4108,State-funded secondary,890,0,890,0.00%,100.00%,20,2.20%,130,14.60%,81,809,0,9.10%,90.90%,0.00%,164,184,890,20.70% +137298,916,4064,State-funded secondary,1354,656,698,48.40%,51.60%,27,2.00%,103,7.60%,106,1248,0,7.80%,92.20%,0.00%,281,328,1354,24.20% +137299,314,5401,State-funded secondary,1083,40,1043,3.70%,96.30%,67,6.20%,110,10.20%,275,808,0,25.40%,74.60%,0.00%,85,83,801,10.40% +137300,802,4143,State-funded secondary,1513,750,763,49.60%,50.40%,43,2.80%,116,7.70%,63,1450,0,4.20%,95.80%,0.00%,228,267,1513,17.60% +137302,937,4601,State-funded secondary,791,121,670,15.30%,84.70%,2,0.30%,81,10.20%,82,705,4,10.40%,89.10%,0.50%,14,11,447,2.50% +137303,302,3515,State-funded primary,230,108,122,47.00%,53.00%,8,3.50%,21,9.10%,35,195,0,15.20%,84.80%,0.00%,1,2,202,1.00% +137304,880,3119,State-funded primary,174,82,92,47.10%,52.90%,1,0.60%,13,7.50%,11,163,0,6.30%,93.70%,0.00%,29,30,174,17.20% +137305,873,4064,State-funded secondary,1672,799,873,47.80%,52.20%,19,1.10%,246,14.70%,189,1482,1,11.30%,88.60%,0.10%,251,245,1403,17.50% +137306,811,4053,State-funded secondary,1896,951,945,50.20%,49.80%,51,2.70%,201,10.60%,165,1731,0,8.70%,91.30%,0.00%,445,460,1701,27.00% +137308,865,4064,State-funded secondary,1438,712,726,49.50%,50.50%,44,3.10%,177,12.30%,82,1351,5,5.70%,93.90%,0.30%,133,152,1222,12.40% +137309,352,4810,State-funded secondary,784,408,376,52.00%,48.00%,17,2.20%,165,21.00%,36,748,0,4.60%,95.40%,0.00%,88,75,599,12.50% +137310,882,5447,State-funded secondary,1242,105,1137,8.50%,91.50%,38,3.10%,73,5.90%,222,1016,4,17.90%,81.80%,0.30%,152,137,903,15.20% +137311,926,3053,State-funded primary,208,94,114,45.20%,54.80%,2,1.00%,41,19.70%,16,192,0,7.70%,92.30%,0.00%,46,51,208,24.50% +137312,882,5465,State-funded secondary,967,962,5,99.50%,0.50%,8,0.80%,29,3.00%,156,811,0,16.10%,83.90%,0.00%,107,125,841,14.90% +137313,933,5400,State-funded secondary,651,332,319,51.00%,49.00%,8,1.20%,56,8.60%,40,611,0,6.10%,93.90%,0.00%,57,59,535,11.00% +137314,936,4067,State-funded secondary,858,455,403,53.00%,47.00%,30,3.50%,129,15.00%,40,818,0,4.70%,95.30%,0.00%,100,116,858,13.50% +137315,850,5406,State-funded secondary,834,420,414,50.40%,49.60%,22,2.60%,80,9.60%,29,805,0,3.50%,96.50%,0.00%,223,246,834,29.50% +137317,855,4004,State-funded secondary,79,33,46,41.80%,58.20%,9,11.40%,25,31.60%,3,76,0,3.80%,96.20%,0.00%,34,36,79,45.60% +137318,204,6001,Independent school,170,0,170,0.00%,100.00%,1,0.60%,7,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137319,891,4452,State-funded secondary,1493,719,774,48.20%,51.80%,20,1.30%,173,11.60%,48,1445,0,3.20%,96.80%,0.00%,224,228,1248,18.30% +137320,380,2000,State-funded primary,325,151,174,46.50%,53.50%,6,1.80%,25,7.70%,186,131,8,57.20%,40.30%,2.50%,99,105,325,32.30% +137321,935,4003,State-funded secondary,1228,624,604,50.80%,49.20%,27,2.20%,136,11.10%,98,1107,23,8.00%,90.10%,1.90%,271,289,1106,26.10% +137322,357,1103,State-funded AP school,143,35,108,24.50%,75.50%,45,31.50%,94,65.70%,4,138,1,2.80%,96.50%,0.70%,87,109,143,76.20% +137323,213,2000,State-funded primary,422,208,214,49.30%,50.70%,19,4.50%,42,10.00%,92,330,0,21.80%,78.20%,0.00%,167,161,389,41.40% +137324,821,2005,State-funded primary,407,194,213,47.70%,52.30%,1,0.20%,23,5.70%,180,227,0,44.20%,55.80%,0.00%,150,155,407,38.10% +137327,925,6000,Independent school,88,50,38,56.80%,43.20%,0,0.00%,9,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137328,320,1107,State-funded AP school,18,2,16,11.10%,88.90%,2,11.10%,16,88.90%,2,16,0,11.10%,88.90%,0.00%,6,14,18,77.80% +137331,205,2000,State-funded primary,206,108,98,52.40%,47.60%,7,3.40%,20,9.70%,52,154,0,25.20%,74.80%,0.00%,83,85,206,41.30% +137333,202,6000,Independent school,181,91,90,50.30%,49.70%,2,1.10%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137334,931,6000,Independent school,75,10,65,13.30%,86.70%,75,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137335,371,2143,State-funded primary,245,128,117,52.20%,47.80%,4,1.60%,30,12.20%,5,240,0,2.00%,98.00%,0.00%,16,16,221,7.20% +137336,893,5401,State-funded secondary,733,358,375,48.80%,51.20%,18,2.50%,134,18.30%,11,720,2,1.50%,98.20%,0.30%,88,99,733,13.50% +137337,381,2019,State-funded primary,530,258,272,48.70%,51.30%,17,3.20%,76,14.30%,445,85,0,84.00%,16.00%,0.00%,165,164,450,36.40% +137338,909,5410,State-funded secondary,340,166,174,48.80%,51.20%,22,6.50%,30,8.80%,14,326,0,4.10%,95.90%,0.00%,43,50,340,14.70% +137339,919,4083,State-funded secondary,1419,1418,1,99.90%,0.10%,11,0.80%,195,13.70%,288,1128,3,20.30%,79.50%,0.20%,133,131,1164,11.30% +137340,857,5405,State-funded secondary,967,503,464,52.00%,48.00%,14,1.40%,141,14.60%,33,929,5,3.40%,96.10%,0.50%,146,160,967,16.50% +137341,381,2056,State-funded primary,98,48,50,49.00%,51.00%,2,2.00%,7,7.10%,0,98,0,0.00%,100.00%,0.00%,7,7,98,7.10% +137342,888,4160,State-funded secondary,828,413,415,49.90%,50.10%,15,1.80%,139,16.80%,10,818,0,1.20%,98.80%,0.00%,114,123,828,14.90% +137343,825,4095,State-funded secondary,1024,516,508,50.40%,49.60%,40,3.90%,127,12.40%,89,933,2,8.70%,91.10%,0.20%,113,122,894,13.60% +137344,825,4501,State-funded secondary,1311,630,681,48.10%,51.90%,5,0.40%,61,4.70%,203,1099,9,15.50%,83.80%,0.70%,39,36,874,4.10% +137345,850,5411,State-funded secondary,1402,725,677,51.70%,48.30%,28,2.00%,125,8.90%,157,1243,2,11.20%,88.70%,0.10%,165,178,1154,15.40% +137346,330,4012,State-funded secondary,650,647,3,99.50%,0.50%,3,0.50%,66,10.20%,367,283,0,56.50%,43.50%,0.00%,279,310,590,52.50% +137347,381,5200,State-funded primary,101,55,46,54.50%,45.50%,4,4.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,6,6,101,5.90% +137348,815,2047,State-funded primary,30,16,14,53.30%,46.70%,0,0.00%,13,43.30%,0,30,0,0.00%,100.00%,0.00%,3,3,30,10.00% +137349,839,5408,State-funded secondary,1952,976,976,50.00%,50.00%,53,2.70%,232,11.90%,393,1558,1,20.10%,79.80%,0.10%,207,189,1616,11.70% +137351,919,3986,State-funded primary,443,211,232,47.60%,52.40%,9,2.00%,22,5.00%,68,375,0,15.30%,84.70%,0.00%,38,38,408,9.30% +137352,382,4049,State-funded secondary,1314,616,698,46.90%,53.10%,19,1.40%,118,9.00%,18,1296,0,1.40%,98.60%,0.00%,174,162,1078,15.00% +137353,213,4673,State-funded secondary,1168,1088,80,93.20%,6.80%,27,2.30%,133,11.40%,360,807,1,30.80%,69.10%,0.10%,219,201,835,24.10% +137354,941,7017,State-funded special school,260,100,160,38.50%,61.50%,259,99.60%,1,0.40%,33,227,0,12.70%,87.30%,0.00%,85,63,177,35.60% +137355,825,5408,State-funded secondary,1002,505,497,50.40%,49.60%,67,6.70%,133,13.30%,81,921,0,8.10%,91.90%,0.00%,80,65,714,9.10% +137356,860,4143,State-funded secondary,775,389,386,50.20%,49.80%,20,2.60%,36,4.60%,7,762,6,0.90%,98.30%,0.80%,126,116,615,18.90% +137357,931,4140,State-funded secondary,1348,643,705,47.70%,52.30%,40,3.00%,205,15.20%,101,1247,0,7.50%,92.50%,0.00%,124,153,1102,13.90% +137358,857,2316,State-funded primary,341,171,170,50.10%,49.90%,1,0.30%,32,9.40%,18,321,2,5.30%,94.10%,0.60%,29,32,303,10.60% +137359,890,2222,State-funded primary,220,106,114,48.20%,51.80%,1,0.50%,17,7.70%,3,217,0,1.40%,98.60%,0.00%,42,42,206,20.40% +137360,390,4029,State-funded secondary,1676,830,846,49.50%,50.50%,33,2.00%,206,12.30%,116,1559,1,6.90%,93.00%,0.10%,321,299,1364,21.90% +137361,302,4012,State-funded secondary,758,332,426,43.80%,56.20%,22,2.90%,79,10.40%,515,243,0,67.90%,32.10%,0.00%,366,328,600,54.70% +137362,891,2634,State-funded primary,492,236,256,48.00%,52.00%,2,0.40%,21,4.30%,54,438,0,11.00%,89.00%,0.00%,113,115,433,26.60% +137363,812,7033,State-funded special school,218,51,167,23.40%,76.60%,218,100.00%,0,0.00%,5,213,0,2.30%,97.70%,0.00%,104,114,206,55.30% +137365,866,2200,State-funded primary,157,82,75,52.20%,47.80%,3,1.90%,6,3.80%,4,153,0,2.50%,97.50%,0.00%,8,8,116,6.90% +137366,908,2742,State-funded primary,444,224,220,50.50%,49.50%,2,0.50%,61,13.70%,3,436,5,0.70%,98.20%,1.10%,92,89,375,23.70% +137367,855,4014,State-funded secondary,637,322,315,50.50%,49.50%,22,3.50%,83,13.00%,365,272,0,57.30%,42.70%,0.00%,189,206,637,32.30% +137368,303,5404,State-funded secondary,1030,0,1030,0.00%,100.00%,17,1.70%,212,20.60%,52,952,26,5.00%,92.40%,2.50%,121,140,1030,13.60% +137369,909,5402,State-funded secondary,1698,884,814,52.10%,47.90%,55,3.20%,255,15.00%,87,1478,133,5.10%,87.00%,7.80%,249,251,1342,18.70% +137370,938,2194,State-funded primary,212,113,99,53.30%,46.70%,4,1.90%,27,12.70%,16,196,0,7.50%,92.50%,0.00%,41,41,212,19.30% +137371,865,5214,State-funded primary,168,78,90,46.40%,53.60%,5,3.00%,38,22.60%,24,144,0,14.30%,85.70%,0.00%,69,71,168,42.30% +137375,865,5400,State-funded secondary,946,463,483,48.90%,51.10%,40,4.20%,129,13.60%,211,732,3,22.30%,77.40%,0.30%,92,94,799,11.80% +137376,887,5451,State-funded secondary,1205,606,599,50.30%,49.70%,34,2.80%,195,16.20%,152,1050,3,12.60%,87.10%,0.20%,285,305,1030,29.60% +137377,873,4603,State-funded secondary,1055,567,488,53.70%,46.30%,30,2.80%,45,4.30%,60,995,0,5.70%,94.30%,0.00%,227,236,940,25.10% +137378,881,5235,State-funded primary,211,100,111,47.40%,52.60%,6,2.80%,22,10.40%,2,209,0,0.90%,99.10%,0.00%,21,21,211,10.00% +137379,305,4002,State-funded secondary,1068,1061,7,99.30%,0.70%,7,0.70%,92,8.60%,174,894,0,16.30%,83.70%,0.00%,267,283,929,30.50% +137380,303,2081,State-funded primary,554,277,277,50.00%,50.00%,21,3.80%,81,14.60%,147,406,1,26.50%,73.30%,0.20%,270,276,518,53.30% +137381,881,5233,State-funded primary,629,302,327,48.00%,52.00%,9,1.40%,47,7.50%,7,622,0,1.10%,98.90%,0.00%,37,42,629,6.70% +137382,916,5415,State-funded secondary,1070,557,513,52.10%,47.90%,22,2.10%,89,8.30%,21,1048,1,2.00%,97.90%,0.10%,135,128,839,15.30% +137383,383,4105,State-funded secondary,1847,875,972,47.40%,52.60%,10,0.50%,128,6.90%,133,1698,16,7.20%,91.90%,0.90%,321,334,1541,21.70% +137384,860,5401,State-funded secondary,1066,573,493,53.80%,46.20%,15,1.40%,116,10.90%,51,1015,0,4.80%,95.20%,0.00%,317,314,944,33.30% +137385,929,6002,Independent school,36,6,30,16.70%,83.30%,33,91.70%,3,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137386,302,5402,State-funded secondary,1713,814,899,47.50%,52.50%,74,4.30%,36,2.10%,510,1184,19,29.80%,69.10%,1.10%,248,271,1249,21.70% +137387,916,5422,State-funded secondary,1030,556,474,54.00%,46.00%,30,2.90%,162,15.70%,18,1012,0,1.70%,98.30%,0.00%,172,186,867,21.50% +137388,302,4211,State-funded secondary,914,285,629,31.20%,68.80%,16,1.80%,140,15.30%,487,426,1,53.30%,46.60%,0.10%,207,254,826,30.80% +137389,887,5429,State-funded secondary,945,927,18,98.10%,1.90%,1,0.10%,41,4.30%,173,766,6,18.30%,81.10%,0.60%,108,112,732,15.30% +137390,332,5405,State-funded secondary,612,320,292,52.30%,47.70%,14,2.30%,116,19.00%,170,442,0,27.80%,72.20%,0.00%,267,292,612,47.70% +137391,381,2053,State-funded primary,195,106,89,54.40%,45.60%,11,5.60%,29,14.90%,5,189,1,2.60%,96.90%,0.50%,48,44,177,24.90% +137392,381,2063,State-funded primary,240,133,107,55.40%,44.60%,6,2.50%,18,7.50%,5,235,0,2.10%,97.90%,0.00%,31,36,210,17.10% +137393,206,3644,State-funded primary,246,115,131,46.70%,53.30%,14,5.70%,32,13.00%,108,138,0,43.90%,56.10%,0.00%,147,147,227,64.80% +137394,812,7011,State-funded special school,139,51,88,36.70%,63.30%,139,100.00%,0,0.00%,4,135,0,2.90%,97.10%,0.00%,73,72,118,61.00% +137395,881,2971,State-funded primary,268,128,140,47.80%,52.20%,12,4.50%,27,10.10%,2,266,0,0.70%,99.30%,0.00%,37,34,236,14.40% +137396,311,4001,State-funded secondary,1019,477,542,46.80%,53.20%,63,6.20%,133,13.10%,156,862,1,15.30%,84.60%,0.10%,161,177,1019,17.40% +137397,886,2246,State-funded primary,267,143,124,53.60%,46.40%,2,0.70%,12,4.50%,4,263,0,1.50%,98.50%,0.00%,16,17,214,7.90% +137398,381,2083,State-funded primary,457,232,225,50.80%,49.20%,9,2.00%,37,8.10%,18,439,0,3.90%,96.10%,0.00%,59,62,412,15.00% +137401,855,4268,State-funded secondary,837,415,422,49.60%,50.40%,25,3.00%,124,14.80%,83,750,4,9.90%,89.60%,0.50%,141,148,837,17.70% +137402,908,2437,State-funded primary,454,223,231,49.10%,50.90%,10,2.20%,31,6.80%,3,451,0,0.70%,99.30%,0.00%,61,64,408,15.70% +137403,850,3662,State-funded primary,217,118,99,54.40%,45.60%,10,4.60%,20,9.20%,17,200,0,7.80%,92.20%,0.00%,13,17,217,7.80% +137405,881,5232,State-funded primary,403,182,221,45.20%,54.80%,9,2.20%,40,9.90%,5,398,0,1.20%,98.80%,0.00%,36,37,403,9.20% +137407,312,4600,State-funded secondary,1260,649,611,51.50%,48.50%,19,1.50%,154,12.20%,181,1078,1,14.40%,85.60%,0.10%,115,106,979,10.80% +137409,891,4617,State-funded secondary,1159,631,528,54.40%,45.60%,4,0.30%,55,4.70%,265,894,0,22.90%,77.10%,0.00%,145,144,916,15.70% +137410,916,3357,State-funded primary,184,97,87,52.70%,47.30%,5,2.70%,34,18.50%,42,142,0,22.80%,77.20%,0.00%,55,55,184,29.90% +137411,865,3456,State-funded primary,149,72,77,48.30%,51.70%,0,0.00%,8,5.40%,1,148,0,0.70%,99.30%,0.00%,12,12,149,8.10% +137412,815,4203,State-funded secondary,714,354,360,49.60%,50.40%,23,3.20%,88,12.30%,51,661,2,7.10%,92.60%,0.30%,163,171,714,23.90% +137413,210,2857,State-funded primary,247,113,134,45.70%,54.30%,6,2.40%,22,8.90%,130,117,0,52.60%,47.40%,0.00%,112,113,226,50.00% +137414,311,4006,State-funded secondary,1043,421,622,40.40%,59.60%,23,2.20%,43,4.10%,148,879,16,14.20%,84.30%,1.50%,188,202,1043,19.40% +137415,884,2095,State-funded primary,195,84,111,43.10%,56.90%,5,2.60%,32,16.40%,4,191,0,2.10%,97.90%,0.00%,54,54,195,27.70% +137416,938,4103,State-funded secondary,1523,695,828,45.60%,54.40%,45,3.00%,225,14.80%,124,1399,0,8.10%,91.90%,0.00%,145,161,1523,10.60% +137417,303,2029,State-funded primary,429,219,210,51.00%,49.00%,16,3.70%,108,25.20%,131,298,0,30.50%,69.50%,0.00%,216,226,400,56.50% +137418,317,4605,State-funded secondary,760,760,0,100.00%,0.00%,6,0.80%,28,3.70%,449,311,0,59.10%,40.90%,0.00%,154,144,620,23.20% +137419,935,3314,State-funded primary,412,193,219,46.80%,53.20%,11,2.70%,104,25.20%,41,357,14,10.00%,86.70%,3.40%,84,85,412,20.60% +137421,888,4630,State-funded secondary,1272,663,609,52.10%,47.90%,25,2.00%,119,9.40%,58,1214,0,4.60%,95.40%,0.00%,123,127,1022,12.40% +137422,850,5204,State-funded primary,485,233,252,48.00%,52.00%,4,0.80%,156,32.20%,87,394,4,17.90%,81.20%,0.80%,35,38,485,7.80% +137423,303,4009,State-funded secondary,1445,579,866,40.10%,59.90%,2,0.10%,11,0.80%,128,1305,12,8.90%,90.30%,0.80%,47,47,959,4.90% +137424,382,4048,State-funded secondary,1375,1375,0,100.00%,0.00%,15,1.10%,115,8.40%,662,677,36,48.10%,49.20%,2.60%,339,304,1156,26.30% +137425,892,3319,State-funded primary,259,122,137,47.10%,52.90%,2,0.80%,30,11.60%,126,133,0,48.60%,51.40%,0.00%,48,40,217,18.40% +137426,865,5204,State-funded primary,168,76,92,45.20%,54.80%,2,1.20%,42,25.00%,11,157,0,6.50%,93.50%,0.00%,46,54,168,32.10% +137427,873,5401,State-funded secondary,674,323,351,47.90%,52.10%,16,2.40%,40,5.90%,17,656,1,2.50%,97.30%,0.10%,92,100,674,14.80% +137428,891,3765,State-funded primary,393,203,190,51.70%,48.30%,2,0.50%,20,5.10%,95,298,0,24.20%,75.80%,0.00%,36,37,393,9.40% +137430,208,2332,State-funded primary,200,98,102,49.00%,51.00%,9,4.50%,26,13.00%,110,90,0,55.00%,45.00%,0.00%,100,95,184,51.60% +137431,926,5401,State-funded secondary,692,362,330,52.30%,47.70%,21,3.00%,56,8.10%,32,655,5,4.60%,94.70%,0.70%,156,172,692,24.90% +137432,916,2168,State-funded primary,362,185,177,51.10%,48.90%,7,1.90%,37,10.20%,32,330,0,8.80%,91.20%,0.00%,65,74,362,20.40% +137433,935,7000,State-funded special school,215,73,142,34.00%,66.00%,214,99.50%,1,0.50%,8,207,0,3.70%,96.30%,0.00%,82,88,188,46.80% +137434,873,4038,State-funded secondary,879,417,462,47.40%,52.60%,46,5.20%,53,6.00%,77,797,5,8.80%,90.70%,0.60%,116,129,879,14.70% +137435,870,7001,State-funded special school,204,60,144,29.40%,70.60%,204,100.00%,0,0.00%,69,135,0,33.80%,66.20%,0.00%,77,70,173,40.50% +137436,343,4101,State-funded secondary,1123,555,568,49.40%,50.60%,44,3.90%,111,9.90%,22,1101,0,2.00%,98.00%,0.00%,94,111,894,12.40% +137437,933,5203,State-funded primary,145,70,75,48.30%,51.70%,1,0.70%,14,9.70%,12,133,0,8.30%,91.70%,0.00%,13,13,145,9.00% +137438,384,2131,State-funded primary,367,165,202,45.00%,55.00%,11,3.00%,32,8.70%,33,334,0,9.00%,91.00%,0.00%,39,39,314,12.40% +137439,892,3320,State-funded primary,247,127,120,51.40%,48.60%,4,1.60%,12,4.90%,126,121,0,51.00%,49.00%,0.00%,55,59,216,27.30% +137440,801,4100,State-funded secondary,1650,777,873,47.10%,52.90%,11,0.70%,375,22.70%,812,774,64,49.20%,46.90%,3.90%,451,428,1217,35.20% +137441,209,2599,State-funded primary,440,231,209,52.50%,47.50%,21,4.80%,72,16.40%,210,230,0,47.70%,52.30%,0.00%,201,204,413,49.40% +137442,204,4302,State-funded secondary,1167,1167,0,100.00%,0.00%,31,2.70%,158,13.50%,396,770,1,33.90%,66.00%,0.10%,371,354,893,39.60% +137443,892,2898,State-funded primary,195,88,107,45.10%,54.90%,0,0.00%,30,15.40%,39,156,0,20.00%,80.00%,0.00%,85,79,177,44.60% +137444,381,5402,State-funded secondary,1734,868,866,50.10%,49.90%,39,2.20%,151,8.70%,74,1659,1,4.30%,95.70%,0.10%,334,384,1734,22.10% +137445,881,4323,State-funded secondary,1202,597,605,49.70%,50.30%,59,4.90%,149,12.40%,99,1103,0,8.20%,91.80%,0.00%,310,364,1202,30.30% +137446,894,5400,State-funded secondary,1055,91,964,8.60%,91.40%,1,0.10%,80,7.60%,109,943,3,10.30%,89.40%,0.30%,34,42,701,6.00% +137447,925,5408,State-funded secondary,1295,633,662,48.90%,51.10%,26,2.00%,207,16.00%,199,1095,1,15.40%,84.60%,0.10%,376,352,1070,32.90% +137448,359,4025,State-funded secondary,1278,613,665,48.00%,52.00%,20,1.60%,221,17.30%,52,1226,0,4.10%,95.90%,0.00%,253,272,1278,21.30% +137449,895,4165,State-funded secondary,1317,610,707,46.30%,53.70%,48,3.60%,52,3.90%,40,1270,7,3.00%,96.40%,0.50%,127,134,1139,11.80% +137450,895,2133,State-funded primary,424,205,219,48.30%,51.70%,2,0.50%,50,11.80%,59,365,0,13.90%,86.10%,0.00%,41,47,424,11.10% +137451,925,5224,State-funded primary,437,209,228,47.80%,52.20%,11,2.50%,75,17.20%,63,374,0,14.40%,85.60%,0.00%,141,149,437,34.10% +137452,839,5400,State-funded secondary,1163,30,1133,2.60%,97.40%,7,0.60%,39,3.40%,109,1052,2,9.40%,90.50%,0.20%,74,59,874,6.80% +137453,813,4091,State-funded secondary,726,395,331,54.40%,45.60%,14,1.90%,47,6.50%,28,692,6,3.90%,95.30%,0.80%,163,164,657,25.00% +137454,878,3023,State-funded primary,80,36,44,45.00%,55.00%,0,0.00%,10,12.50%,1,78,1,1.30%,97.50%,1.30%,7,7,80,8.80% +137455,371,2091,State-funded primary,344,171,173,49.70%,50.30%,7,2.00%,60,17.40%,20,323,1,5.80%,93.90%,0.30%,150,155,344,45.10% +137456,883,5440,State-funded secondary,1347,647,700,48.00%,52.00%,71,5.30%,102,7.60%,68,1276,3,5.00%,94.70%,0.20%,260,306,1347,22.70% +137457,929,4424,State-funded secondary,1995,986,1009,49.40%,50.60%,31,1.60%,207,10.40%,44,1943,8,2.20%,97.40%,0.40%,360,365,1716,21.30% +137458,886,5466,State-funded secondary,1351,671,680,49.70%,50.30%,15,1.10%,134,9.90%,53,1293,5,3.90%,95.70%,0.40%,335,342,1172,29.20% +137459,935,7003,State-funded special school,158,63,95,39.90%,60.10%,158,100.00%,0,0.00%,1,157,0,0.60%,99.40%,0.00%,79,84,158,53.20% +137460,866,2051,State-funded primary,206,89,117,43.20%,56.80%,5,2.40%,9,4.40%,9,197,0,4.40%,95.60%,0.00%,33,37,206,18.00% +137461,926,4060,State-funded secondary,1641,818,823,49.80%,50.20%,24,1.50%,108,6.60%,67,1571,3,4.10%,95.70%,0.20%,173,180,1320,13.60% +137462,823,4011,State-funded secondary,1007,510,497,50.60%,49.40%,26,2.60%,110,10.90%,71,916,20,7.10%,91.00%,2.00%,105,108,719,15.00% +137463,394,2177,State-funded primary,315,145,170,46.00%,54.00%,4,1.30%,27,8.60%,7,308,0,2.20%,97.80%,0.00%,42,42,284,14.80% +137464,812,4011,State-funded secondary,925,473,452,51.10%,48.90%,24,2.60%,77,8.30%,48,877,0,5.20%,94.80%,0.00%,323,382,925,41.30% +137465,869,5402,State-funded secondary,1951,1002,949,51.40%,48.60%,28,1.40%,329,16.90%,233,1714,4,11.90%,87.90%,0.20%,121,108,1347,8.00% +137466,908,2032,State-funded primary,211,100,111,47.40%,52.60%,3,1.40%,13,6.20%,3,208,0,1.40%,98.60%,0.00%,29,33,211,15.60% +137467,886,2233,State-funded primary,73,32,41,43.80%,56.20%,6,8.20%,11,15.10%,3,70,0,4.10%,95.90%,0.00%,33,34,73,46.60% +137468,908,2030,State-funded primary,164,82,82,50.00%,50.00%,5,3.00%,14,8.50%,2,159,3,1.20%,97.00%,1.80%,38,36,135,26.70% +137469,822,5951,State-funded special school,179,53,126,29.60%,70.40%,178,99.40%,1,0.60%,45,131,3,25.10%,73.20%,1.70%,74,63,157,40.10% +137471,354,5205,State-funded primary,343,166,177,48.40%,51.60%,11,3.20%,24,7.00%,33,310,0,9.60%,90.40%,0.00%,39,48,343,14.00% +137472,371,4029,State-funded secondary,1079,532,547,49.30%,50.70%,16,1.50%,90,8.30%,119,959,1,11.00%,88.90%,0.10%,375,409,1079,37.90% +137474,886,5444,State-funded secondary,985,408,577,41.40%,58.60%,3,0.30%,82,8.30%,118,853,14,12.00%,86.60%,1.40%,85,79,729,10.80% +137475,873,4503,State-funded secondary,1998,1012,986,50.70%,49.30%,75,3.80%,211,10.60%,243,1726,29,12.20%,86.40%,1.50%,313,308,1593,19.30% +137476,344,5401,State-funded secondary,1053,0,1053,0.00%,100.00%,5,0.50%,73,6.90%,83,970,0,7.90%,92.10%,0.00%,73,64,784,8.20% +137477,916,3061,State-funded primary,367,181,186,49.30%,50.70%,1,0.30%,29,7.90%,38,321,8,10.40%,87.50%,2.20%,32,33,264,12.50% +137478,908,7002,State-funded special school,177,60,117,33.90%,66.10%,177,100.00%,0,0.00%,0,177,0,0.00%,100.00%,0.00%,91,91,177,51.40% +137479,353,2017,State-funded primary,451,208,243,46.10%,53.90%,17,3.80%,145,32.20%,75,367,9,16.60%,81.40%,2.00%,241,242,398,60.80% +137480,892,2110,State-funded primary,665,311,354,46.80%,53.20%,5,0.80%,67,10.10%,153,512,0,23.00%,77.00%,0.00%,312,307,603,50.90% +137481,886,3112,State-funded primary,128,53,75,41.40%,58.60%,6,4.70%,24,18.80%,12,116,0,9.40%,90.60%,0.00%,27,27,128,21.10% +137482,371,2110,State-funded primary,244,122,122,50.00%,50.00%,8,3.30%,28,11.50%,19,225,0,7.80%,92.20%,0.00%,94,77,164,47.00% +137483,886,3110,State-funded primary,85,37,48,43.50%,56.50%,4,4.70%,30,35.30%,3,82,0,3.50%,96.50%,0.00%,20,20,85,23.50% +137484,886,5408,State-funded secondary,2103,1143,960,54.40%,45.60%,62,2.90%,195,9.30%,88,1931,84,4.20%,91.80%,4.00%,512,515,1750,29.40% +137487,382,6012,State-funded secondary,1008,435,573,43.20%,56.80%,21,2.10%,112,11.10%,251,681,76,24.90%,67.60%,7.50%,286,298,1008,29.60% +137488,937,2000,State-funded primary,75,43,32,57.30%,42.70%,0,0.00%,5,6.70%,4,71,0,5.30%,94.70%,0.00%,9,9,75,12.00% +137491,895,6010,State-funded secondary,1504,62,1442,4.10%,95.90%,52,3.50%,149,9.90%,90,1395,19,6.00%,92.80%,1.30%,155,160,1243,12.90% +137492,330,2032,State-funded primary,421,177,244,42.00%,58.00%,1,0.20%,41,9.70%,98,321,2,23.30%,76.20%,0.50%,45,55,421,13.10% +137493,800,7035,State-funded special school,220,65,155,29.50%,70.50%,220,100.00%,0,0.00%,9,211,0,4.10%,95.90%,0.00%,93,81,178,45.50% +137498,888,6018,State-funded secondary,225,125,100,55.60%,44.40%,5,2.20%,44,19.60%,4,221,0,1.80%,98.20%,0.00%,22,28,225,12.40% +137500,382,4021,State-funded secondary,1041,518,523,49.80%,50.20%,33,3.20%,140,13.40%,397,642,2,38.10%,61.70%,0.20%,441,458,1041,44.00% +137502,302,6001,Independent school,113,86,27,76.10%,23.90%,0,0.00%,6,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137505,204,6002,Independent school,917,917,0,100.00%,0.00%,7,0.80%,104,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137507,319,7005,State-funded special school,83,7,76,8.40%,91.60%,81,97.60%,2,2.40%,2,81,0,2.40%,97.60%,0.00%,66,70,83,84.30% +137511,841,6006,Independent school,62,7,55,11.30%,88.70%,60,96.80%,2,3.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137512,888,5205,State-funded primary,227,103,124,45.40%,54.60%,2,0.90%,17,7.50%,4,222,1,1.80%,97.80%,0.40%,20,23,197,11.70% +137513,909,5205,State-funded primary,151,85,66,56.30%,43.70%,2,1.30%,9,6.00%,1,150,0,0.70%,99.30%,0.00%,17,17,132,12.90% +137514,343,4105,State-funded secondary,1438,650,788,45.20%,54.80%,25,1.70%,157,10.90%,57,1379,2,4.00%,95.90%,0.10%,367,365,1303,28.00% +137515,881,5454,State-funded secondary,1149,1149,0,100.00%,0.00%,2,0.20%,18,1.60%,363,785,1,31.60%,68.30%,0.10%,25,34,896,3.80% +137516,881,3710,State-funded primary,203,105,98,51.70%,48.30%,5,2.50%,11,5.40%,7,196,0,3.40%,96.60%,0.00%,19,20,203,9.90% +137517,908,2704,State-funded primary,104,50,54,48.10%,51.90%,1,1.00%,13,12.50%,1,103,0,1.00%,99.00%,0.00%,14,16,104,15.40% +137518,801,2040,State-funded primary,367,166,201,45.20%,54.80%,7,1.90%,56,15.30%,45,321,1,12.30%,87.50%,0.30%,36,37,367,10.10% +137519,382,2048,State-funded primary,496,249,247,50.20%,49.80%,23,4.60%,39,7.90%,52,444,0,10.50%,89.50%,0.00%,82,85,496,17.10% +137520,343,4113,State-funded secondary,1091,569,522,52.20%,47.80%,29,2.70%,97,8.90%,24,1067,0,2.20%,97.80%,0.00%,260,276,989,27.90% +137522,822,5406,State-funded secondary,897,442,455,49.30%,50.70%,10,1.10%,109,12.20%,66,831,0,7.40%,92.60%,0.00%,134,146,897,16.30% +137523,800,4138,State-funded secondary,1326,619,707,46.70%,53.30%,26,2.00%,95,7.20%,61,1255,10,4.60%,94.60%,0.80%,124,118,1121,10.50% +137525,892,2074,State-funded primary,235,118,117,50.20%,49.80%,1,0.40%,28,11.90%,110,123,2,46.80%,52.30%,0.90%,86,88,208,42.30% +137526,892,3331,State-funded primary,234,118,116,50.40%,49.60%,2,0.90%,50,21.40%,120,114,0,51.30%,48.70%,0.00%,117,117,209,56.00% +137527,873,4040,State-funded secondary,633,285,348,45.00%,55.00%,41,6.50%,46,7.30%,41,592,0,6.50%,93.50%,0.00%,126,128,633,20.20% +137528,878,2474,State-funded primary,414,198,216,47.80%,52.20%,9,2.20%,59,14.30%,3,411,0,0.70%,99.30%,0.00%,58,60,414,14.50% +137529,886,2288,State-funded primary,174,77,97,44.30%,55.70%,4,2.30%,13,7.50%,3,171,0,1.70%,98.30%,0.00%,15,15,138,10.90% +137531,309,4036,State-funded secondary,1810,929,881,51.30%,48.70%,61,3.40%,335,18.50%,522,1279,9,28.80%,70.70%,0.50%,273,165,1158,14.20% +137532,919,5415,State-funded secondary,1543,780,763,50.60%,49.40%,22,1.40%,80,5.20%,255,1287,1,16.50%,83.40%,0.10%,182,186,1200,15.50% +137533,343,4100,State-funded secondary,1390,636,754,45.80%,54.20%,9,0.60%,157,11.30%,9,1381,0,0.60%,99.40%,0.00%,155,174,1165,14.90% +137535,850,4100,State-funded secondary,983,479,504,48.70%,51.30%,41,4.20%,187,19.00%,53,930,0,5.40%,94.60%,0.00%,161,173,983,17.60% +137537,909,3052,State-funded primary,163,74,89,45.40%,54.60%,4,2.50%,32,19.60%,3,160,0,1.80%,98.20%,0.00%,16,16,138,11.60% +137538,850,5416,State-funded secondary,1239,635,604,51.30%,48.70%,17,1.40%,96,7.70%,63,1175,1,5.10%,94.80%,0.10%,113,128,1239,10.30% +137539,302,5409,State-funded secondary,726,0,726,0.00%,100.00%,23,3.20%,27,3.70%,59,664,3,8.10%,91.50%,0.40%,46,39,534,7.30% +137540,855,4055,State-funded secondary,825,392,433,47.50%,52.50%,16,1.90%,129,15.60%,26,799,0,3.20%,96.80%,0.00%,116,129,825,15.60% +137541,926,5407,State-funded secondary,1190,618,572,51.90%,48.10%,18,1.50%,166,13.90%,101,1089,0,8.50%,91.50%,0.00%,359,370,1190,31.10% +137542,356,2057,State-funded primary,230,113,117,49.10%,50.90%,6,2.60%,21,9.10%,6,224,0,2.60%,97.40%,0.00%,10,8,213,3.80% +137543,830,5210,State-funded primary,372,195,177,52.40%,47.60%,7,1.90%,28,7.50%,4,368,0,1.10%,98.90%,0.00%,106,107,372,28.80% +137544,881,3460,State-funded primary,102,48,54,47.10%,52.90%,4,3.90%,11,10.80%,2,100,0,2.00%,98.00%,0.00%,9,14,102,13.70% +137545,381,5203,State-funded primary,205,98,107,47.80%,52.20%,6,2.90%,51,24.90%,7,198,0,3.40%,96.60%,0.00%,8,10,205,4.90% +137546,307,4602,State-funded secondary,1633,821,812,50.30%,49.70%,64,3.90%,32,2.00%,213,1414,6,13.00%,86.60%,0.40%,177,169,985,17.20% +137547,873,4055,State-funded secondary,682,355,327,52.10%,47.90%,32,4.70%,114,16.70%,34,647,1,5.00%,94.90%,0.10%,148,161,682,23.60% +137548,800,4134,State-funded secondary,940,448,492,47.70%,52.30%,29,3.10%,118,12.60%,26,910,4,2.80%,96.80%,0.40%,214,218,777,28.10% +137549,883,4394,State-funded secondary,1491,739,752,49.60%,50.40%,64,4.30%,99,6.60%,407,1059,25,27.30%,71.00%,1.70%,158,139,1006,13.80% +137550,892,2939,State-funded primary,448,216,232,48.20%,51.80%,4,0.90%,79,17.60%,190,256,2,42.40%,57.10%,0.40%,185,192,413,46.50% +137551,925,5227,State-funded primary,304,142,162,46.70%,53.30%,11,3.60%,41,13.50%,42,262,0,13.80%,86.20%,0.00%,102,90,248,36.30% +137552,881,4343,State-funded secondary,1049,497,552,47.40%,52.60%,24,2.30%,33,3.10%,156,892,1,14.90%,85.00%,0.10%,273,312,1049,29.70% +137553,860,4183,State-funded secondary,1002,479,523,47.80%,52.20%,17,1.70%,129,12.90%,55,945,2,5.50%,94.30%,0.20%,155,171,913,18.70% +137554,881,7063,State-funded special school,260,85,175,32.70%,67.30%,260,100.00%,0,0.00%,7,253,0,2.70%,97.30%,0.00%,109,93,198,47.00% +137555,823,2046,State-funded primary,81,44,37,54.30%,45.70%,3,3.70%,7,8.60%,0,81,0,0.00%,100.00%,0.00%,3,3,73,4.10% +137556,355,2090,State-funded primary,473,224,249,47.40%,52.60%,9,1.90%,36,7.60%,18,455,0,3.80%,96.20%,0.00%,12,12,414,2.90% +137558,320,5400,State-funded secondary,1537,754,783,49.10%,50.90%,27,1.80%,286,18.60%,536,999,2,34.90%,65.00%,0.10%,331,314,1193,26.30% +137560,330,6009,Independent school,85,0,85,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137561,856,6011,Independent school,215,179,36,83.30%,16.70%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137563,212,2040,State-funded primary,953,482,471,50.60%,49.40%,24,2.50%,95,10.00%,290,663,0,30.40%,69.60%,0.00%,127,125,906,13.80% +137564,825,4051,State-funded secondary,1264,564,700,44.60%,55.40%,5,0.40%,68,5.40%,399,852,13,31.60%,67.40%,1.00%,105,101,904,11.20% +137565,925,5203,State-funded primary,633,317,316,50.10%,49.90%,16,2.50%,70,11.10%,39,594,0,6.20%,93.80%,0.00%,133,142,633,22.40% +137566,206,2643,State-funded primary,447,232,215,51.90%,48.10%,21,4.70%,54,12.10%,188,259,0,42.10%,57.90%,0.00%,115,114,414,27.50% +137567,306,6000,Independent school,18,8,10,44.40%,55.60%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137569,307,2000,State-funded primary,447,223,224,49.90%,50.10%,11,2.50%,40,8.90%,272,175,0,60.90%,39.10%,0.00%,60,60,414,14.50% +137570,825,2002,State-funded primary,445,214,231,48.10%,51.90%,14,3.10%,65,14.60%,87,357,1,19.60%,80.20%,0.20%,94,95,417,22.80% +137572,925,4000,State-funded secondary,1475,750,725,50.80%,49.20%,39,2.60%,244,16.50%,126,1348,1,8.50%,91.40%,0.10%,256,268,1242,21.60% +137575,314,2006,State-funded primary,305,149,156,48.90%,51.10%,23,7.50%,75,24.60%,139,166,0,45.60%,54.40%,0.00%,90,93,305,30.50% +137577,383,4026,State-funded secondary,1490,693,797,46.50%,53.50%,11,0.70%,177,11.90%,139,1348,3,9.30%,90.50%,0.20%,423,473,1490,31.70% +137578,330,4001,State-funded secondary,827,389,438,47.00%,53.00%,15,1.80%,211,25.50%,180,647,0,21.80%,78.20%,0.00%,623,629,803,78.30% +137581,886,4001,State-funded secondary,766,345,421,45.00%,55.00%,15,2.00%,53,6.90%,188,559,19,24.50%,73.00%,2.50%,247,269,695,38.70% +137582,896,4000,State-funded secondary,560,277,283,49.50%,50.50%,13,2.30%,104,18.60%,41,519,0,7.30%,92.70%,0.00%,174,190,560,33.90% +137583,801,6029,Independent school,45,13,32,28.90%,71.10%,6,13.30%,21,46.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137594,873,7092,State-funded special school,126,6,120,4.80%,95.20%,126,100.00%,0,0.00%,0,125,1,0.00%,99.20%,0.80%,76,66,100,66.00% +137595,936,5405,State-funded secondary,963,496,467,51.50%,48.50%,27,2.80%,146,15.20%,228,729,6,23.70%,75.70%,0.60%,166,193,848,22.80% +137596,373,1100,State-funded AP school,199,49,150,24.60%,75.40%,40,20.10%,106,53.30%,60,139,0,30.20%,69.80%,0.00%,157,164,199,82.40% +137597,937,6000,Independent school,22,6,16,27.30%,72.70%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137598,929,4437,State-funded secondary,545,255,290,46.80%,53.20%,13,2.40%,72,13.20%,37,508,0,6.80%,93.20%,0.00%,139,123,450,27.30% +137599,925,2072,State-funded primary,685,342,343,49.90%,50.10%,15,2.20%,95,13.90%,40,645,0,5.80%,94.20%,0.00%,91,89,630,14.10% +137600,925,4067,State-funded secondary,558,253,305,45.30%,54.70%,21,3.80%,59,10.60%,18,540,0,3.20%,96.80%,0.00%,176,192,558,34.40% +137601,352,3040,State-funded primary,658,327,331,49.70%,50.30%,24,3.60%,82,12.50%,581,76,1,88.30%,11.60%,0.20%,252,239,598,40.00% +137602,909,5211,State-funded primary,240,116,124,48.30%,51.70%,13,5.40%,14,5.80%,3,237,0,1.30%,98.80%,0.00%,40,40,211,19.00% +137603,371,4033,State-funded secondary,1393,723,670,51.90%,48.10%,16,1.10%,182,13.10%,60,1327,6,4.30%,95.30%,0.40%,218,222,1168,19.00% +137604,343,4109,State-funded secondary,1037,1037,0,100.00%,0.00%,11,1.10%,134,12.90%,66,971,0,6.40%,93.60%,0.00%,159,176,1037,17.00% +137605,850,7043,State-funded special school,236,78,158,33.10%,66.90%,236,100.00%,0,0.00%,8,228,0,3.40%,96.60%,0.00%,89,86,219,39.30% +137606,830,5408,State-funded secondary,1341,669,672,49.90%,50.10%,27,2.00%,163,12.20%,32,1309,0,2.40%,97.60%,0.00%,350,341,1115,30.60% +137607,881,2850,State-funded primary,409,197,212,48.20%,51.80%,13,3.20%,32,7.80%,44,365,0,10.80%,89.20%,0.00%,35,36,409,8.80% +137608,884,4022,State-funded secondary,263,141,122,53.60%,46.40%,6,2.30%,19,7.20%,19,244,0,7.20%,92.80%,0.00%,38,45,263,17.10% +137609,886,5404,State-funded secondary,1381,659,722,47.70%,52.30%,29,2.10%,171,12.40%,186,1183,12,13.50%,85.70%,0.90%,222,224,1162,19.30% +137611,812,3300,State-funded primary,622,282,340,45.30%,54.70%,19,3.10%,74,11.90%,16,606,0,2.60%,97.40%,0.00%,179,185,622,29.70% +137612,343,4106,State-funded secondary,1118,571,547,51.10%,48.90%,8,0.70%,166,14.80%,19,1099,0,1.70%,98.30%,0.00%,131,120,907,13.20% +137613,940,5406,State-funded secondary,1027,507,520,49.40%,50.60%,11,1.10%,174,16.90%,55,972,0,5.40%,94.60%,0.00%,150,172,876,19.60% +137614,941,4022,State-funded secondary,1389,652,737,46.90%,53.10%,19,1.40%,103,7.40%,170,1217,2,12.20%,87.60%,0.10%,157,169,1195,14.10% +137615,886,3372,State-funded primary,441,230,211,52.20%,47.80%,15,3.40%,32,7.30%,39,402,0,8.80%,91.20%,0.00%,37,38,441,8.60% +137616,908,2134,State-funded primary,237,127,110,53.60%,46.40%,6,2.50%,46,19.40%,8,229,0,3.40%,96.60%,0.00%,39,38,201,18.90% +137617,855,4044,State-funded secondary,1178,577,601,49.00%,51.00%,34,2.90%,116,9.80%,78,1099,1,6.60%,93.30%,0.10%,181,205,1178,17.40% +137618,313,4023,State-funded secondary,892,426,466,47.80%,52.20%,55,6.20%,172,19.30%,410,464,18,46.00%,52.00%,2.00%,344,369,892,41.40% +137620,866,2194,State-funded primary,146,78,68,53.40%,46.60%,4,2.70%,27,18.50%,26,120,0,17.80%,82.20%,0.00%,17,17,146,11.60% +137621,926,5406,State-funded secondary,737,384,353,52.10%,47.90%,10,1.40%,101,13.70%,51,686,0,6.90%,93.10%,0.00%,146,145,623,23.30% +137622,841,4603,State-funded secondary,1359,719,640,52.90%,47.10%,18,1.30%,139,10.20%,215,1144,0,15.80%,84.20%,0.00%,207,208,1070,19.40% +137623,908,2515,State-funded primary,146,53,93,36.30%,63.70%,1,0.70%,15,10.30%,1,145,0,0.70%,99.30%,0.00%,11,13,126,10.30% +137624,884,2014,State-funded primary,202,85,117,42.10%,57.90%,3,1.50%,24,11.90%,10,192,0,5.00%,95.00%,0.00%,30,31,169,18.30% +137625,885,4028,State-funded secondary,1370,700,670,51.10%,48.90%,25,1.80%,169,12.30%,64,1305,1,4.70%,95.30%,0.10%,201,208,1104,18.80% +137626,873,3002,State-funded primary,204,102,102,50.00%,50.00%,4,2.00%,27,13.20%,13,187,4,6.40%,91.70%,2.00%,26,26,204,12.70% +137627,801,4602,State-funded secondary,1268,623,645,49.10%,50.90%,16,1.30%,106,8.40%,273,990,5,21.50%,78.10%,0.40%,113,109,1042,10.50% +137628,891,4408,State-funded secondary,1380,680,700,49.30%,50.70%,16,1.20%,170,12.30%,44,1336,0,3.20%,96.80%,0.00%,264,271,1196,22.70% +137629,371,2108,State-funded primary,295,147,148,49.80%,50.20%,3,1.00%,24,8.10%,2,293,0,0.70%,99.30%,0.00%,106,106,227,46.70% +137630,887,4167,State-funded secondary,888,888,0,100.00%,0.00%,7,0.80%,137,15.40%,58,829,1,6.50%,93.40%,0.10%,248,297,770,38.60% +137631,881,2811,State-funded primary,348,170,178,48.90%,51.10%,8,2.30%,52,14.90%,14,334,0,4.00%,96.00%,0.00%,33,59,348,17.00% +137632,823,4004,State-funded secondary,991,482,509,48.60%,51.40%,18,1.80%,137,13.80%,26,963,2,2.60%,97.20%,0.20%,132,142,991,14.30% +137633,312,5400,State-funded secondary,1268,583,685,46.00%,54.00%,36,2.80%,157,12.40%,401,855,12,31.60%,67.40%,0.90%,259,236,933,25.30% +137634,916,5409,State-funded secondary,1449,720,729,49.70%,50.30%,35,2.40%,178,12.30%,81,1368,0,5.60%,94.40%,0.00%,190,196,1243,15.80% +137635,312,5402,State-funded secondary,1419,671,748,47.30%,52.70%,62,4.40%,169,11.90%,369,1050,0,26.00%,74.00%,0.00%,158,159,1162,13.70% +137636,823,4038,State-funded secondary,595,281,314,47.20%,52.80%,36,6.10%,113,19.00%,43,552,0,7.20%,92.80%,0.00%,113,115,595,19.30% +137637,919,4200,State-funded secondary,1418,650,768,45.80%,54.20%,32,2.30%,112,7.90%,155,1263,0,10.90%,89.10%,0.00%,172,194,1194,16.20% +137638,840,4001,State-funded secondary,1624,859,765,52.90%,47.10%,21,1.30%,206,12.70%,54,1570,0,3.30%,96.70%,0.00%,490,512,1491,34.30% +137639,873,3063,State-funded primary,327,145,182,44.30%,55.70%,15,4.60%,59,18.00%,12,315,0,3.70%,96.30%,0.00%,42,44,327,13.50% +137640,855,4505,State-funded secondary,1571,749,822,47.70%,52.30%,110,7.00%,244,15.50%,71,1496,4,4.50%,95.20%,0.30%,243,243,1241,19.60% +137641,888,3348,State-funded primary,271,141,130,52.00%,48.00%,2,0.70%,19,7.00%,8,263,0,3.00%,97.00%,0.00%,48,48,271,17.70% +137642,878,3307,State-funded primary,83,41,42,49.40%,50.60%,4,4.80%,9,10.80%,3,79,1,3.60%,95.20%,1.20%,14,14,83,16.90% +137643,384,2061,State-funded primary,232,108,124,46.60%,53.40%,3,1.30%,18,7.80%,5,227,0,2.20%,97.80%,0.00%,54,55,205,26.80% +137644,878,2727,State-funded primary,347,175,172,50.40%,49.60%,8,2.30%,68,19.60%,11,336,0,3.20%,96.80%,0.00%,75,76,311,24.40% +137645,302,5400,State-funded secondary,1245,549,696,44.10%,55.90%,59,4.70%,198,15.90%,687,553,5,55.20%,44.40%,0.40%,441,461,1046,44.10% +137647,878,2441,State-funded primary,188,88,100,46.80%,53.20%,7,3.70%,30,16.00%,6,182,0,3.20%,96.80%,0.00%,43,43,188,22.90% +137648,210,2500,State-funded primary,538,261,277,48.50%,51.50%,29,5.40%,85,15.80%,325,213,0,60.40%,39.60%,0.00%,115,115,486,23.70% +137649,878,3020,State-funded primary,172,74,98,43.00%,57.00%,10,5.80%,26,15.10%,1,171,0,0.60%,99.40%,0.00%,34,36,172,20.90% +137650,865,5406,State-funded secondary,954,476,478,49.90%,50.10%,43,4.50%,215,22.50%,38,915,1,4.00%,95.90%,0.10%,204,208,847,24.60% +137651,878,3019,State-funded primary,126,54,72,42.90%,57.10%,6,4.80%,17,13.50%,4,122,0,3.20%,96.80%,0.00%,9,10,107,9.30% +137652,312,7002,State-funded special school,52,8,44,15.40%,84.60%,51,98.10%,1,1.90%,8,44,0,15.40%,84.60%,0.00%,28,29,52,55.80% +137653,909,5220,State-funded primary,47,21,26,44.70%,55.30%,1,2.10%,5,10.60%,0,47,0,0.00%,100.00%,0.00%,6,6,43,14.00% +137654,878,2047,State-funded primary,241,114,127,47.30%,52.70%,6,2.50%,24,10.00%,2,239,0,0.80%,99.20%,0.00%,17,16,205,7.80% +137656,919,4140,State-funded secondary,1004,497,507,49.50%,50.50%,10,1.00%,200,19.90%,50,954,0,5.00%,95.00%,0.00%,163,191,983,19.40% +137659,878,2722,State-funded primary,182,83,99,45.60%,54.40%,20,11.00%,22,12.10%,2,180,0,1.10%,98.90%,0.00%,73,74,168,44.00% +137660,886,2500,State-funded primary,238,116,122,48.70%,51.30%,1,0.40%,31,13.00%,37,201,0,15.50%,84.50%,0.00%,13,13,238,5.50% +137661,886,2438,State-funded primary,294,147,147,50.00%,50.00%,9,3.10%,35,11.90%,45,249,0,15.30%,84.70%,0.00%,28,28,294,9.50% +137662,878,3124,State-funded primary,91,42,49,46.20%,53.80%,0,0.00%,5,5.50%,0,91,0,0.00%,100.00%,0.00%,15,13,70,18.60% +137663,886,5219,State-funded primary,210,98,112,46.70%,53.30%,3,1.40%,9,4.30%,3,207,0,1.40%,98.60%,0.00%,15,15,210,7.10% +137664,878,3156,State-funded primary,126,62,64,49.20%,50.80%,2,1.60%,15,11.90%,2,120,4,1.60%,95.20%,3.20%,14,12,102,11.80% +137665,878,3102,State-funded primary,295,149,146,50.50%,49.50%,6,2.00%,42,14.20%,0,295,0,0.00%,100.00%,0.00%,11,13,295,4.40% +137666,878,3106,State-funded primary,100,49,51,49.00%,51.00%,2,2.00%,15,15.00%,0,100,0,0.00%,100.00%,0.00%,19,21,100,21.00% +137667,925,4005,State-funded secondary,763,762,1,99.90%,0.10%,3,0.40%,95,12.50%,23,740,0,3.00%,97.00%,0.00%,53,50,646,7.70% +137673,333,4000,State-funded secondary,1640,813,827,49.60%,50.40%,49,3.00%,242,14.80%,239,1399,2,14.60%,85.30%,0.10%,532,538,1514,35.50% +137674,935,4006,State-funded secondary,557,267,290,47.90%,52.10%,9,1.60%,49,8.80%,81,476,0,14.50%,85.50%,0.00%,172,188,557,33.80% +137675,341,4000,State-funded secondary,781,354,427,45.30%,54.70%,9,1.20%,184,23.60%,333,379,69,42.60%,48.50%,8.80%,475,529,781,67.70% +137677,320,1109,State-funded AP school,2,1,1,50.00%,50.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +137678,314,5404,State-funded secondary,1209,449,760,37.10%,62.90%,55,4.50%,172,14.20%,296,909,4,24.50%,75.20%,0.30%,217,220,980,22.40% +137679,821,5407,State-funded secondary,1461,736,725,50.40%,49.60%,32,2.20%,167,11.40%,722,730,9,49.40%,50.00%,0.60%,313,373,1461,25.50% +137680,925,5205,State-funded primary,656,335,321,51.10%,48.90%,27,4.10%,86,13.10%,21,635,0,3.20%,96.80%,0.00%,87,89,656,13.60% +137681,303,5402,State-funded secondary,1026,1026,0,100.00%,0.00%,14,1.40%,36,3.50%,79,947,0,7.70%,92.30%,0.00%,121,191,1026,18.60% +137682,211,2557,State-funded primary,341,174,167,51.00%,49.00%,8,2.30%,22,6.50%,301,40,0,88.30%,11.70%,0.00%,97,95,303,31.40% +137683,305,5200,State-funded primary,712,338,374,47.50%,52.50%,16,2.20%,67,9.40%,113,599,0,15.90%,84.10%,0.00%,67,68,712,9.60% +137684,866,4060,State-funded secondary,797,373,424,46.80%,53.20%,11,1.40%,152,19.10%,71,721,5,8.90%,90.50%,0.60%,202,229,797,28.70% +137685,304,5402,State-funded secondary,1993,927,1066,46.50%,53.50%,36,1.80%,151,7.60%,1264,687,42,63.40%,34.50%,2.10%,465,458,1643,27.90% +137686,909,3352,State-funded primary,127,69,58,54.30%,45.70%,1,0.80%,16,12.60%,5,122,0,3.90%,96.10%,0.00%,18,18,117,15.40% +137687,886,4002,State-funded secondary,1589,812,777,51.10%,48.90%,111,7.00%,111,7.00%,103,1480,6,6.50%,93.10%,0.40%,565,561,1400,40.10% +137689,352,2005,State-funded primary,435,240,195,55.20%,44.80%,21,4.80%,71,16.30%,74,360,1,17.00%,82.80%,0.20%,250,241,383,62.90% +137692,317,4000,State-funded secondary,758,363,395,47.90%,52.10%,42,5.50%,90,11.90%,428,328,2,56.50%,43.30%,0.30%,230,256,758,33.80% +137693,850,3017,State-funded primary,349,173,176,49.60%,50.40%,9,2.60%,24,6.90%,3,346,0,0.90%,99.10%,0.00%,44,44,349,12.60% +137694,881,4333,State-funded secondary,1086,570,516,52.50%,47.50%,20,1.80%,117,10.80%,186,891,9,17.10%,82.00%,0.80%,265,318,1086,29.30% +137695,868,4056,State-funded secondary,1162,589,573,50.70%,49.30%,17,1.50%,132,11.40%,109,1046,7,9.40%,90.00%,0.60%,178,191,984,19.40% +137696,840,4190,State-funded secondary,1318,674,644,51.10%,48.90%,32,2.40%,159,12.10%,54,1262,2,4.10%,95.80%,0.20%,275,282,1145,24.60% +137697,885,2915,State-funded primary,689,342,347,49.60%,50.40%,4,0.60%,87,12.60%,13,676,0,1.90%,98.10%,0.00%,104,97,617,15.70% +137698,881,5218,State-funded primary,225,100,125,44.40%,55.60%,5,2.20%,22,9.80%,25,200,0,11.10%,88.90%,0.00%,23,24,225,10.70% +137699,381,2064,State-funded primary,189,97,92,51.30%,48.70%,3,1.60%,26,13.80%,7,182,0,3.70%,96.30%,0.00%,21,24,189,12.70% +137700,801,2029,State-funded primary,305,141,164,46.20%,53.80%,15,4.90%,78,25.60%,32,273,0,10.50%,89.50%,0.00%,200,200,305,65.60% +137701,333,4110,State-funded secondary,1362,691,671,50.70%,49.30%,17,1.20%,198,14.50%,539,758,65,39.60%,55.70%,4.80%,605,676,1362,49.60% +137702,840,4681,State-funded secondary,1326,720,606,54.30%,45.70%,10,0.80%,118,8.90%,67,1259,0,5.10%,94.90%,0.00%,281,269,1125,23.90% +137703,884,4004,State-funded secondary,378,194,184,51.30%,48.70%,6,1.60%,80,21.20%,32,342,4,8.50%,90.50%,1.10%,65,79,378,20.90% +137704,383,4501,State-funded secondary,1642,768,874,46.80%,53.20%,18,1.10%,174,10.60%,93,1548,1,5.70%,94.30%,0.10%,172,161,1304,12.30% +137705,332,5403,State-funded secondary,1024,490,534,47.90%,52.10%,42,4.10%,114,11.10%,45,974,5,4.40%,95.10%,0.50%,348,430,1024,42.00% +137706,335,4002,State-funded secondary,909,459,450,50.50%,49.50%,23,2.50%,185,20.40%,144,765,0,15.80%,84.20%,0.00%,416,462,909,50.80% +137707,335,5400,State-funded secondary,1523,768,755,50.40%,49.60%,44,2.90%,126,8.30%,54,1468,1,3.50%,96.40%,0.10%,288,302,1291,23.40% +137708,391,4716,State-funded secondary,1393,1393,0,100.00%,0.00%,12,0.90%,192,13.80%,272,1119,2,19.50%,80.30%,0.10%,411,382,1127,33.90% +137726,871,5407,State-funded secondary,1068,458,610,42.90%,57.10%,4,0.40%,7,0.70%,487,568,13,45.60%,53.20%,1.20%,72,60,757,7.90% +137727,881,5442,State-funded secondary,1495,747,748,50.00%,50.00%,13,0.90%,121,8.10%,857,621,17,57.30%,41.50%,1.10%,91,107,1171,9.10% +137728,886,3025,State-funded primary,209,113,96,54.10%,45.90%,4,1.90%,15,7.20%,7,202,0,3.30%,96.70%,0.00%,9,9,209,4.30% +137729,307,4031,State-funded secondary,1780,841,939,47.20%,52.80%,30,1.70%,140,7.90%,1510,270,0,84.80%,15.20%,0.00%,482,440,1384,31.80% +137730,336,4134,State-funded secondary,1173,582,591,49.60%,50.40%,23,2.00%,190,16.20%,440,732,1,37.50%,62.40%,0.10%,446,417,980,42.60% +137731,884,3055,State-funded primary,418,196,222,46.90%,53.10%,6,1.40%,41,9.80%,31,386,1,7.40%,92.30%,0.20%,44,44,418,10.50% +137732,878,2049,State-funded primary,434,207,227,47.70%,52.30%,7,1.60%,49,11.30%,14,420,0,3.20%,96.80%,0.00%,60,62,389,15.90% +137733,882,4034,State-funded secondary,1812,856,956,47.20%,52.80%,67,3.70%,259,14.30%,81,1722,9,4.50%,95.00%,0.50%,534,551,1540,35.80% +137734,392,4605,State-funded secondary,1609,832,777,51.70%,48.30%,29,1.80%,113,7.00%,116,1493,0,7.20%,92.80%,0.00%,299,292,1332,21.90% +137735,936,5406,State-funded secondary,1226,615,611,50.20%,49.80%,36,2.90%,219,17.90%,49,1164,13,4.00%,94.90%,1.10%,148,186,1155,16.10% +137736,936,5407,State-funded secondary,1417,1417,0,100.00%,0.00%,19,1.30%,96,6.80%,151,1245,21,10.70%,87.90%,1.50%,76,78,1196,6.50% +137737,384,2116,State-funded primary,91,38,53,41.80%,58.20%,0,0.00%,8,8.80%,2,89,0,2.20%,97.80%,0.00%,3,3,71,4.20% +137739,886,5416,State-funded secondary,884,369,515,41.70%,58.30%,9,1.00%,15,1.70%,70,811,3,7.90%,91.70%,0.30%,25,22,573,3.80% +137740,868,4055,State-funded secondary,1512,590,922,39.00%,61.00%,54,3.60%,184,12.20%,131,1381,0,8.70%,91.30%,0.00%,203,203,1209,16.80% +137741,933,4552,State-funded secondary,607,307,300,50.60%,49.40%,24,4.00%,97,16.00%,37,570,0,6.10%,93.90%,0.00%,155,167,607,27.50% +137742,813,4083,State-funded secondary,953,457,496,48.00%,52.00%,10,1.00%,82,8.60%,15,938,0,1.60%,98.40%,0.00%,138,155,936,16.60% +137744,881,3101,State-funded primary,135,58,77,43.00%,57.00%,1,0.70%,12,8.90%,9,126,0,6.70%,93.30%,0.00%,13,13,106,12.30% +137745,309,4034,State-funded secondary,1193,540,653,45.30%,54.70%,39,3.30%,130,10.90%,579,614,0,48.50%,51.50%,0.00%,328,449,1193,37.60% +137746,929,4501,State-funded secondary,1426,698,728,48.90%,51.10%,20,1.40%,136,9.50%,30,1395,1,2.10%,97.80%,0.10%,139,121,1000,12.10% +137747,929,4000,State-funded secondary,553,276,277,49.90%,50.10%,16,2.90%,88,15.90%,6,547,0,1.10%,98.90%,0.00%,81,86,553,15.60% +137748,929,4309,State-funded secondary,554,292,262,52.70%,47.30%,7,1.30%,70,12.60%,1,551,2,0.20%,99.50%,0.40%,48,54,554,9.70% +137751,815,1104,State-funded AP school,8,3,5,37.50%,62.50%,1,12.50%,7,87.50%,0,8,0,0.00%,100.00%,0.00%,2,2,8,25.00% +137752,916,5405,State-funded secondary,1268,606,662,47.80%,52.20%,26,2.10%,157,12.40%,83,1184,1,6.50%,93.40%,0.10%,206,214,1083,19.80% +137753,803,4104,State-funded secondary,1334,648,686,48.60%,51.40%,48,3.60%,163,12.20%,257,1077,0,19.30%,80.70%,0.00%,146,145,1104,13.10% +137754,306,5406,State-funded secondary,1245,1245,0,100.00%,0.00%,7,0.60%,147,11.80%,733,512,0,58.90%,41.10%,0.00%,344,420,1097,38.30% +137755,880,4118,State-funded secondary,1091,552,539,50.60%,49.40%,55,5.00%,142,13.00%,23,1068,0,2.10%,97.90%,0.00%,279,295,995,29.60% +137756,823,2195,State-funded primary,340,176,164,51.80%,48.20%,6,1.80%,24,7.10%,10,330,0,2.90%,97.10%,0.00%,22,23,263,8.70% +137757,919,4099,State-funded secondary,943,938,5,99.50%,0.50%,12,1.30%,79,8.40%,207,735,1,22.00%,77.90%,0.10%,115,117,746,15.70% +137758,908,2745,State-funded primary,254,114,140,44.90%,55.10%,6,2.40%,28,11.00%,5,248,1,2.00%,97.60%,0.40%,82,87,254,34.30% +137759,813,4082,State-funded secondary,546,258,288,47.30%,52.70%,23,4.20%,99,18.10%,7,539,0,1.30%,98.70%,0.00%,115,126,546,23.10% +137760,812,3518,State-funded primary,432,217,215,50.20%,49.80%,11,2.50%,42,9.70%,7,425,0,1.60%,98.40%,0.00%,45,50,432,11.60% +137761,812,2124,State-funded primary,374,189,185,50.50%,49.50%,5,1.30%,33,8.80%,13,361,0,3.50%,96.50%,0.00%,56,59,336,17.60% +137762,801,3436,State-funded primary,647,325,322,50.20%,49.80%,4,0.60%,61,9.40%,67,579,1,10.40%,89.50%,0.20%,128,122,606,20.10% +137763,891,4463,State-funded secondary,1473,706,767,47.90%,52.10%,11,0.70%,124,8.40%,174,1244,55,11.80%,84.50%,3.70%,347,357,1349,26.50% +137765,371,2117,State-funded primary,386,204,182,52.80%,47.20%,7,1.80%,83,21.50%,7,379,0,1.80%,98.20%,0.00%,106,102,342,29.80% +137766,937,4192,State-funded secondary,1082,543,539,50.20%,49.80%,30,2.80%,169,15.60%,331,734,17,30.60%,67.80%,1.60%,328,321,958,33.50% +137767,937,4153,State-funded secondary,1418,712,706,50.20%,49.80%,27,1.90%,88,6.20%,199,1216,3,14.00%,85.80%,0.20%,176,186,1233,15.10% +137768,888,4178,State-funded secondary,704,359,345,51.00%,49.00%,9,1.30%,41,5.80%,25,679,0,3.60%,96.40%,0.00%,91,111,704,15.80% +137769,303,4001,State-funded secondary,1574,1487,87,94.50%,5.50%,3,0.20%,69,4.40%,292,1276,6,18.60%,81.10%,0.40%,91,98,1116,8.80% +137770,937,4190,State-funded secondary,1300,657,643,50.50%,49.50%,28,2.20%,194,14.90%,86,1212,2,6.60%,93.20%,0.20%,286,300,1181,25.40% +137771,937,4004,State-funded secondary,1017,470,547,46.20%,53.80%,20,2.00%,93,9.10%,149,868,0,14.70%,85.30%,0.00%,261,260,898,29.00% +137772,306,5407,State-funded secondary,838,438,400,52.30%,47.70%,14,1.70%,237,28.30%,256,555,27,30.50%,66.20%,3.20%,365,372,720,51.70% +137773,332,5402,State-funded secondary,909,438,471,48.20%,51.80%,25,2.80%,117,12.90%,61,847,1,6.70%,93.20%,0.10%,175,205,909,22.60% +137774,825,5210,State-funded primary,421,202,219,48.00%,52.00%,22,5.20%,43,10.20%,63,357,1,15.00%,84.80%,0.20%,21,22,421,5.20% +137775,383,4115,State-funded secondary,1563,753,810,48.20%,51.80%,12,0.80%,191,12.20%,149,1407,7,9.50%,90.00%,0.40%,191,196,1283,15.30% +137776,878,3165,State-funded primary,161,74,87,46.00%,54.00%,7,4.30%,21,13.00%,2,158,1,1.20%,98.10%,0.60%,9,8,128,6.30% +137777,869,5404,State-funded secondary,1112,559,553,50.30%,49.70%,26,2.30%,181,16.30%,72,1040,0,6.50%,93.50%,0.00%,139,145,970,14.90% +137778,823,2168,State-funded primary,370,173,197,46.80%,53.20%,12,3.20%,64,17.30%,107,263,0,28.90%,71.10%,0.00%,47,49,370,13.20% +137780,878,2260,State-funded primary,78,34,44,43.60%,56.40%,3,3.80%,12,15.40%,1,77,0,1.30%,98.70%,0.00%,22,18,64,28.10% +137781,937,5401,State-funded secondary,1048,497,551,47.40%,52.60%,28,2.70%,174,16.60%,130,883,35,12.40%,84.30%,3.30%,281,290,930,31.20% +137782,938,4005,State-funded secondary,1613,769,844,47.70%,52.30%,23,1.40%,219,13.60%,241,1372,0,14.90%,85.10%,0.00%,287,322,1460,22.10% +137783,359,4002,State-funded secondary,779,390,389,50.10%,49.90%,13,1.70%,111,14.20%,48,731,0,6.20%,93.80%,0.00%,170,194,779,24.90% +137784,213,6013,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137785,380,6001,Independent school,34,3,31,8.80%,91.20%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137786,892,3330,State-funded primary,476,229,247,48.10%,51.90%,3,0.60%,70,14.70%,304,172,0,63.90%,36.10%,0.00%,214,218,397,54.90% +137787,812,2930,State-funded primary,244,128,116,52.50%,47.50%,9,3.70%,26,10.70%,24,220,0,9.80%,90.20%,0.00%,64,64,244,26.20% +137788,868,3350,State-funded primary,228,126,102,55.30%,44.70%,2,0.90%,26,11.40%,45,183,0,19.70%,80.30%,0.00%,44,48,207,23.20% +137789,211,4284,State-funded secondary,1345,617,728,45.90%,54.10%,47,3.50%,161,12.00%,781,556,8,58.10%,41.30%,0.60%,574,519,874,59.40% +137790,881,5402,State-funded secondary,1706,795,911,46.60%,53.40%,46,2.70%,219,12.80%,50,1656,0,2.90%,97.10%,0.00%,313,334,1486,22.50% +137791,850,5408,State-funded secondary,2142,1047,1095,48.90%,51.10%,54,2.50%,263,12.30%,81,2061,0,3.80%,96.20%,0.00%,312,315,1722,18.30% +137793,925,4501,State-funded secondary,1708,810,898,47.40%,52.60%,9,0.50%,132,7.70%,120,1588,0,7.00%,93.00%,0.00%,93,73,1211,6.00% +137794,925,2009,State-funded primary,378,221,157,58.50%,41.50%,10,2.60%,41,10.80%,17,361,0,4.50%,95.50%,0.00%,61,63,378,16.70% +137795,886,6137,Independent school,52,18,34,34.60%,65.40%,52,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137796,330,1000,State-funded nursery,70,31,39,44.30%,55.70%,0,0.00%,3,4.30%,23,47,0,32.90%,67.10%,0.00%,14,0,2,0.00% +137797,335,5201,State-funded primary,415,204,211,49.20%,50.80%,9,2.20%,29,7.00%,254,159,2,61.20%,38.30%,0.50%,46,47,415,11.30% +137798,892,4615,State-funded secondary,1378,657,721,47.70%,52.30%,24,1.70%,174,12.60%,555,817,6,40.30%,59.30%,0.40%,446,362,942,38.40% +137799,855,4000,State-funded secondary,818,401,417,49.00%,51.00%,14,1.70%,133,16.30%,19,799,0,2.30%,97.70%,0.00%,132,148,818,18.10% +137800,886,4527,State-funded secondary,889,28,861,3.10%,96.90%,6,0.70%,28,3.10%,68,821,0,7.60%,92.40%,0.00%,79,71,662,10.70% +137801,352,4765,State-funded secondary,1506,746,760,49.50%,50.50%,54,3.60%,139,9.20%,571,930,5,37.90%,61.80%,0.30%,443,468,1247,37.50% +137802,307,6004,Independent school,25,13,12,52.00%,48.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137806,886,2002,State-funded primary,471,227,244,48.20%,51.80%,12,2.50%,56,11.90%,73,398,0,15.50%,84.50%,0.00%,92,95,471,20.20% +137808,204,6003,Independent school,61,4,57,6.60%,93.40%,61,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137809,204,6004,Independent school,103,0,103,0.00%,100.00%,5,4.90%,10,9.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137811,812,3060,State-funded primary,101,54,47,53.50%,46.50%,2,2.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,8,9,94,9.60% +137812,332,4106,State-funded secondary,1226,615,611,50.20%,49.80%,26,2.10%,85,6.90%,76,1150,0,6.20%,93.80%,0.00%,241,272,1226,22.20% +137814,881,5443,State-funded secondary,994,113,881,11.40%,88.60%,2,0.20%,57,5.70%,150,844,0,15.10%,84.90%,0.00%,31,33,628,5.30% +137815,344,4069,State-funded secondary,1568,1534,34,97.80%,2.20%,12,0.80%,136,8.70%,65,1503,0,4.10%,95.90%,0.00%,480,446,1248,35.70% +137819,330,6010,Independent school,3,0,3,0.00%,100.00%,2,66.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137821,359,6000,Independent school,20,7,13,35.00%,65.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137822,353,6000,Independent school,347,277,70,79.80%,20.20%,1,0.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137823,372,1112,State-funded AP school,91,30,61,33.00%,67.00%,17,18.70%,74,81.30%,13,78,0,14.30%,85.70%,0.00%,59,66,91,72.50% +137825,885,2904,State-funded primary,222,104,118,46.80%,53.20%,2,0.90%,43,19.40%,5,217,0,2.30%,97.70%,0.00%,30,31,191,16.20% +137826,873,4004,State-funded secondary,1418,662,756,46.70%,53.30%,98,6.90%,81,5.70%,212,1204,2,15.00%,84.90%,0.10%,174,168,1190,14.10% +137828,855,4032,State-funded secondary,867,406,461,46.80%,53.20%,10,1.20%,158,18.20%,34,832,1,3.90%,96.00%,0.10%,105,135,867,15.60% +137829,312,5405,State-funded secondary,999,478,521,47.80%,52.20%,37,3.70%,56,5.60%,395,604,0,39.50%,60.50%,0.00%,178,186,893,20.80% +137830,335,4007,State-funded secondary,1458,710,748,48.70%,51.30%,30,2.10%,197,13.50%,950,508,0,65.20%,34.80%,0.00%,610,560,1224,45.80% +137831,394,3322,State-funded primary,289,147,142,50.90%,49.10%,4,1.40%,50,17.30%,6,283,0,2.10%,97.90%,0.00%,18,18,245,7.30% +137832,813,4074,State-funded secondary,531,248,283,46.70%,53.30%,31,5.80%,106,20.00%,8,523,0,1.50%,98.50%,0.00%,194,218,531,41.10% +137833,886,5401,State-funded secondary,1359,684,675,50.30%,49.70%,13,1.00%,90,6.60%,191,1168,0,14.10%,85.90%,0.00%,213,219,1091,20.10% +137834,886,5467,State-funded secondary,1349,1309,40,97.00%,3.00%,2,0.10%,49,3.60%,331,1018,0,24.50%,75.50%,0.00%,129,125,1018,12.30% +137836,886,2684,State-funded primary,651,330,321,50.70%,49.30%,18,2.80%,66,10.10%,172,479,0,26.40%,73.60%,0.00%,97,98,651,15.10% +137837,886,5437,State-funded secondary,1217,1217,0,100.00%,0.00%,5,0.40%,46,3.80%,133,1083,1,10.90%,89.00%,0.10%,133,132,922,14.30% +137838,935,7006,State-funded special school,106,51,55,48.10%,51.90%,91,85.80%,15,14.20%,16,90,0,15.10%,84.90%,0.00%,30,31,99,31.30% +137839,908,4168,State-funded secondary,513,251,262,48.90%,51.10%,10,1.90%,75,14.60%,3,510,0,0.60%,99.40%,0.00%,108,122,513,23.80% +137842,371,4062,State-funded secondary,1910,1003,907,52.50%,47.50%,32,1.70%,152,8.00%,439,1471,0,23.00%,77.00%,0.00%,455,425,1492,28.50% +137843,356,4039,State-funded secondary,1665,792,873,47.60%,52.40%,42,2.50%,191,11.50%,229,1430,6,13.80%,85.90%,0.40%,164,164,1363,12.00% +137844,312,5412,State-funded secondary,1522,740,782,48.60%,51.40%,14,0.90%,114,7.50%,1036,476,10,68.10%,31.30%,0.70%,486,475,1236,38.40% +137847,919,4014,State-funded secondary,1123,520,603,46.30%,53.70%,29,2.60%,167,14.90%,177,945,1,15.80%,84.10%,0.10%,193,203,971,20.90% +137848,314,4004,State-funded secondary,1582,1449,133,91.60%,8.40%,35,2.20%,74,4.70%,636,937,9,40.20%,59.20%,0.60%,257,268,1210,22.10% +137849,935,4603,State-funded secondary,1023,545,478,53.30%,46.70%,11,1.10%,101,9.90%,316,705,2,30.90%,68.90%,0.20%,166,169,836,20.20% +137850,936,2943,State-funded primary,629,307,322,48.80%,51.20%,21,3.30%,72,11.40%,212,417,0,33.70%,66.30%,0.00%,61,63,629,10.00% +137851,390,4606,State-funded secondary,1467,758,709,51.70%,48.30%,29,2.00%,105,7.20%,94,1373,0,6.40%,93.60%,0.00%,212,222,1222,18.20% +137852,390,4605,State-funded secondary,1509,750,759,49.70%,50.30%,24,1.60%,167,11.10%,160,1241,108,10.60%,82.20%,7.20%,300,293,1267,23.10% +137853,823,3005,State-funded primary,527,270,257,51.20%,48.80%,10,1.90%,47,8.90%,54,473,0,10.20%,89.80%,0.00%,55,56,454,12.30% +137854,916,2113,State-funded primary,92,45,47,48.90%,51.10%,0,0.00%,19,20.70%,0,92,0,0.00%,100.00%,0.00%,16,16,92,17.40% +137855,936,5416,State-funded secondary,1381,621,760,45.00%,55.00%,52,3.80%,109,7.90%,103,1277,1,7.50%,92.50%,0.10%,67,77,1113,6.90% +137856,314,3503,State-funded primary,397,196,201,49.40%,50.60%,3,0.80%,36,9.10%,139,257,1,35.00%,64.70%,0.30%,49,48,375,12.80% +137857,891,4068,State-funded secondary,1292,675,617,52.20%,47.80%,9,0.70%,140,10.80%,69,1220,3,5.30%,94.40%,0.20%,376,370,1163,31.80% +137858,330,5409,State-funded secondary,915,367,548,40.10%,59.90%,29,3.20%,85,9.30%,243,669,3,26.60%,73.10%,0.30%,321,364,915,39.80% +137859,314,5403,State-funded secondary,964,47,917,4.90%,95.10%,25,2.60%,110,11.40%,361,601,2,37.40%,62.30%,0.20%,147,149,862,17.30% +137860,909,2026,State-funded primary,103,53,50,51.50%,48.50%,2,1.90%,12,11.70%,2,101,0,1.90%,98.10%,0.00%,5,5,91,5.50% +137861,919,5208,State-funded primary,305,151,154,49.50%,50.50%,9,3.00%,68,22.30%,97,208,0,31.80%,68.20%,0.00%,101,105,278,37.80% +137866,352,2007,State-funded primary,228,100,128,43.90%,56.10%,6,2.60%,50,21.90%,96,132,0,42.10%,57.90%,0.00%,121,113,202,55.90% +137867,873,4000,State-funded secondary,1384,740,644,53.50%,46.50%,55,4.00%,195,14.10%,411,971,2,29.70%,70.20%,0.10%,477,473,1290,36.70% +137869,382,4013,State-funded secondary,1403,682,721,48.60%,51.40%,24,1.70%,113,8.10%,229,1163,11,16.30%,82.90%,0.80%,296,310,1403,22.10% +137870,370,3302,State-funded primary,217,111,106,51.20%,48.80%,4,1.80%,21,9.70%,37,177,3,17.10%,81.60%,1.40%,25,25,217,11.50% +137871,886,2229,State-funded primary,100,50,50,50.00%,50.00%,2,2.00%,7,7.00%,7,93,0,7.00%,93.00%,0.00%,18,18,100,18.00% +137872,919,5408,State-funded secondary,1226,543,683,44.30%,55.70%,105,8.60%,197,16.10%,229,977,20,18.70%,79.70%,1.60%,174,187,971,19.30% +137873,925,4010,State-funded secondary,1344,682,662,50.70%,49.30%,14,1.00%,135,10.00%,141,1203,0,10.50%,89.50%,0.00%,247,262,1166,22.50% +137874,881,5416,State-funded secondary,1491,767,724,51.40%,48.60%,28,1.90%,84,5.60%,137,1346,8,9.20%,90.30%,0.50%,183,206,1223,16.80% +137875,940,7026,State-funded special school,162,48,114,29.60%,70.40%,162,100.00%,0,0.00%,25,137,0,15.40%,84.60%,0.00%,48,49,162,30.20% +137876,879,2699,State-funded primary,206,96,110,46.60%,53.40%,5,2.40%,26,12.60%,5,201,0,2.40%,97.60%,0.00%,34,37,206,18.00% +137877,881,5467,State-funded secondary,1535,715,820,46.60%,53.40%,40,2.60%,261,17.00%,51,1480,4,3.30%,96.40%,0.30%,206,199,1195,16.70% +137878,941,4089,State-funded secondary,1053,550,503,52.20%,47.80%,9,0.90%,153,14.50%,67,965,21,6.40%,91.60%,2.00%,126,132,874,15.10% +137880,874,4002,State-funded secondary,1314,627,687,47.70%,52.30%,17,1.30%,165,12.60%,367,900,47,27.90%,68.50%,3.60%,315,334,1164,28.70% +137881,886,2003,State-funded primary,216,113,103,52.30%,47.70%,3,1.40%,21,9.70%,31,185,0,14.40%,85.60%,0.00%,86,82,189,43.40% +137882,886,2004,State-funded primary,314,166,148,52.90%,47.10%,1,0.30%,20,6.40%,75,239,0,23.90%,76.10%,0.00%,153,157,296,53.00% +137883,886,7066,State-funded special school,370,113,257,30.50%,69.50%,370,100.00%,0,0.00%,44,325,1,11.90%,87.80%,0.30%,122,107,317,33.80% +137884,802,4136,State-funded secondary,1366,699,667,51.20%,48.80%,24,1.80%,118,8.60%,68,1295,3,5.00%,94.80%,0.20%,139,148,1168,12.70% +137886,823,4005,State-funded secondary,832,400,432,48.10%,51.90%,24,2.90%,118,14.20%,43,789,0,5.20%,94.80%,0.00%,121,129,625,20.60% +137887,352,6006,Independent school,102,27,75,26.50%,73.50%,38,37.30%,64,62.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137888,341,2011,State-funded primary,456,248,208,54.40%,45.60%,11,2.40%,34,7.50%,18,437,1,3.90%,95.80%,0.20%,43,42,409,10.30% +137892,861,6007,Independent school,20,5,15,25.00%,75.00%,3,15.00%,3,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137895,919,5413,State-funded secondary,1615,782,833,48.40%,51.60%,40,2.50%,139,8.60%,415,1191,9,25.70%,73.70%,0.60%,101,93,1212,7.70% +137896,823,7006,State-funded special school,165,57,108,34.50%,65.50%,165,100.00%,0,0.00%,1,164,0,0.60%,99.40%,0.00%,46,38,114,33.30% +137897,830,5206,State-funded primary,218,98,120,45.00%,55.00%,2,0.90%,32,14.70%,0,218,0,0.00%,100.00%,0.00%,8,9,218,4.10% +137899,371,4040,State-funded secondary,1170,611,559,52.20%,47.80%,18,1.50%,130,11.10%,66,1104,0,5.60%,94.40%,0.00%,179,191,1170,16.30% +137900,391,4715,State-funded secondary,1238,0,1238,0.00%,100.00%,18,1.50%,189,15.30%,397,839,2,32.10%,67.80%,0.20%,384,361,1031,35.00% +137901,935,4051,State-funded secondary,355,179,176,50.40%,49.60%,10,2.80%,66,18.60%,8,347,0,2.30%,97.70%,0.00%,61,69,355,19.40% +137902,830,5400,State-funded secondary,1169,584,585,50.00%,50.00%,30,2.60%,150,12.80%,32,1122,15,2.70%,96.00%,1.30%,328,315,913,34.50% +137903,840,4128,State-funded secondary,965,465,500,48.20%,51.80%,9,0.90%,81,8.40%,8,957,0,0.80%,99.20%,0.00%,334,362,965,37.50% +137904,823,4043,State-funded secondary,451,221,230,49.00%,51.00%,17,3.80%,61,13.50%,35,416,0,7.80%,92.20%,0.00%,45,52,451,11.50% +137905,855,7008,State-funded special school,271,72,199,26.60%,73.40%,271,100.00%,0,0.00%,8,263,0,3.00%,97.00%,0.00%,86,74,224,33.00% +137906,936,5417,State-funded secondary,1329,739,590,55.60%,44.40%,43,3.20%,116,8.70%,122,1207,0,9.20%,90.80%,0.00%,162,169,1144,14.80% +137907,313,4020,State-funded secondary,1486,700,786,47.10%,52.90%,22,1.50%,187,12.60%,504,906,76,33.90%,61.00%,5.10%,420,377,1109,34.00% +137908,830,5415,State-funded secondary,657,347,310,52.80%,47.20%,29,4.40%,86,13.10%,38,619,0,5.80%,94.20%,0.00%,138,150,657,22.80% +137909,891,3763,State-funded primary,204,88,116,43.10%,56.90%,3,1.50%,31,15.20%,50,154,0,24.50%,75.50%,0.00%,16,16,204,7.80% +137910,931,3837,State-funded primary,451,224,227,49.70%,50.30%,8,1.80%,67,14.90%,69,382,0,15.30%,84.70%,0.00%,88,94,409,23.00% +137911,831,5414,State-funded secondary,1374,710,664,51.70%,48.30%,57,4.10%,125,9.10%,59,1314,1,4.30%,95.60%,0.10%,217,230,1155,19.90% +137912,940,5409,State-funded secondary,1423,674,749,47.40%,52.60%,23,1.60%,90,6.30%,353,1067,3,24.80%,75.00%,0.20%,218,240,1205,19.90% +137913,926,4605,State-funded secondary,1582,847,735,53.50%,46.50%,28,1.80%,124,7.80%,383,1114,85,24.20%,70.40%,5.40%,152,143,1052,13.60% +137914,919,5418,State-funded secondary,1229,592,637,48.20%,51.80%,15,1.20%,146,11.90%,193,1010,26,15.70%,82.20%,2.10%,84,85,1053,8.10% +137915,892,7026,State-funded special school,166,47,119,28.30%,71.70%,165,99.40%,1,0.60%,37,129,0,22.30%,77.70%,0.00%,100,85,135,63.00% +137916,341,5404,State-funded secondary,1246,651,595,52.20%,47.80%,2,0.20%,104,8.30%,226,1018,2,18.10%,81.70%,0.20%,130,169,901,18.80% +137917,314,4009,State-funded secondary,864,13,851,1.50%,98.50%,22,2.50%,157,18.20%,291,572,1,33.70%,66.20%,0.10%,147,145,723,20.10% +137918,941,2228,State-funded primary,401,196,205,48.90%,51.10%,6,1.50%,59,14.70%,55,346,0,13.70%,86.30%,0.00%,25,25,401,6.20% +137919,931,4054,State-funded secondary,1363,645,718,47.30%,52.70%,24,1.80%,151,11.10%,133,1230,0,9.80%,90.20%,0.00%,90,108,1063,10.20% +137920,931,2574,State-funded primary,378,198,180,52.40%,47.60%,7,1.90%,47,12.40%,58,320,0,15.30%,84.70%,0.00%,13,14,378,3.70% +137921,931,4055,State-funded secondary,954,519,435,54.40%,45.60%,32,3.40%,169,17.70%,64,889,1,6.70%,93.20%,0.10%,83,96,954,10.10% +137922,919,5417,State-funded secondary,1127,529,598,46.90%,53.10%,17,1.50%,114,10.10%,87,1040,0,7.70%,92.30%,0.00%,122,120,904,13.30% +137923,356,4036,State-funded secondary,1360,644,716,47.40%,52.60%,49,3.60%,172,12.60%,100,1245,15,7.40%,91.50%,1.10%,220,259,1360,19.00% +137924,873,4602,State-funded secondary,912,457,455,50.10%,49.90%,56,6.10%,47,5.20%,242,669,1,26.50%,73.40%,0.10%,97,104,912,11.40% +137925,312,5408,State-funded secondary,1563,670,893,42.90%,57.10%,9,0.60%,131,8.40%,677,881,5,43.30%,56.40%,0.30%,239,248,1278,19.40% +137926,881,5441,State-funded secondary,1556,753,803,48.40%,51.60%,40,2.60%,162,10.40%,148,1407,1,9.50%,90.40%,0.10%,186,228,1556,14.70% +137927,881,5462,State-funded secondary,1401,676,725,48.30%,51.70%,28,2.00%,143,10.20%,38,1363,0,2.70%,97.30%,0.00%,149,176,1401,12.60% +137928,313,5400,State-funded secondary,1140,1126,14,98.80%,1.20%,16,1.40%,190,16.70%,372,731,37,32.60%,64.10%,3.20%,198,189,912,20.70% +137929,344,5901,State-funded secondary,1016,1010,6,99.40%,0.60%,3,0.30%,74,7.30%,35,981,0,3.40%,96.60%,0.00%,67,66,790,8.40% +137930,305,5207,State-funded primary,710,349,361,49.20%,50.80%,52,7.30%,112,15.80%,82,627,1,11.50%,88.30%,0.10%,52,56,672,8.30% +137931,855,5402,State-funded secondary,831,401,430,48.30%,51.70%,14,1.70%,110,13.20%,33,797,1,4.00%,95.90%,0.10%,208,233,831,28.00% +137932,855,2322,State-funded primary,505,242,263,47.90%,52.10%,9,1.80%,70,13.90%,47,457,1,9.30%,90.50%,0.20%,76,78,505,15.40% +137933,855,2158,State-funded primary,210,96,114,45.70%,54.30%,5,2.40%,22,10.50%,21,189,0,10.00%,90.00%,0.00%,43,43,210,20.50% +137934,825,7003,State-funded special school,155,155,0,100.00%,0.00%,155,100.00%,0,0.00%,17,138,0,11.00%,89.00%,0.00%,41,31,127,24.40% +137935,205,4620,State-funded secondary,1129,1129,0,100.00%,0.00%,18,1.60%,72,6.40%,414,656,59,36.70%,58.10%,5.20%,157,181,981,18.50% +137936,931,4010,State-funded secondary,983,495,488,50.40%,49.60%,15,1.50%,103,10.50%,70,909,4,7.10%,92.50%,0.40%,102,144,833,17.30% +137937,881,4020,State-funded secondary,876,435,441,49.70%,50.30%,32,3.70%,122,13.90%,50,825,1,5.70%,94.20%,0.10%,232,275,876,31.40% +137938,919,5412,State-funded secondary,1037,426,611,41.10%,58.90%,29,2.80%,113,10.90%,308,728,1,29.70%,70.20%,0.10%,115,120,911,13.20% +137939,825,2340,State-funded primary,656,308,348,47.00%,53.00%,15,2.30%,57,8.70%,85,571,0,13.00%,87.00%,0.00%,45,47,587,8.00% +137940,313,4500,State-funded secondary,1099,2,1097,0.20%,99.80%,15,1.40%,134,12.20%,687,396,16,62.50%,36.00%,1.50%,281,268,905,29.60% +137941,823,4083,State-funded secondary,1209,605,604,50.00%,50.00%,20,1.70%,96,7.90%,26,1183,0,2.20%,97.80%,0.00%,106,91,902,10.10% +137942,390,4027,State-funded secondary,1338,714,624,53.40%,46.60%,16,1.20%,181,13.50%,79,1251,8,5.90%,93.50%,0.60%,346,357,1144,31.20% +137943,919,2454,State-funded primary,454,228,226,50.20%,49.80%,14,3.10%,40,8.80%,86,368,0,18.90%,81.10%,0.00%,46,48,417,11.50% +137944,881,5448,State-funded secondary,994,485,509,48.80%,51.20%,19,1.90%,93,9.40%,165,829,0,16.60%,83.40%,0.00%,239,283,994,28.50% +137945,881,5470,State-funded secondary,893,456,437,51.10%,48.90%,19,2.10%,50,5.60%,24,867,2,2.70%,97.10%,0.20%,95,120,893,13.40% +137947,823,4006,State-funded primary,1198,575,623,48.00%,52.00%,48,4.00%,134,11.20%,88,1110,0,7.30%,92.70%,0.00%,146,151,950,15.90% +137948,823,4079,State-funded secondary,1674,809,865,48.30%,51.70%,58,3.50%,119,7.10%,35,1637,2,2.10%,97.80%,0.10%,130,134,1211,11.10% +137949,926,4031,State-funded secondary,576,286,290,49.70%,50.30%,17,3.00%,55,9.50%,112,464,0,19.40%,80.60%,0.00%,147,158,576,27.40% +137951,357,2000,State-funded primary,387,179,208,46.30%,53.70%,7,1.80%,78,20.20%,57,330,0,14.70%,85.30%,0.00%,181,183,348,52.60% +137954,208,6907,State-funded secondary,581,268,313,46.10%,53.90%,21,3.60%,75,12.90%,279,299,3,48.00%,51.50%,0.50%,307,334,581,57.50% +137956,860,6039,Independent school,8,0,8,0.00%,100.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +137958,305,3507,State-funded primary,218,107,111,49.10%,50.90%,3,1.40%,14,6.40%,24,194,0,11.00%,89.00%,0.00%,8,11,218,5.00% +137959,306,5201,State-funded primary,436,220,216,50.50%,49.50%,9,2.10%,45,10.30%,150,276,10,34.40%,63.30%,2.30%,55,55,402,13.70% +137960,885,2134,State-funded primary,438,203,235,46.30%,53.70%,9,2.10%,35,8.00%,9,429,0,2.10%,97.90%,0.00%,40,40,438,9.10% +137961,886,2264,State-funded primary,675,327,348,48.40%,51.60%,19,2.80%,79,11.70%,42,633,0,6.20%,93.80%,0.00%,192,191,643,29.70% +137962,909,2319,State-funded primary,286,133,153,46.50%,53.50%,12,4.20%,46,16.10%,28,252,6,9.80%,88.10%,2.10%,60,63,286,22.00% +137963,878,2709,State-funded primary,447,206,241,46.10%,53.90%,7,1.60%,51,11.40%,2,445,0,0.40%,99.60%,0.00%,40,39,410,9.50% +137964,825,5202,State-funded primary,664,327,337,49.20%,50.80%,9,1.40%,57,8.60%,369,288,7,55.60%,43.40%,1.10%,165,165,624,26.40% +137965,303,4008,State-funded secondary,1464,1361,103,93.00%,7.00%,41,2.80%,93,6.40%,231,1227,6,15.80%,83.80%,0.40%,158,196,1133,17.30% +137966,208,5404,State-funded secondary,398,390,8,98.00%,2.00%,12,3.00%,43,10.80%,186,212,0,46.70%,53.30%,0.00%,172,174,324,53.70% +137967,384,3006,State-funded primary,127,51,76,40.20%,59.80%,4,3.10%,12,9.40%,0,127,0,0.00%,100.00%,0.00%,6,7,105,6.70% +137968,855,4053,State-funded secondary,920,406,514,44.10%,55.90%,27,2.90%,145,15.80%,39,881,0,4.20%,95.80%,0.00%,171,177,920,19.20% +137969,855,4048,State-funded secondary,1634,810,824,49.60%,50.40%,29,1.80%,127,7.80%,192,1442,0,11.80%,88.20%,0.00%,164,180,1253,14.40% +137970,931,4116,State-funded secondary,2007,964,1043,48.00%,52.00%,71,3.50%,241,12.00%,570,1432,5,28.40%,71.40%,0.20%,224,226,1380,16.40% +137971,881,2180,State-funded primary,685,305,380,44.50%,55.50%,22,3.20%,79,11.50%,109,576,0,15.90%,84.10%,0.00%,114,123,685,18.00% +137972,333,2045,State-funded primary,437,205,232,46.90%,53.10%,7,1.60%,41,9.40%,70,367,0,16.00%,84.00%,0.00%,149,154,399,38.60% +137973,890,4057,State-funded secondary,1168,551,617,47.20%,52.80%,9,0.80%,228,19.50%,38,1130,0,3.30%,96.70%,0.00%,426,446,1168,38.20% +137974,335,5405,State-funded secondary,1604,768,836,47.90%,52.10%,53,3.30%,170,10.60%,182,1421,1,11.30%,88.60%,0.10%,320,329,1334,24.70% +137975,881,5457,State-funded secondary,1264,612,652,48.40%,51.60%,16,1.30%,217,17.20%,43,1217,4,3.40%,96.30%,0.30%,159,175,1117,15.70% +137976,931,4094,State-funded secondary,623,313,310,50.20%,49.80%,17,2.70%,94,15.10%,11,612,0,1.80%,98.20%,0.00%,42,47,623,7.50% +137977,925,5212,State-funded primary,288,135,153,46.90%,53.10%,6,2.10%,29,10.10%,11,277,0,3.80%,96.20%,0.00%,49,45,261,17.20% +137978,925,3506,State-funded primary,415,195,220,47.00%,53.00%,9,2.20%,16,3.90%,15,393,7,3.60%,94.70%,1.70%,35,38,415,9.20% +137979,825,2229,State-funded primary,428,207,221,48.40%,51.60%,11,2.60%,50,11.70%,174,254,0,40.70%,59.30%,0.00%,44,47,428,11.00% +137980,938,2007,State-funded primary,618,302,316,48.90%,51.10%,18,2.90%,105,17.00%,249,369,0,40.30%,59.70%,0.00%,165,169,618,27.30% +137981,891,4009,State-funded secondary,2681,1392,1289,51.90%,48.10%,19,0.70%,366,13.70%,137,2541,3,5.10%,94.80%,0.10%,558,536,2054,26.10% +137982,845,4026,State-funded secondary,1592,817,775,51.30%,48.70%,28,1.80%,147,9.20%,65,1527,0,4.10%,95.90%,0.00%,198,211,1375,15.30% +137983,855,4049,State-funded secondary,952,470,482,49.40%,50.60%,32,3.40%,162,17.00%,62,890,0,6.50%,93.50%,0.00%,155,161,800,20.10% +137984,855,5403,State-funded secondary,1311,625,686,47.70%,52.30%,39,3.00%,178,13.60%,193,1098,20,14.70%,83.80%,1.50%,253,302,1311,23.00% +137985,919,4013,State-funded secondary,1162,1132,30,97.40%,2.60%,10,0.90%,42,3.60%,80,1082,0,6.90%,93.10%,0.00%,79,87,895,9.70% +137986,891,3118,State-funded primary,88,44,44,50.00%,50.00%,1,1.10%,6,6.80%,0,88,0,0.00%,100.00%,0.00%,6,6,69,8.70% +137987,381,2004,State-funded primary,341,168,173,49.30%,50.70%,8,2.30%,23,6.70%,0,341,0,0.00%,100.00%,0.00%,41,52,341,15.20% +137988,330,4660,State-funded secondary,1347,107,1240,7.90%,92.10%,2,0.10%,80,5.90%,320,1017,10,23.80%,75.50%,0.70%,116,107,927,11.50% +137989,937,2424,State-funded primary,150,78,72,52.00%,48.00%,6,4.00%,13,8.70%,41,109,0,27.30%,72.70%,0.00%,53,53,150,35.30% +137990,887,2421,State-funded primary,211,100,111,47.40%,52.60%,4,1.90%,14,6.60%,5,206,0,2.40%,97.60%,0.00%,20,22,211,10.40% +137991,350,2072,State-funded primary,223,112,111,50.20%,49.80%,3,1.30%,32,14.30%,9,214,0,4.00%,96.00%,0.00%,48,51,198,25.80% +137992,931,2561,State-funded primary,217,113,104,52.10%,47.90%,8,3.70%,30,13.80%,27,190,0,12.40%,87.60%,0.00%,38,40,181,22.10% +137993,931,4141,State-funded secondary,1422,684,738,48.10%,51.90%,36,2.50%,249,17.50%,72,1350,0,5.10%,94.90%,0.00%,181,207,1253,16.50% +137994,304,5404,State-funded secondary,941,940,1,99.90%,0.10%,9,1.00%,70,7.40%,477,441,23,50.70%,46.90%,2.40%,295,286,779,36.70% +137995,313,4800,State-funded secondary,1206,568,638,47.10%,52.90%,24,2.00%,81,6.70%,806,398,2,66.80%,33.00%,0.20%,109,126,933,13.50% +137996,812,2182,State-funded primary,235,121,114,51.50%,48.50%,5,2.10%,26,11.10%,3,232,0,1.30%,98.70%,0.00%,49,54,206,26.20% +137997,919,7041,State-funded special school,125,25,100,20.00%,80.00%,125,100.00%,0,0.00%,16,109,0,12.80%,87.20%,0.00%,46,54,125,43.20% +137998,839,7021,State-funded special school,137,24,113,17.50%,82.50%,112,81.80%,25,18.20%,1,136,0,0.70%,99.30%,0.00%,95,105,137,76.60% +137999,870,6011,Independent school,22,8,14,36.40%,63.60%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138000,841,3514,State-funded primary,408,187,221,45.80%,54.20%,12,2.90%,53,13.00%,3,405,0,0.70%,99.30%,0.00%,66,69,372,18.50% +138001,886,3142,State-funded primary,96,45,51,46.90%,53.10%,1,1.00%,8,8.30%,8,88,0,8.30%,91.70%,0.00%,15,17,96,17.70% +138002,895,4163,State-funded secondary,1267,666,601,52.60%,47.40%,36,2.80%,120,9.50%,29,1231,7,2.30%,97.20%,0.60%,143,151,1078,14.00% +138003,823,4073,State-funded secondary,646,309,337,47.80%,52.20%,23,3.60%,67,10.40%,63,583,0,9.80%,90.20%,0.00%,122,133,646,20.60% +138005,866,2151,State-funded primary,285,121,164,42.50%,57.50%,11,3.90%,69,24.20%,12,273,0,4.20%,95.80%,0.00%,159,166,253,65.60% +138006,384,4031,State-funded secondary,816,390,426,47.80%,52.20%,16,2.00%,70,8.60%,38,746,32,4.70%,91.40%,3.90%,285,301,816,36.90% +138007,371,2080,State-funded primary,228,109,119,47.80%,52.20%,5,2.20%,19,8.30%,3,225,0,1.30%,98.70%,0.00%,28,26,206,12.60% +138008,371,2127,State-funded primary,221,110,111,49.80%,50.20%,7,3.20%,17,7.70%,9,212,0,4.10%,95.90%,0.00%,73,74,200,37.00% +138009,931,2562,State-funded primary,428,216,212,50.50%,49.50%,17,4.00%,78,18.20%,20,408,0,4.70%,95.30%,0.00%,73,83,404,20.50% +138011,350,2050,State-funded primary,188,94,94,50.00%,50.00%,1,0.50%,11,5.90%,8,180,0,4.30%,95.70%,0.00%,18,18,156,11.50% +138012,871,5409,State-funded secondary,1338,619,719,46.30%,53.70%,45,3.40%,154,11.50%,441,878,19,33.00%,65.60%,1.40%,246,266,1180,22.50% +138013,871,5200,State-funded primary,1039,511,528,49.20%,50.80%,21,2.00%,131,12.60%,488,551,0,47.00%,53.00%,0.00%,145,155,1039,14.90% +138014,812,3514,State-funded primary,139,78,61,56.10%,43.90%,10,7.20%,29,20.90%,10,129,0,7.20%,92.80%,0.00%,48,49,126,38.90% +138015,813,3323,State-funded primary,182,101,81,55.50%,44.50%,0,0.00%,22,12.10%,18,164,0,9.90%,90.10%,0.00%,27,28,182,15.40% +138016,813,3325,State-funded primary,324,157,167,48.50%,51.50%,6,1.90%,41,12.70%,89,235,0,27.50%,72.50%,0.00%,72,73,304,24.00% +138017,813,3326,State-funded primary,377,195,182,51.70%,48.30%,2,0.50%,42,11.10%,245,132,0,65.00%,35.00%,0.00%,59,55,354,15.50% +138018,813,4700,State-funded secondary,673,333,340,49.50%,50.50%,11,1.60%,92,13.70%,152,521,0,22.60%,77.40%,0.00%,160,177,673,26.30% +138019,886,4528,State-funded secondary,1252,26,1226,2.10%,97.90%,7,0.60%,36,2.90%,237,1015,0,18.90%,81.10%,0.00%,91,89,1001,8.90% +138020,865,4075,State-funded secondary,1254,633,621,50.50%,49.50%,40,3.20%,182,14.50%,125,1102,27,10.00%,87.90%,2.20%,255,264,1143,23.10% +138021,823,2149,State-funded primary,389,198,191,50.90%,49.10%,8,2.10%,20,5.10%,115,274,0,29.60%,70.40%,0.00%,39,39,329,11.90% +138022,823,3014,State-funded primary,284,148,136,52.10%,47.90%,7,2.50%,15,5.30%,1,283,0,0.40%,99.60%,0.00%,37,38,284,13.40% +138023,331,4026,State-funded secondary,1880,910,970,48.40%,51.60%,18,1.00%,300,16.00%,332,1544,4,17.70%,82.10%,0.20%,369,383,1656,23.10% +138024,908,4153,State-funded secondary,1070,542,528,50.70%,49.30%,13,1.20%,166,15.50%,28,1042,0,2.60%,97.40%,0.00%,218,229,1070,21.40% +138025,393,2036,State-funded primary,176,73,103,41.50%,58.50%,1,0.60%,28,15.90%,3,173,0,1.70%,98.30%,0.00%,93,106,176,60.20% +138026,885,2135,State-funded primary,448,217,231,48.40%,51.60%,1,0.20%,43,9.60%,16,431,1,3.60%,96.20%,0.20%,43,43,415,10.40% +138027,823,4503,State-funded secondary,569,273,296,48.00%,52.00%,49,8.60%,83,14.60%,18,551,0,3.20%,96.80%,0.00%,78,84,569,14.80% +138028,881,2080,State-funded primary,563,272,291,48.30%,51.70%,15,2.70%,71,12.60%,69,494,0,12.30%,87.70%,0.00%,62,76,563,13.50% +138029,873,2209,State-funded primary,397,186,211,46.90%,53.10%,12,3.00%,30,7.60%,42,354,1,10.60%,89.20%,0.30%,61,62,397,15.60% +138032,885,4501,State-funded secondary,1094,518,576,47.30%,52.70%,40,3.70%,141,12.90%,96,993,5,8.80%,90.80%,0.50%,269,297,989,30.00% +138033,333,2122,State-funded primary,665,310,355,46.60%,53.40%,15,2.30%,47,7.10%,347,309,9,52.20%,46.50%,1.40%,216,223,603,37.00% +138034,886,2232,State-funded primary,201,109,92,54.20%,45.80%,6,3.00%,18,9.00%,4,197,0,2.00%,98.00%,0.00%,51,51,201,25.40% +138035,884,2102,State-funded primary,192,100,92,52.10%,47.90%,2,1.00%,19,9.90%,11,179,2,5.70%,93.20%,1.00%,11,13,192,6.80% +138036,359,2036,State-funded primary,448,205,243,45.80%,54.20%,7,1.60%,27,6.00%,39,409,0,8.70%,91.30%,0.00%,17,16,410,3.90% +138037,884,3333,State-funded primary,425,201,224,47.30%,52.70%,7,1.60%,56,13.20%,42,379,4,9.90%,89.20%,0.90%,36,39,425,9.20% +138038,850,4110,State-funded secondary,946,470,476,49.70%,50.30%,31,3.30%,95,10.00%,20,924,2,2.10%,97.70%,0.20%,254,277,946,29.30% +138039,926,4005,State-funded secondary,1577,698,879,44.30%,55.70%,52,3.30%,85,5.40%,162,1415,0,10.30%,89.70%,0.00%,313,311,1243,25.00% +138040,839,3692,State-funded primary,423,204,219,48.20%,51.80%,10,2.40%,55,13.00%,25,393,5,5.90%,92.90%,1.20%,19,24,423,5.70% +138041,878,4053,State-funded secondary,779,383,396,49.20%,50.80%,30,3.90%,117,15.00%,10,767,2,1.30%,98.50%,0.30%,87,105,779,13.50% +138042,919,5414,State-funded secondary,1290,601,688,46.60%,53.30%,26,2.00%,184,14.30%,133,1156,1,10.30%,89.60%,0.10%,202,208,1087,19.10% +138043,860,2242,State-funded primary,343,163,180,47.50%,52.50%,4,1.20%,62,18.10%,10,333,0,2.90%,97.10%,0.00%,50,52,343,15.20% +138044,882,5950,State-funded special school,241,43,198,17.80%,82.20%,241,100.00%,0,0.00%,21,220,0,8.70%,91.30%,0.00%,113,111,230,48.30% +138046,887,4174,State-funded secondary,981,0,981,0.00%,100.00%,14,1.40%,235,24.00%,45,936,0,4.60%,95.40%,0.00%,245,253,846,29.90% +138047,880,2000,State-funded primary,400,212,188,53.00%,47.00%,14,3.50%,48,12.00%,52,344,4,13.00%,86.00%,1.00%,166,156,341,45.70% +138048,883,2000,State-funded primary,687,359,328,52.30%,47.70%,26,3.80%,80,11.60%,139,546,2,20.20%,79.50%,0.30%,327,349,621,56.20% +138049,938,2003,State-funded primary,207,104,103,50.20%,49.80%,6,2.90%,52,25.10%,20,187,0,9.70%,90.30%,0.00%,63,63,190,33.20% +138050,938,2004,State-funded primary,568,274,294,48.20%,51.80%,8,1.40%,80,14.10%,240,323,5,42.30%,56.90%,0.90%,188,195,568,34.30% +138051,302,4752,State-funded secondary,795,795,0,100.00%,0.00%,1,0.10%,23,2.90%,332,457,6,41.80%,57.50%,0.80%,22,24,520,4.60% +138053,873,4051,State-funded secondary,1111,551,560,49.60%,50.40%,27,2.40%,139,12.50%,36,1070,5,3.20%,96.30%,0.50%,230,230,972,23.70% +138054,394,4610,State-funded secondary,1330,1330,0,100.00%,0.00%,4,0.30%,102,7.70%,204,1126,0,15.30%,84.70%,0.00%,223,219,1094,20.00% +138055,884,3102,State-funded primary,201,100,101,49.80%,50.20%,4,2.00%,17,8.50%,0,201,0,0.00%,100.00%,0.00%,2,2,158,1.30% +138056,941,2117,State-funded primary,140,64,76,45.70%,54.30%,1,0.70%,12,8.60%,7,133,0,5.00%,95.00%,0.00%,15,15,140,10.70% +138057,925,3040,State-funded primary,266,131,135,49.20%,50.80%,8,3.00%,54,20.30%,11,255,0,4.10%,95.90%,0.00%,20,20,266,7.50% +138058,825,4070,State-funded secondary,1154,563,591,48.80%,51.20%,61,5.30%,131,11.40%,105,1047,2,9.10%,90.70%,0.20%,111,106,1005,10.50% +138059,330,4323,State-funded secondary,1039,535,504,51.50%,48.50%,7,0.70%,153,14.70%,292,747,0,28.10%,71.90%,0.00%,385,535,1039,51.50% +138062,812,2175,State-funded primary,233,107,126,45.90%,54.10%,2,0.90%,5,2.10%,0,233,0,0.00%,100.00%,0.00%,17,17,233,7.30% +138063,925,2247,State-funded primary,233,103,130,44.20%,55.80%,17,7.30%,63,27.00%,33,200,0,14.20%,85.80%,0.00%,151,166,211,78.70% +138065,883,2824,State-funded primary,698,356,342,51.00%,49.00%,24,3.40%,86,12.30%,108,588,2,15.50%,84.20%,0.30%,196,204,698,29.20% +138067,822,4098,State-funded secondary,481,220,261,45.70%,54.30%,25,5.20%,62,12.90%,158,319,4,32.80%,66.30%,0.80%,134,155,481,32.20% +138069,373,4234,State-funded secondary,1818,935,883,51.40%,48.60%,31,1.70%,166,9.10%,404,1405,9,22.20%,77.30%,0.50%,269,228,1352,16.90% +138070,891,2315,State-funded primary,423,207,216,48.90%,51.10%,0,0.00%,33,7.80%,65,358,0,15.40%,84.60%,0.00%,17,20,423,4.70% +138071,938,2005,State-funded primary,315,153,162,48.60%,51.40%,5,1.60%,36,11.40%,27,288,0,8.60%,91.40%,0.00%,56,58,315,18.40% +138072,881,2012,State-funded primary,378,181,197,47.90%,52.10%,8,2.10%,56,14.80%,11,367,0,2.90%,97.10%,0.00%,113,116,378,30.70% +138073,941,2022,State-funded secondary,1039,509,530,49.00%,51.00%,10,1.00%,154,14.80%,199,839,1,19.20%,80.80%,0.10%,283,289,952,30.40% +138074,886,2006,State-funded primary,197,96,101,48.70%,51.30%,6,3.00%,30,15.20%,9,188,0,4.60%,95.40%,0.00%,81,83,178,46.60% +138075,840,4280,State-funded secondary,795,388,407,48.80%,51.20%,9,1.10%,102,12.80%,14,781,0,1.80%,98.20%,0.00%,252,274,795,34.50% +138076,891,4456,State-funded secondary,1137,569,568,50.00%,50.00%,13,1.10%,119,10.50%,55,1079,3,4.80%,94.90%,0.30%,259,267,1017,26.30% +138078,929,4168,State-funded primary,224,129,95,57.60%,42.40%,0,0.00%,37,16.50%,1,223,0,0.40%,99.60%,0.00%,42,42,186,22.60% +138079,855,4022,State-funded secondary,824,426,398,51.70%,48.30%,13,1.60%,142,17.20%,127,697,0,15.40%,84.60%,0.00%,126,145,824,17.60% +138080,855,3347,State-funded primary,203,100,103,49.30%,50.70%,3,1.50%,27,13.30%,22,180,1,10.80%,88.70%,0.50%,30,30,203,14.80% +138081,856,3422,State-funded primary,396,202,194,51.00%,49.00%,6,1.50%,52,13.10%,294,102,0,74.20%,25.80%,0.00%,74,75,374,20.10% +138082,810,4622,State-funded secondary,699,71,628,10.20%,89.80%,15,2.10%,52,7.40%,190,509,0,27.20%,72.80%,0.00%,272,288,699,41.20% +138083,371,2052,State-funded primary,114,51,63,44.70%,55.30%,3,2.60%,20,17.50%,9,105,0,7.90%,92.10%,0.00%,78,78,105,74.30% +138084,881,5444,State-funded secondary,1744,888,856,50.90%,49.10%,35,2.00%,261,15.00%,77,1667,0,4.40%,95.60%,0.00%,401,504,1500,33.60% +138085,813,2120,State-funded primary,110,54,56,49.10%,50.90%,3,2.70%,13,11.80%,4,106,0,3.60%,96.40%,0.00%,40,41,110,37.30% +138086,813,2126,State-funded primary,209,94,115,45.00%,55.00%,4,1.90%,16,7.70%,2,207,0,1.00%,99.00%,0.00%,11,12,209,5.70% +138087,380,4041,State-funded secondary,1075,1075,0,100.00%,0.00%,10,0.90%,46,4.30%,520,550,5,48.40%,51.20%,0.50%,350,327,884,37.00% +138088,841,2659,State-funded primary,232,121,111,52.20%,47.80%,3,1.30%,43,18.50%,8,224,0,3.40%,96.60%,0.00%,86,89,208,42.80% +138089,841,4285,State-funded secondary,854,428,426,50.10%,49.90%,29,3.40%,158,18.50%,49,805,0,5.70%,94.30%,0.00%,317,366,854,42.90% +138090,855,3343,State-funded primary,209,112,97,53.60%,46.40%,4,1.90%,23,11.00%,42,167,0,20.10%,79.90%,0.00%,9,9,209,4.30% +138093,841,7031,State-funded special school,291,78,213,26.80%,73.20%,291,100.00%,0,0.00%,10,281,0,3.40%,96.60%,0.00%,148,148,266,55.60% +138094,856,7003,State-funded special school,165,69,96,41.80%,58.20%,162,98.20%,3,1.80%,33,132,0,20.00%,80.00%,0.00%,78,64,127,50.40% +138097,352,4002,State-funded secondary,880,422,458,48.00%,52.00%,21,2.40%,171,19.40%,575,303,2,65.30%,34.40%,0.20%,521,535,880,60.80% +138098,336,4000,State-funded secondary,1095,540,555,49.30%,50.70%,25,2.30%,217,19.80%,301,793,1,27.50%,72.40%,0.10%,446,437,944,46.30% +138099,380,7000,State-funded special school,132,15,117,11.40%,88.60%,132,100.00%,0,0.00%,4,128,0,3.00%,97.00%,0.00%,72,83,122,68.00% +138101,204,6005,Independent school,222,0,222,0.00%,100.00%,16,7.20%,29,13.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138102,825,1105,State-funded AP school,9,4,5,44.40%,55.60%,9,100.00%,0,0.00%,1,8,0,11.10%,88.90%,0.00%,3,2,6,33.30% +138103,394,4055,State-funded secondary,1464,718,746,49.00%,51.00%,10,0.70%,139,9.50%,72,1391,1,4.90%,95.00%,0.10%,436,415,1237,33.50% +138104,330,2195,State-funded primary,658,305,353,46.40%,53.60%,28,4.30%,166,25.20%,81,574,3,12.30%,87.20%,0.50%,342,346,591,58.50% +138105,881,5250,State-funded primary,217,113,104,52.10%,47.90%,5,2.30%,29,13.40%,57,160,0,26.30%,73.70%,0.00%,9,11,217,5.10% +138106,919,4620,State-funded secondary,962,958,4,99.60%,0.40%,6,0.60%,99,10.30%,269,692,1,28.00%,71.90%,0.10%,103,113,795,14.20% +138107,885,4754,State-funded secondary,1026,520,506,50.70%,49.30%,9,0.90%,171,16.70%,166,826,34,16.20%,80.50%,3.30%,345,377,1026,36.70% +138108,855,4016,State-funded secondary,818,431,387,52.70%,47.30%,14,1.70%,145,17.70%,14,804,0,1.70%,98.30%,0.00%,69,73,818,8.90% +138109,865,5213,State-funded primary,209,105,104,50.20%,49.80%,1,0.50%,38,18.20%,5,204,0,2.40%,97.60%,0.00%,30,31,209,14.80% +138110,359,4035,State-funded secondary,1180,568,612,48.10%,51.90%,49,4.20%,115,9.70%,52,1128,0,4.40%,95.60%,0.00%,273,291,1180,24.70% +138111,382,4045,State-funded secondary,1022,490,532,47.90%,52.10%,23,2.30%,162,15.90%,22,1000,0,2.20%,97.80%,0.00%,181,194,1022,19.00% +138112,865,3244,State-funded primary,188,95,93,50.50%,49.50%,3,1.60%,23,12.20%,4,184,0,2.10%,97.90%,0.00%,14,14,188,7.40% +138113,857,2313,State-funded primary,207,107,100,51.70%,48.30%,3,1.40%,26,12.60%,15,192,0,7.20%,92.80%,0.00%,17,18,207,8.70% +138115,856,3424,State-funded primary,245,126,119,51.40%,48.60%,2,0.80%,35,14.30%,61,184,0,24.90%,75.10%,0.00%,59,61,233,26.20% +138116,371,4036,State-funded secondary,791,391,400,49.40%,50.60%,21,2.70%,98,12.40%,28,763,0,3.50%,96.50%,0.00%,243,253,739,34.20% +138117,935,2000,State-funded primary,120,56,64,46.70%,53.30%,3,2.50%,32,26.70%,23,97,0,19.20%,80.80%,0.00%,56,56,120,46.70% +138118,390,6000,Independent school,287,287,0,100.00%,0.00%,1,0.30%,24,8.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138120,391,4485,State-funded secondary,1820,902,918,49.60%,50.40%,42,2.30%,172,9.50%,499,1302,19,27.40%,71.50%,1.00%,1002,959,1621,59.20% +138121,825,3346,State-funded primary,219,99,120,45.20%,54.80%,7,3.20%,21,9.60%,15,204,0,6.80%,93.20%,0.00%,25,25,219,11.40% +138122,881,7071,State-funded special school,275,88,187,32.00%,68.00%,271,98.50%,4,1.50%,24,251,0,8.70%,91.30%,0.00%,81,77,241,32.00% +138123,358,5401,State-funded secondary,1421,654,767,46.00%,54.00%,62,4.40%,198,13.90%,159,1259,3,11.20%,88.60%,0.20%,209,250,1304,19.20% +138124,358,4012,State-funded secondary,596,294,302,49.30%,50.70%,16,2.70%,120,20.10%,180,416,0,30.20%,69.80%,0.00%,299,310,596,52.00% +138128,841,3306,State-funded primary,246,113,133,45.90%,54.10%,3,1.20%,36,14.60%,7,239,0,2.80%,97.20%,0.00%,88,91,207,44.00% +138129,841,2001,State-funded primary,310,136,174,43.90%,56.10%,6,1.90%,45,14.50%,27,283,0,8.70%,91.30%,0.00%,170,170,289,58.80% +138130,355,7025,State-funded special school,326,93,233,28.50%,71.50%,320,98.20%,6,1.80%,25,301,0,7.70%,92.30%,0.00%,165,152,251,60.60% +138133,865,2006,State-funded primary,532,255,277,47.90%,52.10%,21,3.90%,75,14.10%,71,461,0,13.30%,86.70%,0.00%,49,49,487,10.10% +138134,358,5900,State-funded secondary,1082,0,1082,0.00%,100.00%,6,0.60%,75,6.90%,73,1009,0,6.70%,93.30%,0.00%,41,52,809,6.40% +138135,850,4511,State-funded secondary,1317,662,655,50.30%,49.70%,49,3.70%,180,13.70%,68,1247,2,5.20%,94.70%,0.20%,178,200,1317,15.20% +138136,330,4307,State-funded secondary,1750,835,915,47.70%,52.30%,41,2.30%,195,11.10%,92,1637,21,5.30%,93.50%,1.20%,172,184,1391,13.20% +138137,330,4206,State-funded secondary,753,363,390,48.20%,51.80%,30,4.00%,110,14.60%,124,615,14,16.50%,81.70%,1.90%,326,347,753,46.10% +138138,926,6002,Independent school,42,8,34,19.00%,81.00%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138139,850,2010,State-funded primary,414,213,201,51.40%,48.60%,12,2.90%,39,9.40%,138,276,0,33.30%,66.70%,0.00%,99,104,414,25.10% +138147,800,6015,Independent school,119,65,54,54.60%,45.40%,9,7.60%,15,12.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138148,896,4001,State-funded secondary,1076,522,554,48.50%,51.50%,12,1.10%,104,9.70%,33,1042,1,3.10%,96.80%,0.10%,178,193,1076,17.90% +138149,925,2137,State-funded primary,161,81,80,50.30%,49.70%,5,3.10%,18,11.20%,19,142,0,11.80%,88.20%,0.00%,28,29,161,18.00% +138150,855,4503,State-funded secondary,1580,824,756,52.20%,47.80%,30,1.90%,122,7.70%,41,1442,97,2.60%,91.30%,6.10%,119,113,1208,9.40% +138151,886,2595,State-funded primary,412,198,214,48.10%,51.90%,10,2.40%,85,20.60%,41,371,0,10.00%,90.00%,0.00%,87,90,412,21.80% +138152,350,2064,State-funded primary,238,114,124,47.90%,52.10%,1,0.40%,15,6.30%,2,235,1,0.80%,98.70%,0.40%,37,39,238,16.40% +138153,940,5208,State-funded primary,864,389,475,45.00%,55.00%,14,1.60%,151,17.50%,167,696,1,19.30%,80.60%,0.10%,207,220,745,29.50% +138154,855,2146,State-funded primary,559,280,279,50.10%,49.90%,8,1.40%,44,7.90%,73,484,2,13.10%,86.60%,0.40%,54,56,559,10.00% +138155,855,4041,State-funded secondary,862,374,488,43.40%,56.60%,31,3.60%,16,1.90%,130,732,0,15.10%,84.90%,0.00%,102,117,862,13.60% +138156,855,7216,State-funded special school,387,123,264,31.80%,68.20%,387,100.00%,0,0.00%,33,352,2,8.50%,91.00%,0.50%,131,115,326,35.30% +138157,312,7012,State-funded special school,131,42,89,32.10%,67.90%,131,100.00%,0,0.00%,60,71,0,45.80%,54.20%,0.00%,34,37,129,28.70% +138158,312,7010,State-funded special school,130,45,85,34.60%,65.40%,130,100.00%,0,0.00%,75,55,0,57.70%,42.30%,0.00%,71,58,95,61.10% +138159,909,5216,State-funded primary,24,15,9,62.50%,37.50%,0,0.00%,3,12.50%,0,24,0,0.00%,100.00%,0.00%,2,2,22,9.10% +138160,941,2158,State-funded primary,416,198,218,47.60%,52.40%,9,2.20%,39,9.40%,105,286,25,25.20%,68.80%,6.00%,67,70,416,16.80% +138161,935,2036,State-funded primary,408,203,205,49.80%,50.20%,7,1.70%,41,10.00%,65,342,1,15.90%,83.80%,0.20%,126,128,408,31.40% +138162,935,4004,State-funded secondary,732,396,336,54.10%,45.90%,42,5.70%,99,13.50%,102,628,2,13.90%,85.80%,0.30%,180,202,732,27.60% +138163,371,2194,State-funded primary,279,127,152,45.50%,54.50%,3,1.10%,16,5.70%,3,276,0,1.10%,98.90%,0.00%,40,40,279,14.30% +138164,881,3824,State-funded primary,207,106,101,51.20%,48.80%,4,1.90%,11,5.30%,59,148,0,28.50%,71.50%,0.00%,7,9,207,4.30% +138166,871,3365,State-funded primary,793,358,435,45.10%,54.90%,81,10.20%,80,10.10%,437,327,29,55.10%,41.20%,3.70%,146,148,741,20.00% +138167,886,4113,State-funded secondary,803,455,348,56.70%,43.30%,12,1.50%,190,23.70%,130,673,0,16.20%,83.80%,0.00%,373,370,705,52.50% +138168,886,2315,State-funded primary,315,136,179,43.20%,56.80%,13,4.10%,44,14.00%,34,281,0,10.80%,89.20%,0.00%,186,189,281,67.30% +138169,886,2310,State-funded primary,215,94,121,43.70%,56.30%,3,1.40%,29,13.50%,17,198,0,7.90%,92.10%,0.00%,115,119,215,55.30% +138170,886,2316,State-funded primary,202,112,90,55.40%,44.60%,5,2.50%,28,13.90%,17,185,0,8.40%,91.60%,0.00%,77,77,167,46.10% +138172,840,4694,State-funded secondary,1375,671,704,48.80%,51.20%,20,1.50%,51,3.70%,72,1303,0,5.20%,94.80%,0.00%,209,212,1205,17.60% +138173,855,2190,State-funded primary,385,185,200,48.10%,51.90%,12,3.10%,52,13.50%,28,353,4,7.30%,91.70%,1.00%,76,81,385,21.00% +138174,882,5434,State-funded secondary,1631,828,803,50.80%,49.20%,24,1.50%,121,7.40%,85,1545,1,5.20%,94.70%,0.10%,255,283,1442,19.60% +138175,841,2668,State-funded primary,208,96,112,46.20%,53.80%,3,1.40%,9,4.30%,7,201,0,3.40%,96.60%,0.00%,17,17,208,8.20% +138176,841,2670,State-funded primary,337,162,175,48.10%,51.90%,9,2.70%,21,6.20%,22,315,0,6.50%,93.50%,0.00%,47,47,337,13.90% +138177,873,4045,State-funded secondary,1411,712,699,50.50%,49.50%,46,3.30%,82,5.80%,71,1340,0,5.00%,95.00%,0.00%,297,311,1271,24.50% +138178,306,5400,State-funded secondary,2060,938,1122,45.50%,54.50%,48,2.30%,215,10.40%,126,1934,0,6.10%,93.90%,0.00%,255,284,1633,17.40% +138179,841,2740,State-funded primary,425,183,242,43.10%,56.90%,11,2.60%,51,12.00%,40,385,0,9.40%,90.60%,0.00%,130,131,389,33.70% +138180,841,2732,State-funded primary,222,115,107,51.80%,48.20%,2,0.90%,19,8.60%,1,221,0,0.50%,99.50%,0.00%,15,15,222,6.80% +138181,823,4007,State-funded secondary,770,375,395,48.70%,51.30%,23,3.00%,76,9.90%,108,662,0,14.00%,86.00%,0.00%,112,116,770,15.10% +138182,887,2600,State-funded primary,226,125,101,55.30%,44.70%,17,7.50%,42,18.60%,43,182,1,19.00%,80.50%,0.40%,64,66,207,31.90% +138183,341,4787,State-funded secondary,905,905,0,100.00%,0.00%,8,0.90%,126,13.90%,126,777,2,13.90%,85.90%,0.20%,254,254,795,31.90% +138184,850,4161,State-funded secondary,1358,642,716,47.30%,52.70%,54,4.00%,169,12.40%,44,1312,2,3.20%,96.60%,0.10%,218,231,1358,17.00% +138185,856,3426,State-funded primary,280,125,155,44.60%,55.40%,3,1.10%,41,14.60%,60,220,0,21.40%,78.60%,0.00%,14,14,280,5.00% +138186,838,4031,State-funded secondary,590,294,296,49.80%,50.20%,23,3.90%,93,15.80%,31,559,0,5.30%,94.70%,0.00%,150,151,590,25.60% +138187,306,4031,State-funded secondary,1276,623,653,48.80%,51.20%,34,2.70%,222,17.40%,129,1147,0,10.10%,89.90%,0.00%,272,266,1116,23.80% +138188,865,3407,State-funded primary,202,103,99,51.00%,49.00%,5,2.50%,16,7.90%,9,193,0,4.50%,95.50%,0.00%,8,9,202,4.50% +138189,838,4802,State-funded secondary,479,240,239,50.10%,49.90%,29,6.10%,93,19.40%,18,461,0,3.80%,96.20%,0.00%,85,90,479,18.80% +138190,815,4219,State-funded secondary,724,367,357,50.70%,49.30%,27,3.70%,65,9.00%,55,668,1,7.60%,92.30%,0.10%,201,207,724,28.60% +138191,891,4454,State-funded secondary,976,494,482,50.60%,49.40%,7,0.70%,29,3.00%,96,877,3,9.80%,89.90%,0.30%,141,136,835,16.30% +138192,871,5209,State-funded primary,679,321,358,47.30%,52.70%,10,1.50%,97,14.30%,417,254,8,61.40%,37.40%,1.20%,98,101,631,16.00% +138193,839,5404,State-funded secondary,989,971,18,98.20%,1.80%,3,0.30%,131,13.20%,310,676,3,31.30%,68.40%,0.30%,226,238,949,25.10% +138194,330,2036,State-funded primary,342,161,181,47.10%,52.90%,5,1.50%,38,11.10%,200,142,0,58.50%,41.50%,0.00%,138,148,320,46.30% +138195,886,2007,State-funded primary,303,144,159,47.50%,52.50%,5,1.70%,31,10.20%,76,226,1,25.10%,74.60%,0.30%,131,135,273,49.50% +138196,316,4001,State-funded secondary,1197,576,621,48.10%,51.90%,21,1.80%,62,5.20%,411,786,0,34.30%,65.70%,0.00%,411,359,890,40.30% +138201,919,2004,State-funded primary,416,195,221,46.90%,53.10%,10,2.40%,41,9.90%,184,232,0,44.20%,55.80%,0.00%,102,104,416,25.00% +138202,211,4000,State-funded secondary,336,150,186,44.60%,55.40%,8,2.40%,39,11.60%,208,120,8,61.90%,35.70%,2.40%,112,150,336,44.60% +138203,308,2013,State-funded primary,446,224,222,50.20%,49.80%,10,2.20%,47,10.50%,261,182,3,58.50%,40.80%,0.70%,146,151,398,37.90% +138204,801,4037,State-funded secondary,1047,486,561,46.40%,53.60%,17,1.60%,145,13.80%,37,832,178,3.50%,79.50%,17.00%,316,348,1047,33.20% +138205,919,2093,State-funded primary,358,175,183,48.90%,51.10%,5,1.40%,41,11.50%,73,284,1,20.40%,79.30%,0.30%,30,31,358,8.70% +138206,919,2094,State-funded primary,314,149,165,47.50%,52.50%,3,1.00%,23,7.30%,63,251,0,20.10%,79.90%,0.00%,14,14,269,5.20% +138207,357,2061,State-funded primary,454,235,219,51.80%,48.20%,3,0.70%,16,3.50%,21,433,0,4.60%,95.40%,0.00%,54,56,421,13.30% +138208,885,4436,State-funded secondary,563,271,292,48.10%,51.90%,9,1.60%,131,23.30%,154,409,0,27.40%,72.60%,0.00%,219,234,563,41.60% +138209,823,2192,State-funded primary,454,219,235,48.20%,51.80%,19,4.20%,37,8.10%,73,381,0,16.10%,83.90%,0.00%,45,46,386,11.90% +138210,931,4050,State-funded secondary,1060,530,530,50.00%,50.00%,14,1.30%,176,16.60%,116,942,2,10.90%,88.90%,0.20%,151,171,903,18.90% +138211,390,2058,State-funded primary,148,79,69,53.40%,46.60%,1,0.70%,25,16.90%,3,145,0,2.00%,98.00%,0.00%,25,25,135,18.50% +138212,391,2010,State-funded primary,394,206,188,52.30%,47.70%,13,3.30%,85,21.60%,237,157,0,60.20%,39.80%,0.00%,278,275,346,79.50% +138213,394,2107,State-funded primary,199,100,99,50.30%,49.70%,0,0.00%,29,14.60%,8,191,0,4.00%,96.00%,0.00%,62,63,185,34.10% +138214,941,4066,State-funded secondary,1951,957,994,49.10%,50.90%,13,0.70%,264,13.50%,278,1668,5,14.20%,85.50%,0.30%,270,287,1736,16.50% +138215,919,5206,State-funded primary,232,101,131,43.50%,56.50%,10,4.30%,27,11.60%,36,195,1,15.50%,84.10%,0.40%,23,25,208,12.00% +138216,893,4368,State-funded secondary,849,420,429,49.50%,50.50%,26,3.10%,83,9.80%,41,808,0,4.80%,95.20%,0.00%,87,96,849,11.30% +138218,330,2065,State-funded primary,648,321,327,49.50%,50.50%,1,0.20%,114,17.60%,276,372,0,42.60%,57.40%,0.00%,216,219,612,35.80% +138219,881,7001,State-funded special school,165,51,114,30.90%,69.10%,165,100.00%,0,0.00%,6,159,0,3.60%,96.40%,0.00%,51,49,142,34.50% +138220,889,4000,State-funded secondary,679,0,679,0.00%,100.00%,20,2.90%,84,12.40%,452,224,3,66.60%,33.00%,0.40%,59,116,636,18.20% +138221,306,5402,State-funded secondary,1008,20,988,2.00%,98.00%,31,3.10%,92,9.10%,256,734,18,25.40%,72.80%,1.80%,312,333,792,42.00% +138222,330,4003,State-funded secondary,743,259,484,34.90%,65.10%,1,0.10%,71,9.60%,165,567,11,22.20%,76.30%,1.50%,268,127,244,52.00% +138226,936,2006,State-funded secondary,928,466,462,50.20%,49.80%,40,4.30%,90,9.70%,96,827,5,10.30%,89.10%,0.50%,137,131,846,15.50% +138227,310,4000,State-funded secondary,1231,548,683,44.50%,55.50%,28,2.30%,27,2.20%,499,731,1,40.50%,59.40%,0.10%,73,65,904,7.20% +138228,822,4001,State-funded secondary,508,252,256,49.60%,50.40%,20,3.90%,24,4.70%,309,199,0,60.80%,39.20%,0.00%,124,131,508,25.80% +138231,919,2028,State-funded primary,394,206,188,52.30%,47.70%,5,1.30%,31,7.90%,114,279,1,28.90%,70.80%,0.30%,43,44,394,11.20% +138232,886,2008,State-funded primary,427,210,217,49.20%,50.80%,6,1.40%,58,13.60%,46,381,0,10.80%,89.20%,0.00%,144,146,427,34.20% +138233,359,4005,State-funded secondary,509,231,278,45.40%,54.60%,22,4.30%,68,13.40%,24,480,5,4.70%,94.30%,1.00%,223,234,509,46.00% +138234,370,2001,State-funded primary,218,102,116,46.80%,53.20%,4,1.80%,35,16.10%,25,188,5,11.50%,86.20%,2.30%,90,89,194,45.90% +138235,941,4001,State-funded secondary,1166,616,550,52.80%,47.20%,45,3.90%,151,13.00%,153,943,70,13.10%,80.90%,6.00%,253,268,1026,26.10% +138237,812,2004,State-funded primary,417,204,213,48.90%,51.10%,11,2.60%,95,22.80%,50,367,0,12.00%,88.00%,0.00%,288,288,401,71.80% +138239,881,4005,State-funded secondary,1053,519,534,49.30%,50.70%,22,2.10%,91,8.60%,44,978,31,4.20%,92.90%,2.90%,85,95,829,11.50% +138242,850,2042,State-funded primary,73,37,36,50.70%,49.30%,2,2.70%,11,15.10%,0,73,0,0.00%,100.00%,0.00%,12,12,73,16.40% +138243,860,6040,Independent school,57,3,54,5.30%,94.70%,56,98.20%,1,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138245,203,4001,State-funded secondary,595,252,343,42.40%,57.60%,10,1.70%,94,15.80%,138,414,43,23.20%,69.60%,7.20%,185,222,595,37.30% +138246,810,4007,State-funded secondary,1252,564,688,45.00%,55.00%,18,1.40%,225,18.00%,247,1005,0,19.70%,80.30%,0.00%,581,643,1252,51.40% +138247,891,4011,State-funded secondary,1741,876,865,50.30%,49.70%,17,1.00%,159,9.10%,190,1549,2,10.90%,89.00%,0.10%,295,301,1479,20.40% +138248,891,4012,State-funded secondary,1662,888,774,53.40%,46.60%,9,0.50%,219,13.20%,196,1414,52,11.80%,85.10%,3.10%,372,383,1440,26.60% +138249,839,6008,Independent school,21,12,9,57.10%,42.90%,15,71.40%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138250,935,4009,State-funded secondary,566,273,293,48.20%,51.80%,20,3.50%,50,8.80%,44,518,4,7.80%,91.50%,0.70%,126,151,566,26.70% +138251,380,4010,State-funded secondary,638,296,342,46.40%,53.60%,24,3.80%,98,15.40%,130,507,1,20.40%,79.50%,0.20%,185,207,638,32.40% +138252,380,2008,State-funded primary,421,217,204,51.50%,48.50%,14,3.30%,55,13.10%,37,384,0,8.80%,91.20%,0.00%,65,67,421,15.90% +138253,826,7043,State-funded special school,92,6,86,6.50%,93.50%,92,100.00%,0,0.00%,3,89,0,3.30%,96.70%,0.00%,49,67,92,72.80% +138254,940,4003,State-funded secondary,999,467,532,46.70%,53.30%,21,2.10%,97,9.70%,289,709,1,28.90%,71.00%,0.10%,203,202,913,22.10% +138257,929,2000,State-funded primary,196,101,95,51.50%,48.50%,8,4.10%,55,28.10%,15,181,0,7.70%,92.30%,0.00%,65,68,184,37.00% +138258,320,2019,State-funded primary,181,90,91,49.70%,50.30%,7,3.90%,20,11.00%,107,74,0,59.10%,40.90%,0.00%,66,73,181,40.30% +138260,343,4000,State-funded secondary,553,279,274,50.50%,49.50%,12,2.20%,148,26.80%,113,438,2,20.40%,79.20%,0.40%,334,348,553,62.90% +138261,846,2008,State-funded primary,613,305,308,49.80%,50.20%,5,0.80%,46,7.50%,144,459,10,23.50%,74.90%,1.60%,83,85,613,13.90% +138262,211,1101,State-funded AP school,41,16,25,39.00%,61.00%,10,24.40%,29,70.70%,2,39,0,4.90%,95.10%,0.00%,26,35,41,85.40% +138264,892,1100,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +138266,313,4000,State-funded secondary,921,450,471,48.90%,51.10%,28,3.00%,131,14.20%,534,386,1,58.00%,41.90%,0.10%,341,320,727,44.00% +138267,212,4000,State-funded secondary,773,327,446,42.30%,57.70%,36,4.70%,103,13.30%,224,545,4,29.00%,70.50%,0.50%,163,172,605,28.40% +138268,893,2000,State-funded primary,97,45,52,46.40%,53.60%,1,1.00%,9,9.30%,2,95,0,2.10%,97.90%,0.00%,13,13,97,13.40% +138269,931,4002,State-funded secondary,1039,506,533,48.70%,51.30%,2,0.20%,113,10.90%,552,487,0,53.10%,46.90%,0.00%,40,41,953,4.30% +138270,210,2001,State-funded primary,221,111,110,50.20%,49.80%,5,2.30%,17,7.70%,136,85,0,61.50%,38.50%,0.00%,132,149,221,67.40% +138271,874,7000,State-funded special school,104,12,92,11.50%,88.50%,104,100.00%,0,0.00%,10,93,1,9.60%,89.40%,1.00%,43,45,104,43.30% +138272,302,2004,State-funded primary,200,107,93,53.50%,46.50%,8,4.00%,17,8.50%,31,169,0,15.50%,84.50%,0.00%,5,6,200,3.00% +138273,935,4010,State-funded secondary,222,101,121,45.50%,54.50%,41,18.50%,49,22.10%,7,214,1,3.20%,96.40%,0.50%,84,94,222,42.30% +138274,935,4016,State-funded secondary,288,149,139,51.70%,48.30%,28,9.70%,55,19.10%,10,278,0,3.50%,96.50%,0.00%,127,141,288,49.00% +138276,211,2008,State-funded primary,218,104,114,47.70%,52.30%,6,2.80%,10,4.60%,72,146,0,33.00%,67.00%,0.00%,67,74,200,37.00% +138277,831,1105,State-funded AP school,4,1,3,25.00%,75.00%,0,0.00%,4,100.00%,3,1,0,75.00%,25.00%,0.00%,4,4,4,100.00% +138278,801,2038,State-funded primary,374,183,191,48.90%,51.10%,10,2.70%,52,13.90%,96,278,0,25.70%,74.30%,0.00%,217,223,340,65.60% +138279,812,2005,State-funded primary,346,175,171,50.60%,49.40%,4,1.20%,74,21.40%,82,264,0,23.70%,76.30%,0.00%,184,190,315,60.30% +138280,873,2005,State-funded primary,269,126,143,46.80%,53.20%,8,3.00%,64,23.80%,35,234,0,13.00%,87.00%,0.00%,113,107,223,48.00% +138281,330,7031,State-funded special school,263,112,151,42.60%,57.40%,261,99.20%,2,0.80%,102,161,0,38.80%,61.20%,0.00%,105,91,208,43.80% +138282,925,3308,State-funded primary,275,139,136,50.50%,49.50%,9,3.30%,37,13.50%,64,211,0,23.30%,76.70%,0.00%,105,109,275,39.60% +138283,925,3310,State-funded primary,50,25,25,50.00%,50.00%,3,6.00%,5,10.00%,14,36,0,28.00%,72.00%,0.00%,30,23,41,56.10% +138284,925,5202,State-funded primary,167,77,90,46.10%,53.90%,5,3.00%,14,8.40%,7,160,0,4.20%,95.80%,0.00%,20,21,167,12.60% +138285,390,2220,State-funded primary,327,163,164,49.80%,50.20%,6,1.80%,77,23.50%,91,235,1,27.80%,71.90%,0.30%,83,84,293,28.70% +138286,919,4043,State-funded secondary,1543,717,826,46.50%,53.50%,33,2.10%,296,19.20%,189,1336,18,12.20%,86.60%,1.20%,91,79,1090,7.20% +138287,850,4002,State-funded secondary,1186,599,587,50.50%,49.50%,24,2.00%,143,12.10%,131,1053,2,11.00%,88.80%,0.20%,191,205,1186,17.30% +138288,919,5211,State-funded primary,269,129,140,48.00%,52.00%,5,1.90%,37,13.80%,86,183,0,32.00%,68.00%,0.00%,29,29,269,10.80% +138289,931,4040,State-funded secondary,1495,757,738,50.60%,49.40%,25,1.70%,177,11.80%,55,1342,98,3.70%,89.80%,6.60%,138,151,1229,12.30% +138290,855,4602,State-funded secondary,775,411,364,53.00%,47.00%,19,2.50%,115,14.80%,63,712,0,8.10%,91.90%,0.00%,85,97,775,12.50% +138291,925,2116,State-funded primary,421,187,234,44.40%,55.60%,15,3.60%,38,9.00%,76,345,0,18.10%,81.90%,0.00%,85,87,421,20.70% +138292,919,5200,State-funded primary,231,105,126,45.50%,54.50%,8,3.50%,30,13.00%,52,178,1,22.50%,77.10%,0.40%,16,17,205,8.30% +138293,384,3019,State-funded primary,315,151,164,47.90%,52.10%,10,3.20%,41,13.00%,11,304,0,3.50%,96.50%,0.00%,33,34,315,10.80% +138294,855,3341,State-funded primary,193,103,90,53.40%,46.60%,1,0.50%,19,9.80%,27,166,0,14.00%,86.00%,0.00%,20,20,193,10.40% +138295,855,3433,State-funded primary,195,104,91,53.30%,46.70%,3,1.50%,36,18.50%,81,114,0,41.50%,58.50%,0.00%,45,47,195,24.10% +138296,855,3348,State-funded primary,200,96,104,48.00%,52.00%,4,2.00%,21,10.50%,56,143,1,28.00%,71.50%,0.50%,33,33,200,16.50% +138297,855,3340,State-funded primary,138,73,65,52.90%,47.10%,4,2.90%,22,15.90%,10,128,0,7.20%,92.80%,0.00%,13,13,138,9.40% +138298,855,4601,State-funded secondary,1291,665,626,51.50%,48.50%,18,1.40%,99,7.70%,275,1016,0,21.30%,78.70%,0.00%,164,168,1094,15.40% +138299,855,3339,State-funded primary,146,76,70,52.10%,47.90%,4,2.70%,28,19.20%,15,131,0,10.30%,89.70%,0.00%,28,29,146,19.90% +138300,890,2221,State-funded primary,592,302,290,51.00%,49.00%,5,0.80%,133,22.50%,54,538,0,9.10%,90.90%,0.00%,324,319,552,57.80% +138301,855,4007,State-funded secondary,798,396,402,49.60%,50.40%,21,2.60%,99,12.40%,78,720,0,9.80%,90.20%,0.00%,163,181,798,22.70% +138302,381,3331,State-funded primary,410,195,215,47.60%,52.40%,11,2.70%,42,10.20%,218,188,4,53.20%,45.90%,1.00%,94,98,363,27.00% +138303,330,2068,State-funded primary,323,161,162,49.80%,50.20%,1,0.30%,63,19.50%,68,252,3,21.10%,78.00%,0.90%,154,152,295,51.50% +138304,383,4107,State-funded secondary,1118,545,573,48.70%,51.30%,14,1.30%,167,14.90%,55,1058,5,4.90%,94.60%,0.40%,212,253,1090,23.20% +138305,866,2219,State-funded primary,209,110,99,52.60%,47.40%,6,2.90%,51,24.40%,20,186,3,9.60%,89.00%,1.40%,33,33,209,15.80% +138306,866,2204,State-funded primary,252,119,133,47.20%,52.80%,7,2.80%,24,9.50%,27,208,17,10.70%,82.50%,6.70%,51,56,205,27.30% +138307,866,7000,State-funded special school,59,9,50,15.30%,84.70%,54,91.50%,5,8.50%,6,52,1,10.20%,88.10%,1.70%,40,44,59,74.60% +138308,866,2003,State-funded primary,228,116,112,50.90%,49.10%,10,4.40%,54,23.70%,78,149,1,34.20%,65.40%,0.40%,98,98,197,49.70% +138309,866,2002,State-funded primary,723,367,356,50.80%,49.20%,15,2.10%,69,9.50%,588,114,21,81.30%,15.80%,2.90%,100,104,621,16.70% +138310,879,2701,State-funded primary,465,227,238,48.80%,51.20%,7,1.50%,53,11.40%,5,460,0,1.10%,98.90%,0.00%,30,35,424,8.30% +138311,881,3321,State-funded primary,214,120,94,56.10%,43.90%,2,0.90%,19,8.90%,28,186,0,13.10%,86.90%,0.00%,12,14,214,6.50% +138312,213,4687,State-funded secondary,772,109,663,14.10%,85.90%,4,0.50%,113,14.60%,284,486,2,36.80%,63.00%,0.30%,247,223,531,42.00% +138313,213,4628,State-funded secondary,1139,1115,24,97.90%,2.10%,22,1.90%,127,11.20%,237,900,2,20.80%,79.00%,0.20%,213,194,828,23.40% +138314,371,4021,State-funded secondary,641,288,353,44.90%,55.10%,15,2.30%,85,13.30%,65,576,0,10.10%,89.90%,0.00%,181,210,641,32.80% +138315,878,3451,State-funded primary,259,130,129,50.20%,49.80%,5,1.90%,30,11.60%,18,241,0,6.90%,93.10%,0.00%,43,48,259,18.50% +138316,919,3413,State-funded primary,166,83,83,50.00%,50.00%,4,2.40%,20,12.00%,21,145,0,12.70%,87.30%,0.00%,32,35,166,21.10% +138317,801,3003,State-funded primary,320,170,150,53.10%,46.90%,7,2.20%,28,8.80%,112,208,0,35.00%,65.00%,0.00%,36,36,320,11.30% +138318,896,4100,State-funded secondary,1757,786,971,44.70%,55.30%,47,2.70%,185,10.50%,31,1725,1,1.80%,98.20%,0.10%,237,257,1506,17.10% +138321,855,2173,State-funded primary,184,94,90,51.10%,48.90%,4,2.20%,22,12.00%,4,180,0,2.20%,97.80%,0.00%,29,29,184,15.80% +138322,919,3399,State-funded primary,160,78,82,48.80%,51.30%,1,0.60%,18,11.30%,27,133,0,16.90%,83.10%,0.00%,20,28,160,17.50% +138323,855,4051,State-funded secondary,1426,704,722,49.40%,50.60%,26,1.80%,56,3.90%,98,1328,0,6.90%,93.10%,0.00%,137,149,1202,12.40% +138324,925,5226,State-funded primary,197,97,100,49.20%,50.80%,6,3.00%,23,11.70%,5,192,0,2.50%,97.50%,0.00%,42,45,174,25.90% +138326,311,5400,State-funded secondary,1432,1432,0,100.00%,0.00%,18,1.30%,30,2.10%,349,1082,1,24.40%,75.60%,0.10%,266,271,1191,22.80% +138327,855,4011,State-funded secondary,643,320,323,49.80%,50.20%,11,1.70%,127,19.80%,21,622,0,3.30%,96.70%,0.00%,185,207,643,32.20% +138328,887,2209,State-funded primary,209,108,101,51.70%,48.30%,3,1.40%,26,12.40%,19,189,1,9.10%,90.40%,0.50%,72,74,209,35.40% +138329,372,4800,State-funded secondary,791,418,373,52.80%,47.20%,20,2.50%,115,14.50%,99,692,0,12.50%,87.50%,0.00%,151,166,791,21.00% +138330,925,2208,State-funded primary,251,110,141,43.80%,56.20%,8,3.20%,40,15.90%,15,236,0,6.00%,94.00%,0.00%,90,91,167,54.50% +138331,394,2091,State-funded primary,464,209,255,45.00%,55.00%,3,0.60%,71,15.30%,3,461,0,0.60%,99.40%,0.00%,78,78,406,19.20% +138332,384,2100,State-funded primary,239,117,122,49.00%,51.00%,4,1.70%,26,10.90%,19,220,0,7.90%,92.10%,0.00%,47,48,198,24.20% +138333,839,6009,Independent school,108,48,60,44.40%,55.60%,2,1.90%,16,14.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138334,883,2024,State-funded primary,435,220,215,50.60%,49.40%,8,1.80%,56,12.90%,106,329,0,24.40%,75.60%,0.00%,157,187,404,46.30% +138335,306,3008,State-funded primary,359,173,186,48.20%,51.80%,3,0.80%,81,22.60%,118,241,0,32.90%,67.10%,0.00%,64,70,333,21.00% +138336,383,4103,State-funded secondary,1647,857,790,52.00%,48.00%,29,1.80%,390,23.70%,100,1531,16,6.10%,93.00%,1.00%,273,303,1524,19.90% +138337,373,5401,State-funded secondary,1372,746,626,54.40%,45.60%,28,2.00%,93,6.80%,417,954,1,30.40%,69.50%,0.10%,287,277,1037,26.70% +138338,892,3318,State-funded primary,237,119,118,50.20%,49.80%,1,0.40%,34,14.30%,91,146,0,38.40%,61.60%,0.00%,36,35,211,16.60% +138339,892,3313,State-funded primary,238,133,105,55.90%,44.10%,0,0.00%,30,12.60%,126,112,0,52.90%,47.10%,0.00%,65,66,209,31.60% +138340,892,3317,State-funded primary,420,222,198,52.90%,47.10%,0,0.00%,40,9.50%,155,265,0,36.90%,63.10%,0.00%,69,70,420,16.70% +138341,892,5404,State-funded secondary,1172,583,589,49.70%,50.30%,4,0.30%,98,8.40%,529,642,1,45.10%,54.80%,0.10%,181,180,963,18.70% +138342,868,4506,State-funded secondary,654,301,353,46.00%,54.00%,36,5.50%,71,10.90%,81,572,1,12.40%,87.50%,0.20%,140,149,562,26.50% +138343,335,2118,State-funded primary,459,244,215,53.20%,46.80%,11,2.40%,48,10.50%,18,441,0,3.90%,96.10%,0.00%,142,144,420,34.30% +138345,855,2176,State-funded primary,332,151,181,45.50%,54.50%,7,2.10%,26,7.80%,21,308,3,6.30%,92.80%,0.90%,43,46,332,13.90% +138346,855,2002,State-funded primary,361,177,184,49.00%,51.00%,10,2.80%,31,8.60%,22,339,0,6.10%,93.90%,0.00%,18,18,361,5.00% +138347,855,2179,State-funded primary,276,129,147,46.70%,53.30%,12,4.30%,45,16.30%,12,264,0,4.30%,95.70%,0.00%,35,35,276,12.70% +138348,855,2355,State-funded primary,572,264,308,46.20%,53.80%,14,2.40%,52,9.10%,58,514,0,10.10%,89.90%,0.00%,161,162,572,28.30% +138349,883,2987,State-funded primary,670,333,337,49.70%,50.30%,12,1.80%,49,7.30%,222,447,1,33.10%,66.70%,0.10%,76,84,628,13.40% +138350,855,4028,State-funded secondary,899,450,449,50.10%,49.90%,13,1.40%,159,17.70%,33,866,0,3.70%,96.30%,0.00%,166,187,899,20.80% +138351,860,4007,State-funded secondary,236,121,115,51.30%,48.70%,12,5.10%,103,43.60%,0,236,0,0.00%,100.00%,0.00%,60,67,236,28.40% +138352,919,4504,State-funded secondary,1540,798,742,51.80%,48.20%,25,1.60%,166,10.80%,30,1510,0,1.90%,98.10%,0.00%,102,103,1200,8.60% +138353,891,3790,State-funded primary,586,276,310,47.10%,52.90%,7,1.20%,67,11.40%,23,563,0,3.90%,96.10%,0.00%,144,143,549,26.00% +138354,919,3400,State-funded primary,224,119,105,53.10%,46.90%,2,0.90%,18,8.00%,62,162,0,27.70%,72.30%,0.00%,9,9,210,4.30% +138355,344,4060,State-funded secondary,1189,530,659,44.60%,55.40%,76,6.40%,215,18.10%,16,1172,1,1.30%,98.60%,0.10%,256,258,1006,25.60% +138356,919,4614,State-funded secondary,1369,714,655,52.20%,47.80%,20,1.50%,154,11.20%,279,1087,3,20.40%,79.40%,0.20%,46,36,981,3.70% +138357,372,2000,State-funded primary,275,141,134,51.30%,48.70%,2,0.70%,44,16.00%,6,269,0,2.20%,97.80%,0.00%,128,130,250,52.00% +138358,855,3048,State-funded primary,592,265,327,44.80%,55.20%,10,1.70%,60,10.10%,21,571,0,3.50%,96.50%,0.00%,67,68,592,11.50% +138359,855,3059,State-funded primary,123,55,68,44.70%,55.30%,4,3.30%,14,11.40%,4,119,0,3.30%,96.70%,0.00%,10,10,123,8.10% +138360,919,5423,State-funded secondary,1092,557,535,51.00%,49.00%,20,1.80%,138,12.60%,325,757,10,29.80%,69.30%,0.90%,267,292,918,31.80% +138361,373,5400,State-funded secondary,1508,808,700,53.60%,46.40%,31,2.10%,65,4.30%,245,1236,27,16.20%,82.00%,1.80%,178,162,1065,15.20% +138362,841,2656,State-funded primary,214,94,120,43.90%,56.10%,1,0.50%,52,24.30%,13,201,0,6.10%,93.90%,0.00%,113,117,188,62.20% +138364,320,2029,State-funded primary,636,303,333,47.60%,52.40%,22,3.50%,80,12.60%,338,297,1,53.10%,46.70%,0.20%,157,180,585,30.80% +138367,872,4000,State-funded secondary,553,278,275,50.30%,49.70%,26,4.70%,72,13.00%,55,495,3,9.90%,89.50%,0.50%,130,154,553,27.80% +138368,312,4000,State-funded secondary,43,15,28,34.90%,65.10%,1,2.30%,4,9.30%,31,12,0,72.10%,27.90%,0.00%,17,20,42,47.60% +138369,880,2001,State-funded primary,645,309,336,47.90%,52.10%,40,6.20%,125,19.40%,42,603,0,6.50%,93.50%,0.00%,284,283,577,49.00% +138370,880,4000,State-funded secondary,1422,683,739,48.00%,52.00%,37,2.60%,69,4.90%,80,1341,1,5.60%,94.30%,0.10%,364,365,1228,29.70% +138372,870,2004,State-funded primary,370,200,170,54.10%,45.90%,11,3.00%,112,30.30%,109,260,1,29.50%,70.30%,0.30%,165,169,370,45.70% +138373,935,4007,State-funded secondary,934,462,472,49.50%,50.50%,47,5.00%,113,12.10%,97,835,2,10.40%,89.40%,0.20%,330,374,934,40.00% +138374,335,4003,State-funded secondary,1172,593,579,50.60%,49.40%,23,2.00%,193,16.50%,647,525,0,55.20%,44.80%,0.00%,561,545,1053,51.80% +138375,933,4001,State-funded secondary,1568,756,812,48.20%,51.80%,59,3.80%,413,26.30%,255,1312,1,16.30%,83.70%,0.10%,554,587,1536,38.20% +138377,801,2055,State-funded primary,223,139,84,62.30%,37.70%,9,4.00%,34,15.20%,147,76,0,65.90%,34.10%,0.00%,91,99,223,44.40% +138378,305,6005,Independent school,4,2,2,50.00%,50.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138379,341,1109,State-funded AP school,197,38,159,19.30%,80.70%,12,6.10%,22,11.20%,8,188,1,4.10%,95.40%,0.50%,37,15,17,88.20% +138380,383,7004,State-funded special school,81,19,62,23.50%,76.50%,81,100.00%,0,0.00%,4,77,0,4.90%,95.10%,0.00%,24,19,55,34.50% +138381,308,2016,State-funded primary,199,113,86,56.80%,43.20%,9,4.50%,22,11.10%,103,95,1,51.80%,47.70%,0.50%,97,102,199,51.30% +138384,305,6009,Independent school,119,63,56,52.90%,47.10%,4,3.40%,9,7.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138385,839,4000,State-funded secondary,431,234,197,54.30%,45.70%,7,1.60%,57,13.20%,15,414,2,3.50%,96.10%,0.50%,67,49,242,20.20% +138386,303,6000,Independent school,35,8,27,22.90%,77.10%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138389,919,2029,State-funded primary,203,92,111,45.30%,54.70%,4,2.00%,42,20.70%,15,188,0,7.40%,92.60%,0.00%,97,99,190,52.10% +138390,845,2001,State-funded primary,323,156,167,48.30%,51.70%,4,1.20%,52,16.10%,51,272,0,15.80%,84.20%,0.00%,139,150,294,51.00% +138391,845,2002,State-funded primary,322,157,165,48.80%,51.20%,8,2.50%,38,11.80%,43,279,0,13.40%,86.60%,0.00%,149,153,286,53.50% +138392,845,2003,State-funded primary,397,195,202,49.10%,50.90%,7,1.80%,66,16.60%,38,359,0,9.60%,90.40%,0.00%,140,142,371,38.30% +138393,370,2003,State-funded primary,415,215,200,51.80%,48.20%,10,2.40%,44,10.60%,39,359,17,9.40%,86.50%,4.10%,92,94,392,24.00% +138395,330,2047,State-funded primary,392,194,198,49.50%,50.50%,6,1.50%,59,15.10%,313,77,2,79.80%,19.60%,0.50%,229,239,392,61.00% +138396,330,2048,State-funded primary,210,97,113,46.20%,53.80%,3,1.40%,38,18.10%,136,74,0,64.80%,35.20%,0.00%,131,126,197,64.00% +138397,330,2056,State-funded primary,446,204,242,45.70%,54.30%,4,0.90%,58,13.00%,344,101,1,77.10%,22.60%,0.20%,194,191,401,47.60% +138398,381,2000,State-funded primary,111,61,50,55.00%,45.00%,6,5.40%,30,27.00%,6,105,0,5.40%,94.60%,0.00%,69,74,107,69.20% +138399,350,2001,State-funded primary,446,228,218,51.10%,48.90%,5,1.10%,77,17.30%,143,302,1,32.10%,67.70%,0.20%,146,150,409,36.70% +138400,845,2004,State-funded primary,414,187,227,45.20%,54.80%,1,0.20%,52,12.60%,34,380,0,8.20%,91.80%,0.00%,131,137,414,33.10% +138401,384,2002,State-funded primary,226,104,122,46.00%,54.00%,7,3.10%,29,12.80%,3,223,0,1.30%,98.70%,0.00%,52,53,206,25.70% +138402,938,2006,State-funded primary,245,124,121,50.60%,49.40%,21,8.60%,42,17.10%,38,207,0,15.50%,84.50%,0.00%,112,113,245,46.10% +138403,316,4000,State-funded secondary,474,288,186,60.80%,39.20%,0,0.00%,15,3.20%,67,407,0,14.10%,85.90%,0.00%,192,0,0,0.00% +138404,881,2024,State-funded primary,334,166,168,49.70%,50.30%,4,1.20%,62,18.60%,50,284,0,15.00%,85.00%,0.00%,150,151,303,49.80% +138405,886,6138,Independent school,129,46,83,35.70%,64.30%,0,0.00%,12,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138406,212,6000,Independent school,83,39,44,47.00%,53.00%,1,1.20%,17,20.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138408,886,6139,Independent school,29,7,22,24.10%,75.90%,29,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138409,801,2056,State-funded primary,213,105,108,49.30%,50.70%,2,0.90%,33,15.50%,35,178,0,16.40%,83.60%,0.00%,100,110,191,57.60% +138410,330,2057,State-funded primary,459,224,235,48.80%,51.20%,26,5.70%,38,8.30%,309,150,0,67.30%,32.70%,0.00%,235,225,420,53.60% +138411,891,4010,State-funded secondary,1030,538,492,52.20%,47.80%,7,0.70%,136,13.20%,44,911,75,4.30%,88.40%,7.30%,338,350,959,36.50% +138413,938,2016,State-funded primary,554,286,268,51.60%,48.40%,8,1.40%,76,13.70%,116,438,0,20.90%,79.10%,0.00%,135,147,523,28.10% +138414,373,4000,State-funded secondary,835,413,422,49.50%,50.50%,15,1.80%,151,18.10%,97,725,13,11.60%,86.80%,1.60%,452,498,835,59.60% +138415,370,2010,State-funded primary,353,175,178,49.60%,50.40%,6,1.70%,53,15.00%,18,334,1,5.10%,94.60%,0.30%,153,151,305,49.50% +138416,355,2000,State-funded primary,224,114,110,50.90%,49.10%,6,2.70%,58,25.90%,48,176,0,21.40%,78.60%,0.00%,144,132,202,65.30% +138420,335,2005,State-funded primary,250,118,132,47.20%,52.80%,5,2.00%,45,18.00%,158,92,0,63.20%,36.80%,0.00%,143,130,211,61.60% +138421,916,4005,State-funded secondary,604,280,324,46.40%,53.60%,30,5.00%,65,10.80%,23,580,1,3.80%,96.00%,0.20%,154,176,604,29.10% +138423,941,2031,State-funded primary,224,111,113,49.60%,50.40%,6,2.70%,20,8.90%,97,127,0,43.30%,56.70%,0.00%,68,71,195,36.40% +138424,866,2006,State-funded primary,419,208,211,49.60%,50.40%,9,2.10%,57,13.60%,85,303,31,20.30%,72.30%,7.40%,31,34,419,8.10% +138425,330,2058,State-funded primary,241,112,129,46.50%,53.50%,0,0.00%,30,12.40%,34,207,0,14.10%,85.90%,0.00%,134,120,211,56.90% +138430,916,7003,State-funded special school,63,3,60,4.80%,95.20%,62,98.40%,1,1.60%,0,63,0,0.00%,100.00%,0.00%,40,48,63,76.20% +138431,937,2003,State-funded primary,239,119,120,49.80%,50.20%,4,1.70%,38,15.90%,16,223,0,6.70%,93.30%,0.00%,94,98,239,41.00% +138432,330,2059,State-funded primary,207,98,109,47.30%,52.70%,1,0.50%,33,15.90%,135,72,0,65.20%,34.80%,0.00%,130,123,194,63.40% +138433,330,2061,State-funded primary,179,93,86,52.00%,48.00%,4,2.20%,23,12.80%,106,73,0,59.20%,40.80%,0.00%,97,101,179,56.40% +138434,886,2009,State-funded primary,325,168,157,51.70%,48.30%,13,4.00%,45,13.80%,72,253,0,22.20%,77.80%,0.00%,230,237,309,76.70% +138435,860,4006,State-funded secondary,587,305,282,52.00%,48.00%,11,1.90%,76,12.90%,27,560,0,4.60%,95.40%,0.00%,217,230,587,39.20% +138436,886,2010,State-funded primary,291,132,159,45.40%,54.60%,16,5.50%,83,28.50%,45,245,1,15.50%,84.20%,0.30%,177,180,291,61.90% +138437,850,4004,State-funded secondary,823,400,423,48.60%,51.40%,25,3.00%,194,23.60%,54,768,1,6.60%,93.30%,0.10%,287,308,823,37.40% +138438,886,2011,State-funded primary,215,101,114,47.00%,53.00%,6,2.80%,36,16.70%,33,182,0,15.30%,84.70%,0.00%,84,88,202,43.60% +138439,826,4002,State-funded secondary,625,299,326,47.80%,52.20%,12,1.90%,80,12.80%,208,415,2,33.30%,66.40%,0.30%,298,331,625,53.00% +138440,826,2018,State-funded primary,205,100,105,48.80%,51.20%,7,3.40%,28,13.70%,71,134,0,34.60%,65.40%,0.00%,94,101,205,49.30% +138441,381,6004,Independent school,7,0,7,0.00%,100.00%,5,71.40%,2,28.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138442,925,2000,State-funded primary,316,163,153,51.60%,48.40%,12,3.80%,52,16.50%,20,295,1,6.30%,93.40%,0.30%,208,215,316,68.00% +138443,831,2007,State-funded primary,484,259,225,53.50%,46.50%,10,2.10%,92,19.00%,138,346,0,28.50%,71.50%,0.00%,163,170,441,38.50% +138444,925,2004,State-funded primary,127,70,57,55.10%,44.90%,4,3.10%,35,27.60%,7,120,0,5.50%,94.50%,0.00%,90,76,108,70.40% +138445,925,2005,State-funded primary,335,168,167,50.10%,49.90%,14,4.20%,55,16.40%,8,327,0,2.40%,97.60%,0.00%,174,182,321,56.70% +138446,309,2016,State-funded primary,444,251,193,56.50%,43.50%,13,2.90%,36,8.10%,221,223,0,49.80%,50.20%,0.00%,142,160,412,38.80% +138447,309,2021,State-funded primary,439,213,226,48.50%,51.50%,18,4.10%,33,7.50%,231,206,2,52.60%,46.90%,0.50%,135,140,403,34.70% +138448,801,4003,State-funded secondary,905,414,491,45.70%,54.30%,15,1.70%,217,24.00%,231,674,0,25.50%,74.50%,0.00%,383,421,905,46.50% +138449,203,4000,State-funded secondary,1163,463,700,39.80%,60.20%,31,2.70%,136,11.70%,278,884,1,23.90%,76.00%,0.10%,317,342,933,36.70% +138450,896,1100,State-funded AP school,52,16,36,30.80%,69.20%,4,7.70%,46,88.50%,0,52,0,0.00%,100.00%,0.00%,31,34,52,65.40% +138452,335,2010,State-funded primary,494,230,264,46.60%,53.40%,14,2.80%,68,13.80%,326,168,0,66.00%,34.00%,0.00%,171,180,413,43.60% +138453,938,2017,State-funded primary,532,255,277,47.90%,52.10%,3,0.60%,85,16.00%,145,384,3,27.30%,72.20%,0.60%,189,199,496,40.10% +138454,320,7002,State-funded special school,265,84,181,31.70%,68.30%,265,100.00%,0,0.00%,93,172,0,35.10%,64.90%,0.00%,119,105,215,48.80% +138455,802,1102,State-funded AP school,44,12,32,27.30%,72.70%,4,9.10%,38,86.40%,0,44,0,0.00%,100.00%,0.00%,28,30,44,68.20% +138457,304,4006,State-funded secondary,1396,667,729,47.80%,52.20%,24,1.70%,27,1.90%,1035,360,1,74.10%,25.80%,0.10%,205,197,1106,17.80% +138458,310,5400,State-funded secondary,618,0,618,0.00%,100.00%,15,2.40%,103,16.70%,356,258,4,57.60%,41.70%,0.60%,135,160,618,25.90% +138459,314,5402,State-funded secondary,977,977,0,100.00%,0.00%,24,2.50%,58,5.90%,282,658,37,28.90%,67.30%,3.80%,91,98,765,12.80% +138460,318,4013,State-funded secondary,1307,540,767,41.30%,58.70%,29,2.20%,133,10.20%,290,1007,10,22.20%,77.00%,0.80%,209,208,1126,18.50% +138461,318,4021,State-funded secondary,1457,1367,90,93.80%,6.20%,48,3.30%,142,9.70%,274,1182,1,18.80%,81.10%,0.10%,111,98,1079,9.10% +138462,334,2057,State-funded primary,220,107,113,48.60%,51.40%,1,0.50%,24,10.90%,11,208,1,5.00%,94.50%,0.50%,22,21,197,10.70% +138463,341,5400,State-funded secondary,1097,4,1093,0.40%,99.60%,16,1.50%,195,17.80%,53,1043,1,4.80%,95.10%,0.10%,253,280,986,28.40% +138464,358,5901,State-funded secondary,1034,1034,0,100.00%,0.00%,1,0.10%,25,2.40%,139,894,1,13.40%,86.50%,0.10%,38,45,786,5.70% +138465,801,3411,State-funded primary,206,102,104,49.50%,50.50%,5,2.40%,17,8.30%,115,91,0,55.80%,44.20%,0.00%,30,31,206,15.00% +138466,802,4137,State-funded secondary,1096,544,552,49.60%,50.40%,42,3.80%,45,4.10%,46,1050,0,4.20%,95.80%,0.00%,137,138,939,14.70% +138467,812,2943,State-funded primary,293,153,140,52.20%,47.80%,7,2.40%,50,17.10%,6,287,0,2.00%,98.00%,0.00%,55,61,266,22.90% +138468,812,3523,State-funded primary,310,143,167,46.10%,53.90%,7,2.30%,42,13.50%,17,293,0,5.50%,94.50%,0.00%,123,118,284,41.50% +138469,821,2003,State-funded primary,667,333,334,49.90%,50.10%,26,3.90%,147,22.00%,303,364,0,45.40%,54.60%,0.00%,204,209,615,34.00% +138470,830,5413,State-funded secondary,1353,725,628,53.60%,46.40%,28,2.10%,134,9.90%,109,1240,4,8.10%,91.60%,0.30%,179,165,1033,16.00% +138471,838,4512,State-funded secondary,1552,785,767,50.60%,49.40%,42,2.70%,103,6.60%,111,1439,2,7.20%,92.70%,0.10%,225,214,1191,18.00% +138472,845,4027,State-funded secondary,1633,815,818,49.90%,50.10%,32,2.00%,139,8.50%,61,1563,9,3.70%,95.70%,0.60%,328,364,1418,25.70% +138473,845,4036,State-funded secondary,1376,662,714,48.10%,51.90%,27,2.00%,121,8.80%,86,1290,0,6.30%,93.80%,0.00%,202,209,1190,17.60% +138474,845,4063,State-funded secondary,1194,558,636,46.70%,53.30%,15,1.30%,146,12.20%,149,1045,0,12.50%,87.50%,0.00%,246,275,1194,23.00% +138475,845,4064,State-funded secondary,1362,681,681,50.00%,50.00%,14,1.00%,181,13.30%,114,1246,2,8.40%,91.50%,0.10%,276,297,1319,22.50% +138476,852,5417,State-funded secondary,1228,1210,18,98.50%,1.50%,12,1.00%,100,8.10%,521,705,2,42.40%,57.40%,0.20%,297,277,1080,25.60% +138478,855,4035,State-funded secondary,1221,620,601,50.80%,49.20%,21,1.70%,230,18.80%,81,1140,0,6.60%,93.40%,0.00%,270,280,1061,26.40% +138479,866,3175,State-funded primary,205,98,107,47.80%,52.20%,4,2.00%,10,4.90%,53,152,0,25.90%,74.10%,0.00%,28,30,205,14.60% +138480,886,4101,State-funded secondary,1026,0,1026,0.00%,100.00%,3,0.30%,29,2.80%,84,942,0,8.20%,91.80%,0.00%,104,93,751,12.40% +138482,891,4329,State-funded secondary,2000,992,1008,49.60%,50.40%,21,1.10%,92,4.60%,119,1758,123,6.00%,87.90%,6.20%,173,159,1591,10.00% +138483,896,4135,State-funded secondary,1217,619,598,50.90%,49.10%,16,1.30%,96,7.90%,15,1202,0,1.20%,98.80%,0.00%,105,111,1021,10.90% +138484,919,4117,State-funded secondary,423,236,187,55.80%,44.20%,12,2.80%,105,24.80%,42,381,0,9.90%,90.10%,0.00%,104,116,413,28.10% +138485,919,7007,State-funded special school,65,23,42,35.40%,64.60%,65,100.00%,0,0.00%,18,47,0,27.70%,72.30%,0.00%,14,14,57,24.60% +138486,925,2074,State-funded primary,171,88,83,51.50%,48.50%,7,4.10%,24,14.00%,5,166,0,2.90%,97.10%,0.00%,44,46,171,26.90% +138487,925,5208,State-funded primary,294,152,142,51.70%,48.30%,6,2.00%,29,9.90%,7,287,0,2.40%,97.60%,0.00%,50,53,267,19.90% +138490,931,4139,State-funded secondary,1614,1614,0,100.00%,0.00%,23,1.40%,179,11.10%,202,1401,11,12.50%,86.80%,0.70%,152,167,1384,12.10% +138491,936,4763,State-funded secondary,1142,567,575,49.60%,50.40%,30,2.60%,114,10.00%,66,1074,2,5.80%,94.00%,0.20%,72,75,944,7.90% +138492,938,5200,State-funded primary,336,149,187,44.30%,55.70%,4,1.20%,57,17.00%,40,296,0,11.90%,88.10%,0.00%,29,29,336,8.60% +138493,941,2033,State-funded primary,473,237,236,50.10%,49.90%,15,3.20%,68,14.40%,262,209,2,55.40%,44.20%,0.40%,103,110,414,26.60% +138495,315,4000,State-funded secondary,868,397,471,45.70%,54.30%,31,3.60%,176,20.30%,290,574,4,33.40%,66.10%,0.50%,358,395,868,45.50% +138496,916,4006,State-funded secondary,281,137,144,48.80%,51.20%,8,2.80%,57,20.30%,20,260,1,7.10%,92.50%,0.40%,101,119,281,42.30% +138497,861,2005,State-funded primary,236,118,118,50.00%,50.00%,3,1.30%,33,14.00%,55,181,0,23.30%,76.70%,0.00%,63,62,210,29.50% +138498,350,6001,Independent school,121,121,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138499,931,4000,State-funded secondary,963,475,488,49.30%,50.70%,6,0.60%,180,18.70%,255,708,0,26.50%,73.50%,0.00%,281,294,896,32.80% +138501,931,2003,State-funded primary,439,216,223,49.20%,50.80%,8,1.80%,58,13.20%,172,266,1,39.20%,60.60%,0.20%,107,108,392,27.60% +138502,306,2015,State-funded primary,577,279,298,48.40%,51.60%,10,1.70%,86,14.90%,182,395,0,31.50%,68.50%,0.00%,160,163,577,28.20% +138505,885,4008,State-funded secondary,839,406,433,48.40%,51.60%,10,1.20%,106,12.60%,92,747,0,11.00%,89.00%,0.00%,200,201,691,29.10% +138506,935,4008,State-funded secondary,703,337,366,47.90%,52.10%,17,2.40%,143,20.30%,45,658,0,6.40%,93.60%,0.00%,218,236,703,33.60% +138507,919,2035,State-funded primary,524,280,244,53.40%,46.60%,11,2.10%,60,11.50%,211,313,0,40.30%,59.70%,0.00%,161,167,469,35.60% +138508,892,2003,State-funded primary,339,147,192,43.40%,56.60%,0,0.00%,33,9.70%,160,177,2,47.20%,52.20%,0.60%,94,93,304,30.60% +138510,887,2001,State-funded primary,359,180,179,50.10%,49.90%,7,1.90%,75,20.90%,111,248,0,30.90%,69.10%,0.00%,177,183,359,51.00% +138511,887,4001,State-funded secondary,1037,476,561,45.90%,54.10%,14,1.40%,232,22.40%,156,881,0,15.00%,85.00%,0.00%,425,439,947,46.40% +138514,831,2008,State-funded primary,203,104,99,51.20%,48.80%,1,0.50%,38,18.70%,53,150,0,26.10%,73.90%,0.00%,39,44,203,21.70% +138516,204,6006,Independent school,446,446,0,100.00%,0.00%,8,1.80%,30,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138518,317,4001,State-funded secondary,1750,862,888,49.30%,50.70%,49,2.80%,159,9.10%,832,886,32,47.50%,50.60%,1.80%,466,430,1517,28.30% +138520,813,2141,State-funded primary,62,38,24,61.30%,38.70%,0,0.00%,5,8.10%,2,60,0,3.20%,96.80%,0.00%,16,16,62,25.80% +138521,855,4506,State-funded secondary,1189,586,603,49.30%,50.70%,31,2.60%,168,14.10%,65,1122,2,5.50%,94.40%,0.20%,156,172,1189,14.50% +138522,800,4132,State-funded secondary,1371,567,804,41.40%,58.60%,55,4.00%,121,8.80%,101,1264,6,7.40%,92.20%,0.40%,179,175,1119,15.60% +138523,841,3512,State-funded primary,330,180,150,54.50%,45.50%,5,1.50%,30,9.10%,19,311,0,5.80%,94.20%,0.00%,38,38,301,12.60% +138525,869,4055,State-funded secondary,1234,609,625,49.40%,50.60%,71,5.80%,64,5.20%,126,1107,1,10.20%,89.70%,0.10%,219,232,1076,21.60% +138526,394,7018,State-funded special school,190,67,123,35.30%,64.70%,189,99.50%,1,0.50%,27,163,0,14.20%,85.80%,0.00%,109,79,123,64.20% +138527,855,4057,State-funded secondary,885,413,472,46.70%,53.30%,26,2.90%,151,17.10%,25,860,0,2.80%,97.20%,0.00%,106,126,885,14.20% +138528,855,2029,State-funded primary,287,136,151,47.40%,52.60%,4,1.40%,21,7.30%,12,274,1,4.20%,95.50%,0.30%,37,39,287,13.60% +138530,394,7004,State-funded special school,170,39,131,22.90%,77.10%,170,100.00%,0,0.00%,2,168,0,1.20%,98.80%,0.00%,93,62,115,53.90% +138531,801,2091,State-funded primary,417,214,203,51.30%,48.70%,7,1.70%,30,7.20%,41,376,0,9.80%,90.20%,0.00%,10,10,417,2.40% +138532,352,7043,State-funded special school,186,68,118,36.60%,63.40%,186,100.00%,0,0.00%,94,91,1,50.50%,48.90%,0.50%,98,68,110,61.80% +138533,881,5201,State-funded primary,464,221,243,47.60%,52.40%,10,2.20%,18,3.90%,43,419,2,9.30%,90.30%,0.40%,50,53,422,12.60% +138534,394,2163,State-funded primary,258,120,138,46.50%,53.50%,4,1.60%,21,8.10%,8,250,0,3.10%,96.90%,0.00%,23,23,237,9.70% +138535,384,2101,State-funded primary,378,187,191,49.50%,50.50%,8,2.10%,95,25.10%,33,345,0,8.70%,91.30%,0.00%,187,190,339,56.00% +138536,334,2050,State-funded primary,695,330,365,47.50%,52.50%,12,1.70%,77,11.10%,38,653,4,5.50%,94.00%,0.60%,64,65,630,10.30% +138538,890,2207,State-funded primary,523,257,266,49.10%,50.90%,6,1.10%,43,8.20%,25,498,0,4.80%,95.20%,0.00%,180,194,523,37.10% +138539,919,2009,State-funded primary,458,238,220,52.00%,48.00%,7,1.50%,39,8.50%,61,394,3,13.30%,86.00%,0.70%,25,27,416,6.50% +138540,335,2243,State-funded primary,207,99,108,47.80%,52.20%,6,2.90%,42,20.30%,19,188,0,9.20%,90.80%,0.00%,117,123,207,59.40% +138541,933,3353,State-funded primary,375,173,202,46.10%,53.90%,9,2.40%,15,4.00%,16,354,5,4.30%,94.40%,1.30%,95,101,324,31.20% +138542,812,2001,State-funded primary,445,233,212,52.40%,47.60%,14,3.10%,52,11.70%,44,401,0,9.90%,90.10%,0.00%,69,71,403,17.60% +138543,355,3802,State-funded primary,411,191,220,46.50%,53.50%,5,1.20%,37,9.00%,18,393,0,4.40%,95.60%,0.00%,29,28,362,7.70% +138544,888,4403,State-funded secondary,723,317,406,43.80%,56.20%,35,4.80%,80,11.10%,41,682,0,5.70%,94.30%,0.00%,178,200,723,27.70% +138545,373,4279,State-funded secondary,1919,1023,896,53.30%,46.70%,40,2.10%,267,13.90%,182,1736,1,9.50%,90.50%,0.10%,525,539,1639,32.90% +138547,203,7199,State-funded special school,225,53,172,23.60%,76.40%,223,99.10%,2,0.90%,56,169,0,24.90%,75.10%,0.00%,118,90,155,58.10% +138548,861,2090,State-funded primary,519,253,266,48.70%,51.30%,8,1.50%,105,20.20%,49,470,0,9.40%,90.60%,0.00%,247,227,466,48.70% +138549,861,4173,State-funded secondary,1154,565,589,49.00%,51.00%,38,3.30%,178,15.40%,233,921,0,20.20%,79.80%,0.00%,440,478,1102,43.40% +138550,861,2106,State-funded primary,474,222,252,46.80%,53.20%,5,1.10%,91,19.20%,41,433,0,8.60%,91.40%,0.00%,165,163,426,38.30% +138551,861,2086,State-funded primary,669,332,337,49.60%,50.40%,18,2.70%,98,14.60%,68,601,0,10.20%,89.80%,0.00%,429,390,576,67.70% +138553,856,2002,State-funded primary,428,220,208,51.40%,48.60%,10,2.30%,31,7.20%,115,308,5,26.90%,72.00%,1.20%,143,148,407,36.40% +138554,840,2008,State-funded primary,256,139,117,54.30%,45.70%,4,1.60%,65,25.40%,5,251,0,2.00%,98.00%,0.00%,141,147,256,57.40% +138555,840,2009,State-funded primary,189,77,112,40.70%,59.30%,4,2.10%,36,19.00%,3,186,0,1.60%,98.40%,0.00%,97,98,164,59.80% +138556,840,2010,State-funded primary,320,138,182,43.10%,56.90%,2,0.60%,72,22.50%,17,303,0,5.30%,94.70%,0.00%,202,205,302,67.90% +138557,840,2379,State-funded primary,214,96,118,44.90%,55.10%,2,0.90%,37,17.30%,2,212,0,0.90%,99.10%,0.00%,42,45,214,21.00% +138558,823,2285,State-funded primary,178,80,98,44.90%,55.10%,4,2.20%,36,20.20%,48,130,0,27.00%,73.00%,0.00%,75,75,178,42.10% +138559,806,2005,State-funded primary,336,169,167,50.30%,49.70%,6,1.80%,50,14.90%,19,317,0,5.70%,94.30%,0.00%,222,201,294,68.40% +138560,806,2006,State-funded primary,415,198,217,47.70%,52.30%,39,9.40%,47,11.30%,14,401,0,3.40%,96.60%,0.00%,255,237,359,66.00% +138562,877,4000,State-funded secondary,760,376,384,49.50%,50.50%,9,1.20%,65,8.60%,51,707,2,6.70%,93.00%,0.30%,94,104,760,13.70% +138563,803,6009,Independent school,55,18,37,32.70%,67.30%,55,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138564,211,6003,Independent school,153,60,93,39.20%,60.80%,0,0.00%,39,25.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138565,846,1105,State-funded AP school,88,35,53,39.80%,60.20%,27,30.70%,61,69.30%,3,85,0,3.40%,96.60%,0.00%,65,67,88,76.10% +138567,394,6010,State-funded secondary,698,372,326,53.30%,46.70%,10,1.40%,114,16.30%,31,666,1,4.40%,95.40%,0.10%,216,221,698,31.70% +138568,353,6001,Independent school,76,0,76,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138570,891,2003,State-funded primary,215,113,102,52.60%,47.40%,6,2.80%,28,13.00%,39,176,0,18.10%,81.90%,0.00%,122,119,196,60.70% +138571,823,4002,State-funded secondary,1238,613,625,49.50%,50.50%,33,2.70%,171,13.80%,194,1044,0,15.70%,84.30%,0.00%,138,151,1065,14.20% +138575,881,2022,State-funded primary,736,364,372,49.50%,50.50%,18,2.40%,172,23.40%,31,705,0,4.20%,95.80%,0.00%,323,339,654,51.80% +138576,392,2001,State-funded primary,105,47,58,44.80%,55.20%,22,21.00%,31,29.50%,1,104,0,1.00%,99.00%,0.00%,66,66,96,68.80% +138577,391,2008,State-funded primary,453,237,216,52.30%,47.70%,20,4.40%,114,25.20%,115,338,0,25.40%,74.60%,0.00%,339,321,400,80.30% +138579,886,2013,State-funded primary,148,76,72,51.40%,48.60%,5,3.40%,27,18.20%,18,130,0,12.20%,87.80%,0.00%,65,66,148,44.60% +138580,893,6029,Independent school,6,6,0,100.00%,0.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138581,883,2001,State-funded primary,857,407,450,47.50%,52.50%,25,2.90%,177,20.70%,418,434,5,48.80%,50.60%,0.60%,238,249,816,30.50% +138582,919,4003,State-funded secondary,1508,697,811,46.20%,53.80%,27,1.80%,184,12.20%,229,1272,7,15.20%,84.40%,0.50%,233,235,1359,17.30% +138583,825,2010,State-funded primary,179,97,82,54.20%,45.80%,3,1.70%,23,12.80%,84,95,0,46.90%,53.10%,0.00%,56,56,172,32.60% +138584,382,2000,State-funded primary,219,101,118,46.10%,53.90%,12,5.50%,60,27.40%,51,168,0,23.30%,76.70%,0.00%,133,134,199,67.30% +138585,850,4005,State-funded secondary,573,296,277,51.70%,48.30%,23,4.00%,59,10.30%,11,562,0,1.90%,98.10%,0.00%,197,213,573,37.20% +138586,330,4004,State-funded secondary,652,327,325,50.20%,49.80%,13,2.00%,48,7.40%,226,418,8,34.70%,64.10%,1.20%,162,164,530,30.90% +138588,309,2028,State-funded primary,587,296,291,50.40%,49.60%,18,3.10%,38,6.50%,439,144,4,74.80%,24.50%,0.70%,177,182,536,34.00% +138589,309,2030,State-funded primary,475,248,227,52.20%,47.80%,16,3.40%,16,3.40%,230,245,0,48.40%,51.60%,0.00%,114,119,439,27.10% +138590,330,2037,State-funded primary,453,234,219,51.70%,48.30%,8,1.80%,57,12.60%,168,285,0,37.10%,62.90%,0.00%,181,187,421,44.40% +138591,335,2007,State-funded primary,445,210,235,47.20%,52.80%,8,1.80%,86,19.30%,71,374,0,16.00%,84.00%,0.00%,271,252,381,66.10% +138592,886,2014,State-funded primary,177,82,95,46.30%,53.70%,9,5.10%,36,20.30%,11,166,0,6.20%,93.80%,0.00%,107,110,177,62.10% +138593,384,4000,State-funded secondary,485,215,270,44.30%,55.70%,27,5.60%,81,16.70%,19,466,0,3.90%,96.10%,0.00%,163,172,485,35.50% +138595,873,2257,State-funded primary,208,98,110,47.10%,52.90%,3,1.40%,30,14.40%,20,187,1,9.60%,89.90%,0.50%,28,28,208,13.50% +138597,876,6014,Independent school,4,2,2,50.00%,50.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138599,207,6001,Independent school,44,22,22,50.00%,50.00%,0,0.00%,3,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138602,931,6010,Independent school,254,134,120,52.80%,47.20%,0,0.00%,11,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138603,802,3451,State-funded primary,461,237,224,51.40%,48.60%,6,1.30%,34,7.40%,67,393,1,14.50%,85.20%,0.20%,85,87,414,21.00% +138604,881,2023,State-funded primary,454,225,229,49.60%,50.40%,11,2.40%,52,11.50%,51,403,0,11.20%,88.80%,0.00%,117,155,421,36.80% +138605,826,2019,State-funded primary,357,169,188,47.30%,52.70%,18,5.00%,43,12.00%,141,216,0,39.50%,60.50%,0.00%,147,152,357,42.60% +138606,335,4004,State-funded secondary,897,458,439,51.10%,48.90%,24,2.70%,138,15.40%,569,325,3,63.40%,36.20%,0.30%,414,387,765,50.60% +138607,205,4632,State-funded secondary,763,763,0,100.00%,0.00%,19,2.50%,102,13.40%,102,656,5,13.40%,86.00%,0.70%,78,84,599,14.00% +138608,304,2076,State-funded primary,913,441,472,48.30%,51.70%,20,2.20%,82,9.00%,610,303,0,66.80%,33.20%,0.00%,189,191,845,22.60% +138609,304,5403,State-funded secondary,1288,611,677,47.40%,52.60%,42,3.30%,294,22.80%,662,626,0,51.40%,48.60%,0.00%,251,253,1077,23.50% +138610,304,5405,State-funded secondary,1909,904,1005,47.40%,52.60%,25,1.30%,176,9.20%,1327,581,1,69.50%,30.40%,0.10%,316,360,1618,22.20% +138611,305,2038,State-funded primary,596,288,308,48.30%,51.70%,23,3.90%,9,1.50%,122,474,0,20.50%,79.50%,0.00%,18,19,556,3.40% +138612,306,3403,State-funded primary,411,208,203,50.60%,49.40%,10,2.40%,36,8.80%,84,325,2,20.40%,79.10%,0.50%,60,65,411,15.80% +138613,312,2078,State-funded primary,915,427,488,46.70%,53.30%,24,2.60%,76,8.30%,733,173,9,80.10%,18.90%,1.00%,197,194,808,24.00% +138614,358,4024,State-funded secondary,1007,508,499,50.40%,49.60%,34,3.40%,84,8.30%,95,912,0,9.40%,90.60%,0.00%,235,239,876,27.30% +138615,370,2101,State-funded primary,306,144,162,47.10%,52.90%,3,1.00%,40,13.10%,9,291,6,2.90%,95.10%,2.00%,89,93,306,30.40% +138617,800,3440,State-funded primary,172,84,88,48.80%,51.20%,4,2.30%,12,7.00%,2,170,0,1.20%,98.80%,0.00%,8,9,172,5.20% +138618,938,2250,State-funded primary,444,222,222,50.00%,50.00%,9,2.00%,60,13.50%,100,344,0,22.50%,77.50%,0.00%,80,85,405,21.00% +138619,866,3439,State-funded primary,228,117,111,51.30%,48.70%,5,2.20%,15,6.60%,66,162,0,28.90%,71.10%,0.00%,19,21,206,10.20% +138620,938,4044,State-funded secondary,1257,589,668,46.90%,53.10%,34,2.70%,229,18.20%,324,931,2,25.80%,74.10%,0.20%,403,403,1059,38.10% +138621,312,2082,State-funded primary,936,431,505,46.00%,54.00%,17,1.80%,45,4.80%,680,256,0,72.60%,27.40%,0.00%,248,250,884,28.30% +138622,831,4607,State-funded secondary,1338,712,626,53.20%,46.80%,35,2.60%,162,12.10%,399,937,2,29.80%,70.00%,0.10%,327,355,1196,29.70% +138623,865,5405,State-funded secondary,1728,892,836,51.60%,48.40%,30,1.70%,182,10.50%,72,1656,0,4.20%,95.80%,0.00%,181,170,1314,12.90% +138625,852,2419,State-funded primary,271,132,139,48.70%,51.30%,8,3.00%,82,30.30%,25,240,6,9.20%,88.60%,2.20%,86,86,271,31.70% +138626,852,2421,State-funded primary,458,217,241,47.40%,52.60%,13,2.80%,48,10.50%,261,197,0,57.00%,43.00%,0.00%,84,85,419,20.30% +138628,855,5400,State-funded secondary,909,442,467,48.60%,51.40%,26,2.90%,162,17.80%,44,863,2,4.80%,94.90%,0.20%,172,193,909,21.20% +138629,865,2040,State-funded primary,57,28,29,49.10%,50.90%,0,0.00%,10,17.50%,1,56,0,1.80%,98.20%,0.00%,4,5,57,8.80% +138630,865,5411,State-funded secondary,1211,605,606,50.00%,50.00%,36,3.00%,207,17.10%,54,1157,0,4.50%,95.50%,0.00%,219,228,959,23.80% +138631,878,3100,State-funded primary,104,63,41,60.60%,39.40%,2,1.90%,13,12.50%,2,102,0,1.90%,98.10%,0.00%,9,9,104,8.70% +138632,919,4118,State-funded secondary,1394,614,780,44.00%,56.00%,32,2.30%,166,11.90%,132,1241,21,9.50%,89.00%,1.50%,188,195,1138,17.10% +138633,840,3517,State-funded primary,500,239,261,47.80%,52.20%,9,1.80%,79,15.80%,18,482,0,3.60%,96.40%,0.00%,156,159,424,37.50% +138634,940,7033,State-funded special school,115,7,108,6.10%,93.90%,115,100.00%,0,0.00%,2,113,0,1.70%,98.30%,0.00%,72,69,108,63.90% +138635,868,3050,State-funded primary,202,116,86,57.40%,42.60%,2,1.00%,27,13.40%,8,194,0,4.00%,96.00%,0.00%,14,14,202,6.90% +138636,866,3001,State-funded primary,322,164,158,50.90%,49.10%,5,1.60%,23,7.10%,174,148,0,54.00%,46.00%,0.00%,52,54,269,20.10% +138637,925,2171,State-funded primary,422,225,197,53.30%,46.70%,8,1.90%,49,11.60%,15,407,0,3.60%,96.40%,0.00%,113,122,422,28.90% +138638,925,4004,State-funded secondary,1200,1193,7,99.40%,0.60%,1,0.10%,130,10.80%,131,1069,0,10.90%,89.10%,0.00%,69,67,891,7.50% +138639,925,5223,State-funded primary,201,76,125,37.80%,62.20%,2,1.00%,17,8.50%,6,195,0,3.00%,97.00%,0.00%,12,11,168,6.50% +138640,925,3354,State-funded primary,298,169,129,56.70%,43.30%,2,0.70%,68,22.80%,6,292,0,2.00%,98.00%,0.00%,143,149,298,50.00% +138641,891,4226,State-funded secondary,1392,653,739,46.90%,53.10%,9,0.60%,64,4.60%,54,1338,0,3.90%,96.10%,0.00%,213,225,1192,18.90% +138642,926,2043,State-funded primary,582,296,286,50.90%,49.10%,11,1.90%,80,13.70%,25,550,7,4.30%,94.50%,1.20%,156,161,582,27.70% +138644,937,5402,State-funded secondary,969,491,478,50.70%,49.30%,9,0.90%,206,21.30%,33,936,0,3.40%,96.60%,0.00%,365,372,969,38.40% +138645,938,2139,State-funded primary,477,244,233,51.20%,48.80%,7,1.50%,56,11.70%,244,233,0,51.20%,48.80%,0.00%,152,161,451,35.70% +138647,888,4311,State-funded secondary,1107,559,548,50.50%,49.50%,13,1.20%,84,7.60%,47,1060,0,4.20%,95.80%,0.00%,255,273,1107,24.70% +138648,938,3363,State-funded primary,603,292,311,48.40%,51.60%,5,0.80%,106,17.60%,122,481,0,20.20%,79.80%,0.00%,171,174,603,28.90% +138650,303,5401,State-funded secondary,841,0,841,0.00%,100.00%,45,5.40%,133,15.80%,162,678,1,19.30%,80.60%,0.10%,173,208,841,24.70% +138651,318,4010,State-funded secondary,1364,551,813,40.40%,59.60%,48,3.50%,110,8.10%,345,1013,6,25.30%,74.30%,0.40%,80,83,1090,7.60% +138652,390,7002,State-funded special school,238,70,168,29.40%,70.60%,238,100.00%,0,0.00%,14,224,0,5.90%,94.10%,0.00%,119,106,207,51.20% +138653,352,2040,State-funded primary,626,325,301,51.90%,48.10%,15,2.40%,102,16.30%,169,457,0,27.00%,73.00%,0.00%,384,355,550,64.50% +138654,358,2009,State-funded primary,234,113,121,48.30%,51.70%,3,1.30%,23,9.80%,77,157,0,32.90%,67.10%,0.00%,20,22,214,10.30% +138655,801,2013,State-funded primary,601,309,292,51.40%,48.60%,10,1.70%,86,14.30%,160,441,0,26.60%,73.40%,0.00%,127,126,569,22.10% +138657,381,2094,State-funded primary,198,89,109,44.90%,55.10%,7,3.50%,41,20.70%,14,184,0,7.10%,92.90%,0.00%,87,78,178,43.80% +138658,801,2080,State-funded primary,244,111,133,45.50%,54.50%,7,2.90%,33,13.50%,78,166,0,32.00%,68.00%,0.00%,72,73,244,29.90% +138659,871,5204,State-funded primary,475,223,252,46.90%,53.10%,41,8.60%,22,4.60%,307,167,1,64.60%,35.20%,0.20%,12,13,435,3.00% +138661,891,5950,State-funded special school,113,32,81,28.30%,71.70%,113,100.00%,0,0.00%,9,104,0,8.00%,92.00%,0.00%,39,36,92,39.10% +138662,895,4227,State-funded secondary,1052,531,521,50.50%,49.50%,32,3.00%,44,4.20%,27,989,36,2.60%,94.00%,3.40%,178,185,916,20.20% +138663,892,2118,State-funded primary,433,222,211,51.30%,48.70%,11,2.50%,75,17.30%,146,285,2,33.70%,65.80%,0.50%,129,130,403,32.30% +138664,885,4044,State-funded secondary,775,384,391,49.50%,50.50%,16,2.10%,125,16.10%,16,748,11,2.10%,96.50%,1.40%,143,177,719,24.60% +138665,925,5411,State-funded secondary,842,444,398,52.70%,47.30%,0,0.00%,61,7.20%,42,785,15,5.00%,93.20%,1.80%,60,55,617,8.90% +138666,831,3531,State-funded primary,328,156,172,47.60%,52.40%,8,2.40%,50,15.20%,140,187,1,42.70%,57.00%,0.30%,84,84,328,25.60% +138667,931,4580,State-funded secondary,2229,1123,1106,50.40%,49.60%,72,3.20%,203,9.10%,123,2105,1,5.50%,94.40%,0.00%,213,207,1688,12.30% +138668,801,2034,State-funded primary,588,290,298,49.30%,50.70%,20,3.40%,66,11.20%,174,414,0,29.60%,70.40%,0.00%,235,239,588,40.60% +138671,908,2001,State-funded primary,309,156,153,50.50%,49.50%,22,7.10%,42,13.60%,36,273,0,11.70%,88.30%,0.00%,137,137,287,47.70% +138672,940,2030,State-funded primary,722,336,386,46.50%,53.50%,66,9.10%,66,9.10%,152,569,1,21.10%,78.80%,0.10%,216,224,662,33.80% +138673,383,2005,State-funded primary,248,138,110,55.60%,44.40%,0,0.00%,34,13.70%,169,79,0,68.10%,31.90%,0.00%,77,74,209,35.40% +138674,916,2001,State-funded primary,350,182,168,52.00%,48.00%,9,2.60%,69,19.70%,30,320,0,8.60%,91.40%,0.00%,122,123,350,35.10% +138675,380,2003,State-funded primary,216,110,106,50.90%,49.10%,3,1.40%,25,11.60%,20,196,0,9.30%,90.70%,0.00%,109,113,197,57.40% +138677,810,2004,State-funded primary,413,188,225,45.50%,54.50%,9,2.20%,65,15.70%,176,237,0,42.60%,57.40%,0.00%,144,146,379,38.50% +138678,810,2006,State-funded primary,416,210,206,50.50%,49.50%,4,1.00%,80,19.20%,81,335,0,19.50%,80.50%,0.00%,237,247,416,59.40% +138679,810,2007,State-funded primary,386,192,194,49.70%,50.30%,10,2.60%,46,11.90%,79,307,0,20.50%,79.50%,0.00%,180,173,349,49.60% +138680,205,2045,State-funded primary,181,82,99,45.30%,54.70%,7,3.90%,16,8.80%,73,108,0,40.30%,59.70%,0.00%,88,83,158,52.50% +138681,212,5402,State-funded secondary,940,452,488,48.10%,51.90%,48,5.10%,106,11.30%,456,482,2,48.50%,51.30%,0.20%,441,400,724,55.20% +138682,212,5405,State-funded secondary,1296,521,775,40.20%,59.80%,78,6.00%,240,18.50%,638,647,11,49.20%,49.90%,0.80%,424,408,936,43.60% +138683,213,2418,State-funded primary,230,106,124,46.10%,53.90%,21,9.10%,20,8.70%,92,131,7,40.00%,57.00%,3.00%,93,98,205,47.80% +138684,301,2021,State-funded primary,419,208,211,49.60%,50.40%,6,1.40%,102,24.30%,161,258,0,38.40%,61.60%,0.00%,95,108,348,31.00% +138685,302,4210,State-funded secondary,962,962,0,100.00%,0.00%,20,2.10%,42,4.40%,776,167,19,80.70%,17.40%,2.00%,351,327,777,42.10% +138686,303,4030,State-funded secondary,1007,478,529,47.50%,52.50%,32,3.20%,233,23.10%,87,883,37,8.60%,87.70%,3.70%,268,269,857,31.40% +138687,306,2111,State-funded primary,203,96,107,47.30%,52.70%,2,1.00%,40,19.70%,27,176,0,13.30%,86.70%,0.00%,42,49,203,24.10% +138688,310,3513,State-funded primary,452,253,199,56.00%,44.00%,9,2.00%,18,4.00%,295,157,0,65.30%,34.70%,0.00%,14,15,421,3.60% +138689,314,2014,State-funded primary,870,408,462,46.90%,53.10%,32,3.70%,99,11.40%,243,610,17,27.90%,70.10%,2.00%,76,76,824,9.20% +138690,320,3308,State-funded primary,1325,665,660,50.20%,49.80%,45,3.40%,97,7.30%,809,516,0,61.10%,38.90%,0.00%,355,370,1208,30.60% +138691,320,5401,State-funded secondary,1485,716,769,48.20%,51.80%,76,5.10%,96,6.50%,627,834,24,42.20%,56.20%,1.60%,291,303,1226,24.70% +138693,330,2085,State-funded primary,633,298,335,47.10%,52.90%,6,0.90%,81,12.80%,136,493,4,21.50%,77.90%,0.60%,177,183,633,28.90% +138694,330,2450,State-funded primary,450,217,233,48.20%,51.80%,11,2.40%,65,14.40%,80,369,1,17.80%,82.00%,0.20%,141,135,417,32.40% +138695,330,5412,State-funded secondary,1026,488,538,47.60%,52.40%,2,0.20%,127,12.40%,654,371,1,63.70%,36.20%,0.10%,552,568,916,62.00% +138696,341,4306,State-funded secondary,1020,0,1020,0.00%,100.00%,29,2.80%,205,20.10%,117,902,1,11.50%,88.40%,0.10%,350,378,907,41.70% +138697,353,7014,State-funded special school,596,192,404,32.20%,67.80%,596,100.00%,0,0.00%,91,505,0,15.30%,84.70%,0.00%,285,248,428,57.90% +138698,355,4018,State-funded secondary,309,309,0,100.00%,0.00%,8,2.60%,61,19.70%,4,305,0,1.30%,98.70%,0.00%,7,10,309,3.20% +138699,359,4501,State-funded secondary,1001,486,515,48.60%,51.40%,27,2.70%,128,12.80%,59,924,18,5.90%,92.30%,1.80%,327,357,1001,35.70% +138700,370,2041,State-funded primary,372,189,183,50.80%,49.20%,8,2.20%,34,9.10%,19,353,0,5.10%,94.90%,0.00%,180,182,339,53.70% +138701,370,2061,State-funded primary,351,165,186,47.00%,53.00%,10,2.80%,36,10.30%,15,324,12,4.30%,92.30%,3.40%,107,106,308,34.40% +138702,370,2098,State-funded primary,289,151,138,52.20%,47.80%,9,3.10%,38,13.10%,12,277,0,4.20%,95.80%,0.00%,105,107,289,37.00% +138704,371,3007,State-funded primary,230,111,119,48.30%,51.70%,0,0.00%,31,13.50%,2,228,0,0.90%,99.10%,0.00%,9,10,210,4.80% +138705,371,3325,State-funded primary,418,203,215,48.60%,51.40%,11,2.60%,67,16.00%,64,354,0,15.30%,84.70%,0.00%,99,95,357,26.60% +138706,382,4000,State-funded secondary,1030,502,528,48.70%,51.30%,16,1.60%,111,10.80%,112,917,1,10.90%,89.00%,0.10%,228,240,1030,23.30% +138707,384,4028,State-funded secondary,1109,557,552,50.20%,49.80%,32,2.90%,141,12.70%,81,1028,0,7.30%,92.70%,0.00%,242,273,1109,24.60% +138708,801,2022,State-funded primary,536,265,271,49.40%,50.60%,6,1.10%,91,17.00%,106,412,18,19.80%,76.90%,3.40%,106,108,536,20.10% +138709,801,3431,State-funded primary,368,172,196,46.70%,53.30%,9,2.40%,55,14.90%,23,345,0,6.30%,93.80%,0.00%,204,200,348,57.50% +138710,801,3434,State-funded primary,201,92,109,45.80%,54.20%,27,13.40%,54,26.90%,28,173,0,13.90%,86.10%,0.00%,96,98,201,48.80% +138711,806,4122,State-funded secondary,923,481,442,52.10%,47.90%,17,1.80%,193,20.90%,46,864,13,5.00%,93.60%,1.40%,531,571,923,61.90% +138712,813,2890,State-funded primary,295,155,140,52.50%,47.50%,3,1.00%,26,8.80%,12,283,0,4.10%,95.90%,0.00%,31,34,269,12.60% +138713,813,3074,State-funded primary,140,64,76,45.70%,54.30%,3,2.10%,17,12.10%,11,129,0,7.90%,92.10%,0.00%,11,12,128,9.40% +138714,823,4056,State-funded primary,617,296,321,48.00%,52.00%,5,0.80%,63,10.20%,161,455,1,26.10%,73.70%,0.20%,72,73,525,13.90% +138715,826,2319,State-funded primary,137,54,83,39.40%,60.60%,8,5.80%,17,12.40%,47,84,6,34.30%,61.30%,4.40%,42,42,137,30.70% +138716,838,7008,State-funded special school,89,23,66,25.80%,74.20%,89,100.00%,0,0.00%,0,89,0,0.00%,100.00%,0.00%,37,36,83,43.40% +138717,840,4175,State-funded secondary,1025,500,525,48.80%,51.20%,15,1.50%,154,15.00%,21,1004,0,2.00%,98.00%,0.00%,307,353,1025,34.40% +138718,840,7029,State-funded special school,223,63,160,28.30%,71.70%,223,100.00%,0,0.00%,3,220,0,1.30%,98.70%,0.00%,135,130,199,65.30% +138719,850,3079,State-funded primary,409,202,207,49.40%,50.60%,4,1.00%,30,7.30%,14,395,0,3.40%,96.60%,0.00%,33,35,409,8.60% +138720,850,4000,State-funded secondary,844,402,442,47.60%,52.40%,21,2.50%,81,9.60%,57,787,0,6.80%,93.20%,0.00%,127,140,844,16.60% +138721,855,4012,State-funded secondary,709,353,356,49.80%,50.20%,20,2.80%,122,17.20%,23,686,0,3.20%,96.80%,0.00%,135,144,709,20.30% +138722,860,3300,State-funded primary,66,27,39,40.90%,59.10%,1,1.50%,6,9.10%,0,66,0,0.00%,100.00%,0.00%,4,5,66,7.60% +138723,860,3457,State-funded primary,183,92,91,50.30%,49.70%,0,0.00%,13,7.10%,14,169,0,7.70%,92.30%,0.00%,14,14,183,7.70% +138724,860,3459,State-funded primary,216,113,103,52.30%,47.70%,1,0.50%,9,4.20%,18,198,0,8.30%,91.70%,0.00%,34,34,216,15.70% +138725,860,3463,State-funded primary,168,85,83,50.60%,49.40%,4,2.40%,19,11.30%,35,133,0,20.80%,79.20%,0.00%,54,56,168,33.30% +138726,860,3473,State-funded primary,207,99,108,47.80%,52.20%,2,1.00%,12,5.80%,2,205,0,1.00%,99.00%,0.00%,13,13,207,6.30% +138727,860,3474,State-funded primary,190,96,94,50.50%,49.50%,4,2.10%,16,8.40%,34,156,0,17.90%,82.10%,0.00%,32,32,190,16.80% +138728,860,4158,State-funded secondary,1074,502,572,46.70%,53.30%,12,1.10%,96,8.90%,58,1016,0,5.40%,94.60%,0.00%,195,208,1074,19.40% +138729,860,4610,State-funded secondary,1310,672,638,51.30%,48.70%,17,1.30%,73,5.60%,67,1243,0,5.10%,94.90%,0.00%,109,115,1099,10.50% +138731,871,2196,State-funded primary,259,133,126,51.40%,48.60%,13,5.00%,65,25.10%,193,63,3,74.50%,24.30%,1.20%,77,77,259,29.70% +138732,877,4502,State-funded secondary,1916,979,937,51.10%,48.90%,46,2.40%,137,7.20%,65,1849,2,3.40%,96.50%,0.10%,167,161,1567,10.30% +138733,878,2410,State-funded primary,94,51,43,54.30%,45.70%,0,0.00%,10,10.60%,1,93,0,1.10%,98.90%,0.00%,7,7,77,9.10% +138734,881,5436,State-funded secondary,1022,475,547,46.50%,53.50%,13,1.30%,73,7.10%,38,984,0,3.70%,96.30%,0.00%,100,118,946,12.50% +138735,883,5266,State-funded primary,420,186,234,44.30%,55.70%,8,1.90%,46,11.00%,103,315,2,24.50%,75.00%,0.50%,77,85,380,22.40% +138736,883,7072,State-funded special school,73,33,40,45.20%,54.80%,72,98.60%,1,1.40%,14,59,0,19.20%,80.80%,0.00%,24,19,56,33.90% +138737,886,3086,State-funded primary,207,98,109,47.30%,52.70%,20,9.70%,25,12.10%,12,194,1,5.80%,93.70%,0.50%,51,51,207,24.60% +138738,886,3128,State-funded primary,406,211,195,52.00%,48.00%,9,2.20%,51,12.60%,24,382,0,5.90%,94.10%,0.00%,109,112,406,27.60% +138739,890,2209,State-funded primary,598,306,292,51.20%,48.80%,7,1.20%,55,9.20%,11,587,0,1.80%,98.20%,0.00%,126,132,598,22.10% +138740,892,2152,State-funded primary,463,226,237,48.80%,51.20%,0,0.00%,56,12.10%,90,372,1,19.40%,80.30%,0.20%,128,134,425,31.50% +138741,892,2906,State-funded primary,471,223,248,47.30%,52.70%,3,0.60%,72,15.30%,54,417,0,11.50%,88.50%,0.00%,119,125,410,30.50% +138742,896,2269,State-funded primary,253,126,127,49.80%,50.20%,3,1.20%,8,3.20%,4,249,0,1.60%,98.40%,0.00%,10,14,202,6.90% +138743,896,4134,State-funded secondary,1029,487,542,47.30%,52.70%,18,1.70%,86,8.40%,43,985,1,4.20%,95.70%,0.10%,134,153,1029,14.90% +138744,909,2318,State-funded primary,463,236,227,51.00%,49.00%,10,2.20%,48,10.40%,36,427,0,7.80%,92.20%,0.00%,76,77,414,18.60% +138746,916,5411,State-funded secondary,1091,535,556,49.00%,51.00%,17,1.60%,204,18.70%,100,991,0,9.20%,90.80%,0.00%,197,204,979,20.80% +138747,919,4001,State-funded secondary,1216,567,649,46.60%,53.40%,15,1.20%,114,9.40%,371,845,0,30.50%,69.50%,0.00%,324,343,1058,32.40% +138748,925,2064,State-funded primary,419,196,223,46.80%,53.20%,8,1.90%,52,12.40%,20,399,0,4.80%,95.20%,0.00%,47,50,419,11.90% +138749,925,2161,State-funded primary,57,21,36,36.80%,63.20%,0,0.00%,12,21.10%,0,57,0,0.00%,100.00%,0.00%,23,24,57,42.10% +138750,925,2190,State-funded primary,315,150,165,47.60%,52.40%,6,1.90%,27,8.60%,20,291,4,6.30%,92.40%,1.30%,149,149,267,55.80% +138751,925,2234,State-funded primary,449,217,232,48.30%,51.70%,8,1.80%,73,16.30%,287,162,0,63.90%,36.10%,0.00%,158,160,427,37.50% +138752,925,2239,State-funded primary,545,276,269,50.60%,49.40%,9,1.70%,90,16.50%,312,233,0,57.20%,42.80%,0.00%,172,180,545,33.00% +138753,925,3166,State-funded primary,286,150,136,52.40%,47.60%,3,1.00%,47,16.40%,5,281,0,1.70%,98.30%,0.00%,12,13,286,4.50% +138754,925,4072,State-funded secondary,1446,713,733,49.30%,50.70%,40,2.80%,264,18.30%,586,857,3,40.50%,59.30%,0.20%,443,478,1446,33.10% +138756,925,4516,State-funded secondary,296,140,156,47.30%,52.70%,19,6.40%,89,30.10%,15,281,0,5.10%,94.90%,0.00%,131,143,296,48.30% +138757,925,5400,State-funded secondary,669,340,329,50.80%,49.20%,5,0.70%,67,10.00%,50,619,0,7.50%,92.50%,0.00%,114,112,534,21.00% +138758,926,5405,State-funded secondary,578,268,310,46.40%,53.60%,14,2.40%,36,6.20%,13,565,0,2.20%,97.80%,0.00%,142,150,578,26.00% +138760,941,2003,State-funded primary,192,85,107,44.30%,55.70%,2,1.00%,23,12.00%,8,184,0,4.20%,95.80%,0.00%,7,7,192,3.60% +138761,940,2043,State-funded primary,143,69,74,48.30%,51.70%,3,2.10%,11,7.70%,4,137,2,2.80%,95.80%,1.40%,9,9,143,6.30% +138762,931,4129,State-funded secondary,1040,0,1040,0.00%,100.00%,22,2.10%,189,18.20%,103,937,0,9.90%,90.10%,0.00%,122,132,902,14.60% +138763,933,3225,State-funded primary,183,93,90,50.80%,49.20%,1,0.50%,5,2.70%,13,165,5,7.10%,90.20%,2.70%,16,16,149,10.70% +138764,936,2092,State-funded primary,932,449,483,48.20%,51.80%,29,3.10%,145,15.60%,157,775,0,16.80%,83.20%,0.00%,146,130,819,15.90% +138765,936,4202,State-funded secondary,966,463,503,47.90%,52.10%,50,5.20%,163,16.90%,138,828,0,14.30%,85.70%,0.00%,224,247,966,25.60% +138766,936,7024,State-funded special school,78,0,78,0.00%,100.00%,78,100.00%,0,0.00%,4,73,1,5.10%,93.60%,1.30%,45,54,78,69.20% +138767,937,4113,State-funded secondary,605,285,320,47.10%,52.90%,9,1.50%,109,18.00%,20,583,2,3.30%,96.40%,0.30%,123,136,605,22.50% +138768,868,6019,Independent school,44,28,16,63.60%,36.40%,0,0.00%,11,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138771,313,6002,Independent school,129,68,61,52.70%,47.30%,1,0.80%,6,4.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138772,880,2002,State-funded primary,459,235,224,51.20%,48.80%,23,5.00%,83,18.10%,42,417,0,9.20%,90.80%,0.00%,187,157,381,41.20% +138773,880,2003,State-funded primary,407,196,211,48.20%,51.80%,19,4.70%,144,35.40%,19,386,2,4.70%,94.80%,0.50%,243,215,342,62.90% +138774,931,2000,State-funded primary,344,162,182,47.10%,52.90%,11,3.20%,95,27.60%,75,269,0,21.80%,78.20%,0.00%,153,145,311,46.60% +138775,330,1105,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +138776,831,4000,State-funded primary,419,219,200,52.30%,47.70%,7,1.70%,48,11.50%,389,30,0,92.80%,7.20%,0.00%,169,170,419,40.60% +138777,202,6002,Independent school,97,50,47,51.50%,48.50%,0,0.00%,5,5.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138779,926,6006,Independent school,14,7,7,50.00%,50.00%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138783,925,4002,State-funded secondary,437,206,231,47.10%,52.90%,14,3.20%,114,26.10%,12,424,1,2.70%,97.00%,0.20%,144,169,437,38.70% +138784,352,2012,State-funded primary,566,275,291,48.60%,51.40%,25,4.40%,79,14.00%,310,253,3,54.80%,44.70%,0.50%,298,276,513,53.80% +138785,352,2015,State-funded primary,694,335,359,48.30%,51.70%,19,2.70%,82,11.80%,551,143,0,79.40%,20.60%,0.00%,320,321,634,50.60% +138786,916,2006,State-funded primary,145,74,71,51.00%,49.00%,8,5.50%,38,26.20%,12,133,0,8.30%,91.70%,0.00%,31,36,145,24.80% +138787,341,4001,State-funded secondary,1046,413,633,39.50%,60.50%,15,1.40%,256,24.50%,266,780,0,25.40%,74.60%,0.00%,485,470,918,51.20% +138788,358,2001,State-funded primary,222,101,121,45.50%,54.50%,8,3.60%,45,20.30%,12,210,0,5.40%,94.60%,0.00%,125,120,196,61.20% +138789,801,2062,State-funded primary,379,192,187,50.70%,49.30%,9,2.40%,59,15.60%,146,233,0,38.50%,61.50%,0.00%,145,139,354,39.30% +138790,831,2009,State-funded primary,207,104,103,50.20%,49.80%,5,2.40%,19,9.20%,67,140,0,32.40%,67.60%,0.00%,136,138,207,66.70% +138791,801,2064,State-funded primary,193,97,96,50.30%,49.70%,5,2.60%,19,9.80%,43,150,0,22.30%,77.70%,0.00%,73,76,193,39.40% +138793,926,2027,State-funded primary,433,212,221,49.00%,51.00%,12,2.80%,55,12.70%,154,279,0,35.60%,64.40%,0.00%,238,244,379,64.40% +138794,801,2067,State-funded primary,365,165,200,45.20%,54.80%,8,2.20%,95,26.00%,135,230,0,37.00%,63.00%,0.00%,100,104,365,28.50% +138795,926,2028,State-funded primary,211,103,108,48.80%,51.20%,2,0.90%,48,22.70%,3,208,0,1.40%,98.60%,0.00%,44,45,184,24.50% +138796,926,2030,State-funded primary,49,26,23,53.10%,46.90%,0,0.00%,8,16.30%,3,46,0,6.10%,93.90%,0.00%,13,14,49,28.60% +138797,926,2036,State-funded primary,38,22,16,57.90%,42.10%,0,0.00%,7,18.40%,1,37,0,2.60%,97.40%,0.00%,16,16,38,42.10% +138799,330,2038,State-funded primary,702,324,378,46.20%,53.80%,6,0.90%,115,16.40%,599,103,0,85.30%,14.70%,0.00%,315,329,680,48.40% +138801,316,6002,Independent school,66,0,66,0.00%,100.00%,0,0.00%,2,3.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138803,208,6001,Independent school,82,20,62,24.40%,75.60%,82,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138804,855,2321,State-funded primary,305,133,172,43.60%,56.40%,3,1.00%,31,10.20%,10,293,2,3.30%,96.10%,0.70%,32,33,305,10.80% +138805,855,2168,State-funded primary,184,91,93,49.50%,50.50%,4,2.20%,22,12.00%,1,183,0,0.50%,99.50%,0.00%,21,21,184,11.40% +138806,855,2157,State-funded primary,356,181,175,50.80%,49.20%,9,2.50%,47,13.20%,54,302,0,15.20%,84.80%,0.00%,51,53,356,14.90% +138807,855,2037,State-funded primary,191,87,104,45.50%,54.50%,2,1.00%,20,10.50%,3,188,0,1.60%,98.40%,0.00%,11,11,191,5.80% +138808,925,5209,State-funded primary,176,70,106,39.80%,60.20%,7,4.00%,40,22.70%,0,176,0,0.00%,100.00%,0.00%,43,46,152,30.30% +138809,855,2376,State-funded primary,212,105,107,49.50%,50.50%,6,2.80%,1,0.50%,11,201,0,5.20%,94.80%,0.00%,11,12,212,5.70% +138810,891,4700,State-funded secondary,850,424,426,49.90%,50.10%,14,1.60%,68,8.00%,188,661,1,22.10%,77.80%,0.10%,164,178,765,23.30% +138811,891,3696,State-funded primary,450,222,228,49.30%,50.70%,2,0.40%,46,10.20%,113,331,6,25.10%,73.60%,1.30%,47,48,415,11.60% +138812,891,3730,State-funded primary,223,94,129,42.20%,57.80%,7,3.10%,17,7.60%,17,206,0,7.60%,92.40%,0.00%,18,20,213,9.40% +138813,891,3690,State-funded primary,223,116,107,52.00%,48.00%,3,1.30%,6,2.70%,24,199,0,10.80%,89.20%,0.00%,35,30,208,14.40% +138814,892,3321,State-funded primary,228,125,103,54.80%,45.20%,1,0.40%,13,5.70%,115,113,0,50.40%,49.60%,0.00%,39,33,205,16.10% +138815,839,2230,State-funded primary,304,155,149,51.00%,49.00%,6,2.00%,57,18.80%,19,283,2,6.30%,93.10%,0.70%,39,39,304,12.80% +138816,925,3311,State-funded primary,106,46,60,43.40%,56.60%,7,6.60%,13,12.30%,29,77,0,27.40%,72.60%,0.00%,44,46,106,43.40% +138817,931,4560,State-funded secondary,1072,559,513,52.10%,47.90%,42,3.90%,159,14.80%,58,1013,1,5.40%,94.50%,0.10%,108,109,923,11.80% +138818,855,2161,State-funded primary,411,202,209,49.10%,50.90%,3,0.70%,52,12.70%,27,384,0,6.60%,93.40%,0.00%,34,37,411,9.00% +138819,855,4036,State-funded secondary,688,318,370,46.20%,53.80%,29,4.20%,88,12.80%,6,682,0,0.90%,99.10%,0.00%,115,125,688,18.20% +138820,855,4031,State-funded secondary,639,304,335,47.60%,52.40%,7,1.10%,64,10.00%,28,604,7,4.40%,94.50%,1.10%,85,93,639,14.60% +138822,941,2106,State-funded primary,377,194,183,51.50%,48.50%,8,2.10%,39,10.30%,83,291,3,22.00%,77.20%,0.80%,47,48,377,12.70% +138823,868,4029,State-funded secondary,1727,818,909,47.40%,52.60%,28,1.60%,147,8.50%,133,1594,0,7.70%,92.30%,0.00%,133,143,1374,10.40% +138824,383,3910,State-funded primary,383,185,198,48.30%,51.70%,7,1.80%,55,14.40%,16,367,0,4.20%,95.80%,0.00%,79,83,383,21.70% +138825,318,4006,State-funded secondary,1549,658,891,42.50%,57.50%,51,3.30%,220,14.20%,247,1301,1,15.90%,84.00%,0.10%,159,163,1228,13.30% +138826,840,2023,State-funded primary,236,114,122,48.30%,51.70%,0,0.00%,15,6.40%,5,231,0,2.10%,97.90%,0.00%,27,27,236,11.40% +138827,813,3324,State-funded primary,126,68,58,54.00%,46.00%,4,3.20%,11,8.70%,3,123,0,2.40%,97.60%,0.00%,13,12,107,11.20% +138828,373,3414,State-funded primary,252,124,128,49.20%,50.80%,17,6.70%,31,12.30%,32,219,1,12.70%,86.90%,0.40%,37,33,208,15.90% +138829,926,4042,State-funded secondary,1027,507,520,49.40%,50.60%,25,2.40%,145,14.10%,24,1003,0,2.30%,97.70%,0.00%,155,156,820,19.00% +138830,373,3412,State-funded primary,301,146,155,48.50%,51.50%,7,2.30%,44,14.60%,30,271,0,10.00%,90.00%,0.00%,17,17,301,5.60% +138831,813,4090,State-funded secondary,487,243,244,49.90%,50.10%,12,2.50%,76,15.60%,11,475,1,2.30%,97.50%,0.20%,127,134,487,27.50% +138832,891,4117,State-funded secondary,756,374,382,49.50%,50.50%,12,1.60%,90,11.90%,111,645,0,14.70%,85.30%,0.00%,173,186,756,24.60% +138834,881,5461,State-funded secondary,1007,1001,6,99.40%,0.60%,6,0.60%,43,4.30%,93,912,2,9.20%,90.60%,0.20%,81,98,859,11.40% +138835,888,5400,State-funded secondary,1245,595,650,47.80%,52.20%,5,0.40%,33,2.70%,86,1159,0,6.90%,93.10%,0.00%,77,73,894,8.20% +138836,830,4197,State-funded secondary,855,415,440,48.50%,51.50%,20,2.30%,104,12.20%,20,835,0,2.30%,97.70%,0.00%,269,297,855,34.70% +138837,891,4119,State-funded secondary,731,348,383,47.60%,52.40%,5,0.70%,70,9.60%,136,591,4,18.60%,80.80%,0.50%,160,165,660,25.00% +138838,855,3006,State-funded primary,133,62,71,46.60%,53.40%,0,0.00%,19,14.30%,24,109,0,18.00%,82.00%,0.00%,7,7,133,5.30% +138839,925,5420,State-funded secondary,1047,508,539,48.50%,51.50%,34,3.20%,135,12.90%,26,1010,11,2.50%,96.50%,1.10%,188,191,918,20.80% +138840,941,3076,State-funded primary,130,71,59,54.60%,45.40%,1,0.80%,9,6.90%,4,119,7,3.10%,91.50%,5.40%,18,21,130,16.20% +138841,373,4230,State-funded secondary,1387,706,681,50.90%,49.10%,66,4.80%,71,5.10%,296,1091,0,21.30%,78.70%,0.00%,229,200,1035,19.30% +138843,933,2319,State-funded primary,255,133,122,52.20%,47.80%,8,3.10%,47,18.40%,81,174,0,31.80%,68.20%,0.00%,103,108,255,42.40% +138844,823,5408,State-funded secondary,719,347,372,48.30%,51.70%,16,2.20%,110,15.30%,61,658,0,8.50%,91.50%,0.00%,111,117,719,16.30% +138845,807,4121,State-funded secondary,1521,767,754,50.40%,49.60%,28,1.80%,146,9.60%,51,1470,0,3.40%,96.60%,0.00%,258,280,1352,20.70% +138846,812,3525,State-funded primary,561,279,282,49.70%,50.30%,14,2.50%,91,16.20%,89,472,0,15.90%,84.10%,0.00%,225,229,472,48.50% +138848,373,3406,State-funded primary,216,120,96,55.60%,44.40%,4,1.90%,15,6.90%,58,158,0,26.90%,73.10%,0.00%,25,26,216,12.00% +138849,933,2312,State-funded primary,150,82,68,54.70%,45.30%,1,0.70%,20,13.30%,62,87,1,41.30%,58.00%,0.70%,32,35,104,33.70% +138850,341,5402,State-funded secondary,1026,18,1008,1.80%,98.20%,26,2.50%,187,18.20%,116,908,2,11.30%,88.50%,0.20%,169,161,844,19.10% +138851,350,3009,State-funded primary,254,143,111,56.30%,43.70%,9,3.50%,24,9.40%,152,102,0,59.80%,40.20%,0.00%,65,65,217,30.00% +138852,336,4601,State-funded secondary,1341,639,702,47.70%,52.30%,14,1.00%,221,16.50%,662,679,0,49.40%,50.60%,0.00%,343,312,1078,28.90% +138853,344,4012,State-funded secondary,1426,638,788,44.70%,55.30%,74,5.20%,369,25.90%,62,1363,1,4.30%,95.60%,0.10%,489,518,1426,36.30% +138854,806,2143,State-funded primary,296,141,155,47.60%,52.40%,3,1.00%,34,11.50%,127,169,0,42.90%,57.10%,0.00%,122,124,267,46.40% +138855,801,4627,State-funded secondary,1622,748,874,46.10%,53.90%,38,2.30%,183,11.30%,149,1459,14,9.20%,90.00%,0.90%,108,91,1185,7.70% +138857,812,2006,State-funded primary,249,122,127,49.00%,51.00%,5,2.00%,47,18.90%,44,205,0,17.70%,82.30%,0.00%,131,130,234,55.60% +138858,941,4007,State-funded secondary,1347,668,679,49.60%,50.40%,16,1.20%,159,11.80%,346,1000,1,25.70%,74.20%,0.10%,288,307,1222,25.10% +138859,320,4001,State-funded secondary,557,233,324,41.80%,58.20%,20,3.60%,51,9.20%,322,235,0,57.80%,42.20%,0.00%,173,209,557,37.50% +138860,839,2000,State-funded primary,480,225,255,46.90%,53.10%,5,1.00%,44,9.20%,42,438,0,8.80%,91.30%,0.00%,67,75,480,15.60% +138863,880,4001,State-funded secondary,1461,674,787,46.10%,53.90%,55,3.80%,262,17.90%,58,1402,1,4.00%,96.00%,0.10%,433,508,1461,34.80% +138864,330,2070,State-funded primary,464,218,246,47.00%,53.00%,5,1.10%,73,15.70%,449,15,0,96.80%,3.20%,0.00%,191,202,448,45.10% +138865,881,4007,State-funded secondary,970,498,472,51.30%,48.70%,37,3.80%,141,14.50%,50,907,13,5.20%,93.50%,1.30%,344,420,970,43.30% +138866,812,2007,State-funded primary,156,72,84,46.20%,53.80%,10,6.40%,27,17.30%,45,108,3,28.80%,69.20%,1.90%,81,81,136,59.60% +138867,380,2007,State-funded primary,486,237,249,48.80%,51.20%,7,1.40%,109,22.40%,335,151,0,68.90%,31.10%,0.00%,124,129,406,31.80% +138868,888,6045,Independent school,9,2,7,22.20%,77.80%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138869,856,4000,State-funded secondary,392,0,392,0.00%,100.00%,7,1.80%,42,10.70%,321,64,7,81.90%,16.30%,1.80%,76,85,392,21.70% +138871,916,6002,Independent school,124,57,67,46.00%,54.00%,2,1.60%,35,28.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138873,931,6011,Independent school,15,6,9,40.00%,60.00%,0,0.00%,6,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138875,893,6030,Independent school,12,0,12,0.00%,100.00%,4,33.30%,2,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138877,935,6002,Independent school,48,4,44,8.30%,91.70%,18,37.50%,9,18.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138878,341,6003,Independent school,46,23,23,50.00%,50.00%,18,39.10%,18,39.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138879,868,4000,State-funded secondary,837,7,830,0.80%,99.20%,22,2.60%,80,9.60%,154,682,1,18.40%,81.50%,0.10%,86,99,726,13.60% +138880,926,6009,Independent school,9,4,5,44.40%,55.60%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138883,330,2071,State-funded primary,210,102,108,48.60%,51.40%,8,3.80%,29,13.80%,135,75,0,64.30%,35.70%,0.00%,139,143,210,68.10% +138884,889,6013,Independent school,50,0,50,0.00%,100.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138885,865,4002,State-funded secondary,979,491,488,50.20%,49.80%,53,5.40%,118,12.10%,105,874,0,10.70%,89.30%,0.00%,255,265,854,31.00% +138888,330,2072,State-funded primary,681,337,344,49.50%,50.50%,25,3.70%,103,15.10%,256,425,0,37.60%,62.40%,0.00%,296,296,637,46.50% +138889,330,2073,State-funded primary,440,238,202,54.10%,45.90%,6,1.40%,77,17.50%,108,332,0,24.50%,75.50%,0.00%,239,236,406,58.10% +138890,812,2008,State-funded primary,432,221,211,51.20%,48.80%,10,2.30%,49,11.30%,71,360,1,16.40%,83.30%,0.20%,163,166,375,44.30% +138891,855,2360,State-funded primary,605,293,312,48.40%,51.60%,12,2.00%,101,16.70%,67,538,0,11.10%,88.90%,0.00%,102,105,605,17.40% +138893,383,2000,State-funded primary,439,217,222,49.40%,50.60%,4,0.90%,64,14.60%,245,181,13,55.80%,41.20%,3.00%,168,171,404,42.30% +138894,855,4033,State-funded secondary,268,151,117,56.30%,43.70%,2,0.70%,16,6.00%,24,241,3,9.00%,89.90%,1.10%,22,0,0,0.00% +138895,845,4044,State-funded secondary,1519,774,745,51.00%,49.00%,34,2.20%,268,17.60%,108,1411,0,7.10%,92.90%,0.00%,448,478,1519,31.50% +138896,909,5223,State-funded primary,90,38,52,42.20%,57.80%,0,0.00%,11,12.20%,0,90,0,0.00%,100.00%,0.00%,5,5,81,6.20% +138897,931,4060,State-funded secondary,838,377,461,45.00%,55.00%,10,1.20%,139,16.60%,169,669,0,20.20%,79.80%,0.00%,128,144,704,20.50% +138898,852,2458,State-funded primary,179,90,89,50.30%,49.70%,6,3.40%,16,8.90%,56,118,5,31.30%,65.90%,2.80%,34,35,179,19.60% +138899,860,2152,State-funded primary,212,98,114,46.20%,53.80%,3,1.40%,12,5.70%,7,205,0,3.30%,96.70%,0.00%,5,5,212,2.40% +138900,801,3432,State-funded primary,453,222,231,49.00%,51.00%,20,4.40%,63,13.90%,176,277,0,38.90%,61.10%,0.00%,110,109,407,26.80% +138901,881,2000,State-funded primary,400,201,199,50.30%,49.80%,7,1.80%,54,13.50%,16,384,0,4.00%,96.00%,0.00%,42,46,400,11.50% +138902,855,3312,State-funded primary,78,37,41,47.40%,52.60%,2,2.60%,18,23.10%,4,74,0,5.10%,94.90%,0.00%,4,4,78,5.10% +138903,852,2426,State-funded primary,270,142,128,52.60%,47.40%,7,2.60%,15,5.60%,45,224,1,16.70%,83.00%,0.40%,24,25,270,9.30% +138904,801,2061,State-funded primary,353,167,186,47.30%,52.70%,9,2.50%,50,14.20%,87,266,0,24.60%,75.40%,0.00%,143,130,312,41.70% +138905,855,3014,State-funded primary,235,110,125,46.80%,53.20%,11,4.70%,12,5.10%,9,226,0,3.80%,96.20%,0.00%,29,32,235,13.60% +138906,855,2331,State-funded primary,418,180,238,43.10%,56.90%,7,1.70%,28,6.70%,100,318,0,23.90%,76.10%,0.00%,20,22,418,5.30% +138907,371,2076,State-funded primary,262,120,142,45.80%,54.20%,3,1.10%,31,11.80%,10,252,0,3.80%,96.20%,0.00%,55,53,236,22.50% +138908,855,2062,State-funded primary,387,180,207,46.50%,53.50%,5,1.30%,49,12.70%,161,226,0,41.60%,58.40%,0.00%,93,97,387,25.10% +138909,937,3311,State-funded primary,236,126,110,53.40%,46.60%,3,1.30%,22,9.30%,3,233,0,1.30%,98.70%,0.00%,10,10,201,5.00% +138910,852,2425,State-funded primary,361,165,196,45.70%,54.30%,10,2.80%,28,7.80%,99,262,0,27.40%,72.60%,0.00%,68,68,361,18.80% +138911,881,2025,State-funded primary,420,213,207,50.70%,49.30%,7,1.70%,80,19.00%,6,412,2,1.40%,98.10%,0.50%,81,85,420,20.20% +138912,937,2010,State-funded primary,209,105,104,50.20%,49.80%,4,1.90%,48,23.00%,13,196,0,6.20%,93.80%,0.00%,69,73,209,34.90% +138914,937,2006,State-funded primary,211,106,105,50.20%,49.80%,4,1.90%,46,21.80%,62,149,0,29.40%,70.60%,0.00%,62,64,211,30.30% +138915,937,2008,State-funded primary,404,196,208,48.50%,51.50%,4,1.00%,60,14.90%,178,226,0,44.10%,55.90%,0.00%,144,144,376,38.30% +138916,380,2010,State-funded primary,441,231,210,52.40%,47.60%,9,2.00%,32,7.30%,314,127,0,71.20%,28.80%,0.00%,169,169,387,43.70% +138917,941,2039,State-funded primary,305,159,146,52.10%,47.90%,2,0.70%,36,11.80%,148,157,0,48.50%,51.50%,0.00%,117,125,279,44.80% +138918,926,4000,State-funded secondary,668,341,327,51.00%,49.00%,12,1.80%,99,14.80%,58,603,7,8.70%,90.30%,1.00%,176,194,668,29.00% +138920,850,4006,State-funded secondary,927,495,432,53.40%,46.60%,49,5.30%,130,14.00%,85,842,0,9.20%,90.80%,0.00%,261,318,927,34.30% +138922,371,2123,State-funded primary,272,125,147,46.00%,54.00%,0,0.00%,20,7.40%,12,260,0,4.40%,95.60%,0.00%,27,27,229,11.80% +138923,394,4063,State-funded secondary,1122,531,591,47.30%,52.70%,33,2.90%,200,17.80%,15,1106,1,1.30%,98.60%,0.10%,361,375,1122,33.40% +138924,313,4026,State-funded secondary,1301,621,680,47.70%,52.30%,42,3.20%,34,2.60%,635,653,13,48.80%,50.20%,1.00%,335,313,1010,31.00% +138925,373,4280,State-funded secondary,1022,496,526,48.50%,51.50%,16,1.60%,253,24.80%,812,199,11,79.50%,19.50%,1.10%,669,690,1022,67.50% +138926,855,3093,State-funded primary,87,38,49,43.70%,56.30%,3,3.40%,12,13.80%,0,87,0,0.00%,100.00%,0.00%,3,3,87,3.40% +138927,890,2220,State-funded primary,437,206,231,47.10%,52.90%,22,5.00%,52,11.90%,41,396,0,9.40%,90.60%,0.00%,209,213,371,57.40% +138928,936,4153,State-funded secondary,1437,712,725,49.50%,50.50%,33,2.30%,269,18.70%,75,1343,19,5.20%,93.50%,1.30%,217,220,1197,18.40% +138929,855,2110,State-funded primary,169,78,91,46.20%,53.80%,2,1.20%,16,9.50%,41,128,0,24.30%,75.70%,0.00%,29,31,169,18.30% +138930,855,3094,State-funded primary,292,155,137,53.10%,46.90%,2,0.70%,45,15.40%,46,246,0,15.80%,84.20%,0.00%,60,64,292,21.90% +138931,855,3069,State-funded primary,204,106,98,52.00%,48.00%,4,2.00%,17,8.30%,6,198,0,2.90%,97.10%,0.00%,9,9,204,4.40% +138932,941,4071,State-funded secondary,1422,691,731,48.60%,51.40%,10,0.70%,188,13.20%,305,1116,1,21.40%,78.50%,0.10%,250,272,1257,21.60% +138933,826,5208,State-funded primary,460,224,236,48.70%,51.30%,12,2.60%,65,14.10%,83,376,1,18.00%,81.70%,0.20%,104,111,419,26.50% +138934,937,2619,State-funded primary,451,229,222,50.80%,49.20%,4,0.90%,60,13.30%,15,436,0,3.30%,96.70%,0.00%,58,60,451,13.30% +138935,855,7005,State-funded special school,244,66,178,27.00%,73.00%,244,100.00%,0,0.00%,32,212,0,13.10%,86.90%,0.00%,78,74,215,34.40% +138936,860,4123,State-funded secondary,888,445,443,50.10%,49.90%,17,1.90%,185,20.80%,42,846,0,4.70%,95.30%,0.00%,196,225,888,25.30% +138937,330,4207,State-funded secondary,1014,1014,0,100.00%,0.00%,4,0.40%,72,7.10%,574,430,10,56.60%,42.40%,1.00%,373,372,827,45.00% +138938,823,2180,State-funded primary,149,76,73,51.00%,49.00%,1,0.70%,11,7.40%,1,148,0,0.70%,99.30%,0.00%,9,9,149,6.00% +138939,823,5203,State-funded primary,76,38,38,50.00%,50.00%,0,0.00%,8,10.50%,8,68,0,10.50%,89.50%,0.00%,8,8,64,12.50% +138940,916,5215,State-funded primary,217,100,117,46.10%,53.90%,14,6.50%,32,14.70%,37,180,0,17.10%,82.90%,0.00%,42,43,217,19.80% +138941,384,3329,State-funded primary,117,48,69,41.00%,59.00%,5,4.30%,23,19.70%,10,107,0,8.50%,91.50%,0.00%,39,40,117,34.20% +138942,933,3115,State-funded primary,187,96,91,51.30%,48.70%,1,0.50%,10,5.30%,10,177,0,5.30%,94.70%,0.00%,22,22,136,16.20% +138943,311,2067,State-funded primary,261,135,126,51.70%,48.30%,3,1.10%,15,5.70%,23,234,4,8.80%,89.70%,1.50%,7,7,261,2.70% +138944,311,2066,State-funded primary,359,179,180,49.90%,50.10%,1,0.30%,29,8.10%,23,336,0,6.40%,93.60%,0.00%,15,18,359,5.00% +138945,383,3365,State-funded primary,221,97,124,43.90%,56.10%,4,1.80%,21,9.50%,17,204,0,7.70%,92.30%,0.00%,14,19,204,9.30% +138946,384,3332,State-funded primary,148,71,77,48.00%,52.00%,3,2.00%,31,20.90%,10,138,0,6.80%,93.20%,0.00%,18,20,130,15.40% +138947,384,3333,State-funded primary,239,125,114,52.30%,47.70%,5,2.10%,43,18.00%,55,184,0,23.00%,77.00%,0.00%,20,22,208,10.60% +138948,888,4135,State-funded secondary,797,347,450,43.50%,56.50%,16,2.00%,53,6.60%,42,754,1,5.30%,94.60%,0.10%,200,211,797,26.50% +138949,384,3327,State-funded primary,202,101,101,50.00%,50.00%,1,0.50%,27,13.40%,30,172,0,14.90%,85.10%,0.00%,15,15,202,7.40% +138950,384,4800,State-funded secondary,756,391,365,51.70%,48.30%,58,7.70%,76,10.10%,224,521,11,29.60%,68.90%,1.50%,177,189,756,25.00% +138951,384,4604,State-funded secondary,1503,728,775,48.40%,51.60%,65,4.30%,167,11.10%,176,1323,4,11.70%,88.00%,0.30%,240,255,1391,18.30% +138952,941,2177,State-funded primary,439,209,230,47.60%,52.40%,8,1.80%,30,6.80%,182,256,1,41.50%,58.30%,0.20%,41,43,410,10.50% +138953,941,2209,State-funded primary,598,299,299,50.00%,50.00%,9,1.50%,81,13.50%,163,434,1,27.30%,72.60%,0.20%,154,170,598,28.40% +138954,941,2162,State-funded primary,480,235,245,49.00%,51.00%,66,13.80%,68,14.20%,143,316,21,29.80%,65.80%,4.40%,101,102,459,22.20% +138955,941,2190,State-funded primary,429,202,227,47.10%,52.90%,7,1.60%,42,9.80%,186,243,0,43.40%,56.60%,0.00%,138,141,390,36.20% +138956,941,3091,State-funded primary,416,211,205,50.70%,49.30%,2,0.50%,38,9.10%,91,325,0,21.90%,78.10%,0.00%,36,37,416,8.90% +138957,350,3025,State-funded primary,601,299,302,49.80%,50.20%,10,1.70%,51,8.50%,347,237,17,57.70%,39.40%,2.80%,180,180,528,34.10% +138958,384,3330,State-funded primary,229,99,130,43.20%,56.80%,4,1.70%,31,13.50%,48,180,1,21.00%,78.60%,0.40%,26,26,200,13.00% +138960,210,5405,State-funded secondary,870,464,406,53.30%,46.70%,18,2.10%,70,8.00%,435,435,0,50.00%,50.00%,0.00%,280,261,650,40.20% +138961,210,5403,State-funded secondary,927,446,481,48.10%,51.90%,27,2.90%,51,5.50%,324,603,0,35.00%,65.00%,0.00%,243,253,754,33.60% +138962,883,2644,State-funded primary,401,191,210,47.60%,52.40%,11,2.70%,47,11.70%,91,309,1,22.70%,77.10%,0.20%,174,185,401,46.10% +138963,908,2443,State-funded primary,104,61,43,58.70%,41.30%,0,0.00%,17,16.30%,0,102,2,0.00%,98.10%,1.90%,17,18,96,18.80% +138964,891,4413,State-funded secondary,1090,536,554,49.20%,50.80%,9,0.80%,107,9.80%,51,1032,7,4.70%,94.70%,0.60%,139,152,962,15.80% +138965,855,3009,State-funded primary,237,120,117,50.60%,49.40%,7,3.00%,24,10.10%,7,230,0,3.00%,97.00%,0.00%,58,61,237,25.70% +138968,870,6013,Independent school,21,10,11,47.60%,52.40%,0,0.00%,4,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138970,925,2006,State-funded primary,418,217,201,51.90%,48.10%,19,4.50%,62,14.80%,47,371,0,11.20%,88.80%,0.00%,54,56,418,13.40% +138971,330,6013,Independent school,24,4,20,16.70%,83.30%,23,95.80%,1,4.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +138972,886,2015,State-funded primary,371,178,193,48.00%,52.00%,10,2.70%,62,16.70%,50,321,0,13.50%,86.50%,0.00%,215,215,338,63.60% +138973,383,2006,State-funded primary,298,153,145,51.30%,48.70%,0,0.00%,57,19.10%,131,167,0,44.00%,56.00%,0.00%,140,140,254,55.10% +138974,887,2002,State-funded primary,199,95,104,47.70%,52.30%,4,2.00%,27,13.60%,6,193,0,3.00%,97.00%,0.00%,58,61,181,33.70% +138975,812,2009,State-funded primary,393,190,203,48.30%,51.70%,9,2.30%,32,8.10%,11,381,1,2.80%,96.90%,0.30%,47,54,393,13.70% +138976,394,2000,State-funded primary,231,115,116,49.80%,50.20%,4,1.70%,55,23.80%,5,226,0,2.20%,97.80%,0.00%,104,103,187,55.10% +138977,358,2015,State-funded primary,306,136,170,44.40%,55.60%,36,11.80%,36,11.80%,39,267,0,12.70%,87.30%,0.00%,75,76,286,26.60% +138979,382,2012,State-funded primary,267,120,147,44.90%,55.10%,5,1.90%,60,22.50%,21,245,1,7.90%,91.80%,0.40%,113,114,236,48.30% +138982,860,2001,State-funded primary,591,291,300,49.20%,50.80%,7,1.20%,71,12.00%,467,124,0,79.00%,21.00%,0.00%,154,161,591,27.20% +138983,312,2001,State-funded primary,614,288,326,46.90%,53.10%,16,2.60%,79,12.90%,328,282,4,53.40%,45.90%,0.70%,191,182,551,33.00% +138985,800,4001,State-funded secondary,495,250,245,50.50%,49.50%,8,1.60%,89,18.00%,36,459,0,7.30%,92.70%,0.00%,150,160,495,32.30% +138986,383,2007,State-funded primary,444,225,219,50.70%,49.30%,4,0.90%,68,15.30%,262,173,9,59.00%,39.00%,2.00%,257,252,406,62.10% +138989,841,2005,State-funded primary,619,281,338,45.40%,54.60%,16,2.60%,146,23.60%,69,550,0,11.10%,88.90%,0.00%,300,305,567,53.80% +138990,839,2001,State-funded primary,449,215,234,47.90%,52.10%,12,2.70%,84,18.70%,86,356,7,19.20%,79.30%,1.60%,178,182,421,43.20% +138992,831,2010,State-funded primary,222,110,112,49.50%,50.50%,12,5.40%,34,15.30%,61,161,0,27.50%,72.50%,0.00%,112,115,203,56.70% +138993,873,2007,State-funded primary,394,193,201,49.00%,51.00%,10,2.50%,41,10.40%,72,322,0,18.30%,81.70%,0.00%,52,53,394,13.50% +138994,881,2030,State-funded primary,446,220,226,49.30%,50.70%,3,0.70%,76,17.00%,10,422,14,2.20%,94.60%,3.10%,137,143,397,36.00% +138995,391,2011,State-funded primary,440,209,231,47.50%,52.50%,11,2.50%,91,20.70%,100,340,0,22.70%,77.30%,0.00%,259,244,392,62.20% +138996,881,2031,State-funded primary,343,170,173,49.60%,50.40%,4,1.20%,37,10.80%,110,233,0,32.10%,67.90%,0.00%,104,107,318,33.60% +138997,891,2008,State-funded primary,202,99,103,49.00%,51.00%,1,0.50%,23,11.40%,22,180,0,10.90%,89.10%,0.00%,87,89,184,48.40% +138998,330,2075,State-funded primary,422,206,216,48.80%,51.20%,9,2.10%,69,16.40%,318,104,0,75.40%,24.60%,0.00%,224,226,396,57.10% +138999,855,2005,State-funded primary,405,202,203,49.90%,50.10%,3,0.70%,47,11.60%,104,294,7,25.70%,72.60%,1.70%,91,92,405,22.70% +139000,330,2078,State-funded primary,448,212,236,47.30%,52.70%,4,0.90%,37,8.30%,144,304,0,32.10%,67.90%,0.00%,129,127,414,30.70% +139001,885,2000,State-funded primary,413,199,214,48.20%,51.80%,4,1.00%,64,15.50%,147,266,0,35.60%,64.40%,0.00%,129,130,368,35.30% +139002,330,2080,State-funded primary,200,99,101,49.50%,50.50%,3,1.50%,49,24.50%,26,172,2,13.00%,86.00%,1.00%,136,152,200,76.00% +139003,330,2096,State-funded primary,559,272,287,48.70%,51.30%,8,1.40%,66,11.80%,196,361,2,35.10%,64.60%,0.40%,368,355,521,68.10% +139004,370,2015,State-funded primary,257,128,129,49.80%,50.20%,12,4.70%,23,8.90%,12,245,0,4.70%,95.30%,0.00%,62,63,257,24.50% +139005,855,2008,State-funded primary,328,154,174,47.00%,53.00%,55,16.80%,45,13.70%,59,269,0,18.00%,82.00%,0.00%,153,157,328,47.90% +139006,370,2016,State-funded primary,219,107,112,48.90%,51.10%,2,0.90%,29,13.20%,9,210,0,4.10%,95.90%,0.00%,75,76,208,36.50% +139007,334,2002,State-funded primary,242,114,128,47.10%,52.90%,8,3.30%,15,6.20%,39,203,0,16.10%,83.90%,0.00%,24,24,212,11.30% +139009,812,2010,State-funded primary,228,130,98,57.00%,43.00%,9,3.90%,31,13.60%,49,179,0,21.50%,78.50%,0.00%,108,111,206,53.90% +139011,330,2098,State-funded primary,223,115,108,51.60%,48.40%,4,1.80%,28,12.60%,71,150,2,31.80%,67.30%,0.90%,150,147,198,74.20% +139014,330,2100,State-funded primary,204,103,101,50.50%,49.50%,4,2.00%,52,25.50%,47,157,0,23.00%,77.00%,0.00%,111,108,190,56.80% +139015,383,2008,State-funded primary,468,219,249,46.80%,53.20%,0,0.00%,92,19.70%,262,202,4,56.00%,43.20%,0.90%,315,297,420,70.70% +139016,320,2033,State-funded primary,1245,612,633,49.20%,50.80%,60,4.80%,157,12.60%,620,625,0,49.80%,50.20%,0.00%,379,391,1033,37.90% +139017,350,6002,Independent school,137,77,60,56.20%,43.80%,0,0.00%,2,1.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139018,874,6004,Independent school,14,3,11,21.40%,78.60%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139019,878,2001,State-funded primary,333,166,167,49.80%,50.20%,14,4.20%,57,17.10%,75,258,0,22.50%,77.50%,0.00%,90,87,298,29.20% +139020,885,4009,State-funded secondary,641,324,317,50.50%,49.50%,9,1.40%,101,15.80%,82,559,0,12.80%,87.20%,0.00%,175,187,641,29.20% +139021,886,2017,State-funded primary,330,161,169,48.80%,51.20%,9,2.70%,48,14.50%,143,186,1,43.30%,56.40%,0.30%,218,225,330,68.20% +139023,865,2000,State-funded primary,143,70,73,49.00%,51.00%,2,1.40%,43,30.10%,11,132,0,7.70%,92.30%,0.00%,69,71,143,49.70% +139024,813,2000,State-funded primary,647,326,321,50.40%,49.60%,7,1.10%,113,17.50%,295,352,0,45.60%,54.40%,0.00%,276,274,608,45.10% +139025,813,2002,State-funded primary,330,175,155,53.00%,47.00%,0,0.00%,46,13.90%,57,273,0,17.30%,82.70%,0.00%,209,194,311,62.40% +139026,394,2020,State-funded primary,370,175,195,47.30%,52.70%,5,1.40%,18,4.90%,9,361,0,2.40%,97.60%,0.00%,23,23,280,8.20% +139027,852,2418,State-funded primary,560,269,291,48.00%,52.00%,14,2.50%,80,14.30%,65,495,0,11.60%,88.40%,0.00%,187,189,560,33.80% +139030,941,2150,State-funded primary,129,67,62,51.90%,48.10%,1,0.80%,19,14.70%,13,114,2,10.10%,88.40%,1.60%,15,15,117,12.80% +139031,344,4605,State-funded secondary,1615,720,895,44.60%,55.40%,37,2.30%,257,15.90%,132,1483,0,8.20%,91.80%,0.00%,444,444,1354,32.80% +139032,801,3408,State-funded primary,127,62,65,48.80%,51.20%,2,1.60%,30,23.60%,65,62,0,51.20%,48.80%,0.00%,73,73,127,57.50% +139033,801,3414,State-funded primary,208,98,110,47.10%,52.90%,3,1.40%,16,7.70%,113,95,0,54.30%,45.70%,0.00%,24,24,208,11.50% +139034,855,2194,State-funded primary,499,264,235,52.90%,47.10%,13,2.60%,57,11.40%,76,423,0,15.20%,84.80%,0.00%,64,65,499,13.00% +139035,813,2115,State-funded primary,236,123,113,52.10%,47.90%,6,2.50%,35,14.80%,3,233,0,1.30%,98.70%,0.00%,52,53,207,25.60% +139036,919,4096,State-funded secondary,1100,513,587,46.60%,53.40%,22,2.00%,142,12.90%,62,1038,0,5.60%,94.40%,0.00%,134,137,942,14.50% +139037,839,4189,State-funded secondary,504,272,232,54.00%,46.00%,16,3.20%,93,18.50%,64,436,4,12.70%,86.50%,0.80%,223,239,504,47.40% +139038,855,2169,State-funded primary,414,194,220,46.90%,53.10%,7,1.70%,46,11.10%,54,360,0,13.00%,87.00%,0.00%,48,50,414,12.10% +139039,941,2223,State-funded primary,418,196,222,46.90%,53.10%,4,1.00%,22,5.30%,37,372,9,8.90%,89.00%,2.20%,14,15,418,3.60% +139040,381,3322,State-funded primary,145,63,82,43.40%,56.60%,2,1.40%,15,10.30%,0,145,0,0.00%,100.00%,0.00%,7,7,145,4.80% +139041,330,3015,State-funded primary,421,240,181,57.00%,43.00%,2,0.50%,49,11.60%,214,205,2,50.80%,48.70%,0.50%,99,110,390,28.20% +139043,333,4129,State-funded secondary,1042,482,560,46.30%,53.70%,94,9.00%,135,13.00%,246,754,42,23.60%,72.40%,4.00%,349,378,1042,36.30% +139046,380,2012,State-funded primary,517,237,280,45.80%,54.20%,4,0.80%,59,11.40%,503,14,0,97.30%,2.70%,0.00%,186,191,450,42.40% +139047,330,4005,State-funded secondary,571,217,354,38.00%,62.00%,6,1.10%,88,15.40%,184,385,2,32.20%,67.40%,0.40%,318,370,571,64.80% +139048,330,4006,State-funded secondary,959,462,497,48.20%,51.80%,29,3.00%,190,19.80%,107,850,2,11.20%,88.60%,0.20%,458,542,888,61.00% +139049,801,4005,State-funded secondary,1154,587,567,50.90%,49.10%,24,2.10%,315,27.30%,189,965,0,16.40%,83.60%,0.00%,649,658,1096,60.00% +139050,801,2077,State-funded primary,388,195,193,50.30%,49.70%,10,2.60%,69,17.80%,280,108,0,72.20%,27.80%,0.00%,190,187,340,55.00% +139052,886,2018,State-funded primary,208,112,96,53.80%,46.20%,6,2.90%,46,22.10%,48,160,0,23.10%,76.90%,0.00%,93,95,198,48.00% +139053,888,2000,State-funded primary,413,200,213,48.40%,51.60%,12,2.90%,43,10.40%,264,149,0,63.90%,36.10%,0.00%,91,92,413,22.30% +139056,352,2016,State-funded primary,471,232,239,49.30%,50.70%,10,2.10%,60,12.70%,169,302,0,35.90%,64.10%,0.00%,278,254,407,62.40% +139057,826,2020,State-funded primary,258,123,135,47.70%,52.30%,3,1.20%,50,19.40%,66,192,0,25.60%,74.40%,0.00%,121,121,258,46.90% +139058,926,6911,State-funded secondary,781,369,412,47.20%,52.80%,20,2.60%,127,16.30%,26,755,0,3.30%,96.70%,0.00%,157,178,781,22.80% +139059,813,4000,State-funded secondary,856,413,443,48.20%,51.80%,15,1.80%,106,12.40%,87,767,2,10.20%,89.60%,0.20%,357,382,856,44.60% +139060,940,4009,State-funded secondary,1065,498,567,46.80%,53.20%,11,1.00%,149,14.00%,307,740,18,28.80%,69.50%,1.70%,283,290,962,30.10% +139061,941,2052,State-funded primary,296,150,146,50.70%,49.30%,3,1.00%,15,5.10%,121,175,0,40.90%,59.10%,0.00%,58,61,296,20.60% +139062,891,4014,State-funded secondary,726,386,340,53.20%,46.80%,4,0.60%,60,8.30%,14,712,0,1.90%,98.10%,0.00%,262,268,672,39.90% +139063,891,4015,State-funded secondary,817,421,396,51.50%,48.50%,12,1.50%,104,12.70%,83,733,1,10.20%,89.70%,0.10%,317,332,761,43.60% +139064,931,2004,State-funded primary,336,167,169,49.70%,50.30%,11,3.30%,65,19.30%,65,271,0,19.30%,80.70%,0.00%,65,63,297,21.20% +139065,851,2001,State-funded primary,389,190,199,48.80%,51.20%,5,1.30%,73,18.80%,26,363,0,6.70%,93.30%,0.00%,221,221,357,61.90% +139066,870,2011,State-funded primary,458,220,238,48.00%,52.00%,6,1.30%,28,6.10%,221,237,0,48.30%,51.70%,0.00%,99,96,418,23.00% +139067,803,4000,State-funded secondary,1175,538,637,45.80%,54.20%,48,4.10%,191,16.30%,174,1001,0,14.80%,85.20%,0.00%,206,207,1017,20.40% +139068,861,4002,State-funded secondary,1044,514,530,49.20%,50.80%,19,1.80%,180,17.20%,348,696,0,33.30%,66.70%,0.00%,300,352,1044,33.70% +139070,936,2011,State-funded primary,202,111,91,55.00%,45.00%,8,4.00%,35,17.30%,54,147,1,26.70%,72.80%,0.50%,91,94,202,46.50% +139071,861,6008,Independent school,215,102,113,47.40%,52.60%,4,1.90%,22,10.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139073,908,2002,State-funded primary,378,165,213,43.70%,56.30%,17,4.50%,67,17.70%,15,360,3,4.00%,95.20%,0.80%,128,127,344,36.90% +139075,886,4004,State-funded secondary,989,484,505,48.90%,51.10%,49,5.00%,30,3.00%,21,966,2,2.10%,97.70%,0.20%,155,184,903,20.40% +139076,382,4002,State-funded secondary,1013,487,526,48.10%,51.90%,20,2.00%,99,9.80%,165,836,12,16.30%,82.50%,1.20%,356,374,1013,36.90% +139077,383,2010,State-funded primary,455,237,218,52.10%,47.90%,2,0.40%,65,14.30%,237,218,0,52.10%,47.90%,0.00%,202,200,411,48.70% +139078,352,2018,State-funded primary,456,216,240,47.40%,52.60%,7,1.50%,60,13.20%,148,307,1,32.50%,67.30%,0.20%,271,251,405,62.00% +139079,931,7000,State-funded special school,104,30,74,28.80%,71.20%,104,100.00%,0,0.00%,14,90,0,13.50%,86.50%,0.00%,26,20,88,22.70% +139080,384,2003,State-funded primary,229,123,106,53.70%,46.30%,3,1.30%,13,5.70%,17,212,0,7.40%,92.60%,0.00%,23,23,203,11.30% +139081,869,2000,State-funded primary,231,106,125,45.90%,54.10%,11,4.80%,39,16.90%,59,170,2,25.50%,73.60%,0.90%,82,80,198,40.40% +139082,874,4003,State-funded secondary,845,399,446,47.20%,52.80%,16,1.90%,107,12.70%,392,428,25,46.40%,50.70%,3.00%,332,384,845,45.40% +139083,370,2122,State-funded primary,316,157,159,49.70%,50.30%,10,3.20%,37,11.70%,13,303,0,4.10%,95.90%,0.00%,85,85,290,29.30% +139084,370,2124,State-funded primary,248,119,129,48.00%,52.00%,9,3.60%,38,15.30%,6,242,0,2.40%,97.60%,0.00%,65,60,210,28.60% +139085,370,2125,State-funded primary,212,100,112,47.20%,52.80%,4,1.90%,31,14.60%,6,205,1,2.80%,96.70%,0.50%,40,43,212,20.30% +139086,873,2319,State-funded primary,317,161,156,50.80%,49.20%,8,2.50%,21,6.60%,47,257,13,14.80%,81.10%,4.10%,44,44,317,13.90% +139087,873,2318,State-funded primary,458,202,256,44.10%,55.90%,11,2.40%,39,8.50%,55,398,5,12.00%,86.90%,1.10%,50,52,458,11.40% +139088,873,2021,State-funded primary,106,59,47,55.70%,44.30%,2,1.90%,13,12.30%,5,100,1,4.70%,94.30%,0.90%,8,7,96,7.30% +139089,908,3878,State-funded primary,30,14,16,46.70%,53.30%,2,6.70%,3,10.00%,4,24,2,13.30%,80.00%,6.70%,12,11,27,40.70% +139090,908,3716,State-funded primary,42,27,15,64.30%,35.70%,1,2.40%,5,11.90%,2,40,0,4.80%,95.20%,0.00%,10,10,35,28.60% +139091,908,3892,State-funded primary,560,277,283,49.50%,50.50%,11,2.00%,57,10.20%,36,524,0,6.40%,93.60%,0.00%,122,122,527,23.10% +139092,908,3717,State-funded primary,48,21,27,43.80%,56.30%,0,0.00%,11,22.90%,1,47,0,2.10%,97.90%,0.00%,7,7,48,14.60% +139093,908,3714,State-funded primary,84,47,37,56.00%,44.00%,2,2.40%,4,4.80%,0,83,1,0.00%,98.80%,1.20%,18,19,84,22.60% +139094,306,3417,State-funded primary,474,229,245,48.30%,51.70%,28,5.90%,48,10.10%,192,282,0,40.50%,59.50%,0.00%,171,174,437,39.80% +139095,313,4024,State-funded secondary,891,890,1,99.90%,0.10%,14,1.60%,57,6.40%,466,422,3,52.30%,47.40%,0.30%,245,223,736,30.30% +139096,886,5209,State-funded primary,465,242,223,52.00%,48.00%,12,2.60%,24,5.20%,58,407,0,12.50%,87.50%,0.00%,23,24,465,5.20% +139097,855,3060,State-funded primary,200,98,102,49.00%,51.00%,2,1.00%,36,18.00%,18,182,0,9.00%,91.00%,0.00%,58,59,200,29.50% +139098,855,3334,State-funded primary,238,102,136,42.90%,57.10%,11,4.60%,46,19.30%,5,232,1,2.10%,97.50%,0.40%,25,25,238,10.50% +139099,926,7015,State-funded special school,52,0,52,0.00%,100.00%,52,100.00%,0,0.00%,0,50,2,0.00%,96.20%,3.80%,37,37,52,71.20% +139102,893,4387,State-funded secondary,549,266,283,48.50%,51.50%,45,8.20%,87,15.80%,32,512,5,5.80%,93.30%,0.90%,99,102,549,18.60% +139103,394,2338,State-funded primary,381,183,198,48.00%,52.00%,1,0.30%,56,14.70%,7,374,0,1.80%,98.20%,0.00%,166,168,350,48.00% +139104,883,2622,State-funded primary,483,238,245,49.30%,50.70%,19,3.90%,27,5.60%,141,341,1,29.20%,70.60%,0.20%,80,99,449,22.00% +139105,883,2542,State-funded primary,728,355,373,48.80%,51.20%,28,3.80%,46,6.30%,328,397,3,45.10%,54.50%,0.40%,143,155,656,23.60% +139106,883,2472,State-funded primary,665,324,341,48.70%,51.30%,25,3.80%,145,21.80%,112,552,1,16.80%,83.00%,0.20%,121,138,629,21.90% +139108,384,2080,State-funded primary,451,241,210,53.40%,46.60%,7,1.60%,40,8.90%,48,402,1,10.60%,89.10%,0.20%,56,58,406,14.30% +139109,938,4110,State-funded secondary,1075,442,633,41.10%,58.90%,52,4.80%,133,12.40%,76,999,0,7.10%,92.90%,0.00%,144,167,1075,15.50% +139110,807,7030,State-funded special school,168,43,125,25.60%,74.40%,168,100.00%,0,0.00%,5,163,0,3.00%,97.00%,0.00%,71,58,134,43.30% +139112,941,2063,State-funded primary,456,219,237,48.00%,52.00%,7,1.50%,35,7.70%,216,239,1,47.40%,52.40%,0.20%,116,117,413,28.30% +139113,941,2064,State-funded primary,364,174,190,47.80%,52.20%,7,1.90%,32,8.80%,77,287,0,21.20%,78.80%,0.00%,77,79,364,21.70% +139114,341,6005,State-funded AP school,30,12,18,40.00%,60.00%,24,80.00%,1,3.30%,0,30,0,0.00%,100.00%,0.00%,20,24,30,80.00% +139115,303,2021,State-funded primary,311,152,159,48.90%,51.10%,8,2.60%,35,11.30%,168,143,0,54.00%,46.00%,0.00%,121,126,311,40.50% +139116,801,2078,State-funded primary,302,139,163,46.00%,54.00%,6,2.00%,70,23.20%,68,232,2,22.50%,76.80%,0.70%,165,157,278,56.50% +139117,312,2002,State-funded primary,348,184,164,52.90%,47.10%,4,1.10%,32,9.20%,292,56,0,83.90%,16.10%,0.00%,93,102,309,33.00% +139118,810,4009,State-funded secondary,1375,718,657,52.20%,47.80%,15,1.10%,149,10.80%,122,1253,0,8.90%,91.10%,0.00%,374,425,1375,30.90% +139120,330,2102,State-funded primary,271,138,133,50.90%,49.10%,5,1.80%,41,15.10%,91,180,0,33.60%,66.40%,0.00%,110,104,242,43.00% +139124,393,2003,State-funded primary,448,206,242,46.00%,54.00%,13,2.90%,115,25.70%,32,416,0,7.10%,92.90%,0.00%,223,225,399,56.40% +139125,330,2103,State-funded primary,468,228,240,48.70%,51.30%,3,0.60%,110,23.50%,95,373,0,20.30%,79.70%,0.00%,218,207,418,49.50% +139126,330,2104,State-funded primary,332,174,158,52.40%,47.60%,5,1.50%,46,13.90%,243,89,0,73.20%,26.80%,0.00%,209,215,332,64.80% +139127,937,2011,State-funded primary,255,133,122,52.20%,47.80%,6,2.40%,43,16.90%,3,252,0,1.20%,98.80%,0.00%,62,64,255,25.10% +139128,330,2105,State-funded primary,417,200,217,48.00%,52.00%,12,2.90%,74,17.70%,224,189,4,53.70%,45.30%,1.00%,230,248,417,59.50% +139129,330,2107,State-funded primary,348,178,170,51.10%,48.90%,3,0.90%,65,18.70%,105,243,0,30.20%,69.80%,0.00%,202,219,348,62.90% +139130,888,4003,State-funded secondary,827,407,420,49.20%,50.80%,17,2.10%,91,11.00%,276,549,2,33.40%,66.40%,0.20%,255,271,827,32.80% +139131,330,2109,State-funded primary,335,156,179,46.60%,53.40%,5,1.50%,61,18.20%,106,229,0,31.60%,68.40%,0.00%,233,226,314,72.00% +139132,370,2022,State-funded primary,234,108,126,46.20%,53.80%,25,10.70%,42,17.90%,4,230,0,1.70%,98.30%,0.00%,104,104,206,50.50% +139133,373,2009,State-funded primary,734,379,355,51.60%,48.40%,11,1.50%,159,21.70%,96,638,0,13.10%,86.90%,0.00%,383,357,617,57.90% +139134,373,2010,State-funded primary,313,149,164,47.60%,52.40%,25,8.00%,65,20.80%,22,291,0,7.00%,93.00%,0.00%,167,152,280,54.30% +139136,370,2023,State-funded primary,353,173,180,49.00%,51.00%,11,3.10%,51,14.40%,63,283,7,17.80%,80.20%,2.00%,138,141,314,44.90% +139137,373,2012,State-funded primary,450,228,222,50.70%,49.30%,8,1.80%,93,20.70%,37,413,0,8.20%,91.80%,0.00%,250,236,399,59.10% +139138,336,5402,State-funded secondary,1251,607,644,48.50%,51.50%,44,3.50%,171,13.70%,377,873,1,30.10%,69.80%,0.10%,505,484,1053,46.00% +139139,895,4801,State-funded secondary,1235,628,607,50.90%,49.10%,38,3.10%,146,11.80%,164,1071,0,13.30%,86.70%,0.00%,160,165,1035,15.90% +139140,925,4022,State-funded secondary,833,792,41,95.10%,4.90%,2,0.20%,59,7.10%,181,652,0,21.70%,78.30%,0.00%,84,65,574,11.30% +139142,925,2122,State-funded primary,77,35,42,45.50%,54.50%,0,0.00%,9,11.70%,36,41,0,46.80%,53.20%,0.00%,8,10,53,18.90% +139143,893,4500,State-funded secondary,572,283,289,49.50%,50.50%,6,1.00%,53,9.30%,4,568,0,0.70%,99.30%,0.00%,71,84,572,14.70% +139144,344,5400,State-funded secondary,1530,67,1463,4.40%,95.60%,2,0.10%,93,6.10%,64,1462,4,4.20%,95.60%,0.30%,109,97,1119,8.70% +139146,931,4120,State-funded secondary,1694,843,851,49.80%,50.20%,48,2.80%,298,17.60%,607,1079,8,35.80%,63.70%,0.50%,350,352,1433,24.60% +139147,838,2201,State-funded primary,408,184,224,45.10%,54.90%,15,3.70%,50,12.30%,7,398,3,1.70%,97.50%,0.70%,83,83,408,20.30% +139148,352,4281,State-funded secondary,1503,655,846,43.60%,56.30%,52,3.50%,310,20.60%,356,1147,0,23.70%,76.30%,0.00%,408,438,1503,29.10% +139149,935,3312,State-funded primary,98,44,54,44.90%,55.10%,2,2.00%,26,26.50%,7,91,0,7.10%,92.90%,0.00%,19,19,98,19.40% +139150,916,2061,State-funded primary,368,167,201,45.40%,54.60%,12,3.30%,100,27.20%,59,284,25,16.00%,77.20%,6.80%,104,108,368,29.30% +139151,936,5403,State-funded secondary,946,427,519,45.10%,54.90%,26,2.70%,99,10.50%,132,814,0,14.00%,86.00%,0.00%,28,25,623,4.00% +139152,877,4206,State-funded secondary,2124,1015,1109,47.80%,52.20%,26,1.20%,139,6.50%,241,1880,3,11.30%,88.50%,0.10%,184,191,1885,10.10% +139153,881,4026,State-funded secondary,1141,590,551,51.70%,48.30%,33,2.90%,219,19.20%,18,1123,0,1.60%,98.40%,0.00%,151,161,973,16.50% +139154,919,4008,State-funded secondary,1307,1,1306,0.10%,99.90%,20,1.50%,211,16.10%,123,1178,6,9.40%,90.10%,0.50%,84,99,1048,9.40% +139155,908,4009,State-funded secondary,1389,657,732,47.30%,52.70%,61,4.40%,156,11.20%,62,1313,14,4.50%,94.50%,1.00%,262,290,1266,22.90% +139158,941,4550,State-funded secondary,1432,719,713,50.20%,49.80%,12,0.80%,109,7.60%,40,1392,0,2.80%,97.20%,0.00%,108,127,1199,10.60% +139159,919,2099,State-funded primary,429,235,194,54.80%,45.20%,11,2.60%,68,15.90%,158,271,0,36.80%,63.20%,0.00%,93,101,403,25.10% +139160,822,4085,State-funded secondary,1298,630,668,48.50%,51.50%,44,3.40%,188,14.50%,188,1108,2,14.50%,85.40%,0.20%,254,256,1135,22.60% +139162,330,2458,State-funded primary,679,351,328,51.70%,48.30%,7,1.00%,54,8.00%,548,130,1,80.70%,19.10%,0.10%,299,304,628,48.40% +139164,825,3326,State-funded primary,215,104,111,48.40%,51.60%,2,0.90%,13,6.00%,18,196,1,8.40%,91.20%,0.50%,4,5,215,2.30% +139165,916,5216,State-funded primary,261,125,136,47.90%,52.10%,20,7.70%,81,31.00%,16,244,1,6.10%,93.50%,0.40%,103,103,244,42.20% +139166,883,2985,State-funded primary,434,203,231,46.80%,53.20%,12,2.80%,59,13.60%,140,294,0,32.30%,67.70%,0.00%,127,132,413,32.00% +139167,373,4229,State-funded secondary,1450,734,716,50.60%,49.40%,42,2.90%,110,7.60%,268,1147,35,18.50%,79.10%,2.40%,169,136,1017,13.40% +139169,309,3304,State-funded primary,212,107,105,50.50%,49.50%,7,3.30%,26,12.30%,123,89,0,58.00%,42.00%,0.00%,94,96,181,53.00% +139170,916,5213,State-funded primary,269,132,137,49.10%,50.90%,9,3.30%,41,15.20%,13,256,0,4.80%,95.20%,0.00%,61,61,269,22.70% +139171,860,4613,State-funded secondary,723,345,378,47.70%,52.30%,14,1.90%,102,14.10%,12,710,1,1.70%,98.20%,0.10%,112,124,723,17.20% +139173,330,3306,State-funded primary,471,235,236,49.90%,50.10%,15,3.20%,134,28.50%,391,80,0,83.00%,17.00%,0.00%,149,153,420,36.40% +139174,330,3311,State-funded primary,433,220,213,50.80%,49.20%,3,0.70%,102,23.60%,72,360,1,16.60%,83.10%,0.20%,202,195,399,48.90% +139175,309,3307,State-funded primary,138,68,70,49.30%,50.70%,3,2.20%,11,8.00%,52,86,0,37.70%,62.30%,0.00%,59,60,126,47.60% +139176,309,3300,State-funded primary,104,58,46,55.80%,44.20%,2,1.90%,10,9.60%,90,14,0,86.50%,13.50%,0.00%,26,31,83,37.30% +139177,309,3308,State-funded primary,126,59,67,46.80%,53.20%,7,5.60%,11,8.70%,102,24,0,81.00%,19.00%,0.00%,46,66,126,52.40% +139178,925,3077,State-funded primary,302,156,146,51.70%,48.30%,7,2.30%,17,5.60%,31,271,0,10.30%,89.70%,0.00%,45,45,302,14.90% +139179,881,4470,State-funded secondary,963,465,498,48.30%,51.70%,22,2.30%,203,21.10%,63,899,1,6.50%,93.40%,0.10%,200,245,883,27.70% +139180,925,5424,State-funded secondary,848,48,800,5.70%,94.30%,6,0.70%,63,7.40%,247,601,0,29.10%,70.90%,0.00%,84,76,642,11.80% +139181,881,5407,State-funded secondary,1160,564,596,48.60%,51.40%,55,4.70%,177,15.30%,58,1102,0,5.00%,95.00%,0.00%,222,259,1087,23.80% +139182,381,5401,State-funded secondary,1147,524,623,45.70%,54.30%,4,0.30%,11,1.00%,285,841,21,24.80%,73.30%,1.80%,130,92,902,10.20% +139183,330,2064,State-funded primary,422,209,213,49.50%,50.50%,4,0.90%,41,9.70%,123,299,0,29.10%,70.90%,0.00%,195,190,391,48.60% +139184,394,4073,State-funded secondary,892,471,421,52.80%,47.20%,14,1.60%,110,12.30%,7,885,0,0.80%,99.20%,0.00%,246,266,892,29.80% +139185,885,4579,State-funded secondary,650,319,331,49.10%,50.90%,18,2.80%,78,12.00%,40,610,0,6.20%,93.80%,0.00%,98,110,650,16.90% +139186,886,2307,State-funded primary,437,209,228,47.80%,52.20%,6,1.40%,25,5.70%,7,422,8,1.60%,96.60%,1.80%,158,162,437,37.10% +139187,925,3158,State-funded primary,381,196,185,51.40%,48.60%,12,3.10%,33,8.70%,21,360,0,5.50%,94.50%,0.00%,74,77,381,20.20% +139189,884,4014,State-funded secondary,940,444,496,47.20%,52.80%,27,2.90%,150,16.00%,84,851,5,8.90%,90.50%,0.50%,134,150,940,16.00% +139191,925,2237,State-funded primary,369,182,187,49.30%,50.70%,9,2.40%,44,11.90%,261,108,0,70.70%,29.30%,0.00%,96,99,369,26.80% +139193,936,5400,State-funded secondary,1208,581,627,48.10%,51.90%,29,2.40%,151,12.50%,220,986,2,18.20%,81.60%,0.20%,92,94,912,10.30% +139194,855,2010,State-funded primary,200,105,95,52.50%,47.50%,4,2.00%,35,17.50%,7,193,0,3.50%,96.50%,0.00%,33,34,200,17.00% +139195,841,2006,State-funded primary,313,165,148,52.70%,47.30%,9,2.90%,78,24.90%,41,272,0,13.10%,86.90%,0.00%,176,181,297,60.90% +139196,877,4002,State-funded secondary,898,445,453,49.60%,50.40%,37,4.10%,117,13.00%,103,795,0,11.50%,88.50%,0.00%,337,367,898,40.90% +139197,919,1106,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139198,871,2001,State-funded primary,470,230,240,48.90%,51.10%,6,1.30%,64,13.60%,311,120,39,66.20%,25.50%,8.30%,94,98,419,23.40% +139199,336,2006,State-funded primary,475,231,244,48.60%,51.40%,4,0.80%,54,11.40%,257,217,1,54.10%,45.70%,0.20%,234,234,420,55.70% +139200,855,2011,State-funded primary,159,77,82,48.40%,51.60%,1,0.60%,19,11.90%,9,150,0,5.70%,94.30%,0.00%,56,59,159,37.10% +139201,380,2013,State-funded primary,205,114,91,55.60%,44.40%,6,2.90%,40,19.50%,34,171,0,16.60%,83.40%,0.00%,112,105,181,58.00% +139205,802,2000,State-funded primary,149,65,84,43.60%,56.40%,4,2.70%,20,13.40%,8,141,0,5.40%,94.60%,0.00%,36,39,149,26.20% +139207,866,2013,State-funded primary,251,123,128,49.00%,51.00%,7,2.80%,32,12.70%,75,176,0,29.90%,70.10%,0.00%,83,85,207,41.10% +139210,370,4002,State-funded secondary,1094,494,600,45.20%,54.80%,77,7.00%,109,10.00%,39,1053,2,3.60%,96.30%,0.20%,368,421,1094,38.50% +139211,370,4003,State-funded secondary,1367,681,686,49.80%,50.20%,28,2.00%,123,9.00%,57,1310,0,4.20%,95.80%,0.00%,454,522,1367,38.20% +139212,303,2022,State-funded primary,577,296,281,51.30%,48.70%,22,3.80%,55,9.50%,130,447,0,22.50%,77.50%,0.00%,116,124,577,21.50% +139213,303,2023,State-funded primary,197,95,102,48.20%,51.80%,5,2.50%,27,13.70%,66,131,0,33.50%,66.50%,0.00%,62,64,197,32.50% +139214,330,2110,State-funded primary,483,249,234,51.60%,48.40%,3,0.60%,80,16.60%,353,130,0,73.10%,26.90%,0.00%,226,253,419,60.40% +139215,891,2012,State-funded primary,281,136,145,48.40%,51.60%,2,0.70%,35,12.50%,11,269,1,3.90%,95.70%,0.40%,71,73,253,28.90% +139217,892,3311,State-funded primary,241,119,122,49.40%,50.60%,0,0.00%,32,13.30%,78,163,0,32.40%,67.60%,0.00%,78,73,209,34.90% +139219,821,2251,State-funded primary,260,126,134,48.50%,51.50%,7,2.70%,41,15.80%,128,132,0,49.20%,50.80%,0.00%,73,73,260,28.10% +139221,211,6005,Independent school,338,134,204,39.60%,60.40%,2,0.60%,3,0.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139223,372,2001,State-funded primary,221,100,121,45.20%,54.80%,4,1.80%,20,9.00%,131,90,0,59.30%,40.70%,0.00%,106,106,197,53.80% +139225,372,2002,State-funded primary,297,151,146,50.80%,49.20%,3,1.00%,52,17.50%,101,195,1,34.00%,65.70%,0.30%,157,163,285,57.20% +139226,861,2004,State-funded primary,197,98,99,49.70%,50.30%,4,2.00%,33,16.80%,50,147,0,25.40%,74.60%,0.00%,92,85,182,46.70% +139228,861,2006,State-funded primary,447,233,214,52.10%,47.90%,13,2.90%,78,17.40%,38,409,0,8.50%,91.50%,0.00%,278,270,421,64.10% +139229,380,2014,State-funded primary,346,178,168,51.40%,48.60%,7,2.00%,60,17.30%,57,289,0,16.50%,83.50%,0.00%,202,190,310,61.30% +139230,370,2026,State-funded primary,213,101,112,47.40%,52.60%,6,2.80%,21,9.90%,70,134,9,32.90%,62.90%,4.20%,55,57,199,28.60% +139232,892,2004,State-funded primary,448,228,220,50.90%,49.10%,3,0.70%,79,17.60%,266,182,0,59.40%,40.60%,0.00%,182,185,407,45.50% +139234,860,6906,State-funded secondary,812,153,659,18.80%,81.20%,20,2.50%,133,16.40%,18,794,0,2.20%,97.80%,0.00%,94,92,594,15.50% +139235,925,6004,Independent school,117,60,57,51.30%,48.70%,1,0.90%,26,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139239,213,6000,Independent school,280,139,141,49.60%,50.40%,2,0.70%,25,8.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139240,309,2037,State-funded primary,185,95,90,51.40%,48.60%,8,4.30%,29,15.70%,82,103,0,44.30%,55.70%,0.00%,74,67,163,41.10% +139241,884,6008,State-funded primary,77,42,35,54.50%,45.50%,0,0.00%,10,13.00%,1,76,0,1.30%,98.70%,0.00%,14,15,77,19.50% +139242,330,2117,State-funded primary,242,107,135,44.20%,55.80%,0,0.00%,21,8.70%,212,30,0,87.60%,12.40%,0.00%,88,82,192,42.70% +139247,801,2082,State-funded primary,150,78,72,52.00%,48.00%,2,1.30%,36,24.00%,38,112,0,25.30%,74.70%,0.00%,84,77,133,57.90% +139248,881,4008,State-funded secondary,783,366,417,46.70%,53.30%,23,2.90%,77,9.80%,22,761,0,2.80%,97.20%,0.00%,178,192,783,24.50% +139252,881,2032,State-funded primary,79,40,39,50.60%,49.40%,4,5.10%,14,17.70%,0,79,0,0.00%,100.00%,0.00%,14,15,79,19.00% +139254,886,2019,State-funded primary,454,225,229,49.60%,50.40%,10,2.20%,65,14.30%,259,195,0,57.00%,43.00%,0.00%,176,178,403,44.20% +139255,886,2020,State-funded primary,200,96,104,48.00%,52.00%,3,1.50%,41,20.50%,30,170,0,15.00%,85.00%,0.00%,87,90,200,45.00% +139258,839,4003,State-funded secondary,600,276,324,46.00%,54.00%,26,4.30%,105,17.50%,71,529,0,11.80%,88.20%,0.00%,230,250,600,41.70% +139259,320,2034,State-funded primary,284,142,142,50.00%,50.00%,18,6.30%,41,14.40%,180,104,0,63.40%,36.60%,0.00%,103,111,284,39.10% +139260,865,2010,State-funded primary,269,120,149,44.60%,55.40%,45,16.70%,62,23.00%,27,240,2,10.00%,89.20%,0.70%,125,105,220,47.70% +139263,352,2019,State-funded primary,476,228,248,47.90%,52.10%,31,6.50%,80,16.80%,74,402,0,15.50%,84.50%,0.00%,323,285,402,70.90% +139264,925,6005,Independent school,84,24,60,28.60%,71.40%,83,98.80%,1,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139265,852,7050,State-funded special school,65,29,36,44.60%,55.40%,57,87.70%,8,12.30%,17,48,0,26.20%,73.80%,0.00%,12,8,46,17.40% +139266,925,2007,State-funded primary,56,26,30,46.40%,53.60%,4,7.10%,13,23.20%,1,55,0,1.80%,98.20%,0.00%,23,23,56,41.10% +139267,330,2120,State-funded primary,212,99,113,46.70%,53.30%,4,1.90%,39,18.40%,113,99,0,53.30%,46.70%,0.00%,110,118,212,55.70% +139268,870,4000,State-funded secondary,489,112,377,22.90%,77.10%,11,2.20%,117,23.90%,95,393,1,19.40%,80.40%,0.20%,50,45,244,18.40% +139269,330,2121,State-funded primary,230,122,108,53.00%,47.00%,2,0.90%,50,21.70%,28,202,0,12.20%,87.80%,0.00%,162,146,200,73.00% +139270,381,2002,State-funded primary,328,150,178,45.70%,54.30%,9,2.70%,61,18.60%,212,116,0,64.60%,35.40%,0.00%,134,137,299,45.80% +139272,873,4003,State-funded secondary,1333,664,669,49.80%,50.20%,32,2.40%,183,13.70%,110,1222,1,8.30%,91.70%,0.10%,406,420,1224,34.30% +139273,850,2029,State-funded primary,436,207,229,47.50%,52.50%,14,3.20%,84,19.30%,13,422,1,3.00%,96.80%,0.20%,270,250,393,63.60% +139274,336,2007,State-funded primary,415,198,217,47.70%,52.30%,9,2.20%,40,9.60%,220,190,5,53.00%,45.80%,1.20%,147,148,415,35.70% +139275,312,2017,State-funded primary,362,172,190,47.50%,52.50%,9,2.50%,91,25.10%,207,152,3,57.20%,42.00%,0.80%,139,122,298,40.90% +139276,313,4001,State-funded secondary,881,443,438,50.30%,49.70%,31,3.50%,115,13.10%,688,193,0,78.10%,21.90%,0.00%,258,242,763,31.70% +139277,813,4001,State-funded secondary,772,395,377,51.20%,48.80%,21,2.70%,143,18.50%,85,686,1,11.00%,88.90%,0.10%,298,316,772,40.90% +139278,933,2000,State-funded primary,479,233,246,48.60%,51.40%,13,2.70%,68,14.20%,29,449,1,6.10%,93.70%,0.20%,187,191,411,46.50% +139279,384,2004,State-funded primary,484,229,255,47.30%,52.70%,16,3.30%,64,13.20%,111,373,0,22.90%,77.10%,0.00%,156,164,413,39.70% +139280,384,2005,State-funded primary,261,128,133,49.00%,51.00%,7,2.70%,37,14.20%,218,43,0,83.50%,16.50%,0.00%,54,54,209,25.80% +139281,865,2011,State-funded primary,113,52,61,46.00%,54.00%,5,4.40%,35,31.00%,26,87,0,23.00%,77.00%,0.00%,54,54,113,47.80% +139284,855,2085,State-funded primary,379,190,189,50.10%,49.90%,4,1.10%,51,13.50%,14,365,0,3.70%,96.30%,0.00%,71,72,379,19.00% +139286,885,5404,State-funded secondary,669,327,342,48.90%,51.10%,16,2.40%,77,11.50%,16,653,0,2.40%,97.60%,0.00%,150,166,669,24.80% +139287,855,2382,State-funded primary,212,105,107,49.50%,50.50%,4,1.90%,31,14.60%,19,193,0,9.00%,91.00%,0.00%,26,29,212,13.70% +139288,935,4095,State-funded secondary,1027,485,542,47.20%,52.80%,33,3.20%,151,14.70%,301,724,2,29.30%,70.50%,0.20%,316,354,1027,34.50% +139289,879,2702,State-funded primary,232,118,114,50.90%,49.10%,1,0.40%,31,13.40%,7,225,0,3.00%,97.00%,0.00%,52,52,208,25.00% +139290,888,4140,State-funded secondary,545,271,274,49.70%,50.30%,8,1.50%,50,9.20%,20,525,0,3.70%,96.30%,0.00%,170,177,545,32.50% +139291,916,2046,State-funded primary,290,142,148,49.00%,51.00%,1,0.30%,45,15.50%,33,255,2,11.40%,87.90%,0.70%,46,46,290,15.90% +139292,331,4028,State-funded secondary,1570,768,802,48.90%,51.10%,32,2.00%,222,14.10%,255,1315,0,16.20%,83.80%,0.00%,236,239,1234,19.40% +139293,320,4061,State-funded secondary,619,619,0,100.00%,0.00%,8,1.30%,39,6.30%,150,469,0,24.20%,75.80%,0.00%,169,203,619,32.80% +139294,357,4011,State-funded secondary,603,371,232,61.50%,38.50%,6,1.00%,131,21.70%,45,545,13,7.50%,90.40%,2.20%,232,271,603,44.90% +139295,312,2011,State-funded primary,286,121,165,42.30%,57.70%,30,10.50%,35,12.20%,62,224,0,21.70%,78.30%,0.00%,65,86,286,30.10% +139296,925,2157,State-funded primary,93,49,44,52.70%,47.30%,3,3.20%,20,21.50%,0,93,0,0.00%,100.00%,0.00%,20,21,93,22.60% +139297,373,2305,State-funded primary,224,124,100,55.40%,44.60%,2,0.90%,27,12.10%,16,208,0,7.10%,92.90%,0.00%,125,117,193,60.60% +139298,931,2053,State-funded primary,434,224,210,51.60%,48.40%,8,1.80%,80,18.40%,123,310,1,28.30%,71.40%,0.20%,121,126,404,31.20% +139299,879,2691,State-funded primary,212,98,114,46.20%,53.80%,4,1.90%,18,8.50%,2,209,1,0.90%,98.60%,0.50%,18,19,212,9.00% +139300,359,3436,State-funded primary,485,237,248,48.90%,51.10%,5,1.00%,45,9.30%,66,419,0,13.60%,86.40%,0.00%,228,204,402,50.70% +139302,312,3306,State-funded primary,414,214,200,51.70%,48.30%,4,1.00%,46,11.10%,210,195,9,50.70%,47.10%,2.20%,93,94,389,24.20% +139303,865,2193,State-funded primary,233,119,114,51.10%,48.90%,29,12.40%,44,18.90%,4,227,2,1.70%,97.40%,0.90%,37,42,233,18.00% +139304,925,4603,State-funded secondary,966,79,887,8.20%,91.80%,6,0.60%,60,6.20%,81,885,0,8.40%,91.60%,0.00%,70,62,704,8.80% +139305,335,2104,State-funded primary,390,198,192,50.80%,49.20%,8,2.10%,72,18.50%,59,331,0,15.10%,84.90%,0.00%,237,234,355,65.90% +139306,312,3410,State-funded primary,428,215,213,50.20%,49.80%,11,2.60%,39,9.10%,134,281,13,31.30%,65.70%,3.00%,114,122,398,30.70% +139307,311,4042,State-funded secondary,998,512,486,51.30%,48.70%,41,4.10%,100,10.00%,134,862,2,13.40%,86.40%,0.20%,307,334,998,33.50% +139308,884,3015,State-funded primary,73,39,34,53.40%,46.60%,2,2.70%,10,13.70%,0,73,0,0.00%,100.00%,0.00%,10,11,73,15.10% +139309,886,3148,State-funded primary,422,229,193,54.30%,45.70%,11,2.60%,66,15.60%,99,320,3,23.50%,75.80%,0.70%,197,199,422,47.20% +139310,886,3349,State-funded primary,449,221,228,49.20%,50.80%,12,2.70%,70,15.60%,21,428,0,4.70%,95.30%,0.00%,144,145,397,36.50% +139311,926,4006,State-funded secondary,658,339,319,51.50%,48.50%,12,1.80%,75,11.40%,19,639,0,2.90%,97.10%,0.00%,109,130,658,19.80% +139312,931,7018,State-funded special school,182,55,127,30.20%,69.80%,182,100.00%,0,0.00%,9,173,0,4.90%,95.10%,0.00%,83,68,146,46.60% +139313,884,3351,State-funded primary,79,39,40,49.40%,50.60%,3,3.80%,7,8.90%,2,77,0,2.50%,97.50%,0.00%,19,19,79,24.10% +139314,393,2037,State-funded primary,165,74,91,44.80%,55.20%,1,0.60%,23,13.90%,4,161,0,2.40%,97.60%,0.00%,78,80,123,65.00% +139315,886,3348,State-funded primary,212,118,94,55.70%,44.30%,3,1.40%,28,13.20%,47,165,0,22.20%,77.80%,0.00%,53,53,212,25.00% +139316,925,7029,State-funded special school,78,8,70,10.30%,89.70%,78,100.00%,0,0.00%,0,75,3,0.00%,96.20%,3.80%,41,56,78,71.80% +139317,320,2081,State-funded primary,402,183,218,45.50%,54.20%,11,2.70%,29,7.20%,166,236,0,41.30%,58.70%,0.00%,115,120,375,32.00% +139318,808,4023,State-funded secondary,1401,712,689,50.80%,49.20%,26,1.90%,173,12.30%,172,1229,0,12.30%,87.70%,0.00%,243,237,1141,20.80% +139319,304,5410,State-funded secondary,1966,929,1037,47.30%,52.70%,70,3.60%,174,8.90%,1280,607,79,65.10%,30.90%,4.00%,445,439,1685,26.10% +139320,822,1104,State-funded AP school,40,13,27,32.50%,67.50%,21,52.50%,19,47.50%,3,37,0,7.50%,92.50%,0.00%,21,22,40,55.00% +139322,931,7027,State-funded special school,119,48,71,40.30%,59.70%,119,100.00%,0,0.00%,7,112,0,5.90%,94.10%,0.00%,43,42,98,42.90% +139324,933,2002,State-funded primary,485,241,244,49.70%,50.30%,10,2.10%,60,12.40%,187,298,0,38.60%,61.40%,0.00%,156,160,399,40.10% +139325,940,2089,State-funded primary,214,100,114,46.70%,53.30%,8,3.70%,37,17.30%,52,161,1,24.30%,75.20%,0.50%,107,109,214,50.90% +139326,892,2005,State-funded primary,183,85,98,46.40%,53.60%,1,0.50%,23,12.60%,35,146,2,19.10%,79.80%,1.10%,87,91,166,54.80% +139329,840,6013,Independent school,51,7,44,13.70%,86.30%,51,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139331,209,6000,Independent school,21,9,12,42.90%,57.10%,0,0.00%,3,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139332,925,2008,State-funded primary,170,91,79,53.50%,46.50%,8,4.70%,43,25.30%,8,162,0,4.70%,95.30%,0.00%,127,130,170,76.50% +139333,871,2002,State-funded primary,753,351,402,46.60%,53.40%,8,1.10%,77,10.20%,542,211,0,72.00%,28.00%,0.00%,127,128,687,18.60% +139334,373,4003,State-funded secondary,1149,565,584,49.20%,50.80%,24,2.10%,131,11.40%,412,737,0,35.90%,64.10%,0.00%,569,618,1149,53.80% +139336,373,2013,State-funded primary,472,228,244,48.30%,51.70%,9,1.90%,157,33.30%,83,389,0,17.60%,82.40%,0.00%,323,273,370,73.80% +139337,916,2009,State-funded primary,273,132,141,48.40%,51.60%,11,4.00%,62,22.70%,15,258,0,5.50%,94.50%,0.00%,47,49,273,17.90% +139338,933,2003,State-funded primary,401,198,203,49.40%,50.60%,10,2.50%,74,18.50%,56,345,0,14.00%,86.00%,0.00%,108,108,401,26.90% +139340,855,2004,State-funded primary,186,107,79,57.50%,42.50%,2,1.10%,27,14.50%,5,181,0,2.70%,97.30%,0.00%,23,23,186,12.40% +139341,855,2185,State-funded primary,370,181,189,48.90%,51.10%,2,0.50%,44,11.90%,44,326,0,11.90%,88.10%,0.00%,89,91,370,24.60% +139342,855,2018,State-funded primary,139,54,85,38.80%,61.20%,4,2.90%,9,6.50%,1,138,0,0.70%,99.30%,0.00%,3,3,139,2.20% +139343,896,4603,State-funded secondary,816,407,409,49.90%,50.10%,25,3.10%,135,16.50%,144,671,1,17.60%,82.20%,0.10%,153,150,667,22.50% +139344,855,2358,State-funded primary,278,140,138,50.40%,49.60%,8,2.90%,39,14.00%,6,271,1,2.20%,97.50%,0.40%,30,31,278,11.20% +139345,803,4148,State-funded secondary,1361,644,717,47.30%,52.70%,27,2.00%,108,7.90%,79,1281,1,5.80%,94.10%,0.10%,124,133,1200,11.10% +139346,373,5203,State-funded primary,224,105,119,46.90%,53.10%,3,1.30%,30,13.40%,64,160,0,28.60%,71.40%,0.00%,32,33,205,16.10% +139347,373,5207,State-funded primary,319,156,163,48.90%,51.10%,5,1.60%,27,8.50%,122,197,0,38.20%,61.80%,0.00%,98,90,282,31.90% +139348,803,4120,State-funded secondary,1520,757,763,49.80%,50.20%,40,2.60%,107,7.00%,169,1350,1,11.10%,88.80%,0.10%,156,163,1241,13.10% +139349,855,3432,State-funded primary,412,212,200,51.50%,48.50%,11,2.70%,45,10.90%,26,386,0,6.30%,93.70%,0.00%,110,110,412,26.70% +139350,383,3361,State-funded primary,327,163,164,49.80%,50.20%,2,0.60%,49,15.00%,28,299,0,8.60%,91.40%,0.00%,22,22,302,7.30% +139351,383,4601,State-funded secondary,1228,608,620,49.50%,50.50%,13,1.10%,103,8.40%,75,1153,0,6.10%,93.90%,0.00%,65,67,1007,6.70% +139352,383,3359,State-funded primary,209,112,97,53.60%,46.40%,2,1.00%,21,10.00%,16,193,0,7.70%,92.30%,0.00%,10,10,209,4.80% +139353,380,3368,State-funded primary,130,73,57,56.20%,43.80%,3,2.30%,11,8.50%,8,122,0,6.20%,93.80%,0.00%,7,9,130,6.90% +139354,383,3363,State-funded primary,209,106,103,50.70%,49.30%,0,0.00%,19,9.10%,1,208,0,0.50%,99.50%,0.00%,12,12,209,5.70% +139355,383,3360,State-funded primary,200,83,117,41.50%,58.50%,0,0.00%,28,14.00%,13,187,0,6.50%,93.50%,0.00%,15,15,200,7.50% +139356,382,2060,State-funded primary,188,97,91,51.60%,48.40%,2,1.10%,33,17.60%,13,175,0,6.90%,93.10%,0.00%,56,58,188,30.90% +139357,382,2124,State-funded primary,177,83,94,46.90%,53.10%,3,1.70%,36,20.30%,19,158,0,10.70%,89.30%,0.00%,100,104,164,63.40% +139358,380,2178,State-funded primary,402,219,183,54.50%,45.50%,10,2.50%,43,10.70%,4,398,0,1.00%,99.00%,0.00%,63,64,402,15.90% +139359,384,2178,State-funded primary,405,190,215,46.90%,53.10%,25,6.20%,83,20.50%,16,389,0,4.00%,96.00%,0.00%,98,100,405,24.70% +139360,881,3211,State-funded primary,427,205,222,48.00%,52.00%,6,1.40%,50,11.70%,8,419,0,1.90%,98.10%,0.00%,42,43,387,11.10% +139361,925,2207,State-funded primary,203,114,89,56.20%,43.80%,8,3.90%,33,16.30%,19,184,0,9.40%,90.60%,0.00%,131,133,203,65.50% +139362,309,4703,State-funded secondary,1300,593,707,45.60%,54.40%,38,2.90%,173,13.30%,335,936,29,25.80%,72.00%,2.20%,282,350,1043,33.60% +139364,205,4106,State-funded secondary,554,187,367,33.80%,66.20%,12,2.20%,75,13.50%,232,310,12,41.90%,56.00%,2.20%,197,199,429,46.40% +139365,205,4315,State-funded secondary,583,583,0,100.00%,0.00%,15,2.60%,96,16.50%,246,330,7,42.20%,56.60%,1.20%,216,252,583,43.20% +139366,855,2374,State-funded primary,374,174,200,46.50%,53.50%,7,1.90%,67,17.90%,187,187,0,50.00%,50.00%,0.00%,163,171,374,45.70% +139367,825,4082,State-funded secondary,848,442,406,52.10%,47.90%,22,2.60%,115,13.60%,88,757,3,10.40%,89.30%,0.40%,145,147,741,19.80% +139368,876,4207,State-funded secondary,1594,797,797,50.00%,50.00%,31,1.90%,107,6.70%,57,1537,0,3.60%,96.40%,0.00%,410,427,1594,26.80% +139369,213,4809,State-funded secondary,1110,500,610,45.00%,55.00%,28,2.50%,149,13.40%,330,779,1,29.70%,70.20%,0.10%,281,270,901,30.00% +139370,874,3384,State-funded primary,915,457,458,49.90%,50.10%,17,1.90%,83,9.10%,454,439,22,49.60%,48.00%,2.40%,253,254,868,29.30% +139372,823,3016,State-funded primary,306,146,160,47.70%,52.30%,12,3.90%,29,9.50%,10,296,0,3.30%,96.70%,0.00%,12,12,283,4.20% +139374,822,7005,State-funded special school,136,40,96,29.40%,70.60%,136,100.00%,0,0.00%,12,124,0,8.80%,91.20%,0.00%,54,58,136,42.60% +139376,838,4001,State-funded secondary,335,169,166,50.40%,49.60%,16,4.80%,73,21.80%,22,313,0,6.60%,93.40%,0.00%,104,108,335,32.20% +139377,896,2000,State-funded primary,172,85,87,49.40%,50.60%,2,1.20%,37,21.50%,19,153,0,11.00%,89.00%,0.00%,4,5,172,2.90% +139378,330,2122,State-funded primary,637,325,312,51.00%,49.00%,5,0.80%,73,11.50%,354,272,11,55.60%,42.70%,1.70%,277,273,566,48.20% +139379,896,2001,State-funded primary,389,191,198,49.10%,50.90%,14,3.60%,38,9.80%,28,361,0,7.20%,92.80%,0.00%,105,105,362,29.00% +139380,883,2002,State-funded primary,591,304,287,51.40%,48.60%,24,4.10%,67,11.30%,232,359,0,39.30%,60.70%,0.00%,216,226,554,40.80% +139381,865,2013,State-funded primary,176,87,89,49.40%,50.60%,3,1.70%,15,8.50%,2,174,0,1.10%,98.90%,0.00%,25,26,152,17.10% +139382,883,2003,State-funded primary,406,201,205,49.50%,50.50%,15,3.70%,39,9.60%,102,303,1,25.10%,74.60%,0.20%,86,104,345,30.10% +139383,331,2004,State-funded primary,418,192,226,45.90%,54.10%,6,1.40%,69,16.50%,146,272,0,34.90%,65.10%,0.00%,154,156,418,37.30% +139384,331,2005,State-funded primary,198,94,104,47.50%,52.50%,12,6.10%,70,35.40%,61,135,2,30.80%,68.20%,1.00%,79,79,198,39.90% +139385,933,2004,State-funded primary,382,195,187,51.00%,49.00%,14,3.70%,75,19.60%,54,295,33,14.10%,77.20%,8.60%,158,159,382,41.60% +139386,865,2014,State-funded primary,238,107,131,45.00%,55.00%,6,2.50%,82,34.50%,26,212,0,10.90%,89.10%,0.00%,75,84,226,37.20% +139387,933,2005,State-funded primary,342,166,176,48.50%,51.50%,10,2.90%,44,12.90%,48,294,0,14.00%,86.00%,0.00%,66,71,315,22.50% +139389,394,2001,State-funded primary,190,89,101,46.80%,53.20%,1,0.50%,34,17.90%,7,183,0,3.70%,96.30%,0.00%,84,84,166,50.60% +139391,394,2005,State-funded primary,150,73,77,48.70%,51.30%,2,1.30%,32,21.30%,8,142,0,5.30%,94.70%,0.00%,66,67,133,50.40% +139392,808,2013,State-funded primary,360,176,184,48.90%,51.10%,3,0.80%,82,22.80%,19,341,0,5.30%,94.70%,0.00%,210,211,305,69.20% +139393,306,2016,State-funded primary,448,236,212,52.70%,47.30%,26,5.80%,48,10.70%,116,332,0,25.90%,74.10%,0.00%,220,223,421,53.00% +139394,878,2005,State-funded primary,313,153,160,48.90%,51.10%,12,3.80%,51,16.30%,65,248,0,20.80%,79.20%,0.00%,51,48,285,16.80% +139395,810,4010,State-funded secondary,687,334,353,48.60%,51.40%,15,2.20%,131,19.10%,228,451,8,33.20%,65.60%,1.20%,294,327,687,47.60% +139396,886,2021,State-funded primary,232,120,112,51.70%,48.30%,10,4.30%,32,13.80%,38,194,0,16.40%,83.60%,0.00%,69,71,201,35.30% +139397,886,2022,State-funded primary,245,124,121,50.60%,49.40%,9,3.70%,40,16.30%,28,216,1,11.40%,88.20%,0.40%,125,125,210,59.50% +139398,881,2033,State-funded primary,419,208,211,49.60%,50.40%,5,1.20%,30,7.20%,109,310,0,26.00%,74.00%,0.00%,139,140,390,35.90% +139399,881,2035,State-funded primary,191,92,99,48.20%,51.80%,5,2.60%,7,3.70%,12,179,0,6.30%,93.70%,0.00%,20,23,191,12.00% +139401,873,4005,State-funded secondary,677,342,335,50.50%,49.50%,32,4.70%,83,12.30%,232,442,3,34.30%,65.30%,0.40%,286,300,677,44.30% +139402,881,4010,State-funded secondary,1029,483,546,46.90%,53.10%,33,3.20%,132,12.80%,71,958,0,6.90%,93.10%,0.00%,168,210,1029,20.40% +139403,935,4032,State-funded secondary,753,382,371,50.70%,49.30%,25,3.30%,175,23.20%,35,718,0,4.60%,95.40%,0.00%,404,433,753,57.50% +139404,352,2020,State-funded primary,665,319,346,48.00%,52.00%,25,3.80%,100,15.00%,299,366,0,45.00%,55.00%,0.00%,400,373,613,60.80% +139405,805,4001,State-funded secondary,1309,645,664,49.30%,50.70%,8,0.60%,149,11.40%,117,1191,1,8.90%,91.00%,0.10%,658,669,1250,53.50% +139406,311,2000,State-funded primary,214,110,104,51.40%,48.60%,8,3.70%,33,15.40%,79,135,0,36.90%,63.10%,0.00%,71,73,214,34.10% +139408,873,4006,State-funded secondary,1305,634,671,48.60%,51.40%,55,4.20%,108,8.30%,274,1010,21,21.00%,77.40%,1.60%,192,199,1305,15.20% +139409,846,4002,State-funded secondary,789,379,410,48.00%,52.00%,40,5.10%,86,10.90%,123,661,5,15.60%,83.80%,0.60%,121,133,789,16.90% +139410,302,4000,State-funded secondary,703,312,391,44.40%,55.60%,10,1.40%,79,11.20%,188,480,35,26.70%,68.30%,5.00%,120,125,602,20.80% +139411,823,1101,State-funded AP school,62,17,45,27.40%,72.60%,16,25.80%,43,69.40%,1,61,0,1.60%,98.40%,0.00%,41,47,62,75.80% +139413,889,1102,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139414,868,6021,Independent school,75,24,51,32.00%,68.00%,73,97.30%,2,2.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139415,213,6001,Independent school,170,72,98,42.40%,57.60%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139416,919,4004,State-funded secondary,474,323,151,68.10%,31.90%,11,2.30%,129,27.20%,29,445,0,6.10%,93.90%,0.00%,83,51,196,26.00% +139417,315,6001,Independent school,54,24,30,44.40%,55.60%,0,0.00%,12,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139418,206,7000,State-funded special school,55,17,38,30.90%,69.10%,46,83.60%,9,16.40%,8,47,0,14.50%,85.50%,0.00%,29,23,33,69.70% +139420,812,2011,State-funded primary,185,93,92,50.30%,49.70%,4,2.20%,23,12.40%,15,170,0,8.10%,91.90%,0.00%,76,79,174,45.40% +139421,318,2003,State-funded primary,185,104,81,56.20%,43.80%,5,2.70%,26,14.10%,31,154,0,16.80%,83.20%,0.00%,30,32,185,17.30% +139422,909,2000,State-funded primary,410,192,218,46.80%,53.20%,13,3.20%,37,9.00%,54,356,0,13.20%,86.80%,0.00%,33,34,337,10.10% +139423,211,2006,State-funded primary,448,232,216,51.80%,48.20%,20,4.50%,119,26.60%,71,377,0,15.80%,84.20%,0.00%,219,197,395,49.90% +139424,941,2092,State-funded primary,227,111,116,48.90%,51.10%,7,3.10%,46,20.30%,80,146,1,35.20%,64.30%,0.40%,92,95,203,46.80% +139426,888,6058,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139429,892,2006,State-funded primary,613,283,330,46.20%,53.80%,5,0.80%,72,11.70%,499,104,10,81.40%,17.00%,1.60%,214,221,567,39.00% +139430,892,2007,State-funded primary,553,267,286,48.30%,51.70%,6,1.10%,152,27.50%,96,457,0,17.40%,82.60%,0.00%,137,143,510,28.00% +139433,381,4003,State-funded secondary,717,427,290,59.60%,40.40%,8,1.10%,51,7.10%,71,646,0,9.90%,90.10%,0.00%,137,0,0,0.00% +139434,825,4003,State-funded secondary,128,41,87,32.00%,68.00%,7,5.50%,52,40.60%,12,116,0,9.40%,90.60%,0.00%,29,29,111,26.10% +139435,335,2015,State-funded primary,453,255,198,56.30%,43.70%,5,1.10%,78,17.20%,214,239,0,47.20%,52.80%,0.00%,214,207,411,50.40% +139436,886,2023,State-funded primary,145,71,74,49.00%,51.00%,0,0.00%,19,13.10%,2,143,0,1.40%,98.60%,0.00%,27,29,145,20.00% +139437,332,2001,State-funded primary,472,218,254,46.20%,53.80%,17,3.60%,53,11.20%,21,451,0,4.40%,95.60%,0.00%,105,105,422,24.90% +139438,352,2009,State-funded primary,442,213,229,48.20%,51.80%,21,4.80%,86,19.50%,66,376,0,14.90%,85.10%,0.00%,253,245,405,60.50% +139439,330,2126,State-funded primary,206,95,111,46.10%,53.90%,1,0.50%,41,19.90%,100,106,0,48.50%,51.50%,0.00%,76,80,206,38.80% +139441,855,2069,State-funded primary,272,150,122,55.10%,44.90%,5,1.80%,46,16.90%,7,265,0,2.60%,97.40%,0.00%,40,40,272,14.70% +139442,855,4018,State-funded secondary,868,419,449,48.30%,51.70%,14,1.60%,124,14.30%,31,836,1,3.60%,96.30%,0.10%,99,115,868,13.20% +139443,330,2020,State-funded primary,488,236,252,48.40%,51.60%,2,0.40%,74,15.20%,364,123,1,74.60%,25.20%,0.20%,165,153,423,36.20% +139445,352,2323,State-funded primary,479,247,232,51.60%,48.40%,18,3.80%,62,12.90%,369,107,3,77.00%,22.30%,0.60%,210,211,448,47.10% +139446,825,3023,State-funded primary,188,85,103,45.20%,54.80%,4,2.10%,18,9.60%,18,170,0,9.60%,90.40%,0.00%,12,12,188,6.40% +139447,839,2232,State-funded primary,360,191,169,53.10%,46.90%,7,1.90%,69,19.20%,117,243,0,32.50%,67.50%,0.00%,51,52,360,14.40% +139448,935,3318,State-funded primary,320,148,172,46.30%,53.80%,2,0.60%,14,4.40%,80,240,0,25.00%,75.00%,0.00%,43,43,301,14.30% +139449,826,2331,State-funded primary,381,190,191,49.90%,50.10%,4,1.00%,64,16.80%,103,276,2,27.00%,72.40%,0.50%,89,95,381,24.90% +139452,330,2463,State-funded primary,438,216,222,49.30%,50.70%,9,2.10%,36,8.20%,47,369,22,10.70%,84.20%,5.00%,50,53,404,13.10% +139453,839,2227,State-funded primary,418,202,216,48.30%,51.70%,6,1.40%,63,15.10%,79,339,0,18.90%,81.10%,0.00%,99,102,418,24.40% +139454,921,2016,State-funded primary,201,96,105,47.80%,52.20%,6,3.00%,48,23.90%,8,193,0,4.00%,96.00%,0.00%,31,32,201,15.90% +139455,893,4385,State-funded secondary,541,276,265,51.00%,49.00%,9,1.70%,79,14.60%,19,522,0,3.50%,96.50%,0.00%,88,101,541,18.70% +139456,352,4766,State-funded secondary,916,472,444,51.50%,48.50%,69,7.50%,194,21.20%,159,756,1,17.40%,82.50%,0.10%,512,558,916,60.90% +139457,334,3012,State-funded primary,505,245,260,48.50%,51.50%,8,1.60%,49,9.70%,29,476,0,5.70%,94.30%,0.00%,36,35,448,7.80% +139458,352,3424,State-funded primary,724,357,367,49.30%,50.70%,17,2.30%,108,14.90%,275,449,0,38.00%,62.00%,0.00%,231,216,638,33.90% +139459,895,2157,State-funded primary,213,98,115,46.00%,54.00%,3,1.40%,6,2.80%,9,204,0,4.20%,95.80%,0.00%,10,10,213,4.70% +139460,940,3322,State-funded primary,256,133,123,52.00%,48.00%,5,2.00%,27,10.50%,110,143,3,43.00%,55.90%,1.20%,73,77,256,30.10% +139461,940,3073,State-funded primary,238,135,103,56.70%,43.30%,7,2.90%,57,23.90%,35,202,1,14.70%,84.90%,0.40%,58,63,238,26.50% +139462,881,2424,State-funded primary,427,198,229,46.40%,53.60%,8,1.90%,67,15.70%,93,334,0,21.80%,78.20%,0.00%,77,81,427,19.00% +139465,330,2295,State-funded primary,210,100,110,47.60%,52.40%,5,2.40%,31,14.80%,108,101,1,51.40%,48.10%,0.50%,71,78,210,37.10% +139466,873,2094,State-funded primary,450,232,218,51.60%,48.40%,19,4.20%,104,23.10%,198,242,10,44.00%,53.80%,2.20%,122,126,406,31.00% +139467,352,3448,State-funded primary,381,193,188,50.70%,49.30%,8,2.10%,47,12.30%,162,219,0,42.50%,57.50%,0.00%,161,149,313,47.60% +139468,937,7002,State-funded special school,141,52,89,36.90%,63.10%,141,100.00%,0,0.00%,14,127,0,9.90%,90.10%,0.00%,64,64,141,45.40% +139469,937,7046,State-funded special school,170,49,121,28.80%,71.20%,170,100.00%,0,0.00%,17,150,3,10.00%,88.20%,1.80%,80,53,123,43.10% +139470,925,2136,State-funded primary,278,130,148,46.80%,53.20%,7,2.50%,41,14.70%,41,237,0,14.70%,85.30%,0.00%,77,82,278,29.50% +139471,802,2262,State-funded primary,431,207,224,48.00%,52.00%,3,0.70%,35,8.10%,23,404,4,5.30%,93.70%,0.90%,31,31,404,7.70% +139472,812,3522,State-funded primary,588,257,331,43.70%,56.30%,9,1.50%,72,12.20%,27,561,0,4.60%,95.40%,0.00%,181,187,542,34.50% +139473,823,3008,State-funded primary,238,123,115,51.70%,48.30%,12,5.00%,19,8.00%,2,236,0,0.80%,99.20%,0.00%,13,12,200,6.00% +139474,380,4013,State-funded secondary,378,148,230,39.20%,60.80%,7,1.90%,84,22.20%,252,126,0,66.70%,33.30%,0.00%,156,171,378,45.20% +139476,806,2102,State-funded primary,256,130,126,50.80%,49.20%,5,2.00%,48,18.80%,2,254,0,0.80%,99.20%,0.00%,151,151,204,74.00% +139477,931,3836,State-funded primary,314,142,172,45.20%,54.80%,4,1.30%,20,6.40%,171,139,4,54.50%,44.30%,1.30%,26,28,284,9.90% +139478,938,2053,State-funded primary,618,301,317,48.70%,51.30%,9,1.50%,50,8.10%,30,588,0,4.90%,95.10%,0.00%,67,69,618,11.20% +139479,936,2926,State-funded primary,279,147,132,52.70%,47.30%,13,4.70%,30,10.80%,230,49,0,82.40%,17.60%,0.00%,110,104,230,45.20% +139480,931,3839,State-funded primary,203,111,92,54.70%,45.30%,6,3.00%,35,17.20%,117,86,0,57.60%,42.40%,0.00%,37,37,178,20.80% +139481,857,5200,State-funded primary,193,98,95,50.80%,49.20%,3,1.60%,21,10.90%,4,189,0,2.10%,97.90%,0.00%,24,32,193,16.60% +139482,815,7009,State-funded special school,134,44,90,32.80%,67.20%,134,100.00%,0,0.00%,7,127,0,5.20%,94.80%,0.00%,68,76,134,56.70% +139483,810,1103,State-funded AP school,26,7,19,26.90%,73.10%,7,26.90%,19,73.10%,1,25,0,3.80%,96.20%,0.00%,21,21,26,80.80% +139484,330,2310,State-funded primary,197,106,91,53.80%,46.20%,5,2.50%,33,16.80%,11,185,1,5.60%,93.90%,0.50%,85,87,197,44.20% +139485,935,2054,State-funded primary,211,104,107,49.30%,50.70%,3,1.40%,23,10.90%,9,202,0,4.30%,95.70%,0.00%,15,18,211,8.50% +139487,926,4084,State-funded secondary,1204,599,605,49.80%,50.20%,27,2.20%,133,11.00%,61,1138,5,5.10%,94.50%,0.40%,155,162,1082,15.00% +139488,307,2185,State-funded primary,433,199,234,46.00%,54.00%,15,3.50%,62,14.30%,259,174,0,59.80%,40.20%,0.00%,151,158,408,38.70% +139489,302,2018,State-funded primary,290,131,159,45.20%,54.80%,10,3.40%,46,15.90%,199,91,0,68.60%,31.40%,0.00%,97,103,290,35.50% +139490,892,3316,State-funded primary,209,93,116,44.50%,55.50%,1,0.50%,17,8.10%,40,169,0,19.10%,80.90%,0.00%,64,63,194,32.50% +139491,926,3423,State-funded primary,482,245,237,50.80%,49.20%,9,1.90%,114,23.70%,122,360,0,25.30%,74.70%,0.00%,146,155,404,38.40% +139492,808,2014,State-funded primary,229,104,125,45.40%,54.60%,1,0.40%,24,10.50%,11,218,0,4.80%,95.20%,0.00%,57,55,206,26.70% +139493,887,2412,State-funded primary,758,372,386,49.10%,50.90%,11,1.50%,129,17.00%,98,660,0,12.90%,87.10%,0.00%,243,251,628,40.00% +139494,303,2012,State-funded primary,432,212,220,49.10%,50.90%,19,4.40%,51,11.80%,160,268,4,37.00%,62.00%,0.90%,93,98,411,23.80% +139495,888,2551,State-funded primary,265,127,138,47.90%,52.10%,7,2.60%,22,8.30%,20,245,0,7.50%,92.50%,0.00%,118,101,203,49.80% +139497,352,3508,State-funded primary,425,187,238,44.00%,56.00%,5,1.20%,18,4.20%,25,400,0,5.90%,94.10%,0.00%,32,31,374,8.30% +139498,839,1100,State-funded AP school,81,34,47,42.00%,58.00%,12,14.80%,64,79.00%,2,79,0,2.50%,97.50%,0.00%,44,49,81,60.50% +139499,384,2115,State-funded primary,210,89,121,42.40%,57.60%,4,1.90%,14,6.70%,2,208,0,1.00%,99.00%,0.00%,12,12,210,5.70% +139500,384,4020,State-funded secondary,1037,490,547,47.30%,52.70%,13,1.30%,98,9.50%,49,959,29,4.70%,92.50%,2.80%,211,237,1037,22.90% +139501,384,4027,State-funded secondary,1025,542,483,52.90%,47.10%,26,2.50%,90,8.80%,27,978,20,2.60%,95.40%,2.00%,276,287,1025,28.00% +139502,384,2147,State-funded primary,459,237,222,51.60%,48.40%,4,0.90%,38,8.30%,20,439,0,4.40%,95.60%,0.00%,85,85,415,20.50% +139503,384,2094,State-funded primary,350,177,173,50.60%,49.40%,8,2.30%,46,13.10%,18,330,2,5.10%,94.30%,0.60%,59,61,309,19.70% +139504,384,2095,State-funded primary,315,164,151,52.10%,47.90%,25,7.90%,22,7.00%,14,276,25,4.40%,87.60%,7.90%,61,66,303,21.80% +139505,801,3025,State-funded primary,408,182,226,44.60%,55.40%,9,2.20%,20,4.90%,47,361,0,11.50%,88.50%,0.00%,45,45,408,11.00% +139507,919,5201,State-funded primary,231,112,119,48.50%,51.50%,6,2.60%,22,9.50%,7,224,0,3.00%,97.00%,0.00%,7,7,212,3.30% +139508,810,2861,State-funded primary,669,334,335,49.90%,50.10%,20,3.00%,107,16.00%,51,618,0,7.60%,92.40%,0.00%,308,310,590,52.50% +139509,205,1101,State-funded AP school,35,17,18,48.60%,51.40%,6,17.10%,29,82.90%,4,31,0,11.40%,88.60%,0.00%,28,29,35,82.90% +139510,822,2120,State-funded primary,234,120,114,51.30%,48.70%,2,0.90%,15,6.40%,14,220,0,6.00%,94.00%,0.00%,28,29,199,14.60% +139511,810,2902,State-funded primary,233,116,117,49.80%,50.20%,6,2.60%,38,16.30%,11,222,0,4.70%,95.30%,0.00%,129,127,214,59.30% +139512,810,2868,State-funded primary,438,235,203,53.70%,46.30%,12,2.70%,85,19.40%,23,415,0,5.30%,94.70%,0.00%,213,214,374,57.20% +139513,810,2825,State-funded primary,348,171,177,49.10%,50.90%,5,1.40%,36,10.30%,19,329,0,5.50%,94.50%,0.00%,77,74,319,23.20% +139514,889,3193,State-funded primary,421,198,223,47.00%,53.00%,13,3.10%,58,13.80%,409,12,0,97.10%,2.90%,0.00%,46,49,421,11.60% +139515,822,3350,State-funded primary,328,171,157,52.10%,47.90%,5,1.50%,25,7.60%,81,231,16,24.70%,70.40%,4.90%,39,40,328,12.20% +139517,822,4605,State-funded secondary,930,467,463,50.20%,49.80%,21,2.30%,50,5.40%,345,582,3,37.10%,62.60%,0.30%,168,160,744,21.50% +139518,937,3595,State-funded primary,422,221,201,52.40%,47.60%,7,1.70%,20,4.70%,20,401,1,4.70%,95.00%,0.20%,90,92,422,21.80% +139519,822,2147,State-funded primary,514,244,270,47.50%,52.50%,6,1.20%,53,10.30%,151,361,2,29.40%,70.20%,0.40%,195,194,494,39.30% +139520,330,3429,State-funded primary,411,198,213,48.20%,51.80%,4,1.00%,48,11.70%,51,357,3,12.40%,86.90%,0.70%,67,72,411,17.50% +139521,845,7017,State-funded special school,119,41,78,34.50%,65.50%,116,97.50%,3,2.50%,7,112,0,5.90%,94.10%,0.00%,49,46,96,47.90% +139522,822,2178,State-funded primary,441,209,232,47.40%,52.60%,5,1.10%,21,4.80%,70,369,2,15.90%,83.70%,0.50%,47,48,407,11.80% +139523,822,2008,State-funded primary,627,295,332,47.00%,53.00%,33,5.30%,89,14.20%,203,424,0,32.40%,67.60%,0.00%,197,189,558,33.90% +139524,916,3021,State-funded primary,145,80,65,55.20%,44.80%,3,2.10%,17,11.70%,5,140,0,3.40%,96.60%,0.00%,25,26,145,17.90% +139525,810,2863,State-funded primary,319,151,168,47.30%,52.70%,24,7.50%,59,18.50%,15,304,0,4.70%,95.30%,0.00%,161,157,296,53.00% +139526,330,7063,State-funded special school,138,47,90,34.10%,65.20%,118,85.50%,20,14.50%,5,133,0,3.60%,96.40%,0.00%,67,79,128,61.70% +139527,931,3822,State-funded primary,181,111,70,61.30%,38.70%,6,3.30%,27,14.90%,36,145,0,19.90%,80.10%,0.00%,27,27,181,14.90% +139529,931,3826,State-funded primary,196,93,103,47.40%,52.60%,3,1.50%,25,12.80%,21,175,0,10.70%,89.30%,0.00%,14,14,196,7.10% +139530,931,3823,State-funded primary,196,81,115,41.30%,58.70%,6,3.10%,27,13.80%,79,116,1,40.30%,59.20%,0.50%,25,23,178,12.90% +139531,841,3308,State-funded primary,206,100,106,48.50%,51.50%,4,1.90%,16,7.80%,26,180,0,12.60%,87.40%,0.00%,9,9,206,4.40% +139532,931,3556,State-funded primary,100,49,51,49.00%,51.00%,0,0.00%,15,15.00%,18,81,1,18.00%,81.00%,1.00%,9,9,74,12.20% +139533,841,3307,State-funded primary,200,100,100,50.00%,50.00%,5,2.50%,30,15.00%,14,186,0,7.00%,93.00%,0.00%,35,36,200,18.00% +139534,881,4011,State-funded secondary,1480,765,715,51.70%,48.30%,73,4.90%,178,12.00%,12,1468,0,0.80%,99.20%,0.00%,205,233,1293,18.00% +139535,926,2353,State-funded primary,526,271,255,51.50%,48.50%,10,1.90%,65,12.40%,93,426,7,17.70%,81.00%,1.30%,140,144,526,27.40% +139536,894,4425,State-funded secondary,659,322,337,48.90%,51.10%,21,3.20%,197,29.90%,72,584,3,10.90%,88.60%,0.50%,298,320,659,48.60% +139537,873,3383,State-funded primary,197,93,104,47.20%,52.80%,8,4.10%,31,15.70%,25,172,0,12.70%,87.30%,0.00%,68,69,197,35.00% +139538,394,4607,State-funded secondary,877,0,877,0.00%,100.00%,2,0.20%,111,12.70%,226,649,2,25.80%,74.00%,0.20%,157,147,739,19.90% +139539,895,3147,State-funded primary,218,93,125,42.70%,57.30%,4,1.80%,25,11.50%,11,207,0,5.00%,95.00%,0.00%,7,7,218,3.20% +139540,880,7041,State-funded special school,268,86,182,32.10%,67.90%,268,100.00%,0,0.00%,4,264,0,1.50%,98.50%,0.00%,144,127,212,59.90% +139541,205,1106,State-funded AP school,7,0,7,0.00%,100.00%,5,71.40%,2,28.60%,1,6,0,14.30%,85.70%,0.00%,4,4,7,57.10% +139542,886,5409,State-funded secondary,1029,476,553,46.30%,53.70%,16,1.60%,119,11.60%,21,1006,2,2.00%,97.80%,0.20%,158,157,856,18.30% +139543,881,2999,State-funded primary,455,222,233,48.80%,51.20%,4,0.90%,46,10.10%,10,445,0,2.20%,97.80%,0.00%,80,80,411,19.50% +139544,373,2346,State-funded primary,447,223,224,49.90%,50.10%,11,2.50%,98,21.90%,12,435,0,2.70%,97.30%,0.00%,138,139,404,34.40% +139545,919,2001,State-funded primary,485,228,257,47.00%,53.00%,10,2.10%,33,6.80%,48,437,0,9.90%,90.10%,0.00%,91,92,420,21.90% +139546,205,2001,State-funded primary,416,203,213,48.80%,51.20%,5,1.20%,46,11.10%,230,186,0,55.30%,44.70%,0.00%,100,105,416,25.20% +139547,822,4601,State-funded primary,354,177,177,50.00%,50.00%,13,3.70%,38,10.70%,288,66,0,81.40%,18.60%,0.00%,102,101,315,32.10% +139548,850,2031,State-funded primary,267,136,131,50.90%,49.10%,7,2.60%,27,10.10%,38,229,0,14.20%,85.80%,0.00%,43,43,267,16.10% +139549,318,2005,State-funded primary,374,187,187,50.00%,50.00%,6,1.60%,26,7.00%,96,278,0,25.70%,74.30%,0.00%,37,37,374,9.90% +139550,919,2036,State-funded primary,152,77,75,50.70%,49.30%,10,6.60%,42,27.60%,29,122,1,19.10%,80.30%,0.70%,61,62,152,40.80% +139552,940,2098,State-funded primary,383,188,195,49.10%,50.90%,18,4.70%,51,13.30%,27,355,1,7.00%,92.70%,0.30%,59,63,383,16.40% +139553,878,4001,State-funded secondary,1097,568,529,51.80%,48.20%,32,2.90%,202,18.40%,26,1071,0,2.40%,97.60%,0.00%,241,278,966,28.80% +139554,886,4006,State-funded secondary,1130,511,619,45.20%,54.80%,37,3.30%,123,10.90%,56,1069,5,5.00%,94.60%,0.40%,148,153,923,16.60% +139555,873,2008,State-funded primary,243,119,124,49.00%,51.00%,9,3.70%,15,6.20%,50,193,0,20.60%,79.40%,0.00%,34,32,203,15.80% +139556,873,2013,State-funded primary,191,82,109,42.90%,57.10%,6,3.10%,25,13.10%,70,121,0,36.60%,63.40%,0.00%,59,59,191,30.90% +139557,936,2014,State-funded primary,441,232,209,52.60%,47.40%,22,5.00%,66,15.00%,47,394,0,10.70%,89.30%,0.00%,54,57,409,13.90% +139559,855,6042,Independent school,28,7,21,25.00%,75.00%,28,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139560,384,1102,State-funded AP school,80,17,63,21.30%,78.80%,77,96.30%,3,3.80%,7,72,1,8.80%,90.00%,1.30%,35,34,60,56.70% +139561,303,2041,State-funded primary,108,55,53,50.90%,49.10%,3,2.80%,29,26.90%,11,96,1,10.20%,88.90%,0.90%,52,54,108,50.00% +139562,302,2020,State-funded primary,201,102,99,50.70%,49.30%,8,4.00%,19,9.50%,15,186,0,7.50%,92.50%,0.00%,10,12,201,6.00% +139565,333,2004,State-funded primary,411,197,214,47.90%,52.10%,10,2.40%,45,10.90%,196,215,0,47.70%,52.30%,0.00%,137,137,386,35.50% +139566,883,2004,State-funded primary,428,207,221,48.40%,51.60%,18,4.20%,56,13.10%,41,386,1,9.60%,90.20%,0.20%,86,93,397,23.40% +139567,871,2003,State-funded primary,223,105,118,47.10%,52.90%,15,6.70%,34,15.20%,89,134,0,39.90%,60.10%,0.00%,70,71,201,35.30% +139570,810,2008,State-funded primary,309,148,161,47.90%,52.10%,9,2.90%,45,14.60%,33,276,0,10.70%,89.30%,0.00%,122,123,309,39.80% +139572,926,4003,State-funded secondary,777,381,396,49.00%,51.00%,26,3.30%,85,10.90%,28,749,0,3.60%,96.40%,0.00%,156,163,650,25.10% +139573,384,2007,State-funded primary,229,96,133,41.90%,58.10%,7,3.10%,68,29.70%,12,217,0,5.20%,94.80%,0.00%,94,97,211,46.00% +139576,883,2005,State-funded primary,501,232,269,46.30%,53.70%,28,5.60%,42,8.40%,212,289,0,42.30%,57.70%,0.00%,113,128,418,30.60% +139577,881,2046,State-funded primary,224,90,134,40.20%,59.80%,3,1.30%,28,12.50%,81,143,0,36.20%,63.80%,0.00%,29,30,197,15.20% +139578,883,4000,State-funded secondary,730,274,456,37.50%,62.50%,18,2.50%,93,12.70%,231,448,51,31.60%,61.40%,7.00%,197,229,730,31.40% +139579,810,2009,State-funded primary,459,226,233,49.20%,50.80%,6,1.30%,90,19.60%,233,226,0,50.80%,49.20%,0.00%,105,109,412,26.50% +139580,926,2046,State-funded primary,463,220,243,47.50%,52.50%,7,1.50%,54,11.70%,17,446,0,3.70%,96.30%,0.00%,65,65,421,15.40% +139583,881,2060,State-funded primary,377,176,201,46.70%,53.30%,6,1.60%,17,4.50%,29,348,0,7.70%,92.30%,0.00%,122,123,315,39.00% +139584,805,2002,State-funded primary,217,99,118,45.60%,54.40%,2,0.90%,49,22.60%,7,210,0,3.20%,96.80%,0.00%,140,139,185,75.10% +139585,940,2103,State-funded primary,241,131,110,54.40%,45.60%,6,2.50%,32,13.30%,63,178,0,26.10%,73.90%,0.00%,80,83,204,40.70% +139587,210,4000,State-funded secondary,405,172,233,42.50%,57.50%,15,3.70%,96,23.70%,96,307,2,23.70%,75.80%,0.50%,220,248,405,61.20% +139588,341,4002,State-funded secondary,556,312,244,56.10%,43.90%,5,0.90%,74,13.30%,154,402,0,27.70%,72.30%,0.00%,201,164,317,51.70% +139589,341,4003,State-funded secondary,273,132,141,48.40%,51.60%,7,2.60%,75,27.50%,25,247,1,9.20%,90.50%,0.40%,61,63,164,38.40% +139592,212,2000,State-funded primary,391,190,201,48.60%,51.40%,29,7.40%,49,12.50%,132,258,1,33.80%,66.00%,0.30%,87,90,391,23.00% +139594,302,4001,State-funded secondary,813,393,420,48.30%,51.70%,45,5.50%,119,14.60%,222,591,0,27.30%,72.70%,0.00%,80,120,813,14.80% +139597,925,2010,State-funded primary,404,198,206,49.00%,51.00%,13,3.20%,67,16.60%,252,152,0,62.40%,37.60%,0.00%,105,109,404,27.00% +139598,352,2022,State-funded primary,382,204,178,53.40%,46.60%,10,2.60%,39,10.20%,167,215,0,43.70%,56.30%,0.00%,74,75,382,19.60% +139599,308,4000,State-funded secondary,1107,523,584,47.20%,52.80%,57,5.10%,121,10.90%,686,413,8,62.00%,37.30%,0.70%,431,479,1107,43.30% +139600,213,7000,State-funded special school,62,24,38,38.70%,61.30%,62,100.00%,0,0.00%,26,36,0,41.90%,58.10%,0.00%,35,38,62,61.30% +139601,211,6006,Independent school,81,31,50,38.30%,61.70%,73,90.10%,7,8.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139602,860,2002,State-funded primary,460,223,237,48.50%,51.50%,9,2.00%,56,12.20%,178,282,0,38.70%,61.30%,0.00%,107,111,421,26.40% +139603,891,6023,Independent school,43,10,33,23.30%,76.70%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139604,879,2021,State-funded primary,507,239,268,47.10%,52.90%,5,1.00%,74,14.60%,30,477,0,5.90%,94.10%,0.00%,114,117,416,28.10% +139605,883,3822,State-funded primary,359,193,166,53.80%,46.20%,9,2.50%,40,11.10%,31,328,0,8.60%,91.40%,0.00%,64,69,314,22.00% +139606,808,4001,State-funded secondary,869,450,419,51.80%,48.20%,9,1.00%,110,12.70%,50,816,3,5.80%,93.90%,0.30%,90,148,869,17.00% +139607,884,7003,State-funded special school,86,29,57,33.70%,66.30%,86,100.00%,0,0.00%,0,86,0,0.00%,100.00%,0.00%,39,41,86,47.70% +139608,884,2029,State-funded primary,95,53,42,55.80%,44.20%,0,0.00%,10,10.50%,3,92,0,3.20%,96.80%,0.00%,12,13,95,13.70% +139609,312,5206,State-funded primary,467,227,240,48.60%,51.40%,15,3.20%,57,12.20%,264,203,0,56.50%,43.50%,0.00%,135,133,399,33.30% +139610,335,3805,State-funded primary,361,184,177,51.00%,49.00%,11,3.00%,46,12.70%,44,317,0,12.20%,87.80%,0.00%,236,237,333,71.20% +139611,857,3429,State-funded primary,151,70,81,46.40%,53.60%,4,2.60%,30,19.90%,31,120,0,20.50%,79.50%,0.00%,14,15,151,9.90% +139612,821,2230,State-funded primary,339,165,174,48.70%,51.30%,9,2.70%,24,7.10%,208,131,0,61.40%,38.60%,0.00%,38,40,268,14.90% +139613,883,2137,State-funded primary,468,233,235,49.80%,50.20%,15,3.20%,80,17.10%,43,425,0,9.20%,90.80%,0.00%,74,76,419,18.10% +139614,340,4611,State-funded secondary,1104,510,594,46.20%,53.80%,19,1.70%,342,31.00%,44,1060,0,4.00%,96.00%,0.00%,474,518,1104,46.90% +139615,886,2511,State-funded primary,443,213,230,48.10%,51.90%,7,1.60%,40,9.00%,18,425,0,4.10%,95.90%,0.00%,40,40,412,9.70% +139616,309,4705,State-funded secondary,1172,571,601,48.70%,51.30%,60,5.10%,115,9.80%,556,615,1,47.40%,52.50%,0.10%,372,450,1172,38.40% +139617,933,2032,State-funded primary,103,42,61,40.80%,59.20%,1,1.00%,12,11.70%,5,96,2,4.90%,93.20%,1.90%,13,13,103,12.60% +139618,925,2020,State-funded primary,418,224,194,53.60%,46.40%,14,3.30%,51,12.20%,95,323,0,22.70%,77.30%,0.00%,149,151,418,36.10% +139619,852,2460,State-funded primary,393,184,209,46.80%,53.20%,16,4.10%,56,14.20%,62,331,0,15.80%,84.20%,0.00%,184,186,393,47.30% +139620,855,2380,State-funded primary,303,145,158,47.90%,52.10%,4,1.30%,9,3.00%,17,285,1,5.60%,94.10%,0.30%,22,23,303,7.60% +139621,925,3331,State-funded primary,163,82,81,50.30%,49.70%,4,2.50%,19,11.70%,30,133,0,18.40%,81.60%,0.00%,62,65,163,39.90% +139622,925,3347,State-funded primary,209,102,107,48.80%,51.20%,5,2.40%,35,16.70%,25,184,0,12.00%,88.00%,0.00%,92,94,209,45.00% +139623,925,5421,State-funded secondary,602,324,278,53.80%,46.20%,37,6.10%,115,19.10%,140,462,0,23.30%,76.70%,0.00%,182,189,546,34.60% +139624,855,4045,State-funded secondary,2170,1036,1134,47.70%,52.30%,28,1.30%,87,4.00%,179,1988,3,8.20%,91.60%,0.10%,178,166,1477,11.20% +139625,925,7024,State-funded special school,85,29,56,34.10%,65.90%,85,100.00%,0,0.00%,3,82,0,3.50%,96.50%,0.00%,39,32,69,46.40% +139626,925,3332,State-funded primary,96,43,53,44.80%,55.20%,5,5.20%,26,27.10%,7,89,0,7.30%,92.70%,0.00%,53,55,96,57.30% +139627,925,3346,State-funded primary,270,131,139,48.50%,51.50%,2,0.70%,64,23.70%,75,195,0,27.80%,72.20%,0.00%,69,74,270,27.40% +139628,810,7008,State-funded special school,166,51,115,30.70%,69.30%,166,100.00%,0,0.00%,16,150,0,9.60%,90.40%,0.00%,90,72,133,54.10% +139629,810,4001,State-funded secondary,1338,629,709,47.00%,53.00%,36,2.70%,241,18.00%,35,1303,0,2.60%,97.40%,0.00%,568,621,1338,46.40% +139630,893,2077,State-funded primary,647,323,324,49.90%,50.10%,13,2.00%,73,11.30%,72,565,10,11.10%,87.30%,1.50%,140,135,588,23.00% +139631,330,2452,State-funded primary,198,96,102,48.50%,51.50%,1,0.50%,35,17.70%,34,164,0,17.20%,82.80%,0.00%,116,121,198,61.10% +139632,852,2005,State-funded primary,240,121,119,50.40%,49.60%,5,2.10%,28,11.70%,83,154,3,34.60%,64.20%,1.30%,66,68,240,28.30% +139633,302,2038,State-funded primary,454,229,225,50.40%,49.60%,6,1.30%,64,14.10%,428,26,0,94.30%,5.70%,0.00%,98,101,375,26.90% +139634,873,2019,State-funded primary,381,181,200,47.50%,52.50%,16,4.20%,95,24.90%,78,302,1,20.50%,79.30%,0.30%,76,77,381,20.20% +139637,330,2136,State-funded primary,469,216,253,46.10%,53.90%,23,4.90%,76,16.20%,151,294,24,32.20%,62.70%,5.10%,216,215,437,49.20% +139639,305,2009,State-funded primary,421,194,227,46.10%,53.90%,10,2.40%,85,20.20%,86,335,0,20.40%,79.60%,0.00%,167,169,391,43.20% +139640,306,2031,State-funded primary,434,191,243,44.00%,56.00%,3,0.70%,40,9.20%,99,297,38,22.80%,68.40%,8.80%,110,104,406,25.60% +139641,881,2067,State-funded primary,351,156,195,44.40%,55.60%,6,1.70%,65,18.50%,11,338,2,3.10%,96.30%,0.60%,221,229,326,70.20% +139643,916,2010,State-funded primary,211,107,104,50.70%,49.30%,9,4.30%,22,10.40%,16,195,0,7.60%,92.40%,0.00%,40,42,211,19.90% +139644,921,2000,State-funded primary,197,101,96,51.30%,48.70%,3,1.50%,51,25.90%,25,172,0,12.70%,87.30%,0.00%,72,74,197,37.60% +139645,207,2000,State-funded primary,303,148,155,48.80%,51.20%,19,6.30%,34,11.20%,176,127,0,58.10%,41.90%,0.00%,145,133,274,48.50% +139646,383,4061,State-funded secondary,922,453,469,49.10%,50.90%,7,0.80%,134,14.50%,643,275,4,69.70%,29.80%,0.40%,458,512,922,55.50% +139648,885,1108,State-funded AP school,34,11,23,32.40%,67.60%,3,8.80%,31,91.20%,1,33,0,2.90%,97.10%,0.00%,19,22,33,66.70% +139649,812,4000,State-funded secondary,579,289,290,49.90%,50.10%,36,6.20%,154,26.60%,30,549,0,5.20%,94.80%,0.00%,294,322,579,55.60% +139650,941,2105,State-funded primary,225,103,122,45.80%,54.20%,6,2.70%,26,11.60%,139,86,0,61.80%,38.20%,0.00%,73,74,204,36.30% +139651,353,2007,State-funded primary,424,214,210,50.50%,49.50%,12,2.80%,44,10.40%,401,23,0,94.60%,5.40%,0.00%,175,173,354,48.90% +139653,870,2012,State-funded primary,443,214,229,48.30%,51.70%,9,2.00%,68,15.30%,205,238,0,46.30%,53.70%,0.00%,120,124,397,31.20% +139655,933,4003,State-funded secondary,339,0,339,0.00%,100.00%,52,15.30%,128,37.80%,4,335,0,1.20%,98.80%,0.00%,48,58,339,17.10% +139656,808,4002,State-funded secondary,1030,525,505,51.00%,49.00%,28,2.70%,155,15.00%,16,1014,0,1.60%,98.40%,0.00%,302,340,1030,33.00% +139657,845,6019,Independent school,9,4,5,44.40%,55.60%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139658,392,4000,State-funded secondary,1516,738,778,48.70%,51.30%,24,1.60%,159,10.50%,65,1442,9,4.30%,95.10%,0.60%,130,124,1314,9.40% +139659,208,4000,State-funded secondary,726,320,406,44.10%,55.90%,35,4.80%,100,13.80%,396,330,0,54.50%,45.50%,0.00%,382,370,604,61.30% +139660,916,1108,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139662,919,4007,State-funded secondary,734,371,363,50.50%,49.50%,26,3.50%,132,18.00%,146,588,0,19.90%,80.10%,0.00%,129,125,639,19.60% +139663,825,4005,State-funded secondary,575,287,288,49.90%,50.10%,29,5.00%,97,16.90%,36,532,7,6.30%,92.50%,1.20%,96,102,528,19.30% +139664,886,4007,State-funded secondary,573,278,295,48.50%,51.50%,22,3.80%,87,15.20%,60,513,0,10.50%,89.50%,0.00%,92,99,504,19.60% +139665,926,1112,State-funded AP school,36,4,32,11.10%,88.90%,34,94.40%,2,5.60%,0,36,0,0.00%,100.00%,0.00%,26,26,36,72.20% +139668,938,4006,State-funded secondary,1027,531,496,51.70%,48.30%,16,1.60%,139,13.50%,50,976,1,4.90%,95.00%,0.10%,103,124,1027,12.10% +139671,330,1107,State-funded AP school,4,0,4,0.00%,100.00%,4,100.00%,0,0.00%,0,4,0,0.00%,100.00%,0.00%,2,3,4,75.00% +139672,209,2001,State-funded primary,413,217,196,52.50%,47.50%,1,0.20%,29,7.00%,31,381,1,7.50%,92.30%,0.20%,30,32,413,7.70% +139673,808,4003,State-funded secondary,1012,454,558,44.90%,55.10%,22,2.20%,123,12.20%,148,854,10,14.60%,84.40%,1.00%,455,500,1012,49.40% +139674,938,2019,State-funded primary,415,193,222,46.50%,53.50%,16,3.90%,42,10.10%,34,381,0,8.20%,91.80%,0.00%,72,72,415,17.30% +139675,890,4000,State-funded secondary,994,489,505,49.20%,50.80%,23,2.30%,248,24.90%,65,905,24,6.50%,91.00%,2.40%,575,605,965,62.70% +139677,846,2011,State-funded primary,398,217,181,54.50%,45.50%,11,2.80%,123,30.90%,39,359,0,9.80%,90.20%,0.00%,229,230,370,62.20% +139678,305,2016,State-funded primary,396,197,199,49.70%,50.30%,4,1.00%,42,10.60%,99,291,6,25.00%,73.50%,1.50%,123,132,369,35.80% +139679,825,2013,State-funded primary,230,129,101,56.10%,43.90%,6,2.60%,43,18.70%,40,190,0,17.40%,82.60%,0.00%,65,66,230,28.70% +139680,331,2007,State-funded primary,201,99,102,49.30%,50.70%,2,1.00%,72,35.80%,43,158,0,21.40%,78.60%,0.00%,73,74,184,40.20% +139681,331,2010,State-funded primary,514,254,260,49.40%,50.60%,10,1.90%,96,18.70%,263,251,0,51.20%,48.80%,0.00%,143,147,474,31.00% +139682,878,4006,State-funded secondary,994,504,490,50.70%,49.30%,45,4.50%,178,17.90%,111,881,2,11.20%,88.60%,0.20%,226,280,994,28.20% +139683,845,2006,State-funded primary,335,157,178,46.90%,53.10%,2,0.60%,82,24.50%,16,319,0,4.80%,95.20%,0.00%,201,202,311,65.00% +139685,886,2024,State-funded primary,443,212,231,47.90%,52.10%,17,3.80%,31,7.00%,206,237,0,46.50%,53.50%,0.00%,145,147,417,35.30% +139686,341,4004,State-funded secondary,1620,732,888,45.20%,54.80%,52,3.20%,230,14.20%,246,1346,28,15.20%,83.10%,1.70%,205,212,1354,15.70% +139687,212,2001,State-funded primary,225,113,112,50.20%,49.80%,8,3.60%,80,35.60%,90,135,0,40.00%,60.00%,0.00%,47,51,225,22.70% +139688,383,2011,State-funded primary,289,165,124,57.10%,42.90%,3,1.00%,31,10.70%,154,135,0,53.30%,46.70%,0.00%,62,63,238,26.50% +139690,941,4011,State-funded secondary,440,76,364,17.30%,82.70%,8,1.80%,53,12.00%,18,374,48,4.10%,85.00%,10.90%,43,38,229,16.60% +139691,841,7000,State-funded special school,48,1,47,2.10%,97.90%,47,97.90%,1,2.10%,1,47,0,2.10%,97.90%,0.00%,33,37,48,77.10% +139692,839,2002,State-funded primary,391,191,200,48.80%,51.20%,11,2.80%,48,12.30%,122,268,1,31.20%,68.50%,0.30%,103,106,369,28.70% +139693,916,2019,State-funded primary,388,174,214,44.80%,55.20%,7,1.80%,66,17.00%,63,323,2,16.20%,83.20%,0.50%,113,116,373,31.10% +139694,803,2000,State-funded primary,408,194,214,47.50%,52.50%,5,1.20%,55,13.50%,88,318,2,21.60%,77.90%,0.50%,90,91,408,22.30% +139695,373,4004,State-funded secondary,485,140,345,28.90%,71.10%,3,0.60%,41,8.50%,29,380,76,6.00%,78.40%,15.70%,96,87,313,27.80% +139696,886,2025,State-funded primary,208,93,115,44.70%,55.30%,5,2.40%,31,14.90%,97,111,0,46.60%,53.40%,0.00%,27,30,208,14.40% +139697,886,4009,State-funded secondary,371,147,224,39.60%,60.40%,36,9.70%,73,19.70%,9,362,0,2.40%,97.60%,0.00%,89,104,371,28.00% +139699,307,2001,State-funded primary,449,236,213,52.60%,47.40%,15,3.30%,38,8.50%,192,257,0,42.80%,57.20%,0.00%,181,174,407,42.80% +139701,383,2012,State-funded primary,415,196,219,47.20%,52.80%,7,1.70%,87,21.00%,235,172,8,56.60%,41.40%,1.90%,250,251,415,60.50% +139702,925,2014,State-funded primary,209,93,116,44.50%,55.50%,11,5.30%,62,29.70%,7,202,0,3.30%,96.70%,0.00%,78,81,209,38.80% +139703,316,4003,State-funded secondary,2041,975,1066,47.80%,52.20%,51,2.50%,202,9.90%,1150,891,0,56.30%,43.70%,0.00%,666,697,1662,41.90% +139704,353,2009,State-funded primary,554,272,282,49.10%,50.90%,19,3.40%,80,14.40%,302,252,0,54.50%,45.50%,0.00%,145,150,488,30.70% +139705,821,2007,State-funded primary,619,306,313,49.40%,50.60%,8,1.30%,61,9.90%,476,143,0,76.90%,23.10%,0.00%,153,156,619,25.20% +139706,330,6014,Independent school,9,3,6,33.30%,66.70%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139709,931,2007,State-funded primary,162,79,83,48.80%,51.20%,7,4.30%,44,27.20%,16,146,0,9.90%,90.10%,0.00%,72,73,146,50.00% +139710,879,2000,State-funded primary,454,222,232,48.90%,51.10%,15,3.30%,80,17.60%,49,405,0,10.80%,89.20%,0.00%,187,187,421,44.40% +139711,839,4001,State-funded secondary,946,456,490,48.20%,51.80%,28,3.00%,134,14.20%,111,835,0,11.70%,88.30%,0.00%,170,172,886,19.40% +139712,851,2003,State-funded primary,435,191,244,43.90%,56.10%,41,9.40%,62,14.30%,30,404,1,6.90%,92.90%,0.20%,192,195,406,48.00% +139713,851,2004,State-funded primary,418,205,213,49.00%,51.00%,14,3.30%,42,10.00%,173,245,0,41.40%,58.60%,0.00%,251,253,418,60.50% +139714,851,4002,State-funded secondary,1173,580,593,49.40%,50.60%,43,3.70%,137,11.70%,304,863,6,25.90%,73.60%,0.50%,556,600,1173,51.20% +139717,933,2007,State-funded primary,346,161,185,46.50%,53.50%,11,3.20%,109,31.50%,58,287,1,16.80%,82.90%,0.30%,174,180,346,52.00% +139718,210,4001,State-funded secondary,597,281,316,47.10%,52.90%,24,4.00%,119,19.90%,169,393,35,28.30%,65.80%,5.90%,305,346,597,58.00% +139719,860,2003,State-funded primary,367,155,212,42.20%,57.80%,9,2.50%,37,10.10%,15,352,0,4.10%,95.90%,0.00%,94,96,367,26.20% +139720,313,4002,State-funded secondary,1211,594,617,49.10%,50.90%,28,2.30%,90,7.40%,605,566,40,50.00%,46.70%,3.30%,114,145,1211,12.00% +139721,936,2016,State-funded primary,223,105,118,47.10%,52.90%,14,6.30%,60,26.90%,23,200,0,10.30%,89.70%,0.00%,72,77,203,37.90% +139722,319,7001,State-funded special school,247,57,190,23.10%,76.90%,247,100.00%,0,0.00%,22,225,0,8.90%,91.10%,0.00%,118,105,198,53.00% +139723,320,2035,State-funded primary,448,230,218,51.30%,48.70%,10,2.20%,31,6.90%,216,228,4,48.20%,50.90%,0.90%,111,118,410,28.80% +139724,320,2036,State-funded primary,561,261,300,46.50%,53.50%,26,4.60%,65,11.60%,411,150,0,73.30%,26.70%,0.00%,180,187,476,39.30% +139725,307,4000,State-funded secondary,1376,683,693,49.60%,50.40%,63,4.60%,31,2.30%,491,870,15,35.70%,63.20%,1.10%,222,208,1022,20.40% +139728,870,7000,State-funded special school,53,7,46,13.20%,86.80%,53,100.00%,0,0.00%,2,51,0,3.80%,96.20%,0.00%,19,21,53,39.60% +139729,391,2019,State-funded primary,198,79,119,39.90%,60.10%,3,1.50%,34,17.20%,70,128,0,35.40%,64.60%,0.00%,72,74,194,38.10% +139730,352,4003,State-funded secondary,604,345,259,57.10%,42.90%,4,0.70%,54,8.90%,223,379,2,36.90%,62.70%,0.30%,203,0,0,0.00% +139731,330,1108,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139732,935,7009,State-funded special school,69,10,59,14.50%,85.50%,69,100.00%,0,0.00%,0,69,0,0.00%,100.00%,0.00%,13,15,68,22.10% +139734,855,6032,Independent school,36,8,28,22.20%,77.80%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139735,357,4604,State-funded secondary,774,479,295,61.90%,38.10%,23,3.00%,73,9.40%,77,696,1,9.90%,89.90%,0.10%,245,302,774,39.00% +139736,926,2289,State-funded primary,210,123,87,58.60%,41.40%,3,1.40%,24,11.40%,7,203,0,3.30%,96.70%,0.00%,14,14,172,8.10% +139737,855,2162,State-funded primary,591,271,320,45.90%,54.10%,9,1.50%,110,18.60%,39,552,0,6.60%,93.40%,0.00%,98,98,591,16.60% +139739,855,2333,State-funded primary,423,195,228,46.10%,53.90%,4,0.90%,47,11.10%,86,335,2,20.30%,79.20%,0.50%,23,29,423,6.90% +139740,908,1108,State-funded AP school,24,5,19,20.80%,79.20%,5,20.80%,19,79.20%,1,22,1,4.20%,91.70%,4.20%,14,15,24,62.50% +139741,908,1100,State-funded AP school,6,4,2,66.70%,33.30%,2,33.30%,4,66.70%,0,5,1,0.00%,83.30%,16.70%,4,3,5,60.00% +139742,333,2118,State-funded primary,209,101,108,48.30%,51.70%,3,1.40%,36,17.20%,30,179,0,14.40%,85.60%,0.00%,60,62,209,29.70% +139744,855,3035,State-funded primary,112,63,49,56.30%,43.80%,1,0.90%,6,5.40%,0,111,1,0.00%,99.10%,0.90%,16,16,112,14.30% +139746,330,4240,State-funded secondary,1140,501,639,43.90%,56.10%,60,5.30%,167,14.60%,595,519,26,52.20%,45.50%,2.30%,348,416,973,42.80% +139747,852,3659,State-funded primary,412,202,210,49.00%,51.00%,11,2.70%,48,11.70%,72,335,5,17.50%,81.30%,1.20%,132,178,412,43.20% +139748,370,2120,State-funded primary,243,124,119,51.00%,49.00%,5,2.10%,31,12.80%,4,239,0,1.60%,98.40%,0.00%,89,87,205,42.40% +139749,885,2078,State-funded primary,184,98,86,53.30%,46.70%,6,3.30%,46,25.00%,7,177,0,3.80%,96.20%,0.00%,31,32,184,17.40% +139750,931,2609,State-funded primary,437,223,214,51.00%,49.00%,16,3.70%,66,15.10%,98,339,0,22.40%,77.60%,0.00%,29,31,421,7.40% +139751,855,2357,State-funded primary,629,309,320,49.10%,50.90%,6,1.00%,36,5.70%,168,460,1,26.70%,73.10%,0.20%,52,52,629,8.30% +139752,895,2206,State-funded primary,452,235,217,52.00%,48.00%,13,2.90%,70,15.50%,109,342,1,24.10%,75.70%,0.20%,88,84,392,21.40% +139753,865,3117,State-funded primary,418,198,220,47.40%,52.60%,11,2.60%,54,12.90%,31,387,0,7.40%,92.60%,0.00%,51,51,418,12.20% +139756,929,2405,State-funded primary,354,193,161,54.50%,45.50%,27,7.60%,103,29.10%,27,327,0,7.60%,92.40%,0.00%,192,196,297,66.00% +139758,908,1104,State-funded AP school,26,4,22,15.40%,84.60%,3,11.50%,23,88.50%,0,26,0,0.00%,100.00%,0.00%,17,20,26,76.90% +139759,908,1103,State-funded AP school,25,4,21,16.00%,84.00%,2,8.00%,23,92.00%,0,25,0,0.00%,100.00%,0.00%,17,19,25,76.00% +139760,908,1102,State-funded AP school,14,3,11,21.40%,78.60%,0,0.00%,14,100.00%,0,14,0,0.00%,100.00%,0.00%,7,7,14,50.00% +139761,908,1101,State-funded AP school,15,6,9,40.00%,60.00%,1,6.70%,7,46.70%,0,14,1,0.00%,93.30%,6.70%,11,11,15,73.30% +139762,931,2567,State-funded primary,210,94,116,44.80%,55.20%,9,4.30%,36,17.10%,4,206,0,1.90%,98.10%,0.00%,23,23,210,11.00% +139763,881,3452,State-funded primary,419,214,205,51.10%,48.90%,4,1.00%,33,7.90%,49,370,0,11.70%,88.30%,0.00%,10,10,419,2.40% +139764,895,4612,State-funded secondary,653,309,344,47.30%,52.70%,17,2.60%,58,8.90%,179,473,1,27.40%,72.40%,0.20%,124,132,653,20.20% +139765,892,4462,State-funded secondary,1144,555,589,48.50%,51.50%,15,1.30%,157,13.70%,265,871,8,23.20%,76.10%,0.70%,468,448,974,46.00% +139766,894,4408,State-funded secondary,1047,526,521,50.20%,49.80%,18,1.70%,232,22.20%,115,932,0,11.00%,89.00%,0.00%,435,469,1047,44.80% +139767,855,2164,State-funded primary,162,74,88,45.70%,54.30%,6,3.70%,27,16.70%,9,153,0,5.60%,94.40%,0.00%,55,55,162,34.00% +139768,333,2158,State-funded primary,217,101,116,46.50%,53.50%,6,2.80%,49,22.60%,17,200,0,7.80%,92.20%,0.00%,74,76,201,37.80% +139769,893,4391,State-funded secondary,936,473,460,50.50%,49.10%,27,2.90%,164,17.50%,13,917,6,1.40%,98.00%,0.60%,142,153,837,18.30% +139770,931,3912,State-funded primary,492,256,236,52.00%,48.00%,13,2.60%,106,21.50%,94,398,0,19.10%,80.90%,0.00%,105,112,421,26.60% +139772,916,6005,Independent school,41,13,28,31.70%,68.30%,16,39.00%,12,29.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139773,383,4066,State-funded secondary,137,69,68,50.40%,49.60%,3,2.20%,23,16.80%,37,100,0,27.00%,73.00%,0.00%,24,27,137,19.70% +139774,925,1106,State-funded AP school,3,1,2,33.30%,66.70%,2,66.70%,0,0.00%,0,3,0,0.00%,100.00%,0.00%,0,2,3,66.70% +139775,212,2002,State-funded primary,387,217,170,56.10%,43.90%,8,2.10%,33,8.50%,47,340,0,12.10%,87.90%,0.00%,62,63,387,16.30% +139776,350,2002,State-funded primary,418,217,201,51.90%,48.10%,7,1.70%,32,7.70%,336,82,0,80.40%,19.60%,0.00%,85,90,418,21.50% +139777,931,2008,State-funded primary,366,192,174,52.50%,47.50%,8,2.20%,66,18.00%,113,253,0,30.90%,69.10%,0.00%,51,56,366,15.30% +139779,931,6012,Independent school,153,74,79,48.40%,51.60%,0,0.00%,26,17.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139782,821,2008,State-funded primary,708,372,336,52.50%,47.50%,17,2.40%,140,19.80%,486,222,0,68.60%,31.40%,0.00%,205,212,708,29.90% +139787,831,6012,Independent school,15,1,14,6.70%,93.30%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139788,330,4010,State-funded secondary,250,143,107,57.20%,42.80%,2,0.80%,61,24.40%,135,115,0,54.00%,46.00%,0.00%,100,72,142,50.70% +139789,335,4005,State-funded secondary,188,135,53,71.80%,28.20%,4,2.10%,26,13.80%,6,182,0,3.20%,96.80%,0.00%,60,43,97,44.30% +139790,352,2023,State-funded primary,213,115,98,54.00%,46.00%,3,1.40%,28,13.10%,169,44,0,79.30%,20.70%,0.00%,76,78,213,36.60% +139791,301,4001,State-funded secondary,1379,685,694,49.70%,50.30%,15,1.10%,72,5.20%,362,995,22,26.30%,72.20%,1.60%,404,450,1264,35.60% +139795,878,2021,State-funded primary,97,50,47,51.50%,48.50%,2,2.10%,18,18.60%,0,97,0,0.00%,100.00%,0.00%,11,11,97,11.30% +139796,845,4002,State-funded secondary,1226,622,604,50.70%,49.30%,21,1.70%,157,12.80%,169,1057,0,13.80%,86.20%,0.00%,212,216,1161,18.60% +139798,822,4002,State-funded secondary,636,304,332,47.80%,52.20%,2,0.30%,38,6.00%,91,545,0,14.30%,85.70%,0.00%,38,0,0,0.00% +139799,810,2010,State-funded primary,250,121,129,48.40%,51.60%,24,9.60%,22,8.80%,9,241,0,3.60%,96.40%,0.00%,114,115,220,52.30% +139800,336,2008,State-funded primary,225,114,111,50.70%,49.30%,4,1.80%,12,5.30%,102,123,0,45.30%,54.70%,0.00%,105,105,208,50.50% +139802,881,2079,State-funded primary,203,112,91,55.20%,44.80%,3,1.50%,54,26.60%,32,171,0,15.80%,84.20%,0.00%,80,88,203,43.30% +139803,935,2001,State-funded primary,576,266,310,46.20%,53.80%,11,1.90%,104,18.10%,39,536,1,6.80%,93.10%,0.20%,178,183,551,33.20% +139804,935,2006,State-funded primary,218,110,108,50.50%,49.50%,7,3.20%,64,29.40%,9,209,0,4.10%,95.90%,0.00%,84,84,192,43.80% +139805,940,2109,State-funded primary,377,166,211,44.00%,56.00%,4,1.10%,56,14.90%,146,231,0,38.70%,61.30%,0.00%,102,105,377,27.90% +139806,881,2084,State-funded primary,207,101,106,48.80%,51.20%,5,2.40%,30,14.50%,3,204,0,1.40%,98.60%,0.00%,51,52,207,25.10% +139807,390,6001,Independent school,15,4,11,26.70%,73.30%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139808,881,2085,State-funded primary,180,95,85,52.80%,47.20%,1,0.60%,15,8.30%,2,178,0,1.10%,98.90%,0.00%,57,58,180,32.20% +139810,886,2026,State-funded primary,103,53,50,51.50%,48.50%,0,0.00%,11,10.70%,3,100,0,2.90%,97.10%,0.00%,17,18,103,17.50% +139811,306,6012,Independent school,263,0,263,0.00%,100.00%,1,0.40%,40,15.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139813,889,2003,State-funded primary,635,304,331,47.90%,52.10%,20,3.10%,48,7.60%,330,303,2,52.00%,47.70%,0.30%,26,29,635,4.60% +139814,204,2001,State-funded primary,627,342,285,54.50%,45.50%,30,4.80%,73,11.60%,373,250,4,59.50%,39.90%,0.60%,236,243,627,38.80% +139815,308,4001,State-funded secondary,1804,894,910,49.60%,50.40%,71,3.90%,135,7.50%,772,980,52,42.80%,54.30%,2.90%,687,671,1546,43.40% +139817,302,2047,State-funded primary,476,250,226,52.50%,47.50%,18,3.80%,53,11.10%,358,118,0,75.20%,24.80%,0.00%,86,91,414,22.00% +139818,878,2030,State-funded primary,414,197,217,47.60%,52.40%,14,3.40%,58,14.00%,45,368,1,10.90%,88.90%,0.20%,31,35,414,8.50% +139819,940,4012,State-funded secondary,1284,647,637,50.40%,49.60%,19,1.50%,60,4.70%,265,1008,11,20.60%,78.50%,0.90%,339,376,1145,32.80% +139820,205,2003,State-funded primary,214,122,92,57.00%,43.00%,8,3.70%,24,11.20%,149,65,0,69.60%,30.40%,0.00%,116,103,179,57.50% +139821,845,4003,State-funded secondary,1557,783,774,50.30%,49.70%,7,0.40%,318,20.40%,215,1318,24,13.80%,84.60%,1.50%,445,528,1462,36.10% +139822,886,2027,State-funded primary,307,145,162,47.20%,52.80%,3,1.00%,58,18.90%,131,174,2,42.70%,56.70%,0.70%,111,114,307,37.10% +139823,806,4002,State-funded secondary,1159,576,583,49.70%,50.30%,34,2.90%,224,19.30%,380,764,15,32.80%,65.90%,1.30%,519,564,1159,48.70% +139824,213,2002,State-funded primary,109,58,51,53.20%,46.80%,8,7.30%,14,12.80%,93,16,0,85.30%,14.70%,0.00%,52,44,97,45.40% +139825,885,2001,State-funded primary,218,109,109,50.00%,50.00%,4,1.80%,45,20.60%,15,202,1,6.90%,92.70%,0.50%,56,56,218,25.70% +139826,317,6000,Independent school,226,106,120,46.90%,53.10%,0,0.00%,13,5.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139827,940,2111,State-funded primary,464,241,223,51.90%,48.10%,11,2.40%,44,9.50%,172,292,0,37.10%,62.90%,0.00%,53,54,420,12.90% +139828,801,2087,State-funded primary,420,225,195,53.60%,46.40%,12,2.90%,43,10.20%,55,364,1,13.10%,86.70%,0.20%,71,71,420,16.90% +139829,306,1103,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139830,304,2021,State-funded primary,658,337,321,51.20%,48.80%,8,1.20%,31,4.70%,164,494,0,24.90%,75.10%,0.00%,96,91,596,15.30% +139831,352,6008,Independent school,41,14,27,34.10%,65.90%,2,4.90%,1,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139837,202,2001,State-funded primary,153,69,84,45.10%,54.90%,4,2.60%,15,9.80%,51,102,0,33.30%,66.70%,0.00%,18,20,152,13.20% +139838,810,2039,State-funded primary,246,128,118,52.00%,48.00%,6,2.40%,17,6.90%,5,241,0,2.00%,98.00%,0.00%,55,56,215,26.00% +139839,394,4067,State-funded secondary,1138,528,610,46.40%,53.60%,51,4.50%,189,16.60%,13,1123,2,1.10%,98.70%,0.20%,318,338,1138,29.70% +139840,877,4226,State-funded secondary,922,460,462,49.90%,50.10%,26,2.80%,139,15.10%,99,823,0,10.70%,89.30%,0.00%,263,270,851,31.70% +139841,330,4227,State-funded secondary,1219,671,548,55.00%,45.00%,9,0.70%,168,13.80%,819,400,0,67.20%,32.80%,0.00%,546,548,1052,52.10% +139842,212,5401,State-funded secondary,1651,1591,60,96.40%,3.60%,33,2.00%,232,14.10%,1119,532,0,67.80%,32.20%,0.00%,363,431,1208,35.70% +139843,873,2076,State-funded primary,363,178,185,49.00%,51.00%,10,2.80%,44,12.10%,30,333,0,8.30%,91.70%,0.00%,140,143,321,44.50% +139844,873,3367,State-funded primary,195,109,86,55.90%,44.10%,5,2.60%,20,10.30%,6,189,0,3.10%,96.90%,0.00%,25,25,195,12.80% +139845,855,2187,State-funded primary,173,83,90,48.00%,52.00%,23,13.30%,17,9.80%,10,163,0,5.80%,94.20%,0.00%,45,45,173,26.00% +139846,861,2040,State-funded primary,238,121,117,50.80%,49.20%,3,1.30%,69,29.00%,10,228,0,4.20%,95.80%,0.00%,107,102,194,52.60% +139847,941,2013,State-funded primary,80,42,38,52.50%,47.50%,1,1.30%,19,23.80%,0,80,0,0.00%,100.00%,0.00%,12,12,80,15.00% +139848,810,2901,State-funded primary,340,157,183,46.20%,53.80%,13,3.80%,34,10.00%,208,131,1,61.20%,38.50%,0.30%,136,139,309,45.00% +139849,394,2016,State-funded primary,379,182,197,48.00%,52.00%,8,2.10%,50,13.20%,145,233,1,38.30%,61.50%,0.30%,104,105,266,39.50% +139850,810,2160,State-funded primary,618,302,316,48.90%,51.10%,19,3.10%,122,19.70%,41,577,0,6.60%,93.40%,0.00%,113,114,618,18.40% +139851,805,2151,State-funded primary,509,274,235,53.80%,46.20%,3,0.60%,53,10.40%,24,485,0,4.70%,95.30%,0.00%,118,118,445,26.50% +139852,394,4037,State-funded secondary,666,321,345,48.20%,51.80%,37,5.60%,107,16.10%,4,662,0,0.60%,99.40%,0.00%,269,278,666,41.70% +139853,872,4050,State-funded secondary,742,19,723,2.60%,97.40%,10,1.30%,75,10.10%,211,529,2,28.40%,71.30%,0.30%,67,75,608,12.30% +139854,855,3325,State-funded primary,212,92,120,43.40%,56.60%,4,1.90%,27,12.70%,1,210,1,0.50%,99.10%,0.50%,9,9,212,4.20% +139855,855,2138,State-funded primary,212,110,102,51.90%,48.10%,2,0.90%,23,10.80%,39,171,2,18.40%,80.70%,0.90%,16,17,212,8.00% +139856,373,4225,State-funded secondary,1382,614,768,44.40%,55.60%,26,1.90%,245,17.70%,622,760,0,45.00%,55.00%,0.00%,617,660,1324,49.80% +139857,941,2065,State-funded primary,130,50,80,38.50%,61.50%,2,1.50%,36,27.70%,1,129,0,0.80%,99.20%,0.00%,26,26,130,20.00% +139858,857,3114,State-funded primary,200,91,109,45.50%,54.50%,3,1.50%,16,8.00%,12,188,0,6.00%,94.00%,0.00%,16,17,200,8.50% +139859,855,2338,State-funded primary,208,102,106,49.00%,51.00%,3,1.40%,11,5.30%,44,163,1,21.20%,78.40%,0.50%,38,41,208,19.70% +139860,330,2249,State-funded primary,226,109,117,48.20%,51.80%,3,1.30%,59,26.10%,20,202,4,8.80%,89.40%,1.80%,109,114,214,53.30% +139861,826,2332,State-funded primary,465,231,234,49.70%,50.30%,12,2.60%,75,16.10%,148,317,0,31.80%,68.20%,0.00%,85,92,465,19.80% +139862,373,2315,State-funded primary,149,75,74,50.30%,49.70%,1,0.70%,10,6.70%,14,135,0,9.40%,90.60%,0.00%,31,31,149,20.80% +139863,373,2298,State-funded primary,221,94,127,42.50%,57.50%,1,0.50%,20,9.00%,16,205,0,7.20%,92.80%,0.00%,36,38,221,17.20% +139864,855,3056,State-funded primary,70,33,37,47.10%,52.90%,1,1.40%,10,14.30%,0,70,0,0.00%,100.00%,0.00%,7,7,70,10.00% +139866,941,2070,State-funded primary,346,174,172,50.30%,49.70%,2,0.60%,56,16.20%,15,331,0,4.30%,95.70%,0.00%,17,18,346,5.20% +139867,935,4033,State-funded secondary,1311,642,669,49.00%,51.00%,25,1.90%,149,11.40%,102,1206,3,7.80%,92.00%,0.20%,282,302,1146,26.40% +139868,925,2183,State-funded primary,102,53,49,52.00%,48.00%,4,3.90%,6,5.90%,0,102,0,0.00%,100.00%,0.00%,27,28,102,27.50% +139869,313,2038,State-funded primary,398,204,194,51.30%,48.70%,15,3.80%,97,24.40%,363,35,0,91.20%,8.80%,0.00%,114,120,398,30.20% +139870,336,2109,State-funded primary,498,250,248,50.20%,49.80%,11,2.20%,49,9.80%,72,426,0,14.50%,85.50%,0.00%,146,147,419,35.10% +139871,881,2699,State-funded primary,277,129,148,46.60%,53.40%,12,4.30%,34,12.30%,15,262,0,5.40%,94.60%,0.00%,81,112,277,40.40% +139872,332,4119,State-funded secondary,1219,614,605,50.40%,49.60%,30,2.50%,189,15.50%,54,1161,4,4.40%,95.20%,0.30%,255,272,1219,22.30% +139873,919,4006,State-funded secondary,1227,74,1153,6.00%,94.00%,14,1.10%,167,13.60%,59,1165,3,4.80%,94.90%,0.20%,80,73,888,8.20% +139874,855,3074,State-funded primary,485,215,270,44.30%,55.70%,6,1.20%,17,3.50%,4,480,1,0.80%,99.00%,0.20%,48,49,485,10.10% +139875,333,2161,State-funded primary,677,307,370,45.30%,54.70%,26,3.80%,61,9.00%,422,255,0,62.30%,37.70%,0.00%,174,178,618,28.80% +139876,372,3340,State-funded primary,328,147,181,44.80%,55.20%,4,1.20%,89,27.10%,39,289,0,11.90%,88.10%,0.00%,47,49,296,16.60% +139877,372,3336,State-funded primary,150,72,78,48.00%,52.00%,0,0.00%,21,14.00%,16,134,0,10.70%,89.30%,0.00%,28,28,150,18.70% +139878,393,4603,State-funded secondary,1300,667,633,51.30%,48.70%,21,1.60%,123,9.50%,48,1251,1,3.70%,96.20%,0.10%,234,266,1123,23.70% +139879,938,3354,State-funded primary,616,318,298,51.60%,48.40%,7,1.10%,92,14.90%,17,587,12,2.80%,95.30%,1.90%,35,36,616,5.80% +139880,372,3322,State-funded primary,208,112,96,53.80%,46.20%,3,1.40%,36,17.30%,49,159,0,23.60%,76.40%,0.00%,37,40,208,19.20% +139881,372,3335,State-funded primary,134,68,66,50.70%,49.30%,1,0.70%,16,11.90%,11,123,0,8.20%,91.80%,0.00%,38,39,128,30.50% +139882,868,3334,State-funded primary,309,160,149,51.80%,48.20%,10,3.20%,29,9.40%,61,248,0,19.70%,80.30%,0.00%,31,31,309,10.00% +139883,359,3357,State-funded primary,603,281,322,46.60%,53.40%,6,1.00%,61,10.10%,34,569,0,5.60%,94.40%,0.00%,63,65,551,11.80% +139884,805,2156,State-funded primary,345,178,167,51.60%,48.40%,8,2.30%,78,22.60%,43,302,0,12.50%,87.50%,0.00%,176,176,282,62.40% +139885,925,2202,State-funded primary,67,28,39,41.80%,58.20%,5,7.50%,6,9.00%,1,66,0,1.50%,98.50%,0.00%,20,20,67,29.90% +139886,810,2684,State-funded primary,567,279,288,49.20%,50.80%,7,1.20%,53,9.30%,209,358,0,36.90%,63.10%,0.00%,118,122,528,23.10% +139887,878,2072,State-funded primary,221,100,121,45.20%,54.80%,6,2.70%,23,10.40%,3,208,10,1.40%,94.10%,4.50%,41,41,221,18.60% +139888,330,4084,State-funded secondary,1745,807,938,46.20%,53.80%,10,0.60%,202,11.60%,1010,603,132,57.90%,34.60%,7.60%,665,822,1620,50.70% +139889,313,2062,State-funded primary,581,284,297,48.90%,51.10%,19,3.30%,87,15.00%,406,175,0,69.90%,30.10%,0.00%,150,158,531,29.80% +139890,936,2492,State-funded primary,254,137,117,53.90%,46.10%,4,1.60%,42,16.50%,237,17,0,93.30%,6.70%,0.00%,56,57,207,27.50% +139891,336,4605,State-funded secondary,1142,584,558,51.10%,48.90%,23,2.00%,159,13.90%,309,833,0,27.10%,72.90%,0.00%,409,387,946,40.90% +139892,336,3307,State-funded primary,224,109,115,48.70%,51.30%,6,2.70%,35,15.60%,22,202,0,9.80%,90.20%,0.00%,58,59,207,28.50% +139893,336,3311,State-funded primary,168,86,82,51.20%,48.80%,2,1.20%,20,11.90%,52,116,0,31.00%,69.00%,0.00%,89,89,168,53.00% +139894,336,3315,State-funded primary,235,120,115,51.10%,48.90%,7,3.00%,23,9.80%,101,134,0,43.00%,57.00%,0.00%,87,89,209,42.60% +139896,926,4007,State-funded secondary,484,238,246,49.20%,50.80%,6,1.20%,13,2.70%,38,442,4,7.90%,91.30%,0.80%,18,0,0,0.00% +139898,213,2003,State-funded primary,358,165,193,46.10%,53.90%,15,4.20%,32,8.90%,145,213,0,40.50%,59.50%,0.00%,125,129,358,36.00% +139899,872,2000,State-funded primary,193,112,81,58.00%,42.00%,12,6.20%,19,9.80%,65,128,0,33.70%,66.30%,0.00%,24,24,193,12.40% +139900,872,2001,State-funded primary,211,109,102,51.70%,48.30%,2,0.90%,25,11.80%,19,192,0,9.00%,91.00%,0.00%,9,10,211,4.70% +139903,882,1101,State-funded AP school,15,2,13,13.30%,86.70%,14,93.30%,1,6.70%,0,15,0,0.00%,100.00%,0.00%,7,8,10,80.00% +139904,330,2138,State-funded primary,419,196,223,46.80%,53.20%,3,0.70%,86,20.50%,218,201,0,52.00%,48.00%,0.00%,181,201,375,53.60% +139905,306,2034,State-funded primary,199,99,100,49.70%,50.30%,5,2.50%,29,14.60%,37,162,0,18.60%,81.40%,0.00%,61,61,199,30.70% +139907,210,2002,State-funded primary,382,170,212,44.50%,55.50%,3,0.80%,21,5.50%,30,346,6,7.90%,90.60%,1.60%,21,25,357,7.00% +139909,312,2021,State-funded primary,431,198,233,45.90%,54.10%,5,1.20%,19,4.40%,286,144,1,66.40%,33.40%,0.20%,87,98,388,25.30% +139910,895,2000,State-funded primary,430,236,194,54.90%,45.10%,8,1.90%,36,8.40%,30,400,0,7.00%,93.00%,0.00%,66,64,396,16.20% +139911,331,7000,State-funded special school,101,25,76,24.80%,75.20%,101,100.00%,0,0.00%,36,61,4,35.60%,60.40%,4.00%,38,38,101,37.60% +139912,382,2016,State-funded primary,414,198,216,47.80%,52.20%,17,4.10%,68,16.40%,11,403,0,2.70%,97.30%,0.00%,72,73,414,17.60% +139913,937,2012,State-funded primary,204,99,105,48.50%,51.50%,2,1.00%,48,23.50%,10,194,0,4.90%,95.10%,0.00%,79,77,186,41.40% +139915,936,2017,State-funded primary,234,121,113,51.70%,48.30%,4,1.70%,43,18.40%,36,198,0,15.40%,84.60%,0.00%,66,68,194,35.10% +139916,936,2018,State-funded primary,210,108,102,51.40%,48.60%,12,5.70%,23,11.00%,5,205,0,2.40%,97.60%,0.00%,35,35,210,16.70% +139917,881,2091,State-funded primary,234,125,109,53.40%,46.60%,10,4.30%,25,10.70%,74,159,1,31.60%,67.90%,0.40%,31,43,206,20.90% +139918,333,4002,State-funded secondary,1149,569,580,49.50%,50.50%,66,5.70%,246,21.40%,252,876,21,21.90%,76.20%,1.80%,514,547,1135,48.20% +139920,850,2032,State-funded primary,183,86,97,47.00%,53.00%,3,1.60%,33,18.00%,10,173,0,5.50%,94.50%,0.00%,49,49,183,26.80% +139921,810,2011,State-funded primary,217,105,112,48.40%,51.60%,8,3.70%,21,9.70%,37,180,0,17.10%,82.90%,0.00%,85,80,194,41.20% +139922,810,2012,State-funded primary,349,179,170,51.30%,48.70%,11,3.20%,45,12.90%,54,295,0,15.50%,84.50%,0.00%,233,233,319,73.00% +139924,889,4002,State-funded secondary,266,170,96,63.90%,36.10%,5,1.90%,56,21.10%,8,257,1,3.00%,96.60%,0.40%,114,101,201,50.20% +139925,310,1102,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +139926,312,2022,State-funded primary,107,44,63,41.10%,58.90%,1,0.90%,3,2.80%,59,48,0,55.10%,44.90%,0.00%,10,10,107,9.30% +139927,887,2003,State-funded primary,219,116,103,53.00%,47.00%,2,0.90%,39,17.80%,25,193,1,11.40%,88.10%,0.50%,89,95,210,45.20% +139928,887,2004,State-funded primary,425,196,229,46.10%,53.90%,3,0.70%,45,10.60%,104,321,0,24.50%,75.50%,0.00%,200,203,397,51.10% +139929,926,2047,State-funded primary,315,154,161,48.90%,51.10%,12,3.80%,53,16.80%,70,243,2,22.20%,77.10%,0.60%,165,170,315,54.00% +139930,874,2000,State-funded primary,376,182,194,48.40%,51.60%,15,4.00%,60,16.00%,196,180,0,52.10%,47.90%,0.00%,164,168,376,44.70% +139931,807,2001,State-funded primary,262,113,149,43.10%,56.90%,29,11.10%,32,12.20%,3,259,0,1.10%,98.90%,0.00%,154,156,226,69.00% +139932,373,2016,State-funded primary,410,194,216,47.30%,52.70%,14,3.40%,121,29.50%,110,300,0,26.80%,73.20%,0.00%,239,228,379,60.20% +139934,933,2010,State-funded primary,137,58,79,42.30%,57.70%,7,5.10%,8,5.80%,8,129,0,5.80%,94.20%,0.00%,26,27,137,19.70% +139935,803,2001,State-funded primary,207,109,98,52.70%,47.30%,3,1.40%,12,5.80%,4,196,7,1.90%,94.70%,3.40%,23,28,207,13.50% +139936,937,4003,State-funded secondary,1320,690,630,52.30%,47.70%,17,1.30%,147,11.10%,134,1180,6,10.20%,89.40%,0.50%,384,392,1205,32.50% +139937,937,4005,State-funded secondary,701,351,350,50.10%,49.90%,21,3.00%,125,17.80%,20,680,1,2.90%,97.00%,0.10%,180,201,701,28.70% +139940,213,2004,State-funded primary,188,95,93,50.50%,49.50%,20,10.60%,45,23.90%,114,74,0,60.60%,39.40%,0.00%,92,92,171,53.80% +139941,891,2013,State-funded primary,155,79,76,51.00%,49.00%,0,0.00%,27,17.40%,7,148,0,4.50%,95.50%,0.00%,77,80,155,51.60% +139943,871,2004,State-funded primary,230,115,115,50.00%,50.00%,3,1.30%,60,26.10%,129,101,0,56.10%,43.90%,0.00%,95,100,204,49.00% +139944,850,2037,State-funded primary,221,110,111,49.80%,50.20%,9,4.10%,37,16.70%,23,198,0,10.40%,89.60%,0.00%,43,47,221,21.30% +139945,933,2011,State-funded primary,298,157,141,52.70%,47.30%,4,1.30%,27,9.10%,13,279,6,4.40%,93.60%,2.00%,44,45,298,15.10% +139947,852,2006,State-funded primary,180,91,89,50.60%,49.40%,5,2.80%,32,17.80%,31,149,0,17.20%,82.80%,0.00%,133,133,180,73.90% +139948,936,4000,State-funded secondary,652,317,335,48.60%,51.40%,28,4.30%,99,15.20%,105,547,0,16.10%,83.90%,0.00%,142,175,652,26.80% +139950,881,2092,State-funded primary,204,94,110,46.10%,53.90%,6,2.90%,37,18.10%,31,173,0,15.20%,84.80%,0.00%,58,61,204,29.90% +139951,936,2019,State-funded primary,248,106,142,42.70%,57.30%,24,9.70%,21,8.50%,29,219,0,11.70%,88.30%,0.00%,68,65,213,30.50% +139952,812,2012,State-funded primary,423,216,207,51.10%,48.90%,4,0.90%,46,10.90%,21,402,0,5.00%,95.00%,0.00%,116,116,380,30.50% +139953,895,4000,State-funded secondary,736,387,349,52.60%,47.40%,37,5.00%,98,13.30%,161,575,0,21.90%,78.10%,0.00%,317,339,736,46.10% +139954,879,2001,State-funded primary,96,57,39,59.40%,40.60%,2,2.10%,26,27.10%,7,89,0,7.30%,92.70%,0.00%,28,30,96,31.30% +139955,908,2010,State-funded primary,162,90,72,55.60%,44.40%,0,0.00%,19,11.70%,3,159,0,1.90%,98.10%,0.00%,24,24,162,14.80% +139956,891,4016,State-funded secondary,1161,563,598,48.50%,51.50%,8,0.70%,265,22.80%,57,1057,47,4.90%,91.00%,4.00%,387,400,1075,37.20% +139957,940,4013,State-funded secondary,1240,611,629,49.30%,50.70%,24,1.90%,175,14.10%,264,975,1,21.30%,78.60%,0.10%,360,378,1113,34.00% +139958,938,2020,State-funded primary,543,255,288,47.00%,53.00%,8,1.50%,70,12.90%,188,355,0,34.60%,65.40%,0.00%,146,146,543,26.90% +139959,808,2015,State-funded primary,259,126,133,48.60%,51.40%,6,2.30%,69,26.60%,33,226,0,12.70%,87.30%,0.00%,183,175,242,72.30% +139960,908,2012,State-funded primary,200,101,99,50.50%,49.50%,6,3.00%,22,11.00%,18,182,0,9.00%,91.00%,0.00%,72,67,172,39.00% +139961,940,4014,State-funded secondary,1365,678,687,49.70%,50.30%,12,0.90%,186,13.60%,354,940,71,25.90%,68.90%,5.20%,340,372,1224,30.40% +139962,330,6015,Independent school,7,4,3,57.10%,42.90%,2,28.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139963,869,6017,Independent school,12,3,9,25.00%,75.00%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139965,319,2004,State-funded primary,357,162,195,45.40%,54.60%,7,2.00%,46,12.90%,98,257,2,27.50%,72.00%,0.60%,82,88,357,24.60% +139966,305,2023,State-funded primary,379,202,177,53.30%,46.70%,2,0.50%,33,8.70%,146,213,20,38.50%,56.20%,5.30%,107,115,351,32.80% +139967,851,7000,State-funded special school,215,54,161,25.10%,74.90%,182,84.70%,33,15.30%,49,166,0,22.80%,77.20%,0.00%,100,101,183,55.20% +139968,810,2013,State-funded primary,466,220,246,47.20%,52.80%,6,1.30%,102,21.90%,35,431,0,7.50%,92.50%,0.00%,100,102,418,24.40% +139971,868,4001,State-funded secondary,576,292,284,50.70%,49.30%,23,4.00%,82,14.20%,33,539,4,5.70%,93.60%,0.70%,40,40,390,10.30% +139972,870,2017,State-funded primary,350,161,189,46.00%,54.00%,6,1.70%,46,13.10%,35,310,5,10.00%,88.60%,1.40%,11,12,350,3.40% +139973,206,6000,Independent school,23,11,12,47.80%,52.20%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139974,808,7029,State-funded special school,359,116,243,32.30%,67.70%,359,100.00%,0,0.00%,20,339,0,5.60%,94.40%,0.00%,166,148,282,52.50% +139975,380,4064,State-funded secondary,1632,798,834,48.90%,51.10%,51,3.10%,357,21.90%,247,1370,15,15.10%,83.90%,0.90%,200,220,1359,16.20% +139976,805,7026,State-funded special school,202,82,120,40.60%,59.40%,202,100.00%,0,0.00%,4,198,0,2.00%,98.00%,0.00%,113,96,158,60.80% +139977,380,7034,State-funded special school,155,52,103,33.50%,66.50%,155,100.00%,0,0.00%,60,90,5,38.70%,58.10%,3.20%,55,41,109,37.60% +139978,380,7033,State-funded special school,310,99,211,31.90%,68.10%,310,100.00%,0,0.00%,161,147,2,51.90%,47.40%,0.60%,138,93,198,47.00% +139980,865,3401,State-funded primary,195,99,96,50.80%,49.20%,6,3.10%,20,10.30%,9,186,0,4.60%,95.40%,0.00%,15,15,195,7.70% +139981,812,3517,State-funded primary,230,101,129,43.90%,56.10%,3,1.30%,24,10.40%,15,215,0,6.50%,93.50%,0.00%,69,77,204,37.70% +139983,856,2237,State-funded primary,352,171,181,48.60%,51.40%,5,1.40%,41,11.60%,105,247,0,29.80%,70.20%,0.00%,92,92,352,26.10% +139984,305,3001,State-funded primary,606,303,303,50.00%,50.00%,17,2.80%,81,13.40%,141,461,4,23.30%,76.10%,0.70%,100,101,606,16.70% +139985,931,2593,State-funded primary,476,236,240,49.60%,50.40%,9,1.90%,88,18.50%,127,349,0,26.70%,73.30%,0.00%,185,188,386,48.70% +139986,373,3427,State-funded primary,211,106,105,50.20%,49.80%,3,1.40%,32,15.20%,131,77,3,62.10%,36.50%,1.40%,76,83,211,39.30% +139987,916,3038,State-funded primary,103,54,49,52.40%,47.60%,2,1.90%,18,17.50%,4,99,0,3.90%,96.10%,0.00%,8,8,103,7.80% +139988,940,4094,State-funded secondary,914,457,457,50.00%,50.00%,19,2.10%,21,2.30%,33,881,0,3.60%,96.40%,0.00%,148,164,825,19.90% +139989,313,4600,State-funded secondary,923,920,3,99.70%,0.30%,9,1.00%,96,10.40%,502,421,0,54.40%,45.60%,0.00%,214,188,773,24.30% +139990,822,3004,State-funded primary,352,174,178,49.40%,50.60%,11,3.10%,36,10.20%,42,310,0,11.90%,88.10%,0.00%,55,56,352,15.90% +139991,883,2592,State-funded primary,442,226,216,51.10%,48.90%,15,3.40%,77,17.40%,159,282,1,36.00%,63.80%,0.20%,121,128,414,30.90% +139992,372,4011,State-funded secondary,987,453,534,45.90%,54.10%,18,1.80%,175,17.70%,28,951,8,2.80%,96.40%,0.80%,295,333,987,33.70% +139993,936,4462,State-funded secondary,1199,557,642,46.50%,53.50%,49,4.10%,154,12.80%,129,1019,51,10.80%,85.00%,4.30%,174,204,1198,17.00% +139994,330,4246,State-funded secondary,942,411,531,43.60%,56.40%,11,1.20%,147,15.60%,630,310,2,66.90%,32.90%,0.20%,336,440,942,46.70% +139995,380,4019,State-funded secondary,881,326,555,37.00%,63.00%,33,3.70%,152,17.30%,651,230,0,73.90%,26.10%,0.00%,352,359,811,44.30% +139997,931,6014,Independent school,13,5,8,38.50%,61.50%,11,84.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +139999,351,2001,State-funded primary,256,132,124,51.60%,48.40%,9,3.50%,64,25.00%,57,199,0,22.30%,77.70%,0.00%,130,134,232,57.80% +140001,340,4000,State-funded secondary,949,471,478,49.60%,50.40%,33,3.50%,224,23.60%,62,868,19,6.50%,91.50%,2.00%,549,574,949,60.50% +140002,929,4002,State-funded secondary,782,385,397,49.20%,50.80%,20,2.60%,101,12.90%,23,752,7,2.90%,96.20%,0.90%,390,418,782,53.50% +140003,384,2008,State-funded primary,210,104,106,49.50%,50.50%,5,2.40%,19,9.00%,10,194,6,4.80%,92.40%,2.90%,45,46,191,24.10% +140004,937,2015,State-funded primary,477,233,244,48.80%,51.20%,6,1.30%,57,11.90%,42,435,0,8.80%,91.20%,0.00%,187,173,413,41.90% +140007,839,4004,State-funded secondary,929,1,928,0.10%,99.90%,19,2.00%,188,20.20%,132,797,0,14.20%,85.80%,0.00%,148,167,929,18.00% +140008,839,4005,State-funded secondary,895,895,0,100.00%,0.00%,14,1.60%,110,12.30%,138,755,2,15.40%,84.40%,0.20%,172,189,895,21.10% +140012,886,2028,State-funded primary,828,421,407,50.80%,49.20%,24,2.90%,116,14.00%,228,600,0,27.50%,72.50%,0.00%,401,415,802,51.70% +140013,883,2006,State-funded primary,500,227,273,45.40%,54.60%,36,7.20%,49,9.80%,13,486,1,2.60%,97.20%,0.20%,76,81,412,19.70% +140014,330,4013,State-funded secondary,910,428,482,47.00%,53.00%,8,0.90%,133,14.60%,591,319,0,64.90%,35.10%,0.00%,458,577,910,63.40% +140016,926,2048,State-funded primary,384,187,197,48.70%,51.30%,13,3.40%,46,12.00%,57,327,0,14.80%,85.20%,0.00%,130,134,358,37.40% +140017,892,2008,State-funded primary,301,149,152,49.50%,50.50%,3,1.00%,28,9.30%,39,262,0,13.00%,87.00%,0.00%,124,120,263,45.60% +140018,815,2000,State-funded primary,197,97,100,49.20%,50.80%,7,3.60%,50,25.40%,48,146,3,24.40%,74.10%,1.50%,101,99,186,53.20% +140019,881,2093,State-funded primary,408,209,199,51.20%,48.80%,10,2.50%,25,6.10%,102,304,2,25.00%,74.50%,0.50%,107,113,408,27.70% +140020,908,2015,State-funded primary,257,130,127,50.60%,49.40%,7,2.70%,37,14.40%,9,248,0,3.50%,96.50%,0.00%,71,69,244,28.30% +140021,890,4001,State-funded secondary,779,368,411,47.20%,52.80%,34,4.40%,222,28.50%,122,650,7,15.70%,83.40%,0.90%,470,514,779,66.00% +140022,311,2004,State-funded primary,366,161,205,44.00%,56.00%,14,3.80%,36,9.80%,126,240,0,34.40%,65.60%,0.00%,120,125,329,38.00% +140023,384,2009,State-funded primary,321,155,166,48.30%,51.70%,6,1.90%,55,17.10%,16,303,2,5.00%,94.40%,0.60%,160,162,300,54.00% +140024,881,2094,State-funded primary,461,220,241,47.70%,52.30%,10,2.20%,32,6.90%,104,357,0,22.60%,77.40%,0.00%,171,174,413,42.10% +140025,373,2017,State-funded primary,214,106,108,49.50%,50.50%,7,3.30%,27,12.60%,34,180,0,15.90%,84.10%,0.00%,34,36,214,16.80% +140026,936,2020,State-funded primary,222,99,123,44.60%,55.40%,3,1.40%,20,9.00%,10,212,0,4.50%,95.50%,0.00%,23,23,222,10.40% +140027,908,2016,State-funded primary,363,180,183,49.60%,50.40%,6,1.70%,46,12.70%,12,345,6,3.30%,95.00%,1.70%,97,99,363,27.30% +140028,936,2021,State-funded primary,410,202,208,49.30%,50.70%,13,3.20%,124,30.20%,56,353,1,13.70%,86.10%,0.20%,133,135,410,32.90% +140030,940,2120,State-funded primary,223,117,106,52.50%,47.50%,1,0.40%,13,5.80%,14,209,0,6.30%,93.70%,0.00%,38,39,223,17.50% +140031,874,2001,State-funded primary,205,104,101,50.70%,49.30%,5,2.40%,21,10.20%,58,141,6,28.30%,68.80%,2.90%,70,70,205,34.10% +140032,935,4034,State-funded secondary,742,357,385,48.10%,51.90%,21,2.80%,105,14.20%,293,435,14,39.50%,58.60%,1.90%,259,291,742,39.20% +140033,926,2050,State-funded primary,183,84,99,45.90%,54.10%,5,2.70%,29,15.80%,73,110,0,39.90%,60.10%,0.00%,48,49,149,32.90% +140034,936,2022,State-funded primary,624,305,319,48.90%,51.10%,15,2.40%,50,8.00%,139,485,0,22.30%,77.70%,0.00%,97,99,624,15.90% +140036,355,6000,Independent school,74,0,74,0.00%,100.00%,0,0.00%,3,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140037,919,4017,State-funded secondary,973,483,490,49.60%,50.40%,31,3.20%,176,18.10%,97,861,15,10.00%,88.50%,1.50%,165,176,882,20.00% +140039,303,6001,Independent school,41,14,27,34.10%,65.90%,25,61.00%,13,31.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140040,887,2006,State-funded primary,410,212,198,51.70%,48.30%,8,2.00%,59,14.40%,164,246,0,40.00%,60.00%,0.00%,212,214,410,52.20% +140041,885,2005,State-funded primary,594,284,310,47.80%,52.20%,16,2.70%,116,19.50%,50,544,0,8.40%,91.60%,0.00%,239,239,480,49.80% +140043,874,2002,State-funded primary,409,200,209,48.90%,51.10%,6,1.50%,64,15.60%,187,221,1,45.70%,54.00%,0.20%,203,205,409,50.10% +140044,935,2010,State-funded primary,404,202,202,50.00%,50.00%,12,3.00%,100,24.80%,107,297,0,26.50%,73.50%,0.00%,89,95,379,25.10% +140045,306,2036,State-funded primary,541,252,289,46.60%,53.40%,10,1.80%,70,12.90%,145,395,1,26.80%,73.00%,0.20%,272,278,503,55.30% +140046,850,6090,Independent school,54,12,42,22.20%,77.80%,54,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140047,935,4035,State-funded secondary,482,223,259,46.30%,53.70%,48,10.00%,109,22.60%,19,463,0,3.90%,96.10%,0.00%,98,115,482,23.90% +140048,938,2188,State-funded primary,616,303,313,49.20%,50.80%,5,0.80%,97,15.70%,27,589,0,4.40%,95.60%,0.00%,79,81,616,13.10% +140049,919,4111,State-funded secondary,1319,634,685,48.10%,51.90%,23,1.70%,171,13.00%,595,720,4,45.10%,54.60%,0.30%,271,278,1110,25.00% +140050,213,2244,State-funded primary,605,305,300,50.40%,49.60%,26,4.30%,87,14.40%,550,55,0,90.90%,9.10%,0.00%,302,287,548,52.40% +140051,940,2028,State-funded primary,246,123,123,50.00%,50.00%,2,0.80%,27,11.00%,10,229,7,4.10%,93.10%,2.80%,41,41,246,16.70% +140052,352,2014,State-funded primary,221,115,106,52.00%,48.00%,2,0.90%,47,21.30%,68,153,0,30.80%,69.20%,0.00%,112,105,195,53.80% +140053,359,3027,State-funded primary,241,101,140,41.90%,58.10%,6,2.50%,17,7.10%,19,222,0,7.90%,92.10%,0.00%,54,48,201,23.90% +140054,940,2027,State-funded primary,338,160,178,47.30%,52.70%,10,3.00%,63,18.60%,2,325,11,0.60%,96.20%,3.30%,69,73,338,21.60% +140055,354,5400,State-funded secondary,1296,661,635,51.00%,49.00%,51,3.90%,131,10.10%,130,1166,0,10.00%,90.00%,0.00%,313,360,1296,27.80% +140056,941,3007,State-funded primary,52,27,25,51.90%,48.10%,2,3.80%,2,3.80%,0,52,0,0.00%,100.00%,0.00%,4,5,47,10.60% +140057,936,2374,State-funded primary,645,316,329,49.00%,51.00%,12,1.90%,114,17.70%,117,527,1,18.10%,81.70%,0.20%,47,50,645,7.80% +140058,941,3307,State-funded primary,90,39,51,43.30%,56.70%,1,1.10%,23,25.60%,5,85,0,5.60%,94.40%,0.00%,8,12,90,13.30% +140059,940,2156,State-funded primary,444,223,221,50.20%,49.80%,15,3.40%,59,13.30%,16,426,2,3.60%,95.90%,0.50%,80,82,392,20.90% +140060,941,2073,State-funded primary,74,33,41,44.60%,55.40%,0,0.00%,7,9.50%,2,70,2,2.70%,94.60%,2.70%,2,2,74,2.70% +140061,940,2081,State-funded primary,302,156,146,51.70%,48.30%,3,1.00%,22,7.30%,16,281,5,5.30%,93.00%,1.70%,54,57,252,22.60% +140062,933,3191,State-funded primary,232,110,122,47.40%,52.60%,9,3.90%,23,9.90%,39,193,0,16.80%,83.20%,0.00%,44,46,232,19.80% +140064,211,2145,State-funded primary,684,326,358,47.70%,52.30%,52,7.60%,23,3.40%,291,391,2,42.50%,57.20%,0.30%,241,234,608,38.50% +140065,941,3312,State-funded primary,114,52,62,45.60%,54.40%,1,0.90%,6,5.30%,1,113,0,0.90%,99.10%,0.00%,7,7,88,8.00% +140066,313,6005,Independent school,596,246,350,41.30%,58.70%,5,0.80%,259,43.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140067,839,7015,State-funded special school,108,15,93,13.90%,86.10%,108,100.00%,0,0.00%,1,107,0,0.90%,99.10%,0.00%,64,67,108,62.00% +140068,383,2395,State-funded primary,246,117,129,47.60%,52.40%,1,0.40%,23,9.30%,4,242,0,1.60%,98.40%,0.00%,35,37,225,16.40% +140069,850,4308,State-funded secondary,853,440,413,51.60%,48.40%,59,6.90%,147,17.20%,48,803,2,5.60%,94.10%,0.20%,224,252,853,29.50% +140070,830,3519,State-funded primary,267,151,116,56.60%,43.40%,1,0.40%,46,17.20%,30,237,0,11.20%,88.80%,0.00%,46,46,267,17.20% +140071,891,2310,State-funded primary,655,322,333,49.20%,50.80%,8,1.20%,76,11.60%,84,571,0,12.80%,87.20%,0.00%,142,145,655,22.10% +140072,808,2355,State-funded primary,230,112,118,48.70%,51.30%,5,2.20%,29,12.60%,13,217,0,5.70%,94.30%,0.00%,140,135,203,66.50% +140073,940,2080,State-funded primary,357,174,183,48.70%,51.30%,8,2.20%,49,13.70%,21,332,4,5.90%,93.00%,1.10%,98,103,357,28.90% +140074,940,2088,State-funded primary,99,54,45,54.50%,45.50%,3,3.00%,10,10.10%,8,91,0,8.10%,91.90%,0.00%,13,13,99,13.10% +140075,823,2051,State-funded primary,52,24,28,46.20%,53.80%,2,3.80%,10,19.20%,1,51,0,1.90%,98.10%,0.00%,5,5,52,9.60% +140076,380,2114,State-funded primary,210,109,101,51.90%,48.10%,5,2.40%,33,15.70%,1,209,0,0.50%,99.50%,0.00%,24,24,210,11.40% +140077,815,1101,State-funded AP school,14,4,10,28.60%,71.40%,2,14.30%,12,85.70%,0,14,0,0.00%,100.00%,0.00%,6,6,14,42.90% +140078,878,2003,State-funded primary,196,92,104,46.90%,53.10%,6,3.10%,31,15.80%,1,195,0,0.50%,99.50%,0.00%,26,26,196,13.30% +140079,800,7036,State-funded special school,230,83,147,36.10%,63.90%,229,99.60%,1,0.40%,6,224,0,2.60%,97.40%,0.00%,101,88,199,44.20% +140080,305,2000,State-funded primary,233,106,127,45.50%,54.50%,7,3.00%,33,14.20%,46,187,0,19.70%,80.30%,0.00%,36,39,233,16.70% +140081,391,4714,State-funded secondary,1434,719,715,50.10%,49.90%,22,1.50%,128,8.90%,332,1100,2,23.20%,76.70%,0.10%,273,276,1173,23.50% +140082,305,5203,State-funded primary,267,143,124,53.60%,46.40%,1,0.40%,3,1.10%,67,200,0,25.10%,74.90%,0.00%,5,5,267,1.90% +140083,895,2165,State-funded primary,419,207,212,49.40%,50.60%,15,3.60%,27,6.40%,12,407,0,2.90%,97.10%,0.00%,27,28,419,6.70% +140084,936,2489,State-funded primary,268,125,143,46.60%,53.40%,3,1.10%,22,8.20%,85,179,4,31.70%,66.80%,1.50%,15,15,268,5.60% +140085,384,2078,State-funded primary,462,248,214,53.70%,46.30%,12,2.60%,21,4.50%,21,441,0,4.50%,95.50%,0.00%,20,25,414,6.00% +140087,359,3022,State-funded primary,220,108,112,49.10%,50.90%,5,2.30%,44,20.00%,24,196,0,10.90%,89.10%,0.00%,72,71,201,35.30% +140088,305,5206,State-funded primary,432,207,225,47.90%,52.10%,38,8.80%,40,9.30%,103,329,0,23.80%,76.20%,0.00%,30,31,432,7.20% +140089,938,3374,State-funded primary,676,330,346,48.80%,51.20%,22,3.30%,98,14.50%,110,566,0,16.30%,83.70%,0.00%,167,173,642,26.90% +140090,936,2373,State-funded primary,262,123,139,46.90%,53.10%,9,3.40%,34,13.00%,33,229,0,12.60%,87.40%,0.00%,37,33,232,14.20% +140091,354,5401,State-funded secondary,1341,655,686,48.80%,51.20%,47,3.50%,149,11.10%,163,1167,11,12.20%,87.00%,0.80%,293,343,1341,25.60% +140092,880,3618,State-funded primary,333,175,158,52.60%,47.40%,10,3.00%,42,12.60%,43,275,15,12.90%,82.60%,4.50%,94,91,305,29.80% +140093,896,7105,State-funded special school,120,5,115,4.20%,95.80%,120,100.00%,0,0.00%,0,120,0,0.00%,100.00%,0.00%,90,85,110,77.30% +140094,940,3082,State-funded primary,86,47,39,54.70%,45.30%,1,1.20%,8,9.30%,0,86,0,0.00%,100.00%,0.00%,8,8,86,9.30% +140095,855,3067,State-funded primary,143,62,81,43.40%,56.60%,1,0.70%,20,14.00%,0,143,0,0.00%,100.00%,0.00%,15,16,143,11.20% +140096,211,2001,State-funded primary,666,323,343,48.50%,51.50%,15,2.30%,21,3.20%,308,358,0,46.20%,53.80%,0.00%,306,296,584,50.70% +140097,896,2307,State-funded primary,184,95,89,51.60%,48.40%,8,4.30%,35,19.00%,8,176,0,4.30%,95.70%,0.00%,107,110,184,59.80% +140098,850,3365,State-funded primary,319,148,171,46.40%,53.60%,9,2.80%,23,7.20%,13,306,0,4.10%,95.90%,0.00%,29,30,319,9.40% +140100,353,2022,State-funded primary,245,136,109,55.50%,44.50%,8,3.30%,32,13.10%,136,109,0,55.50%,44.50%,0.00%,47,48,210,22.90% +140101,855,2326,State-funded primary,383,197,186,51.40%,48.60%,4,1.00%,43,11.20%,7,376,0,1.80%,98.20%,0.00%,74,79,383,20.60% +140102,941,3344,State-funded primary,50,23,27,46.00%,54.00%,2,4.00%,12,24.00%,2,48,0,4.00%,96.00%,0.00%,11,11,47,23.40% +140103,855,4026,State-funded secondary,845,417,428,49.30%,50.70%,15,1.80%,88,10.40%,39,806,0,4.60%,95.40%,0.00%,109,124,845,14.70% +140104,879,4185,State-funded secondary,1059,485,574,45.80%,54.20%,28,2.60%,141,13.30%,50,1007,2,4.70%,95.10%,0.20%,202,198,935,21.20% +140105,938,4001,State-funded secondary,1353,688,665,50.80%,49.20%,21,1.60%,284,21.00%,105,1248,0,7.80%,92.20%,0.00%,286,315,1193,26.40% +140107,381,2027,State-funded primary,203,96,107,47.30%,52.70%,0,0.00%,26,12.80%,2,201,0,1.00%,99.00%,0.00%,14,15,203,7.40% +140108,895,4121,State-funded secondary,1568,768,800,49.00%,51.00%,39,2.50%,73,4.70%,52,1516,0,3.30%,96.70%,0.00%,183,182,1301,14.00% +140109,372,2139,State-funded primary,253,120,133,47.40%,52.60%,2,0.80%,38,15.00%,33,220,0,13.00%,87.00%,0.00%,125,127,205,62.00% +140110,384,3003,State-funded primary,126,74,52,58.70%,41.30%,2,1.60%,14,11.10%,3,123,0,2.40%,97.60%,0.00%,13,14,103,13.60% +140111,380,2195,State-funded primary,669,330,339,49.30%,50.70%,7,1.00%,111,16.60%,526,143,0,78.60%,21.40%,0.00%,110,120,625,19.20% +140112,865,3366,State-funded primary,102,52,50,51.00%,49.00%,4,3.90%,17,16.70%,3,99,0,2.90%,97.10%,0.00%,17,21,102,20.60% +140113,306,2109,State-funded primary,198,94,104,47.50%,52.50%,2,1.00%,27,13.60%,72,126,0,36.40%,63.60%,0.00%,129,131,198,66.20% +140114,861,3403,State-funded primary,238,122,116,51.30%,48.70%,5,2.10%,29,12.20%,25,213,0,10.50%,89.50%,0.00%,53,45,211,21.30% +140115,372,2093,State-funded primary,206,114,92,55.30%,44.70%,3,1.50%,24,11.70%,23,183,0,11.20%,88.80%,0.00%,24,24,206,11.70% +140116,372,2111,State-funded primary,239,111,128,46.40%,53.60%,5,2.10%,27,11.30%,38,201,0,15.90%,84.10%,0.00%,37,37,213,17.40% +140117,936,4190,State-funded secondary,1502,756,746,50.30%,49.70%,33,2.20%,144,9.60%,183,1182,137,12.20%,78.70%,9.10%,94,115,1502,7.70% +140119,811,2728,State-funded primary,93,36,57,38.70%,61.30%,5,5.40%,5,5.40%,0,93,0,0.00%,100.00%,0.00%,6,7,93,7.50% +140120,940,3513,State-funded primary,417,218,199,52.30%,47.70%,5,1.20%,45,10.80%,138,269,10,33.10%,64.50%,2.40%,48,49,417,11.80% +140121,935,1113,State-funded AP school,17,6,11,35.30%,64.70%,2,11.80%,15,88.20%,0,17,0,0.00%,100.00%,0.00%,13,13,17,76.50% +140122,310,7004,State-funded special school,80,23,57,28.80%,71.30%,80,100.00%,0,0.00%,34,43,3,42.50%,53.80%,3.80%,31,32,80,40.00% +140123,860,4112,State-funded secondary,903,462,441,51.20%,48.80%,16,1.80%,85,9.40%,26,877,0,2.90%,97.10%,0.00%,112,114,742,15.40% +140124,890,2211,State-funded primary,613,319,294,52.00%,48.00%,3,0.50%,68,11.10%,6,607,0,1.00%,99.00%,0.00%,107,107,613,17.50% +140125,937,3007,State-funded primary,90,45,45,50.00%,50.00%,4,4.40%,21,23.30%,0,90,0,0.00%,100.00%,0.00%,17,18,90,20.00% +140126,332,4800,State-funded secondary,861,439,422,51.00%,49.00%,24,2.80%,98,11.40%,159,702,0,18.50%,81.50%,0.00%,210,220,743,29.60% +140127,937,3594,State-funded primary,437,218,219,49.90%,50.10%,15,3.40%,57,13.00%,92,344,1,21.10%,78.70%,0.20%,71,73,437,16.70% +140128,890,3814,State-funded primary,450,239,211,53.10%,46.90%,8,1.80%,119,26.40%,69,381,0,15.30%,84.70%,0.00%,272,275,407,67.60% +140129,860,3477,State-funded primary,118,60,58,50.80%,49.20%,3,2.50%,18,15.30%,12,106,0,10.20%,89.80%,0.00%,40,40,106,37.70% +140130,352,2113,State-funded primary,483,240,243,49.70%,50.30%,21,4.30%,41,8.50%,307,176,0,63.60%,36.40%,0.00%,206,182,423,43.00% +140133,357,7001,State-funded special school,196,42,154,21.40%,78.60%,195,99.50%,1,0.50%,12,184,0,6.10%,93.90%,0.00%,84,85,196,43.40% +140135,937,2059,State-funded primary,136,62,74,45.60%,54.40%,11,8.10%,19,14.00%,1,135,0,0.70%,99.30%,0.00%,38,39,123,31.70% +140136,333,2057,State-funded primary,213,123,90,57.70%,42.30%,7,3.30%,26,12.20%,33,180,0,15.50%,84.50%,0.00%,105,108,189,57.10% +140137,352,2141,State-funded primary,486,246,240,50.60%,49.40%,16,3.30%,52,10.70%,320,166,0,65.80%,34.20%,0.00%,183,176,426,41.30% +140138,210,7064,State-funded special school,67,0,67,0.00%,100.00%,65,97.00%,2,3.00%,5,62,0,7.50%,92.50%,0.00%,38,47,67,70.10% +140139,937,3047,State-funded primary,96,51,45,53.10%,46.90%,0,0.00%,10,10.40%,0,96,0,0.00%,100.00%,0.00%,16,17,87,19.50% +140140,333,2061,State-funded primary,254,123,131,48.40%,51.60%,19,7.50%,34,13.40%,46,208,0,18.10%,81.90%,0.00%,87,93,254,36.60% +140141,861,3405,State-funded primary,214,107,107,50.00%,50.00%,4,1.90%,34,15.90%,37,177,0,17.30%,82.70%,0.00%,106,95,195,48.70% +140142,358,2018,State-funded primary,466,236,230,50.60%,49.40%,5,1.10%,25,5.40%,109,357,0,23.40%,76.60%,0.00%,9,10,434,2.30% +140143,890,7019,State-funded special school,322,106,216,32.90%,67.10%,322,100.00%,0,0.00%,9,313,0,2.80%,97.20%,0.00%,196,177,263,67.30% +140144,332,3304,State-funded primary,234,112,122,47.90%,52.10%,3,1.30%,28,12.00%,26,208,0,11.10%,88.90%,0.00%,38,38,209,18.20% +140145,861,3406,State-funded primary,220,101,119,45.90%,54.10%,9,4.10%,42,19.10%,33,187,0,15.00%,85.00%,0.00%,58,51,194,26.30% +140146,860,3462,State-funded primary,189,110,79,58.20%,41.80%,6,3.20%,42,22.20%,16,173,0,8.50%,91.50%,0.00%,59,61,159,38.40% +140147,332,3302,State-funded primary,249,112,137,45.00%,55.00%,8,3.20%,22,8.80%,142,107,0,57.00%,43.00%,0.00%,55,57,213,26.80% +140148,861,3400,State-funded primary,235,123,112,52.30%,47.70%,5,2.10%,36,15.30%,36,199,0,15.30%,84.70%,0.00%,82,75,192,39.10% +140149,861,4711,State-funded secondary,1157,612,545,52.90%,47.10%,25,2.20%,129,11.10%,367,790,0,31.70%,68.30%,0.00%,341,359,1047,34.30% +140150,861,3402,State-funded primary,237,103,134,43.50%,56.50%,4,1.70%,44,18.60%,158,79,0,66.70%,33.30%,0.00%,84,75,208,36.10% +140151,861,3487,State-funded primary,335,196,139,58.50%,41.50%,4,1.20%,48,14.30%,99,236,0,29.60%,70.40%,0.00%,92,88,308,28.60% +140152,937,3072,State-funded primary,142,67,75,47.20%,52.80%,4,2.80%,19,13.40%,2,140,0,1.40%,98.60%,0.00%,26,26,142,18.30% +140153,937,2642,State-funded primary,210,104,106,49.50%,50.50%,4,1.90%,28,13.30%,2,208,0,1.00%,99.00%,0.00%,36,36,210,17.10% +140154,860,4090,State-funded secondary,704,357,347,50.70%,49.30%,20,2.80%,43,6.10%,16,687,1,2.30%,97.60%,0.10%,65,80,704,11.40% +140158,313,2005,State-funded primary,412,199,213,48.30%,51.70%,12,2.90%,70,17.00%,192,212,8,46.60%,51.50%,1.90%,139,151,388,38.90% +140159,330,2140,State-funded primary,337,183,154,54.30%,45.70%,5,1.50%,76,22.60%,62,273,2,18.40%,81.00%,0.60%,233,247,337,73.30% +140160,336,4006,State-funded secondary,704,337,367,47.90%,52.10%,5,0.70%,90,12.80%,236,467,1,33.50%,66.30%,0.10%,325,323,614,52.60% +140161,330,2141,State-funded primary,219,112,107,51.10%,48.90%,1,0.50%,39,17.80%,146,73,0,66.70%,33.30%,0.00%,135,140,202,69.30% +140167,886,2029,State-funded primary,384,198,186,51.60%,48.40%,18,4.70%,76,19.80%,90,294,0,23.40%,76.60%,0.00%,175,180,359,50.10% +140168,886,2030,State-funded primary,381,192,189,50.40%,49.60%,4,1.00%,53,13.90%,15,366,0,3.90%,96.10%,0.00%,70,76,381,19.90% +140169,810,2014,State-funded primary,228,119,109,52.20%,47.80%,2,0.90%,28,12.30%,31,197,0,13.60%,86.40%,0.00%,96,92,206,44.70% +140170,372,2085,State-funded primary,318,143,175,45.00%,55.00%,19,6.00%,71,22.30%,15,303,0,4.70%,95.30%,0.00%,111,116,272,42.60% +140172,381,2005,State-funded primary,218,108,110,49.50%,50.50%,2,0.90%,33,15.10%,6,212,0,2.80%,97.20%,0.00%,96,94,197,47.70% +140173,873,2020,State-funded primary,326,161,165,49.40%,50.60%,18,5.50%,33,10.10%,161,165,0,49.40%,50.60%,0.00%,152,152,326,46.60% +140174,873,2022,State-funded primary,242,127,115,52.50%,47.50%,10,4.10%,33,13.60%,141,101,0,58.30%,41.70%,0.00%,73,73,242,30.20% +140175,895,2001,State-funded primary,467,219,248,46.90%,53.10%,10,2.10%,58,12.40%,114,353,0,24.40%,75.60%,0.00%,197,182,392,46.40% +140179,845,2007,State-funded primary,380,185,195,48.70%,51.30%,14,3.70%,78,20.50%,33,347,0,8.70%,91.30%,0.00%,100,100,380,26.30% +140180,881,2095,State-funded primary,270,117,153,43.30%,56.70%,4,1.50%,39,14.40%,4,266,0,1.50%,98.50%,0.00%,74,77,270,28.50% +140181,881,2096,State-funded primary,196,101,95,51.50%,48.50%,3,1.50%,35,17.90%,7,170,19,3.60%,86.70%,9.70%,59,60,196,30.60% +140182,850,4007,State-funded secondary,830,439,391,52.90%,47.10%,31,3.70%,104,12.50%,64,761,5,7.70%,91.70%,0.60%,205,226,830,27.20% +140183,884,2002,State-funded primary,221,111,110,50.20%,49.80%,3,1.40%,30,13.60%,118,103,0,53.40%,46.60%,0.00%,54,49,187,26.20% +140184,810,2015,State-funded primary,430,207,223,48.10%,51.90%,9,2.10%,68,15.80%,85,345,0,19.80%,80.20%,0.00%,165,167,387,43.20% +140185,925,2015,State-funded primary,183,88,95,48.10%,51.90%,5,2.70%,41,22.40%,3,180,0,1.60%,98.40%,0.00%,114,114,183,62.30% +140186,887,2007,State-funded primary,410,190,220,46.30%,53.70%,9,2.20%,52,12.70%,43,367,0,10.50%,89.50%,0.00%,109,108,385,28.10% +140188,926,4009,State-funded secondary,1108,544,564,49.10%,50.90%,23,2.10%,136,12.30%,115,992,1,10.40%,89.50%,0.10%,171,195,1108,17.60% +140189,926,2052,State-funded primary,303,141,162,46.50%,53.50%,6,2.00%,37,12.20%,1,293,9,0.30%,96.70%,3.00%,63,63,268,23.50% +140190,941,2126,State-funded primary,160,78,82,48.80%,51.30%,1,0.60%,18,11.30%,43,117,0,26.90%,73.10%,0.00%,45,46,160,28.80% +140191,940,2139,State-funded primary,456,216,240,47.40%,52.60%,6,1.30%,76,16.70%,127,328,1,27.90%,71.90%,0.20%,127,129,403,32.00% +140193,940,2142,State-funded primary,415,210,205,50.60%,49.40%,16,3.90%,45,10.80%,258,156,1,62.20%,37.60%,0.20%,100,104,415,25.10% +140195,860,2005,State-funded primary,401,203,198,50.60%,49.40%,12,3.00%,65,16.20%,23,378,0,5.70%,94.30%,0.00%,105,110,370,29.70% +140196,335,2017,State-funded primary,439,222,217,50.60%,49.40%,6,1.40%,63,14.40%,79,359,1,18.00%,81.80%,0.20%,241,239,404,59.20% +140197,320,7003,State-funded special school,102,43,59,42.20%,57.80%,101,99.00%,1,1.00%,35,66,1,34.30%,64.70%,1.00%,48,37,78,47.40% +140198,937,2019,State-funded primary,350,172,178,49.10%,50.90%,9,2.60%,62,17.70%,33,317,0,9.40%,90.60%,0.00%,125,126,350,36.00% +140199,938,4007,State-funded secondary,654,316,338,48.30%,51.70%,9,1.40%,113,17.30%,33,621,0,5.00%,95.00%,0.00%,117,145,654,22.20% +140200,890,6002,State-funded primary,97,44,53,45.40%,54.60%,3,3.10%,26,26.80%,17,80,0,17.50%,82.50%,0.00%,24,26,97,26.80% +140201,205,6394,State-funded AP school,20,5,15,25.00%,75.00%,20,100.00%,0,0.00%,3,17,0,15.00%,85.00%,0.00%,7,13,20,65.00% +140203,936,6572,State-funded primary,40,22,18,55.00%,45.00%,1,2.50%,0,0.00%,2,38,0,5.00%,95.00%,0.00%,1,1,40,2.50% +140204,380,6102,State-funded secondary,1031,883,148,85.60%,14.40%,17,1.60%,93,9.00%,310,696,25,30.10%,67.50%,2.40%,288,310,1031,30.10% +140205,351,6002,Independent school,12,4,8,33.30%,66.70%,11,91.70%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140206,803,6010,Independent school,42,15,27,35.70%,64.30%,1,2.40%,8,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140207,825,2015,State-funded primary,226,117,109,51.80%,48.20%,5,2.20%,23,10.20%,35,191,0,15.50%,84.50%,0.00%,42,41,206,19.90% +140208,306,2040,State-funded primary,365,193,172,52.90%,47.10%,7,1.90%,46,12.60%,94,246,25,25.80%,67.40%,6.80%,105,108,365,29.60% +140209,306,2045,State-funded secondary,471,204,267,43.30%,56.70%,17,3.60%,80,17.00%,191,279,1,40.60%,59.20%,0.20%,236,267,471,56.70% +140210,204,4003,State-funded secondary,836,388,448,46.40%,53.60%,35,4.20%,114,13.60%,298,537,1,35.60%,64.20%,0.10%,335,365,836,43.70% +140211,850,2038,State-funded primary,422,205,217,48.60%,51.40%,23,5.50%,59,14.00%,29,393,0,6.90%,93.10%,0.00%,119,120,422,28.40% +140212,207,4000,State-funded secondary,1281,678,603,52.90%,47.10%,73,5.70%,179,14.00%,579,670,32,45.20%,52.30%,2.50%,613,568,1014,56.00% +140213,207,2001,State-funded primary,232,110,122,47.40%,52.60%,12,5.20%,31,13.40%,159,73,0,68.50%,31.50%,0.00%,96,92,207,44.40% +140214,925,2016,State-funded primary,272,122,150,44.90%,55.10%,9,3.30%,17,6.30%,38,234,0,14.00%,86.00%,0.00%,46,47,272,17.30% +140215,887,2008,State-funded primary,639,321,318,50.20%,49.80%,6,0.90%,74,11.60%,186,453,0,29.10%,70.90%,0.00%,124,130,616,21.10% +140216,802,2001,State-funded primary,452,212,240,46.90%,53.10%,12,2.70%,44,9.70%,68,384,0,15.00%,85.00%,0.00%,84,85,422,20.10% +140217,931,7003,State-funded special school,32,11,21,34.40%,65.60%,32,100.00%,0,0.00%,2,30,0,6.30%,93.80%,0.00%,4,3,18,16.70% +140218,373,2018,State-funded primary,446,224,222,50.20%,49.80%,3,0.70%,131,29.40%,422,24,0,94.60%,5.40%,0.00%,344,329,412,79.90% +140219,373,2019,State-funded primary,426,240,186,56.30%,43.70%,6,1.40%,57,13.40%,117,309,0,27.50%,72.50%,0.00%,208,206,387,53.20% +140220,933,2012,State-funded primary,306,141,165,46.10%,53.90%,11,3.60%,17,5.60%,83,219,4,27.10%,71.60%,1.30%,61,65,239,27.20% +140221,210,4002,State-funded secondary,654,211,443,32.30%,67.70%,15,2.30%,55,8.40%,227,427,0,34.70%,65.30%,0.00%,313,278,530,52.50% +140222,212,2003,State-funded primary,184,88,96,47.80%,52.20%,3,1.60%,24,13.00%,42,142,0,22.80%,77.20%,0.00%,57,61,184,33.20% +140223,865,2015,State-funded primary,379,181,198,47.80%,52.20%,46,12.10%,72,19.00%,71,308,0,18.70%,81.30%,0.00%,87,78,336,23.20% +140224,865,2016,State-funded primary,272,138,134,50.70%,49.30%,9,3.30%,41,15.10%,26,246,0,9.60%,90.40%,0.00%,38,47,272,17.30% +140227,893,6032,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140228,823,3306,State-funded primary,180,92,88,51.10%,48.90%,8,4.40%,25,13.90%,1,179,0,0.60%,99.40%,0.00%,18,18,180,10.00% +140229,810,2002,State-funded primary,263,124,139,47.10%,52.90%,7,2.70%,39,14.80%,30,229,4,11.40%,87.10%,1.50%,78,82,242,33.90% +140230,855,3008,State-funded primary,539,262,277,48.60%,51.40%,8,1.50%,62,11.50%,8,530,1,1.50%,98.30%,0.20%,80,83,539,15.40% +140231,892,2183,State-funded primary,452,239,213,52.90%,47.10%,8,1.80%,40,8.80%,149,302,1,33.00%,66.80%,0.20%,188,197,413,47.70% +140232,908,2019,State-funded primary,98,44,54,44.90%,55.10%,2,2.00%,5,5.10%,0,97,1,0.00%,99.00%,1.00%,26,30,84,35.70% +140234,382,2002,State-funded primary,600,281,319,46.80%,53.20%,11,1.80%,64,10.70%,392,208,0,65.30%,34.70%,0.00%,247,248,555,44.70% +140235,810,2045,State-funded primary,651,332,319,51.00%,49.00%,28,4.30%,31,4.80%,49,594,8,7.50%,91.20%,1.20%,59,62,622,10.00% +140236,302,3519,State-funded primary,711,294,417,41.40%,58.60%,76,10.70%,70,9.80%,536,175,0,75.40%,24.60%,0.00%,203,211,641,32.90% +140237,931,2573,State-funded primary,462,244,218,52.80%,47.20%,7,1.50%,48,10.40%,30,427,5,6.50%,92.40%,1.10%,32,44,421,10.50% +140238,919,3406,State-funded primary,211,98,113,46.40%,53.60%,4,1.90%,29,13.70%,73,138,0,34.60%,65.40%,0.00%,39,40,211,19.00% +140239,892,2907,State-funded primary,370,167,203,45.10%,54.90%,2,0.50%,47,12.70%,44,326,0,11.90%,88.10%,0.00%,86,94,332,28.30% +140242,370,2136,State-funded primary,426,196,230,46.00%,54.00%,10,2.30%,40,9.40%,21,404,1,4.90%,94.80%,0.20%,72,77,396,19.40% +140243,303,2080,State-funded primary,656,321,335,48.90%,51.10%,11,1.70%,76,11.60%,39,617,0,5.90%,94.10%,0.00%,68,68,621,11.00% +140244,871,7030,State-funded special school,31,3,28,9.70%,90.30%,31,100.00%,0,0.00%,2,29,0,6.50%,93.50%,0.00%,17,17,31,54.80% +140245,810,2403,State-funded primary,383,171,212,44.60%,55.40%,10,2.60%,28,7.30%,47,335,1,12.30%,87.50%,0.30%,173,178,358,49.70% +140246,810,2441,State-funded primary,235,121,114,51.50%,48.50%,10,4.30%,39,16.60%,21,214,0,8.90%,91.10%,0.00%,102,103,208,49.50% +140247,810,2289,State-funded primary,287,141,146,49.10%,50.90%,11,3.80%,21,7.30%,7,280,0,2.40%,97.60%,0.00%,93,92,260,35.40% +140248,331,4034,State-funded secondary,1781,918,863,51.50%,48.50%,41,2.30%,279,15.70%,545,1230,6,30.60%,69.10%,0.30%,505,498,1506,33.10% +140249,919,4146,State-funded secondary,348,160,188,46.00%,54.00%,8,2.30%,45,12.90%,16,329,3,4.60%,94.50%,0.90%,39,47,348,13.50% +140250,936,2932,State-funded primary,411,193,218,47.00%,53.00%,14,3.40%,28,6.80%,39,372,0,9.50%,90.50%,0.00%,62,62,411,15.10% +140251,855,2070,State-funded primary,108,51,57,47.20%,52.80%,0,0.00%,13,12.00%,0,108,0,0.00%,100.00%,0.00%,24,25,108,23.10% +140252,826,1109,State-funded AP school,26,8,18,30.80%,69.20%,19,73.10%,2,7.70%,0,25,1,0.00%,96.20%,3.80%,14,5,9,55.60% +140253,855,2009,State-funded primary,126,70,56,55.60%,44.40%,4,3.20%,10,7.90%,4,122,0,3.20%,96.80%,0.00%,20,23,126,18.30% +140255,931,3246,State-funded primary,431,231,200,53.60%,46.40%,13,3.00%,51,11.80%,53,377,1,12.30%,87.50%,0.20%,94,94,392,24.00% +140256,936,2440,State-funded primary,439,236,203,53.80%,46.20%,7,1.60%,61,13.90%,46,392,1,10.50%,89.30%,0.20%,55,75,439,17.10% +140257,305,5204,State-funded primary,366,185,181,50.50%,49.50%,8,2.20%,19,5.20%,92,273,1,25.10%,74.60%,0.30%,22,25,366,6.80% +140258,885,2127,State-funded primary,410,221,189,53.90%,46.10%,4,1.00%,32,7.80%,7,403,0,1.70%,98.30%,0.00%,31,31,410,7.60% +140259,803,3439,State-funded primary,318,148,170,46.50%,53.50%,8,2.50%,40,12.60%,65,253,0,20.40%,79.60%,0.00%,42,43,318,13.50% +140260,319,2011,State-funded primary,923,441,482,47.80%,52.20%,19,2.10%,64,6.90%,383,540,0,41.50%,58.50%,0.00%,50,57,871,6.50% +140261,885,7024,State-funded special school,246,77,169,31.30%,68.70%,246,100.00%,0,0.00%,17,229,0,6.90%,93.10%,0.00%,115,102,188,54.30% +140262,330,2460,State-funded primary,610,300,310,49.20%,50.80%,9,1.50%,85,13.90%,168,442,0,27.50%,72.50%,0.00%,193,186,571,32.60% +140263,852,2404,State-funded primary,357,167,190,46.80%,53.20%,9,2.50%,47,13.20%,63,294,0,17.60%,82.40%,0.00%,117,118,357,33.10% +140264,866,3461,State-funded primary,419,212,207,50.60%,49.40%,13,3.10%,78,18.60%,95,305,19,22.70%,72.80%,4.50%,114,120,387,31.00% +140265,873,4008,State-funded secondary,433,128,305,29.60%,70.40%,1,0.20%,117,27.00%,107,326,0,24.70%,75.30%,0.00%,78,65,289,22.50% +140267,801,2089,State-funded primary,376,181,195,48.10%,51.90%,11,2.90%,68,18.10%,114,262,0,30.30%,69.70%,0.00%,108,110,376,29.30% +140268,801,2092,State-funded primary,394,179,215,45.40%,54.60%,6,1.50%,75,19.00%,61,333,0,15.50%,84.50%,0.00%,134,137,394,34.80% +140269,801,2093,State-funded primary,266,141,125,53.00%,47.00%,4,1.50%,42,15.80%,37,229,0,13.90%,86.10%,0.00%,52,55,266,20.70% +140272,808,6004,Independent school,90,20,70,22.20%,77.80%,90,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140273,335,6002,Independent school,8,4,4,50.00%,50.00%,4,50.00%,4,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140275,810,2016,State-funded primary,679,348,331,51.30%,48.70%,12,1.80%,50,7.40%,52,627,0,7.70%,92.30%,0.00%,33,35,617,5.70% +140276,823,2040,State-funded primary,419,220,199,52.50%,47.50%,20,4.80%,80,19.10%,111,308,0,26.50%,73.50%,0.00%,101,103,419,24.60% +140277,940,7029,State-funded special school,148,48,100,32.40%,67.60%,145,98.00%,3,2.00%,10,138,0,6.80%,93.20%,0.00%,64,67,141,47.50% +140278,931,3222,State-funded primary,116,68,48,58.60%,41.40%,2,1.70%,11,9.50%,5,111,0,4.30%,95.70%,0.00%,4,4,105,3.80% +140279,931,2596,State-funded primary,304,160,144,52.60%,47.40%,4,1.30%,34,11.20%,20,283,1,6.60%,93.10%,0.30%,50,53,304,17.40% +140280,861,2069,State-funded primary,239,120,119,50.20%,49.80%,6,2.50%,65,27.20%,44,195,0,18.40%,81.60%,0.00%,129,125,210,59.50% +140281,823,2000,State-funded primary,312,150,162,48.10%,51.90%,14,4.50%,47,15.10%,16,296,0,5.10%,94.90%,0.00%,49,49,281,17.40% +140282,891,3792,State-funded primary,468,210,258,44.90%,55.10%,3,0.60%,31,6.60%,13,455,0,2.80%,97.20%,0.00%,88,83,416,20.00% +140283,931,3232,State-funded primary,144,68,76,47.20%,52.80%,1,0.70%,10,6.90%,5,139,0,3.50%,96.50%,0.00%,8,8,136,5.90% +140284,866,3464,State-funded primary,325,173,152,53.20%,46.80%,17,5.20%,43,13.20%,119,206,0,36.60%,63.40%,0.00%,78,83,325,25.50% +140285,861,2092,State-funded primary,418,209,209,50.00%,50.00%,5,1.20%,41,9.80%,30,388,0,7.20%,92.80%,0.00%,152,148,379,39.10% +140286,823,7018,State-funded special school,128,15,113,11.70%,88.30%,128,100.00%,0,0.00%,0,128,0,0.00%,100.00%,0.00%,76,77,117,65.80% +140287,861,3411,State-funded primary,222,125,97,56.30%,43.70%,4,1.80%,27,12.20%,56,166,0,25.20%,74.80%,0.00%,105,96,205,46.80% +140289,866,2001,State-funded primary,203,87,116,42.90%,57.10%,0,0.00%,21,10.30%,27,176,0,13.30%,86.70%,0.00%,41,41,203,20.20% +140290,810,2566,State-funded primary,433,212,221,49.00%,51.00%,14,3.20%,74,17.10%,22,411,0,5.10%,94.90%,0.00%,121,122,398,30.70% +140291,866,2210,State-funded primary,431,229,202,53.10%,46.90%,7,1.60%,29,6.70%,105,325,1,24.40%,75.40%,0.20%,71,75,397,18.90% +140292,885,4003,State-funded secondary,1334,663,671,49.70%,50.30%,13,1.00%,107,8.00%,35,1286,13,2.60%,96.40%,1.00%,132,131,983,13.30% +140293,931,3239,State-funded primary,201,101,100,50.20%,49.80%,9,4.50%,37,18.40%,2,199,0,1.00%,99.00%,0.00%,21,24,201,11.90% +140294,919,4067,State-funded secondary,1597,768,829,48.10%,51.90%,50,3.10%,147,9.20%,76,1518,3,4.80%,95.10%,0.20%,151,145,1324,11.00% +140295,317,3507,State-funded primary,306,153,153,50.00%,50.00%,4,1.30%,16,5.20%,113,191,2,36.90%,62.40%,0.70%,75,76,270,28.10% +140296,861,3412,State-funded primary,202,98,104,48.50%,51.50%,3,1.50%,30,14.90%,57,145,0,28.20%,71.80%,0.00%,89,84,171,49.10% +140297,861,3488,State-funded primary,470,244,226,51.90%,48.10%,3,0.60%,48,10.20%,126,344,0,26.80%,73.20%,0.00%,106,93,420,22.10% +140298,861,3416,State-funded primary,227,115,112,50.70%,49.30%,4,1.80%,37,16.30%,81,146,0,35.70%,64.30%,0.00%,121,110,208,52.90% +140299,861,3453,State-funded primary,82,45,37,54.90%,45.10%,4,4.90%,2,2.40%,15,67,0,18.30%,81.70%,0.00%,5,5,70,7.10% +140301,931,2572,State-funded primary,371,185,186,49.90%,50.10%,10,2.70%,53,14.30%,110,261,0,29.60%,70.40%,0.00%,48,54,339,15.90% +140302,866,2209,State-funded primary,297,146,151,49.20%,50.80%,25,8.40%,58,19.50%,81,215,1,27.30%,72.40%,0.30%,79,90,275,32.70% +140303,892,2077,State-funded primary,228,112,116,49.10%,50.90%,1,0.40%,17,7.50%,76,150,2,33.30%,65.80%,0.90%,78,78,206,37.90% +140304,861,5400,State-funded secondary,1146,585,561,51.00%,49.00%,26,2.30%,194,16.90%,410,736,0,35.80%,64.20%,0.00%,332,347,1009,34.40% +140305,933,3283,State-funded primary,422,211,211,50.00%,50.00%,5,1.20%,27,6.40%,42,379,1,10.00%,89.80%,0.20%,51,51,422,12.10% +140306,909,3556,State-funded primary,101,37,64,36.60%,63.40%,0,0.00%,11,10.90%,0,101,0,0.00%,100.00%,0.00%,3,3,101,3.00% +140307,931,3230,State-funded primary,261,116,145,44.40%,55.60%,9,3.40%,43,16.50%,16,245,0,6.10%,93.90%,0.00%,34,34,261,13.00% +140308,881,5420,State-funded secondary,816,409,407,50.10%,49.90%,18,2.20%,107,13.10%,15,800,1,1.80%,98.00%,0.10%,189,261,816,32.00% +140309,885,2919,State-funded primary,383,184,199,48.00%,52.00%,7,1.80%,74,19.30%,28,355,0,7.30%,92.70%,0.00%,95,97,350,27.70% +140310,373,2339,State-funded primary,384,185,199,48.20%,51.80%,3,0.80%,74,19.30%,119,265,0,31.00%,69.00%,0.00%,163,162,350,46.30% +140311,845,2128,State-funded primary,178,85,93,47.80%,52.20%,1,0.60%,18,10.10%,3,175,0,1.70%,98.30%,0.00%,49,49,178,27.50% +140312,384,2179,State-funded primary,232,119,113,51.30%,48.70%,11,4.70%,12,5.20%,8,224,0,3.40%,96.60%,0.00%,26,27,178,15.20% +140314,352,2017,State-funded primary,970,471,499,48.60%,51.40%,24,2.50%,86,8.90%,225,745,0,23.20%,76.80%,0.00%,116,113,886,12.80% +140315,855,2055,State-funded primary,399,175,224,43.90%,56.10%,5,1.30%,43,10.80%,10,388,1,2.50%,97.20%,0.30%,23,23,399,5.80% +140316,855,2141,State-funded primary,367,184,183,50.10%,49.90%,13,3.50%,51,13.90%,28,339,0,7.60%,92.40%,0.00%,76,77,367,21.00% +140317,855,3028,State-funded primary,58,26,32,44.80%,55.20%,1,1.70%,7,12.10%,1,57,0,1.70%,98.30%,0.00%,18,19,58,32.80% +140318,908,2452,State-funded primary,113,56,57,49.60%,50.40%,1,0.90%,28,24.80%,0,113,0,0.00%,100.00%,0.00%,21,22,113,19.50% +140319,807,3388,State-funded primary,516,256,260,49.60%,50.40%,3,0.60%,87,16.90%,2,514,0,0.40%,99.60%,0.00%,145,145,447,32.40% +140320,303,5200,State-funded primary,230,104,126,45.20%,54.80%,4,1.70%,11,4.80%,45,179,6,19.60%,77.80%,2.60%,38,33,179,18.40% +140321,303,5201,State-funded primary,240,122,118,50.80%,49.20%,2,0.80%,30,12.50%,28,210,2,11.70%,87.50%,0.80%,39,44,240,18.30% +140322,886,2686,State-funded primary,575,281,294,48.90%,51.10%,9,1.60%,56,9.70%,68,464,43,11.80%,80.70%,7.50%,96,108,575,18.80% +140323,886,2286,State-funded primary,269,137,132,50.90%,49.10%,7,2.60%,36,13.40%,10,255,4,3.70%,94.80%,1.50%,41,45,269,16.70% +140324,840,2397,State-funded primary,249,127,122,51.00%,49.00%,5,2.00%,49,19.70%,3,246,0,1.20%,98.80%,0.00%,72,67,211,31.80% +140325,851,7471,State-funded special school,184,56,128,30.40%,69.60%,169,91.80%,15,8.20%,45,139,0,24.50%,75.50%,0.00%,90,70,138,50.70% +140326,381,4035,State-funded secondary,1445,729,716,50.40%,49.60%,33,2.30%,162,11.20%,1118,327,0,77.40%,22.60%,0.00%,436,459,1445,31.80% +140327,941,2143,State-funded primary,228,103,125,45.20%,54.80%,7,3.10%,61,26.80%,98,130,0,43.00%,57.00%,0.00%,46,46,198,23.20% +140328,908,2021,State-funded primary,287,138,149,48.10%,51.90%,2,0.70%,85,29.60%,17,270,0,5.90%,94.10%,0.00%,127,131,287,45.60% +140329,925,2018,State-funded primary,283,138,145,48.80%,51.20%,9,3.20%,33,11.70%,15,268,0,5.30%,94.70%,0.00%,98,99,283,35.00% +140330,861,6011,Independent school,25,6,19,24.00%,76.00%,24,96.00%,1,4.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140332,908,2022,State-funded primary,96,47,49,49.00%,51.00%,2,2.10%,12,12.50%,0,96,0,0.00%,100.00%,0.00%,29,30,96,31.30% +140333,384,2010,State-funded primary,209,111,98,53.10%,46.90%,4,1.90%,28,13.40%,14,195,0,6.70%,93.30%,0.00%,73,79,184,42.90% +140334,908,2024,State-funded primary,104,55,49,52.90%,47.10%,1,1.00%,14,13.50%,2,102,0,1.90%,98.10%,0.00%,24,24,104,23.10% +140335,871,2005,State-funded primary,909,435,474,47.90%,52.10%,19,2.10%,87,9.60%,711,198,0,78.20%,21.80%,0.00%,217,223,840,26.50% +140337,384,2011,State-funded primary,205,101,104,49.30%,50.70%,6,2.90%,18,8.80%,9,196,0,4.40%,95.60%,0.00%,43,45,205,22.00% +140339,936,2023,State-funded primary,228,109,119,47.80%,52.20%,2,0.90%,28,12.30%,65,163,0,28.50%,71.50%,0.00%,67,57,183,31.10% +140340,371,2001,State-funded primary,249,122,127,49.00%,51.00%,2,0.80%,49,19.70%,35,214,0,14.10%,85.90%,0.00%,48,45,208,21.60% +140341,373,2020,State-funded primary,219,115,104,52.50%,47.50%,0,0.00%,20,9.10%,96,123,0,43.80%,56.20%,0.00%,69,68,203,33.50% +140342,908,2026,State-funded primary,109,60,49,55.00%,45.00%,1,0.90%,9,8.30%,4,105,0,3.70%,96.30%,0.00%,16,16,102,15.70% +140343,813,2005,State-funded primary,124,63,61,50.80%,49.20%,0,0.00%,17,13.70%,1,123,0,0.80%,99.20%,0.00%,29,30,124,24.20% +140344,931,2009,State-funded primary,295,148,147,50.20%,49.80%,5,1.70%,32,10.80%,40,255,0,13.60%,86.40%,0.00%,45,45,272,16.50% +140347,908,2031,State-funded primary,272,119,153,43.80%,56.30%,8,2.90%,33,12.10%,9,259,4,3.30%,95.20%,1.50%,137,120,234,51.30% +140348,936,2024,State-funded primary,464,235,229,50.60%,49.40%,15,3.20%,80,17.20%,125,337,2,26.90%,72.60%,0.40%,170,159,380,41.80% +140349,936,2027,State-funded primary,216,105,111,48.60%,51.40%,12,5.60%,40,18.50%,54,162,0,25.00%,75.00%,0.00%,86,91,216,42.10% +140350,936,2028,State-funded primary,431,216,215,50.10%,49.90%,14,3.20%,84,19.50%,60,362,9,13.90%,84.00%,2.10%,123,110,391,28.10% +140351,865,2017,State-funded primary,36,22,14,61.10%,38.90%,2,5.60%,9,25.00%,0,36,0,0.00%,100.00%,0.00%,14,14,36,38.90% +140352,865,2018,State-funded primary,158,77,81,48.70%,51.30%,6,3.80%,52,32.90%,12,146,0,7.60%,92.40%,0.00%,55,56,158,35.40% +140353,371,2002,State-funded primary,458,228,230,49.80%,50.20%,8,1.70%,47,10.30%,44,413,1,9.60%,90.20%,0.20%,67,65,424,15.30% +140354,937,6008,Independent school,84,6,78,7.10%,92.90%,81,96.40%,3,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140355,336,2009,State-funded primary,479,226,253,47.20%,52.80%,8,1.70%,25,5.20%,160,319,0,33.40%,66.60%,0.00%,194,196,432,45.40% +140356,306,6028,Independent school,111,111,0,100.00%,0.00%,1,0.90%,23,20.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140357,891,2014,State-funded primary,164,90,74,54.90%,45.10%,0,0.00%,20,12.20%,27,137,0,16.50%,83.50%,0.00%,77,81,155,52.30% +140358,380,2018,State-funded primary,490,240,250,49.00%,51.00%,12,2.40%,48,9.80%,240,250,0,49.00%,51.00%,0.00%,91,95,420,22.60% +140359,840,2015,State-funded primary,178,82,96,46.10%,53.90%,3,1.70%,32,18.00%,6,172,0,3.40%,96.60%,0.00%,36,38,178,21.30% +140360,313,7003,State-funded special school,136,19,117,14.00%,86.00%,135,99.30%,1,0.70%,5,131,0,3.70%,96.30%,0.00%,56,54,102,52.90% +140362,941,2151,State-funded primary,449,211,238,47.00%,53.00%,11,2.40%,37,8.20%,309,134,6,68.80%,29.80%,1.30%,83,85,398,21.40% +140363,926,2053,State-funded primary,415,192,223,46.30%,53.70%,24,5.80%,51,12.30%,67,339,9,16.10%,81.70%,2.20%,134,137,380,36.10% +140364,926,4011,State-funded secondary,844,393,451,46.60%,53.40%,28,3.30%,165,19.50%,97,747,0,11.50%,88.50%,0.00%,310,327,844,38.70% +140366,331,4001,State-funded secondary,1058,555,503,52.50%,47.50%,22,2.10%,220,20.80%,252,793,13,23.80%,75.00%,1.20%,406,416,976,42.60% +140367,881,2097,State-funded primary,286,148,138,51.70%,48.30%,4,1.40%,77,26.90%,7,279,0,2.40%,97.60%,0.00%,102,124,286,43.40% +140368,825,2017,State-funded primary,200,107,93,53.50%,46.50%,5,2.50%,38,19.00%,32,168,0,16.00%,84.00%,0.00%,75,75,200,37.50% +140369,892,4003,State-funded secondary,900,431,469,47.90%,52.10%,25,2.80%,246,27.30%,163,737,0,18.10%,81.90%,0.00%,544,573,900,63.70% +140370,941,2152,State-funded primary,229,111,118,48.50%,51.50%,5,2.20%,22,9.60%,43,183,3,18.80%,79.90%,1.30%,31,34,210,16.20% +140371,937,4006,State-funded secondary,825,374,451,45.30%,54.70%,26,3.20%,160,19.40%,154,656,15,18.70%,79.50%,1.80%,267,277,825,33.60% +140372,937,2022,State-funded primary,262,134,128,51.10%,48.90%,4,1.50%,27,10.30%,82,180,0,31.30%,68.70%,0.00%,97,104,262,39.70% +140373,316,4005,State-funded secondary,2062,831,1231,40.30%,59.70%,77,3.70%,179,8.70%,1108,954,0,53.70%,46.30%,0.00%,801,973,2062,47.20% +140374,874,2003,State-funded primary,199,94,105,47.20%,52.80%,11,5.50%,35,17.60%,53,146,0,26.60%,73.40%,0.00%,57,60,199,30.20% +140375,881,2098,State-funded primary,210,104,106,49.50%,50.50%,6,2.90%,46,21.90%,55,155,0,26.20%,73.80%,0.00%,44,47,210,22.40% +140377,874,2004,State-funded primary,447,207,240,46.30%,53.70%,8,1.80%,48,10.70%,220,225,2,49.20%,50.30%,0.40%,97,101,447,22.60% +140378,372,2011,State-funded primary,185,92,93,49.70%,50.30%,0,0.00%,32,17.30%,162,20,3,87.60%,10.80%,1.60%,124,124,171,72.50% +140379,870,2015,State-funded primary,404,200,204,49.50%,50.50%,4,1.00%,63,15.60%,293,110,1,72.50%,27.20%,0.20%,69,71,404,17.60% +140380,881,2099,State-funded primary,209,96,113,45.90%,54.10%,6,2.90%,12,5.70%,92,117,0,44.00%,56.00%,0.00%,55,56,209,26.80% +140381,860,2006,State-funded primary,451,223,228,49.40%,50.60%,15,3.30%,55,12.20%,45,406,0,10.00%,90.00%,0.00%,67,71,405,17.50% +140384,845,2008,State-funded primary,210,107,103,51.00%,49.00%,5,2.40%,31,14.80%,5,205,0,2.40%,97.60%,0.00%,72,72,193,37.30% +140385,845,2009,State-funded primary,232,109,123,47.00%,53.00%,1,0.40%,61,26.30%,21,211,0,9.10%,90.90%,0.00%,88,89,224,39.70% +140386,873,2023,State-funded primary,91,49,42,53.80%,46.20%,1,1.10%,13,14.30%,3,88,0,3.30%,96.70%,0.00%,15,16,66,24.20% +140387,312,2027,State-funded primary,621,306,315,49.30%,50.70%,10,1.60%,55,8.90%,151,470,0,24.30%,75.70%,0.00%,52,51,583,8.70% +140388,353,1101,State-funded special school,287,65,222,22.60%,77.40%,272,94.80%,15,5.20%,1,286,0,0.30%,99.70%,0.00%,122,149,287,51.90% +140389,331,2014,State-funded primary,231,107,124,46.30%,53.70%,7,3.00%,26,11.30%,113,118,0,48.90%,51.10%,0.00%,107,108,205,52.70% +140391,312,2028,State-funded primary,710,323,387,45.50%,54.50%,33,4.60%,85,12.00%,475,235,0,66.90%,33.10%,0.00%,188,189,633,29.90% +140392,382,2017,State-funded primary,393,196,197,49.90%,50.10%,12,3.10%,43,10.90%,290,103,0,73.80%,26.20%,0.00%,85,85,321,26.50% +140393,886,2034,State-funded primary,359,176,183,49.00%,51.00%,21,5.80%,52,14.50%,20,339,0,5.60%,94.40%,0.00%,148,152,359,42.30% +140394,373,4005,State-funded secondary,1095,539,556,49.20%,50.80%,14,1.30%,128,11.70%,609,486,0,55.60%,44.40%,0.00%,428,533,1052,50.70% +140395,306,2061,State-funded primary,438,219,219,50.00%,50.00%,11,2.50%,34,7.80%,136,302,0,31.10%,68.90%,0.00%,159,163,438,37.20% +140396,881,2100,State-funded primary,426,209,217,49.10%,50.90%,6,1.40%,33,7.70%,111,313,2,26.10%,73.50%,0.50%,61,83,426,19.50% +140397,885,7003,State-funded special school,70,1,69,1.40%,98.60%,70,100.00%,0,0.00%,0,70,0,0.00%,100.00%,0.00%,54,54,70,77.10% +140398,891,2015,State-funded primary,438,213,225,48.60%,51.40%,5,1.10%,28,6.40%,58,380,0,13.20%,86.80%,0.00%,139,137,398,34.40% +140399,383,2013,State-funded primary,168,85,83,50.60%,49.40%,0,0.00%,31,18.50%,3,165,0,1.80%,98.20%,0.00%,55,57,168,33.90% +140400,860,2007,State-funded primary,160,70,90,43.80%,56.30%,5,3.10%,21,13.10%,21,139,0,13.10%,86.90%,0.00%,49,50,160,31.30% +140402,860,2008,State-funded primary,193,91,102,47.20%,52.80%,4,2.10%,18,9.30%,8,185,0,4.10%,95.90%,0.00%,57,61,162,37.70% +140404,885,7000,State-funded special school,135,12,123,8.90%,91.10%,123,91.10%,12,8.90%,0,135,0,0.00%,100.00%,0.00%,76,69,111,62.20% +140405,320,2037,State-funded primary,371,171,200,46.10%,53.90%,17,4.60%,45,12.10%,261,110,0,70.40%,29.60%,0.00%,122,125,322,38.80% +140407,869,2001,State-funded primary,398,207,191,52.00%,48.00%,7,1.80%,47,11.80%,38,360,0,9.50%,90.50%,0.00%,83,87,398,21.90% +140408,933,2013,State-funded primary,158,86,72,54.40%,45.60%,4,2.50%,29,18.40%,4,154,0,2.50%,97.50%,0.00%,56,56,125,44.80% +140409,801,2094,State-funded primary,500,246,254,49.20%,50.80%,44,8.80%,79,15.80%,70,429,1,14.00%,85.80%,0.20%,259,262,398,65.80% +140411,845,2010,State-funded primary,203,93,110,45.80%,54.20%,0,0.00%,30,14.80%,14,189,0,6.90%,93.10%,0.00%,69,70,203,34.50% +140412,340,4001,State-funded secondary,1072,529,543,49.30%,50.70%,37,3.50%,126,11.80%,32,1040,0,3.00%,97.00%,0.00%,536,562,1072,52.40% +140413,383,2014,State-funded primary,459,245,214,53.40%,46.60%,3,0.70%,75,16.30%,314,141,4,68.40%,30.70%,0.90%,125,131,417,31.40% +140414,941,2153,State-funded primary,351,177,174,50.40%,49.60%,10,2.80%,63,17.90%,141,209,1,40.20%,59.50%,0.30%,94,98,305,32.10% +140415,373,4006,State-funded secondary,1133,562,571,49.60%,50.40%,14,1.20%,221,19.50%,89,1042,2,7.90%,92.00%,0.20%,463,502,1133,44.30% +140416,933,4004,State-funded secondary,751,380,371,50.60%,49.40%,25,3.30%,92,12.30%,53,696,2,7.10%,92.70%,0.30%,154,174,751,23.20% +140417,356,2010,State-funded primary,210,109,101,51.90%,48.10%,14,6.70%,36,17.10%,37,173,0,17.60%,82.40%,0.00%,91,91,191,47.60% +140418,937,2023,State-funded primary,158,80,78,50.60%,49.40%,2,1.30%,32,20.30%,4,154,0,2.50%,97.50%,0.00%,43,43,140,30.70% +140419,937,2025,State-funded primary,351,155,196,44.20%,55.80%,9,2.60%,61,17.40%,156,195,0,44.40%,55.60%,0.00%,107,108,351,30.80% +140420,866,2014,State-funded primary,469,218,251,46.50%,53.50%,17,3.60%,50,10.70%,75,389,5,16.00%,82.90%,1.10%,91,95,436,21.80% +140423,212,2006,State-funded primary,324,174,150,53.70%,46.30%,7,2.20%,25,7.70%,87,237,0,26.90%,73.10%,0.00%,77,81,280,28.90% +140424,938,4008,State-funded secondary,922,327,595,35.50%,64.50%,34,3.70%,136,14.80%,130,792,0,14.10%,85.90%,0.00%,130,153,922,16.60% +140425,879,2002,State-funded primary,477,238,239,49.90%,50.10%,6,1.30%,57,11.90%,8,469,0,1.70%,98.30%,0.00%,52,57,449,12.70% +140426,204,2002,State-funded primary,540,257,283,47.60%,52.40%,10,1.90%,46,8.50%,107,433,0,19.80%,80.20%,0.00%,105,109,540,20.20% +140427,357,2009,State-funded primary,441,225,216,51.00%,49.00%,12,2.70%,67,15.20%,87,354,0,19.70%,80.30%,0.00%,161,161,408,39.50% +140428,357,2010,State-funded primary,212,108,104,50.90%,49.10%,5,2.40%,76,35.80%,7,205,0,3.30%,96.70%,0.00%,67,68,186,36.60% +140429,380,4021,State-funded secondary,983,483,500,49.10%,50.90%,30,3.10%,133,13.50%,210,772,1,21.40%,78.50%,0.10%,444,496,983,50.50% +140430,886,2036,State-funded primary,227,108,119,47.60%,52.40%,18,7.90%,19,8.40%,12,215,0,5.30%,94.70%,0.00%,25,26,227,11.50% +140431,886,2037,State-funded primary,228,123,105,53.90%,46.10%,21,9.20%,21,9.20%,28,200,0,12.30%,87.70%,0.00%,30,31,228,13.60% +140432,886,2038,State-funded primary,222,100,122,45.00%,55.00%,19,8.60%,17,7.70%,23,199,0,10.40%,89.60%,0.00%,29,29,222,13.10% +140433,886,2039,State-funded primary,172,75,97,43.60%,56.40%,24,14.00%,31,18.00%,35,137,0,20.30%,79.70%,0.00%,110,110,172,64.00% +140434,306,2064,State-funded primary,596,304,292,51.00%,49.00%,16,2.70%,70,11.70%,308,283,5,51.70%,47.50%,0.80%,227,237,596,39.80% +140435,306,2066,State-funded primary,353,178,175,50.40%,49.60%,7,2.00%,26,7.40%,188,165,0,53.30%,46.70%,0.00%,132,132,353,37.40% +140436,941,7020,State-funded special school,257,56,201,21.80%,78.20%,257,100.00%,0,0.00%,31,226,0,12.10%,87.90%,0.00%,99,87,214,40.70% +140437,810,2822,State-funded primary,433,204,229,47.10%,52.90%,10,2.30%,52,12.00%,33,400,0,7.60%,92.40%,0.00%,230,232,385,60.30% +140438,895,2141,State-funded primary,417,206,211,49.40%,50.60%,14,3.40%,17,4.10%,56,361,0,13.40%,86.60%,0.00%,64,64,417,15.30% +140439,373,3401,State-funded primary,199,86,113,43.20%,56.80%,2,1.00%,19,9.50%,58,141,0,29.10%,70.90%,0.00%,34,37,199,18.60% +140440,373,3423,State-funded primary,174,89,85,51.10%,48.90%,1,0.60%,22,12.60%,10,164,0,5.70%,94.30%,0.00%,21,21,174,12.10% +140441,373,5202,State-funded primary,96,53,43,55.20%,44.80%,2,2.10%,16,16.70%,4,92,0,4.20%,95.80%,0.00%,14,16,96,16.70% +140442,808,3317,State-funded primary,218,119,99,54.60%,45.40%,1,0.50%,22,10.10%,66,152,0,30.30%,69.70%,0.00%,104,102,189,54.00% +140443,303,2058,State-funded primary,616,304,312,49.40%,50.60%,4,0.60%,83,13.50%,90,526,0,14.60%,85.40%,0.00%,19,25,616,4.10% +140444,895,2142,State-funded primary,236,99,137,41.90%,58.10%,13,5.50%,41,17.40%,21,215,0,8.90%,91.10%,0.00%,74,71,193,36.80% +140445,925,3036,State-funded primary,118,49,69,41.50%,58.50%,4,3.40%,27,22.90%,1,117,0,0.80%,99.20%,0.00%,19,21,118,17.80% +140447,881,5213,State-funded primary,416,214,202,51.40%,48.60%,8,1.90%,29,7.00%,8,408,0,1.90%,98.10%,0.00%,38,41,416,9.90% +140448,305,2079,State-funded primary,436,211,225,48.40%,51.60%,11,2.50%,46,10.60%,127,309,0,29.10%,70.90%,0.00%,47,48,436,11.00% +140449,305,2042,State-funded primary,247,121,126,49.00%,51.00%,8,3.20%,50,20.20%,42,205,0,17.00%,83.00%,0.00%,22,25,247,10.10% +140450,305,2084,State-funded primary,191,94,97,49.20%,50.80%,3,1.60%,50,26.20%,48,142,1,25.10%,74.30%,0.50%,75,76,159,47.80% +140451,305,2001,State-funded primary,188,91,97,48.40%,51.60%,16,8.50%,34,18.10%,56,132,0,29.80%,70.20%,0.00%,16,16,188,8.50% +140452,800,3445,State-funded primary,399,194,205,48.60%,51.40%,13,3.30%,48,12.00%,3,394,2,0.80%,98.70%,0.50%,36,34,350,9.70% +140453,384,3337,State-funded primary,340,175,165,51.50%,48.50%,16,4.70%,66,19.40%,26,314,0,7.60%,92.40%,0.00%,64,64,304,21.10% +140454,865,3038,State-funded primary,67,27,40,40.30%,59.70%,1,1.50%,9,13.40%,1,66,0,1.50%,98.50%,0.00%,11,13,50,26.00% +140455,933,2309,State-funded primary,421,208,213,49.40%,50.60%,13,3.10%,23,5.50%,63,342,16,15.00%,81.20%,3.80%,71,75,421,17.80% +140456,933,3065,State-funded primary,83,31,52,37.30%,62.70%,0,0.00%,11,13.30%,4,79,0,4.80%,95.20%,0.00%,5,5,83,6.00% +140457,895,7209,State-funded special school,93,17,76,18.30%,81.70%,93,100.00%,0,0.00%,0,93,0,0.00%,100.00%,0.00%,50,45,77,58.40% +140458,344,3364,State-funded primary,404,218,186,54.00%,46.00%,4,1.00%,46,11.40%,34,370,0,8.40%,91.60%,0.00%,29,29,404,7.20% +140459,372,4003,State-funded secondary,1064,536,528,50.40%,49.60%,4,0.40%,167,15.70%,330,708,26,31.00%,66.50%,2.40%,284,318,1064,29.90% +140460,370,2121,State-funded primary,232,123,109,53.00%,47.00%,4,1.70%,24,10.30%,4,226,2,1.70%,97.40%,0.90%,83,83,209,39.70% +140462,334,3011,State-funded primary,400,197,203,49.30%,50.80%,5,1.30%,50,12.50%,20,380,0,5.00%,95.00%,0.00%,40,42,384,10.90% +140463,330,3303,State-funded primary,180,97,83,53.90%,46.10%,2,1.10%,19,10.60%,128,52,0,71.10%,28.90%,0.00%,75,80,180,44.40% +140464,884,3078,State-funded primary,155,75,80,48.40%,51.60%,2,1.30%,17,11.00%,8,147,0,5.20%,94.80%,0.00%,24,24,155,15.50% +140465,908,3392,State-funded primary,306,154,152,50.30%,49.70%,8,2.60%,62,20.30%,6,299,1,2.00%,97.70%,0.30%,58,59,278,21.20% +140466,908,3542,State-funded primary,106,54,52,50.90%,49.10%,2,1.90%,20,18.90%,1,105,0,0.90%,99.10%,0.00%,23,23,105,21.90% +140468,908,3543,State-funded primary,108,45,63,41.70%,58.30%,1,0.90%,14,13.00%,2,102,4,1.90%,94.40%,3.70%,14,14,103,13.60% +140469,908,3547,State-funded primary,43,20,23,46.50%,53.50%,2,4.70%,6,14.00%,0,43,0,0.00%,100.00%,0.00%,6,6,38,15.80% +140470,860,4093,State-funded secondary,883,431,452,48.80%,51.20%,19,2.20%,217,24.60%,40,843,0,4.50%,95.50%,0.00%,212,247,883,28.00% +140471,816,3212,State-funded primary,562,282,280,50.20%,49.80%,15,2.70%,38,6.80%,33,525,4,5.90%,93.40%,0.70%,54,52,519,10.00% +140472,938,4604,State-funded secondary,1552,811,741,52.30%,47.70%,26,1.70%,194,12.50%,71,1480,1,4.60%,95.40%,0.10%,112,120,1222,9.80% +140473,931,3250,State-funded primary,139,68,71,48.90%,51.10%,2,1.40%,12,8.60%,10,129,0,7.20%,92.80%,0.00%,25,25,139,18.00% +140474,931,3228,State-funded primary,191,93,98,48.70%,51.30%,9,4.70%,35,18.30%,10,180,1,5.20%,94.20%,0.50%,43,43,191,22.50% +140475,317,4027,State-funded secondary,2791,1311,1480,47.00%,53.00%,77,2.80%,597,21.40%,2148,643,0,77.00%,23.00%,0.00%,687,623,2309,27.00% +140476,855,2192,State-funded primary,283,144,139,50.90%,49.10%,8,2.80%,52,18.40%,43,239,1,15.20%,84.50%,0.40%,102,102,283,36.00% +140477,908,3881,State-funded primary,81,44,37,54.30%,45.70%,0,0.00%,11,13.60%,0,81,0,0.00%,100.00%,0.00%,10,10,73,13.70% +140478,852,2461,State-funded primary,155,67,88,43.20%,56.80%,5,3.20%,37,23.90%,22,133,0,14.20%,85.80%,0.00%,76,76,155,49.00% +140479,373,6004,Independent school,91,46,45,50.50%,49.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140482,352,2024,State-funded primary,461,221,240,47.90%,52.10%,9,2.00%,75,16.30%,180,279,2,39.00%,60.50%,0.40%,259,246,412,59.70% +140483,873,2024,State-funded primary,449,225,224,50.10%,49.90%,10,2.20%,26,5.80%,61,382,6,13.60%,85.10%,1.30%,39,38,402,9.50% +140484,312,2035,State-funded primary,317,147,170,46.40%,53.60%,27,8.50%,90,28.40%,112,203,2,35.30%,64.00%,0.60%,117,120,311,38.60% +140486,351,6003,Independent school,5,2,3,40.00%,60.00%,3,60.00%,2,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140489,860,2009,State-funded primary,215,114,101,53.00%,47.00%,5,2.30%,36,16.70%,5,210,0,2.30%,97.70%,0.00%,59,61,215,28.40% +140490,860,2010,State-funded primary,200,95,105,47.50%,52.50%,9,4.50%,29,14.50%,8,192,0,4.00%,96.00%,0.00%,44,44,200,22.00% +140491,355,6001,Independent school,221,0,221,0.00%,100.00%,0,0.00%,33,14.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140492,302,6007,Independent school,96,0,96,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140493,845,2011,State-funded primary,349,192,157,55.00%,45.00%,3,0.90%,121,34.70%,29,320,0,8.30%,91.70%,0.00%,184,189,326,58.00% +140494,868,2000,State-funded primary,244,131,113,53.70%,46.30%,9,3.70%,20,8.20%,33,211,0,13.50%,86.50%,0.00%,25,29,211,13.70% +140495,206,2000,State-funded primary,266,136,130,51.10%,48.90%,8,3.00%,49,18.40%,130,135,1,48.90%,50.80%,0.40%,114,114,266,42.90% +140496,315,6006,Independent school,39,13,26,33.30%,66.70%,13,33.30%,6,15.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140498,925,2021,State-funded primary,274,132,142,48.20%,51.80%,10,3.60%,31,11.30%,137,137,0,50.00%,50.00%,0.00%,42,42,274,15.30% +140499,873,5201,State-funded primary,461,232,229,50.30%,49.70%,20,4.30%,21,4.60%,20,441,0,4.30%,95.70%,0.00%,72,73,415,17.60% +140500,350,4049,State-funded secondary,1104,548,556,49.60%,50.40%,19,1.70%,136,12.30%,557,546,1,50.50%,49.50%,0.10%,421,465,1104,42.10% +140501,895,2171,State-funded primary,467,221,246,47.30%,52.70%,15,3.20%,80,17.10%,9,458,0,1.90%,98.10%,0.00%,42,37,400,9.30% +140502,330,2453,State-funded primary,441,209,232,47.40%,52.60%,3,0.70%,67,15.20%,419,22,0,95.00%,5.00%,0.00%,149,150,411,36.50% +140503,806,2316,State-funded primary,295,143,152,48.50%,51.50%,43,14.60%,56,19.00%,6,289,0,2.00%,98.00%,0.00%,124,121,263,46.00% +140504,806,2359,State-funded primary,364,173,191,47.50%,52.50%,9,2.50%,51,14.00%,14,350,0,3.80%,96.20%,0.00%,97,95,316,30.10% +140505,806,2369,State-funded primary,304,147,157,48.40%,51.60%,6,2.00%,54,17.80%,6,298,0,2.00%,98.00%,0.00%,167,169,251,67.30% +140506,881,5208,State-funded primary,216,101,115,46.80%,53.20%,2,0.90%,19,8.80%,10,205,1,4.60%,94.90%,0.50%,31,33,200,16.50% +140507,210,2335,State-funded primary,406,185,221,45.60%,54.40%,13,3.20%,53,13.10%,176,228,2,43.30%,56.20%,0.50%,196,190,376,50.50% +140508,936,2942,State-funded primary,477,222,255,46.50%,53.50%,29,6.10%,51,10.70%,127,349,1,26.60%,73.20%,0.20%,79,75,414,18.10% +140509,936,2496,State-funded primary,602,286,316,47.50%,52.50%,19,3.20%,135,22.40%,315,287,0,52.30%,47.70%,0.00%,206,183,503,36.40% +140510,941,4076,State-funded secondary,1766,1755,11,99.40%,0.60%,21,1.20%,238,13.50%,463,1301,2,26.20%,73.70%,0.10%,210,215,1424,15.10% +140511,916,2125,State-funded primary,209,102,107,48.80%,51.20%,4,1.90%,14,6.70%,5,201,3,2.40%,96.20%,1.40%,18,19,209,9.10% +140512,908,2706,State-funded primary,74,39,35,52.70%,47.30%,3,4.10%,10,13.50%,2,72,0,2.70%,97.30%,0.00%,14,14,74,18.90% +140513,908,2632,State-funded primary,219,120,99,54.80%,45.20%,15,6.80%,32,14.60%,9,210,0,4.10%,95.90%,0.00%,100,90,196,45.90% +140514,908,2610,State-funded primary,178,86,92,48.30%,51.70%,6,3.40%,13,7.30%,35,143,0,19.70%,80.30%,0.00%,38,41,178,23.00% +140515,866,4084,State-funded secondary,985,497,488,50.50%,49.50%,11,1.10%,140,14.20%,153,832,0,15.50%,84.50%,0.00%,244,267,985,27.10% +140516,852,2437,State-funded primary,261,130,131,49.80%,50.20%,6,2.30%,37,14.20%,47,214,0,18.00%,82.00%,0.00%,70,70,261,26.80% +140517,306,5202,State-funded primary,457,221,236,48.40%,51.60%,13,2.80%,58,12.70%,32,423,2,7.00%,92.60%,0.40%,34,34,421,8.10% +140518,330,2449,State-funded primary,454,236,218,52.00%,48.00%,0,0.00%,84,18.50%,91,362,1,20.00%,79.70%,0.20%,217,209,417,50.10% +140519,808,2319,State-funded primary,352,160,192,45.50%,54.50%,8,2.30%,49,13.90%,6,346,0,1.70%,98.30%,0.00%,151,150,318,47.20% +140520,886,3719,State-funded primary,131,59,72,45.00%,55.00%,2,1.50%,19,14.50%,20,111,0,15.30%,84.70%,0.00%,48,48,131,36.60% +140521,886,2435,State-funded primary,407,202,205,49.60%,50.40%,11,2.70%,114,28.00%,71,336,0,17.40%,82.60%,0.00%,131,132,407,32.40% +140522,860,2298,State-funded primary,87,41,46,47.10%,52.90%,1,1.10%,5,5.70%,6,81,0,6.90%,93.10%,0.00%,29,29,87,33.30% +140523,860,2299,State-funded primary,308,158,150,51.30%,48.70%,0,0.00%,32,10.40%,14,294,0,4.50%,95.50%,0.00%,81,87,308,28.20% +140524,330,4661,State-funded secondary,1030,502,528,48.70%,51.30%,14,1.40%,67,6.50%,80,950,0,7.80%,92.20%,0.00%,99,98,827,11.90% +140525,330,3402,State-funded primary,211,110,101,52.10%,47.90%,4,1.90%,22,10.40%,19,192,0,9.00%,91.00%,0.00%,26,28,211,13.30% +140526,884,2115,State-funded primary,90,39,51,43.30%,56.70%,4,4.40%,11,12.20%,25,65,0,27.80%,72.20%,0.00%,12,12,90,13.30% +140527,839,2164,State-funded primary,263,138,125,52.50%,47.50%,5,1.90%,26,9.90%,25,238,0,9.50%,90.50%,0.00%,40,40,220,18.20% +140528,330,3401,State-funded primary,412,204,208,49.50%,50.50%,7,1.70%,26,6.30%,72,337,3,17.50%,81.80%,0.70%,27,33,412,8.00% +140529,330,3403,State-funded primary,211,90,121,42.70%,57.30%,0,0.00%,29,13.70%,14,197,0,6.60%,93.40%,0.00%,7,12,211,5.70% +140530,937,5200,State-funded primary,85,41,44,48.20%,51.80%,3,3.50%,18,21.20%,0,85,0,0.00%,100.00%,0.00%,14,15,78,19.20% +140531,893,7016,State-funded special school,413,107,306,25.90%,74.10%,413,100.00%,0,0.00%,17,389,7,4.10%,94.20%,1.70%,152,128,340,37.60% +140532,303,2067,State-funded primary,309,160,149,51.80%,48.20%,14,4.50%,59,19.10%,58,251,0,18.80%,81.20%,0.00%,95,96,285,33.70% +140533,305,2029,State-funded primary,319,141,178,44.20%,55.80%,9,2.80%,39,12.20%,63,256,0,19.70%,80.30%,0.00%,96,98,293,33.40% +140534,926,4052,State-funded secondary,884,445,439,50.30%,49.70%,15,1.70%,49,5.50%,80,804,0,9.00%,91.00%,0.00%,139,146,756,19.30% +140535,873,2210,State-funded primary,89,48,41,53.90%,46.10%,1,1.10%,8,9.00%,1,88,0,1.10%,98.90%,0.00%,9,9,79,11.40% +140536,882,2127,State-funded primary,523,257,266,49.10%,50.90%,4,0.80%,52,9.90%,70,443,10,13.40%,84.70%,1.90%,147,151,480,31.50% +140537,886,5432,State-funded secondary,1106,522,584,47.20%,52.80%,35,3.20%,132,11.90%,176,930,0,15.90%,84.10%,0.00%,148,144,902,16.00% +140538,873,2088,State-funded primary,229,110,119,48.00%,52.00%,14,6.10%,13,5.70%,22,207,0,9.60%,90.40%,0.00%,86,83,191,43.50% +140539,370,2145,State-funded primary,182,88,94,48.40%,51.60%,0,0.00%,22,12.10%,5,177,0,2.70%,97.30%,0.00%,27,27,167,16.20% +140540,936,3942,State-funded primary,458,249,209,54.40%,45.60%,11,2.40%,40,8.70%,103,355,0,22.50%,77.50%,0.00%,62,62,419,14.80% +140544,891,2016,State-funded primary,247,127,120,51.40%,48.60%,2,0.80%,56,22.70%,67,180,0,27.10%,72.90%,0.00%,67,72,229,31.40% +140545,926,2054,State-funded primary,85,47,38,55.30%,44.70%,0,0.00%,6,7.10%,1,84,0,1.20%,98.80%,0.00%,15,17,85,20.00% +140546,373,2024,State-funded primary,171,85,86,49.70%,50.30%,2,1.20%,36,21.10%,4,167,0,2.30%,97.70%,0.00%,68,71,171,41.50% +140547,373,4007,State-funded secondary,1484,762,722,51.30%,48.70%,33,2.20%,203,13.70%,125,1357,2,8.40%,91.40%,0.10%,338,343,1249,27.50% +140548,892,2009,State-funded primary,424,177,247,41.70%,58.30%,2,0.50%,65,15.30%,100,315,9,23.60%,74.30%,2.10%,216,212,396,53.50% +140549,891,4017,State-funded secondary,754,371,383,49.20%,50.80%,8,1.10%,128,17.00%,105,609,40,13.90%,80.80%,5.30%,312,316,690,45.80% +140550,892,2010,State-funded primary,441,212,229,48.10%,51.90%,4,0.90%,74,16.80%,133,306,2,30.20%,69.40%,0.50%,203,197,398,49.50% +140551,811,2005,State-funded primary,358,147,211,41.10%,58.90%,9,2.50%,55,15.40%,17,333,8,4.70%,93.00%,2.20%,209,211,358,58.90% +140553,372,4002,State-funded secondary,1085,526,559,48.50%,51.50%,29,2.70%,250,23.00%,48,1037,0,4.40%,95.60%,0.00%,388,421,1085,38.80% +140555,892,2011,State-funded primary,404,175,229,43.30%,56.70%,7,1.70%,94,23.30%,107,297,0,26.50%,73.50%,0.00%,219,225,371,60.60% +140556,931,2010,State-funded primary,370,191,179,51.60%,48.40%,9,2.40%,88,23.80%,215,155,0,58.10%,41.90%,0.00%,100,108,331,32.60% +140557,926,4012,State-funded secondary,668,324,344,48.50%,51.50%,24,3.60%,97,14.50%,15,650,3,2.20%,97.30%,0.40%,132,145,668,21.70% +140558,384,2012,State-funded primary,199,91,108,45.70%,54.30%,4,2.00%,18,9.00%,81,118,0,40.70%,59.30%,0.00%,45,45,182,24.70% +140559,889,2004,State-funded primary,209,103,106,49.30%,50.70%,8,3.80%,42,20.10%,120,89,0,57.40%,42.60%,0.00%,110,115,209,55.00% +140560,838,2006,State-funded primary,102,53,49,52.00%,48.00%,8,7.80%,21,20.60%,4,98,0,3.90%,96.10%,0.00%,32,32,102,31.40% +140561,838,2007,State-funded primary,118,59,59,50.00%,50.00%,1,0.80%,14,11.90%,2,116,0,1.70%,98.30%,0.00%,15,16,118,13.60% +140562,861,2007,State-funded primary,490,239,251,48.80%,51.20%,9,1.80%,72,14.70%,193,297,0,39.40%,60.60%,0.00%,222,205,413,49.60% +140563,816,2004,State-funded primary,262,127,135,48.50%,51.50%,20,7.60%,17,6.50%,56,206,0,21.40%,78.60%,0.00%,84,68,217,31.30% +140564,208,4002,State-funded secondary,146,46,100,31.50%,68.50%,2,1.40%,20,13.70%,33,113,0,22.60%,77.40%,0.00%,26,0,0,0.00% +140565,383,4067,State-funded secondary,1301,661,640,50.80%,49.20%,7,0.50%,201,15.40%,755,544,2,58.00%,41.80%,0.20%,594,672,1301,51.70% +140566,380,6009,Independent school,19,0,19,0.00%,100.00%,8,42.10%,4,21.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140569,380,4023,State-funded secondary,1836,908,928,49.50%,50.50%,23,1.30%,344,18.70%,401,1434,1,21.80%,78.10%,0.10%,407,400,1466,27.30% +140573,935,2014,State-funded primary,446,233,213,52.20%,47.80%,4,0.90%,138,30.90%,43,403,0,9.60%,90.40%,0.00%,214,218,403,54.10% +140574,891,3511,State-funded primary,215,99,116,46.00%,54.00%,2,0.90%,8,3.70%,32,183,0,14.90%,85.10%,0.00%,34,35,204,17.20% +140575,317,4030,State-funded secondary,2670,1249,1421,46.80%,53.20%,85,3.20%,190,7.10%,996,1668,6,37.30%,62.50%,0.20%,405,329,1799,18.30% +140576,908,2602,State-funded primary,48,31,17,64.60%,35.40%,0,0.00%,8,16.70%,0,48,0,0.00%,100.00%,0.00%,8,8,41,19.50% +140577,908,2700,State-funded primary,369,187,182,50.70%,49.30%,6,1.60%,35,9.50%,38,331,0,10.30%,89.70%,0.00%,60,60,330,18.20% +140578,876,7003,State-funded special school,101,36,65,35.60%,64.40%,99,98.00%,2,2.00%,3,98,0,3.00%,97.00%,0.00%,60,46,73,63.00% +140579,353,2097,State-funded primary,516,245,271,47.50%,52.50%,29,5.60%,128,24.80%,259,257,0,50.20%,49.80%,0.00%,113,117,425,27.50% +140580,931,4126,State-funded secondary,1031,476,555,46.20%,53.80%,22,2.10%,173,16.80%,97,922,12,9.40%,89.40%,1.20%,138,163,852,19.10% +140581,812,2938,State-funded primary,206,107,99,51.90%,48.10%,0,0.00%,27,13.10%,14,192,0,6.80%,93.20%,0.00%,46,47,206,22.80% +140582,908,2612,State-funded primary,91,45,46,49.50%,50.50%,0,0.00%,13,14.30%,4,87,0,4.40%,95.60%,0.00%,17,17,72,23.60% +140583,372,2112,State-funded primary,198,86,112,43.40%,56.60%,5,2.50%,32,16.20%,4,194,0,2.00%,98.00%,0.00%,52,51,177,28.80% +140584,394,2118,State-funded primary,453,213,240,47.00%,53.00%,7,1.50%,44,9.70%,3,450,0,0.70%,99.30%,0.00%,68,68,410,16.60% +140585,371,2210,State-funded primary,441,221,220,50.10%,49.90%,6,1.40%,46,10.40%,20,421,0,4.50%,95.50%,0.00%,52,50,393,12.70% +140587,810,2610,State-funded primary,480,241,239,50.20%,49.80%,27,5.60%,56,11.70%,11,469,0,2.30%,97.70%,0.00%,57,60,430,14.00% +140588,373,3402,State-funded primary,460,234,226,50.90%,49.10%,24,5.20%,73,15.90%,315,145,0,68.50%,31.50%,0.00%,162,159,420,37.90% +140589,353,3008,State-funded primary,275,138,137,50.20%,49.80%,4,1.50%,9,3.30%,8,267,0,2.90%,97.10%,0.00%,22,26,275,9.50% +140590,372,3338,State-funded primary,145,75,70,51.70%,48.30%,3,2.10%,32,22.10%,14,131,0,9.70%,90.30%,0.00%,51,52,133,39.10% +140591,891,3089,State-funded primary,283,148,135,52.30%,47.70%,0,0.00%,11,3.90%,17,266,0,6.00%,94.00%,0.00%,15,14,263,5.30% +140592,886,2679,State-funded primary,652,330,322,50.60%,49.40%,5,0.80%,106,16.30%,153,499,0,23.50%,76.50%,0.00%,164,167,652,25.60% +140593,886,2685,State-funded primary,210,100,110,47.60%,52.40%,3,1.40%,21,10.00%,62,148,0,29.50%,70.50%,0.00%,26,27,210,12.90% +140594,936,2341,State-funded primary,312,156,156,50.00%,50.00%,30,9.60%,45,14.40%,33,279,0,10.60%,89.40%,0.00%,49,51,312,16.30% +140595,886,5418,State-funded secondary,1118,0,1118,0.00%,100.00%,2,0.20%,71,6.40%,211,900,7,18.90%,80.50%,0.60%,45,36,806,4.50% +140596,373,2203,State-funded primary,424,224,200,52.80%,47.20%,2,0.50%,17,4.00%,49,373,2,11.60%,88.00%,0.50%,45,48,424,11.30% +140597,353,3508,State-funded primary,414,188,226,45.40%,54.60%,19,4.60%,57,13.80%,254,160,0,61.40%,38.60%,0.00%,135,148,387,38.20% +140598,895,2340,State-funded primary,209,98,111,46.90%,53.10%,9,4.30%,16,7.70%,5,204,0,2.40%,97.60%,0.00%,11,11,209,5.30% +140599,808,2069,State-funded primary,351,169,182,48.10%,51.90%,5,1.40%,46,13.10%,17,334,0,4.80%,95.20%,0.00%,23,24,324,7.40% +140600,909,4002,State-funded secondary,377,112,265,29.70%,70.30%,12,3.20%,12,3.20%,3,374,0,0.80%,99.20%,0.00%,94,72,265,27.20% +140601,302,2048,State-funded primary,440,217,223,49.30%,50.70%,13,3.00%,41,9.30%,314,126,0,71.40%,28.60%,0.00%,103,107,398,26.90% +140602,370,2051,State-funded primary,300,162,138,54.00%,46.00%,3,1.00%,12,4.00%,7,293,0,2.30%,97.70%,0.00%,58,58,268,21.60% +140605,851,4003,State-funded secondary,898,456,442,50.80%,49.20%,30,3.30%,100,11.10%,131,756,11,14.60%,84.20%,1.20%,314,340,898,37.90% +140606,887,2009,State-funded primary,336,156,180,46.40%,53.60%,1,0.30%,56,16.70%,75,261,0,22.30%,77.70%,0.00%,77,84,336,25.00% +140607,887,2010,State-funded primary,164,81,83,49.40%,50.60%,0,0.00%,19,11.60%,42,122,0,25.60%,74.40%,0.00%,41,41,164,25.00% +140608,855,2012,State-funded primary,414,178,236,43.00%,57.00%,29,7.00%,43,10.40%,50,361,3,12.10%,87.20%,0.70%,58,62,414,15.00% +140609,373,2026,State-funded primary,190,104,86,54.70%,45.30%,0,0.00%,47,24.70%,55,135,0,28.90%,71.10%,0.00%,95,96,190,50.50% +140610,373,2027,State-funded primary,196,98,98,50.00%,50.00%,2,1.00%,30,15.30%,38,157,1,19.40%,80.10%,0.50%,86,69,135,51.10% +140611,919,2038,State-funded primary,257,133,124,51.80%,48.20%,6,2.30%,46,17.90%,50,207,0,19.50%,80.50%,0.00%,38,42,257,16.30% +140612,876,2000,State-funded primary,104,59,45,56.70%,43.30%,1,1.00%,34,32.70%,5,99,0,4.80%,95.20%,0.00%,64,64,91,70.30% +140613,891,2017,State-funded primary,201,95,106,47.30%,52.70%,4,2.00%,26,12.90%,51,150,0,25.40%,74.60%,0.00%,103,103,192,53.60% +140616,891,2018,State-funded primary,368,189,179,51.40%,48.60%,4,1.10%,66,17.90%,20,348,0,5.40%,94.60%,0.00%,147,146,339,43.10% +140617,884,2003,State-funded primary,533,254,279,47.70%,52.30%,13,2.40%,78,14.60%,86,446,1,16.10%,83.70%,0.20%,141,133,496,26.80% +140621,865,4004,State-funded secondary,330,214,116,64.80%,35.20%,5,1.50%,50,15.20%,12,318,0,3.60%,96.40%,0.00%,26,0,0,0.00% +140622,873,2025,State-funded primary,211,102,109,48.30%,51.70%,4,1.90%,25,11.80%,6,200,5,2.80%,94.80%,2.40%,36,36,211,17.10% +140623,935,2016,State-funded primary,164,74,90,45.10%,54.90%,1,0.60%,13,7.90%,4,160,0,2.40%,97.60%,0.00%,31,34,164,20.70% +140624,851,6000,Independent school,53,39,14,73.60%,26.40%,0,0.00%,2,3.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140625,813,2006,State-funded primary,306,142,164,46.40%,53.60%,9,2.90%,38,12.40%,54,252,0,17.60%,82.40%,0.00%,149,147,285,51.60% +140626,813,2007,State-funded primary,387,187,200,48.30%,51.70%,8,2.10%,52,13.40%,50,337,0,12.90%,87.10%,0.00%,200,204,367,55.60% +140627,359,1108,State-funded AP school,98,34,64,34.70%,65.30%,3,3.10%,81,82.70%,1,96,1,1.00%,98.00%,1.00%,60,66,98,67.30% +140628,941,2157,State-funded primary,432,217,215,50.20%,49.80%,2,0.50%,25,5.80%,327,105,0,75.70%,24.30%,0.00%,62,65,400,16.30% +140629,880,3615,State-funded primary,197,110,87,55.80%,44.20%,8,4.10%,41,20.80%,13,184,0,6.60%,93.40%,0.00%,50,54,197,27.40% +140630,908,2121,State-funded primary,32,23,9,71.90%,28.10%,0,0.00%,6,18.80%,0,32,0,0.00%,100.00%,0.00%,5,5,32,15.60% +140631,933,4553,State-funded secondary,352,185,167,52.60%,47.40%,9,2.60%,46,13.10%,8,343,1,2.30%,97.40%,0.30%,107,111,352,31.50% +140632,908,3034,State-funded primary,73,40,33,54.80%,45.20%,1,1.40%,11,15.10%,2,71,0,2.70%,97.30%,0.00%,12,12,73,16.40% +140633,861,4038,State-funded secondary,1144,535,609,46.80%,53.20%,31,2.70%,178,15.60%,99,1045,0,8.70%,91.30%,0.00%,278,325,1144,28.40% +140635,908,2113,State-funded primary,46,21,25,45.70%,54.30%,1,2.20%,7,15.20%,0,46,0,0.00%,100.00%,0.00%,2,2,40,5.00% +140636,933,3086,State-funded primary,110,49,61,44.50%,55.50%,3,2.70%,7,6.40%,4,106,0,3.60%,96.40%,0.00%,18,18,88,20.50% +140637,891,2087,State-funded primary,327,151,176,46.20%,53.80%,3,0.90%,35,10.70%,17,310,0,5.20%,94.80%,0.00%,53,55,297,18.50% +140638,390,3329,State-funded primary,229,122,107,53.30%,46.70%,5,2.20%,19,8.30%,5,224,0,2.20%,97.80%,0.00%,14,14,229,6.10% +140639,380,2077,State-funded primary,206,112,94,54.40%,45.60%,3,1.50%,52,25.20%,16,190,0,7.80%,92.20%,0.00%,102,98,187,52.40% +140640,886,5435,State-funded secondary,1339,543,796,40.60%,59.40%,34,2.50%,120,9.00%,220,1114,5,16.40%,83.20%,0.40%,222,209,1104,18.90% +140641,886,3890,State-funded primary,199,99,100,49.70%,50.30%,5,2.50%,30,15.10%,31,168,0,15.60%,84.40%,0.00%,61,63,199,31.70% +140642,908,2120,State-funded primary,62,28,34,45.20%,54.80%,2,3.20%,9,14.50%,1,61,0,1.60%,98.40%,0.00%,14,14,62,22.60% +140644,880,3616,State-funded primary,307,164,143,53.40%,46.60%,8,2.60%,46,15.00%,14,293,0,4.60%,95.40%,0.00%,94,91,288,31.60% +140645,933,3123,State-funded primary,118,61,57,51.70%,48.30%,4,3.40%,17,14.40%,3,115,0,2.50%,97.50%,0.00%,45,45,118,38.10% +140646,372,4018,State-funded secondary,2098,1060,1038,50.50%,49.50%,55,2.60%,219,10.40%,68,2030,0,3.20%,96.80%,0.00%,277,292,1744,16.70% +140647,895,3805,State-funded primary,466,216,250,46.40%,53.60%,22,4.70%,52,11.20%,122,344,0,26.20%,73.80%,0.00%,139,141,414,34.10% +140648,305,2027,State-funded primary,147,59,88,40.10%,59.90%,7,4.80%,26,17.70%,33,114,0,22.40%,77.60%,0.00%,56,57,147,38.80% +140649,852,1115,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +140650,936,4508,State-funded secondary,1165,598,567,51.30%,48.70%,37,3.20%,104,8.90%,112,1053,0,9.60%,90.40%,0.00%,185,196,1165,16.80% +140651,938,2021,State-funded primary,359,170,189,47.40%,52.60%,13,3.60%,46,12.80%,72,287,0,20.10%,79.90%,0.00%,63,64,359,17.80% +140652,931,2011,State-funded primary,392,194,198,49.50%,50.50%,16,4.10%,80,20.40%,93,299,0,23.70%,76.30%,0.00%,38,38,358,10.60% +140653,931,4004,State-funded secondary,589,248,341,42.10%,57.90%,35,5.90%,163,27.70%,94,495,0,16.00%,84.00%,0.00%,180,184,589,31.20% +140654,937,7003,State-funded special school,98,19,79,19.40%,80.60%,98,100.00%,0,0.00%,0,98,0,0.00%,100.00%,0.00%,56,54,92,58.70% +140655,919,6053,Independent school,33,11,22,33.30%,66.70%,33,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140656,330,2144,State-funded primary,656,341,315,52.00%,48.00%,3,0.50%,134,20.40%,578,78,0,88.10%,11.90%,0.00%,282,284,617,46.00% +140657,310,2001,State-funded primary,513,241,272,47.00%,53.00%,23,4.50%,54,10.50%,314,199,0,61.20%,38.80%,0.00%,132,132,474,27.80% +140658,336,2012,State-funded primary,236,129,107,54.70%,45.30%,11,4.70%,30,12.70%,15,221,0,6.40%,93.60%,0.00%,131,133,204,65.20% +140659,891,2020,State-funded primary,300,161,139,53.70%,46.30%,1,0.30%,27,9.00%,17,282,1,5.70%,94.00%,0.30%,107,103,280,36.80% +140660,382,4004,State-funded secondary,1426,720,704,50.50%,49.40%,30,2.10%,150,10.50%,34,1391,1,2.40%,97.50%,0.10%,337,347,1426,24.30% +140661,352,2025,State-funded primary,425,209,216,49.20%,50.80%,6,1.40%,37,8.70%,386,39,0,90.80%,9.20%,0.00%,153,148,384,38.50% +140663,926,2055,State-funded primary,271,141,130,52.00%,48.00%,6,2.20%,47,17.30%,110,161,0,40.60%,59.40%,0.00%,111,114,271,42.10% +140664,896,2005,State-funded primary,174,96,78,55.20%,44.80%,9,5.20%,43,24.70%,4,170,0,2.30%,97.70%,0.00%,69,71,147,48.30% +140666,881,2103,State-funded primary,337,160,177,47.50%,52.50%,8,2.40%,43,12.80%,30,307,0,8.90%,91.10%,0.00%,78,101,337,30.00% +140667,314,2007,State-funded primary,250,118,132,47.20%,52.80%,25,10.00%,38,15.20%,110,140,0,44.00%,56.00%,0.00%,49,50,222,22.50% +140669,935,4041,State-funded secondary,836,391,445,46.80%,53.20%,37,4.40%,112,13.40%,133,677,26,15.90%,81.00%,3.10%,163,190,836,22.70% +140670,908,2034,State-funded primary,79,42,37,53.20%,46.80%,4,5.10%,8,10.10%,1,78,0,1.30%,98.70%,0.00%,29,29,79,36.70% +140671,312,2040,State-funded primary,616,304,312,49.40%,50.60%,20,3.20%,73,11.90%,501,115,0,81.30%,18.70%,0.00%,203,198,574,34.50% +140672,882,2000,State-funded primary,506,254,252,50.20%,49.80%,4,0.80%,110,21.70%,75,431,0,14.80%,85.20%,0.00%,186,188,418,45.00% +140673,890,2001,State-funded primary,443,207,236,46.70%,53.30%,16,3.60%,89,20.10%,168,275,0,37.90%,62.10%,0.00%,239,242,389,62.20% +140674,306,2073,State-funded primary,456,226,230,49.60%,50.40%,6,1.30%,67,14.70%,111,344,1,24.30%,75.40%,0.20%,157,160,413,38.70% +140675,908,4000,State-funded secondary,614,318,296,51.80%,48.20%,7,1.10%,99,16.10%,3,603,8,0.50%,98.20%,1.30%,135,145,614,23.60% +140676,879,2003,State-funded primary,153,76,77,49.70%,50.30%,10,6.50%,26,17.00%,7,146,0,4.60%,95.40%,0.00%,64,67,153,43.80% +140677,800,7000,State-funded special school,103,11,92,10.70%,89.30%,103,100.00%,0,0.00%,1,102,0,1.00%,99.00%,0.00%,73,71,97,73.20% +140679,845,4004,State-funded secondary,754,358,396,47.50%,52.50%,14,1.90%,147,19.50%,47,707,0,6.20%,93.80%,0.00%,224,253,754,33.60% +140681,926,2057,State-funded primary,95,44,51,46.30%,53.70%,4,4.20%,13,13.70%,3,91,1,3.20%,95.80%,1.10%,26,27,95,28.40% +140682,212,2007,State-funded primary,164,66,98,40.20%,59.80%,5,3.00%,23,14.00%,69,95,0,42.10%,57.90%,0.00%,99,97,155,62.60% +140683,306,2081,State-funded primary,220,0,220,0.00%,100.00%,4,1.80%,48,21.80%,159,61,0,72.30%,27.70%,0.00%,80,85,220,38.60% +140684,394,2007,State-funded primary,196,72,124,36.70%,63.30%,13,6.60%,45,23.00%,2,194,0,1.00%,99.00%,0.00%,100,100,196,51.00% +140685,865,2019,State-funded primary,403,194,209,48.10%,51.90%,24,6.00%,82,20.30%,109,293,1,27.00%,72.70%,0.20%,30,34,366,9.30% +140686,202,2002,State-funded primary,389,181,208,46.50%,53.50%,12,3.10%,81,20.80%,132,257,0,33.90%,66.10%,0.00%,169,160,363,44.10% +140687,301,2002,State-funded primary,339,176,163,51.90%,48.10%,13,3.80%,50,14.70%,203,136,0,59.90%,40.10%,0.00%,118,127,339,37.50% +140688,931,2012,State-funded primary,455,231,224,50.80%,49.20%,10,2.20%,79,17.40%,110,345,0,24.20%,75.80%,0.00%,70,74,421,17.60% +140690,850,2039,State-funded primary,301,152,149,50.50%,49.50%,13,4.30%,69,22.90%,12,289,0,4.00%,96.00%,0.00%,63,66,301,21.90% +140691,921,4002,State-funded secondary,622,311,311,50.00%,50.00%,24,3.90%,78,12.50%,12,610,0,1.90%,98.10%,0.00%,100,114,622,18.30% +140692,352,2036,State-funded primary,212,112,100,52.80%,47.20%,6,2.80%,13,6.10%,153,59,0,72.20%,27.80%,0.00%,66,67,212,31.60% +140693,879,4002,State-funded secondary,350,0,350,0.00%,100.00%,16,4.60%,67,19.10%,27,320,3,7.70%,91.40%,0.90%,98,115,350,32.90% +140694,937,2026,State-funded primary,218,116,102,53.20%,46.80%,5,2.30%,38,17.40%,16,202,0,7.30%,92.70%,0.00%,42,44,218,20.20% +140695,878,2036,State-funded primary,161,80,81,49.70%,50.30%,3,1.90%,29,18.00%,8,153,0,5.00%,95.00%,0.00%,37,35,144,24.30% +140696,855,2000,State-funded primary,64,29,35,45.30%,54.70%,0,0.00%,7,10.90%,0,64,0,0.00%,100.00%,0.00%,4,4,64,6.30% +140697,851,4320,State-funded secondary,1173,572,601,48.80%,51.20%,31,2.60%,180,15.30%,104,1067,2,8.90%,91.00%,0.20%,281,306,1173,26.10% +140698,891,4756,State-funded secondary,1113,568,545,51.00%,49.00%,9,0.80%,104,9.30%,297,816,0,26.70%,73.30%,0.00%,174,191,961,19.90% +140699,865,5224,State-funded primary,139,54,85,38.80%,61.20%,2,1.40%,31,22.30%,1,138,0,0.70%,99.30%,0.00%,11,12,139,8.60% +140700,394,2139,State-funded primary,282,135,147,47.90%,52.10%,2,0.70%,44,15.60%,0,282,0,0.00%,100.00%,0.00%,52,53,206,25.70% +140701,887,7042,State-funded special school,375,133,242,35.50%,64.50%,375,100.00%,0,0.00%,29,346,0,7.70%,92.30%,0.00%,175,143,279,51.30% +140702,855,2072,State-funded primary,551,279,272,50.60%,49.40%,6,1.10%,70,12.70%,38,500,13,6.90%,90.70%,2.40%,75,76,551,13.80% +140703,352,4256,State-funded secondary,947,0,947,0.00%,100.00%,25,2.60%,142,15.00%,672,273,2,71.00%,28.80%,0.20%,400,439,947,46.40% +140704,306,2057,State-funded primary,694,350,344,50.40%,49.60%,23,3.30%,55,7.90%,72,622,0,10.40%,89.60%,0.00%,61,64,629,10.20% +140705,839,3686,State-funded primary,375,188,187,50.10%,49.90%,8,2.10%,60,16.00%,72,291,12,19.20%,77.60%,3.20%,84,89,354,25.10% +140706,330,2299,State-funded primary,277,141,136,50.90%,49.10%,1,0.40%,34,12.30%,106,170,1,38.30%,61.40%,0.40%,88,90,224,40.20% +140707,919,2390,State-funded primary,180,84,96,46.70%,53.30%,3,1.70%,4,2.20%,12,168,0,6.70%,93.30%,0.00%,1,1,180,0.60% +140708,919,2344,State-funded primary,255,110,145,43.10%,56.90%,6,2.40%,20,7.80%,30,225,0,11.80%,88.20%,0.00%,4,6,255,2.40% +140709,352,2073,State-funded primary,718,370,348,51.50%,48.50%,33,4.60%,120,16.70%,150,568,0,20.90%,79.10%,0.00%,337,312,628,49.70% +140710,303,2046,State-funded primary,663,336,327,50.70%,49.30%,14,2.10%,46,6.90%,79,584,0,11.90%,88.10%,0.00%,61,64,624,10.30% +140712,926,3054,State-funded primary,97,45,52,46.40%,53.60%,1,1.00%,14,14.40%,2,91,4,2.10%,93.80%,4.10%,23,26,97,26.80% +140713,938,4065,State-funded secondary,1599,713,886,44.60%,55.40%,26,1.60%,240,15.00%,94,1505,0,5.90%,94.10%,0.00%,278,310,1599,19.40% +140714,806,2318,State-funded primary,343,167,176,48.70%,51.30%,14,4.10%,58,16.90%,24,318,1,7.00%,92.70%,0.30%,169,172,302,57.00% +140715,892,2099,State-funded primary,236,127,109,53.80%,46.20%,0,0.00%,39,16.50%,152,84,0,64.40%,35.60%,0.00%,93,90,209,43.10% +140716,810,2164,State-funded primary,336,165,171,49.10%,50.90%,7,2.10%,40,11.90%,77,259,0,22.90%,77.10%,0.00%,117,118,305,38.70% +140717,306,2103,State-funded primary,482,222,260,46.10%,53.90%,22,4.60%,69,14.30%,175,307,0,36.30%,63.70%,0.00%,200,206,431,47.80% +140718,313,2020,State-funded primary,459,233,226,50.80%,49.20%,7,1.50%,63,13.70%,168,291,0,36.60%,63.40%,0.00%,114,122,459,26.60% +140719,851,2000,State-funded primary,461,217,244,47.10%,52.90%,13,2.80%,105,22.80%,118,343,0,25.60%,74.40%,0.00%,240,239,416,57.50% +140720,883,2942,State-funded primary,405,206,199,50.90%,49.10%,7,1.70%,78,19.30%,27,378,0,6.70%,93.30%,0.00%,94,110,405,27.20% +140721,825,3036,State-funded primary,423,204,219,48.20%,51.80%,12,2.80%,38,9.00%,30,393,0,7.10%,92.90%,0.00%,40,41,423,9.70% +140722,806,2347,State-funded primary,681,337,344,49.50%,50.50%,8,1.20%,39,5.70%,130,544,7,19.10%,79.90%,1.00%,160,169,620,27.30% +140723,938,2212,State-funded primary,418,202,216,48.30%,51.70%,2,0.50%,42,10.00%,37,381,0,8.90%,91.10%,0.00%,6,7,418,1.70% +140724,895,2174,State-funded primary,210,106,104,50.50%,49.50%,11,5.20%,25,11.90%,5,205,0,2.40%,97.60%,0.00%,21,21,210,10.00% +140725,855,2367,State-funded primary,408,207,201,50.70%,49.30%,11,2.70%,57,14.00%,46,361,1,11.30%,88.50%,0.20%,31,32,408,7.80% +140726,879,3761,State-funded primary,302,145,157,48.00%,52.00%,6,2.00%,58,19.20%,127,175,0,42.10%,57.90%,0.00%,65,65,302,21.50% +140727,891,3766,State-funded primary,299,142,157,47.50%,52.50%,1,0.30%,49,16.40%,118,181,0,39.50%,60.50%,0.00%,55,56,271,20.70% +140728,801,2044,State-funded primary,143,59,84,41.30%,58.70%,2,1.40%,7,4.90%,41,102,0,28.70%,71.30%,0.00%,36,35,132,26.50% +140729,305,3000,State-funded primary,175,94,81,53.70%,46.30%,7,4.00%,25,14.30%,12,163,0,6.90%,93.10%,0.00%,27,27,175,15.40% +140730,879,3762,State-funded primary,131,67,64,51.10%,48.90%,4,3.10%,35,26.70%,18,113,0,13.70%,86.30%,0.00%,57,57,131,43.50% +140731,885,4438,State-funded secondary,370,189,181,51.10%,48.90%,40,10.80%,75,20.30%,39,317,14,10.50%,85.70%,3.80%,128,130,318,40.90% +140732,850,7078,State-funded special school,58,0,58,0.00%,100.00%,58,100.00%,0,0.00%,0,58,0,0.00%,100.00%,0.00%,39,41,58,70.70% +140733,334,2081,State-funded primary,331,146,185,44.10%,55.90%,5,1.50%,35,10.60%,55,275,1,16.60%,83.10%,0.30%,64,64,266,24.10% +140734,826,2016,State-funded primary,630,314,316,49.80%,50.20%,6,1.00%,29,4.60%,212,418,0,33.70%,66.30%,0.00%,42,45,630,7.10% +140735,881,2053,State-funded primary,202,99,103,49.00%,51.00%,3,1.50%,40,19.80%,40,161,1,19.80%,79.70%,0.50%,58,58,164,35.40% +140736,941,3046,State-funded primary,67,29,38,43.30%,56.70%,2,3.00%,18,26.90%,4,63,0,6.00%,94.00%,0.00%,7,8,67,11.90% +140737,879,4605,State-funded secondary,785,760,25,96.80%,3.20%,22,2.80%,122,15.50%,51,669,65,6.50%,85.20%,8.30%,171,174,676,25.70% +140738,358,2076,State-funded primary,412,206,206,50.00%,50.00%,10,2.40%,72,17.50%,301,111,0,73.10%,26.90%,0.00%,186,187,393,47.60% +140739,878,3452,State-funded primary,257,146,111,56.80%,43.20%,8,3.10%,43,16.70%,33,224,0,12.80%,87.20%,0.00%,80,69,215,32.10% +140740,895,2011,State-funded primary,219,114,105,52.10%,47.90%,11,5.00%,27,12.30%,10,209,0,4.60%,95.40%,0.00%,16,16,219,7.30% +140741,908,2213,State-funded primary,107,60,47,56.10%,43.90%,4,3.70%,8,7.50%,1,101,5,0.90%,94.40%,4.70%,5,7,107,6.50% +140742,865,2208,State-funded primary,180,91,89,50.60%,49.40%,3,1.70%,25,13.90%,3,177,0,1.70%,98.30%,0.00%,40,41,180,22.80% +140743,880,3617,State-funded primary,76,35,41,46.10%,53.90%,5,6.60%,18,23.70%,7,69,0,9.20%,90.80%,0.00%,30,31,76,40.80% +140744,881,2620,State-funded primary,212,103,109,48.60%,51.40%,4,1.90%,34,16.00%,3,209,0,1.40%,98.60%,0.00%,19,21,212,9.90% +140745,880,3614,State-funded primary,157,82,75,52.20%,47.80%,8,5.10%,39,24.80%,36,121,0,22.90%,77.10%,0.00%,59,59,157,37.60% +140746,855,2368,State-funded primary,451,226,225,50.10%,49.90%,9,2.00%,62,13.70%,43,406,2,9.50%,90.00%,0.40%,53,55,451,12.20% +140747,881,5275,State-funded primary,224,114,110,50.90%,49.10%,6,2.70%,34,15.20%,7,207,10,3.10%,92.40%,4.50%,70,72,213,33.80% +140748,312,4023,State-funded secondary,1257,594,663,47.30%,52.70%,45,3.60%,173,13.80%,366,889,2,29.10%,70.70%,0.20%,168,225,1025,22.00% +140749,880,3613,State-funded primary,221,112,109,50.70%,49.30%,11,5.00%,18,8.10%,24,197,0,10.90%,89.10%,0.00%,55,53,198,26.80% +140750,807,3387,State-funded primary,214,104,110,48.60%,51.40%,4,1.90%,12,5.60%,5,209,0,2.30%,97.70%,0.00%,67,71,189,37.60% +140751,807,4638,State-funded secondary,543,259,284,47.70%,52.30%,31,5.70%,73,13.40%,27,516,0,5.00%,95.00%,0.00%,275,299,543,55.10% +140752,305,2071,State-funded primary,392,225,167,57.40%,42.60%,9,2.30%,24,6.10%,100,292,0,25.50%,74.50%,0.00%,51,51,392,13.00% +140753,926,1111,State-funded AP school,315,83,232,26.30%,73.70%,136,43.20%,118,37.50%,14,301,0,4.40%,95.60%,0.00%,199,233,315,74.00% +140754,855,2094,State-funded primary,37,16,21,43.20%,56.80%,4,10.80%,2,5.40%,0,37,0,0.00%,100.00%,0.00%,10,10,37,27.00% +140755,838,3670,State-funded primary,203,90,113,44.30%,55.70%,8,3.90%,34,16.70%,29,174,0,14.30%,85.70%,0.00%,28,29,203,14.30% +140757,838,3400,State-funded primary,117,66,51,56.40%,43.60%,6,5.10%,23,19.70%,6,111,0,5.10%,94.90%,0.00%,23,23,117,19.70% +140758,352,3474,State-funded primary,235,112,123,47.70%,52.30%,13,5.50%,45,19.10%,44,191,0,18.70%,81.30%,0.00%,77,73,209,34.90% +140759,890,4405,State-funded secondary,994,484,510,48.70%,51.30%,7,0.70%,155,15.60%,44,950,0,4.40%,95.60%,0.00%,337,369,994,37.10% +140760,839,3678,State-funded primary,409,193,216,47.20%,52.80%,16,3.90%,51,12.50%,92,317,0,22.50%,77.50%,0.00%,78,78,409,19.10% +140761,878,3603,State-funded primary,85,38,47,44.70%,55.30%,6,7.10%,19,22.40%,8,74,3,9.40%,87.10%,3.50%,17,17,85,20.00% +140762,878,3773,State-funded primary,121,66,55,54.50%,45.50%,2,1.70%,15,12.40%,18,103,0,14.90%,85.10%,0.00%,34,36,121,29.80% +140763,908,3463,State-funded primary,159,82,77,51.60%,48.40%,3,1.90%,28,17.60%,14,145,0,8.80%,91.20%,0.00%,43,43,159,27.00% +140764,879,3765,State-funded primary,191,110,81,57.60%,42.40%,4,2.10%,16,8.40%,39,152,0,20.40%,79.60%,0.00%,52,54,191,28.30% +140765,878,3610,State-funded primary,118,55,63,46.60%,53.40%,5,4.20%,28,23.70%,8,110,0,6.80%,93.20%,0.00%,27,31,118,26.30% +140766,878,3310,State-funded primary,162,72,90,44.40%,55.60%,3,1.90%,29,17.90%,12,150,0,7.40%,92.60%,0.00%,29,29,150,19.30% +140767,839,3611,State-funded primary,382,175,207,45.80%,54.20%,10,2.60%,48,12.60%,134,248,0,35.10%,64.90%,0.00%,74,76,382,19.90% +140768,880,3601,State-funded primary,65,40,25,61.50%,38.50%,2,3.10%,16,24.60%,1,64,0,1.50%,98.50%,0.00%,19,19,65,29.20% +140769,807,3393,State-funded primary,352,182,170,51.70%,48.30%,4,1.10%,50,14.20%,15,337,0,4.30%,95.70%,0.00%,114,115,306,37.60% +140770,838,3401,State-funded primary,153,78,75,51.00%,49.00%,3,2.00%,27,17.60%,8,145,0,5.20%,94.80%,0.00%,23,23,153,15.00% +140771,838,3404,State-funded primary,190,109,81,57.40%,42.60%,2,1.10%,21,11.10%,31,159,0,16.30%,83.70%,0.00%,20,19,154,12.30% +140772,878,3301,State-funded primary,135,69,66,51.10%,48.90%,6,4.40%,29,21.50%,8,127,0,5.90%,94.10%,0.00%,14,15,135,11.10% +140773,908,3718,State-funded primary,253,128,125,50.60%,49.40%,7,2.80%,47,18.60%,21,232,0,8.30%,91.70%,0.00%,65,63,218,28.90% +140774,878,3602,State-funded primary,137,64,73,46.70%,53.30%,10,7.30%,17,12.40%,1,136,0,0.70%,99.30%,0.00%,49,48,121,39.70% +140775,908,3388,State-funded primary,205,103,102,50.20%,49.80%,7,3.40%,24,11.70%,12,193,0,5.90%,94.10%,0.00%,14,14,205,6.80% +140776,838,3402,State-funded primary,91,48,43,52.70%,47.30%,2,2.20%,13,14.30%,7,84,0,7.70%,92.30%,0.00%,19,17,80,21.30% +140777,839,3612,State-funded primary,405,203,202,50.10%,49.90%,11,2.70%,67,16.50%,165,239,1,40.70%,59.00%,0.20%,45,47,405,11.60% +140778,908,3306,State-funded primary,154,81,73,52.60%,47.40%,2,1.30%,30,19.50%,12,142,0,7.80%,92.20%,0.00%,67,68,143,47.60% +140779,807,3300,State-funded primary,236,121,115,51.30%,48.70%,13,5.50%,42,17.80%,22,214,0,9.30%,90.70%,0.00%,129,126,200,63.00% +140780,838,3406,State-funded primary,188,95,93,50.50%,49.50%,6,3.20%,25,13.30%,26,162,0,13.80%,86.20%,0.00%,33,34,188,18.10% +140781,908,3461,State-funded primary,215,108,107,50.20%,49.80%,7,3.30%,25,11.60%,8,201,6,3.70%,93.50%,2.80%,74,75,215,34.90% +140782,908,3462,State-funded primary,229,103,126,45.00%,55.00%,6,2.60%,52,22.70%,7,220,2,3.10%,96.10%,0.90%,72,61,166,36.70% +140783,891,3767,State-funded primary,227,124,103,54.60%,45.40%,0,0.00%,26,11.50%,50,177,0,22.00%,78.00%,0.00%,16,17,209,8.10% +140784,879,3766,State-funded primary,131,57,74,43.50%,56.50%,1,0.80%,21,16.00%,22,109,0,16.80%,83.20%,0.00%,53,55,131,42.00% +140785,879,3763,State-funded primary,113,59,54,52.20%,47.80%,1,0.90%,16,14.20%,36,75,2,31.90%,66.40%,1.80%,58,60,113,53.10% +140786,919,5420,State-funded secondary,1483,1298,185,87.50%,12.50%,12,0.80%,97,6.50%,180,1303,0,12.10%,87.90%,0.00%,67,56,926,6.00% +140787,855,4029,State-funded secondary,999,536,463,53.70%,46.30%,32,3.20%,158,15.80%,105,894,0,10.50%,89.50%,0.00%,209,218,938,23.20% +140788,391,2890,State-funded primary,424,205,219,48.30%,51.70%,8,1.90%,59,13.90%,144,275,5,34.00%,64.90%,1.20%,278,259,380,68.20% +140789,916,2032,State-funded primary,217,106,111,48.80%,51.20%,5,2.30%,43,19.80%,111,106,0,51.20%,48.80%,0.00%,86,85,182,46.70% +140790,908,2224,State-funded primary,149,68,81,45.60%,54.40%,7,4.70%,11,7.40%,1,142,6,0.70%,95.30%,4.00%,60,56,129,43.40% +140791,895,4116,State-funded secondary,1373,638,735,46.50%,53.50%,49,3.60%,164,11.90%,70,1301,2,5.10%,94.80%,0.10%,187,188,1162,16.20% +140792,333,2062,State-funded primary,338,162,176,47.90%,52.10%,5,1.50%,47,13.90%,107,231,0,31.70%,68.30%,0.00%,86,86,259,33.20% +140793,333,2076,State-funded primary,455,218,237,47.90%,52.10%,10,2.20%,69,15.20%,47,408,0,10.30%,89.70%,0.00%,174,178,417,42.70% +140794,938,3375,State-funded primary,610,318,292,52.10%,47.90%,15,2.50%,107,17.50%,109,501,0,17.90%,82.10%,0.00%,208,211,547,38.60% +140795,320,5950,State-funded special school,358,96,262,26.80%,73.20%,358,100.00%,0,0.00%,171,176,11,47.80%,49.20%,3.10%,134,110,279,39.40% +140796,304,7000,State-funded special school,185,59,126,31.90%,68.10%,185,100.00%,0,0.00%,109,69,7,58.90%,37.30%,3.80%,100,77,127,60.60% +140797,916,3368,State-funded primary,303,160,143,52.80%,47.20%,15,5.00%,43,14.20%,8,295,0,2.60%,97.40%,0.00%,56,59,303,19.50% +140798,336,5400,State-funded secondary,1147,1147,0,100.00%,0.00%,0,0.00%,53,4.60%,215,873,59,18.70%,76.10%,5.10%,125,114,832,13.70% +140799,372,2067,State-funded primary,194,98,96,50.50%,49.50%,3,1.50%,29,14.90%,31,163,0,16.00%,84.00%,0.00%,59,60,178,33.70% +140800,886,3900,State-funded primary,659,312,347,47.30%,52.70%,12,1.80%,37,5.60%,105,553,1,15.90%,83.90%,0.20%,187,196,588,33.30% +140801,812,2939,State-funded primary,337,173,164,51.30%,48.70%,7,2.10%,35,10.40%,10,327,0,3.00%,97.00%,0.00%,41,42,306,13.70% +140802,860,4713,State-funded secondary,1121,549,572,49.00%,51.00%,26,2.30%,114,10.20%,263,850,8,23.50%,75.80%,0.70%,203,202,997,20.30% +140803,860,3465,State-funded primary,410,218,192,53.20%,46.80%,4,1.00%,27,6.60%,161,249,0,39.30%,60.70%,0.00%,103,104,410,25.40% +140804,861,3410,State-funded primary,321,161,160,50.20%,49.80%,6,1.90%,37,11.50%,103,218,0,32.10%,67.90%,0.00%,36,34,297,11.40% +140805,861,3408,State-funded primary,240,116,124,48.30%,51.70%,6,2.50%,25,10.40%,101,138,1,42.10%,57.50%,0.40%,35,35,210,16.70% +140806,213,1101,State-funded AP school,55,13,42,23.60%,76.40%,10,18.20%,45,81.80%,14,40,1,25.50%,72.70%,1.80%,40,41,55,74.50% +140807,207,1100,State-funded AP school,47,14,33,29.80%,70.20%,11,23.40%,33,70.20%,5,42,0,10.60%,89.40%,0.00%,25,35,47,74.50% +140808,936,2005,State-funded primary,232,125,107,53.90%,46.10%,4,1.70%,15,6.50%,12,220,0,5.20%,94.80%,0.00%,28,28,232,12.10% +140810,936,2010,State-funded primary,282,137,145,48.60%,51.40%,4,1.40%,27,9.60%,30,252,0,10.60%,89.40%,0.00%,28,34,282,12.10% +140811,205,2004,State-funded primary,204,98,106,48.00%,52.00%,5,2.50%,25,12.30%,113,91,0,55.40%,44.60%,0.00%,46,48,204,23.50% +140813,895,4002,State-funded secondary,120,42,78,35.00%,65.00%,11,9.20%,23,19.20%,3,117,0,2.50%,97.50%,0.00%,22,21,54,38.90% +140814,357,6004,Independent school,3,0,3,0.00%,100.00%,1,33.30%,2,66.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140815,926,4013,State-funded secondary,1066,626,440,58.70%,41.30%,13,1.20%,117,11.00%,235,821,10,22.00%,77.00%,0.90%,255,271,878,30.90% +140816,371,6001,Independent school,28,9,19,32.10%,67.90%,0,0.00%,9,32.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140818,311,2012,State-funded primary,238,114,124,47.90%,52.10%,7,2.90%,53,22.30%,82,156,0,34.50%,65.50%,0.00%,102,104,238,43.70% +140819,926,2059,State-funded primary,243,129,114,53.10%,46.90%,0,0.00%,60,24.70%,2,241,0,0.80%,99.20%,0.00%,64,67,243,27.60% +140820,940,2159,State-funded primary,361,184,177,51.00%,49.00%,17,4.70%,64,17.70%,133,226,2,36.80%,62.60%,0.60%,78,80,315,25.40% +140821,373,4008,State-funded secondary,1046,514,532,49.10%,50.90%,32,3.10%,127,12.10%,155,886,5,14.80%,84.70%,0.50%,373,415,1046,39.70% +140822,935,2017,State-funded primary,655,324,331,49.50%,50.50%,49,7.50%,54,8.20%,133,520,2,20.30%,79.40%,0.30%,91,94,655,14.40% +140823,935,2025,State-funded primary,334,167,167,50.00%,50.00%,13,3.90%,60,18.00%,4,330,0,1.20%,98.80%,0.00%,77,77,301,25.60% +140824,383,2016,State-funded primary,339,187,152,55.20%,44.80%,2,0.60%,82,24.20%,37,301,1,10.90%,88.80%,0.30%,149,140,298,47.00% +140826,373,2028,State-funded primary,321,155,166,48.30%,51.70%,4,1.20%,64,19.90%,122,192,7,38.00%,59.80%,2.20%,138,139,293,47.40% +140827,931,2013,State-funded primary,402,191,211,47.50%,52.50%,15,3.70%,60,14.90%,36,366,0,9.00%,91.00%,0.00%,77,69,334,20.70% +140828,881,2105,State-funded primary,416,205,211,49.30%,50.70%,2,0.50%,34,8.20%,39,377,0,9.40%,90.60%,0.00%,87,92,416,22.10% +140829,941,2161,State-funded primary,237,111,126,46.80%,53.20%,3,1.30%,30,12.70%,36,199,2,15.20%,84.00%,0.80%,77,82,237,34.60% +140830,810,2017,State-funded primary,300,150,150,50.00%,50.00%,7,2.30%,41,13.70%,23,277,0,7.70%,92.30%,0.00%,61,62,300,20.70% +140832,883,2007,State-funded primary,484,247,237,51.00%,49.00%,23,4.80%,58,12.00%,88,394,2,18.20%,81.40%,0.40%,188,200,430,46.50% +140833,304,2022,State-funded primary,663,306,357,46.20%,53.80%,19,2.90%,78,11.80%,483,180,0,72.90%,27.10%,0.00%,194,206,611,33.70% +140835,823,2004,State-funded primary,261,134,127,51.30%,48.70%,17,6.50%,23,8.80%,3,258,0,1.10%,98.90%,0.00%,33,33,261,12.60% +140836,908,4001,State-funded secondary,583,280,303,48.00%,52.00%,15,2.60%,88,15.10%,4,579,0,0.70%,99.30%,0.00%,147,162,583,27.80% +140837,908,2035,State-funded primary,212,96,116,45.30%,54.70%,7,3.30%,25,11.80%,1,211,0,0.50%,99.50%,0.00%,36,33,181,18.20% +140838,908,2036,State-funded primary,400,191,209,47.80%,52.30%,10,2.50%,45,11.30%,16,384,0,4.00%,96.00%,0.00%,131,135,400,33.80% +140839,908,2037,State-funded primary,57,24,33,42.10%,57.90%,0,0.00%,13,22.80%,0,57,0,0.00%,100.00%,0.00%,11,11,57,19.30% +140840,306,2082,State-funded primary,410,204,206,49.80%,50.20%,5,1.20%,73,17.80%,189,221,0,46.10%,53.90%,0.00%,214,210,376,55.90% +140841,306,2085,State-funded primary,327,184,143,56.30%,43.70%,5,1.50%,39,11.90%,62,265,0,19.00%,81.00%,0.00%,171,178,306,58.20% +140842,831,2011,State-funded primary,232,119,113,51.30%,48.70%,2,0.90%,30,12.90%,54,178,0,23.30%,76.70%,0.00%,77,77,210,36.70% +140843,830,2001,State-funded primary,213,104,109,48.80%,51.20%,2,0.90%,22,10.30%,8,188,17,3.80%,88.30%,8.00%,90,92,199,46.20% +140844,881,2106,State-funded primary,102,45,57,44.10%,55.90%,0,0.00%,11,10.80%,0,102,0,0.00%,100.00%,0.00%,20,23,102,22.50% +140845,921,4004,State-funded secondary,1238,602,636,48.60%,51.40%,39,3.20%,195,15.80%,53,1168,17,4.30%,94.30%,1.40%,212,233,1088,21.40% +140847,810,2018,State-funded primary,235,113,122,48.10%,51.90%,6,2.60%,30,12.80%,51,184,0,21.70%,78.30%,0.00%,94,88,214,41.10% +140848,810,2019,State-funded primary,238,132,106,55.50%,44.50%,7,2.90%,41,17.20%,132,106,0,55.50%,44.50%,0.00%,54,54,209,25.80% +140849,810,2020,State-funded primary,339,171,168,50.40%,49.60%,6,1.80%,62,18.30%,60,279,0,17.70%,82.30%,0.00%,146,142,309,46.00% +140850,855,2013,State-funded primary,189,99,90,52.40%,47.60%,0,0.00%,16,8.50%,8,181,0,4.20%,95.80%,0.00%,30,30,189,15.90% +140851,855,2014,State-funded primary,193,97,96,50.30%,49.70%,5,2.60%,29,15.00%,4,189,0,2.10%,97.90%,0.00%,28,28,193,14.50% +140852,926,2060,State-funded primary,88,48,40,54.50%,45.50%,2,2.30%,17,19.30%,1,87,0,1.10%,98.90%,0.00%,35,35,88,39.80% +140853,940,2163,State-funded primary,588,280,308,47.60%,52.40%,17,2.90%,83,14.10%,328,260,0,55.80%,44.20%,0.00%,164,168,588,28.60% +140854,891,7000,State-funded special school,88,23,65,26.10%,73.90%,88,100.00%,0,0.00%,2,86,0,2.30%,97.70%,0.00%,52,45,74,60.80% +140855,874,2005,State-funded primary,391,189,202,48.30%,51.70%,14,3.60%,37,9.50%,310,78,3,79.30%,19.90%,0.80%,117,120,391,30.70% +140856,333,2006,State-funded primary,194,101,93,52.10%,47.90%,5,2.60%,24,12.40%,66,128,0,34.00%,66.00%,0.00%,78,79,194,40.70% +140857,871,2006,State-funded primary,674,342,332,50.70%,49.30%,9,1.30%,47,7.00%,269,405,0,39.90%,60.10%,0.00%,106,111,610,18.20% +140858,860,2011,State-funded primary,160,78,82,48.80%,51.30%,0,0.00%,11,6.90%,3,157,0,1.90%,98.10%,0.00%,23,25,160,15.60% +140859,861,2008,State-funded primary,234,112,122,47.90%,52.10%,6,2.60%,22,9.40%,11,222,1,4.70%,94.90%,0.40%,78,70,208,33.70% +140860,936,2029,State-funded primary,252,120,132,47.60%,52.40%,11,4.40%,24,9.50%,86,166,0,34.10%,65.90%,0.00%,52,42,210,20.00% +140861,883,1100,State-funded AP school,56,12,44,21.40%,78.60%,4,7.10%,32,57.10%,4,52,0,7.10%,92.90%,0.00%,24,31,56,55.40% +140862,304,4000,State-funded secondary,708,343,365,48.40%,51.60%,17,2.40%,96,13.60%,491,217,0,69.40%,30.60%,0.00%,172,191,614,31.10% +140863,330,4014,State-funded secondary,1170,511,659,43.70%,56.30%,55,4.70%,113,9.70%,350,819,1,29.90%,70.00%,0.10%,345,279,772,36.10% +140864,876,4001,State-funded secondary,948,439,509,46.30%,53.70%,21,2.20%,137,14.50%,24,924,0,2.50%,97.50%,0.00%,405,424,948,44.70% +140865,371,4606,State-funded secondary,1422,725,697,51.00%,49.00%,13,0.90%,144,10.10%,234,1187,1,16.50%,83.50%,0.10%,299,319,1186,26.90% +140866,811,4102,State-funded secondary,849,401,448,47.20%,52.80%,38,4.50%,156,18.40%,32,815,2,3.80%,96.00%,0.20%,104,133,849,15.70% +140867,805,4603,State-funded secondary,1459,763,696,52.30%,47.70%,19,1.30%,145,9.90%,90,1369,0,6.20%,93.80%,0.00%,389,397,1322,30.00% +140868,884,4032,State-funded secondary,555,278,277,50.10%,49.90%,20,3.60%,112,20.20%,12,540,3,2.20%,97.30%,0.50%,66,69,555,12.40% +140869,806,2111,State-funded primary,480,231,249,48.10%,51.90%,7,1.50%,61,12.70%,203,277,0,42.30%,57.70%,0.00%,83,78,416,18.80% +140870,926,2426,State-funded primary,185,89,96,48.10%,51.90%,7,3.80%,13,7.00%,2,178,5,1.10%,96.20%,2.70%,17,17,174,9.80% +140871,931,3130,State-funded primary,119,60,59,50.40%,49.60%,2,1.70%,20,16.80%,4,115,0,3.40%,96.60%,0.00%,23,25,104,24.00% +140872,861,2080,State-funded primary,522,258,264,49.40%,50.60%,9,1.70%,154,29.50%,29,493,0,5.60%,94.40%,0.00%,278,253,462,54.80% +140873,886,3889,State-funded primary,291,146,145,50.20%,49.80%,13,4.50%,59,20.30%,36,255,0,12.40%,87.60%,0.00%,102,103,291,35.40% +140874,886,5446,State-funded secondary,1099,544,555,49.50%,50.50%,68,6.20%,157,14.30%,93,1005,1,8.50%,91.40%,0.10%,191,183,909,20.10% +140875,931,4077,State-funded secondary,1138,554,584,48.70%,51.30%,34,3.00%,192,16.90%,104,1029,5,9.10%,90.40%,0.40%,161,156,935,16.70% +140876,936,2058,State-funded primary,357,170,187,47.60%,52.40%,7,2.00%,56,15.70%,56,299,2,15.70%,83.80%,0.60%,25,26,357,7.30% +140877,358,2024,State-funded primary,492,252,240,51.20%,48.80%,15,3.00%,100,20.30%,158,332,2,32.10%,67.50%,0.40%,109,111,420,26.40% +140878,937,3592,State-funded primary,423,215,208,50.80%,49.20%,3,0.70%,54,12.80%,11,411,1,2.60%,97.20%,0.20%,56,57,423,13.50% +140879,889,4048,State-funded secondary,1240,619,621,49.90%,50.10%,16,1.30%,215,17.30%,744,496,0,60.00%,40.00%,0.00%,416,474,1240,38.20% +140880,936,2947,State-funded primary,453,216,237,47.70%,52.30%,17,3.80%,59,13.00%,34,419,0,7.50%,92.50%,0.00%,67,67,407,16.50% +140881,873,4009,State-funded secondary,543,267,276,49.20%,50.80%,31,5.70%,91,16.80%,32,511,0,5.90%,94.10%,0.00%,127,149,543,27.40% +140882,873,7004,State-funded special school,137,40,97,29.20%,70.80%,137,100.00%,0,0.00%,7,130,0,5.10%,94.90%,0.00%,67,68,137,49.60% +140884,213,4000,State-funded secondary,727,23,704,3.20%,96.80%,16,2.20%,66,9.10%,403,322,2,55.40%,44.30%,0.30%,243,258,589,43.80% +140886,931,4006,State-funded secondary,141,48,93,34.00%,66.00%,0,0.00%,24,17.00%,37,104,0,26.20%,73.80%,0.00%,27,25,110,22.70% +140887,935,2027,State-funded primary,467,223,244,47.80%,52.20%,9,1.90%,66,14.10%,254,212,1,54.40%,45.40%,0.20%,199,202,441,45.80% +140888,873,2026,State-funded primary,378,191,187,50.50%,49.50%,22,5.80%,92,24.30%,52,324,2,13.80%,85.70%,0.50%,112,112,352,31.80% +140889,330,3433,State-funded primary,435,250,185,57.50%,42.50%,5,1.10%,99,22.80%,65,367,3,14.90%,84.40%,0.70%,268,265,409,64.80% +140890,330,2455,State-funded primary,424,208,216,49.10%,50.90%,3,0.70%,52,12.30%,127,292,5,30.00%,68.90%,1.20%,193,189,400,47.30% +140891,889,3377,State-funded primary,218,100,118,45.90%,54.10%,3,1.40%,49,22.50%,49,168,1,22.50%,77.10%,0.50%,101,102,186,54.80% +140893,825,5402,State-funded secondary,1270,1270,0,100.00%,0.00%,4,0.30%,124,9.80%,278,989,3,21.90%,77.90%,0.20%,27,19,902,2.10% +140894,895,3122,State-funded primary,181,87,94,48.10%,51.90%,4,2.20%,31,17.10%,10,164,7,5.50%,90.60%,3.90%,9,12,181,6.60% +140895,895,2170,State-funded primary,215,101,114,47.00%,53.00%,23,10.70%,21,9.80%,17,197,1,7.90%,91.60%,0.50%,72,71,200,35.50% +140896,896,3556,State-funded primary,228,112,116,49.10%,50.90%,4,1.80%,34,14.90%,26,202,0,11.40%,88.60%,0.00%,72,73,191,38.20% +140897,908,2405,State-funded primary,100,52,48,52.00%,48.00%,0,0.00%,18,18.00%,0,100,0,0.00%,100.00%,0.00%,13,13,100,13.00% +140898,838,4511,State-funded secondary,905,469,436,51.80%,48.20%,22,2.40%,151,16.70%,66,838,1,7.30%,92.60%,0.10%,203,196,724,27.10% +140899,886,2223,State-funded primary,208,94,114,45.20%,54.80%,4,1.90%,17,8.20%,18,190,0,8.70%,91.30%,0.00%,17,17,208,8.20% +140900,886,2230,State-funded primary,621,295,326,47.50%,52.50%,15,2.40%,65,10.50%,24,597,0,3.90%,96.10%,0.00%,78,83,621,13.40% +140902,810,2891,State-funded primary,440,214,226,48.60%,51.40%,38,8.60%,77,17.50%,35,405,0,8.00%,92.00%,0.00%,173,172,403,42.70% +140903,810,3508,State-funded primary,325,164,161,50.50%,49.50%,5,1.50%,52,16.00%,26,299,0,8.00%,92.00%,0.00%,75,74,285,26.00% +140904,810,7028,State-funded special school,169,57,112,33.70%,66.30%,169,100.00%,0,0.00%,27,142,0,16.00%,84.00%,0.00%,91,75,140,53.60% +140905,810,3400,State-funded primary,307,163,144,53.10%,46.90%,7,2.30%,19,6.20%,51,256,0,16.60%,83.40%,0.00%,38,39,293,13.30% +140906,810,3500,State-funded primary,210,97,113,46.20%,53.80%,8,3.80%,29,13.80%,82,128,0,39.00%,61.00%,0.00%,47,47,210,22.40% +140909,855,3333,State-funded primary,41,16,25,39.00%,61.00%,0,0.00%,4,9.80%,0,41,0,0.00%,100.00%,0.00%,13,14,41,34.10% +140910,855,3072,State-funded primary,71,30,41,42.30%,57.70%,2,2.80%,8,11.30%,1,70,0,1.40%,98.60%,0.00%,10,10,71,14.10% +140911,855,3434,State-funded primary,205,101,104,49.30%,50.70%,3,1.50%,17,8.30%,43,162,0,21.00%,79.00%,0.00%,40,40,205,19.50% +140912,855,3097,State-funded primary,46,30,16,65.20%,34.80%,1,2.20%,4,8.70%,1,45,0,2.20%,97.80%,0.00%,2,2,46,4.30% +140913,855,3100,State-funded primary,96,39,57,40.60%,59.40%,0,0.00%,10,10.40%,12,78,6,12.50%,81.30%,6.30%,13,13,96,13.50% +140914,926,3346,State-funded primary,118,54,64,45.80%,54.20%,1,0.80%,27,22.90%,3,113,2,2.50%,95.80%,1.70%,29,30,93,32.30% +140915,931,3651,State-funded primary,118,55,63,46.60%,53.40%,2,1.70%,11,9.30%,9,109,0,7.60%,92.40%,0.00%,8,8,97,8.20% +140916,931,3208,State-funded primary,134,57,77,42.50%,57.50%,1,0.70%,16,11.90%,8,125,1,6.00%,93.30%,0.70%,4,4,134,3.00% +140917,874,3382,State-funded primary,570,269,301,47.20%,52.80%,6,1.10%,71,12.50%,109,461,0,19.10%,80.90%,0.00%,139,140,570,24.60% +140918,807,2352,State-funded primary,522,272,250,52.10%,47.90%,2,0.40%,59,11.30%,1,521,0,0.20%,99.80%,0.00%,92,97,459,21.10% +140919,807,2166,State-funded primary,239,104,135,43.50%,56.50%,1,0.40%,38,15.90%,15,224,0,6.30%,93.70%,0.00%,25,26,209,12.40% +140921,333,3004,State-funded primary,203,111,92,54.70%,45.30%,5,2.50%,29,14.30%,19,184,0,9.40%,90.60%,0.00%,57,61,203,30.00% +140922,893,4394,State-funded secondary,1312,659,653,50.20%,49.80%,19,1.40%,139,10.60%,30,1281,1,2.30%,97.60%,0.10%,160,171,1101,15.50% +140923,334,2094,State-funded primary,447,232,215,51.90%,48.10%,3,0.70%,59,13.20%,32,415,0,7.20%,92.80%,0.00%,222,226,420,53.80% +140924,393,3316,State-funded primary,474,234,240,49.40%,50.60%,7,1.50%,53,11.20%,15,457,2,3.20%,96.40%,0.40%,6,6,423,1.40% +140925,356,2047,State-funded primary,362,170,192,47.00%,53.00%,4,1.10%,52,14.40%,23,339,0,6.40%,93.60%,0.00%,11,14,362,3.90% +140928,394,2094,State-funded primary,169,78,91,46.20%,53.80%,3,1.80%,16,9.50%,0,169,0,0.00%,100.00%,0.00%,39,39,107,36.40% +140929,936,3934,State-funded primary,477,254,223,53.20%,46.80%,7,1.50%,72,15.10%,102,375,0,21.40%,78.60%,0.00%,30,34,440,7.70% +140931,344,2278,State-funded primary,505,208,297,41.20%,58.80%,8,1.60%,68,13.50%,16,489,0,3.20%,96.80%,0.00%,60,61,462,13.20% +140932,885,3041,State-funded primary,514,266,248,51.80%,48.20%,12,2.30%,53,10.30%,145,369,0,28.20%,71.80%,0.00%,136,136,514,26.50% +140933,885,2167,State-funded primary,407,205,202,50.40%,49.60%,6,1.50%,47,11.50%,154,253,0,37.80%,62.20%,0.00%,161,159,351,45.30% +140934,305,2031,State-funded primary,406,194,212,47.80%,52.20%,12,3.00%,29,7.10%,78,328,0,19.20%,80.80%,0.00%,49,49,406,12.10% +140935,309,4000,State-funded secondary,1309,602,707,46.00%,54.00%,45,3.40%,115,8.80%,714,576,19,54.50%,44.00%,1.50%,421,466,1174,39.70% +140936,305,2035,State-funded primary,350,162,188,46.30%,53.70%,8,2.30%,46,13.10%,117,217,16,33.40%,62.00%,4.60%,46,47,350,13.40% +140937,210,2004,State-funded primary,384,198,186,51.60%,48.40%,7,1.80%,44,11.50%,59,317,8,15.40%,82.60%,2.10%,61,70,384,18.20% +140938,883,2008,State-funded primary,1028,488,540,47.50%,52.50%,31,3.00%,75,7.30%,371,645,12,36.10%,62.70%,1.20%,143,169,982,17.20% +140939,213,4001,State-funded secondary,589,336,253,57.00%,43.00%,4,0.70%,53,9.00%,171,418,0,29.00%,71.00%,0.00%,183,0,0,0.00% +140940,373,4009,State-funded secondary,285,156,129,54.70%,45.30%,7,2.50%,17,6.00%,22,263,0,7.70%,92.30%,0.00%,37,0,0,0.00% +140942,908,6003,Independent school,75,4,71,5.30%,94.70%,75,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +140946,941,2164,State-funded primary,417,209,208,50.10%,49.90%,8,1.90%,27,6.50%,119,277,21,28.50%,66.40%,5.00%,65,67,417,16.10% +140949,808,4004,State-funded secondary,629,303,326,48.20%,51.80%,19,3.00%,91,14.50%,41,588,0,6.50%,93.50%,0.00%,112,131,629,20.80% +140950,925,4008,State-funded secondary,375,108,267,28.80%,71.20%,9,2.40%,56,14.90%,37,338,0,9.90%,90.10%,0.00%,70,59,238,24.80% +140952,306,4002,State-funded secondary,992,383,609,38.60%,61.40%,19,1.90%,175,17.60%,471,521,0,47.50%,52.50%,0.00%,400,418,867,48.20% +140953,872,2002,State-funded primary,392,196,196,50.00%,50.00%,20,5.10%,40,10.20%,58,334,0,14.80%,85.20%,0.00%,11,12,392,3.10% +140954,919,2049,State-funded primary,342,166,176,48.50%,51.50%,7,2.00%,18,5.30%,151,191,0,44.20%,55.80%,0.00%,42,50,342,14.60% +140955,919,2042,State-funded primary,385,190,195,49.40%,50.60%,7,1.80%,45,11.70%,81,304,0,21.00%,79.00%,0.00%,66,67,385,17.40% +140956,919,2043,State-funded primary,380,173,207,45.50%,54.50%,12,3.20%,31,8.20%,184,196,0,48.40%,51.60%,0.00%,65,67,380,17.60% +140957,320,4002,State-funded secondary,607,607,0,100.00%,0.00%,8,1.30%,28,4.60%,426,181,0,70.20%,29.80%,0.00%,199,229,607,37.70% +140958,331,4002,State-funded secondary,601,601,0,100.00%,0.00%,7,1.20%,71,11.80%,438,161,2,72.90%,26.80%,0.30%,208,233,601,38.80% +140959,350,4000,State-funded secondary,620,0,620,0.00%,100.00%,24,3.90%,56,9.00%,410,210,0,66.10%,33.90%,0.00%,143,161,620,26.00% +140961,331,4003,State-funded secondary,498,116,382,23.30%,76.70%,6,1.20%,45,9.00%,99,392,7,19.90%,78.70%,1.40%,86,58,263,22.10% +140962,301,4003,State-funded secondary,1102,561,541,50.90%,49.10%,7,0.60%,113,10.30%,457,645,0,41.50%,58.50%,0.00%,355,355,983,36.10% +140963,307,2003,State-funded primary,167,95,72,56.90%,43.10%,4,2.40%,17,10.20%,72,95,0,43.10%,56.90%,0.00%,50,54,167,32.30% +140964,371,4003,State-funded secondary,248,107,141,43.10%,56.90%,10,4.00%,55,22.20%,18,230,0,7.30%,92.70%,0.00%,54,63,248,25.40% +140965,391,4000,State-funded secondary,573,259,314,45.20%,54.80%,21,3.70%,93,16.20%,21,550,2,3.70%,96.00%,0.30%,336,330,542,60.90% +140966,208,4003,State-funded secondary,616,310,306,50.30%,49.70%,28,4.50%,139,22.60%,382,233,1,62.00%,37.80%,0.20%,288,307,580,52.90% +140967,306,2087,State-funded primary,190,96,94,50.50%,49.50%,3,1.60%,22,11.60%,91,99,0,47.90%,52.10%,0.00%,126,128,190,67.40% +140969,935,4042,State-funded secondary,682,320,362,46.90%,53.10%,11,1.60%,90,13.20%,59,623,0,8.70%,91.30%,0.00%,85,97,682,14.20% +140971,878,4008,State-funded secondary,127,31,96,24.40%,75.60%,3,2.40%,32,25.20%,4,123,0,3.10%,96.90%,0.00%,9,0,0,0.00% +140973,350,2003,State-funded primary,397,205,192,51.60%,48.40%,11,2.80%,68,17.10%,298,98,1,75.10%,24.70%,0.30%,145,147,397,37.00% +140974,313,2014,State-funded primary,700,352,348,50.30%,49.70%,9,1.30%,61,8.70%,662,38,0,94.60%,5.40%,0.00%,96,101,629,16.10% +140975,341,2018,State-funded primary,680,352,328,51.80%,48.20%,17,2.50%,177,26.00%,224,456,0,32.90%,67.10%,0.00%,319,315,581,54.20% +140977,838,4003,State-funded secondary,357,181,176,50.70%,49.30%,36,10.10%,105,29.40%,1,354,2,0.30%,99.20%,0.60%,98,107,357,30.00% +140979,370,4008,State-funded secondary,1332,650,682,48.80%,51.20%,36,2.70%,234,17.60%,14,1246,72,1.10%,93.50%,5.40%,336,393,1332,29.50% +140980,886,2041,State-funded primary,209,97,112,46.40%,53.60%,4,1.90%,30,14.40%,47,162,0,22.50%,77.50%,0.00%,108,110,209,52.60% +140981,895,2176,State-funded primary,368,176,192,47.80%,52.20%,2,0.50%,35,9.50%,1,367,0,0.30%,99.70%,0.00%,20,19,310,6.10% +140983,931,3127,State-funded primary,132,61,71,46.20%,53.80%,2,1.50%,21,15.90%,1,131,0,0.80%,99.20%,0.00%,22,19,117,16.20% +140984,892,4004,State-funded secondary,917,374,543,40.80%,59.20%,6,0.70%,88,9.60%,293,616,8,32.00%,67.20%,0.90%,260,236,601,39.30% +140985,212,4001,State-funded secondary,1031,495,536,48.00%,52.00%,22,2.10%,97,9.40%,438,534,59,42.50%,51.80%,5.70%,472,499,832,60.00% +140987,886,4012,State-funded secondary,730,172,558,23.60%,76.40%,14,1.90%,116,15.90%,94,618,18,12.90%,84.70%,2.50%,193,209,618,33.80% +140988,925,2023,State-funded primary,40,19,21,47.50%,52.50%,1,2.50%,11,27.50%,4,36,0,10.00%,90.00%,0.00%,29,29,40,72.50% +140989,887,2011,State-funded primary,486,228,258,46.90%,53.10%,36,7.40%,86,17.70%,68,418,0,14.00%,86.00%,0.00%,182,179,454,39.40% +140990,926,2063,State-funded primary,217,117,100,53.90%,46.10%,9,4.10%,35,16.10%,33,183,1,15.20%,84.30%,0.50%,105,104,199,52.30% +140991,812,2013,State-funded primary,221,121,100,54.80%,45.20%,1,0.50%,43,19.50%,10,211,0,4.50%,95.50%,0.00%,95,102,194,52.60% +140992,891,4019,State-funded secondary,934,453,481,48.50%,51.50%,5,0.50%,111,11.90%,43,891,0,4.60%,95.40%,0.00%,260,261,832,31.40% +140993,372,2014,State-funded primary,147,75,72,51.00%,49.00%,3,2.00%,66,44.90%,10,137,0,6.80%,93.20%,0.00%,92,94,134,70.10% +140994,871,2007,State-funded primary,529,253,276,47.80%,52.20%,8,1.50%,57,10.80%,216,311,2,40.80%,58.80%,0.40%,109,116,473,24.50% +140995,860,2012,State-funded primary,310,148,162,47.70%,52.30%,3,1.00%,30,9.70%,66,243,1,21.30%,78.40%,0.30%,92,95,286,33.20% +140996,860,2013,State-funded primary,200,92,108,46.00%,54.00%,5,2.50%,15,7.50%,23,177,0,11.50%,88.50%,0.00%,78,81,176,46.00% +140997,860,7001,State-funded special school,191,55,136,28.80%,71.20%,191,100.00%,0,0.00%,3,188,0,1.60%,98.40%,0.00%,84,65,143,45.50% +140998,935,2029,State-funded primary,383,195,188,50.90%,49.10%,6,1.60%,69,18.00%,47,336,0,12.30%,87.70%,0.00%,115,110,336,32.70% +140999,305,2036,State-funded primary,412,204,208,49.50%,50.50%,5,1.20%,25,6.10%,93,319,0,22.60%,77.40%,0.00%,49,49,412,11.90% +141000,937,2027,State-funded primary,207,98,109,47.30%,52.70%,6,2.90%,45,21.70%,4,203,0,1.90%,98.10%,0.00%,62,63,207,30.40% +141001,333,6006,Independent school,69,32,37,46.40%,53.60%,0,0.00%,2,2.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141002,380,4024,State-funded secondary,655,276,379,42.10%,57.90%,13,2.00%,73,11.10%,211,439,5,32.20%,67.00%,0.80%,165,219,655,33.40% +141003,330,4016,State-funded secondary,609,288,321,47.30%,52.70%,1,0.20%,77,12.60%,323,283,3,53.00%,46.50%,0.50%,370,412,609,67.70% +141004,919,4021,State-funded secondary,54,20,34,37.00%,63.00%,1,1.90%,1,1.90%,12,42,0,22.20%,77.80%,0.00%,13,12,39,30.80% +141005,887,7000,State-funded special school,61,6,55,9.80%,90.20%,61,100.00%,0,0.00%,0,61,0,0.00%,100.00%,0.00%,39,42,61,68.90% +141006,317,1102,State-funded AP school,47,18,29,38.30%,61.70%,16,34.00%,30,63.80%,12,35,0,25.50%,74.50%,0.00%,16,22,40,55.00% +141007,937,6011,Independent school,19,2,17,10.50%,89.50%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141008,937,6012,Independent school,51,13,38,25.50%,74.50%,51,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141009,871,4002,State-funded secondary,1131,531,600,46.90%,53.10%,49,4.30%,106,9.40%,516,596,19,45.60%,52.70%,1.70%,207,216,894,24.20% +141010,892,4020,State-funded secondary,659,275,384,41.70%,58.30%,5,0.80%,58,8.80%,116,526,17,17.60%,79.80%,2.60%,130,152,587,25.90% +141011,856,2003,State-funded primary,313,166,147,53.00%,47.00%,4,1.30%,27,8.60%,235,78,0,75.10%,24.90%,0.00%,45,48,313,15.30% +141016,889,7002,State-funded special school,57,9,48,15.80%,84.20%,57,100.00%,0,0.00%,1,56,0,1.80%,98.20%,0.00%,32,37,57,64.90% +141017,308,2017,State-funded primary,152,77,75,50.70%,49.30%,1,0.70%,29,19.10%,92,60,0,60.50%,39.50%,0.00%,72,74,152,48.70% +141019,304,4001,State-funded secondary,1273,555,718,43.60%,56.40%,24,1.90%,167,13.10%,985,267,21,77.40%,21.00%,1.60%,394,386,1063,36.30% +141020,851,2007,State-funded primary,464,245,219,52.80%,47.20%,9,1.90%,59,12.70%,136,328,0,29.30%,70.70%,0.00%,220,231,411,56.20% +141021,845,2012,State-funded primary,629,313,316,49.80%,50.20%,8,1.30%,67,10.70%,10,619,0,1.60%,98.40%,0.00%,150,154,629,24.50% +141022,845,2013,State-funded primary,429,194,235,45.20%,54.80%,14,3.30%,27,6.30%,28,401,0,6.50%,93.50%,0.00%,85,89,429,20.70% +141023,315,6007,Independent school,16,9,7,56.30%,43.80%,0,0.00%,1,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141025,886,2043,State-funded primary,301,141,160,46.80%,53.20%,5,1.70%,28,9.30%,71,230,0,23.60%,76.40%,0.00%,76,76,301,25.20% +141027,315,2001,State-funded primary,115,61,54,53.00%,47.00%,5,4.30%,11,9.60%,37,78,0,32.20%,67.80%,0.00%,30,33,115,28.70% +141028,888,4008,State-funded secondary,570,310,260,54.40%,45.60%,11,1.90%,78,13.70%,25,545,0,4.40%,95.60%,0.00%,216,229,570,40.20% +141031,210,6005,Independent school,14,5,9,35.70%,64.30%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141032,940,2167,State-funded primary,383,186,197,48.60%,51.40%,1,0.30%,44,11.50%,38,345,0,9.90%,90.10%,0.00%,52,54,383,14.10% +141033,340,7002,State-funded special school,88,11,77,12.50%,87.50%,88,100.00%,0,0.00%,0,88,0,0.00%,100.00%,0.00%,69,72,88,81.80% +141034,885,1110,State-funded AP school,16,7,9,43.80%,56.30%,0,0.00%,0,0.00%,1,15,0,6.30%,93.80%,0.00%,2,11,16,68.80% +141035,312,4009,State-funded secondary,153,58,95,37.90%,62.10%,0,0.00%,10,6.50%,111,40,2,72.50%,26.10%,1.30%,23,43,135,31.90% +141036,936,2030,State-funded primary,219,96,123,43.80%,56.20%,6,2.70%,14,6.40%,35,181,3,16.00%,82.60%,1.40%,8,8,202,4.00% +141037,810,1104,State-funded AP school,83,28,55,33.70%,66.30%,49,59.00%,34,41.00%,3,80,0,3.60%,96.40%,0.00%,49,58,83,69.90% +141038,938,4011,State-funded secondary,935,464,471,49.60%,50.40%,15,1.60%,117,12.50%,260,675,0,27.80%,72.20%,0.00%,180,209,935,22.40% +141039,211,2009,State-funded primary,315,155,160,49.20%,50.80%,6,1.90%,28,8.90%,108,207,0,34.30%,65.70%,0.00%,20,23,315,7.30% +141041,909,4003,State-funded secondary,479,242,237,50.50%,49.50%,27,5.60%,67,14.00%,5,474,0,1.00%,99.00%,0.00%,106,119,479,24.80% +141042,803,4002,State-funded secondary,803,381,422,47.40%,52.60%,46,5.70%,120,14.90%,45,733,25,5.60%,91.30%,3.10%,106,134,803,16.70% +141043,838,3002,State-funded primary,396,188,208,47.50%,52.50%,13,3.30%,58,14.60%,23,373,0,5.80%,94.20%,0.00%,98,99,396,25.00% +141044,941,3004,State-funded primary,99,44,55,44.40%,55.60%,0,0.00%,19,19.20%,3,96,0,3.00%,97.00%,0.00%,8,8,99,8.10% +141045,394,2003,State-funded primary,326,153,173,46.90%,53.10%,4,1.20%,39,12.00%,62,264,0,19.00%,81.00%,0.00%,47,48,253,19.00% +141046,838,3304,State-funded primary,189,94,95,49.70%,50.30%,4,2.10%,33,17.50%,7,182,0,3.70%,96.30%,0.00%,62,62,189,32.80% +141047,303,2000,State-funded primary,389,207,182,53.20%,46.80%,3,0.80%,21,5.40%,109,277,3,28.00%,71.20%,0.80%,52,57,389,14.70% +141048,941,3011,State-funded primary,192,97,95,50.50%,49.50%,2,1.00%,26,13.50%,3,189,0,1.60%,98.40%,0.00%,34,34,192,17.70% +141050,926,3380,State-funded primary,71,28,43,39.40%,60.60%,3,4.20%,6,8.50%,6,65,0,8.50%,91.50%,0.00%,2,2,67,3.00% +141051,931,2211,State-funded primary,327,162,165,49.50%,50.50%,6,1.80%,40,12.20%,42,285,0,12.80%,87.20%,0.00%,43,45,298,15.10% +141052,881,3833,State-funded primary,630,317,313,50.30%,49.70%,19,3.00%,58,9.20%,13,617,0,2.10%,97.90%,0.00%,57,58,630,9.20% +141053,931,3147,State-funded primary,203,98,105,48.30%,51.70%,6,3.00%,25,12.30%,6,197,0,3.00%,97.00%,0.00%,30,33,203,16.30% +141054,310,2072,State-funded primary,659,338,321,51.30%,48.70%,20,3.00%,52,7.90%,465,193,1,70.60%,29.30%,0.20%,99,104,620,16.80% +141055,312,2081,State-funded primary,695,346,349,49.80%,50.20%,10,1.40%,59,8.50%,425,270,0,61.20%,38.80%,0.00%,141,136,629,21.60% +141056,371,3317,State-funded primary,189,94,95,49.70%,50.30%,0,0.00%,24,12.70%,15,174,0,7.90%,92.10%,0.00%,78,78,162,48.10% +141057,382,3303,State-funded primary,359,180,179,50.10%,49.90%,8,2.20%,21,5.80%,17,342,0,4.70%,95.30%,0.00%,33,33,359,9.20% +141058,885,5200,State-funded primary,288,132,156,45.80%,54.20%,3,1.00%,26,9.00%,49,237,2,17.00%,82.30%,0.70%,26,26,288,9.00% +141059,380,3372,State-funded primary,244,131,113,53.70%,46.30%,9,3.70%,18,7.40%,128,116,0,52.50%,47.50%,0.00%,36,37,208,17.80% +141060,372,2037,State-funded primary,307,154,153,50.20%,49.80%,10,3.30%,53,17.30%,138,169,0,45.00%,55.00%,0.00%,50,52,307,16.90% +141061,838,3403,State-funded primary,190,86,104,45.30%,54.70%,5,2.60%,27,14.20%,4,186,0,2.10%,97.90%,0.00%,23,23,190,12.10% +141062,380,3369,State-funded primary,235,125,110,53.20%,46.80%,4,1.70%,31,13.20%,181,54,0,77.00%,23.00%,0.00%,45,45,211,21.30% +141063,885,5400,State-funded secondary,968,477,491,49.30%,50.70%,11,1.10%,87,9.00%,204,764,0,21.10%,78.90%,0.00%,109,100,705,14.20% +141064,885,5401,State-funded secondary,669,320,349,47.80%,52.20%,7,1.00%,89,13.30%,208,460,1,31.10%,68.80%,0.10%,95,99,669,14.80% +141065,886,3720,State-funded primary,185,91,94,49.20%,50.80%,2,1.10%,12,6.50%,6,179,0,3.20%,96.80%,0.00%,48,49,185,26.50% +141066,885,3310,State-funded primary,264,141,123,53.40%,46.60%,2,0.80%,49,18.60%,22,241,1,8.30%,91.30%,0.40%,58,62,264,23.50% +141067,886,3743,State-funded primary,209,97,112,46.40%,53.60%,5,2.40%,27,12.90%,104,105,0,49.80%,50.20%,0.00%,39,39,209,18.70% +141068,941,3336,State-funded primary,106,56,50,52.80%,47.20%,4,3.80%,12,11.30%,3,103,0,2.80%,97.20%,0.00%,6,6,99,6.10% +141069,931,4032,State-funded secondary,1296,670,626,51.70%,48.30%,29,2.20%,253,19.50%,179,1114,3,13.80%,86.00%,0.20%,128,144,1084,13.30% +141070,883,2984,State-funded primary,764,352,412,46.10%,53.90%,15,2.00%,88,11.50%,228,534,2,29.80%,69.90%,0.30%,85,98,710,13.80% +141071,310,2049,State-funded secondary,1514,675,839,44.60%,55.40%,30,2.00%,144,9.50%,1117,391,6,73.80%,25.80%,0.40%,428,428,1351,31.70% +141073,941,3086,State-funded primary,269,128,141,47.60%,52.40%,4,1.50%,50,18.60%,12,257,0,4.50%,95.50%,0.00%,65,68,248,27.40% +141074,860,4154,State-funded secondary,430,198,232,46.00%,54.00%,6,1.40%,31,7.20%,2,428,0,0.50%,99.50%,0.00%,43,50,430,11.60% +141076,341,2025,State-funded primary,722,357,365,49.40%,50.60%,38,5.30%,100,13.90%,61,660,1,8.40%,91.40%,0.10%,234,227,642,35.40% +141077,941,2000,State-funded primary,157,76,81,48.40%,51.60%,6,3.80%,10,6.40%,9,148,0,5.70%,94.30%,0.00%,11,11,157,7.00% +141078,810,2207,State-funded primary,415,215,200,51.80%,48.20%,12,2.90%,67,16.10%,97,318,0,23.40%,76.60%,0.00%,207,209,385,54.30% +141079,941,3039,State-funded primary,143,75,68,52.40%,47.60%,2,1.40%,9,6.30%,4,139,0,2.80%,97.20%,0.00%,6,6,143,4.20% +141080,941,2094,State-funded primary,212,100,112,47.20%,52.80%,2,0.90%,21,9.90%,6,206,0,2.80%,97.20%,0.00%,37,38,197,19.30% +141082,316,4006,State-funded secondary,471,238,233,50.50%,49.50%,21,4.50%,40,8.50%,183,288,0,38.90%,61.10%,0.00%,190,222,471,47.10% +141085,886,2045,State-funded primary,210,93,117,44.30%,55.70%,7,3.30%,33,15.70%,33,177,0,15.70%,84.30%,0.00%,36,38,210,18.10% +141086,926,4014,State-funded secondary,414,70,344,16.90%,83.10%,6,1.40%,59,14.30%,32,381,1,7.70%,92.00%,0.20%,73,63,281,22.40% +141087,353,6002,Independent school,62,62,0,100.00%,0.00%,0,0.00%,7,11.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141089,839,2005,State-funded primary,306,166,140,54.20%,45.80%,14,4.60%,41,13.40%,51,255,0,16.70%,83.30%,0.00%,81,85,306,27.80% +141095,211,4002,State-funded secondary,297,98,196,33.00%,66.00%,17,5.70%,30,10.10%,54,243,0,18.20%,81.80%,0.00%,101,0,0,0.00% +141096,851,2008,State-funded primary,668,346,322,51.80%,48.20%,15,2.20%,109,16.30%,83,580,5,12.40%,86.80%,0.70%,137,140,668,21.00% +141097,370,2036,State-funded primary,225,108,117,48.00%,52.00%,4,1.80%,21,9.30%,27,193,5,12.00%,85.80%,2.20%,98,96,204,47.10% +141098,380,2022,State-funded primary,223,111,112,49.80%,50.20%,4,1.80%,16,7.20%,208,15,0,93.30%,6.70%,0.00%,54,54,199,27.10% +141100,925,2024,State-funded primary,409,200,209,48.90%,51.10%,8,2.00%,60,14.70%,121,288,0,29.60%,70.40%,0.00%,204,208,409,50.90% +141101,812,7000,State-funded AP school,51,16,35,31.40%,68.60%,14,27.50%,37,72.50%,0,51,0,0.00%,100.00%,0.00%,36,43,51,84.30% +141102,373,2029,State-funded primary,334,155,179,46.40%,53.60%,10,3.00%,72,21.60%,61,273,0,18.30%,81.70%,0.00%,227,213,299,71.20% +141103,341,2020,State-funded secondary,484,268,216,55.40%,44.60%,12,2.50%,87,18.00%,137,339,8,28.30%,70.00%,1.70%,149,184,484,38.00% +141104,331,4004,State-funded secondary,630,291,339,46.20%,53.80%,7,1.10%,65,10.30%,431,199,0,68.40%,31.60%,0.00%,78,88,630,14.00% +141105,885,6009,State-funded secondary,737,405,332,55.00%,45.00%,11,1.50%,134,18.20%,52,671,14,7.10%,91.00%,1.90%,110,114,694,16.40% +141106,909,6025,State-funded secondary,506,288,218,56.90%,43.10%,23,4.50%,65,12.80%,30,476,0,5.90%,94.10%,0.00%,70,77,481,16.00% +141109,840,4003,State-funded AP school,51,35,16,68.60%,31.40%,13,25.50%,38,74.50%,0,51,0,0.00%,100.00%,0.00%,30,33,51,64.70% +141110,801,2101,State-funded primary,427,239,188,56.00%,44.00%,2,0.50%,85,19.90%,367,58,2,85.90%,13.60%,0.50%,237,217,367,59.10% +141111,931,4008,State-funded secondary,344,84,260,24.40%,75.60%,8,2.30%,105,30.50%,42,300,2,12.20%,87.20%,0.60%,54,47,221,21.30% +141113,881,2107,State-funded primary,427,211,216,49.40%,50.60%,6,1.40%,55,12.90%,124,303,0,29.00%,71.00%,0.00%,178,189,387,48.80% +141114,303,2044,State-funded primary,600,273,327,45.50%,54.50%,30,5.00%,79,13.20%,107,485,8,17.80%,80.80%,1.30%,100,100,557,18.00% +141115,890,2002,State-funded primary,228,129,99,56.60%,43.40%,2,0.90%,26,11.40%,55,173,0,24.10%,75.90%,0.00%,97,89,188,47.30% +141116,305,7000,State-funded AP school,55,18,37,32.70%,67.30%,0,0.00%,55,100.00%,4,51,0,7.30%,92.70%,0.00%,35,43,55,78.20% +141117,305,2057,State-funded primary,223,109,114,48.90%,51.10%,4,1.80%,26,11.70%,30,193,0,13.50%,86.50%,0.00%,82,82,223,36.80% +141118,306,2088,State-funded primary,179,91,88,50.80%,49.20%,3,1.70%,22,12.30%,49,130,0,27.40%,72.60%,0.00%,62,63,179,35.20% +141119,306,2091,State-funded primary,134,71,63,53.00%,47.00%,5,3.70%,24,17.90%,57,77,0,42.50%,57.50%,0.00%,67,68,134,50.70% +141120,306,2095,State-funded primary,198,101,97,51.00%,49.00%,2,1.00%,36,18.20%,139,59,0,70.20%,29.80%,0.00%,86,86,176,48.90% +141121,840,2016,State-funded primary,208,107,101,51.40%,48.60%,2,1.00%,47,22.60%,16,192,0,7.70%,92.30%,0.00%,73,72,176,40.90% +141123,850,7003,State-funded AP school,7,3,4,42.90%,57.10%,0,0.00%,5,71.40%,1,6,0,14.30%,85.70%,0.00%,5,5,7,71.40% +141124,874,2006,State-funded primary,381,169,212,44.40%,55.60%,5,1.30%,84,22.00%,165,216,0,43.30%,56.70%,0.00%,180,185,381,48.60% +141127,855,6033,Independent school,42,14,28,33.30%,66.70%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141128,861,6012,Independent school,58,15,43,25.90%,74.10%,47,81.00%,11,19.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141130,206,1112,State-funded AP school,2,1,1,50.00%,50.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +141132,890,4002,State-funded secondary,838,396,442,47.30%,52.70%,14,1.70%,155,18.50%,68,762,8,8.10%,90.90%,1.00%,509,554,838,66.10% +141133,211,4001,State-funded secondary,464,173,291,37.30%,62.70%,7,1.50%,43,9.30%,346,117,1,74.60%,25.20%,0.20%,161,218,464,47.00% +141135,205,4001,State-funded secondary,782,0,782,0.00%,100.00%,21,2.70%,89,11.40%,69,713,0,8.80%,91.20%,0.00%,163,176,620,28.40% +141137,856,2004,State-funded primary,395,211,184,53.40%,46.60%,9,2.30%,56,14.20%,175,220,0,44.30%,55.70%,0.00%,182,185,362,51.10% +141139,316,6071,State-funded AP school,80,31,49,38.80%,61.30%,12,15.00%,5,6.30%,50,28,2,62.50%,35.00%,2.50%,18,23,80,28.80% +141140,383,1112,State-funded AP school,2,0,2,0.00%,100.00%,0,0.00%,2,100.00%,0,2,0,0.00%,100.00%,0.00%,2,2,2,100.00% +141141,371,1111,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +141142,865,3203,State-funded primary,366,176,190,48.10%,51.90%,7,1.90%,98,26.80%,41,325,0,11.20%,88.80%,0.00%,71,71,366,19.40% +141143,315,2002,State-funded primary,507,231,276,45.60%,54.40%,30,5.90%,37,7.30%,187,317,3,36.90%,62.50%,0.60%,156,154,437,35.20% +141144,384,2014,State-funded primary,369,185,184,50.10%,49.90%,13,3.50%,111,30.10%,36,333,0,9.80%,90.20%,0.00%,174,177,335,52.80% +141146,931,4600,State-funded secondary,869,456,413,52.50%,47.50%,19,2.20%,130,15.00%,232,634,3,26.70%,73.00%,0.30%,79,92,736,12.50% +141147,936,7034,State-funded special school,153,66,87,43.10%,56.90%,153,100.00%,0,0.00%,21,132,0,13.70%,86.30%,0.00%,53,51,116,44.00% +141148,865,3207,State-funded primary,176,83,93,47.20%,52.80%,5,2.80%,23,13.10%,2,174,0,1.10%,98.90%,0.00%,19,19,176,10.80% +141149,800,3093,State-funded primary,178,97,81,54.50%,45.50%,10,5.60%,8,4.50%,1,177,0,0.60%,99.40%,0.00%,28,28,178,15.70% +141150,931,3420,State-funded primary,189,96,93,50.80%,49.20%,4,2.10%,25,13.20%,36,153,0,19.00%,81.00%,0.00%,32,37,189,19.60% +141151,855,3058,State-funded primary,370,192,178,51.90%,48.10%,5,1.40%,35,9.50%,26,344,0,7.00%,93.00%,0.00%,64,64,370,17.30% +141152,895,3124,State-funded primary,427,197,230,46.10%,53.90%,7,1.60%,24,5.60%,18,409,0,4.20%,95.80%,0.00%,20,22,427,5.20% +141153,394,7014,State-funded special school,85,16,69,18.80%,81.20%,85,100.00%,0,0.00%,1,84,0,1.20%,98.80%,0.00%,52,54,85,63.50% +141154,304,5201,State-funded primary,205,99,106,48.30%,51.70%,4,2.00%,45,22.00%,85,120,0,41.50%,58.50%,0.00%,6,5,179,2.80% +141155,931,3825,State-funded primary,211,102,109,48.30%,51.70%,4,1.90%,50,23.70%,95,116,0,45.00%,55.00%,0.00%,57,53,184,28.80% +141156,886,3744,State-funded primary,397,206,191,51.90%,48.10%,11,2.80%,71,17.90%,101,296,0,25.40%,74.60%,0.00%,29,30,397,7.60% +141157,886,3751,State-funded primary,218,110,108,50.50%,49.50%,5,2.30%,11,5.00%,47,171,0,21.60%,78.40%,0.00%,17,19,189,10.10% +141158,305,3505,State-funded primary,231,114,117,49.40%,50.60%,3,1.30%,35,15.20%,28,203,0,12.10%,87.90%,0.00%,46,49,213,23.00% +141159,933,3189,State-funded primary,210,111,99,52.90%,47.10%,7,3.30%,17,8.10%,16,194,0,7.60%,92.40%,0.00%,28,28,210,13.30% +141160,393,3317,State-funded primary,239,129,110,54.00%,46.00%,3,1.30%,53,22.20%,12,227,0,5.00%,95.00%,0.00%,154,156,211,73.90% +141161,926,2246,State-funded primary,174,87,87,50.00%,50.00%,9,5.20%,22,12.60%,6,168,0,3.40%,96.60%,0.00%,24,24,174,13.80% +141162,933,3184,State-funded primary,324,177,147,54.60%,45.40%,6,1.90%,47,14.50%,34,290,0,10.50%,89.50%,0.00%,63,68,301,22.60% +141163,203,4250,State-funded secondary,1584,110,1474,6.90%,93.10%,40,2.50%,267,16.90%,476,974,134,30.10%,61.50%,8.50%,353,387,1195,32.40% +141164,202,4001,State-funded AP school,36,10,26,27.80%,72.20%,23,63.90%,1,2.80%,6,30,0,16.70%,83.30%,0.00%,12,12,14,85.70% +141165,889,6001,State-funded secondary,1286,616,670,47.90%,52.10%,19,1.50%,160,12.40%,155,1130,1,12.10%,87.90%,0.10%,217,215,1098,19.60% +141166,925,4011,State-funded secondary,547,272,275,49.70%,50.30%,22,4.00%,116,21.20%,9,516,22,1.60%,94.30%,4.00%,169,182,547,33.30% +141167,351,2002,State-funded primary,316,155,161,49.10%,50.90%,17,5.40%,36,11.40%,55,261,0,17.40%,82.60%,0.00%,111,110,279,39.40% +141168,926,2066,State-funded primary,152,73,79,48.00%,52.00%,3,2.00%,20,13.20%,14,138,0,9.20%,90.80%,0.00%,39,39,152,25.70% +141169,885,4013,State-funded secondary,470,233,237,49.60%,50.40%,20,4.30%,71,15.10%,14,456,0,3.00%,97.00%,0.00%,79,87,470,18.50% +141170,881,2108,State-funded primary,301,171,130,56.80%,43.20%,1,0.30%,45,15.00%,15,286,0,5.00%,95.00%,0.00%,84,84,301,27.90% +141171,334,7003,State-funded special school,92,16,76,17.40%,82.60%,92,100.00%,0,0.00%,1,91,0,1.10%,98.90%,0.00%,60,67,92,72.80% +141172,935,2043,State-funded primary,228,117,111,51.30%,48.70%,9,3.90%,42,18.40%,10,218,0,4.40%,95.60%,0.00%,90,90,212,42.50% +141173,311,2016,State-funded primary,339,158,181,46.60%,53.40%,5,1.50%,42,12.40%,59,280,0,17.40%,82.60%,0.00%,68,73,339,21.50% +141174,803,2009,State-funded primary,140,60,80,42.90%,57.10%,4,2.90%,22,15.70%,23,117,0,16.40%,83.60%,0.00%,25,29,140,20.70% +141175,851,4004,State-funded secondary,1235,593,642,48.00%,52.00%,22,1.80%,177,14.30%,238,989,8,19.30%,80.10%,0.60%,356,414,1235,33.50% +141176,893,4001,State-funded secondary,816,408,408,50.00%,50.00%,43,5.30%,74,9.10%,43,760,13,5.30%,93.10%,1.60%,146,170,758,22.40% +141178,301,4004,State-funded secondary,1318,635,683,48.20%,51.80%,37,2.80%,169,12.80%,506,812,0,38.40%,61.60%,0.00%,349,352,1054,33.40% +141179,815,4000,State-funded secondary,474,230,244,48.50%,51.50%,24,5.10%,86,18.10%,43,431,0,9.10%,90.90%,0.00%,112,119,474,25.10% +141180,893,2003,State-funded primary,59,35,24,59.30%,40.70%,0,0.00%,5,8.50%,1,53,5,1.70%,89.80%,8.50%,5,5,59,8.50% +141181,938,2023,State-funded primary,308,155,153,50.30%,49.70%,8,2.60%,44,14.30%,37,247,24,12.00%,80.20%,7.80%,89,90,308,29.20% +141182,881,2109,State-funded primary,204,92,112,45.10%,54.90%,4,2.00%,27,13.20%,13,191,0,6.40%,93.60%,0.00%,45,52,204,25.50% +141184,839,4002,State-funded secondary,686,333,353,48.50%,51.50%,30,4.40%,80,11.70%,32,637,17,4.70%,92.90%,2.50%,120,125,686,18.20% +141185,390,4001,State-funded secondary,1418,691,727,48.70%,51.30%,33,2.30%,118,8.30%,29,1316,73,2.00%,92.80%,5.10%,316,350,1275,27.50% +141186,860,2014,State-funded primary,509,248,261,48.70%,51.30%,13,2.60%,75,14.70%,71,434,4,13.90%,85.30%,0.80%,145,164,509,32.20% +141187,850,7004,State-funded special school,54,12,42,22.20%,77.80%,54,100.00%,0,0.00%,0,53,1,0.00%,98.10%,1.90%,35,38,54,70.40% +141191,801,2106,State-funded primary,334,178,156,53.30%,46.70%,7,2.10%,67,20.10%,276,58,0,82.60%,17.40%,0.00%,238,220,291,75.60% +141192,926,2068,State-funded primary,218,99,119,45.40%,54.60%,3,1.40%,30,13.80%,1,208,9,0.50%,95.40%,4.10%,32,31,201,15.40% +141193,895,2002,State-funded primary,220,110,110,50.00%,50.00%,26,11.80%,29,13.20%,14,206,0,6.40%,93.60%,0.00%,101,91,177,51.40% +141194,881,2110,State-funded primary,194,87,107,44.80%,55.20%,3,1.50%,18,9.30%,62,132,0,32.00%,68.00%,0.00%,74,75,194,38.70% +141195,881,2111,State-funded primary,187,91,96,48.70%,51.30%,3,1.60%,36,19.30%,49,135,3,26.20%,72.20%,1.60%,65,69,174,39.70% +141196,352,4005,State-funded secondary,1008,1008,0,100.00%,0.00%,9,0.90%,92,9.10%,739,267,2,73.30%,26.50%,0.20%,428,468,1008,46.40% +141197,936,2031,State-funded primary,212,99,113,46.70%,53.30%,6,2.80%,28,13.20%,87,125,0,41.00%,59.00%,0.00%,38,38,212,17.90% +141198,908,2038,State-funded primary,207,108,99,52.20%,47.80%,8,3.90%,30,14.50%,0,207,0,0.00%,100.00%,0.00%,72,61,173,35.30% +141199,887,2012,State-funded primary,585,303,282,51.80%,48.20%,12,2.10%,76,13.00%,128,454,3,21.90%,77.60%,0.50%,204,212,559,37.90% +141200,936,4001,State-funded secondary,465,240,225,51.60%,48.40%,27,5.80%,177,38.10%,70,395,0,15.10%,84.90%,0.00%,130,139,465,29.90% +141201,931,2014,State-funded primary,117,44,73,37.60%,62.40%,12,10.30%,24,20.50%,17,97,3,14.50%,82.90%,2.60%,26,25,103,24.30% +141203,860,2016,State-funded primary,230,115,115,50.00%,50.00%,3,1.30%,34,14.80%,15,214,1,6.50%,93.00%,0.40%,25,25,207,12.10% +141205,340,2001,State-funded primary,350,167,183,47.70%,52.30%,12,3.40%,39,11.10%,49,301,0,14.00%,86.00%,0.00%,188,187,324,57.70% +141206,330,2145,State-funded primary,240,115,125,47.90%,52.10%,4,1.70%,37,15.40%,60,180,0,25.00%,75.00%,0.00%,65,70,240,29.20% +141207,352,6009,Independent school,12,12,0,100.00%,0.00%,3,25.00%,6,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141208,931,6015,Independent school,48,19,29,39.60%,60.40%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141209,309,2012,State-funded primary,398,214,184,53.80%,46.20%,17,4.30%,57,14.30%,243,155,0,61.10%,38.90%,0.00%,183,200,398,50.30% +141210,306,4003,State-funded secondary,789,328,461,41.60%,58.40%,10,1.30%,143,18.10%,343,446,0,43.50%,56.50%,0.00%,334,363,789,46.00% +141211,873,2027,State-funded primary,227,113,114,49.80%,50.20%,8,3.50%,27,11.90%,18,209,0,7.90%,92.10%,0.00%,53,54,227,23.80% +141212,873,2030,State-funded primary,112,55,57,49.10%,50.90%,5,4.50%,8,7.10%,3,109,0,2.70%,97.30%,0.00%,23,23,94,24.50% +141213,873,2032,State-funded primary,226,104,122,46.00%,54.00%,11,4.90%,50,22.10%,70,156,0,31.00%,69.00%,0.00%,89,90,226,39.80% +141214,881,4014,State-funded secondary,1497,689,808,46.00%,54.00%,48,3.20%,93,6.20%,112,1385,0,7.50%,92.50%,0.00%,443,539,1497,36.00% +141216,886,2048,State-funded primary,493,246,247,49.90%,50.10%,23,4.70%,63,12.80%,12,481,0,2.40%,97.60%,0.00%,102,114,493,23.10% +141217,886,4013,State-funded secondary,567,271,296,47.80%,52.20%,15,2.60%,96,16.90%,82,485,0,14.50%,85.50%,0.00%,207,220,567,38.80% +141220,886,2051,State-funded primary,208,103,105,49.50%,50.50%,10,4.80%,17,8.20%,24,183,1,11.50%,88.00%,0.50%,76,78,208,37.50% +141221,856,2005,State-funded primary,445,226,219,50.80%,49.20%,6,1.30%,42,9.40%,345,100,0,77.50%,22.50%,0.00%,166,168,419,40.10% +141222,855,2021,State-funded primary,415,190,225,45.80%,54.20%,15,3.60%,83,20.00%,13,402,0,3.10%,96.90%,0.00%,115,115,415,27.70% +141224,887,2013,State-funded primary,228,116,112,50.90%,49.10%,5,2.20%,26,11.40%,12,215,1,5.30%,94.30%,0.40%,34,34,228,14.90% +141225,868,6022,Independent school,47,19,28,40.40%,59.60%,46,97.90%,1,2.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141226,926,2071,State-funded primary,58,23,35,39.70%,60.30%,3,5.20%,8,13.80%,0,58,0,0.00%,100.00%,0.00%,14,14,52,26.90% +141227,926,2075,State-funded primary,179,84,95,46.90%,53.10%,7,3.90%,40,22.30%,2,176,1,1.10%,98.30%,0.60%,26,28,179,15.60% +141228,926,2076,State-funded primary,47,20,27,42.60%,57.40%,2,4.30%,11,23.40%,1,46,0,2.10%,97.90%,0.00%,24,25,47,53.20% +141230,940,2168,State-funded primary,177,90,87,50.80%,49.20%,1,0.60%,28,15.80%,34,143,0,19.20%,80.80%,0.00%,38,39,177,22.00% +141231,931,2015,State-funded primary,270,138,132,51.10%,48.90%,12,4.40%,40,14.80%,113,157,0,41.90%,58.10%,0.00%,115,116,243,47.70% +141232,879,2004,State-funded primary,140,67,73,47.90%,52.10%,1,0.70%,37,26.40%,11,129,0,7.90%,92.10%,0.00%,60,61,140,43.60% +141234,857,2000,State-funded primary,203,116,87,57.10%,42.90%,1,0.50%,27,13.30%,5,198,0,2.50%,97.50%,0.00%,27,27,203,13.30% +141236,935,4043,State-funded secondary,586,292,294,49.80%,50.20%,18,3.10%,99,16.90%,15,571,0,2.60%,97.40%,0.00%,134,160,586,27.30% +141237,880,2004,State-funded primary,327,154,173,47.10%,52.90%,35,10.70%,42,12.80%,9,318,0,2.80%,97.20%,0.00%,64,65,327,19.90% +141242,330,6017,Independent school,51,23,28,45.10%,54.90%,25,49.00%,1,2.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141244,937,2033,State-funded primary,197,97,100,49.20%,50.80%,5,2.50%,29,14.70%,7,190,0,3.60%,96.40%,0.00%,18,18,197,9.10% +141245,336,4001,State-funded secondary,1052,480,572,45.60%,54.40%,15,1.40%,172,16.30%,287,764,1,27.30%,72.60%,0.10%,400,427,928,46.00% +141246,885,2010,State-funded primary,456,219,237,48.00%,52.00%,5,1.10%,95,20.80%,25,431,0,5.50%,94.50%,0.00%,103,105,404,26.00% +141247,308,6003,Independent school,18,6,12,33.30%,66.70%,10,55.60%,4,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141248,353,4027,State-funded secondary,1599,825,774,51.60%,48.40%,47,2.90%,171,10.70%,317,1282,0,19.80%,80.20%,0.00%,312,321,1358,23.60% +141250,206,6001,Independent school,247,88,159,35.60%,64.40%,3,1.20%,21,8.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141251,919,7004,State-funded special school,204,62,142,30.40%,69.60%,204,100.00%,0,0.00%,10,194,0,4.90%,95.10%,0.00%,78,89,204,43.60% +141252,330,7013,State-funded special school,428,118,310,27.60%,72.40%,428,100.00%,0,0.00%,175,253,0,40.90%,59.10%,0.00%,241,203,327,62.10% +141253,925,7002,State-funded special school,175,35,140,20.00%,80.00%,175,100.00%,0,0.00%,8,167,0,4.60%,95.40%,0.00%,76,83,175,47.40% +141254,925,7005,State-funded special school,74,26,48,35.10%,64.90%,74,100.00%,0,0.00%,11,63,0,14.90%,85.10%,0.00%,36,23,50,46.00% +141255,316,7004,State-funded special school,156,42,114,26.90%,73.10%,154,98.70%,2,1.30%,99,57,0,63.50%,36.50%,0.00%,83,64,118,54.20% +141257,890,4601,State-funded secondary,1199,617,582,51.50%,48.50%,16,1.30%,122,10.20%,262,934,3,21.90%,77.90%,0.30%,351,369,1049,35.20% +141258,839,2151,State-funded primary,314,159,155,50.60%,49.40%,12,3.80%,22,7.00%,9,295,10,2.90%,93.90%,3.20%,37,37,314,11.80% +141259,830,5416,State-funded secondary,841,432,409,51.40%,48.60%,20,2.40%,45,5.40%,17,823,1,2.00%,97.90%,0.10%,274,252,710,35.50% +141260,925,2093,State-funded primary,317,149,168,47.00%,53.00%,15,4.70%,67,21.10%,28,289,0,8.80%,91.20%,0.00%,96,115,317,36.30% +141261,845,2148,State-funded primary,245,110,135,44.90%,55.10%,14,5.70%,71,29.00%,6,239,0,2.40%,97.60%,0.00%,85,87,208,41.80% +141262,845,2170,State-funded primary,378,202,176,53.40%,46.60%,5,1.30%,56,14.80%,38,340,0,10.10%,89.90%,0.00%,216,219,341,64.20% +141263,845,2161,State-funded primary,482,265,217,55.00%,45.00%,5,1.00%,137,28.40%,27,455,0,5.60%,94.40%,0.00%,104,105,393,26.70% +141264,352,4257,State-funded secondary,1667,1667,0,100.00%,0.00%,17,1.00%,174,10.40%,1285,378,4,77.10%,22.70%,0.20%,669,675,1352,49.90% +141265,938,2210,State-funded primary,415,195,220,47.00%,53.00%,7,1.70%,53,12.80%,61,354,0,14.70%,85.30%,0.00%,31,31,415,7.50% +141266,938,2108,State-funded primary,145,73,72,50.30%,49.70%,2,1.40%,22,15.20%,8,137,0,5.50%,94.50%,0.00%,10,12,145,8.30% +141267,938,2247,State-funded primary,187,93,94,49.70%,50.30%,2,1.10%,29,15.50%,23,164,0,12.30%,87.70%,0.00%,34,35,187,18.70% +141268,926,4002,State-funded secondary,1129,545,584,48.30%,51.70%,38,3.40%,191,16.90%,77,1046,6,6.80%,92.60%,0.50%,219,215,785,27.40% +141269,926,4065,State-funded secondary,1763,924,839,52.40%,47.60%,26,1.50%,204,11.60%,193,1473,97,10.90%,83.60%,5.50%,351,338,1342,25.20% +141270,330,2434,State-funded primary,449,208,241,46.30%,53.70%,2,0.40%,48,10.70%,29,420,0,6.50%,93.50%,0.00%,228,214,406,52.70% +141271,826,2350,State-funded primary,84,38,46,45.20%,54.80%,1,1.20%,12,14.30%,28,55,1,33.30%,65.50%,1.20%,10,10,57,17.50% +141272,865,2228,State-funded primary,405,195,210,48.10%,51.90%,5,1.20%,62,15.30%,8,397,0,2.00%,98.00%,0.00%,47,49,405,12.10% +141273,866,2050,State-funded primary,274,145,129,52.90%,47.10%,9,3.30%,39,14.20%,45,229,0,16.40%,83.60%,0.00%,32,32,274,11.70% +141274,865,3319,State-funded primary,189,90,99,47.60%,52.40%,9,4.80%,25,13.20%,7,182,0,3.70%,96.30%,0.00%,26,27,189,14.30% +141275,356,2035,State-funded primary,579,279,300,48.20%,51.80%,9,1.60%,32,5.50%,113,463,3,19.50%,80.00%,0.50%,28,30,540,5.60% +141276,887,2208,State-funded primary,180,83,97,46.10%,53.90%,4,2.20%,12,6.70%,13,159,8,7.20%,88.30%,4.40%,15,15,180,8.30% +141277,937,4620,State-funded secondary,1079,105,974,9.70%,90.30%,2,0.20%,7,0.60%,390,677,12,36.10%,62.70%,1.10%,73,57,687,8.30% +141278,860,2204,State-funded primary,203,91,112,44.80%,55.20%,5,2.50%,23,11.30%,4,199,0,2.00%,98.00%,0.00%,60,61,203,30.00% +141279,855,2016,State-funded primary,163,78,85,47.90%,52.10%,1,0.60%,13,8.00%,6,154,3,3.70%,94.50%,1.80%,5,6,163,3.70% +141280,937,2639,State-funded primary,93,47,46,50.50%,49.50%,2,2.20%,13,14.00%,3,90,0,3.20%,96.80%,0.00%,15,16,80,20.00% +141281,937,5206,State-funded primary,395,193,202,48.90%,51.10%,9,2.30%,62,15.70%,17,378,0,4.30%,95.70%,0.00%,105,107,395,27.10% +141282,384,3342,State-funded primary,340,162,178,47.60%,52.40%,9,2.60%,38,11.20%,8,330,2,2.40%,97.10%,0.60%,24,24,310,7.70% +141283,908,2516,State-funded primary,153,79,74,51.60%,48.40%,3,2.00%,11,7.20%,3,143,7,2.00%,93.50%,4.60%,20,20,146,13.70% +141284,878,2403,State-funded primary,129,51,78,39.50%,60.50%,2,1.60%,15,11.60%,3,126,0,2.30%,97.70%,0.00%,16,16,129,12.40% +141285,878,2430,State-funded primary,130,63,67,48.50%,51.50%,4,3.10%,7,5.40%,8,122,0,6.20%,93.80%,0.00%,13,13,103,12.60% +141286,878,2443,State-funded primary,142,79,63,55.60%,44.40%,4,2.80%,14,9.90%,5,137,0,3.50%,96.50%,0.00%,10,11,142,7.70% +141287,878,2419,State-funded primary,105,55,50,52.40%,47.60%,4,3.80%,14,13.30%,0,105,0,0.00%,100.00%,0.00%,7,8,105,7.60% +141288,890,3631,State-funded primary,237,120,117,50.60%,49.40%,6,2.50%,23,9.70%,67,169,1,28.30%,71.30%,0.40%,102,91,212,42.90% +141289,812,2944,State-funded primary,544,273,271,50.20%,49.80%,5,0.90%,103,18.90%,62,482,0,11.40%,88.60%,0.00%,324,332,495,67.10% +141290,384,2184,State-funded primary,414,194,220,46.90%,53.10%,10,2.40%,70,16.90%,30,384,0,7.20%,92.80%,0.00%,112,120,374,32.10% +141291,305,2064,State-funded primary,385,182,203,47.30%,52.70%,11,2.90%,129,33.50%,63,322,0,16.40%,83.60%,0.00%,148,150,350,42.90% +141292,333,2124,State-funded primary,356,175,181,49.20%,50.80%,21,5.90%,35,9.80%,297,59,0,83.40%,16.60%,0.00%,100,101,356,28.40% +141293,333,2125,State-funded primary,338,167,171,49.40%,50.60%,18,5.30%,33,9.80%,286,51,1,84.60%,15.10%,0.30%,61,61,266,22.90% +141294,936,3930,State-funded primary,588,272,316,46.30%,53.70%,17,2.90%,37,6.30%,78,510,0,13.30%,86.70%,0.00%,36,37,588,6.30% +141295,868,3028,State-funded primary,119,62,57,52.10%,47.90%,4,3.40%,32,26.90%,6,113,0,5.00%,95.00%,0.00%,26,26,119,21.80% +141296,316,2080,State-funded primary,600,308,292,51.30%,48.70%,39,6.50%,117,19.50%,521,78,1,86.80%,13.00%,0.20%,212,221,600,36.80% +141297,873,2451,State-funded primary,202,101,101,50.00%,50.00%,11,5.40%,40,19.80%,51,151,0,25.20%,74.80%,0.00%,48,49,202,24.30% +141298,331,3301,State-funded primary,210,109,101,51.90%,48.10%,0,0.00%,22,10.50%,14,196,0,6.70%,93.30%,0.00%,13,14,210,6.70% +141299,311,2060,State-funded primary,300,149,151,49.70%,50.30%,7,2.30%,15,5.00%,74,199,27,24.70%,66.30%,9.00%,21,22,247,8.90% +141300,874,4082,State-funded secondary,1673,840,833,50.20%,49.80%,33,2.00%,156,9.30%,399,1267,7,23.80%,75.70%,0.40%,315,321,1453,22.10% +141301,808,2344,State-funded primary,426,195,231,45.80%,54.20%,9,2.10%,135,31.70%,18,408,0,4.20%,95.80%,0.00%,226,224,382,58.60% +141302,812,2154,State-funded primary,341,182,159,53.40%,46.60%,7,2.10%,16,4.70%,17,324,0,5.00%,95.00%,0.00%,16,16,341,4.70% +141304,881,2785,State-funded primary,464,200,264,43.10%,56.90%,10,2.20%,19,4.10%,52,412,0,11.20%,88.80%,0.00%,94,108,415,26.00% +141305,921,2032,State-funded primary,446,218,228,48.90%,51.10%,28,6.30%,112,25.10%,46,399,1,10.30%,89.50%,0.20%,172,177,446,39.70% +141306,895,2145,State-funded primary,101,48,53,47.50%,52.50%,2,2.00%,11,10.90%,5,96,0,5.00%,95.00%,0.00%,5,5,101,5.00% +141307,381,5408,State-funded secondary,1658,847,811,51.10%,48.90%,66,4.00%,155,9.30%,47,1611,0,2.80%,97.20%,0.00%,344,352,1390,25.30% +141308,886,3119,State-funded primary,97,48,49,49.50%,50.50%,4,4.10%,20,20.60%,3,94,0,3.10%,96.90%,0.00%,19,19,97,19.60% +141309,203,4271,State-funded secondary,1575,652,923,41.40%,58.60%,64,4.10%,180,11.40%,164,1352,59,10.40%,85.80%,3.70%,211,231,1333,17.30% +141314,926,3397,State-funded primary,373,186,187,49.90%,50.10%,7,1.90%,62,16.60%,155,203,15,41.60%,54.40%,4.00%,96,101,373,27.10% +141315,203,6004,Independent school,14,2,12,14.30%,85.70%,4,28.60%,3,21.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141318,330,4017,State-funded secondary,665,321,344,48.30%,51.70%,11,1.70%,98,14.70%,120,534,11,18.00%,80.30%,1.70%,404,424,665,63.80% +141319,330,2146,State-funded primary,618,291,327,47.10%,52.90%,28,4.50%,91,14.70%,545,73,0,88.20%,11.80%,0.00%,344,342,596,57.40% +141320,330,2152,State-funded primary,341,151,190,44.30%,55.70%,1,0.30%,49,14.40%,66,275,0,19.40%,80.60%,0.00%,194,200,341,58.70% +141321,889,4004,State-funded secondary,1044,504,540,48.30%,51.70%,11,1.10%,147,14.10%,65,965,14,6.20%,92.40%,1.30%,301,352,1044,33.70% +141322,908,2039,State-funded primary,103,50,53,48.50%,51.50%,0,0.00%,20,19.40%,0,102,1,0.00%,99.00%,1.00%,24,24,103,23.30% +141324,831,2012,State-funded primary,333,181,152,54.40%,45.60%,7,2.10%,62,18.60%,112,221,0,33.60%,66.40%,0.00%,214,215,333,64.60% +141325,332,4000,State-funded secondary,1000,515,485,51.50%,48.50%,44,4.40%,165,16.50%,90,909,1,9.00%,90.90%,0.10%,295,334,1000,33.40% +141326,881,2113,State-funded primary,302,136,166,45.00%,55.00%,7,2.30%,11,3.60%,7,294,1,2.30%,97.40%,0.30%,61,61,232,26.30% +141328,881,4015,State-funded secondary,491,245,246,49.90%,50.10%,40,8.10%,97,19.80%,28,463,0,5.70%,94.30%,0.00%,147,158,491,32.20% +141329,886,2052,State-funded primary,356,177,179,49.70%,50.30%,5,1.40%,54,15.20%,41,315,0,11.50%,88.50%,0.00%,105,110,356,30.90% +141330,341,2030,State-funded primary,244,132,112,54.10%,45.90%,3,1.20%,55,22.50%,121,123,0,49.60%,50.40%,0.00%,154,147,202,72.80% +141331,926,4017,State-funded secondary,694,364,330,52.40%,47.60%,18,2.60%,165,23.80%,89,605,0,12.80%,87.20%,0.00%,258,276,694,39.80% +141333,353,2013,State-funded primary,330,155,175,47.00%,53.00%,7,2.10%,78,23.60%,181,149,0,54.80%,45.20%,0.00%,172,179,306,58.50% +141334,892,2012,State-funded primary,325,158,167,48.60%,51.40%,1,0.30%,77,23.70%,93,232,0,28.60%,71.40%,0.00%,170,170,325,52.30% +141337,372,2016,State-funded primary,454,220,234,48.50%,51.50%,4,0.90%,50,11.00%,11,443,0,2.40%,97.60%,0.00%,40,41,418,9.80% +141338,343,4001,State-funded secondary,693,313,380,45.20%,54.80%,55,7.90%,95,13.70%,16,663,14,2.30%,95.70%,2.00%,213,225,603,37.30% +141339,373,2034,State-funded primary,484,238,246,49.20%,50.80%,19,3.90%,103,21.30%,65,419,0,13.40%,86.60%,0.00%,285,272,407,66.80% +141340,893,2005,State-funded primary,157,87,70,55.40%,44.60%,3,1.90%,15,9.60%,32,125,0,20.40%,79.60%,0.00%,49,46,143,32.20% +141341,803,4004,State-funded secondary,514,236,278,45.90%,54.10%,15,2.90%,70,13.60%,32,482,0,6.20%,93.80%,0.00%,69,79,514,15.40% +141342,860,4009,State-funded secondary,703,376,327,53.50%,46.50%,11,1.60%,95,13.50%,5,698,0,0.70%,99.30%,0.00%,77,101,623,16.20% +141343,860,4010,State-funded secondary,1109,540,569,48.70%,51.30%,17,1.50%,144,13.00%,0,1109,0,0.00%,100.00%,0.00%,136,148,897,16.50% +141344,860,2017,State-funded primary,372,174,198,46.80%,53.20%,3,0.80%,67,18.00%,18,354,0,4.80%,95.20%,0.00%,112,116,372,31.20% +141345,808,7000,State-funded special school,171,42,129,24.60%,75.40%,171,100.00%,0,0.00%,10,161,0,5.80%,94.20%,0.00%,73,74,171,43.30% +141346,861,2010,State-funded primary,459,220,239,47.90%,52.10%,2,0.40%,69,15.00%,37,422,0,8.10%,91.90%,0.00%,238,216,407,53.10% +141347,936,2032,State-funded primary,203,96,107,47.30%,52.70%,6,3.00%,19,9.40%,21,182,0,10.30%,89.70%,0.00%,38,39,203,19.20% +141348,938,2026,State-funded primary,422,204,218,48.30%,51.70%,13,3.10%,51,12.10%,41,380,1,9.70%,90.00%,0.20%,72,76,422,18.00% +141349,868,4003,State-funded secondary,325,148,177,45.50%,54.50%,9,2.80%,59,18.20%,25,300,0,7.70%,92.30%,0.00%,51,61,325,18.80% +141350,889,2005,State-funded primary,203,103,100,50.70%,49.30%,3,1.50%,40,19.70%,27,176,0,13.30%,86.70%,0.00%,136,139,203,68.50% +141351,801,2107,State-funded primary,239,119,120,49.80%,50.20%,1,0.40%,48,20.10%,35,203,1,14.60%,84.90%,0.40%,51,52,239,21.80% +141352,305,2059,State-funded primary,382,188,194,49.20%,50.80%,37,9.70%,49,12.80%,86,296,0,22.50%,77.50%,0.00%,129,133,336,39.60% +141353,878,2044,State-funded primary,325,164,161,50.50%,49.50%,13,4.00%,41,12.60%,9,316,0,2.80%,97.20%,0.00%,96,98,325,30.20% +141355,881,2114,State-funded primary,229,102,127,44.50%,55.50%,9,3.90%,34,14.80%,60,169,0,26.20%,73.80%,0.00%,87,90,209,43.10% +141356,926,2082,State-funded primary,179,91,88,50.80%,49.20%,9,5.00%,29,16.20%,59,120,0,33.00%,67.00%,0.00%,73,74,179,41.30% +141357,926,2086,State-funded primary,402,192,210,47.80%,52.20%,1,0.20%,39,9.70%,110,285,7,27.40%,70.90%,1.70%,44,47,402,11.70% +141358,926,2088,State-funded primary,214,110,104,51.40%,48.60%,12,5.60%,33,15.40%,14,192,8,6.50%,89.70%,3.70%,83,83,214,38.80% +141359,926,2090,State-funded primary,168,76,92,45.20%,54.80%,4,2.40%,32,19.00%,68,84,16,40.50%,50.00%,9.50%,73,75,168,44.60% +141360,926,2091,State-funded primary,199,94,105,47.20%,52.80%,9,4.50%,25,12.60%,80,117,2,40.20%,58.80%,1.00%,82,84,199,42.20% +141361,802,2002,State-funded primary,363,161,202,44.40%,55.60%,6,1.70%,29,8.00%,24,339,0,6.60%,93.40%,0.00%,57,58,363,16.00% +141362,802,2003,State-funded primary,87,40,47,46.00%,54.00%,1,1.10%,7,8.00%,0,87,0,0.00%,100.00%,0.00%,2,2,87,2.30% +141363,892,4006,State-funded secondary,734,391,343,53.30%,46.70%,3,0.40%,108,14.70%,70,663,1,9.50%,90.30%,0.10%,293,312,734,42.50% +141364,931,2016,State-funded primary,470,222,248,47.20%,52.80%,7,1.50%,56,11.90%,29,435,6,6.20%,92.60%,1.30%,74,74,402,18.40% +141365,354,2005,State-funded primary,452,225,227,49.80%,50.20%,9,2.00%,33,7.30%,326,126,0,72.10%,27.90%,0.00%,151,153,407,37.60% +141366,372,2024,State-funded primary,398,191,207,48.00%,52.00%,3,0.80%,66,16.60%,20,378,0,5.00%,95.00%,0.00%,167,156,362,43.10% +141368,893,2006,State-funded primary,209,105,104,50.20%,49.80%,13,6.20%,50,23.90%,22,183,4,10.50%,87.60%,1.90%,94,85,176,48.30% +141369,808,4005,State-funded secondary,1177,618,559,52.50%,47.50%,12,1.00%,186,15.80%,94,1079,4,8.00%,91.70%,0.30%,203,236,1177,20.10% +141370,808,4006,State-funded secondary,1063,534,529,50.20%,49.80%,33,3.10%,103,9.70%,96,967,0,9.00%,91.00%,0.00%,245,283,1063,26.60% +141371,935,2047,State-funded primary,331,162,169,48.90%,51.10%,9,2.70%,33,10.00%,47,284,0,14.20%,85.80%,0.00%,87,93,331,28.10% +141372,935,2048,State-funded primary,217,120,97,55.30%,44.70%,26,12.00%,22,10.10%,35,182,0,16.10%,83.90%,0.00%,54,54,217,24.90% +141373,935,2050,State-funded primary,298,140,158,47.00%,53.00%,23,7.70%,56,18.80%,48,250,0,16.10%,83.90%,0.00%,93,96,298,32.20% +141375,380,2025,State-funded primary,434,217,217,50.00%,50.00%,6,1.40%,55,12.70%,285,143,6,65.70%,32.90%,1.40%,143,144,399,36.10% +141376,331,7002,State-funded special school,198,57,141,28.80%,71.20%,198,100.00%,0,0.00%,72,125,1,36.40%,63.10%,0.50%,104,73,133,54.90% +141377,830,4004,State-funded secondary,1041,491,550,47.20%,52.80%,40,3.80%,170,16.30%,37,1004,0,3.60%,96.40%,0.00%,297,296,902,32.80% +141378,839,4006,State-funded secondary,369,201,168,54.50%,45.50%,21,5.70%,71,19.20%,26,343,0,7.00%,93.00%,0.00%,155,165,369,44.70% +141379,881,2115,State-funded primary,422,206,216,48.80%,51.20%,11,2.60%,46,10.90%,124,298,0,29.40%,70.60%,0.00%,146,158,390,40.50% +141380,881,2116,State-funded primary,289,142,147,49.10%,50.90%,4,1.40%,42,14.50%,81,208,0,28.00%,72.00%,0.00%,78,84,289,29.10% +141381,881,2117,State-funded primary,205,102,103,49.80%,50.20%,6,2.90%,24,11.70%,27,178,0,13.20%,86.80%,0.00%,32,40,205,19.50% +141384,808,5950,State-funded special school,42,6,36,14.30%,85.70%,42,100.00%,0,0.00%,0,42,0,0.00%,100.00%,0.00%,30,32,42,76.20% +141385,808,5951,State-funded special school,82,8,74,9.80%,90.20%,82,100.00%,0,0.00%,0,82,0,0.00%,100.00%,0.00%,56,62,82,75.60% +141386,886,2054,State-funded primary,197,100,97,50.80%,49.20%,8,4.10%,14,7.10%,36,161,0,18.30%,81.70%,0.00%,99,101,197,51.30% +141387,810,2021,State-funded primary,217,100,117,46.10%,53.90%,12,5.50%,36,16.60%,20,197,0,9.20%,90.80%,0.00%,62,64,191,33.50% +141390,925,2035,State-funded primary,64,40,24,62.50%,37.50%,2,3.10%,13,20.30%,5,59,0,7.80%,92.20%,0.00%,12,13,63,20.60% +141391,925,4013,State-funded secondary,576,293,283,50.90%,49.10%,9,1.60%,82,14.20%,170,401,5,29.50%,69.60%,0.90%,186,201,576,34.90% +141393,815,2001,State-funded primary,188,78,110,41.50%,58.50%,3,1.60%,18,9.60%,11,177,0,5.90%,94.10%,0.00%,56,56,168,33.30% +141395,926,4018,State-funded secondary,458,197,261,43.00%,57.00%,14,3.10%,83,18.10%,11,447,0,2.40%,97.60%,0.00%,116,126,458,27.50% +141396,892,2013,State-funded primary,642,309,333,48.10%,51.90%,6,0.90%,102,15.90%,236,406,0,36.80%,63.20%,0.00%,386,360,585,61.50% +141397,892,2014,State-funded primary,500,227,273,45.40%,54.60%,6,1.20%,95,19.00%,127,372,1,25.40%,74.40%,0.20%,229,229,456,50.20% +141398,891,2022,State-funded primary,155,80,75,51.60%,48.40%,0,0.00%,20,12.90%,44,111,0,28.40%,71.60%,0.00%,61,61,142,43.00% +141399,807,4004,State-funded secondary,795,371,424,46.70%,53.30%,17,2.10%,112,14.10%,10,785,0,1.30%,98.70%,0.00%,131,149,795,18.70% +141400,354,2007,State-funded primary,356,178,178,50.00%,50.00%,10,2.80%,53,14.90%,182,174,0,51.10%,48.90%,0.00%,122,122,314,38.90% +141401,353,2014,State-funded primary,228,118,110,51.80%,48.20%,3,1.30%,35,15.40%,199,29,0,87.30%,12.70%,0.00%,83,82,202,40.60% +141403,373,2039,State-funded primary,318,164,154,51.60%,48.40%,1,0.30%,43,13.50%,259,59,0,81.40%,18.60%,0.00%,150,124,254,48.80% +141404,373,2042,State-funded primary,358,173,185,48.30%,51.70%,1,0.30%,58,16.20%,274,84,0,76.50%,23.50%,0.00%,161,162,358,45.30% +141405,861,2014,State-funded primary,461,225,236,48.80%,51.20%,4,0.90%,79,17.10%,84,377,0,18.20%,81.80%,0.00%,258,233,403,57.80% +141406,935,2051,State-funded primary,236,114,122,48.30%,51.70%,5,2.10%,19,8.10%,5,231,0,2.10%,97.90%,0.00%,46,46,194,23.70% +141407,935,7011,State-funded special school,169,63,106,37.30%,62.70%,169,100.00%,0,0.00%,24,145,0,14.20%,85.80%,0.00%,72,81,169,47.90% +141408,357,2014,State-funded primary,221,116,105,52.50%,47.50%,10,4.50%,18,8.10%,34,187,0,15.40%,84.60%,0.00%,86,90,198,45.50% +141409,384,2021,State-funded primary,403,204,199,50.60%,49.40%,18,4.50%,87,21.60%,16,387,0,4.00%,96.00%,0.00%,161,168,403,41.70% +141410,335,2019,State-funded primary,253,115,138,45.50%,54.50%,6,2.40%,63,24.90%,21,232,0,8.30%,91.70%,0.00%,136,138,253,54.50% +141411,320,6005,Independent school,16,8,8,50.00%,50.00%,5,31.30%,10,62.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141412,885,3316,State-funded primary,160,80,80,50.00%,50.00%,5,3.10%,21,13.10%,0,160,0,0.00%,100.00%,0.00%,19,20,136,14.70% +141413,885,3393,State-funded primary,193,87,106,45.10%,54.90%,2,1.00%,32,16.60%,40,153,0,20.70%,79.30%,0.00%,42,44,193,22.80% +141414,885,4800,State-funded secondary,1086,474,612,43.60%,56.40%,11,1.00%,115,10.60%,110,972,4,10.10%,89.50%,0.40%,117,133,919,14.50% +141443,885,3388,State-funded primary,259,128,131,49.40%,50.60%,3,1.20%,32,12.40%,36,223,0,13.90%,86.10%,0.00%,42,41,198,20.70% +141444,885,3380,State-funded primary,153,79,74,51.60%,48.40%,3,2.00%,24,15.70%,8,145,0,5.20%,94.80%,0.00%,30,30,153,19.60% +141445,357,2046,State-funded primary,360,184,176,51.10%,48.90%,19,5.30%,89,24.70%,81,277,2,22.50%,76.90%,0.60%,146,156,347,45.00% +141446,936,3353,State-funded primary,345,154,191,44.60%,55.40%,10,2.90%,36,10.40%,76,269,0,22.00%,78.00%,0.00%,36,39,345,11.30% +141447,936,2355,State-funded primary,476,228,248,47.90%,52.10%,8,1.70%,30,6.30%,81,395,0,17.00%,83.00%,0.00%,15,17,440,3.90% +141448,860,7026,State-funded special school,119,50,69,42.00%,58.00%,119,100.00%,0,0.00%,5,114,0,4.20%,95.80%,0.00%,49,50,107,46.70% +141449,860,7027,State-funded special school,98,32,66,32.70%,67.30%,98,100.00%,0,0.00%,11,87,0,11.20%,88.80%,0.00%,33,36,98,36.70% +141450,860,2373,State-funded primary,281,155,126,55.20%,44.80%,1,0.40%,32,11.40%,21,260,0,7.50%,92.50%,0.00%,90,94,281,33.50% +141451,893,4412,State-funded secondary,543,261,282,48.10%,51.90%,27,5.00%,62,11.40%,6,536,1,1.10%,98.70%,0.20%,91,100,543,18.40% +141452,857,3428,State-funded primary,126,56,70,44.40%,55.60%,4,3.20%,11,8.70%,2,124,0,1.60%,98.40%,0.00%,8,8,126,6.30% +141453,857,3113,State-funded primary,184,77,107,41.80%,58.20%,2,1.10%,20,10.90%,1,183,0,0.50%,99.50%,0.00%,16,16,184,8.70% +141454,857,3117,State-funded primary,158,79,79,50.00%,50.00%,2,1.30%,14,8.90%,4,154,0,2.50%,97.50%,0.00%,13,17,158,10.80% +141455,372,3332,State-funded primary,249,115,134,46.20%,53.80%,3,1.20%,21,8.40%,6,243,0,2.40%,97.60%,0.00%,17,17,216,7.90% +141456,807,3309,State-funded primary,218,117,101,53.70%,46.30%,4,1.80%,14,6.40%,2,216,0,0.90%,99.10%,0.00%,14,15,198,7.60% +141457,807,3308,State-funded primary,177,95,82,53.70%,46.30%,4,2.30%,11,6.20%,3,174,0,1.70%,98.30%,0.00%,27,29,138,21.00% +141458,807,3307,State-funded primary,189,93,96,49.20%,50.80%,2,1.10%,14,7.40%,3,186,0,1.60%,98.40%,0.00%,19,18,158,11.40% +141459,931,3224,State-funded primary,120,54,66,45.00%,55.00%,2,1.70%,25,20.80%,4,116,0,3.30%,96.70%,0.00%,21,18,99,18.20% +141460,891,3769,State-funded primary,483,237,246,49.10%,50.90%,2,0.40%,24,5.00%,250,233,0,51.80%,48.20%,0.00%,70,73,431,16.90% +141461,940,3042,State-funded primary,95,44,51,46.30%,53.70%,1,1.10%,15,15.80%,8,87,0,8.40%,91.60%,0.00%,13,13,95,13.70% +141462,940,3316,State-funded primary,87,48,39,55.20%,44.80%,2,2.30%,4,4.60%,2,85,0,2.30%,97.70%,0.00%,13,14,87,16.10% +141463,815,2426,State-funded primary,246,125,121,50.80%,49.20%,6,2.40%,12,4.90%,3,243,0,1.20%,98.80%,0.00%,32,35,231,15.20% +141464,926,3078,State-funded primary,93,36,57,38.70%,61.30%,0,0.00%,8,8.60%,7,86,0,7.50%,92.50%,0.00%,20,21,93,22.60% +141465,926,2187,State-funded primary,199,98,101,49.20%,50.80%,4,2.00%,31,15.60%,5,194,0,2.50%,97.50%,0.00%,29,30,199,15.10% +141466,887,5457,State-funded secondary,1508,22,1486,1.50%,98.50%,12,0.80%,199,13.20%,179,1329,0,11.90%,88.10%,0.00%,212,226,1261,17.90% +141467,887,2646,State-funded primary,450,223,227,49.60%,50.40%,4,0.90%,72,16.00%,110,339,1,24.40%,75.30%,0.20%,146,149,419,35.60% +141468,855,3041,State-funded primary,80,46,34,57.50%,42.50%,0,0.00%,9,11.30%,3,77,0,3.80%,96.30%,0.00%,11,13,80,16.30% +141469,855,2073,State-funded primary,157,79,78,50.30%,49.70%,6,3.80%,30,19.10%,34,123,0,21.70%,78.30%,0.00%,98,99,157,63.10% +141470,382,4800,State-funded secondary,1053,509,544,48.30%,51.70%,21,2.00%,133,12.60%,154,898,1,14.60%,85.30%,0.10%,390,388,962,40.30% +141471,886,3714,State-funded primary,212,105,107,49.50%,50.50%,5,2.40%,14,6.60%,44,168,0,20.80%,79.20%,0.00%,25,26,212,12.30% +141472,886,3745,State-funded primary,207,112,95,54.10%,45.90%,2,1.00%,25,12.10%,17,190,0,8.20%,91.80%,0.00%,18,18,207,8.70% +141473,850,2077,State-funded primary,54,23,31,42.60%,57.40%,7,13.00%,4,7.40%,6,48,0,11.10%,88.90%,0.00%,12,12,54,22.20% +141474,850,5205,State-funded primary,433,220,213,50.80%,49.20%,21,4.80%,57,13.20%,9,424,0,2.10%,97.90%,0.00%,159,166,433,38.30% +141475,845,7025,State-funded special school,158,49,109,31.00%,69.00%,158,100.00%,0,0.00%,4,154,0,2.50%,97.50%,0.00%,84,89,158,56.30% +141476,845,7024,State-funded special school,96,17,79,17.70%,82.30%,96,100.00%,0,0.00%,7,89,0,7.30%,92.70%,0.00%,47,49,96,51.00% +141477,332,3355,State-funded primary,207,109,98,52.70%,47.30%,4,1.90%,20,9.70%,1,206,0,0.50%,99.50%,0.00%,18,18,207,8.70% +141478,830,3516,State-funded primary,238,126,112,52.90%,47.10%,1,0.40%,34,14.30%,58,169,11,24.40%,71.00%,4.60%,43,45,212,21.20% +141479,381,3328,State-funded primary,195,83,112,42.60%,57.40%,2,1.00%,20,10.30%,2,193,0,1.00%,99.00%,0.00%,85,86,195,44.10% +141480,381,3306,State-funded primary,157,77,80,49.00%,51.00%,8,5.10%,34,21.70%,29,128,0,18.50%,81.50%,0.00%,92,94,145,64.80% +141481,305,3501,State-funded primary,211,119,92,56.40%,43.60%,8,3.80%,22,10.40%,49,162,0,23.20%,76.80%,0.00%,17,18,211,8.50% +141482,305,3503,State-funded primary,204,106,98,52.00%,48.00%,7,3.40%,17,8.30%,43,161,0,21.10%,78.90%,0.00%,33,34,204,16.70% +141483,889,3374,State-funded primary,207,99,108,47.80%,52.20%,0,0.00%,15,7.20%,0,207,0,0.00%,100.00%,0.00%,18,21,207,10.10% +141484,330,3374,State-funded primary,211,110,101,52.10%,47.90%,2,0.90%,21,10.00%,39,172,0,18.50%,81.50%,0.00%,36,40,211,19.00% +141485,813,1105,State-funded AP school,7,2,5,28.60%,71.40%,6,85.70%,1,14.30%,0,7,0,0.00%,100.00%,0.00%,2,2,7,28.60% +141486,860,3092,State-funded primary,324,162,162,50.00%,50.00%,8,2.50%,67,20.70%,50,273,1,15.40%,84.30%,0.30%,104,106,299,35.50% +141487,884,7008,State-funded special school,94,4,90,4.30%,95.70%,92,97.90%,2,2.10%,1,93,0,1.10%,98.90%,0.00%,62,71,94,75.50% +141488,372,2105,State-funded primary,248,116,132,46.80%,53.20%,10,4.00%,12,4.80%,19,229,0,7.70%,92.30%,0.00%,40,41,231,17.70% +141489,332,3303,State-funded primary,200,92,108,46.00%,54.00%,6,3.00%,48,24.00%,36,163,1,18.00%,81.50%,0.50%,52,52,200,26.00% +141491,860,4011,State-funded secondary,386,201,185,52.10%,47.90%,4,1.00%,28,7.30%,21,365,0,5.40%,94.60%,0.00%,36,0,0,0.00% +141493,860,2421,State-funded primary,401,197,204,49.10%,50.90%,14,3.50%,36,9.00%,5,396,0,1.20%,98.80%,0.00%,86,88,401,21.90% +141494,852,2452,State-funded primary,647,310,337,47.90%,52.10%,23,3.60%,46,7.10%,294,348,5,45.40%,53.80%,0.80%,225,227,647,35.10% +141495,373,4278,State-funded secondary,1010,456,554,45.10%,54.90%,27,2.70%,157,15.50%,148,862,0,14.70%,85.30%,0.00%,298,327,1010,32.40% +141496,926,2061,State-funded primary,123,46,77,37.40%,62.60%,2,1.60%,13,10.60%,6,117,0,4.90%,95.10%,0.00%,16,16,97,16.50% +141497,886,3740,State-funded primary,191,111,80,58.10%,41.90%,4,2.10%,25,13.10%,61,130,0,31.90%,68.10%,0.00%,59,64,191,33.50% +141499,909,4007,State-funded secondary,1187,590,597,49.70%,50.30%,46,3.90%,117,9.90%,20,1166,1,1.70%,98.20%,0.10%,354,349,1052,33.20% +141500,873,2034,State-funded primary,663,335,328,50.50%,49.50%,23,3.50%,58,8.70%,226,429,8,34.10%,64.70%,1.20%,53,59,622,9.50% +141502,895,6001,Independent school,59,16,43,27.10%,72.90%,59,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141511,881,2118,State-funded primary,212,106,106,50.00%,50.00%,5,2.40%,24,11.30%,28,184,0,13.20%,86.80%,0.00%,28,31,212,14.60% +141512,881,7000,State-funded special school,77,0,77,0.00%,100.00%,77,100.00%,0,0.00%,0,77,0,0.00%,100.00%,0.00%,50,60,77,77.90% +141513,803,2108,State-funded primary,473,224,249,47.40%,52.60%,29,6.10%,23,4.90%,60,409,4,12.70%,86.50%,0.80%,86,87,473,18.40% +141514,878,4013,State-funded secondary,898,420,478,46.80%,53.20%,26,2.90%,103,11.50%,86,788,24,9.60%,87.80%,2.70%,198,205,783,26.20% +141515,878,6064,Independent school,62,18,44,29.00%,71.00%,62,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141520,823,6000,Independent school,188,86,102,45.70%,54.30%,3,1.60%,6,3.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141521,383,3315,State-funded primary,235,110,125,46.80%,53.20%,2,0.90%,27,11.50%,44,191,0,18.70%,81.30%,0.00%,18,18,206,8.70% +141522,384,2172,State-funded primary,245,140,105,57.10%,42.90%,4,1.60%,30,12.20%,11,234,0,4.50%,95.50%,0.00%,47,47,179,26.30% +141523,878,2000,State-funded primary,290,137,153,47.20%,52.80%,5,1.70%,27,9.30%,11,279,0,3.80%,96.20%,0.00%,100,92,248,37.10% +141524,838,3338,State-funded primary,59,27,32,45.80%,54.20%,2,3.40%,11,18.60%,0,59,0,0.00%,100.00%,0.00%,6,6,59,10.20% +141525,878,3320,State-funded primary,190,93,97,48.90%,51.10%,3,1.60%,3,1.60%,0,190,0,0.00%,100.00%,0.00%,24,24,190,12.60% +141526,838,4504,State-funded secondary,1598,828,770,51.80%,48.20%,33,2.10%,217,13.60%,27,1567,4,1.70%,98.10%,0.30%,181,151,1166,13.00% +141527,878,3306,State-funded primary,102,49,53,48.00%,52.00%,1,1.00%,12,11.80%,0,102,0,0.00%,100.00%,0.00%,14,14,102,13.70% +141528,908,2623,State-funded primary,76,41,35,53.90%,46.10%,0,0.00%,16,21.10%,2,74,0,2.60%,97.40%,0.00%,28,28,76,36.80% +141529,305,3301,State-funded primary,216,114,102,52.80%,47.20%,3,1.40%,25,11.60%,7,209,0,3.20%,96.80%,0.00%,8,8,216,3.70% +141530,851,2707,State-funded primary,540,261,279,48.30%,51.70%,18,3.30%,66,12.20%,121,419,0,22.40%,77.60%,0.00%,211,218,540,40.40% +141531,851,2720,State-funded primary,443,238,205,53.70%,46.30%,9,2.00%,50,11.30%,103,340,0,23.30%,76.70%,0.00%,232,243,443,54.90% +141532,886,5217,State-funded primary,212,117,95,55.20%,44.80%,3,1.40%,30,14.20%,7,205,0,3.30%,96.70%,0.00%,9,9,212,4.20% +141533,936,7042,State-funded special school,149,39,110,26.20%,73.80%,147,98.70%,2,1.30%,34,115,0,22.80%,77.20%,0.00%,43,37,123,30.10% +141534,886,2069,State-funded primary,673,340,333,50.50%,49.50%,6,0.90%,79,11.70%,261,411,1,38.80%,61.10%,0.10%,115,115,629,18.30% +141535,305,5202,State-funded primary,406,209,197,51.50%,48.50%,6,1.50%,43,10.60%,71,335,0,17.50%,82.50%,0.00%,31,31,406,7.60% +141536,891,3552,State-funded primary,192,102,90,53.10%,46.90%,0,0.00%,16,8.30%,15,177,0,7.80%,92.20%,0.00%,50,51,192,26.60% +141537,372,2124,State-funded primary,212,127,85,59.90%,40.10%,2,0.90%,18,8.50%,2,210,0,0.90%,99.10%,0.00%,10,12,212,5.70% +141538,876,2001,State-funded primary,150,72,78,48.00%,52.00%,4,2.70%,21,14.00%,30,120,0,20.00%,80.00%,0.00%,66,66,141,46.80% +141539,372,2058,State-funded primary,372,170,202,45.70%,54.30%,5,1.30%,36,9.70%,19,353,0,5.10%,94.90%,0.00%,19,20,335,6.00% +141540,830,2363,State-funded primary,409,181,228,44.30%,55.70%,2,0.50%,48,11.70%,20,389,0,4.90%,95.10%,0.00%,64,67,409,16.40% +141541,891,2933,State-funded primary,558,272,286,48.70%,51.30%,7,1.30%,59,10.60%,106,452,0,19.00%,81.00%,0.00%,210,202,503,40.20% +141542,830,2331,State-funded primary,277,136,141,49.10%,50.90%,4,1.40%,48,17.30%,11,266,0,4.00%,96.00%,0.00%,78,57,213,26.80% +141543,830,2340,State-funded primary,330,155,175,47.00%,53.00%,6,1.80%,59,17.90%,8,322,0,2.40%,97.60%,0.00%,100,105,330,31.80% +141544,830,2217,State-funded primary,97,47,50,48.50%,51.50%,0,0.00%,20,20.60%,3,94,0,3.10%,96.90%,0.00%,19,20,97,20.60% +141545,891,3310,State-funded primary,203,104,99,51.20%,48.80%,2,1.00%,11,5.40%,7,196,0,3.40%,96.60%,0.00%,39,40,203,19.70% +141546,935,2040,State-funded primary,447,219,228,49.00%,51.00%,21,4.70%,49,11.00%,61,385,1,13.60%,86.10%,0.20%,98,99,416,23.80% +141547,916,5217,State-funded primary,323,156,167,48.30%,51.70%,8,2.50%,50,15.50%,3,318,2,0.90%,98.50%,0.60%,35,35,307,11.40% +141548,886,2055,State-funded primary,397,196,201,49.40%,50.60%,8,2.00%,49,12.30%,77,320,0,19.40%,80.60%,0.00%,133,144,397,36.30% +141549,311,2020,State-funded primary,366,170,196,46.40%,53.60%,8,2.20%,60,16.40%,173,192,1,47.30%,52.50%,0.30%,108,111,366,30.30% +141550,935,2073,State-funded primary,78,43,35,55.10%,44.90%,1,1.30%,9,11.50%,0,78,0,0.00%,100.00%,0.00%,14,15,78,19.20% +141551,935,2123,State-funded primary,173,84,89,48.60%,51.40%,4,2.30%,24,13.90%,1,172,0,0.60%,99.40%,0.00%,47,47,155,30.30% +141552,873,3083,State-funded primary,470,215,255,45.70%,54.30%,18,3.80%,105,22.30%,62,401,7,13.20%,85.30%,1.50%,67,68,415,16.40% +141553,887,2194,State-funded primary,248,121,127,48.80%,51.20%,0,0.00%,34,13.70%,11,219,18,4.40%,88.30%,7.30%,66,71,222,32.00% +141554,935,2091,State-funded primary,378,177,201,46.80%,53.20%,7,1.90%,39,10.30%,23,355,0,6.10%,93.90%,0.00%,120,115,329,35.00% +141555,816,6012,Independent school,122,62,60,50.80%,49.20%,0,0.00%,40,32.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141556,925,2036,State-funded primary,211,110,101,52.10%,47.90%,4,1.90%,9,4.30%,15,196,0,7.10%,92.90%,0.00%,19,19,211,9.00% +141559,895,7001,State-funded special school,71,17,54,23.90%,76.10%,71,100.00%,0,0.00%,0,71,0,0.00%,100.00%,0.00%,19,18,66,27.30% +141560,332,6010,Independent school,85,24,61,28.20%,71.80%,14,16.50%,14,16.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141561,312,2045,State-funded primary,422,200,222,47.40%,52.60%,5,1.20%,26,6.20%,326,96,0,77.30%,22.70%,0.00%,76,83,378,22.00% +141563,370,7010,State-funded special school,108,5,103,4.60%,95.40%,108,100.00%,0,0.00%,1,107,0,0.90%,99.10%,0.00%,70,84,108,77.80% +141564,370,1101,State-funded AP school,56,19,37,33.90%,66.10%,6,10.70%,32,57.10%,2,53,1,3.60%,94.60%,1.80%,38,41,56,73.20% +141565,889,4800,State-funded secondary,885,885,0,100.00%,0.00%,14,1.60%,99,11.20%,607,278,0,68.60%,31.40%,0.00%,130,80,625,12.80% +141566,305,3500,State-funded primary,198,102,96,51.50%,48.50%,5,2.50%,19,9.60%,51,147,0,25.80%,74.20%,0.00%,9,9,198,4.50% +141567,305,3300,State-funded primary,400,194,206,48.50%,51.50%,6,1.50%,35,8.80%,147,253,0,36.80%,63.30%,0.00%,58,58,400,14.50% +141568,895,3812,State-funded primary,412,203,209,49.30%,50.70%,14,3.40%,45,10.90%,4,408,0,1.00%,99.00%,0.00%,34,36,412,8.70% +141569,830,3503,State-funded primary,197,106,91,53.80%,46.20%,4,2.00%,23,11.70%,2,184,11,1.00%,93.40%,5.60%,23,23,197,11.70% +141570,332,5401,State-funded secondary,1037,493,544,47.50%,52.50%,14,1.40%,131,12.60%,29,1008,0,2.80%,97.20%,0.00%,232,248,1037,23.90% +141571,881,3834,State-funded primary,640,328,312,51.30%,48.80%,10,1.60%,68,10.60%,9,631,0,1.40%,98.60%,0.00%,204,218,558,39.10% +141572,881,2687,State-funded primary,259,142,117,54.80%,45.20%,5,1.90%,24,9.30%,40,219,0,15.40%,84.60%,0.00%,29,30,259,11.60% +141574,881,2717,State-funded primary,181,89,92,49.20%,50.80%,3,1.70%,13,7.20%,27,154,0,14.90%,85.10%,0.00%,19,19,181,10.50% +141575,916,3326,State-funded primary,385,182,203,47.30%,52.70%,8,2.10%,45,11.70%,23,362,0,6.00%,94.00%,0.00%,70,73,385,19.00% +141576,204,2444,State-funded primary,345,198,147,57.40%,42.60%,7,2.00%,52,15.10%,235,109,1,68.10%,31.60%,0.30%,143,135,303,44.60% +141577,311,2085,State-funded primary,408,198,210,48.50%,51.50%,12,2.90%,48,11.80%,145,263,0,35.50%,64.50%,0.00%,141,141,368,38.30% +141578,886,3019,State-funded primary,209,95,114,45.50%,54.50%,8,3.80%,12,5.70%,7,202,0,3.30%,96.70%,0.00%,10,10,209,4.80% +141579,886,5210,State-funded primary,422,225,197,53.30%,46.70%,8,1.90%,51,12.10%,122,299,1,28.90%,70.90%,0.20%,108,110,422,26.10% +141580,886,5222,State-funded primary,208,102,106,49.00%,51.00%,5,2.40%,31,14.90%,47,161,0,22.60%,77.40%,0.00%,32,37,208,17.80% +141581,925,4050,State-funded secondary,608,291,317,47.90%,52.10%,45,7.40%,35,5.80%,12,596,0,2.00%,98.00%,0.00%,161,178,608,29.30% +141582,341,3011,State-funded primary,338,175,163,51.80%,48.20%,10,3.00%,66,19.50%,259,79,0,76.60%,23.40%,0.00%,139,173,287,60.30% +141583,926,2204,State-funded primary,195,92,103,47.20%,52.80%,2,1.00%,68,34.90%,95,100,0,48.70%,51.30%,0.00%,69,72,195,36.90% +141584,926,3056,State-funded primary,207,106,101,51.20%,48.80%,4,1.90%,15,7.20%,9,198,0,4.30%,95.70%,0.00%,17,20,181,11.00% +141585,812,1105,State-funded AP school,21,7,14,33.30%,66.70%,0,0.00%,21,100.00%,0,21,0,0.00%,100.00%,0.00%,16,18,21,85.70% +141586,892,2088,State-funded primary,209,103,106,49.30%,50.70%,3,1.40%,25,12.00%,110,99,0,52.60%,47.40%,0.00%,97,101,209,48.30% +141587,372,3334,State-funded primary,191,100,91,52.40%,47.60%,5,2.60%,44,23.00%,10,181,0,5.20%,94.80%,0.00%,75,83,169,49.10% +141588,372,3328,State-funded primary,223,98,125,43.90%,56.10%,2,0.90%,40,17.90%,3,220,0,1.30%,98.70%,0.00%,72,66,187,35.30% +141589,372,2132,State-funded primary,394,191,203,48.50%,51.50%,8,2.00%,90,22.80%,28,366,0,7.10%,92.90%,0.00%,76,82,364,22.50% +141590,372,3333,State-funded primary,206,109,97,52.90%,47.10%,3,1.50%,28,13.60%,4,202,0,1.90%,98.10%,0.00%,19,21,206,10.20% +141591,935,2159,State-funded primary,416,200,216,48.10%,51.90%,10,2.40%,61,14.70%,103,313,0,24.80%,75.20%,0.00%,60,62,387,16.00% +141592,936,2436,State-funded primary,620,299,321,48.20%,51.80%,17,2.70%,72,11.60%,10,610,0,1.60%,98.40%,0.00%,44,52,620,8.40% +141593,936,5215,State-funded primary,450,224,226,49.80%,50.20%,16,3.60%,46,10.20%,39,411,0,8.70%,91.30%,0.00%,55,54,417,12.90% +141594,384,3336,State-funded primary,202,95,107,47.00%,53.00%,7,3.50%,35,17.30%,24,178,0,11.90%,88.10%,0.00%,65,68,202,33.70% +141595,384,3311,State-funded primary,207,115,92,55.60%,44.40%,6,2.90%,30,14.50%,59,148,0,28.50%,71.50%,0.00%,47,49,189,25.90% +141598,877,4229,State-funded secondary,1609,778,831,48.40%,51.60%,49,3.00%,165,10.30%,144,1463,2,8.90%,90.90%,0.10%,173,190,1609,11.80% +141600,938,2008,State-funded primary,358,176,182,49.20%,50.80%,5,1.40%,44,12.30%,14,344,0,3.90%,96.10%,0.00%,45,49,358,13.70% +141601,868,3033,State-funded primary,324,161,163,49.70%,50.30%,18,5.60%,44,13.60%,117,206,1,36.10%,63.60%,0.30%,56,57,292,19.50% +141602,868,3027,State-funded primary,49,26,23,53.10%,46.90%,1,2.00%,0,0.00%,1,48,0,2.00%,98.00%,0.00%,0,0,49,0.00% +141603,380,6011,Independent school,12,4,8,33.30%,66.70%,1,8.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141605,206,7001,State-funded special school,28,6,22,21.40%,78.60%,28,100.00%,0,0.00%,11,17,0,39.30%,60.70%,0.00%,15,13,15,86.70% +141606,312,7001,State-funded special school,161,49,112,30.40%,69.60%,161,100.00%,0,0.00%,76,85,0,47.20%,52.80%,0.00%,76,64,130,49.20% +141608,381,6015,Independent school,16,5,11,31.30%,68.80%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141610,330,2451,State-funded primary,394,174,220,44.20%,55.80%,2,0.50%,65,16.50%,48,346,0,12.20%,87.80%,0.00%,133,137,394,34.80% +141611,890,3619,State-funded primary,523,251,272,48.00%,52.00%,20,3.80%,102,19.50%,13,508,2,2.50%,97.10%,0.40%,189,189,469,40.30% +141613,305,2066,State-funded primary,452,216,236,47.80%,52.20%,28,6.20%,129,28.50%,72,377,3,15.90%,83.40%,0.70%,101,106,419,25.30% +141614,896,2357,State-funded primary,220,98,122,44.50%,55.50%,2,0.90%,13,5.90%,28,192,0,12.70%,87.30%,0.00%,5,5,220,2.30% +141616,908,2041,State-funded primary,311,161,150,51.80%,48.20%,4,1.30%,36,11.60%,26,285,0,8.40%,91.60%,0.00%,76,79,311,25.40% +141617,205,4002,State-funded secondary,697,295,402,42.30%,57.70%,24,3.40%,59,8.50%,311,372,14,44.60%,53.40%,2.00%,242,289,697,41.50% +141618,803,2012,State-funded primary,374,182,192,48.70%,51.30%,7,1.90%,37,9.90%,169,205,0,45.20%,54.80%,0.00%,39,40,374,10.70% +141619,865,2021,State-funded primary,291,123,168,42.30%,57.70%,36,12.40%,37,12.70%,33,258,0,11.30%,88.70%,0.00%,64,61,234,26.10% +141621,896,2292,State-funded primary,240,117,123,48.80%,51.30%,5,2.10%,37,15.40%,23,217,0,9.60%,90.40%,0.00%,11,11,207,5.30% +141622,908,3871,State-funded primary,84,41,43,48.80%,51.20%,0,0.00%,6,7.10%,0,81,3,0.00%,96.40%,3.60%,6,7,73,9.60% +141623,909,2612,State-funded primary,404,213,191,52.70%,47.30%,7,1.70%,19,4.70%,43,361,0,10.60%,89.40%,0.00%,37,37,404,9.20% +141624,878,2427,State-funded primary,13,3,10,23.10%,76.90%,2,15.40%,1,7.70%,0,12,1,0.00%,92.30%,7.70%,1,2,13,15.40% +141625,881,2136,State-funded primary,251,131,120,52.20%,47.80%,12,4.80%,15,6.00%,7,244,0,2.80%,97.20%,0.00%,34,33,208,15.90% +141626,881,3835,State-funded primary,443,226,217,51.00%,49.00%,8,1.80%,60,13.50%,12,431,0,2.70%,97.30%,0.00%,50,63,443,14.20% +141627,805,2215,State-funded primary,470,225,245,47.90%,52.10%,5,1.10%,109,23.20%,19,451,0,4.00%,96.00%,0.00%,284,279,381,73.20% +141628,886,4633,State-funded secondary,978,505,473,51.60%,48.40%,15,1.50%,76,7.80%,116,860,2,11.90%,87.90%,0.20%,243,249,827,30.10% +141629,886,5216,State-funded primary,211,105,106,49.80%,50.20%,6,2.80%,32,15.20%,21,190,0,10.00%,90.00%,0.00%,40,41,211,19.40% +141630,855,3213,State-funded primary,334,163,171,48.80%,51.20%,1,0.30%,96,28.70%,16,312,6,4.80%,93.40%,1.80%,50,52,334,15.60% +141631,812,2896,State-funded primary,311,153,158,49.20%,50.80%,14,4.50%,27,8.70%,19,292,0,6.10%,93.90%,0.00%,36,41,300,13.70% +141632,940,2222,State-funded primary,412,198,214,48.10%,51.90%,5,1.20%,36,8.70%,66,335,11,16.00%,81.30%,2.70%,31,34,412,8.30% +141633,940,3509,State-funded primary,376,198,178,52.70%,47.30%,4,1.10%,39,10.40%,156,212,8,41.50%,56.40%,2.10%,84,85,376,22.60% +141634,940,3408,State-funded primary,191,99,92,51.80%,48.20%,2,1.00%,28,14.70%,70,121,0,36.60%,63.40%,0.00%,31,31,191,16.20% +141635,940,3502,State-funded primary,216,111,105,51.40%,48.60%,7,3.20%,14,6.50%,65,150,1,30.10%,69.40%,0.50%,12,12,216,5.60% +141636,893,2036,State-funded primary,266,107,159,40.20%,59.80%,8,3.00%,25,9.40%,6,259,1,2.30%,97.40%,0.40%,59,58,242,24.00% +141637,893,2035,State-funded primary,164,82,82,50.00%,50.00%,1,0.60%,9,5.50%,3,161,0,1.80%,98.20%,0.00%,28,26,130,20.00% +141638,803,2170,State-funded primary,284,139,145,48.90%,51.10%,29,10.20%,51,18.00%,64,220,0,22.50%,77.50%,0.00%,40,42,251,16.70% +141639,935,4019,State-funded secondary,1576,784,792,49.70%,50.30%,28,1.80%,208,13.20%,55,1521,0,3.50%,96.50%,0.00%,265,278,1390,20.00% +141640,935,2145,State-funded primary,363,185,178,51.00%,49.00%,10,2.80%,41,11.30%,5,358,0,1.40%,98.60%,0.00%,58,59,335,17.60% +141641,359,3360,State-funded primary,273,135,138,49.50%,50.50%,4,1.50%,39,14.30%,6,267,0,2.20%,97.80%,0.00%,47,49,273,17.90% +141642,359,2032,State-funded primary,419,198,221,47.30%,52.70%,7,1.70%,58,13.80%,22,397,0,5.30%,94.70%,0.00%,87,80,385,20.80% +141643,359,3366,State-funded primary,290,156,134,53.80%,46.20%,5,1.70%,37,12.80%,9,281,0,3.10%,96.90%,0.00%,67,68,290,23.40% +141644,359,3364,State-funded primary,183,89,94,48.60%,51.40%,4,2.20%,34,18.60%,7,176,0,3.80%,96.20%,0.00%,39,40,183,21.90% +141645,865,3176,State-funded primary,354,174,180,49.20%,50.80%,10,2.80%,48,13.60%,33,320,1,9.30%,90.40%,0.30%,51,54,354,15.30% +141646,865,2157,State-funded primary,240,110,130,45.80%,54.20%,9,3.80%,9,3.80%,30,207,3,12.50%,86.30%,1.30%,32,33,240,13.80% +141647,865,7008,State-funded special school,164,44,120,26.80%,73.20%,164,100.00%,0,0.00%,10,153,1,6.10%,93.30%,0.60%,50,49,152,32.20% +141648,336,3317,State-funded primary,586,288,298,49.10%,50.90%,11,1.90%,64,10.90%,51,535,0,8.70%,91.30%,0.00%,243,259,586,44.20% +141649,810,3510,State-funded primary,295,149,146,50.50%,49.50%,7,2.40%,60,20.30%,57,238,0,19.30%,80.70%,0.00%,132,134,263,51.00% +141650,886,2180,State-funded primary,509,269,240,52.80%,47.20%,7,1.40%,85,16.70%,202,306,1,39.70%,60.10%,0.20%,118,121,476,25.40% +141651,301,2003,State-funded primary,339,170,169,50.10%,49.90%,7,2.10%,70,20.60%,238,101,0,70.20%,29.80%,0.00%,131,156,339,46.00% +141652,801,4007,State-funded secondary,1323,633,690,47.80%,52.20%,66,5.00%,165,12.50%,149,1174,0,11.30%,88.70%,0.00%,391,413,1323,31.20% +141653,895,2003,State-funded primary,97,49,48,50.50%,49.50%,2,2.10%,8,8.20%,0,97,0,0.00%,100.00%,0.00%,6,6,97,6.20% +141655,845,2016,State-funded primary,220,108,112,49.10%,50.90%,3,1.40%,36,16.40%,10,209,1,4.50%,95.00%,0.50%,64,65,220,29.50% +141656,881,2119,State-funded primary,103,43,60,41.70%,58.30%,4,3.90%,3,2.90%,2,101,0,1.90%,98.10%,0.00%,20,19,89,21.30% +141657,881,2121,State-funded primary,197,87,110,44.20%,55.80%,3,1.50%,25,12.70%,42,150,5,21.30%,76.10%,2.50%,61,63,197,32.00% +141658,881,2123,State-funded primary,76,37,39,48.70%,51.30%,2,2.60%,12,15.80%,2,70,4,2.60%,92.10%,5.30%,19,21,63,33.30% +141659,886,2058,State-funded primary,199,111,88,55.80%,44.20%,7,3.50%,25,12.60%,32,167,0,16.10%,83.90%,0.00%,71,71,199,35.70% +141660,886,2059,State-funded primary,274,124,150,45.30%,54.70%,2,0.70%,44,16.10%,1,273,0,0.40%,99.60%,0.00%,133,130,250,52.00% +141661,926,2094,State-funded primary,267,129,138,48.30%,51.70%,5,1.90%,47,17.60%,39,217,11,14.60%,81.30%,4.10%,113,116,246,47.20% +141662,926,2095,State-funded primary,48,31,17,64.60%,35.40%,3,6.30%,16,33.30%,1,47,0,2.10%,97.90%,0.00%,13,13,42,31.00% +141663,926,2097,State-funded primary,223,104,119,46.60%,53.40%,7,3.10%,29,13.00%,16,207,0,7.20%,92.80%,0.00%,70,71,223,31.80% +141665,803,4005,State-funded secondary,1192,536,656,45.00%,55.00%,19,1.60%,168,14.10%,17,1173,2,1.40%,98.40%,0.20%,174,178,1053,16.90% +141666,210,2005,State-funded primary,411,210,201,51.10%,48.90%,11,2.70%,26,6.30%,162,249,0,39.40%,60.60%,0.00%,202,210,402,52.20% +141667,936,2033,State-funded primary,473,241,232,51.00%,49.00%,9,1.90%,122,25.80%,115,358,0,24.30%,75.70%,0.00%,87,83,427,19.40% +141668,330,4018,State-funded secondary,1305,573,732,43.90%,56.10%,37,2.80%,145,11.10%,877,395,33,67.20%,30.30%,2.50%,520,627,1305,48.00% +141669,330,2154,State-funded primary,200,85,115,42.50%,57.50%,2,1.00%,24,12.00%,42,157,1,21.00%,78.50%,0.50%,83,109,200,54.50% +141670,330,2158,State-funded primary,208,111,97,53.40%,46.60%,3,1.40%,26,12.50%,28,180,0,13.50%,86.50%,0.00%,34,36,208,17.30% +141671,839,2003,State-funded primary,631,316,315,50.10%,49.90%,15,2.40%,51,8.10%,262,368,1,41.50%,58.30%,0.20%,196,205,631,32.50% +141672,304,2029,State-funded primary,432,210,222,48.60%,51.40%,9,2.10%,31,7.20%,381,51,0,88.20%,11.80%,0.00%,140,145,391,37.10% +141673,351,2003,State-funded primary,338,157,181,46.40%,53.60%,7,2.10%,19,5.60%,78,260,0,23.10%,76.90%,0.00%,180,182,307,59.30% +141674,830,2014,State-funded primary,92,48,44,52.20%,47.80%,1,1.10%,16,17.40%,2,85,5,2.20%,92.40%,5.40%,30,30,92,32.60% +141680,352,6010,Independent school,22,7,15,31.80%,68.20%,0,0.00%,22,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141681,881,2124,State-funded primary,217,108,109,49.80%,50.20%,6,2.80%,22,10.10%,16,201,0,7.40%,92.60%,0.00%,47,48,217,22.10% +141683,301,4028,State-funded secondary,2557,1267,1290,49.60%,50.40%,50,2.00%,286,11.20%,863,1565,129,33.80%,61.20%,5.00%,631,692,2380,29.10% +141684,371,2004,State-funded primary,340,189,151,55.60%,44.40%,8,2.40%,40,11.80%,13,327,0,3.80%,96.20%,0.00%,65,68,340,20.00% +141685,205,2005,State-funded primary,289,137,152,47.40%,52.60%,5,1.70%,43,14.90%,145,144,0,50.20%,49.80%,0.00%,89,89,254,35.00% +141686,805,4002,State-funded secondary,1029,517,512,50.20%,49.80%,31,3.00%,160,15.50%,27,1000,2,2.60%,97.20%,0.20%,506,530,1029,51.50% +141687,382,2018,State-funded primary,180,81,99,45.00%,55.00%,2,1.10%,37,20.60%,5,175,0,2.80%,97.20%,0.00%,37,38,180,21.10% +141688,382,2022,State-funded primary,284,138,146,48.60%,51.40%,5,1.80%,68,23.90%,88,196,0,31.00%,69.00%,0.00%,138,139,271,51.30% +141689,352,2037,State-funded primary,452,207,245,45.80%,54.20%,29,6.40%,77,17.00%,139,312,1,30.80%,69.00%,0.20%,260,254,421,60.30% +141690,873,2036,State-funded primary,208,93,115,44.70%,55.30%,11,5.30%,30,14.40%,26,180,2,12.50%,86.50%,1.00%,56,57,208,27.40% +141691,926,2098,State-funded primary,427,223,204,52.20%,47.80%,7,1.60%,76,17.80%,22,402,3,5.20%,94.10%,0.70%,220,223,400,55.80% +141693,343,4002,State-funded secondary,661,327,334,49.50%,50.50%,15,2.30%,152,23.00%,123,538,0,18.60%,81.40%,0.00%,344,357,661,54.00% +141694,343,4004,State-funded secondary,684,362,322,52.90%,47.10%,12,1.80%,119,17.40%,25,659,0,3.70%,96.30%,0.00%,297,310,684,45.30% +141695,933,2014,State-funded primary,141,80,61,56.70%,43.30%,5,3.50%,10,7.10%,0,141,0,0.00%,100.00%,0.00%,37,37,126,29.40% +141696,916,2022,State-funded primary,308,140,168,45.50%,54.50%,6,1.90%,26,8.40%,24,283,1,7.80%,91.90%,0.30%,45,46,267,17.20% +141698,333,4003,State-funded secondary,1307,635,672,48.60%,51.40%,31,2.40%,91,7.00%,373,925,9,28.50%,70.80%,0.70%,345,398,1307,30.50% +141699,894,2000,State-funded primary,216,120,96,55.60%,44.40%,1,0.50%,16,7.40%,32,184,0,14.80%,85.20%,0.00%,22,22,216,10.20% +141701,210,6007,Independent school,19,19,0,100.00%,0.00%,18,94.70%,1,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141702,935,2052,State-funded primary,191,103,88,53.90%,46.10%,2,1.00%,27,14.10%,1,189,1,0.50%,99.00%,0.50%,42,42,191,22.00% +141704,370,7009,State-funded special school,330,97,233,29.40%,70.60%,330,100.00%,0,0.00%,30,300,0,9.10%,90.90%,0.00%,171,147,274,53.60% +141705,801,4101,State-funded secondary,1073,480,593,44.70%,55.30%,30,2.80%,284,26.50%,233,791,49,21.70%,73.70%,4.60%,307,332,1073,30.90% +141706,801,2324,State-funded primary,448,208,240,46.40%,53.60%,9,2.00%,88,19.60%,34,414,0,7.60%,92.40%,0.00%,221,222,344,64.50% +141707,873,3362,State-funded primary,286,129,157,45.10%,54.90%,12,4.20%,38,13.30%,69,214,3,24.10%,74.80%,1.00%,79,83,286,29.00% +141709,908,2420,State-funded primary,135,63,72,46.70%,53.30%,0,0.00%,22,16.30%,6,124,5,4.40%,91.90%,3.70%,16,16,135,11.90% +141710,908,2009,State-funded primary,384,183,201,47.70%,52.30%,7,1.80%,42,10.90%,2,379,3,0.50%,98.70%,0.80%,62,66,384,17.20% +141711,909,3310,State-funded primary,99,50,49,50.50%,49.50%,0,0.00%,12,12.10%,2,97,0,2.00%,98.00%,0.00%,6,6,87,6.90% +141712,332,4121,State-funded secondary,591,311,280,52.60%,47.40%,16,2.70%,76,12.90%,9,581,1,1.50%,98.30%,0.20%,140,148,591,25.00% +141713,845,2127,State-funded primary,630,313,317,49.70%,50.30%,9,1.40%,49,7.80%,24,606,0,3.80%,96.20%,0.00%,163,167,630,26.50% +141714,881,2520,State-funded primary,207,104,103,50.20%,49.80%,5,2.40%,35,16.90%,4,203,0,1.90%,98.10%,0.00%,17,18,207,8.70% +141715,881,2666,State-funded primary,82,38,44,46.30%,53.70%,1,1.20%,13,15.90%,3,79,0,3.70%,96.30%,0.00%,47,48,78,61.50% +141716,203,4716,State-funded secondary,636,295,341,46.40%,53.60%,22,3.50%,59,9.30%,129,506,1,20.30%,79.60%,0.20%,67,85,636,13.40% +141717,805,2237,State-funded primary,344,152,192,44.20%,55.80%,0,0.00%,25,7.30%,4,340,0,1.20%,98.80%,0.00%,17,21,305,6.90% +141718,312,2048,State-funded primary,437,227,210,51.90%,48.10%,5,1.10%,58,13.30%,153,283,1,35.00%,64.80%,0.20%,114,120,397,30.20% +141719,810,3302,State-funded primary,251,124,127,49.40%,50.60%,12,4.80%,39,15.50%,93,157,1,37.10%,62.50%,0.40%,44,48,251,19.10% +141720,810,2660,State-funded primary,387,195,192,50.40%,49.60%,14,3.60%,72,18.60%,36,351,0,9.30%,90.70%,0.00%,171,173,352,49.10% +141721,926,3014,State-funded primary,195,102,93,52.30%,47.70%,10,5.10%,36,18.50%,16,179,0,8.20%,91.80%,0.00%,35,37,195,19.00% +141722,815,3368,State-funded primary,277,138,139,49.80%,50.20%,9,3.20%,37,13.40%,10,267,0,3.60%,96.40%,0.00%,26,27,277,9.70% +141723,940,3053,State-funded primary,130,63,67,48.50%,51.50%,5,3.80%,17,13.10%,1,129,0,0.80%,99.20%,0.00%,27,27,130,20.80% +141724,941,3348,State-funded primary,448,209,239,46.70%,53.30%,10,2.20%,79,17.60%,272,176,0,60.70%,39.30%,0.00%,104,109,401,27.20% +141725,941,3045,State-funded primary,71,34,37,47.90%,52.10%,2,2.80%,10,14.10%,5,66,0,7.00%,93.00%,0.00%,5,5,71,7.00% +141726,941,7019,State-funded special school,94,35,59,37.20%,62.80%,94,100.00%,0,0.00%,16,78,0,17.00%,83.00%,0.00%,45,38,74,51.40% +141727,931,1106,State-funded AP school,8,1,7,12.50%,87.50%,1,12.50%,5,62.50%,0,8,0,0.00%,100.00%,0.00%,5,6,8,75.00% +141728,851,2690,State-funded primary,209,100,109,47.80%,52.20%,6,2.90%,9,4.30%,20,185,4,9.60%,88.50%,1.90%,50,50,209,23.90% +141729,372,2099,State-funded primary,428,221,207,51.60%,48.40%,5,1.20%,44,10.30%,9,419,0,2.10%,97.90%,0.00%,54,55,394,14.00% +141730,372,4022,State-funded secondary,990,489,501,49.40%,50.60%,21,2.10%,142,14.30%,24,964,2,2.40%,97.40%,0.20%,247,276,856,32.20% +141731,372,2066,State-funded primary,198,105,93,53.00%,47.00%,1,0.50%,25,12.60%,3,195,0,1.50%,98.50%,0.00%,22,22,174,12.60% +141732,860,2220,State-funded primary,97,52,45,53.60%,46.40%,0,0.00%,1,1.00%,0,97,0,0.00%,100.00%,0.00%,13,13,91,14.30% +141733,936,3337,State-funded primary,342,168,174,49.10%,50.90%,10,2.90%,47,13.70%,27,315,0,7.90%,92.10%,0.00%,12,12,342,3.50% +141734,320,2005,State-funded primary,686,334,352,48.70%,51.30%,11,1.60%,41,6.00%,270,415,1,39.40%,60.50%,0.10%,156,169,592,28.50% +141735,838,4002,State-funded secondary,854,444,410,52.00%,48.00%,38,4.40%,105,12.30%,14,840,0,1.60%,98.40%,0.00%,192,184,746,24.70% +141736,935,2053,State-funded primary,362,160,202,44.20%,55.80%,6,1.70%,48,13.30%,9,353,0,2.50%,97.50%,0.00%,124,124,323,38.40% +141739,330,1110,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +141740,933,2015,State-funded primary,69,31,38,44.90%,55.10%,2,2.90%,3,4.30%,0,69,0,0.00%,100.00%,0.00%,12,12,60,20.00% +141741,882,4000,State-funded secondary,1224,607,617,49.60%,50.40%,33,2.70%,126,10.30%,288,936,0,23.50%,76.50%,0.00%,467,479,1021,46.90% +141745,839,2006,State-funded primary,399,206,193,51.60%,48.40%,16,4.00%,54,13.50%,66,332,1,16.50%,83.20%,0.30%,142,144,379,38.00% +141747,937,2035,State-funded primary,237,129,108,54.40%,45.60%,10,4.20%,36,15.20%,58,179,0,24.50%,75.50%,0.00%,93,88,204,43.10% +141748,320,2038,State-funded primary,173,81,92,46.80%,53.20%,3,1.70%,20,11.60%,95,78,0,54.90%,45.10%,0.00%,75,77,173,44.50% +141749,878,4017,State-funded secondary,157,62,95,39.50%,60.50%,13,8.30%,88,56.10%,2,154,1,1.30%,98.10%,0.60%,43,44,104,42.30% +141750,204,2003,State-funded primary,222,108,114,48.60%,51.40%,8,3.60%,15,6.80%,54,167,1,24.30%,75.20%,0.50%,86,87,205,42.40% +141751,304,2035,State-funded primary,223,104,119,46.60%,53.40%,11,4.90%,23,10.30%,167,56,0,74.90%,25.10%,0.00%,117,118,223,52.90% +141752,330,4019,State-funded secondary,1584,767,817,48.40%,51.60%,8,0.50%,209,13.20%,1346,231,7,85.00%,14.60%,0.40%,635,679,1505,45.10% +141754,886,2625,State-funded primary,419,190,229,45.30%,54.70%,8,1.90%,39,9.30%,35,384,0,8.40%,91.60%,0.00%,57,57,419,13.60% +141755,839,2251,State-funded primary,266,126,140,47.40%,52.60%,4,1.50%,61,22.90%,16,250,0,6.00%,94.00%,0.00%,58,58,266,21.80% +141757,838,4029,State-funded secondary,555,261,294,47.00%,53.00%,16,2.90%,63,11.40%,14,541,0,2.50%,97.50%,0.00%,89,93,555,16.80% +141758,926,3393,State-funded primary,204,114,90,55.90%,44.10%,3,1.50%,25,12.30%,4,186,14,2.00%,91.20%,6.90%,29,31,204,15.20% +141759,357,2038,State-funded primary,451,203,248,45.00%,55.00%,12,2.70%,43,9.50%,366,85,0,81.20%,18.80%,0.00%,178,182,413,44.10% +141760,891,3292,State-funded primary,547,255,292,46.60%,53.40%,3,0.50%,75,13.70%,79,468,0,14.40%,85.60%,0.00%,286,263,468,56.20% +141761,878,2230,State-funded primary,36,14,22,38.90%,61.10%,1,2.80%,2,5.60%,0,36,0,0.00%,100.00%,0.00%,5,5,28,17.90% +141762,839,2178,State-funded primary,359,171,188,47.60%,52.40%,8,2.20%,55,15.30%,22,337,0,6.10%,93.90%,0.00%,61,61,359,17.00% +141763,839,2171,State-funded primary,474,215,259,45.40%,54.60%,10,2.10%,54,11.40%,35,439,0,7.40%,92.60%,0.00%,83,84,474,17.70% +141764,314,2000,State-funded primary,514,235,279,45.70%,54.30%,15,2.90%,90,17.50%,179,335,0,34.80%,65.20%,0.00%,101,98,424,23.10% +141765,881,7045,State-funded special school,223,59,164,26.50%,73.50%,223,100.00%,0,0.00%,5,218,0,2.20%,97.80%,0.00%,86,77,170,45.30% +141766,886,2596,State-funded primary,418,207,211,49.50%,50.50%,7,1.70%,27,6.50%,13,405,0,3.10%,96.90%,0.00%,79,80,418,19.10% +141767,800,2239,State-funded primary,153,75,78,49.00%,51.00%,3,2.00%,16,10.50%,5,148,0,3.30%,96.70%,0.00%,17,17,153,11.10% +141768,838,2011,State-funded primary,153,78,75,51.00%,49.00%,2,1.30%,5,3.30%,1,152,0,0.70%,99.30%,0.00%,23,24,153,15.70% +141769,336,3310,State-funded primary,198,106,92,53.50%,46.50%,5,2.50%,29,14.60%,25,173,0,12.60%,87.40%,0.00%,97,102,187,54.50% +141770,860,3436,State-funded primary,46,19,27,41.30%,58.70%,0,0.00%,3,6.50%,4,42,0,8.70%,91.30%,0.00%,5,6,46,13.00% +141771,372,2060,State-funded primary,186,89,97,47.80%,52.20%,10,5.40%,30,16.10%,5,181,0,2.70%,97.30%,0.00%,105,106,180,58.90% +141773,812,3526,State-funded primary,360,190,170,52.80%,47.20%,10,2.80%,56,15.60%,14,346,0,3.90%,96.10%,0.00%,174,174,313,55.60% +141774,891,2201,State-funded primary,274,136,138,49.60%,50.40%,1,0.40%,39,14.20%,4,270,0,1.50%,98.50%,0.00%,31,33,274,12.00% +141775,336,2049,State-funded primary,458,223,235,48.70%,51.30%,2,0.40%,74,16.20%,137,321,0,29.90%,70.10%,0.00%,242,243,410,59.30% +141777,838,3024,State-funded primary,164,69,95,42.10%,57.90%,3,1.80%,44,26.80%,1,163,0,0.60%,99.40%,0.00%,27,27,124,21.80% +141778,926,3396,State-funded primary,56,32,24,57.10%,42.90%,1,1.80%,2,3.60%,3,53,0,5.40%,94.60%,0.00%,18,19,56,33.90% +141779,860,3153,State-funded primary,266,134,132,50.40%,49.60%,3,1.10%,19,7.10%,1,265,0,0.40%,99.60%,0.00%,31,31,266,11.70% +141780,926,3327,State-funded primary,50,28,22,56.00%,44.00%,1,2.00%,9,18.00%,2,47,1,4.00%,94.00%,2.00%,5,5,43,11.60% +141782,933,2029,State-funded primary,118,62,56,52.50%,47.50%,2,1.70%,13,11.00%,4,108,6,3.40%,91.50%,5.10%,15,15,118,12.70% +141783,860,3151,State-funded primary,104,50,54,48.10%,51.90%,0,0.00%,6,5.80%,1,103,0,1.00%,99.00%,0.00%,11,11,104,10.60% +141784,305,2006,State-funded primary,452,208,244,46.00%,54.00%,48,10.60%,22,4.90%,27,425,0,6.00%,94.00%,0.00%,33,33,452,7.30% +141786,838,2054,State-funded primary,149,69,80,46.30%,53.70%,4,2.70%,10,6.70%,3,146,0,2.00%,98.00%,0.00%,11,11,149,7.40% +141787,839,2254,State-funded primary,361,177,184,49.00%,51.00%,7,1.90%,61,16.90%,27,334,0,7.50%,92.50%,0.00%,89,93,361,25.80% +141788,372,2017,State-funded primary,353,176,177,49.90%,50.10%,7,2.00%,80,22.70%,90,263,0,25.50%,74.50%,0.00%,91,92,353,26.10% +141789,336,3302,State-funded primary,205,109,96,53.20%,46.80%,2,1.00%,25,12.20%,51,154,0,24.90%,75.10%,0.00%,96,96,205,46.80% +141790,933,2034,State-funded primary,193,108,85,56.00%,44.00%,4,2.10%,14,7.30%,25,164,4,13.00%,85.00%,2.10%,44,46,193,23.80% +141791,940,7008,State-funded special school,253,73,180,28.90%,71.10%,253,100.00%,0,0.00%,12,241,0,4.70%,95.30%,0.00%,98,77,185,41.60% +141792,895,2151,State-funded primary,430,215,215,50.00%,50.00%,23,5.30%,74,17.20%,21,409,0,4.90%,95.10%,0.00%,58,56,384,14.60% +141793,925,2168,State-funded primary,182,87,95,47.80%,52.20%,3,1.60%,20,11.00%,2,179,1,1.10%,98.40%,0.50%,36,39,182,21.40% +141794,839,2180,State-funded primary,302,139,163,46.00%,54.00%,3,1.00%,16,5.30%,3,299,0,1.00%,99.00%,0.00%,25,25,302,8.30% +141795,933,2172,State-funded primary,20,13,7,65.00%,35.00%,2,10.00%,2,10.00%,1,19,0,5.00%,95.00%,0.00%,3,5,20,25.00% +141796,838,2027,State-funded primary,56,30,26,53.60%,46.40%,2,3.60%,11,19.60%,0,56,0,0.00%,100.00%,0.00%,15,15,56,26.80% +141797,383,2321,State-funded primary,704,339,365,48.20%,51.80%,4,0.60%,90,12.80%,109,595,0,15.50%,84.50%,0.00%,140,133,632,21.00% +141798,838,3343,State-funded primary,174,75,99,43.10%,56.90%,7,4.00%,15,8.60%,6,168,0,3.40%,96.60%,0.00%,23,23,174,13.20% +141799,384,2052,State-funded primary,344,160,184,46.50%,53.50%,14,4.10%,39,11.30%,57,267,20,16.60%,77.60%,5.80%,64,66,308,21.40% +141800,933,3085,State-funded primary,122,59,63,48.40%,51.60%,2,1.60%,14,11.50%,3,119,0,2.50%,97.50%,0.00%,28,29,122,23.80% +141802,336,4606,State-funded secondary,1133,583,550,51.50%,48.50%,26,2.30%,150,13.20%,225,908,0,19.90%,80.10%,0.00%,538,559,1038,53.90% +141804,838,3350,State-funded primary,64,33,31,51.60%,48.40%,4,6.30%,4,6.30%,5,59,0,7.80%,92.20%,0.00%,5,7,53,13.20% +141805,352,7039,State-funded special school,260,83,177,31.90%,68.10%,258,99.20%,2,0.80%,84,176,0,32.30%,67.70%,0.00%,147,100,157,63.70% +141806,838,3026,State-funded primary,137,71,66,51.80%,48.20%,2,1.50%,15,10.90%,6,131,0,4.40%,95.60%,0.00%,20,20,137,14.60% +141808,212,4734,State-funded secondary,1036,468,568,45.20%,54.80%,48,4.60%,202,19.50%,149,886,1,14.40%,85.50%,0.10%,223,228,836,27.30% +141809,895,2167,State-funded primary,133,59,74,44.40%,55.60%,9,6.80%,24,18.00%,17,116,0,12.80%,87.20%,0.00%,51,43,102,42.20% +141810,838,3052,State-funded primary,354,182,172,51.40%,48.60%,7,2.00%,66,18.60%,25,316,13,7.10%,89.30%,3.70%,106,107,354,30.20% +141811,895,3525,State-funded primary,316,165,151,52.20%,47.80%,12,3.80%,35,11.10%,43,270,3,13.60%,85.40%,0.90%,51,53,316,16.80% +141812,937,3501,State-funded primary,187,97,90,51.90%,48.10%,3,1.60%,19,10.20%,25,162,0,13.40%,86.60%,0.00%,54,56,187,29.90% +141813,333,4005,State-funded secondary,215,143,72,66.50%,33.50%,2,0.90%,35,16.30%,70,132,13,32.60%,61.40%,6.00%,82,76,153,49.70% +141814,929,4632,State-funded secondary,1117,606,511,54.30%,45.70%,14,1.30%,140,12.50%,54,1062,1,4.80%,95.10%,0.10%,255,258,977,26.40% +141815,330,3330,State-funded primary,449,224,225,49.90%,50.10%,4,0.90%,106,23.60%,84,365,0,18.70%,81.30%,0.00%,152,152,417,36.50% +141816,931,3555,State-funded primary,130,67,63,51.50%,48.50%,7,5.40%,19,14.60%,5,125,0,3.80%,96.20%,0.00%,22,22,130,16.90% +141817,937,3502,State-funded primary,210,97,113,46.20%,53.80%,11,5.20%,16,7.60%,43,167,0,20.50%,79.50%,0.00%,37,39,210,18.60% +141818,868,3335,State-funded primary,207,95,112,45.90%,54.10%,3,1.40%,15,7.20%,18,188,1,8.70%,90.80%,0.50%,9,9,207,4.30% +141819,935,2158,State-funded primary,447,197,250,44.10%,55.90%,5,1.10%,61,13.60%,228,219,0,51.00%,49.00%,0.00%,114,116,416,27.90% +141820,330,3358,State-funded primary,210,98,112,46.70%,53.30%,3,1.40%,17,8.10%,1,207,2,0.50%,98.60%,1.00%,48,48,210,22.90% +141821,838,3042,State-funded primary,144,73,71,50.70%,49.30%,2,1.40%,25,17.40%,8,136,0,5.60%,94.40%,0.00%,35,35,144,24.30% +141822,860,3145,State-funded primary,594,309,285,52.00%,48.00%,9,1.50%,33,5.60%,6,588,0,1.00%,99.00%,0.00%,80,83,530,15.70% +141823,937,3584,State-funded primary,564,309,255,54.80%,45.20%,13,2.30%,66,11.70%,122,440,2,21.60%,78.00%,0.40%,65,62,491,12.60% +141824,830,3522,State-funded primary,182,85,97,46.70%,53.30%,8,4.40%,33,18.10%,29,153,0,15.90%,84.10%,0.00%,63,68,182,37.40% +141825,336,3022,State-funded primary,263,131,132,49.80%,50.20%,19,7.20%,42,16.00%,45,218,0,17.10%,82.90%,0.00%,123,127,241,52.70% +141826,895,3531,State-funded primary,211,97,114,46.00%,54.00%,5,2.40%,7,3.30%,24,187,0,11.40%,88.60%,0.00%,32,28,188,14.90% +141827,336,3304,State-funded primary,469,236,233,50.30%,49.70%,3,0.60%,60,12.80%,159,310,0,33.90%,66.10%,0.00%,184,188,426,44.10% +141828,929,3917,State-funded primary,145,81,64,55.90%,44.10%,1,0.70%,10,6.90%,11,134,0,7.60%,92.40%,0.00%,23,20,122,16.40% +141829,838,4604,State-funded secondary,604,292,312,48.30%,51.70%,14,2.30%,74,12.30%,7,597,0,1.20%,98.80%,0.00%,67,72,604,11.90% +141830,330,3366,State-funded primary,191,93,98,48.70%,51.30%,4,2.10%,39,20.40%,59,131,1,30.90%,68.60%,0.50%,133,129,182,70.90% +141831,895,3566,State-funded primary,122,63,59,51.60%,48.40%,4,3.30%,22,18.00%,6,116,0,4.90%,95.10%,0.00%,24,26,122,21.30% +141832,929,3770,State-funded primary,180,105,75,58.30%,41.70%,1,0.60%,13,7.20%,17,163,0,9.40%,90.60%,0.00%,55,55,180,30.60% +141833,931,3550,State-funded primary,99,52,47,52.50%,47.50%,0,0.00%,10,10.10%,4,95,0,4.00%,96.00%,0.00%,6,7,99,7.10% +141835,330,4616,State-funded secondary,1168,547,621,46.80%,53.20%,9,0.80%,146,12.50%,218,922,28,18.70%,78.90%,2.40%,497,535,1051,50.90% +141836,937,4803,State-funded secondary,1045,578,467,55.30%,44.70%,31,3.00%,69,6.60%,218,827,0,20.90%,79.10%,0.00%,163,156,830,18.80% +141837,860,3441,State-funded primary,153,65,88,42.50%,57.50%,4,2.60%,16,10.50%,0,153,0,0.00%,100.00%,0.00%,29,29,153,19.00% +141838,889,2516,State-funded primary,160,74,86,46.30%,53.80%,4,2.50%,39,24.40%,40,119,1,25.00%,74.40%,0.60%,87,93,160,58.10% +141840,931,3600,State-funded primary,353,158,195,44.80%,55.20%,19,5.40%,55,15.60%,22,331,0,6.20%,93.80%,0.00%,48,53,353,15.00% +141841,881,5422,State-funded secondary,1772,856,916,48.30%,51.70%,26,1.50%,199,11.20%,31,1728,13,1.70%,97.50%,0.70%,184,195,1483,13.10% +141842,935,3344,State-funded primary,456,240,216,52.60%,47.40%,7,1.50%,66,14.50%,97,359,0,21.30%,78.70%,0.00%,142,149,416,35.80% +141843,936,7050,State-funded special school,110,40,70,36.40%,63.60%,105,95.50%,5,4.50%,7,103,0,6.40%,93.60%,0.00%,36,33,83,39.80% +141844,868,4044,State-funded secondary,959,1,958,0.10%,99.90%,15,1.60%,135,14.10%,117,841,1,12.20%,87.70%,0.10%,100,97,723,13.40% +141845,926,3114,State-funded primary,90,41,49,45.60%,54.40%,3,3.30%,8,8.90%,2,88,0,2.20%,97.80%,0.00%,28,28,90,31.10% +141846,830,3340,State-funded primary,82,39,43,47.60%,52.40%,1,1.20%,10,12.20%,3,79,0,3.70%,96.30%,0.00%,8,8,82,9.80% +141847,878,2248,State-funded primary,81,33,48,40.70%,59.30%,2,2.50%,6,7.40%,0,81,0,0.00%,100.00%,0.00%,13,12,67,17.90% +141848,860,2264,State-funded primary,49,22,27,44.90%,55.10%,3,6.10%,6,12.20%,1,48,0,2.00%,98.00%,0.00%,10,10,44,22.70% +141849,935,2927,State-funded primary,368,164,204,44.60%,55.40%,5,1.40%,73,19.80%,90,278,0,24.50%,75.50%,0.00%,125,125,307,40.70% +141850,830,5205,State-funded primary,261,143,118,54.80%,45.20%,4,1.50%,33,12.60%,9,252,0,3.40%,96.60%,0.00%,20,20,237,8.40% +141851,919,3979,State-funded primary,452,216,236,47.80%,52.20%,10,2.20%,58,12.80%,125,327,0,27.70%,72.30%,0.00%,55,58,416,13.90% +141852,868,4046,State-funded secondary,778,778,0,100.00%,0.00%,6,0.80%,78,10.00%,119,656,3,15.30%,84.30%,0.40%,87,93,616,15.10% +141853,372,4010,State-funded secondary,873,450,423,51.50%,48.50%,13,1.50%,177,20.30%,239,620,14,27.40%,71.00%,1.60%,305,336,873,38.50% +141854,838,3379,State-funded primary,60,29,31,48.30%,51.70%,1,1.70%,9,15.00%,0,60,0,0.00%,100.00%,0.00%,5,5,60,8.30% +141855,937,5207,State-funded primary,413,202,211,48.90%,51.10%,12,2.90%,65,15.70%,55,358,0,13.30%,86.70%,0.00%,85,83,373,22.30% +141856,860,3150,State-funded primary,80,38,42,47.50%,52.50%,0,0.00%,15,18.80%,1,79,0,1.30%,98.80%,0.00%,13,13,80,16.30% +141858,336,2072,State-funded primary,673,328,345,48.70%,51.30%,18,2.70%,84,12.50%,117,556,0,17.40%,82.60%,0.00%,197,200,616,32.50% +141859,309,6004,Independent school,26,4,22,15.40%,84.60%,5,19.20%,10,38.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141860,384,6003,Independent school,99,18,81,18.20%,81.80%,93,93.90%,6,6.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141862,314,4001,State-funded secondary,1176,499,677,42.40%,57.60%,51,4.30%,102,8.70%,285,807,84,24.20%,68.60%,7.10%,148,141,973,14.50% +141864,888,6059,Independent school,17,6,11,35.30%,64.70%,16,94.10%,1,5.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141865,391,7033,State-funded special school,191,18,173,9.40%,90.60%,190,99.50%,1,0.50%,0,191,0,0.00%,100.00%,0.00%,160,163,191,85.30% +141866,303,2048,State-funded primary,639,304,335,47.60%,52.40%,12,1.90%,74,11.60%,157,466,16,24.60%,72.90%,2.50%,164,163,588,27.70% +141867,890,2003,State-funded primary,319,147,172,46.10%,53.90%,45,14.10%,89,27.90%,24,295,0,7.50%,92.50%,0.00%,132,135,280,48.20% +141868,845,2017,State-funded primary,403,205,198,50.90%,49.10%,5,1.20%,53,13.20%,90,313,0,22.30%,77.70%,0.00%,159,161,403,40.00% +141869,881,2125,State-funded primary,211,111,100,52.60%,47.40%,2,0.90%,18,8.50%,56,155,0,26.50%,73.50%,0.00%,19,22,211,10.40% +141871,886,2060,State-funded primary,480,232,248,48.30%,51.70%,7,1.50%,70,14.60%,86,392,2,17.90%,81.70%,0.40%,207,193,420,46.00% +141874,855,4021,State-funded secondary,572,273,299,47.70%,52.30%,16,2.80%,111,19.40%,90,477,5,15.70%,83.40%,0.90%,155,157,484,32.40% +141875,851,4005,State-funded secondary,971,437,534,45.00%,55.00%,38,3.90%,167,17.20%,79,892,0,8.10%,91.90%,0.00%,312,348,971,35.80% +141876,319,2008,State-funded primary,285,128,157,44.90%,55.10%,62,21.80%,58,20.40%,80,204,1,28.10%,71.60%,0.40%,104,107,262,40.80% +141877,883,2009,State-funded primary,663,317,346,47.80%,52.20%,25,3.80%,53,8.00%,126,537,0,19.00%,81.00%,0.00%,121,126,604,20.90% +141878,384,2022,State-funded primary,351,173,178,49.30%,50.70%,12,3.40%,53,15.10%,28,320,3,8.00%,91.20%,0.90%,95,99,351,28.20% +141879,873,6052,Independent school,17,14,3,82.40%,17.60%,11,64.70%,6,35.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141880,815,2002,State-funded primary,312,167,145,53.50%,46.50%,8,2.60%,38,12.20%,50,262,0,16.00%,84.00%,0.00%,59,46,243,18.90% +141881,886,2061,State-funded primary,334,159,175,47.60%,52.40%,17,5.10%,46,13.80%,45,289,0,13.50%,86.50%,0.00%,71,73,300,24.30% +141882,869,2002,State-funded primary,56,32,24,57.10%,42.90%,0,0.00%,4,7.10%,3,53,0,5.40%,94.60%,0.00%,4,4,56,7.10% +141883,383,4068,State-funded secondary,969,464,505,47.90%,52.10%,11,1.10%,242,25.00%,216,720,33,22.30%,74.30%,3.40%,537,588,969,60.70% +141884,352,4007,State-funded secondary,1292,539,753,41.70%,58.30%,43,3.30%,155,12.00%,819,448,25,63.40%,34.70%,1.90%,612,690,1292,53.40% +141886,870,4001,State-funded secondary,892,404,488,45.30%,54.70%,20,2.20%,168,18.80%,446,434,12,50.00%,48.70%,1.30%,227,242,892,27.10% +141889,303,2062,State-funded primary,588,309,279,52.60%,47.40%,14,2.40%,86,14.60%,163,425,0,27.70%,72.30%,0.00%,216,219,566,38.70% +141892,938,2221,State-funded primary,210,99,111,47.10%,52.90%,5,2.40%,23,11.00%,10,200,0,4.80%,95.20%,0.00%,3,3,210,1.40% +141895,926,3312,State-funded primary,64,32,32,50.00%,50.00%,3,4.70%,11,17.20%,0,64,0,0.00%,100.00%,0.00%,17,17,64,26.60% +141896,305,3004,State-funded primary,61,39,22,63.90%,36.10%,2,3.30%,15,24.60%,0,61,0,0.00%,100.00%,0.00%,14,14,61,23.00% +141897,883,2462,State-funded primary,416,196,220,47.10%,52.90%,15,3.60%,38,9.10%,75,340,1,18.00%,81.70%,0.20%,97,111,416,26.70% +141898,919,5212,State-funded primary,228,114,114,50.00%,50.00%,3,1.30%,31,13.60%,47,181,0,20.60%,79.40%,0.00%,49,58,228,25.40% +141899,940,2097,State-funded primary,135,68,67,50.40%,49.60%,1,0.70%,16,11.90%,8,127,0,5.90%,94.10%,0.00%,29,29,135,21.50% +141900,940,3346,State-funded primary,178,84,94,47.20%,52.80%,3,1.70%,29,16.30%,15,163,0,8.40%,91.60%,0.00%,47,48,178,27.00% +141901,372,2135,State-funded primary,260,124,136,47.70%,52.30%,6,2.30%,52,20.00%,30,230,0,11.50%,88.50%,0.00%,73,77,220,35.00% +141902,205,2913,State-funded primary,229,117,112,51.10%,48.90%,9,3.90%,3,1.30%,95,134,0,41.50%,58.50%,0.00%,59,60,204,29.40% +141903,855,2076,State-funded primary,358,169,189,47.20%,52.80%,5,1.40%,60,16.80%,23,335,0,6.40%,93.60%,0.00%,54,55,358,15.40% +141904,382,2101,State-funded primary,386,195,191,50.50%,49.50%,5,1.30%,73,18.90%,29,357,0,7.50%,92.50%,0.00%,95,96,359,26.70% +141906,938,2166,State-funded primary,219,107,112,48.90%,51.10%,5,2.30%,41,18.70%,4,215,0,1.80%,98.20%,0.00%,24,26,193,13.50% +141907,305,5201,State-funded primary,215,119,96,55.30%,44.70%,8,3.70%,20,9.30%,101,114,0,47.00%,53.00%,0.00%,21,22,215,10.20% +141908,816,2180,State-funded primary,384,189,195,49.20%,50.80%,3,0.80%,56,14.60%,32,352,0,8.30%,91.70%,0.00%,24,25,384,6.50% +141909,940,2054,State-funded primary,325,152,173,46.80%,53.20%,5,1.50%,52,16.00%,33,292,0,10.20%,89.80%,0.00%,58,58,266,21.80% +141910,940,2053,State-funded primary,381,218,163,57.20%,42.80%,9,2.40%,64,16.80%,21,360,0,5.50%,94.50%,0.00%,92,98,381,25.70% +141912,865,3141,State-funded primary,64,32,32,50.00%,50.00%,1,1.60%,7,10.90%,0,64,0,0.00%,100.00%,0.00%,5,7,64,10.90% +141913,865,3143,State-funded primary,90,49,41,54.40%,45.60%,0,0.00%,13,14.40%,2,88,0,2.20%,97.80%,0.00%,5,5,90,5.60% +141914,816,2029,State-funded primary,451,216,235,47.90%,52.10%,10,2.20%,44,9.80%,19,431,1,4.20%,95.60%,0.20%,33,33,412,8.00% +141915,350,2060,State-funded primary,258,125,133,48.40%,51.60%,7,2.70%,13,5.00%,10,248,0,3.90%,96.10%,0.00%,41,41,201,20.40% +141916,856,4244,State-funded secondary,1683,831,852,49.40%,50.60%,23,1.40%,169,10.00%,1487,196,0,88.40%,11.60%,0.00%,327,353,1683,21.00% +141917,370,2068,State-funded primary,231,125,106,54.10%,45.90%,8,3.50%,24,10.40%,2,229,0,0.90%,99.10%,0.00%,84,84,211,39.80% +141918,926,3359,State-funded primary,50,24,26,48.00%,52.00%,0,0.00%,9,18.00%,2,45,3,4.00%,90.00%,6.00%,9,11,50,22.00% +141919,865,3388,State-funded primary,102,49,53,48.00%,52.00%,5,4.90%,19,18.60%,1,95,6,1.00%,93.10%,5.90%,13,13,102,12.70% +141921,941,2220,State-funded primary,432,236,196,54.60%,45.40%,29,6.70%,38,8.80%,103,327,2,23.80%,75.70%,0.50%,44,44,432,10.20% +141922,333,3401,State-funded primary,223,106,117,47.50%,52.50%,6,2.70%,25,11.20%,82,141,0,36.80%,63.20%,0.00%,41,44,204,21.60% +141924,333,3405,State-funded primary,258,135,123,52.30%,47.70%,10,3.90%,21,8.10%,62,196,0,24.00%,76.00%,0.00%,47,50,238,21.00% +141925,316,3505,State-funded primary,474,229,245,48.30%,51.70%,19,4.00%,41,8.60%,246,228,0,51.90%,48.10%,0.00%,117,124,408,30.40% +141926,333,3402,State-funded primary,418,201,217,48.10%,51.90%,10,2.40%,38,9.10%,105,313,0,25.10%,74.90%,0.00%,69,71,418,17.00% +141927,316,3506,State-funded primary,337,175,162,51.90%,48.10%,13,3.90%,53,15.70%,279,58,0,82.80%,17.20%,0.00%,91,95,300,31.70% +141929,333,3404,State-funded primary,232,119,113,51.30%,48.70%,4,1.70%,32,13.80%,96,136,0,41.40%,58.60%,0.00%,81,83,207,40.10% +141930,815,4047,State-funded secondary,1116,539,577,48.30%,51.70%,18,1.60%,106,9.50%,33,1083,0,3.00%,97.00%,0.00%,155,159,938,17.00% +141931,207,5402,State-funded secondary,1033,157,876,15.20%,84.80%,39,3.80%,99,9.60%,413,619,1,40.00%,59.90%,0.10%,121,113,640,17.70% +141933,811,5204,State-funded primary,496,217,279,43.80%,56.30%,23,4.60%,63,12.70%,4,492,0,0.80%,99.20%,0.00%,238,240,480,50.00% +141935,895,1101,State-funded AP school,7,4,3,57.10%,42.90%,2,28.60%,0,0.00%,0,7,0,0.00%,100.00%,0.00%,3,7,7,100.00% +141936,937,2038,State-funded primary,421,211,210,50.10%,49.90%,8,1.90%,67,15.90%,73,348,0,17.30%,82.70%,0.00%,45,48,421,11.40% +141937,341,2034,State-funded primary,646,321,325,49.70%,50.30%,21,3.30%,86,13.30%,29,616,1,4.50%,95.40%,0.20%,162,161,589,27.30% +141938,331,2016,State-funded primary,419,211,208,50.40%,49.60%,17,4.10%,73,17.40%,208,211,0,49.60%,50.40%,0.00%,164,170,419,40.60% +141939,331,4006,State-funded secondary,666,318,348,47.70%,52.30%,17,2.60%,132,19.80%,110,556,0,16.50%,83.50%,0.00%,178,183,591,31.00% +141940,383,4070,State-funded secondary,1061,556,505,52.40%,47.60%,8,0.80%,176,16.60%,263,797,1,24.80%,75.10%,0.10%,193,0,0,0.00% +141941,350,4002,State-funded secondary,491,237,254,48.30%,51.70%,6,1.20%,69,14.10%,211,247,33,43.00%,50.30%,6.70%,209,198,408,48.50% +141945,881,7002,State-funded special school,118,39,79,33.10%,66.90%,118,100.00%,0,0.00%,2,116,0,1.70%,98.30%,0.00%,30,30,101,29.70% +141947,881,4016,State-funded secondary,597,288,309,48.20%,51.80%,29,4.90%,76,12.70%,12,585,0,2.00%,98.00%,0.00%,116,137,568,24.10% +141948,926,7000,State-funded special school,58,5,53,8.60%,91.40%,57,98.30%,1,1.70%,1,57,0,1.70%,98.30%,0.00%,34,37,58,63.80% +141949,873,2037,State-funded primary,243,109,134,44.90%,55.10%,10,4.10%,23,9.50%,39,203,1,16.00%,83.50%,0.40%,14,17,243,7.00% +141950,881,2128,State-funded primary,412,190,222,46.10%,53.90%,4,1.00%,29,7.00%,89,323,0,21.60%,78.40%,0.00%,69,76,412,18.40% +141951,931,2017,State-funded primary,236,110,126,46.60%,53.40%,11,4.70%,48,20.30%,53,182,1,22.50%,77.10%,0.40%,42,36,193,18.70% +141954,841,6007,Independent school,15,2,13,13.30%,86.70%,12,80.00%,3,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141955,878,2046,State-funded primary,371,194,177,52.30%,47.70%,6,1.60%,59,15.90%,20,351,0,5.40%,94.60%,0.00%,36,35,324,10.80% +141957,207,7164,State-funded special school,119,35,84,29.40%,70.60%,119,100.00%,0,0.00%,5,114,0,4.20%,95.80%,0.00%,55,43,94,45.70% +141960,341,2036,State-funded primary,825,399,426,48.40%,51.60%,12,1.50%,141,17.10%,91,734,0,11.00%,89.00%,0.00%,79,83,825,10.10% +141961,384,2023,State-funded primary,481,234,247,48.60%,51.40%,16,3.30%,110,22.90%,36,445,0,7.50%,92.50%,0.00%,223,224,405,55.30% +141963,318,4001,State-funded secondary,841,271,570,32.20%,67.80%,27,3.20%,179,21.30%,108,732,1,12.80%,87.00%,0.10%,112,110,718,15.30% +141965,857,4000,State-funded secondary,338,177,161,52.40%,47.60%,2,0.60%,10,3.00%,8,330,0,2.40%,97.60%,0.00%,10,0,0,0.00% +141966,352,2038,State-funded primary,325,154,171,47.40%,52.60%,11,3.40%,45,13.80%,270,54,1,83.10%,16.60%,0.30%,132,133,325,40.90% +141967,352,2042,State-funded primary,410,208,202,50.70%,49.30%,14,3.40%,40,9.80%,114,295,1,27.80%,72.00%,0.20%,53,54,410,13.20% +141968,355,6002,Independent school,146,146,0,100.00%,0.00%,3,2.10%,10,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141969,330,4021,State-funded secondary,615,0,615,0.00%,100.00%,10,1.60%,98,15.90%,317,295,3,51.50%,48.00%,0.50%,189,237,615,38.50% +141970,871,4003,State-funded secondary,614,614,0,100.00%,0.00%,14,2.30%,49,8.00%,405,203,6,66.00%,33.10%,1.00%,131,157,614,25.60% +141971,888,4014,State-funded secondary,616,0,616,0.00%,100.00%,2,0.30%,54,8.80%,287,287,42,46.60%,46.60%,6.80%,124,130,616,21.10% +141972,370,2038,State-funded primary,174,97,77,55.70%,44.30%,2,1.10%,21,12.10%,7,160,7,4.00%,92.00%,4.00%,38,40,174,23.00% +141973,370,2039,State-funded primary,140,65,75,46.40%,53.60%,30,21.40%,13,9.30%,3,135,2,2.10%,96.40%,1.40%,79,80,140,57.10% +141974,370,2040,State-funded primary,327,177,150,54.10%,45.90%,14,4.30%,49,15.00%,32,295,0,9.80%,90.20%,0.00%,193,179,298,60.10% +141976,303,2064,State-funded primary,245,113,132,46.10%,53.90%,5,2.00%,39,15.90%,8,237,0,3.30%,96.70%,0.00%,16,17,245,6.90% +141977,330,2162,State-funded primary,394,209,185,53.00%,47.00%,2,0.50%,42,10.70%,281,113,0,71.30%,28.70%,0.00%,185,191,370,51.60% +141978,909,2003,State-funded primary,80,35,45,43.80%,56.30%,3,3.80%,7,8.80%,11,69,0,13.80%,86.30%,0.00%,7,7,79,8.90% +141979,332,2002,State-funded primary,288,159,129,55.20%,44.80%,14,4.90%,58,20.10%,42,246,0,14.60%,85.40%,0.00%,129,131,255,51.40% +141980,876,2002,State-funded primary,129,56,73,43.40%,56.60%,3,2.30%,33,25.60%,9,120,0,7.00%,93.00%,0.00%,64,65,117,55.60% +141981,888,2001,State-funded primary,207,101,106,48.80%,51.20%,9,4.30%,23,11.10%,64,143,0,30.90%,69.10%,0.00%,67,69,207,33.30% +141982,940,2173,State-funded primary,238,110,128,46.20%,53.80%,6,2.50%,34,14.30%,102,136,0,42.90%,57.10%,0.00%,67,69,206,33.50% +141983,935,2056,State-funded primary,143,72,71,50.30%,49.70%,5,3.50%,34,23.80%,11,132,0,7.70%,92.30%,0.00%,71,72,143,50.30% +141984,935,2057,State-funded primary,422,212,210,50.20%,49.80%,5,1.20%,75,17.80%,32,390,0,7.60%,92.40%,0.00%,221,228,395,57.70% +141985,935,2059,State-funded primary,333,172,161,51.70%,48.30%,5,1.50%,37,11.10%,34,299,0,10.20%,89.80%,0.00%,102,104,316,32.90% +141986,394,4001,State-funded secondary,733,353,380,48.20%,51.80%,12,1.60%,153,20.90%,8,724,1,1.10%,98.80%,0.10%,361,375,733,51.20% +141987,865,2024,State-funded primary,195,93,102,47.70%,52.30%,5,2.60%,37,19.00%,14,181,0,7.20%,92.80%,0.00%,50,56,195,28.70% +141988,865,2025,State-funded primary,163,75,88,46.00%,54.00%,22,13.50%,56,34.40%,6,157,0,3.70%,96.30%,0.00%,88,88,163,54.00% +141989,305,7001,State-funded special school,163,19,144,11.70%,88.30%,163,100.00%,0,0.00%,1,162,0,0.60%,99.40%,0.00%,143,128,142,90.10% +141991,926,2100,State-funded primary,320,142,178,44.40%,55.60%,11,3.40%,44,13.80%,17,302,1,5.30%,94.40%,0.30%,63,64,320,20.00% +141992,331,4007,State-funded secondary,1357,703,654,51.80%,48.20%,10,0.70%,196,14.40%,616,741,0,45.40%,54.60%,0.00%,435,423,1167,36.20% +141993,909,7001,State-funded special school,87,27,60,31.00%,69.00%,87,100.00%,0,0.00%,0,86,1,0.00%,98.90%,1.10%,63,54,68,79.40% +141994,830,6043,Independent school,65,10,55,15.40%,84.60%,65,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +141995,909,2006,State-funded primary,294,139,155,47.30%,52.70%,5,1.70%,42,14.30%,13,281,0,4.40%,95.60%,0.00%,56,60,272,22.10% +141997,840,2017,State-funded primary,153,77,76,50.30%,49.70%,0,0.00%,28,18.30%,11,141,1,7.20%,92.20%,0.70%,60,62,153,40.50% +141998,840,2018,State-funded primary,263,133,130,50.60%,49.40%,6,2.30%,46,17.50%,6,257,0,2.30%,97.70%,0.00%,149,150,263,57.00% +141999,840,2019,State-funded primary,217,119,98,54.80%,45.20%,4,1.80%,27,12.40%,6,211,0,2.80%,97.20%,0.00%,75,75,190,39.50% +142000,881,2129,State-funded primary,419,194,225,46.30%,53.70%,12,2.90%,41,9.80%,7,412,0,1.70%,98.30%,0.00%,134,129,361,35.70% +142001,881,2131,State-funded primary,195,97,98,49.70%,50.30%,7,3.60%,32,16.40%,35,160,0,17.90%,82.10%,0.00%,60,79,195,40.50% +142002,881,2132,State-funded primary,141,67,74,47.50%,52.50%,4,2.80%,29,20.60%,19,122,0,13.50%,86.50%,0.00%,50,55,141,39.00% +142003,382,2031,State-funded primary,414,202,212,48.80%,51.20%,18,4.30%,91,22.00%,25,389,0,6.00%,94.00%,0.00%,242,242,354,68.40% +142004,383,2017,State-funded primary,201,113,88,56.20%,43.80%,1,0.50%,19,9.50%,35,166,0,17.40%,82.60%,0.00%,36,37,201,18.40% +142005,926,2104,State-funded primary,221,97,124,43.90%,56.10%,6,2.70%,46,20.80%,1,220,0,0.50%,99.50%,0.00%,27,31,194,16.00% +142008,803,4006,State-funded secondary,1094,549,545,50.20%,49.80%,26,2.40%,118,10.80%,87,998,9,8.00%,91.20%,0.80%,251,278,1094,25.40% +142009,936,4002,State-funded secondary,743,361,382,48.60%,51.40%,33,4.40%,130,17.50%,134,609,0,18.00%,82.00%,0.00%,147,158,743,21.30% +142011,885,6043,Independent school,6,4,2,66.70%,33.30%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142012,318,2017,State-funded primary,329,170,159,51.70%,48.30%,4,1.20%,21,6.40%,147,182,0,44.70%,55.30%,0.00%,19,21,329,6.40% +142013,860,6041,Independent school,34,31,3,91.20%,8.80%,6,17.60%,6,17.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142014,860,2018,State-funded primary,199,91,108,45.70%,54.30%,2,1.00%,36,18.10%,16,183,0,8.00%,92.00%,0.00%,113,116,199,58.30% +142015,860,4013,State-funded secondary,760,352,408,46.30%,53.70%,10,1.30%,82,10.80%,41,719,0,5.40%,94.60%,0.00%,169,189,760,24.90% +142016,935,2065,State-funded primary,359,163,196,45.40%,54.60%,9,2.50%,62,17.30%,35,324,0,9.70%,90.30%,0.00%,170,170,335,50.70% +142017,935,2078,State-funded primary,185,103,82,55.70%,44.30%,8,4.30%,27,14.60%,8,177,0,4.30%,95.70%,0.00%,81,80,168,47.60% +142018,935,2090,State-funded primary,125,63,62,50.40%,49.60%,1,0.80%,12,9.60%,6,119,0,4.80%,95.20%,0.00%,32,34,125,27.20% +142019,936,2034,State-funded primary,396,198,198,50.00%,50.00%,7,1.80%,41,10.40%,68,287,41,17.20%,72.50%,10.40%,111,105,352,29.80% +142021,937,2039,State-funded primary,440,211,229,48.00%,52.00%,16,3.60%,78,17.70%,45,395,0,10.20%,89.80%,0.00%,186,187,372,50.30% +142022,937,2041,State-funded primary,204,101,103,49.50%,50.50%,8,3.90%,13,6.40%,70,132,2,34.30%,64.70%,1.00%,84,85,189,45.00% +142023,815,2003,State-funded primary,158,76,82,48.10%,51.90%,1,0.60%,27,17.10%,65,93,0,41.10%,58.90%,0.00%,34,30,147,20.40% +142024,931,4011,State-funded secondary,1283,652,631,50.80%,49.20%,10,0.80%,181,14.10%,154,1129,0,12.00%,88.00%,0.00%,160,192,1130,17.00% +142025,935,2093,State-funded primary,323,157,166,48.60%,51.40%,1,0.30%,48,14.90%,54,257,12,16.70%,79.60%,3.70%,66,69,323,21.40% +142026,935,2099,State-funded primary,229,130,99,56.80%,43.20%,5,2.20%,45,19.70%,45,184,0,19.70%,80.30%,0.00%,65,65,229,28.40% +142027,935,2103,State-funded primary,583,277,306,47.50%,52.50%,15,2.60%,97,16.60%,59,524,0,10.10%,89.90%,0.00%,117,124,544,22.80% +142028,359,2005,State-funded primary,340,173,167,50.90%,49.10%,11,3.20%,67,19.70%,35,304,1,10.30%,89.40%,0.30%,135,128,302,42.40% +142030,350,2007,State-funded primary,123,62,61,50.40%,49.60%,2,1.60%,26,21.10%,3,120,0,2.40%,97.60%,0.00%,44,51,118,43.20% +142031,380,4025,State-funded secondary,723,226,497,31.30%,68.70%,23,3.20%,218,30.20%,471,251,1,65.10%,34.70%,0.10%,268,311,723,43.00% +142032,801,2108,State-funded primary,164,70,94,42.70%,57.30%,2,1.20%,19,11.60%,28,134,2,17.10%,81.70%,1.20%,76,69,144,47.90% +142033,305,2065,State-funded primary,77,29,48,37.70%,62.30%,3,3.90%,15,19.50%,19,58,0,24.70%,75.30%,0.00%,4,4,77,5.20% +142034,873,2038,State-funded primary,96,49,47,51.00%,49.00%,7,7.30%,21,21.90%,15,81,0,15.60%,84.40%,0.00%,37,39,90,43.30% +142035,873,4011,State-funded secondary,1192,601,591,50.40%,49.60%,28,2.30%,106,8.90%,238,951,3,20.00%,79.80%,0.30%,255,244,931,26.20% +142036,823,2005,State-funded primary,455,203,252,44.60%,55.40%,25,5.50%,24,5.30%,59,396,0,13.00%,87.00%,0.00%,73,73,404,18.10% +142037,895,2004,State-funded primary,182,95,87,52.20%,47.80%,11,6.00%,40,22.00%,27,155,0,14.80%,85.20%,0.00%,71,71,162,43.80% +142038,908,2042,State-funded primary,172,74,98,43.00%,57.00%,9,5.20%,14,8.10%,5,167,0,2.90%,97.10%,0.00%,35,37,161,23.00% +142039,331,2017,State-funded primary,244,116,128,47.50%,52.50%,6,2.50%,44,18.00%,61,183,0,25.00%,75.00%,0.00%,50,50,208,24.00% +142040,306,4004,State-funded secondary,633,274,359,43.30%,56.70%,16,2.50%,91,14.40%,132,493,8,20.90%,77.90%,1.30%,254,299,633,47.20% +142041,831,2013,State-funded primary,443,211,232,47.60%,52.40%,5,1.10%,69,15.60%,335,108,0,75.60%,24.40%,0.00%,246,230,400,57.50% +142042,830,4005,State-funded secondary,593,289,304,48.70%,51.30%,12,2.00%,86,14.50%,13,580,0,2.20%,97.80%,0.00%,144,158,593,26.60% +142043,830,2015,State-funded primary,368,174,194,47.30%,52.70%,5,1.40%,33,9.00%,6,362,0,1.60%,98.40%,0.00%,134,136,336,40.50% +142044,878,2051,State-funded primary,364,173,191,47.50%,52.50%,19,5.20%,57,15.70%,11,353,0,3.00%,97.00%,0.00%,64,65,340,19.10% +142045,878,2057,State-funded primary,124,72,52,58.10%,41.90%,5,4.00%,13,10.50%,6,118,0,4.80%,95.20%,0.00%,19,20,124,16.10% +142046,838,2010,State-funded primary,67,33,34,49.30%,50.70%,3,4.50%,11,16.40%,2,65,0,3.00%,97.00%,0.00%,7,7,65,10.80% +142047,332,2003,State-funded primary,206,103,103,50.00%,50.00%,3,1.50%,41,19.90%,83,123,0,40.30%,59.70%,0.00%,107,111,206,53.90% +142049,881,2133,State-funded primary,349,194,155,55.60%,44.40%,8,2.30%,44,12.60%,16,333,0,4.60%,95.40%,0.00%,58,61,349,17.50% +142050,311,7004,State-funded special school,133,31,102,23.30%,76.70%,133,100.00%,0,0.00%,18,115,0,13.50%,86.50%,0.00%,63,58,114,50.90% +142051,919,4022,State-funded secondary,868,422,446,48.60%,51.40%,21,2.40%,77,8.90%,158,688,22,18.20%,79.30%,2.50%,229,232,724,32.00% +142052,886,2063,State-funded primary,243,118,125,48.60%,51.40%,5,2.10%,21,8.60%,5,237,1,2.10%,97.50%,0.40%,40,40,243,16.50% +142054,888,1112,State-funded AP school,100,30,70,30.00%,70.00%,9,9.00%,38,38.00%,9,91,0,9.00%,91.00%,0.00%,49,62,100,62.00% +142055,888,2002,State-funded primary,382,192,190,50.30%,49.70%,6,1.60%,43,11.30%,188,194,0,49.20%,50.80%,0.00%,152,156,382,40.80% +142056,383,4071,State-funded secondary,1273,596,677,46.80%,53.20%,11,0.90%,153,12.00%,77,1196,0,6.00%,94.00%,0.00%,300,359,1273,28.20% +142057,926,2106,State-funded primary,104,53,51,51.00%,49.00%,3,2.90%,16,15.40%,1,98,5,1.00%,94.20%,4.80%,30,30,100,30.00% +142058,926,4020,State-funded secondary,716,353,363,49.30%,50.70%,26,3.60%,131,18.30%,170,546,0,23.70%,76.30%,0.00%,292,318,716,44.40% +142059,926,4022,State-funded secondary,317,154,163,48.60%,51.40%,22,6.90%,59,18.60%,83,230,4,26.20%,72.60%,1.30%,129,140,317,44.20% +142062,940,2178,State-funded primary,346,180,166,52.00%,48.00%,7,2.00%,38,11.00%,75,271,0,21.70%,78.30%,0.00%,114,118,346,34.10% +142063,940,4016,State-funded secondary,1304,635,669,48.70%,51.30%,14,1.10%,179,13.70%,77,1227,0,5.90%,94.10%,0.00%,145,156,1116,14.00% +142064,940,2179,State-funded primary,297,144,153,48.50%,51.50%,7,2.40%,18,6.10%,80,209,8,26.90%,70.40%,2.70%,53,57,297,19.20% +142066,868,7000,State-funded special school,107,25,82,23.40%,76.60%,107,100.00%,0,0.00%,10,96,1,9.30%,89.70%,0.90%,10,10,107,9.30% +142067,894,4000,State-funded secondary,835,442,393,52.90%,47.10%,11,1.30%,88,10.50%,116,718,1,13.90%,86.00%,0.10%,152,167,810,20.60% +142068,865,6061,Independent school,4,1,3,25.00%,75.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142069,825,6044,Independent school,143,55,88,38.50%,61.50%,1,0.70%,33,23.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142070,891,2023,State-funded primary,356,187,169,52.50%,47.50%,0,0.00%,45,12.60%,180,176,0,50.60%,49.40%,0.00%,144,137,321,42.70% +142071,330,1111,State-funded AP school,2,0,2,0.00%,100.00%,2,100.00%,0,0.00%,0,2,0,0.00%,100.00%,0.00%,2,2,2,100.00% +142072,870,2025,State-funded primary,238,116,122,48.70%,51.30%,10,4.20%,43,18.10%,106,132,0,44.50%,55.50%,0.00%,102,105,200,52.50% +142073,355,4002,State-funded secondary,682,346,336,50.70%,49.30%,16,2.30%,175,25.70%,47,635,0,6.90%,93.10%,0.00%,262,280,682,41.10% +142074,373,2043,State-funded primary,160,82,78,51.30%,48.80%,5,3.10%,36,22.50%,14,146,0,8.80%,91.30%,0.00%,90,91,160,56.90% +142075,334,4000,State-funded secondary,1187,582,605,49.00%,51.00%,15,1.30%,179,15.10%,272,904,11,22.90%,76.20%,0.90%,374,416,1186,35.10% +142076,852,2007,State-funded primary,408,199,209,48.80%,51.20%,9,2.20%,55,13.50%,87,319,2,21.30%,78.20%,0.50%,114,118,408,28.90% +142078,860,2019,State-funded primary,195,90,105,46.20%,53.80%,0,0.00%,50,25.60%,19,176,0,9.70%,90.30%,0.00%,72,73,180,40.60% +142079,803,4007,State-funded secondary,583,275,308,47.20%,52.80%,27,4.60%,150,25.70%,32,542,9,5.50%,93.00%,1.50%,110,56,177,31.60% +142080,336,4003,State-funded secondary,767,330,437,43.00%,57.00%,4,0.50%,112,14.60%,500,267,0,65.20%,34.80%,0.00%,182,201,635,31.70% +142083,936,2035,State-funded primary,131,76,55,58.00%,42.00%,11,8.40%,21,16.00%,4,127,0,3.10%,96.90%,0.00%,17,17,131,13.00% +142084,936,2036,State-funded primary,167,79,88,47.30%,52.70%,10,6.00%,24,14.40%,19,148,0,11.40%,88.60%,0.00%,25,26,167,15.60% +142085,894,1107,State-funded AP school,34,15,19,44.10%,55.90%,0,0.00%,21,61.80%,1,31,2,2.90%,91.20%,5.90%,27,27,34,79.40% +142086,336,7000,State-funded special school,96,15,81,15.60%,84.40%,96,100.00%,0,0.00%,0,96,0,0.00%,100.00%,0.00%,59,75,96,78.10% +142088,889,4005,State-funded secondary,1335,681,654,51.00%,49.00%,17,1.30%,155,11.60%,312,1023,0,23.40%,76.60%,0.00%,310,350,1335,26.20% +142089,938,4012,State-funded secondary,1068,548,520,51.30%,48.70%,9,0.80%,86,8.10%,65,1003,0,6.10%,93.90%,0.00%,156,177,1068,16.60% +142090,210,2006,State-funded primary,401,187,214,46.60%,53.40%,7,1.70%,57,14.20%,21,380,0,5.20%,94.80%,0.00%,58,60,401,15.00% +142091,891,2940,State-funded primary,214,108,106,50.50%,49.50%,1,0.50%,34,15.90%,10,204,0,4.70%,95.30%,0.00%,72,66,184,35.90% +142093,891,3770,State-funded primary,213,90,123,42.30%,57.70%,2,0.90%,39,18.30%,25,188,0,11.70%,88.30%,0.00%,50,51,191,26.70% +142094,860,7039,State-funded special school,135,59,76,43.70%,56.30%,135,100.00%,0,0.00%,8,127,0,5.90%,94.10%,0.00%,44,39,114,34.20% +142095,860,2200,State-funded primary,61,29,32,47.50%,52.50%,0,0.00%,8,13.10%,0,61,0,0.00%,100.00%,0.00%,1,1,61,1.60% +142096,860,3440,State-funded primary,111,61,50,55.00%,45.00%,2,1.80%,12,10.80%,0,111,0,0.00%,100.00%,0.00%,5,5,102,4.90% +142097,860,3434,State-funded primary,92,43,49,46.70%,53.30%,3,3.30%,8,8.70%,3,89,0,3.30%,96.70%,0.00%,6,8,84,9.50% +142100,839,3683,State-funded primary,374,186,188,49.70%,50.30%,6,1.60%,78,20.90%,196,177,1,52.40%,47.30%,0.30%,187,191,374,51.10% +142101,839,2267,State-funded primary,191,92,99,48.20%,51.80%,6,3.10%,47,24.60%,37,153,1,19.40%,80.10%,0.50%,100,102,168,60.70% +142102,839,3677,State-funded primary,238,116,122,48.70%,51.30%,6,2.50%,31,13.00%,127,111,0,53.40%,46.60%,0.00%,101,102,238,42.90% +142103,839,3680,State-funded primary,432,218,214,50.50%,49.50%,3,0.70%,67,15.50%,82,350,0,19.00%,81.00%,0.00%,114,117,432,27.10% +142104,931,4128,State-funded secondary,1314,628,686,47.80%,52.20%,24,1.80%,177,13.50%,244,1067,3,18.60%,81.20%,0.20%,124,133,1048,12.70% +142106,909,3402,State-funded primary,34,18,16,52.90%,47.10%,4,11.80%,5,14.70%,1,33,0,2.90%,97.10%,0.00%,4,4,32,12.50% +142108,808,2016,State-funded primary,465,232,233,49.90%,50.10%,5,1.10%,19,4.10%,1,464,0,0.20%,99.80%,0.00%,12,17,419,4.10% +142109,831,2014,State-funded primary,211,106,105,50.20%,49.80%,5,2.40%,28,13.30%,148,63,0,70.10%,29.90%,0.00%,60,63,211,29.90% +142110,307,2004,State-funded primary,415,201,214,48.40%,51.60%,9,2.20%,47,11.30%,200,215,0,48.20%,51.80%,0.00%,91,99,415,23.90% +142112,204,2004,State-funded primary,332,178,154,53.60%,46.40%,10,3.00%,27,8.10%,84,248,0,25.30%,74.70%,0.00%,97,100,332,30.10% +142113,940,2180,State-funded primary,415,208,207,50.10%,49.90%,5,1.20%,33,8.00%,24,391,0,5.80%,94.20%,0.00%,20,21,415,5.10% +142114,302,2049,State-funded primary,382,192,190,50.30%,49.70%,7,1.80%,57,14.90%,308,74,0,80.60%,19.40%,0.00%,209,209,382,54.70% +142115,330,6018,Independent school,20,7,13,35.00%,65.00%,10,50.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142117,886,2064,State-funded primary,355,194,161,54.60%,45.40%,15,4.20%,47,13.20%,13,341,1,3.70%,96.10%,0.30%,106,107,355,30.10% +142118,933,7000,State-funded special school,160,41,119,25.60%,74.40%,148,92.50%,3,1.90%,10,150,0,6.30%,93.80%,0.00%,55,52,144,36.10% +142119,811,2007,State-funded primary,209,82,127,39.20%,60.80%,8,3.80%,24,11.50%,9,200,0,4.30%,95.70%,0.00%,15,17,209,8.10% +142121,870,4002,State-funded secondary,994,452,542,45.50%,54.50%,22,2.20%,118,11.90%,444,549,1,44.70%,55.20%,0.10%,231,221,847,26.10% +142122,318,2025,State-funded primary,396,212,184,53.50%,46.50%,7,1.80%,48,12.10%,74,318,4,18.70%,80.30%,1.00%,58,58,396,14.60% +142123,336,7001,State-funded special school,54,12,42,22.20%,77.80%,54,100.00%,0,0.00%,2,52,0,3.70%,96.30%,0.00%,28,0,0,0.00% +142124,878,4018,State-funded secondary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +142125,800,4003,State-funded secondary,133,62,71,46.60%,53.40%,14,10.50%,32,24.10%,2,130,1,1.50%,97.70%,0.80%,28,19,66,28.80% +142126,313,4003,State-funded secondary,199,79,120,39.70%,60.30%,6,3.00%,29,14.60%,50,149,0,25.10%,74.90%,0.00%,70,50,110,45.50% +142127,800,4004,State-funded secondary,146,37,109,25.30%,74.70%,4,2.70%,26,17.80%,3,143,0,2.10%,97.90%,0.00%,29,28,102,27.50% +142130,813,4002,State-funded secondary,251,80,171,31.90%,68.10%,2,0.80%,65,25.90%,21,230,0,8.40%,91.60%,0.00%,86,83,211,39.30% +142133,301,2019,State-funded primary,290,139,151,47.90%,52.10%,6,2.10%,27,9.30%,106,184,0,36.60%,63.40%,0.00%,69,76,290,26.20% +142134,301,7001,State-funded special school,162,38,124,23.50%,76.50%,162,100.00%,0,0.00%,45,117,0,27.80%,72.20%,0.00%,68,79,162,48.80% +142135,811,1102,State-funded AP school,122,21,101,17.20%,82.80%,85,69.70%,13,10.70%,1,120,1,0.80%,98.40%,0.80%,78,79,122,64.80% +142136,925,7034,State-funded special school,129,39,90,30.20%,69.80%,129,100.00%,0,0.00%,3,126,0,2.30%,97.70%,0.00%,66,59,109,54.10% +142137,887,3093,State-funded primary,353,177,176,50.10%,49.90%,3,0.80%,65,18.40%,168,185,0,47.60%,52.40%,0.00%,111,113,309,36.60% +142138,815,3361,State-funded primary,70,26,44,37.10%,62.90%,2,2.90%,9,12.90%,3,67,0,4.30%,95.70%,0.00%,6,6,70,8.60% +142139,372,2100,State-funded primary,229,112,117,48.90%,51.10%,4,1.70%,34,14.80%,9,220,0,3.90%,96.10%,0.00%,79,81,182,44.50% +142140,931,3131,State-funded primary,199,99,100,49.70%,50.30%,3,1.50%,49,24.60%,3,196,0,1.50%,98.50%,0.00%,27,30,184,16.30% +142141,938,2138,State-funded primary,295,143,152,48.50%,51.50%,19,6.40%,47,15.90%,16,279,0,5.40%,94.60%,0.00%,34,35,295,11.90% +142142,893,3303,State-funded primary,107,53,54,49.50%,50.50%,3,2.80%,11,10.30%,0,107,0,0.00%,100.00%,0.00%,6,6,91,6.60% +142143,845,1111,State-funded AP school,47,7,40,14.90%,85.10%,7,14.90%,33,70.20%,0,47,0,0.00%,100.00%,0.00%,29,33,47,70.20% +142144,908,2228,State-funded primary,207,83,124,40.10%,59.90%,2,1.00%,27,13.00%,2,205,0,1.00%,99.00%,0.00%,38,40,207,19.30% +142145,838,3010,State-funded primary,64,35,29,54.70%,45.30%,4,6.30%,6,9.40%,0,64,0,0.00%,100.00%,0.00%,9,9,64,14.10% +142146,845,7036,State-funded special school,88,1,87,1.10%,98.90%,88,100.00%,0,0.00%,2,86,0,2.30%,97.70%,0.00%,57,58,88,65.90% +142148,815,3247,State-funded primary,272,147,125,54.00%,46.00%,7,2.60%,33,12.10%,39,233,0,14.30%,85.70%,0.00%,30,30,272,11.00% +142149,937,3180,State-funded primary,31,14,17,45.20%,54.80%,2,6.50%,5,16.10%,3,28,0,9.70%,90.30%,0.00%,2,2,31,6.50% +142150,810,4020,State-funded secondary,1633,844,789,51.70%,48.30%,32,2.00%,220,13.50%,88,1510,35,5.40%,92.50%,2.10%,288,335,1633,20.50% +142151,845,7035,State-funded special school,94,23,71,24.50%,75.50%,94,100.00%,0,0.00%,0,94,0,0.00%,100.00%,0.00%,59,68,94,72.30% +142152,931,3128,State-funded primary,181,92,89,50.80%,49.20%,3,1.70%,12,6.60%,5,176,0,2.80%,97.20%,0.00%,21,21,181,11.60% +142153,893,4427,State-funded secondary,791,368,423,46.50%,53.50%,11,1.40%,89,11.30%,10,777,4,1.30%,98.20%,0.50%,126,133,719,18.50% +142154,342,3324,State-funded primary,415,203,212,48.90%,51.10%,5,1.20%,37,8.90%,13,402,0,3.10%,96.90%,0.00%,33,36,415,8.70% +142155,384,3303,State-funded primary,316,173,143,54.70%,45.30%,4,1.30%,24,7.60%,211,105,0,66.80%,33.20%,0.00%,40,44,316,13.90% +142156,886,3708,State-funded primary,886,445,441,50.20%,49.80%,5,0.60%,67,7.60%,310,574,2,35.00%,64.80%,0.20%,142,143,825,17.30% +142157,887,3095,State-funded primary,46,25,21,54.30%,45.70%,0,0.00%,11,23.90%,28,18,0,60.90%,39.10%,0.00%,16,16,46,34.80% +142158,891,3710,State-funded primary,212,114,98,53.80%,46.20%,4,1.90%,16,7.50%,51,161,0,24.10%,75.90%,0.00%,39,39,190,20.50% +142159,815,3378,State-funded primary,201,110,91,54.70%,45.30%,2,1.00%,9,4.50%,72,129,0,35.80%,64.20%,0.00%,3,4,201,2.00% +142160,887,3195,State-funded primary,364,175,189,48.10%,51.90%,2,0.50%,61,16.80%,35,329,0,9.60%,90.40%,0.00%,69,75,364,20.60% +142161,342,3310,State-funded primary,224,106,118,47.30%,52.70%,9,4.00%,84,37.50%,32,192,0,14.30%,85.70%,0.00%,103,103,207,49.80% +142162,886,3715,State-funded primary,374,188,186,50.30%,49.70%,9,2.40%,25,6.70%,25,349,0,6.70%,93.30%,0.00%,46,47,374,12.60% +142163,845,7011,State-funded special school,82,0,82,0.00%,100.00%,82,100.00%,0,0.00%,0,82,0,0.00%,100.00%,0.00%,44,50,82,61.00% +142164,878,3163,State-funded primary,82,41,41,50.00%,50.00%,1,1.20%,11,13.40%,3,79,0,3.70%,96.30%,0.00%,10,10,82,12.20% +142165,838,3363,State-funded primary,155,74,81,47.70%,52.30%,6,3.90%,35,22.60%,8,147,0,5.20%,94.80%,0.00%,58,59,155,38.10% +142166,872,4060,State-funded secondary,1376,692,684,50.30%,49.70%,25,1.80%,80,5.80%,328,1048,0,23.80%,76.20%,0.00%,144,152,1194,12.70% +142167,838,3032,State-funded primary,182,91,91,50.00%,50.00%,7,3.80%,29,15.90%,2,180,0,1.10%,98.90%,0.00%,64,65,182,35.70% +142168,925,7033,State-funded special school,115,26,89,22.60%,77.40%,115,100.00%,0,0.00%,7,108,0,6.10%,93.90%,0.00%,71,72,110,65.50% +142169,860,7006,State-funded special school,58,4,54,6.90%,93.10%,58,100.00%,0,0.00%,1,57,0,1.70%,98.30%,0.00%,28,32,58,55.20% +142170,860,7024,State-funded special school,99,0,99,0.00%,100.00%,98,99.00%,1,1.00%,1,98,0,1.00%,99.00%,0.00%,60,66,99,66.70% +142173,871,2008,State-funded primary,684,338,346,49.40%,50.60%,11,1.60%,75,11.00%,202,479,3,29.50%,70.00%,0.40%,88,91,631,14.40% +142174,841,6000,State-funded secondary,787,426,361,54.10%,45.90%,22,2.80%,116,14.70%,86,701,0,10.90%,89.10%,0.00%,193,205,787,26.00% +142175,890,2004,State-funded primary,358,177,181,49.40%,50.60%,9,2.50%,100,27.90%,77,281,0,21.50%,78.50%,0.00%,253,256,337,76.00% +142176,815,3371,State-funded primary,189,103,86,54.50%,45.50%,7,3.70%,18,9.50%,16,173,0,8.50%,91.50%,0.00%,30,31,189,16.40% +142177,319,2003,State-funded primary,1047,514,533,49.10%,50.90%,65,6.20%,69,6.60%,610,437,0,58.30%,41.70%,0.00%,115,119,1005,11.80% +142178,210,4003,State-funded secondary,1156,576,580,49.80%,50.20%,39,3.40%,124,10.70%,234,920,2,20.20%,79.60%,0.20%,259,259,919,28.20% +142181,872,4001,State-funded secondary,1222,531,691,43.50%,56.50%,27,2.20%,137,11.20%,82,1140,0,6.70%,93.30%,0.00%,100,113,1222,9.20% +142182,872,2003,State-funded primary,464,219,245,47.20%,52.80%,10,2.20%,64,13.80%,156,308,0,33.60%,66.40%,0.00%,46,48,414,11.60% +142183,878,2061,State-funded primary,365,173,192,47.40%,52.60%,22,6.00%,64,17.50%,63,302,0,17.30%,82.70%,0.00%,75,77,365,21.10% +142185,940,2194,State-funded primary,220,90,130,40.90%,59.10%,3,1.40%,19,8.60%,71,149,0,32.30%,67.70%,0.00%,55,56,190,29.50% +142186,861,4006,State-funded secondary,1041,544,497,52.30%,47.70%,25,2.40%,159,15.30%,183,858,0,17.60%,82.40%,0.00%,443,482,1041,46.30% +142187,935,2104,State-funded primary,330,162,168,49.10%,50.90%,2,0.60%,27,8.20%,14,316,0,4.20%,95.80%,0.00%,84,84,300,28.00% +142188,886,2073,State-funded primary,451,219,232,48.60%,51.40%,27,6.00%,25,5.50%,75,376,0,16.60%,83.40%,0.00%,70,72,420,17.10% +142189,815,2302,State-funded primary,104,58,46,55.80%,44.20%,2,1.90%,5,4.80%,1,103,0,1.00%,99.00%,0.00%,13,13,96,13.50% +142191,931,3302,State-funded primary,89,47,42,52.80%,47.20%,1,1.10%,8,9.00%,2,87,0,2.20%,97.80%,0.00%,6,6,89,6.70% +142192,860,3479,State-funded primary,152,73,79,48.00%,52.00%,1,0.70%,17,11.20%,38,114,0,25.00%,75.00%,0.00%,60,60,152,39.50% +142193,860,4607,State-funded secondary,900,468,432,52.00%,48.00%,12,1.30%,119,13.20%,106,793,1,11.80%,88.10%,0.10%,175,186,822,22.60% +142194,860,2241,State-funded primary,182,78,104,42.90%,57.10%,2,1.10%,30,16.50%,10,172,0,5.50%,94.50%,0.00%,73,75,182,41.20% +142195,331,3434,State-funded primary,442,218,224,49.30%,50.70%,8,1.80%,60,13.60%,196,246,0,44.30%,55.70%,0.00%,140,136,409,33.30% +142196,909,2107,State-funded primary,438,233,205,53.20%,46.80%,11,2.50%,39,8.90%,17,421,0,3.90%,96.10%,0.00%,36,36,400,9.00% +142197,331,3414,State-funded primary,236,117,119,49.60%,50.40%,4,1.70%,43,18.20%,87,149,0,36.90%,63.10%,0.00%,40,42,204,20.60% +142198,815,2328,State-funded primary,315,159,156,50.50%,49.50%,4,1.30%,57,18.10%,22,293,0,7.00%,93.00%,0.00%,57,57,315,18.10% +142200,931,2001,State-funded primary,100,47,53,47.00%,53.00%,2,2.00%,10,10.00%,2,81,17,2.00%,81.00%,17.00%,5,5,83,6.00% +142201,815,2346,State-funded primary,112,55,57,49.10%,50.90%,3,2.70%,7,6.30%,0,112,0,0.00%,100.00%,0.00%,2,2,112,1.80% +142202,937,4237,State-funded secondary,1447,751,696,51.90%,48.10%,31,2.10%,162,11.20%,157,1289,1,10.90%,89.10%,0.10%,188,181,1221,14.80% +142203,330,2263,State-funded primary,412,199,213,48.30%,51.70%,13,3.20%,53,12.90%,108,304,0,26.20%,73.80%,0.00%,177,186,412,45.10% +142204,815,2376,State-funded primary,356,191,165,53.70%,46.30%,3,0.80%,34,9.60%,16,340,0,4.50%,95.50%,0.00%,28,28,356,7.90% +142205,331,3404,State-funded primary,452,232,220,51.30%,48.70%,8,1.80%,80,17.70%,171,281,0,37.80%,62.20%,0.00%,62,65,420,15.50% +142206,931,3005,State-funded primary,110,51,59,46.40%,53.60%,2,1.80%,13,11.80%,5,105,0,4.50%,95.50%,0.00%,17,17,101,16.80% +142207,861,2029,State-funded primary,220,112,108,50.90%,49.10%,6,2.70%,36,16.40%,28,192,0,12.70%,87.30%,0.00%,107,103,202,51.00% +142208,860,3480,State-funded primary,197,104,93,52.80%,47.20%,1,0.50%,18,9.10%,34,163,0,17.30%,82.70%,0.00%,11,11,197,5.60% +142209,860,3468,State-funded primary,184,85,99,46.20%,53.80%,0,0.00%,18,9.80%,41,143,0,22.30%,77.70%,0.00%,26,30,184,16.30% +142210,860,3470,State-funded primary,204,108,96,52.90%,47.10%,2,1.00%,19,9.30%,32,172,0,15.70%,84.30%,0.00%,12,13,204,6.40% +142211,331,3423,State-funded primary,220,111,109,50.50%,49.50%,1,0.50%,27,12.30%,56,164,0,25.50%,74.50%,0.00%,47,48,200,24.00% +142212,331,3409,State-funded primary,456,227,229,49.80%,50.20%,4,0.90%,58,12.70%,107,349,0,23.50%,76.50%,0.00%,98,96,419,22.90% +142213,860,3460,State-funded primary,51,29,22,56.90%,43.10%,0,0.00%,5,9.80%,2,49,0,3.90%,96.10%,0.00%,8,8,51,15.70% +142214,860,3455,State-funded primary,98,49,49,50.00%,50.00%,0,0.00%,10,10.20%,2,96,0,2.00%,98.00%,0.00%,18,21,98,21.40% +142215,331,3411,State-funded primary,235,117,118,49.80%,50.20%,6,2.60%,43,18.30%,81,154,0,34.50%,65.50%,0.00%,56,61,208,29.30% +142216,860,3469,State-funded primary,203,102,101,50.20%,49.80%,2,1.00%,13,6.40%,47,156,0,23.20%,76.80%,0.00%,28,28,203,13.80% +142217,331,3415,State-funded primary,207,99,108,47.80%,52.20%,2,1.00%,36,17.40%,77,130,0,37.20%,62.80%,0.00%,33,34,207,16.40% +142218,931,4007,State-funded secondary,1546,763,783,49.40%,50.60%,45,2.90%,175,11.30%,91,1455,0,5.90%,94.10%,0.00%,179,206,1369,15.00% +142219,330,4009,State-funded secondary,1750,852,898,48.70%,51.30%,68,3.90%,233,13.30%,1028,695,27,58.70%,39.70%,1.50%,730,773,1635,47.30% +142220,815,2333,State-funded primary,499,236,263,47.30%,52.70%,14,2.80%,46,9.20%,69,429,1,13.80%,86.00%,0.20%,38,36,418,8.60% +142221,919,2051,State-funded primary,346,194,152,56.10%,43.90%,3,0.90%,30,8.70%,145,201,0,41.90%,58.10%,0.00%,34,37,346,10.70% +142223,892,2016,State-funded primary,1117,545,572,48.80%,51.20%,8,0.70%,80,7.20%,343,772,2,30.70%,69.10%,0.20%,98,98,1047,9.40% +142224,352,6011,Independent school,27,11,16,40.70%,59.30%,3,11.10%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142225,356,6000,Independent school,18,5,13,27.80%,72.20%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142226,306,2097,State-funded primary,232,126,106,54.30%,45.70%,7,3.00%,24,10.30%,182,47,3,78.40%,20.30%,1.30%,69,71,232,30.60% +142227,800,3094,State-funded primary,210,113,97,53.80%,46.20%,7,3.30%,14,6.70%,9,176,25,4.30%,83.80%,11.90%,30,30,210,14.30% +142228,303,3008,State-funded primary,754,383,371,50.80%,49.20%,22,2.90%,24,3.20%,92,661,1,12.20%,87.70%,0.10%,53,56,717,7.80% +142229,303,3301,State-funded primary,305,146,159,47.90%,52.10%,7,2.30%,37,12.10%,32,273,0,10.50%,89.50%,0.00%,34,36,284,12.70% +142230,330,2003,State-funded primary,691,330,361,47.80%,52.20%,10,1.40%,122,17.70%,452,239,0,65.40%,34.60%,0.00%,258,266,632,42.10% +142231,330,2309,State-funded primary,472,216,256,45.80%,54.20%,6,1.30%,129,27.30%,348,124,0,73.70%,26.30%,0.00%,167,166,439,37.80% +142232,350,4048,State-funded secondary,1198,656,542,54.80%,45.20%,36,3.00%,85,7.10%,501,696,1,41.80%,58.10%,0.10%,327,356,1198,29.70% +142233,305,2028,State-funded primary,286,135,151,47.20%,52.80%,13,4.50%,92,32.20%,95,191,0,33.20%,66.80%,0.00%,109,115,286,40.20% +142234,305,2072,State-funded primary,525,259,266,49.30%,50.70%,6,1.10%,74,14.10%,12,511,2,2.30%,97.30%,0.40%,85,93,466,20.00% +142235,895,2291,State-funded primary,474,237,237,50.00%,50.00%,11,2.30%,25,5.30%,24,450,0,5.10%,94.90%,0.00%,39,40,408,9.80% +142236,895,2223,State-funded primary,264,138,126,52.30%,47.70%,9,3.40%,33,12.50%,5,259,0,1.90%,98.10%,0.00%,19,21,225,9.30% +142237,895,4144,State-funded secondary,857,391,466,45.60%,54.40%,26,3.00%,66,7.70%,30,827,0,3.50%,96.50%,0.00%,91,100,857,11.70% +142238,908,3894,State-funded primary,177,87,90,49.20%,50.80%,8,4.50%,42,23.70%,6,171,0,3.40%,96.60%,0.00%,90,90,149,60.40% +142239,908,2401,State-funded primary,152,66,86,43.40%,56.60%,2,1.30%,19,12.50%,2,150,0,1.30%,98.70%,0.00%,37,37,152,24.30% +142240,908,2029,State-funded primary,416,199,217,47.80%,52.20%,4,1.00%,39,9.40%,16,400,0,3.80%,96.20%,0.00%,63,61,317,19.20% +142241,908,2509,State-funded primary,175,94,81,53.70%,46.30%,1,0.60%,22,12.60%,3,168,4,1.70%,96.00%,2.30%,38,37,153,24.20% +142242,908,2314,State-funded primary,359,181,178,50.40%,49.60%,5,1.40%,37,10.30%,6,353,0,1.70%,98.30%,0.00%,45,48,359,13.40% +142243,908,2751,State-funded primary,129,64,65,49.60%,50.40%,3,2.30%,26,20.20%,12,117,0,9.30%,90.70%,0.00%,62,62,129,48.10% +142244,331,3006,State-funded primary,455,209,246,45.90%,54.10%,8,1.80%,38,8.40%,156,294,5,34.30%,64.60%,1.10%,61,64,420,15.20% +142245,331,2110,State-funded primary,443,242,201,54.60%,45.40%,5,1.10%,44,9.90%,69,374,0,15.60%,84.40%,0.00%,40,42,396,10.60% +142246,306,3406,State-funded primary,212,113,99,53.30%,46.70%,3,1.40%,25,11.80%,186,25,1,87.70%,11.80%,0.50%,39,39,176,22.20% +142247,909,2507,State-funded primary,203,103,100,50.70%,49.30%,6,3.00%,25,12.30%,4,199,0,2.00%,98.00%,0.00%,35,35,203,17.20% +142248,909,2522,State-funded primary,246,116,130,47.20%,52.80%,5,2.00%,14,5.70%,7,239,0,2.80%,97.20%,0.00%,6,6,217,2.80% +142249,909,2508,State-funded primary,296,148,148,50.00%,50.00%,11,3.70%,63,21.30%,7,289,0,2.40%,97.60%,0.00%,104,104,222,46.80% +142250,878,2052,State-funded primary,11,3,8,27.30%,72.70%,0,0.00%,4,36.40%,1,10,0,9.10%,90.90%,0.00%,7,7,11,63.60% +142251,878,3608,State-funded primary,98,43,55,43.90%,56.10%,2,2.00%,20,20.40%,15,82,1,15.30%,83.70%,1.00%,27,28,98,28.60% +142252,881,3230,State-funded primary,136,73,63,53.70%,46.30%,2,1.50%,24,17.60%,10,126,0,7.40%,92.60%,0.00%,40,42,136,30.90% +142253,881,3250,State-funded primary,557,274,283,49.20%,50.80%,8,1.40%,55,9.90%,138,419,0,24.80%,75.20%,0.00%,73,74,557,13.30% +142254,881,2994,State-funded primary,244,111,133,45.50%,54.50%,11,4.50%,21,8.60%,1,243,0,0.40%,99.60%,0.00%,21,25,244,10.20% +142255,204,3665,State-funded primary,405,200,205,49.40%,50.60%,15,3.70%,67,16.50%,249,155,1,61.50%,38.30%,0.20%,224,221,379,58.30% +142256,205,2309,State-funded primary,219,103,116,47.00%,53.00%,14,6.40%,20,9.10%,109,110,0,49.80%,50.20%,0.00%,60,61,191,31.90% +142257,919,7014,State-funded special school,78,0,78,0.00%,100.00%,78,100.00%,0,0.00%,1,77,0,1.30%,98.70%,0.00%,45,50,78,64.10% +142258,810,1112,State-funded AP school,24,9,15,37.50%,62.50%,20,83.30%,3,12.50%,1,23,0,4.20%,95.80%,0.00%,8,8,24,33.30% +142259,810,1100,State-funded AP school,4,0,4,0.00%,100.00%,0,0.00%,3,75.00%,0,4,0,0.00%,100.00%,0.00%,4,4,4,100.00% +142260,810,7029,State-funded special school,62,5,57,8.10%,91.90%,62,100.00%,0,0.00%,1,61,0,1.60%,98.40%,0.00%,44,45,62,72.60% +142261,855,2369,State-funded primary,414,219,195,52.90%,47.10%,10,2.40%,48,11.60%,20,391,3,4.80%,94.40%,0.70%,73,75,414,18.10% +142262,925,5405,State-funded secondary,960,529,431,55.10%,44.90%,7,0.70%,73,7.60%,32,926,2,3.30%,96.50%,0.20%,73,70,765,9.20% +142263,821,3355,State-funded primary,415,213,202,51.30%,48.70%,5,1.20%,59,14.20%,196,219,0,47.20%,52.80%,0.00%,123,130,415,31.30% +142264,821,3360,State-funded primary,421,218,203,51.80%,48.20%,12,2.90%,42,10.00%,208,213,0,49.40%,50.60%,0.00%,82,83,388,21.40% +142265,352,3305,State-funded primary,238,120,118,50.40%,49.60%,11,4.60%,19,8.00%,28,210,0,11.80%,88.20%,0.00%,14,14,212,6.60% +142266,887,7031,State-funded special school,238,68,170,28.60%,71.40%,238,100.00%,0,0.00%,5,233,0,2.10%,97.90%,0.00%,86,88,238,37.00% +142267,316,2073,State-funded primary,725,353,372,48.70%,51.30%,20,2.80%,75,10.30%,673,52,0,92.80%,7.20%,0.00%,189,198,658,30.10% +142268,812,2898,State-funded primary,350,165,185,47.10%,52.90%,4,1.10%,7,2.00%,9,341,0,2.60%,97.40%,0.00%,47,48,312,15.40% +142269,812,2145,State-funded primary,170,79,91,46.50%,53.50%,5,2.90%,28,16.50%,12,158,0,7.10%,92.90%,0.00%,32,33,170,19.40% +142270,940,3333,State-funded primary,74,34,40,45.90%,54.10%,0,0.00%,14,18.90%,1,73,0,1.40%,98.60%,0.00%,13,13,74,17.60% +142271,353,3355,State-funded primary,178,87,91,48.90%,51.10%,6,3.40%,23,12.90%,14,164,0,7.90%,92.10%,0.00%,48,48,178,27.00% +142272,807,3395,State-funded primary,397,207,190,52.10%,47.90%,2,0.50%,41,10.30%,7,390,0,1.80%,98.20%,0.00%,124,114,355,32.10% +142273,807,4639,State-funded secondary,716,344,372,48.00%,52.00%,20,2.80%,84,11.70%,17,699,0,2.40%,97.60%,0.00%,148,164,716,22.90% +142274,373,2002,State-funded primary,458,224,234,48.90%,51.10%,10,2.20%,46,10.00%,187,262,9,40.80%,57.20%,2.00%,112,117,417,28.10% +142275,860,3155,State-funded primary,50,28,22,56.00%,44.00%,1,2.00%,6,12.00%,2,48,0,4.00%,96.00%,0.00%,3,3,43,7.00% +142276,860,5200,State-funded primary,30,13,17,43.30%,56.70%,0,0.00%,6,20.00%,3,27,0,10.00%,90.00%,0.00%,9,8,28,28.60% +142277,860,4096,State-funded secondary,384,185,199,48.20%,51.80%,7,1.80%,42,10.90%,20,364,0,5.20%,94.80%,0.00%,123,139,384,36.20% +142278,860,4094,State-funded secondary,832,413,419,49.60%,50.40%,7,0.80%,68,8.20%,84,748,0,10.10%,89.90%,0.00%,134,157,832,18.90% +142279,808,3327,State-funded primary,363,179,184,49.30%,50.70%,5,1.40%,49,13.50%,8,355,0,2.20%,97.80%,0.00%,128,131,316,41.50% +142280,808,3300,State-funded primary,241,119,122,49.40%,50.60%,2,0.80%,12,5.00%,22,219,0,9.10%,90.90%,0.00%,5,5,213,2.30% +142281,808,4632,State-funded secondary,513,277,236,54.00%,46.00%,14,2.70%,43,8.40%,32,481,0,6.20%,93.80%,0.00%,202,218,513,42.50% +142282,808,3325,State-funded primary,414,213,201,51.40%,48.60%,12,2.90%,51,12.30%,24,390,0,5.80%,94.20%,0.00%,114,116,370,31.40% +142283,935,4604,State-funded secondary,2117,1188,929,56.10%,43.90%,115,5.40%,382,18.00%,148,1969,0,7.00%,93.00%,0.00%,278,0,0,0.00% +142284,936,4457,State-funded secondary,748,380,368,50.80%,49.20%,25,3.30%,143,19.10%,249,499,0,33.30%,66.70%,0.00%,186,206,748,27.50% +142285,894,4001,State-funded secondary,1067,530,537,49.70%,50.30%,23,2.20%,199,18.70%,202,861,4,18.90%,80.70%,0.40%,440,470,1067,44.00% +142286,357,2069,State-funded primary,366,182,184,49.70%,50.30%,6,1.60%,65,17.80%,22,344,0,6.00%,94.00%,0.00%,150,138,330,41.80% +142287,880,3121,State-funded primary,465,247,218,53.10%,46.90%,8,1.70%,25,5.40%,33,431,1,7.10%,92.70%,0.20%,101,98,399,24.60% +142288,358,7008,State-funded special school,203,67,136,33.00%,67.00%,203,100.00%,0,0.00%,24,179,0,11.80%,88.20%,0.00%,94,81,163,49.70% +142289,358,7000,State-funded special school,127,31,96,24.40%,75.60%,115,90.60%,12,9.40%,20,107,0,15.70%,84.30%,0.00%,34,36,115,31.30% +142290,938,2150,State-funded primary,261,144,117,55.20%,44.80%,3,1.10%,45,17.20%,85,176,0,32.60%,67.40%,0.00%,27,27,261,10.30% +142291,938,2257,State-funded primary,658,325,333,49.40%,50.60%,9,1.40%,101,15.30%,16,642,0,2.40%,97.60%,0.00%,39,44,658,6.70% +142292,865,3457,State-funded primary,56,30,26,53.60%,46.40%,0,0.00%,16,28.60%,1,55,0,1.80%,98.20%,0.00%,8,8,49,16.30% +142293,865,3110,State-funded primary,181,94,87,51.90%,48.10%,4,2.20%,18,9.90%,11,170,0,6.10%,93.90%,0.00%,9,9,181,5.00% +142294,303,3302,State-funded primary,210,100,110,47.60%,52.40%,6,2.90%,28,13.30%,22,188,0,10.50%,89.50%,0.00%,12,13,210,6.20% +142295,303,2007,State-funded primary,372,167,205,44.90%,55.10%,18,4.80%,16,4.30%,104,268,0,28.00%,72.00%,0.00%,55,66,353,18.70% +142296,350,4044,State-funded secondary,1049,508,541,48.40%,51.60%,29,2.80%,169,16.10%,73,974,2,7.00%,92.90%,0.20%,266,297,1049,28.30% +142298,305,2010,State-funded primary,575,278,297,48.30%,51.70%,13,2.30%,59,10.30%,41,530,4,7.10%,92.20%,0.70%,56,59,575,10.30% +142299,305,2008,State-funded primary,606,320,286,52.80%,47.20%,6,1.00%,51,8.40%,75,529,2,12.40%,87.30%,0.30%,105,108,606,17.80% +142300,305,3003,State-funded primary,428,210,218,49.10%,50.90%,18,4.20%,36,8.40%,26,402,0,6.10%,93.90%,0.00%,24,24,428,5.60% +142301,305,2012,State-funded primary,418,188,230,45.00%,55.00%,11,2.60%,55,13.20%,13,405,0,3.10%,96.90%,0.00%,29,30,418,7.20% +142302,896,7110,State-funded special school,124,24,100,19.40%,80.60%,124,100.00%,0,0.00%,7,117,0,5.60%,94.40%,0.00%,67,64,116,55.20% +142303,908,2305,State-funded primary,162,76,86,46.90%,53.10%,3,1.90%,23,14.20%,5,144,13,3.10%,88.90%,8.00%,33,33,149,22.10% +142304,908,2312,State-funded primary,99,48,51,48.50%,51.50%,4,4.00%,11,11.10%,1,98,0,1.00%,99.00%,0.00%,7,8,99,8.10% +142305,908,2311,State-funded primary,126,60,66,47.60%,52.40%,4,3.20%,20,15.90%,0,126,0,0.00%,100.00%,0.00%,16,16,107,15.00% +142306,909,4103,State-funded secondary,1322,645,677,48.80%,51.20%,60,4.50%,150,11.30%,42,1280,0,3.20%,96.80%,0.00%,155,160,1109,14.40% +142307,810,2493,State-funded primary,563,266,297,47.20%,52.80%,10,1.80%,91,16.20%,58,505,0,10.30%,89.70%,0.00%,319,294,457,64.30% +142308,925,7021,State-funded special school,180,56,124,31.10%,68.90%,180,100.00%,0,0.00%,5,174,1,2.80%,96.70%,0.60%,98,107,180,59.40% +142309,925,7025,State-funded special school,95,38,57,40.00%,60.00%,95,100.00%,0,0.00%,1,93,1,1.10%,97.90%,1.10%,56,45,73,61.60% +142310,821,4606,State-funded secondary,1649,794,855,48.20%,51.80%,50,3.00%,154,9.30%,505,1136,8,30.60%,68.90%,0.50%,196,211,1372,15.40% +142311,373,2357,State-funded primary,631,282,349,44.70%,55.30%,11,1.70%,66,10.50%,92,539,0,14.60%,85.40%,0.00%,57,57,631,9.00% +142312,893,3108,State-funded primary,121,60,61,49.60%,50.40%,2,1.70%,7,5.80%,6,115,0,5.00%,95.00%,0.00%,12,11,101,10.90% +142313,860,4070,State-funded secondary,1365,703,662,51.50%,48.50%,10,0.70%,154,11.30%,21,1341,3,1.50%,98.20%,0.20%,202,206,1171,17.60% +142314,936,5409,State-funded secondary,1269,572,697,45.10%,54.90%,19,1.50%,128,10.10%,143,1126,0,11.30%,88.70%,0.00%,59,71,1060,6.70% +142315,936,4098,State-funded secondary,1714,896,818,52.30%,47.70%,49,2.90%,217,12.70%,53,1661,0,3.10%,96.90%,0.00%,230,260,1436,18.10% +142316,865,5408,State-funded secondary,909,422,487,46.40%,53.60%,19,2.10%,123,13.50%,71,837,1,7.80%,92.10%,0.10%,113,128,907,14.10% +142317,336,4113,State-funded secondary,1690,813,877,48.10%,51.90%,46,2.70%,259,15.30%,227,1450,13,13.40%,85.80%,0.80%,430,413,1373,30.10% +142318,865,3159,State-funded primary,69,32,37,46.40%,53.60%,2,2.90%,11,15.90%,1,68,0,1.40%,98.60%,0.00%,2,2,64,3.10% +142319,867,3344,State-funded primary,204,119,85,58.30%,41.70%,7,3.40%,28,13.70%,99,105,0,48.50%,51.50%,0.00%,12,13,204,6.40% +142320,370,6000,Independent school,18,0,18,0.00%,100.00%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142321,865,2026,State-funded primary,215,100,115,46.50%,53.50%,7,3.30%,21,9.80%,18,197,0,8.40%,91.60%,0.00%,23,26,215,12.10% +142322,826,6015,Independent school,49,7,42,14.30%,85.70%,49,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142323,825,2022,State-funded primary,57,27,30,47.40%,52.60%,1,1.80%,12,21.10%,2,55,0,3.50%,96.50%,0.00%,8,8,57,14.00% +142324,381,6016,Independent school,11,4,7,36.40%,63.60%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142325,868,6023,Independent school,34,31,3,91.20%,8.80%,10,29.40%,4,11.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142326,933,2016,State-funded primary,260,136,124,52.30%,47.70%,7,2.70%,14,5.40%,32,228,0,12.30%,87.70%,0.00%,32,34,213,16.00% +142327,933,2017,State-funded primary,243,130,113,53.50%,46.50%,4,1.60%,16,6.60%,30,213,0,12.30%,87.70%,0.00%,22,22,191,11.50% +142329,304,6001,Independent school,840,421,419,50.10%,49.90%,1,0.10%,165,19.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142330,382,6004,Independent school,109,0,109,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142332,896,6002,Independent school,6,0,6,0.00%,100.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142333,888,6062,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142334,301,6007,Independent school,24,1,23,4.20%,95.80%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142335,865,2027,State-funded primary,389,184,205,47.30%,52.70%,22,5.70%,43,11.10%,33,356,0,8.50%,91.50%,0.00%,105,107,389,27.50% +142336,213,6002,Independent school,419,0,419,0.00%,100.00%,1,0.20%,115,27.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142338,330,6019,Independent school,98,33,65,33.70%,66.30%,69,70.40%,23,23.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142339,331,4000,State-funded secondary,928,402,526,43.30%,56.70%,18,1.90%,199,21.40%,492,435,1,53.00%,46.90%,0.10%,360,335,789,42.50% +142340,350,4806,State-funded secondary,687,687,0,100.00%,0.00%,10,1.50%,35,5.10%,572,115,0,83.30%,16.70%,0.00%,172,195,687,28.40% +142341,931,2251,State-funded primary,144,77,67,53.50%,46.50%,2,1.40%,20,13.90%,3,141,0,2.10%,97.90%,0.00%,25,24,135,17.80% +142342,803,2166,State-funded primary,404,214,190,53.00%,47.00%,12,3.00%,72,17.80%,115,289,0,28.50%,71.50%,0.00%,122,123,404,30.40% +142343,352,2004,State-funded primary,688,370,318,53.80%,46.20%,17,2.50%,95,13.80%,156,530,2,22.70%,77.00%,0.30%,175,168,625,26.90% +142344,806,3384,State-funded primary,271,123,148,45.40%,54.60%,2,0.70%,48,17.70%,17,254,0,6.30%,93.70%,0.00%,133,132,227,58.10% +142345,936,2501,State-funded primary,133,63,70,47.40%,52.60%,5,3.80%,14,10.50%,12,121,0,9.00%,91.00%,0.00%,17,18,133,13.50% +142346,886,2110,State-funded primary,212,91,121,42.90%,57.10%,5,2.40%,29,13.70%,4,207,1,1.90%,97.60%,0.50%,23,25,212,11.80% +142347,886,2650,State-funded primary,159,86,73,54.10%,45.90%,4,2.50%,25,15.70%,8,151,0,5.00%,95.00%,0.00%,58,58,159,36.50% +142348,891,2585,State-funded primary,413,184,229,44.60%,55.40%,3,0.70%,23,5.60%,39,374,0,9.40%,90.60%,0.00%,62,63,413,15.30% +142349,336,2112,State-funded primary,705,347,358,49.20%,50.80%,9,1.30%,75,10.60%,131,574,0,18.60%,81.40%,0.00%,228,232,636,36.50% +142350,931,3040,State-funded primary,33,10,23,30.30%,69.70%,0,0.00%,6,18.20%,0,33,0,0.00%,100.00%,0.00%,4,3,26,11.50% +142351,370,3323,State-funded primary,456,247,209,54.20%,45.80%,21,4.60%,94,20.60%,20,436,0,4.40%,95.60%,0.00%,164,155,417,37.20% +142352,839,2266,State-funded primary,599,319,280,53.30%,46.70%,7,1.20%,48,8.00%,57,541,1,9.50%,90.30%,0.20%,85,86,599,14.40% +142353,330,2111,State-funded primary,200,98,102,49.00%,51.00%,3,1.50%,42,21.00%,48,152,0,24.00%,76.00%,0.00%,117,119,200,59.50% +142354,839,2226,State-funded primary,697,352,345,50.50%,49.50%,25,3.60%,78,11.20%,367,330,0,52.70%,47.30%,0.00%,120,127,641,19.80% +142355,332,2139,State-funded primary,209,102,107,48.80%,51.20%,4,1.90%,32,15.30%,11,198,0,5.30%,94.70%,0.00%,30,31,209,14.80% +142356,936,2376,State-funded primary,252,129,123,51.20%,48.80%,3,1.20%,18,7.10%,15,237,0,6.00%,94.00%,0.00%,14,13,215,6.00% +142357,868,4036,State-funded secondary,1156,1156,0,100.00%,0.00%,18,1.60%,54,4.70%,183,971,2,15.80%,84.00%,0.20%,100,93,959,9.70% +142358,330,2315,State-funded primary,195,108,87,55.40%,44.60%,3,1.50%,39,20.00%,67,128,0,34.40%,65.60%,0.00%,128,131,195,67.20% +142359,384,2057,State-funded primary,163,75,88,46.00%,54.00%,0,0.00%,15,9.20%,16,146,1,9.80%,89.60%,0.60%,20,21,120,17.50% +142360,352,2338,State-funded primary,393,179,214,45.50%,54.50%,23,5.90%,46,11.70%,243,150,0,61.80%,38.20%,0.00%,217,202,350,57.70% +142361,880,2438,State-funded primary,687,314,373,45.70%,54.30%,26,3.80%,85,12.40%,22,665,0,3.20%,96.80%,0.00%,140,142,643,22.10% +142362,931,2304,State-funded primary,220,105,115,47.70%,52.30%,9,4.10%,25,11.40%,44,176,0,20.00%,80.00%,0.00%,60,61,220,27.70% +142363,886,2462,State-funded primary,330,163,167,49.40%,50.60%,4,1.20%,36,10.90%,77,253,0,23.30%,76.70%,0.00%,63,64,330,19.40% +142364,880,2473,State-funded primary,330,147,183,44.50%,55.50%,11,3.30%,30,9.10%,6,324,0,1.80%,98.20%,0.00%,83,86,330,26.10% +142365,806,3385,State-funded primary,332,168,164,50.60%,49.40%,4,1.20%,19,5.70%,127,205,0,38.30%,61.70%,0.00%,99,100,281,35.60% +142366,936,2913,State-funded primary,226,120,106,53.10%,46.90%,5,2.20%,19,8.40%,19,207,0,8.40%,91.60%,0.00%,21,16,180,8.90% +142367,806,3386,State-funded primary,236,120,116,50.80%,49.20%,1,0.40%,22,9.30%,108,128,0,45.80%,54.20%,0.00%,84,85,209,40.70% +142368,806,3389,State-funded primary,230,110,120,47.80%,52.20%,2,0.90%,29,12.60%,0,230,0,0.00%,100.00%,0.00%,35,35,201,17.40% +142369,806,3362,State-funded primary,228,118,110,51.80%,48.20%,4,1.80%,13,5.70%,9,219,0,3.90%,96.10%,0.00%,14,14,199,7.00% +142370,806,3347,State-funded primary,234,118,116,50.40%,49.60%,1,0.40%,15,6.40%,11,223,0,4.70%,95.30%,0.00%,17,17,202,8.40% +142371,806,3337,State-funded primary,425,214,211,50.40%,49.60%,4,0.90%,36,8.50%,27,398,0,6.40%,93.60%,0.00%,42,42,381,11.00% +142372,886,5228,State-funded primary,393,204,189,51.90%,48.10%,8,2.00%,45,11.50%,9,384,0,2.30%,97.70%,0.00%,81,91,393,23.20% +142373,806,3364,State-funded primary,158,76,82,48.10%,51.90%,4,2.50%,28,17.70%,6,152,0,3.80%,96.20%,0.00%,60,71,136,52.20% +142374,806,3340,State-funded primary,376,181,195,48.10%,51.90%,4,1.10%,30,8.00%,54,322,0,14.40%,85.60%,0.00%,102,105,332,31.60% +142375,330,3314,State-funded primary,236,116,120,49.20%,50.80%,4,1.70%,27,11.40%,121,113,2,51.30%,47.90%,0.80%,104,98,210,46.70% +142376,806,3348,State-funded primary,200,105,95,52.50%,47.50%,7,3.50%,20,10.00%,21,179,0,10.50%,89.50%,0.00%,76,79,182,43.40% +142377,931,3605,State-funded primary,326,171,155,52.50%,47.50%,13,4.00%,32,9.80%,24,300,2,7.40%,92.00%,0.60%,33,38,326,11.70% +142378,873,1109,State-funded AP school,1,0,1,0.00%,100.00%,0,0.00%,0,0.00%,0,1,0,0.00%,100.00%,0.00%,0,0,1,0.00% +142379,306,3420,State-funded primary,402,212,190,52.70%,47.30%,9,2.20%,59,14.70%,165,237,0,41.00%,59.00%,0.00%,186,186,402,46.30% +142380,936,2955,State-funded primary,424,194,230,45.80%,54.20%,27,6.40%,34,8.00%,84,340,0,19.80%,80.20%,0.00%,65,72,424,17.00% +142381,938,2085,State-funded primary,509,256,253,50.30%,49.70%,32,6.30%,164,32.20%,58,451,0,11.40%,88.60%,0.00%,149,162,509,31.80% +142382,806,4702,State-funded secondary,1355,681,674,50.30%,49.70%,21,1.50%,198,14.60%,124,1230,1,9.20%,90.80%,0.10%,522,538,1175,45.80% +142383,336,7005,State-funded special school,188,54,134,28.70%,71.30%,188,100.00%,0,0.00%,23,165,0,12.20%,87.80%,0.00%,123,117,169,69.20% +142384,931,2534,State-funded primary,337,160,177,47.50%,52.50%,10,3.00%,49,14.50%,51,286,0,15.10%,84.90%,0.00%,39,39,313,12.50% +142385,370,2088,State-funded primary,342,166,176,48.50%,51.50%,12,3.50%,41,12.00%,27,315,0,7.90%,92.10%,0.00%,76,79,318,24.80% +142386,330,2480,State-funded primary,367,187,180,51.00%,49.00%,4,1.10%,97,26.40%,84,283,0,22.90%,77.10%,0.00%,250,253,343,73.80% +142387,822,4004,State-funded secondary,733,350,383,47.70%,52.30%,40,5.50%,69,9.40%,195,536,2,26.60%,73.10%,0.30%,204,212,664,31.90% +142388,330,4022,State-funded secondary,962,443,519,46.00%,54.00%,6,0.60%,182,18.90%,365,594,3,37.90%,61.70%,0.30%,496,571,962,59.40% +142389,908,2043,State-funded primary,292,138,154,47.30%,52.70%,15,5.10%,79,27.10%,0,288,4,0.00%,98.60%,1.40%,69,69,254,27.20% +142390,878,2064,State-funded primary,374,173,201,46.30%,53.70%,15,4.00%,36,9.60%,14,360,0,3.70%,96.30%,0.00%,106,110,374,29.40% +142391,810,4011,State-funded secondary,1236,639,597,51.70%,48.30%,36,2.90%,164,13.30%,94,1142,0,7.60%,92.40%,0.00%,490,578,1236,46.80% +142392,925,4018,State-funded secondary,467,249,218,53.30%,46.70%,21,4.50%,91,19.50%,9,458,0,1.90%,98.10%,0.00%,170,188,467,40.30% +142393,887,2014,State-funded primary,304,135,169,44.40%,55.60%,10,3.30%,82,27.00%,24,280,0,7.90%,92.10%,0.00%,120,122,281,43.40% +142394,887,2015,State-funded primary,247,121,126,49.00%,51.00%,7,2.80%,19,7.70%,35,212,0,14.20%,85.80%,0.00%,51,52,215,24.20% +142395,926,2109,State-funded primary,413,207,206,50.10%,49.90%,13,3.10%,49,11.90%,40,369,4,9.70%,89.30%,1.00%,167,172,413,41.60% +142396,926,4023,State-funded secondary,806,393,413,48.80%,51.20%,27,3.30%,130,16.10%,116,690,0,14.40%,85.60%,0.00%,202,217,806,26.90% +142397,874,2007,State-funded primary,285,144,141,50.50%,49.50%,8,2.80%,46,16.10%,125,160,0,43.90%,56.10%,0.00%,123,125,285,43.90% +142398,319,2013,State-funded primary,504,260,244,51.60%,48.40%,6,1.20%,47,9.30%,196,307,1,38.90%,60.90%,0.20%,55,56,504,11.10% +142399,887,2016,State-funded primary,520,269,251,51.70%,48.30%,6,1.20%,88,16.90%,158,362,0,30.40%,69.60%,0.00%,143,145,520,27.90% +142400,940,2200,State-funded primary,70,36,34,51.40%,48.60%,1,1.40%,12,17.10%,8,62,0,11.40%,88.60%,0.00%,22,22,64,34.40% +142401,857,2001,State-funded primary,138,64,74,46.40%,53.60%,2,1.40%,26,18.80%,25,113,0,18.10%,81.90%,0.00%,1,2,138,1.40% +142402,933,2018,State-funded primary,139,61,78,43.90%,56.10%,4,2.90%,15,10.80%,5,134,0,3.60%,96.40%,0.00%,32,33,139,23.70% +142403,305,2067,State-funded primary,367,174,193,47.40%,52.60%,8,2.20%,58,15.80%,129,237,1,35.10%,64.60%,0.30%,95,97,367,26.40% +142405,830,4006,State-funded secondary,765,389,376,50.80%,49.20%,27,3.50%,146,19.10%,29,736,0,3.80%,96.20%,0.00%,314,318,705,45.10% +142406,382,4005,State-funded secondary,770,0,770,0.00%,100.00%,13,1.70%,157,20.40%,435,335,0,56.50%,43.50%,0.00%,212,225,770,29.20% +142408,202,6004,Independent school,596,297,299,49.80%,50.20%,0,0.00%,29,4.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142409,931,2019,State-funded primary,202,98,104,48.50%,51.50%,11,5.40%,40,19.80%,56,146,0,27.70%,72.30%,0.00%,47,48,181,26.50% +142410,855,2027,State-funded primary,205,97,108,47.30%,52.70%,3,1.50%,16,7.80%,45,160,0,22.00%,78.00%,0.00%,30,38,205,18.50% +142411,887,6009,Independent school,19,6,13,31.60%,68.40%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142412,353,2016,State-funded primary,407,201,206,49.40%,50.60%,7,1.70%,67,16.50%,324,83,0,79.60%,20.40%,0.00%,186,186,368,50.50% +142415,936,2956,State-funded primary,390,198,192,50.80%,49.20%,12,3.10%,61,15.60%,66,324,0,16.90%,83.10%,0.00%,70,63,341,18.50% +142416,936,6006,Independent school,99,37,62,37.40%,62.60%,97,98.00%,2,2.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142418,382,2032,State-funded primary,490,238,252,48.60%,51.40%,12,2.40%,104,21.20%,236,254,0,48.20%,51.80%,0.00%,216,217,431,50.30% +142420,382,7015,State-funded special school,127,53,74,41.70%,58.30%,126,99.20%,1,0.80%,39,88,0,30.70%,69.30%,0.00%,45,36,107,33.60% +142421,860,3142,State-funded primary,139,50,89,36.00%,64.00%,3,2.20%,13,9.40%,7,131,1,5.00%,94.20%,0.70%,34,34,139,24.50% +142422,860,3045,State-funded primary,119,62,57,52.10%,47.90%,2,1.70%,6,5.00%,0,118,1,0.00%,99.20%,0.80%,7,7,119,5.90% +142423,383,2504,State-funded primary,469,206,263,43.90%,56.10%,1,0.20%,56,11.90%,11,452,6,2.30%,96.40%,1.30%,65,71,415,17.10% +142424,873,2092,State-funded primary,208,97,111,46.60%,53.40%,3,1.40%,23,11.10%,93,115,0,44.70%,55.30%,0.00%,59,60,208,28.80% +142425,353,2008,State-funded primary,475,239,236,50.30%,49.70%,14,2.90%,65,13.70%,398,77,0,83.80%,16.20%,0.00%,139,143,429,33.30% +142426,936,2918,State-funded primary,302,137,165,45.40%,54.60%,14,4.60%,39,12.90%,16,286,0,5.30%,94.70%,0.00%,24,28,302,9.30% +142427,383,2292,State-funded primary,233,103,130,44.20%,55.80%,3,1.30%,21,9.00%,1,232,0,0.40%,99.60%,0.00%,25,25,208,12.00% +142428,839,2007,State-funded primary,838,407,431,48.60%,51.40%,22,2.60%,149,17.80%,70,768,0,8.40%,91.60%,0.00%,266,257,781,32.90% +142429,886,3140,State-funded primary,420,218,202,51.90%,48.10%,5,1.20%,70,16.70%,30,390,0,7.10%,92.90%,0.00%,47,47,420,11.20% +142432,825,2226,State-funded primary,446,235,211,52.70%,47.30%,8,1.80%,54,12.10%,101,345,0,22.60%,77.40%,0.00%,76,70,408,17.20% +142433,936,2269,State-funded primary,147,69,78,46.90%,53.10%,4,2.70%,8,5.40%,4,143,0,2.70%,97.30%,0.00%,5,5,147,3.40% +142434,916,3047,State-funded primary,92,48,44,52.20%,47.80%,1,1.10%,17,18.50%,2,90,0,2.20%,97.80%,0.00%,13,13,92,14.10% +142435,839,3675,State-funded primary,420,191,229,45.50%,54.50%,11,2.60%,75,17.90%,36,384,0,8.60%,91.40%,0.00%,74,76,420,18.10% +142436,839,2269,State-funded primary,594,284,310,47.80%,52.20%,15,2.50%,90,15.20%,64,527,3,10.80%,88.70%,0.50%,107,111,594,18.70% +142437,352,2182,State-funded primary,644,333,311,51.70%,48.30%,31,4.80%,126,19.60%,102,542,0,15.80%,84.20%,0.00%,435,403,572,70.50% +142438,916,3055,State-funded primary,56,36,20,64.30%,35.70%,1,1.80%,13,23.20%,2,54,0,3.60%,96.40%,0.00%,5,5,56,8.90% +142439,860,3113,State-funded primary,81,40,41,49.40%,50.60%,0,0.00%,3,3.70%,0,81,0,0.00%,100.00%,0.00%,4,5,70,7.10% +142440,810,2905,State-funded primary,222,105,117,47.30%,52.70%,6,2.70%,32,14.40%,129,93,0,58.10%,41.90%,0.00%,87,89,210,42.40% +142441,895,2698,State-funded primary,437,225,212,51.50%,48.50%,20,4.60%,45,10.30%,17,420,0,3.90%,96.10%,0.00%,38,38,409,9.30% +142442,860,3148,State-funded primary,158,90,68,57.00%,43.00%,1,0.60%,12,7.60%,4,154,0,2.50%,97.50%,0.00%,6,6,158,3.80% +142443,879,3162,State-funded primary,224,112,112,50.00%,50.00%,5,2.20%,53,23.70%,3,221,0,1.30%,98.70%,0.00%,24,23,204,11.30% +142444,908,2020,State-funded primary,187,102,85,54.50%,45.50%,3,1.60%,16,8.60%,8,179,0,4.30%,95.70%,0.00%,43,44,187,23.50% +142445,839,3681,State-funded primary,418,202,216,48.30%,51.70%,10,2.40%,53,12.70%,32,386,0,7.70%,92.30%,0.00%,50,50,418,12.00% +142446,839,3205,State-funded primary,627,310,317,49.40%,50.60%,13,2.10%,97,15.50%,404,223,0,64.40%,35.60%,0.00%,110,112,627,17.90% +142447,860,3154,State-funded primary,184,95,89,51.60%,48.40%,2,1.10%,12,6.50%,4,180,0,2.20%,97.80%,0.00%,43,44,184,23.90% +142448,885,3104,State-funded primary,243,117,126,48.10%,51.90%,2,0.80%,22,9.10%,16,227,0,6.60%,93.40%,0.00%,29,31,201,15.40% +142449,931,2303,State-funded primary,216,103,113,47.70%,52.30%,9,4.20%,41,19.00%,17,199,0,7.90%,92.10%,0.00%,86,75,185,40.50% +142450,383,2454,State-funded primary,411,174,237,42.30%,57.70%,1,0.20%,128,31.10%,97,312,2,23.60%,75.90%,0.50%,214,218,372,58.60% +142451,916,2111,State-funded primary,102,50,52,49.00%,51.00%,2,2.00%,15,14.70%,4,98,0,3.90%,96.10%,0.00%,5,6,102,5.90% +142452,383,2297,State-funded primary,703,334,369,47.50%,52.50%,8,1.10%,83,11.80%,49,654,0,7.00%,93.00%,0.00%,75,71,629,11.30% +142453,839,2258,State-funded primary,839,417,422,49.70%,50.30%,11,1.30%,99,11.80%,163,676,0,19.40%,80.60%,0.00%,175,181,839,21.60% +142455,317,2008,State-funded primary,360,182,178,50.60%,49.40%,5,1.40%,22,6.10%,195,165,0,54.20%,45.80%,0.00%,55,56,360,15.60% +142456,209,2002,State-funded primary,401,207,194,51.60%,48.40%,10,2.50%,73,18.20%,163,238,0,40.60%,59.40%,0.00%,61,65,372,17.50% +142460,891,2024,State-funded primary,216,110,106,50.90%,49.10%,2,0.90%,19,8.80%,14,202,0,6.50%,93.50%,0.00%,55,56,203,27.60% +142462,841,2008,State-funded primary,394,198,196,50.30%,49.70%,7,1.80%,56,14.20%,45,349,0,11.40%,88.60%,0.00%,158,168,360,46.70% +142464,371,2005,State-funded primary,296,156,140,52.70%,47.30%,5,1.70%,49,16.60%,3,293,0,1.00%,99.00%,0.00%,117,122,296,41.20% +142465,926,2112,State-funded primary,71,36,35,50.70%,49.30%,2,2.80%,17,23.90%,7,63,1,9.90%,88.70%,1.40%,27,27,71,38.00% +142466,926,2114,State-funded primary,87,47,40,54.00%,46.00%,2,2.30%,10,11.50%,4,83,0,4.60%,95.40%,0.00%,16,16,87,18.40% +142467,926,2116,State-funded primary,61,28,33,45.90%,54.10%,5,8.20%,15,24.60%,5,56,0,8.20%,91.80%,0.00%,17,17,61,27.90% +142468,926,2117,State-funded primary,90,43,47,47.80%,52.20%,5,5.60%,20,22.20%,3,86,1,3.30%,95.60%,1.10%,33,35,90,38.90% +142469,890,4003,State-funded secondary,563,289,274,51.30%,48.70%,10,1.80%,106,18.80%,59,503,1,10.50%,89.30%,0.20%,310,338,563,60.00% +142471,353,2018,State-funded primary,468,244,224,52.10%,47.90%,14,3.00%,63,13.50%,168,299,1,35.90%,63.90%,0.20%,112,114,417,27.30% +142474,840,6014,Independent school,57,21,36,36.80%,63.20%,5,8.80%,13,22.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142485,941,4018,State-funded secondary,2056,969,1087,47.10%,52.90%,22,1.10%,232,11.30%,972,941,143,47.30%,45.80%,7.00%,515,535,1922,27.80% +142487,806,1102,State-funded AP school,52,14,38,26.90%,73.10%,6,11.50%,1,1.90%,2,50,0,3.80%,96.20%,0.00%,27,36,52,69.20% +142489,317,2001,State-funded primary,657,309,348,47.00%,53.00%,10,1.50%,26,4.00%,589,67,1,89.60%,10.20%,0.20%,21,22,631,3.50% +142490,936,4028,State-funded secondary,669,324,345,48.40%,51.60%,19,2.80%,113,16.90%,140,529,0,20.90%,79.10%,0.00%,128,150,669,22.40% +142492,802,3121,State-funded primary,139,71,68,51.10%,48.90%,2,1.40%,10,7.20%,4,135,0,2.90%,97.10%,0.00%,26,26,139,18.70% +142493,384,2040,State-funded primary,203,103,100,50.70%,49.30%,3,1.50%,24,11.80%,11,192,0,5.40%,94.60%,0.00%,31,31,160,19.40% +142496,908,2703,State-funded primary,13,6,7,46.20%,53.80%,2,15.40%,3,23.10%,0,13,0,0.00%,100.00%,0.00%,5,6,13,46.20% +142497,815,2330,State-funded primary,185,91,94,49.20%,50.80%,3,1.60%,23,12.40%,18,167,0,9.70%,90.30%,0.00%,31,32,165,19.40% +142498,873,2447,State-funded primary,353,166,187,47.00%,53.00%,7,2.00%,68,19.30%,44,309,0,12.50%,87.50%,0.00%,71,74,353,21.00% +142499,357,2049,State-funded primary,442,219,223,49.50%,50.50%,5,1.10%,65,14.70%,59,382,1,13.30%,86.40%,0.20%,165,169,405,41.70% +142500,838,2053,State-funded primary,179,99,80,55.30%,44.70%,1,0.60%,29,16.20%,9,170,0,5.00%,95.00%,0.00%,45,45,149,30.20% +142501,352,2329,State-funded primary,471,231,240,49.00%,51.00%,14,3.00%,71,15.10%,179,292,0,38.00%,62.00%,0.00%,272,253,423,59.80% +142502,806,1100,State-funded AP school,49,12,37,24.50%,75.50%,7,14.30%,4,8.20%,0,49,0,0.00%,100.00%,0.00%,20,34,49,69.40% +142503,838,2021,State-funded primary,97,47,50,48.50%,51.50%,1,1.00%,17,17.50%,0,97,0,0.00%,100.00%,0.00%,8,8,75,10.70% +142505,838,2246,State-funded primary,258,132,126,51.20%,48.80%,4,1.60%,30,11.60%,9,249,0,3.50%,96.50%,0.00%,8,8,218,3.70% +142506,838,3000,State-funded primary,97,54,43,55.70%,44.30%,2,2.10%,10,10.30%,2,95,0,2.10%,97.90%,0.00%,15,13,73,17.80% +142507,891,3055,State-funded primary,454,222,232,48.90%,51.10%,0,0.00%,41,9.00%,27,427,0,5.90%,94.10%,0.00%,59,59,423,13.90% +142508,931,3207,State-funded primary,80,31,49,38.80%,61.30%,1,1.30%,7,8.80%,7,73,0,8.80%,91.30%,0.00%,7,7,80,8.80% +142509,356,4040,State-funded secondary,1332,683,649,51.30%,48.70%,56,4.20%,126,9.50%,207,1088,37,15.50%,81.70%,2.80%,286,345,1332,25.90% +142510,925,7030,State-funded special school,63,5,58,7.90%,92.10%,63,100.00%,0,0.00%,2,59,2,3.20%,93.70%,3.20%,35,40,63,63.50% +142511,806,1101,State-funded AP school,4,0,4,0.00%,100.00%,1,25.00%,1,25.00%,0,4,0,0.00%,100.00%,0.00%,2,4,4,100.00% +142512,838,2038,State-funded primary,110,55,55,50.00%,50.00%,2,1.80%,18,16.40%,2,108,0,1.80%,98.20%,0.00%,27,27,89,30.30% +142513,895,3816,State-funded primary,333,162,171,48.60%,51.40%,12,3.60%,33,9.90%,16,317,0,4.80%,95.20%,0.00%,72,73,303,24.10% +142514,838,3055,State-funded primary,162,81,81,50.00%,50.00%,2,1.20%,13,8.00%,6,156,0,3.70%,96.30%,0.00%,31,30,139,21.60% +142516,860,6042,Independent school,38,8,30,21.10%,78.90%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142517,886,2076,State-funded primary,446,223,223,50.00%,50.00%,22,4.90%,28,6.30%,104,340,2,23.30%,76.20%,0.40%,60,64,419,15.30% +142523,341,2037,State-funded primary,633,327,306,51.70%,48.30%,7,1.10%,115,18.20%,151,481,1,23.90%,76.00%,0.20%,212,222,579,38.30% +142524,356,6006,Independent school,40,34,6,85.00%,15.00%,10,25.00%,15,37.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142526,926,3107,State-funded primary,54,20,34,37.00%,63.00%,2,3.70%,14,25.90%,0,54,0,0.00%,100.00%,0.00%,24,25,54,46.30% +142527,926,2198,State-funded primary,28,17,11,60.70%,39.30%,1,3.60%,3,10.70%,3,25,0,10.70%,89.30%,0.00%,5,5,28,17.90% +142531,889,6014,Independent school,3,0,3,0.00%,100.00%,1,33.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142534,308,6005,Independent school,6,4,2,66.70%,33.30%,1,16.70%,1,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142535,350,6003,Independent school,7,3,4,42.90%,57.10%,2,28.60%,5,71.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142536,356,6012,Independent school,112,32,80,28.60%,71.40%,112,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142537,881,6065,Independent school,11,6,5,54.50%,45.50%,1,9.10%,10,90.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142538,891,6037,Independent school,54,15,39,27.80%,72.20%,54,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142539,866,2015,State-funded primary,331,163,168,49.20%,50.80%,18,5.40%,47,14.20%,20,311,0,6.00%,94.00%,0.00%,121,126,331,38.10% +142540,878,4019,State-funded secondary,1430,708,722,49.50%,50.50%,57,4.00%,299,20.90%,17,1413,0,1.20%,98.80%,0.00%,318,401,1271,31.50% +142541,885,3398,State-funded primary,306,149,157,48.70%,51.30%,2,0.70%,45,14.70%,37,269,0,12.10%,87.90%,0.00%,70,68,267,25.50% +142542,373,2274,State-funded primary,734,372,362,50.70%,49.30%,19,2.60%,127,17.30%,125,608,1,17.00%,82.80%,0.10%,356,340,624,54.50% +142543,885,4427,State-funded secondary,404,198,206,49.00%,51.00%,10,2.50%,77,19.10%,45,358,1,11.10%,88.60%,0.20%,141,148,404,36.60% +142544,857,2312,State-funded primary,84,35,49,41.70%,58.30%,10,11.90%,14,16.70%,7,77,0,8.30%,91.70%,0.00%,6,10,69,14.50% +142545,879,3767,State-funded primary,555,252,303,45.40%,54.60%,6,1.10%,97,17.50%,16,539,0,2.90%,97.10%,0.00%,173,176,460,38.30% +142546,866,3466,State-funded primary,489,241,248,49.30%,50.70%,18,3.70%,51,10.40%,156,329,4,31.90%,67.30%,0.80%,78,81,431,18.80% +142547,935,3025,State-funded primary,201,88,113,43.80%,56.20%,2,1.00%,19,9.50%,2,182,17,1.00%,90.50%,8.50%,17,17,201,8.50% +142548,891,2931,State-funded primary,311,153,158,49.20%,50.80%,3,1.00%,23,7.40%,96,215,0,30.90%,69.10%,0.00%,36,37,311,11.90% +142549,908,2208,State-funded primary,82,45,37,54.90%,45.10%,0,0.00%,7,8.50%,1,81,0,1.20%,98.80%,0.00%,23,23,82,28.00% +142550,353,2034,State-funded primary,331,161,170,48.60%,51.40%,8,2.40%,64,19.30%,30,301,0,9.10%,90.90%,0.00%,160,148,283,52.30% +142551,908,2628,State-funded primary,72,35,37,48.60%,51.40%,1,1.40%,8,11.10%,1,71,0,1.40%,98.60%,0.00%,16,15,64,23.40% +142552,340,2003,State-funded primary,372,176,196,47.30%,52.70%,7,1.90%,46,12.40%,46,326,0,12.40%,87.60%,0.00%,203,203,347,58.50% +142553,908,2325,State-funded primary,211,91,120,43.10%,56.90%,0,0.00%,20,9.50%,8,203,0,3.80%,96.20%,0.00%,39,41,211,19.40% +142554,935,3054,State-funded primary,120,64,56,53.30%,46.70%,0,0.00%,15,12.50%,0,119,1,0.00%,99.20%,0.80%,20,21,120,17.50% +142555,887,7016,State-funded special school,181,60,121,33.10%,66.90%,181,100.00%,0,0.00%,4,177,0,2.20%,97.80%,0.00%,72,69,123,56.10% +142556,370,3312,State-funded primary,190,89,101,46.80%,53.20%,3,1.60%,8,4.20%,3,180,7,1.60%,94.70%,3.70%,48,48,190,25.30% +142557,873,7018,State-funded special school,207,80,127,38.60%,61.40%,207,100.00%,0,0.00%,23,184,0,11.10%,88.90%,0.00%,90,76,175,43.40% +142558,310,3500,State-funded primary,451,230,221,51.00%,49.00%,13,2.90%,48,10.60%,241,210,0,53.40%,46.60%,0.00%,49,52,411,12.70% +142559,878,3008,State-funded primary,100,59,41,59.00%,41.00%,8,8.00%,13,13.00%,29,71,0,29.00%,71.00%,0.00%,27,28,100,28.00% +142560,304,5406,State-funded secondary,1168,517,651,44.30%,55.70%,33,2.80%,115,9.80%,648,520,0,55.50%,44.50%,0.00%,117,125,951,13.10% +142561,895,2156,State-funded primary,386,175,211,45.30%,54.70%,21,5.40%,35,9.10%,23,358,5,6.00%,92.70%,1.30%,31,33,386,8.50% +142562,935,3062,State-funded primary,306,131,175,42.80%,57.20%,3,1.00%,52,17.00%,7,285,14,2.30%,93.10%,4.60%,47,49,306,16.00% +142563,802,3452,State-funded primary,439,215,224,49.00%,51.00%,6,1.40%,40,9.10%,24,415,0,5.50%,94.50%,0.00%,35,37,407,9.10% +142564,908,2629,State-funded primary,57,27,30,47.40%,52.60%,1,1.80%,14,24.60%,3,54,0,5.30%,94.70%,0.00%,22,21,50,42.00% +142566,935,2031,State-funded primary,117,58,59,49.60%,50.40%,5,4.30%,16,13.70%,3,114,0,2.60%,97.40%,0.00%,45,46,117,39.30% +142568,887,6010,Independent school,28,8,20,28.60%,71.40%,16,57.10%,12,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142569,801,1106,State-funded AP school,57,15,42,26.30%,73.70%,21,36.80%,36,63.20%,6,51,0,10.50%,89.50%,0.00%,39,41,57,71.90% +142570,330,2165,State-funded primary,715,318,397,44.50%,55.50%,4,0.60%,207,29.00%,641,74,0,89.70%,10.30%,0.00%,243,251,715,35.10% +142572,204,6012,Independent school,105,0,105,0.00%,100.00%,6,5.70%,44,41.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142574,382,2047,State-funded primary,138,60,78,43.50%,56.50%,3,2.20%,31,22.50%,27,111,0,19.60%,80.40%,0.00%,60,61,124,49.20% +142575,893,2007,State-funded primary,94,54,40,57.40%,42.60%,3,3.20%,16,17.00%,2,92,0,2.10%,97.90%,0.00%,20,20,83,24.10% +142576,868,2001,State-funded primary,148,79,69,53.40%,46.60%,2,1.40%,10,6.80%,52,96,0,35.10%,64.90%,0.00%,24,24,148,16.20% +142577,867,4000,State-funded secondary,1164,572,592,49.10%,50.90%,40,3.40%,188,16.20%,158,1006,0,13.60%,86.40%,0.00%,239,252,1043,24.20% +142579,933,2021,State-funded primary,74,41,33,55.40%,44.60%,2,2.70%,7,9.50%,1,73,0,1.40%,98.60%,0.00%,17,17,74,23.00% +142580,935,2113,State-funded primary,305,143,162,46.90%,53.10%,12,3.90%,44,14.40%,10,292,3,3.30%,95.70%,1.00%,97,97,305,31.80% +142581,937,2042,State-funded primary,215,114,101,53.00%,47.00%,6,2.80%,27,12.60%,27,188,0,12.60%,87.40%,0.00%,27,28,215,13.00% +142582,380,2026,State-funded primary,390,211,179,54.10%,45.90%,15,3.80%,49,12.60%,69,321,0,17.70%,82.30%,0.00%,164,169,349,48.40% +142584,305,2014,State-funded primary,430,201,229,46.70%,53.30%,27,6.30%,82,19.10%,156,274,0,36.30%,63.70%,0.00%,133,133,430,30.90% +142585,383,4047,State-funded secondary,1273,630,643,49.50%,50.50%,16,1.30%,202,15.90%,261,1011,1,20.50%,79.40%,0.10%,434,493,1273,38.70% +142586,303,2003,State-funded primary,234,100,134,42.70%,57.30%,3,1.30%,21,9.00%,74,157,3,31.60%,67.10%,1.30%,8,8,212,3.80% +142587,306,3400,State-funded primary,212,112,100,52.80%,47.20%,2,0.90%,33,15.60%,116,95,1,54.70%,44.80%,0.50%,62,67,197,34.00% +142588,926,3407,State-funded primary,70,36,34,51.40%,48.60%,2,2.90%,8,11.40%,5,65,0,7.10%,92.90%,0.00%,11,15,70,21.40% +142589,926,3137,State-funded primary,44,18,26,40.90%,59.10%,0,0.00%,8,18.20%,0,44,0,0.00%,100.00%,0.00%,9,10,44,22.70% +142590,380,4616,State-funded secondary,1668,820,848,49.20%,50.80%,29,1.70%,242,14.50%,95,1573,0,5.70%,94.30%,0.00%,359,395,1443,27.40% +142591,886,3915,State-funded primary,670,336,334,50.10%,49.90%,12,1.80%,48,7.20%,150,518,2,22.40%,77.30%,0.30%,200,202,628,32.20% +142592,815,2331,State-funded primary,253,118,135,46.60%,53.40%,1,0.40%,23,9.10%,9,244,0,3.60%,96.40%,0.00%,10,10,253,4.00% +142593,815,2372,State-funded primary,434,216,218,49.80%,50.20%,13,3.00%,32,7.40%,21,413,0,4.80%,95.20%,0.00%,14,16,434,3.70% +142594,335,4106,State-funded secondary,1064,551,513,51.80%,48.20%,23,2.20%,49,4.60%,56,996,12,5.30%,93.60%,1.10%,393,427,978,43.70% +142595,935,3115,State-funded primary,103,56,47,54.40%,45.60%,1,1.00%,14,13.60%,2,101,0,1.90%,98.10%,0.00%,14,16,103,15.50% +142596,878,2013,State-funded primary,603,295,308,48.90%,51.10%,11,1.80%,48,8.00%,122,478,3,20.20%,79.30%,0.50%,67,68,603,11.30% +142597,935,3302,State-funded primary,168,82,86,48.80%,51.20%,6,3.60%,29,17.30%,2,166,0,1.20%,98.80%,0.00%,52,52,161,32.30% +142598,935,3328,State-funded primary,198,103,95,52.00%,48.00%,1,0.50%,21,10.60%,5,193,0,2.50%,97.50%,0.00%,11,13,198,6.60% +142599,926,3026,State-funded primary,183,89,94,48.60%,51.40%,3,1.60%,16,8.70%,25,158,0,13.70%,86.30%,0.00%,19,20,183,10.90% +142600,373,3424,State-funded primary,208,91,117,43.80%,56.30%,1,0.50%,28,13.50%,33,175,0,15.90%,84.10%,0.00%,39,39,208,18.80% +142601,393,4604,State-funded secondary,1328,723,605,54.40%,45.60%,14,1.10%,164,12.30%,125,1203,0,9.40%,90.60%,0.00%,308,351,1184,29.60% +142602,851,2670,State-funded primary,220,103,117,46.80%,53.20%,6,2.70%,21,9.50%,14,203,3,6.40%,92.30%,1.40%,61,64,220,29.10% +142603,336,6001,Independent school,10,3,7,30.00%,70.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142604,383,4072,State-funded secondary,425,75,350,17.60%,82.40%,6,1.40%,37,8.70%,58,365,2,13.60%,85.90%,0.50%,102,77,264,29.20% +142605,373,4010,State-funded secondary,436,215,221,49.30%,50.70%,6,1.40%,45,10.30%,45,377,14,10.30%,86.50%,3.20%,114,89,302,29.50% +142607,871,4004,State-funded AP school,137,21,116,15.30%,84.70%,92,67.20%,45,32.80%,27,110,0,19.70%,80.30%,0.00%,65,66,106,62.30% +142609,825,2023,State-funded primary,174,92,82,52.90%,47.10%,8,4.60%,36,20.70%,41,133,0,23.60%,76.40%,0.00%,74,75,174,43.10% +142610,306,2100,State-funded primary,292,151,141,51.70%,48.30%,9,3.10%,29,9.90%,204,88,0,69.90%,30.10%,0.00%,92,98,260,37.70% +142611,845,2019,State-funded primary,386,167,219,43.30%,56.70%,6,1.60%,63,16.30%,29,357,0,7.50%,92.50%,0.00%,92,97,386,25.10% +142612,881,7003,State-funded special school,95,0,95,0.00%,100.00%,95,100.00%,0,0.00%,1,94,0,1.10%,98.90%,0.00%,64,72,95,75.80% +142613,886,2077,State-funded primary,210,109,101,51.90%,48.10%,0,0.00%,23,11.00%,100,110,0,47.60%,52.40%,0.00%,44,45,210,21.40% +142621,306,6016,Independent school,42,8,34,19.00%,81.00%,42,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142623,330,6025,Independent school,10,8,2,80.00%,20.00%,1,10.00%,9,90.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142625,873,6053,Independent school,11,0,11,0.00%,100.00%,10,90.90%,1,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142627,302,4004,State-funded secondary,389,389,0,100.00%,0.00%,8,2.10%,61,15.70%,38,351,0,9.80%,90.20%,0.00%,6,6,311,1.90% +142629,383,2018,State-funded primary,421,205,216,48.70%,51.30%,3,0.70%,82,19.50%,334,87,0,79.30%,20.70%,0.00%,187,185,384,48.20% +142630,383,7005,State-funded special school,304,40,264,13.20%,86.80%,304,100.00%,0,0.00%,3,301,0,1.00%,99.00%,0.00%,207,226,304,74.30% +142631,856,2006,State-funded primary,306,130,176,42.50%,57.50%,2,0.70%,21,6.90%,84,220,2,27.50%,71.90%,0.70%,46,47,264,17.80% +142632,316,2010,State-funded primary,536,260,276,48.50%,51.50%,9,1.70%,35,6.50%,353,182,1,65.90%,34.00%,0.20%,155,164,446,36.80% +142633,926,2118,State-funded primary,378,182,196,48.10%,51.90%,9,2.40%,68,18.00%,126,250,2,33.30%,66.10%,0.50%,188,188,347,54.20% +142634,926,2122,State-funded primary,190,93,97,48.90%,51.10%,10,5.30%,59,31.10%,59,117,14,31.10%,61.60%,7.40%,91,93,190,48.90% +142635,857,6006,Independent school,14,4,10,28.60%,71.40%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142636,302,3522,State-funded primary,327,144,183,44.00%,56.00%,27,8.30%,32,9.80%,239,88,0,73.10%,26.90%,0.00%,130,131,302,43.40% +142637,816,2016,State-funded primary,387,194,193,50.10%,49.90%,4,1.00%,47,12.10%,64,320,3,16.50%,82.70%,0.80%,38,42,387,10.90% +142638,873,2014,State-funded primary,390,186,204,47.70%,52.30%,23,5.90%,40,10.30%,5,384,1,1.30%,98.50%,0.30%,58,58,390,14.90% +142639,878,2444,State-funded primary,106,61,45,57.50%,42.50%,4,3.80%,11,10.40%,1,105,0,0.90%,99.10%,0.00%,22,18,89,20.20% +142640,861,2120,State-funded primary,476,230,246,48.30%,51.70%,5,1.10%,101,21.20%,45,431,0,9.50%,90.50%,0.00%,223,211,422,50.00% +142641,878,3606,State-funded primary,88,48,40,54.50%,45.50%,2,2.30%,4,4.50%,0,88,0,0.00%,100.00%,0.00%,9,11,88,12.50% +142642,861,2107,State-funded primary,467,248,219,53.10%,46.90%,10,2.10%,33,7.10%,44,416,7,9.40%,89.10%,1.50%,168,152,417,36.50% +142643,861,2012,State-funded primary,440,225,215,51.10%,48.90%,8,1.80%,51,11.60%,7,433,0,1.60%,98.40%,0.00%,55,55,387,14.20% +142644,316,4035,State-funded secondary,1323,1323,0,100.00%,0.00%,28,2.10%,97,7.30%,870,444,9,65.80%,33.60%,0.70%,528,601,1323,45.40% +142645,931,2250,State-funded primary,135,78,57,57.80%,42.20%,1,0.70%,16,11.90%,4,131,0,3.00%,97.00%,0.00%,13,14,135,10.40% +142648,816,4229,State-funded secondary,1078,503,575,46.70%,53.30%,21,1.90%,168,15.60%,55,1023,0,5.10%,94.90%,0.00%,149,155,1078,14.40% +142649,878,3115,State-funded primary,95,51,44,53.70%,46.30%,4,4.20%,34,35.80%,16,79,0,16.80%,83.20%,0.00%,46,46,85,54.10% +142650,941,3515,State-funded primary,364,198,166,54.40%,45.60%,7,1.90%,74,20.30%,19,339,6,5.20%,93.10%,1.60%,50,57,364,15.70% +142651,940,3068,State-funded primary,203,101,102,49.80%,50.20%,0,0.00%,24,11.80%,14,189,0,6.90%,93.10%,0.00%,11,12,203,5.90% +142652,878,3108,State-funded primary,78,36,42,46.20%,53.80%,0,0.00%,7,9.00%,1,77,0,1.30%,98.70%,0.00%,1,1,69,1.40% +142654,307,4001,State-funded secondary,705,355,350,50.40%,49.60%,22,3.10%,48,6.80%,168,526,11,23.80%,74.60%,1.60%,153,171,705,24.30% +142657,860,6043,Independent school,7,0,7,0.00%,100.00%,4,57.10%,3,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142659,855,6036,Independent school,44,9,35,20.50%,79.50%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142661,940,3017,State-funded primary,135,64,71,47.40%,52.60%,2,1.50%,8,5.90%,8,127,0,5.90%,94.10%,0.00%,13,13,135,9.60% +142662,908,2301,State-funded primary,70,33,37,47.10%,52.90%,1,1.40%,4,5.70%,0,68,2,0.00%,97.10%,2.90%,13,12,62,19.40% +142663,373,2337,State-funded primary,521,243,278,46.60%,53.40%,21,4.00%,94,18.00%,425,96,0,81.60%,18.40%,0.00%,201,193,414,46.60% +142664,931,3225,State-funded primary,211,99,112,46.90%,53.10%,6,2.80%,24,11.40%,2,209,0,0.90%,99.10%,0.00%,31,30,177,16.90% +142666,925,7010,State-funded special school,128,35,93,27.30%,72.70%,128,100.00%,0,0.00%,25,102,1,19.50%,79.70%,0.80%,53,42,104,40.40% +142667,925,7009,State-funded special school,210,63,147,30.00%,70.00%,209,99.50%,1,0.50%,25,185,0,11.90%,88.10%,0.00%,99,107,199,53.80% +142668,908,2320,State-funded primary,180,79,101,43.90%,56.10%,0,0.00%,17,9.40%,5,175,0,2.80%,97.20%,0.00%,26,26,152,17.10% +142669,880,3120,State-funded primary,95,46,49,48.40%,51.60%,3,3.20%,25,26.30%,9,86,0,9.50%,90.50%,0.00%,47,50,95,52.60% +142670,878,2065,State-funded primary,201,96,105,47.80%,52.20%,7,3.50%,27,13.40%,5,196,0,2.50%,97.50%,0.00%,43,44,201,21.90% +142671,839,2014,State-funded primary,219,105,114,47.90%,52.10%,5,2.30%,30,13.70%,14,205,0,6.40%,93.60%,0.00%,35,35,219,16.00% +142672,821,6013,Independent school,71,14,57,19.70%,80.30%,24,33.80%,47,66.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142674,384,6004,Independent school,34,4,30,11.80%,88.20%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142675,351,6004,Independent school,26,23,3,88.50%,11.50%,13,50.00%,13,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142677,855,1001,State-funded nursery,54,15,39,27.80%,72.20%,8,14.80%,45,83.30%,7,46,1,13.00%,85.20%,1.90%,6,0,0,0.00% +142678,855,1002,State-funded nursery,56,23,33,41.10%,58.90%,5,8.90%,51,91.10%,1,55,0,1.80%,98.20%,0.00%,8,0,0,0.00% +142679,336,2017,State-funded primary,475,228,247,48.00%,52.00%,9,1.90%,48,10.10%,386,89,0,81.30%,18.70%,0.00%,196,203,438,46.30% +142680,336,2019,State-funded primary,451,244,207,54.10%,45.90%,5,1.10%,47,10.40%,273,178,0,60.50%,39.50%,0.00%,221,226,417,54.20% +142681,380,4027,State-funded secondary,881,390,491,44.30%,55.70%,10,1.10%,202,22.90%,602,230,49,68.30%,26.10%,5.60%,386,440,881,49.90% +142682,870,2028,State-funded primary,423,197,226,46.60%,53.40%,13,3.10%,64,15.10%,303,120,0,71.60%,28.40%,0.00%,98,101,382,26.40% +142683,882,2001,State-funded primary,415,198,217,47.70%,52.30%,6,1.40%,70,16.90%,149,263,3,35.90%,63.40%,0.70%,171,178,381,46.70% +142684,336,2029,State-funded primary,229,92,137,40.20%,59.80%,20,8.70%,11,4.80%,37,192,0,16.20%,83.80%,0.00%,80,83,210,39.50% +142686,330,2443,State-funded primary,397,196,201,49.40%,50.60%,3,0.80%,97,24.40%,294,97,6,74.10%,24.40%,1.50%,195,183,360,50.80% +142687,314,5950,State-funded special school,129,52,77,40.30%,59.70%,120,93.00%,9,7.00%,43,86,0,33.30%,66.70%,0.00%,41,43,104,41.30% +142688,879,2694,State-funded primary,403,186,217,46.20%,53.80%,5,1.20%,33,8.20%,18,385,0,4.50%,95.50%,0.00%,30,30,403,7.40% +142689,886,3306,State-funded primary,196,103,93,52.60%,47.40%,3,1.50%,16,8.20%,6,190,0,3.10%,96.90%,0.00%,19,19,196,9.70% +142690,838,2003,State-funded primary,324,150,174,46.30%,53.70%,14,4.30%,63,19.40%,9,314,1,2.80%,96.90%,0.30%,55,57,324,17.60% +142691,838,3006,State-funded primary,209,100,109,47.80%,52.20%,27,12.90%,70,33.50%,9,200,0,4.30%,95.70%,0.00%,59,59,209,28.20% +142692,838,3007,State-funded primary,91,49,42,53.80%,46.20%,1,1.10%,16,17.60%,0,91,0,0.00%,100.00%,0.00%,14,14,82,17.10% +142693,909,2320,State-funded primary,305,162,143,53.10%,46.90%,5,1.60%,47,15.40%,17,288,0,5.60%,94.40%,0.00%,26,27,291,9.30% +142694,305,2034,State-funded primary,96,47,49,49.00%,51.00%,3,3.10%,22,22.90%,10,86,0,10.40%,89.60%,0.00%,24,24,96,25.00% +142695,825,7012,State-funded special school,230,17,213,7.40%,92.60%,230,100.00%,0,0.00%,3,227,0,1.30%,98.70%,0.00%,111,110,215,51.20% +142696,860,4160,State-funded secondary,470,252,218,53.60%,46.40%,18,3.80%,64,13.60%,10,460,0,2.10%,97.90%,0.00%,126,136,470,28.90% +142697,305,2039,State-funded primary,380,210,170,55.30%,44.70%,15,3.90%,78,20.50%,75,305,0,19.70%,80.30%,0.00%,32,36,380,9.50% +142698,314,7002,State-funded special school,161,51,110,31.70%,68.30%,159,98.80%,2,1.20%,49,112,0,30.40%,69.60%,0.00%,49,51,143,35.70% +142699,301,2006,State-funded primary,802,408,394,50.90%,49.10%,22,2.70%,138,17.20%,597,205,0,74.40%,25.60%,0.00%,194,208,752,27.70% +142700,331,2124,State-funded primary,453,209,244,46.10%,53.90%,4,0.90%,33,7.30%,189,258,6,41.70%,57.00%,1.30%,23,25,422,5.90% +142701,357,2008,State-funded primary,661,345,316,52.20%,47.80%,10,1.50%,96,14.50%,84,577,0,12.70%,87.30%,0.00%,216,207,613,33.80% +142702,350,1109,State-funded AP school,30,3,27,10.00%,90.00%,22,73.30%,6,20.00%,2,28,0,6.70%,93.30%,0.00%,19,24,30,80.00% +142703,304,2067,State-funded primary,340,172,168,50.60%,49.40%,8,2.40%,65,19.10%,250,87,3,73.50%,25.60%,0.90%,95,100,319,31.30% +142704,357,2034,State-funded primary,235,110,125,46.80%,53.20%,4,1.70%,32,13.60%,2,233,0,0.90%,99.10%,0.00%,39,42,209,20.10% +142705,894,3369,State-funded primary,480,222,258,46.30%,53.80%,8,1.70%,155,32.30%,110,370,0,22.90%,77.10%,0.00%,164,166,433,38.30% +142706,885,3328,State-funded primary,192,92,100,47.90%,52.10%,6,3.10%,18,9.40%,4,188,0,2.10%,97.90%,0.00%,21,24,192,12.50% +142707,878,3604,State-funded primary,108,56,52,51.90%,48.10%,3,2.80%,9,8.30%,3,105,0,2.80%,97.20%,0.00%,17,14,91,15.40% +142708,316,2034,State-funded primary,664,324,340,48.80%,51.20%,12,1.80%,49,7.40%,493,171,0,74.20%,25.80%,0.00%,235,247,639,38.70% +142709,878,2421,State-funded primary,70,36,34,51.40%,48.60%,0,0.00%,11,15.70%,0,70,0,0.00%,100.00%,0.00%,1,2,57,3.50% +142710,830,4172,State-funded secondary,863,433,430,50.20%,49.80%,12,1.40%,32,3.70%,9,847,7,1.00%,98.10%,0.80%,124,136,863,15.80% +142711,860,4085,State-funded secondary,317,143,174,45.10%,54.90%,8,2.50%,30,9.50%,6,311,0,1.90%,98.10%,0.00%,74,67,261,25.70% +142712,908,2510,State-funded primary,103,55,48,53.40%,46.60%,2,1.90%,9,8.70%,1,96,6,1.00%,93.20%,5.80%,16,16,103,15.50% +142713,320,2084,State-funded primary,354,159,195,44.90%,55.10%,15,4.20%,40,11.30%,221,133,0,62.40%,37.60%,0.00%,99,112,325,34.50% +142714,895,2205,State-funded primary,598,260,338,43.50%,56.50%,22,3.70%,92,15.40%,135,463,0,22.60%,77.40%,0.00%,193,172,525,32.80% +142715,800,2154,State-funded primary,180,77,103,42.80%,57.20%,2,1.10%,21,11.70%,15,165,0,8.30%,91.70%,0.00%,19,19,180,10.60% +142716,800,2153,State-funded primary,210,98,112,46.70%,53.30%,8,3.80%,29,13.80%,21,189,0,10.00%,90.00%,0.00%,45,45,210,21.40% +142717,357,2005,State-funded primary,245,118,127,48.20%,51.80%,31,12.70%,52,21.20%,22,223,0,9.00%,91.00%,0.00%,96,99,219,45.20% +142718,304,5200,State-funded primary,671,314,357,46.80%,53.20%,51,7.60%,100,14.90%,513,158,0,76.50%,23.50%,0.00%,82,102,642,15.90% +142719,350,1100,State-funded AP school,6,4,2,66.70%,33.30%,4,66.70%,2,33.30%,1,5,0,16.70%,83.30%,0.00%,1,3,5,60.00% +142721,305,2046,State-funded primary,77,42,35,54.50%,45.50%,3,3.90%,9,11.70%,4,73,0,5.20%,94.80%,0.00%,8,8,77,10.40% +142722,311,7003,State-funded special school,75,33,42,44.00%,56.00%,71,94.70%,4,5.30%,23,52,0,30.70%,69.30%,0.00%,26,24,63,38.10% +142723,303,2069,State-funded primary,375,188,187,50.10%,49.90%,21,5.60%,47,12.50%,34,341,0,9.10%,90.90%,0.00%,122,122,356,34.30% +142724,855,3336,State-funded primary,200,94,106,47.00%,53.00%,4,2.00%,15,7.50%,41,159,0,20.50%,79.50%,0.00%,7,7,200,3.50% +142725,891,4230,State-funded secondary,863,429,434,49.70%,50.30%,16,1.90%,110,12.70%,17,846,0,2.00%,98.00%,0.00%,227,255,863,29.50% +142726,316,2081,State-funded primary,473,231,242,48.80%,51.20%,23,4.90%,71,15.00%,419,54,0,88.60%,11.40%,0.00%,142,146,411,35.50% +142727,308,4029,State-funded secondary,1451,680,771,46.90%,53.10%,28,1.90%,108,7.40%,556,878,17,38.30%,60.50%,1.20%,253,261,1212,21.50% +142728,931,2607,State-funded primary,343,152,191,44.30%,55.70%,30,8.70%,55,16.00%,91,241,11,26.50%,70.30%,3.20%,41,44,283,15.50% +142729,306,3409,State-funded primary,219,124,95,56.60%,43.40%,1,0.50%,12,5.50%,27,192,0,12.30%,87.70%,0.00%,16,16,219,7.30% +142730,926,3376,State-funded primary,337,171,166,50.70%,49.30%,4,1.20%,56,16.60%,150,184,3,44.50%,54.60%,0.90%,35,35,311,11.30% +142731,306,3411,State-funded primary,299,147,152,49.20%,50.80%,7,2.30%,66,22.10%,102,180,17,34.10%,60.20%,5.70%,78,82,280,29.30% +142732,926,2022,State-funded primary,419,219,200,52.30%,47.70%,9,2.10%,75,17.90%,202,213,4,48.20%,50.80%,1.00%,38,38,419,9.10% +142733,941,3354,State-funded primary,258,134,124,51.90%,48.10%,1,0.40%,42,16.30%,83,159,16,32.20%,61.60%,6.20%,66,66,235,28.10% +142734,808,3301,State-funded primary,166,80,86,48.20%,51.80%,2,1.20%,24,14.50%,5,161,0,3.00%,97.00%,0.00%,46,48,151,31.80% +142735,870,3300,State-funded primary,437,248,189,56.80%,43.20%,9,2.10%,76,17.40%,287,150,0,65.70%,34.30%,0.00%,78,72,401,18.00% +142736,808,3305,State-funded primary,194,103,91,53.10%,46.90%,6,3.10%,19,9.80%,0,194,0,0.00%,100.00%,0.00%,65,63,163,38.70% +142737,926,3403,State-funded primary,223,119,104,53.40%,46.60%,7,3.10%,36,16.10%,72,144,7,32.30%,64.60%,3.10%,54,57,205,27.80% +142738,941,3350,State-funded primary,199,108,91,54.30%,45.70%,7,3.50%,11,5.50%,64,135,0,32.20%,67.80%,0.00%,46,48,199,24.10% +142739,808,3304,State-funded primary,227,112,115,49.30%,50.70%,3,1.30%,17,7.50%,6,221,0,2.60%,97.40%,0.00%,7,7,203,3.40% +142740,314,7001,State-funded special school,178,65,113,36.50%,63.50%,178,100.00%,0,0.00%,29,149,0,16.30%,83.70%,0.00%,63,62,159,39.00% +142741,830,4000,State-funded secondary,1131,598,533,52.90%,47.10%,22,1.90%,175,15.50%,48,1083,0,4.20%,95.80%,0.00%,339,345,1020,33.80% +142742,941,3355,State-funded primary,296,147,149,49.70%,50.30%,5,1.70%,17,5.70%,123,171,2,41.60%,57.80%,0.70%,65,68,270,25.20% +142743,305,2053,State-funded primary,216,105,111,48.60%,51.40%,8,3.70%,29,13.40%,11,205,0,5.10%,94.90%,0.00%,35,35,216,16.20% +142744,845,7031,State-funded special school,111,27,84,24.30%,75.70%,111,100.00%,0,0.00%,4,107,0,3.60%,96.40%,0.00%,46,49,111,44.10% +142745,845,7030,State-funded special school,144,42,102,29.20%,70.80%,132,91.70%,12,8.30%,11,133,0,7.60%,92.40%,0.00%,49,50,132,37.90% +142747,941,4703,State-funded secondary,872,405,467,46.40%,53.60%,11,1.30%,92,10.60%,339,521,12,38.90%,59.70%,1.40%,230,244,770,31.70% +142748,860,2160,State-funded primary,181,82,99,45.30%,54.70%,3,1.70%,14,7.70%,3,177,1,1.70%,97.80%,0.60%,4,4,181,2.20% +142749,373,2230,State-funded primary,659,338,321,51.30%,48.70%,8,1.20%,96,14.60%,521,138,0,79.10%,20.90%,0.00%,266,255,565,45.10% +142750,319,2034,State-funded primary,327,164,163,50.20%,49.80%,2,0.60%,17,5.20%,90,236,1,27.50%,72.20%,0.30%,36,36,266,13.50% +142751,926,2226,State-funded primary,53,31,22,58.50%,41.50%,3,5.70%,5,9.40%,1,52,0,1.90%,98.10%,0.00%,6,6,53,11.30% +142752,831,3530,State-funded primary,457,236,221,51.60%,48.40%,7,1.50%,21,4.60%,13,444,0,2.80%,97.20%,0.00%,21,23,416,5.50% +142753,882,2108,State-funded primary,525,268,257,51.00%,49.00%,6,1.10%,32,6.10%,22,503,0,4.20%,95.80%,0.00%,28,30,525,5.70% +142754,800,3125,State-funded primary,519,227,292,43.70%,56.30%,12,2.30%,33,6.40%,55,458,6,10.60%,88.20%,1.20%,63,65,519,12.50% +142755,860,4086,State-funded secondary,779,388,391,49.80%,50.20%,10,1.30%,48,6.20%,15,764,0,1.90%,98.10%,0.00%,82,85,571,14.90% +142756,895,2166,State-funded primary,337,170,167,50.40%,49.60%,9,2.70%,40,11.90%,15,322,0,4.50%,95.50%,0.00%,41,42,337,12.50% +142757,891,3771,State-funded primary,225,115,110,51.10%,48.90%,2,0.90%,30,13.30%,51,174,0,22.70%,77.30%,0.00%,68,67,198,33.80% +142758,350,1103,State-funded AP school,67,8,59,11.90%,88.10%,10,14.90%,35,52.20%,5,62,0,7.50%,92.50%,0.00%,43,46,67,68.70% +142759,935,4045,State-funded secondary,1250,616,634,49.30%,50.70%,23,1.80%,246,19.70%,33,1217,0,2.60%,97.40%,0.00%,365,408,1250,32.60% +142760,816,2011,State-funded primary,471,226,245,48.00%,52.00%,10,2.10%,31,6.60%,55,416,0,11.70%,88.30%,0.00%,35,30,423,7.10% +142761,380,4028,State-funded secondary,853,380,473,44.50%,55.50%,13,1.50%,163,19.10%,238,613,2,27.90%,71.90%,0.20%,356,415,829,50.10% +142762,352,4008,State-funded secondary,1182,565,617,47.80%,52.20%,51,4.30%,197,16.70%,351,830,1,29.70%,70.20%,0.10%,589,679,1182,57.40% +142763,878,6065,Independent school,40,13,27,32.50%,67.50%,40,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142764,925,2193,State-funded primary,224,116,108,51.80%,48.20%,9,4.00%,27,12.10%,2,222,0,0.90%,99.10%,0.00%,95,99,224,44.20% +142765,335,2025,State-funded primary,411,194,217,47.20%,52.80%,7,1.70%,40,9.70%,116,295,0,28.20%,71.80%,0.00%,189,190,357,53.20% +142766,350,7006,State-funded special school,88,14,74,15.90%,84.10%,88,100.00%,0,0.00%,1,86,1,1.10%,97.70%,1.10%,52,69,88,78.40% +142768,372,7002,State-funded special school,212,59,153,27.80%,72.20%,212,100.00%,0,0.00%,19,193,0,9.00%,91.00%,0.00%,106,104,196,53.10% +142769,860,2020,State-funded primary,206,100,106,48.50%,51.50%,4,1.90%,36,17.50%,80,126,0,38.80%,61.20%,0.00%,80,81,206,39.30% +142770,935,2116,State-funded primary,89,47,42,52.80%,47.20%,0,0.00%,14,15.70%,4,80,5,4.50%,89.90%,5.60%,26,28,89,31.50% +142771,881,2135,State-funded primary,205,109,96,53.20%,46.80%,4,2.00%,12,5.90%,15,190,0,7.30%,92.70%,0.00%,14,16,205,7.80% +142772,302,2050,State-funded primary,422,210,212,49.80%,50.20%,18,4.30%,30,7.10%,107,315,0,25.40%,74.60%,0.00%,26,27,422,6.40% +142774,382,2049,State-funded primary,682,343,339,50.30%,49.70%,13,1.90%,119,17.40%,204,477,1,29.90%,69.90%,0.10%,216,218,629,34.70% +142775,881,2137,State-funded primary,304,153,151,50.30%,49.70%,6,2.00%,46,15.10%,6,284,14,2.00%,93.40%,4.60%,131,132,304,43.40% +142776,873,6054,Independent school,100,42,58,42.00%,58.00%,3,3.00%,21,21.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142779,855,6037,Independent school,23,13,10,56.50%,43.50%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142780,801,7003,State-funded special school,242,50,192,20.70%,79.30%,241,99.60%,1,0.40%,74,168,0,30.60%,69.40%,0.00%,110,114,230,49.60% +142781,313,4004,State-funded secondary,276,92,184,33.30%,66.70%,9,3.30%,31,11.20%,115,160,1,41.70%,58.00%,0.40%,82,34,98,34.70% +142782,358,7002,State-funded special school,125,27,98,21.60%,78.40%,111,88.80%,14,11.20%,57,68,0,45.60%,54.40%,0.00%,62,63,115,54.80% +142783,941,7000,State-funded special school,205,65,140,31.70%,68.30%,205,100.00%,0,0.00%,24,181,0,11.70%,88.30%,0.00%,75,66,180,36.70% +142784,380,6013,Independent school,14,2,12,14.30%,85.70%,12,85.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142785,894,2002,State-funded primary,233,113,120,48.50%,51.50%,3,1.30%,30,12.90%,19,214,0,8.20%,91.80%,0.00%,100,102,213,47.90% +142786,935,2120,State-funded primary,78,35,43,44.90%,55.10%,2,2.60%,15,19.20%,6,72,0,7.70%,92.30%,0.00%,26,27,78,34.60% +142787,856,2007,State-funded primary,479,240,239,50.10%,49.90%,8,1.70%,36,7.50%,424,55,0,88.50%,11.50%,0.00%,133,138,479,28.80% +142788,879,2005,State-funded primary,420,209,211,49.80%,50.20%,3,0.70%,35,8.30%,7,413,0,1.70%,98.30%,0.00%,47,51,420,12.10% +142789,908,2300,State-funded primary,187,95,92,50.80%,49.20%,3,1.60%,24,12.80%,6,169,12,3.20%,90.40%,6.40%,30,31,187,16.60% +142790,868,2098,State-funded primary,173,82,91,47.40%,52.60%,4,2.30%,19,11.00%,42,131,0,24.30%,75.70%,0.00%,58,53,148,35.80% +142791,868,4063,State-funded secondary,521,250,271,48.00%,52.00%,18,3.50%,99,19.00%,91,429,1,17.50%,82.30%,0.20%,119,140,521,26.90% +142792,860,2145,State-funded primary,215,105,110,48.80%,51.20%,10,4.70%,42,19.50%,142,73,0,66.00%,34.00%,0.00%,70,71,215,33.00% +142793,873,1108,State-funded AP school,1,0,1,0.00%,100.00%,0,0.00%,1,100.00%,0,1,0,0.00%,100.00%,0.00%,1,1,1,100.00% +142794,330,2448,State-funded primary,199,95,104,47.70%,52.30%,1,0.50%,41,20.60%,27,172,0,13.60%,86.40%,0.00%,105,106,199,53.30% +142795,372,7011,State-funded special school,134,28,106,20.90%,79.10%,134,100.00%,0,0.00%,14,120,0,10.40%,89.60%,0.00%,55,55,114,48.20% +142797,372,7003,State-funded special school,135,43,92,31.90%,68.10%,135,100.00%,0,0.00%,15,120,0,11.10%,88.90%,0.00%,54,47,93,50.50% +142798,340,4613,State-funded secondary,855,414,441,48.40%,51.60%,22,2.60%,161,18.80%,56,790,9,6.50%,92.40%,1.10%,434,468,855,54.70% +142799,860,2128,State-funded primary,152,81,71,53.30%,46.70%,2,1.30%,24,15.80%,96,56,0,63.20%,36.80%,0.00%,47,47,152,30.90% +142800,933,2048,State-funded primary,298,151,147,50.70%,49.30%,8,2.70%,23,7.70%,30,265,3,10.10%,88.90%,1.00%,64,65,284,22.90% +142801,935,1101,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +142802,878,2031,State-funded primary,165,76,89,46.10%,53.90%,7,4.20%,34,20.60%,31,134,0,18.80%,81.20%,0.00%,74,75,165,45.50% +142803,878,2440,State-funded primary,211,98,113,46.40%,53.60%,2,0.90%,18,8.50%,7,204,0,3.30%,96.70%,0.00%,25,25,211,11.80% +142804,908,3797,State-funded primary,233,123,110,52.80%,47.20%,4,1.70%,28,12.00%,34,199,0,14.60%,85.40%,0.00%,44,42,200,21.00% +142805,878,4016,State-funded secondary,986,479,507,48.60%,51.40%,45,4.60%,226,22.90%,181,803,2,18.40%,81.40%,0.20%,225,288,986,29.20% +142806,935,3335,State-funded primary,192,106,86,55.20%,44.80%,2,1.00%,20,10.40%,31,153,8,16.10%,79.70%,4.20%,25,27,192,14.10% +142807,908,2326,State-funded primary,429,204,225,47.60%,52.40%,6,1.40%,65,15.20%,35,394,0,8.20%,91.80%,0.00%,69,70,429,16.30% +142808,935,1102,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +142809,860,3132,State-funded primary,130,68,62,52.30%,47.70%,0,0.00%,9,6.90%,5,123,2,3.80%,94.60%,1.50%,6,6,130,4.60% +142810,873,2040,State-funded primary,181,85,96,47.00%,53.00%,2,1.10%,33,18.20%,7,174,0,3.90%,96.10%,0.00%,75,75,181,41.40% +142811,873,2042,State-funded primary,73,43,30,58.90%,41.10%,3,4.10%,8,11.00%,4,67,2,5.50%,91.80%,2.70%,12,13,49,26.50% +142812,830,2016,State-funded primary,132,58,74,43.90%,56.10%,2,1.50%,18,13.60%,9,123,0,6.80%,93.20%,0.00%,65,63,106,59.40% +142813,881,2126,State-funded primary,401,186,215,46.40%,53.60%,5,1.20%,73,18.20%,46,355,0,11.50%,88.50%,0.00%,105,114,334,34.10% +142814,886,2078,State-funded primary,396,184,212,46.50%,53.50%,6,1.50%,64,16.20%,10,386,0,2.50%,97.50%,0.00%,138,142,396,35.90% +142817,887,2017,State-funded primary,668,316,352,47.30%,52.70%,11,1.60%,80,12.00%,74,594,0,11.10%,88.90%,0.00%,180,185,621,29.80% +142818,926,2125,State-funded primary,176,84,92,47.70%,52.30%,12,6.80%,64,36.40%,55,121,0,31.30%,68.80%,0.00%,89,91,176,51.70% +142819,933,2023,State-funded primary,148,69,79,46.60%,53.40%,3,2.00%,25,16.90%,9,135,4,6.10%,91.20%,2.70%,25,25,148,16.90% +142820,935,1114,State-funded AP school,11,0,11,0.00%,100.00%,10,90.90%,1,9.10%,0,11,0,0.00%,100.00%,0.00%,9,10,11,90.90% +142821,894,4002,State-funded secondary,1216,571,645,47.00%,53.00%,14,1.20%,150,12.30%,169,1044,3,13.90%,85.90%,0.20%,305,333,1216,27.40% +142822,869,4001,State-funded secondary,429,227,202,52.90%,47.10%,17,4.00%,51,11.90%,23,406,0,5.40%,94.60%,0.00%,133,143,429,33.30% +142823,336,2031,State-funded primary,227,115,112,50.70%,49.30%,5,2.20%,33,14.50%,104,123,0,45.80%,54.20%,0.00%,142,142,205,69.30% +142824,380,2028,State-funded primary,538,256,282,47.60%,52.40%,12,2.20%,59,11.00%,346,189,3,64.30%,35.10%,0.60%,262,253,488,51.80% +142825,380,4029,State-funded secondary,1461,698,763,47.80%,52.20%,51,3.50%,231,15.80%,104,1357,0,7.10%,92.90%,0.00%,595,672,1461,46.00% +142827,830,2020,State-funded primary,126,75,51,59.50%,40.50%,2,1.60%,28,22.20%,4,122,0,3.20%,96.80%,0.00%,74,68,108,63.00% +142828,812,6004,Independent school,9,2,7,22.20%,77.80%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142832,304,6003,Independent school,14,4,10,28.60%,71.40%,2,14.30%,5,35.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142833,885,6044,Independent school,60,17,43,28.30%,71.70%,60,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142834,886,2079,State-funded primary,643,288,355,44.80%,55.20%,11,1.70%,42,6.50%,40,602,1,6.20%,93.60%,0.20%,133,137,643,21.30% +142835,879,1106,State-funded AP school,221,57,164,25.80%,74.20%,106,48.00%,21,9.50%,4,217,0,1.80%,98.20%,0.00%,118,144,219,65.80% +142836,380,2020,State-funded primary,587,318,269,54.20%,45.80%,7,1.20%,96,16.40%,527,60,0,89.80%,10.20%,0.00%,202,207,527,39.30% +142837,926,3016,State-funded primary,157,75,82,47.80%,52.20%,1,0.60%,24,15.30%,4,153,0,2.50%,97.50%,0.00%,36,40,157,25.50% +142838,816,2431,State-funded primary,191,93,98,48.70%,51.30%,5,2.60%,11,5.80%,45,137,9,23.60%,71.70%,4.70%,34,37,191,19.40% +142839,830,3068,State-funded primary,61,27,34,44.30%,55.70%,1,1.60%,13,21.30%,2,59,0,3.30%,96.70%,0.00%,26,26,61,42.60% +142840,926,2247,State-funded primary,357,159,198,44.50%,55.50%,7,2.00%,30,8.40%,47,309,1,13.20%,86.60%,0.30%,66,69,357,19.30% +142841,812,2897,State-funded primary,318,139,179,43.70%,56.30%,3,0.90%,20,6.30%,14,304,0,4.40%,95.60%,0.00%,105,109,289,37.70% +142842,926,5201,State-funded primary,107,52,55,48.60%,51.40%,5,4.70%,19,17.80%,3,104,0,2.80%,97.20%,0.00%,31,34,107,31.80% +142843,860,2252,State-funded primary,416,197,219,47.40%,52.60%,9,2.20%,45,10.80%,24,392,0,5.80%,94.20%,0.00%,113,121,416,29.10% +142844,816,2001,State-funded primary,425,197,228,46.40%,53.60%,9,2.10%,21,4.90%,11,414,0,2.60%,97.40%,0.00%,26,29,425,6.80% +142845,816,3302,State-funded primary,141,61,80,43.30%,56.70%,4,2.80%,15,10.60%,13,125,3,9.20%,88.70%,2.10%,25,25,141,17.70% +142846,868,3012,State-funded primary,229,103,126,45.00%,55.00%,7,3.10%,32,14.00%,4,225,0,1.70%,98.30%,0.00%,31,31,227,13.70% +142847,825,2060,State-funded primary,137,64,73,46.70%,53.30%,0,0.00%,12,8.80%,5,131,1,3.60%,95.60%,0.70%,1,1,137,0.70% +142848,856,2340,State-funded primary,235,130,105,55.30%,44.70%,11,4.70%,38,16.20%,88,146,1,37.40%,62.10%,0.40%,100,101,209,48.30% +142849,879,3768,State-funded primary,654,306,348,46.80%,53.20%,9,1.40%,61,9.30%,57,596,1,8.70%,91.10%,0.20%,92,95,653,14.50% +142850,908,2453,State-funded primary,363,171,192,47.10%,52.90%,10,2.80%,65,17.90%,14,344,5,3.90%,94.80%,1.40%,152,156,363,43.00% +142851,815,3260,State-funded primary,99,50,49,50.50%,49.50%,1,1.00%,14,14.10%,2,97,0,2.00%,98.00%,0.00%,7,7,99,7.10% +142852,926,3123,State-funded primary,86,45,41,52.30%,47.70%,2,2.30%,17,19.80%,2,84,0,2.30%,97.70%,0.00%,19,21,86,24.40% +142853,802,4144,State-funded secondary,1000,438,562,43.80%,56.20%,22,2.20%,159,15.90%,123,877,0,12.30%,87.70%,0.00%,181,193,907,21.30% +142855,926,3089,State-funded primary,41,16,25,39.00%,61.00%,1,2.40%,12,29.30%,1,40,0,2.40%,97.60%,0.00%,19,19,41,46.30% +142856,888,4040,State-funded secondary,678,324,354,47.80%,52.20%,9,1.30%,90,13.30%,69,605,4,10.20%,89.20%,0.60%,166,177,678,26.10% +142857,856,2327,State-funded primary,457,237,220,51.90%,48.10%,8,1.80%,57,12.50%,143,313,1,31.30%,68.50%,0.20%,138,139,419,33.20% +142858,330,2180,State-funded primary,485,259,226,53.40%,46.60%,4,0.80%,112,23.10%,469,16,0,96.70%,3.30%,0.00%,188,177,427,41.50% +142859,886,6143,Independent school,20,4,16,20.00%,80.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142861,306,2104,State-funded primary,195,96,99,49.20%,50.80%,4,2.10%,10,5.10%,154,41,0,79.00%,21.00%,0.00%,20,20,195,10.30% +142862,919,2054,State-funded primary,422,213,209,50.50%,49.50%,5,1.20%,49,11.60%,14,408,0,3.30%,96.70%,0.00%,12,12,422,2.80% +142864,310,4001,State-funded secondary,1100,532,568,48.40%,51.60%,61,5.50%,94,8.50%,458,623,19,41.60%,56.60%,1.70%,104,110,899,12.20% +142866,888,2004,State-funded primary,422,204,218,48.30%,51.70%,10,2.40%,39,9.20%,350,68,4,82.90%,16.10%,0.90%,60,63,422,14.90% +142869,941,4020,State-funded secondary,1366,676,690,49.50%,50.50%,24,1.80%,202,14.80%,243,1118,5,17.80%,81.80%,0.40%,120,119,1171,10.20% +142871,926,2126,State-funded primary,409,207,202,50.60%,49.40%,8,2.00%,52,12.70%,155,236,18,37.90%,57.70%,4.40%,85,87,409,21.30% +142874,308,4002,State-funded primary,282,148,134,52.50%,47.50%,7,2.50%,32,11.30%,84,195,3,29.80%,69.10%,1.10%,103,106,282,37.60% +142875,210,2007,State-funded primary,380,203,177,53.40%,46.60%,10,2.60%,58,15.30%,126,254,0,33.20%,66.80%,0.00%,163,174,380,45.80% +142879,211,4003,State-funded secondary,454,242,212,53.30%,46.70%,32,7.00%,60,13.20%,108,345,1,23.80%,76.00%,0.20%,157,180,454,39.60% +142881,937,4009,State-funded secondary,976,529,447,54.20%,45.80%,24,2.50%,164,16.80%,231,722,23,23.70%,74.00%,2.40%,287,280,836,33.50% +142882,394,1105,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +142883,926,4025,State-funded secondary,894,490,404,54.80%,45.20%,19,2.10%,63,7.00%,288,604,2,32.20%,67.60%,0.20%,500,516,876,58.90% +142884,815,4002,State-funded secondary,190,56,134,29.50%,70.50%,5,2.60%,24,12.60%,5,182,3,2.60%,95.80%,1.60%,49,50,169,29.60% +142885,311,2031,State-funded primary,415,220,195,53.00%,47.00%,9,2.20%,30,7.20%,299,116,0,72.00%,28.00%,0.00%,94,96,415,23.10% +142886,878,2067,State-funded primary,522,251,271,48.10%,51.90%,6,1.10%,71,13.60%,35,487,0,6.70%,93.30%,0.00%,94,81,422,19.20% +142887,312,4014,State-funded secondary,380,241,139,63.40%,36.60%,12,3.20%,52,13.70%,69,311,0,18.20%,81.80%,0.00%,97,48,131,36.60% +142888,330,2167,State-funded primary,632,324,308,51.30%,48.70%,4,0.60%,80,12.70%,298,257,77,47.20%,40.70%,12.20%,195,209,632,33.10% +142889,313,2029,State-funded primary,407,202,205,49.60%,50.40%,4,1.00%,40,9.80%,300,107,0,73.70%,26.30%,0.00%,131,134,407,32.90% +142890,895,4004,State-funded secondary,218,75,143,34.40%,65.60%,2,0.90%,28,12.80%,40,174,4,18.30%,79.80%,1.80%,63,59,161,36.60% +142891,341,4007,State-funded secondary,371,248,123,66.80%,33.20%,10,2.70%,83,22.40%,0,371,0,0.00%,100.00%,0.00%,30,0,0,0.00% +142893,352,7000,State-funded special school,129,43,86,33.30%,66.70%,129,100.00%,0,0.00%,17,112,0,13.20%,86.80%,0.00%,84,72,108,66.70% +142894,840,4006,State-funded secondary,429,91,338,21.20%,78.80%,9,2.10%,98,22.80%,11,418,0,2.60%,97.40%,0.00%,92,72,270,26.70% +142896,317,4002,State-funded secondary,945,445,500,47.10%,52.90%,10,1.10%,74,7.80%,429,513,3,45.40%,54.30%,0.30%,107,121,898,13.50% +142897,305,2068,State-funded primary,399,188,211,47.10%,52.90%,10,2.50%,28,7.00%,74,324,1,18.50%,81.20%,0.30%,36,38,399,9.50% +142898,350,2009,State-funded primary,420,212,208,50.50%,49.50%,7,1.70%,32,7.60%,196,224,0,46.70%,53.30%,0.00%,76,76,420,18.10% +142899,877,4004,State-funded secondary,249,80,169,32.10%,67.90%,7,2.80%,56,22.50%,20,226,3,8.00%,90.80%,1.20%,84,72,188,38.30% +142900,334,4001,State-funded secondary,439,73,366,16.60%,83.40%,9,2.10%,102,23.20%,34,402,3,7.70%,91.60%,0.70%,136,107,261,41.00% +142902,874,4004,State-funded secondary,437,135,302,30.90%,69.10%,6,1.40%,49,11.20%,96,339,2,22.00%,77.60%,0.50%,120,120,369,32.50% +142903,316,4009,State-funded secondary,730,192,538,26.30%,73.70%,7,1.00%,36,4.90%,393,337,0,53.80%,46.20%,0.00%,237,139,289,48.10% +142904,310,2002,State-funded primary,390,189,201,48.50%,51.50%,6,1.50%,56,14.40%,169,221,0,43.30%,56.70%,0.00%,65,65,390,16.70% +142905,208,4005,State-funded secondary,204,67,137,32.80%,67.20%,5,2.50%,13,6.40%,47,156,1,23.00%,76.50%,0.50%,53,8,23,34.80% +142906,850,1107,State-funded AP school,24,11,13,45.80%,54.20%,23,95.80%,1,4.20%,0,24,0,0.00%,100.00%,0.00%,11,14,24,58.30% +142907,826,2021,State-funded primary,628,319,309,50.80%,49.20%,16,2.50%,78,12.40%,270,357,1,43.00%,56.80%,0.20%,55,57,584,9.80% +142908,301,4006,State-funded secondary,967,442,525,45.70%,54.30%,11,1.10%,146,15.10%,782,184,1,80.90%,19.00%,0.10%,315,331,901,36.70% +142911,815,6034,Independent school,27,2,25,7.40%,92.60%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142912,373,6006,Independent school,30,19,11,63.30%,36.70%,6,20.00%,24,80.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142923,350,3304,State-funded primary,461,229,232,49.70%,50.30%,8,1.70%,69,15.00%,326,133,2,70.70%,28.90%,0.40%,131,143,418,34.20% +142924,886,2080,State-funded primary,467,223,244,47.80%,52.20%,4,0.90%,45,9.60%,58,409,0,12.40%,87.60%,0.00%,107,111,426,26.10% +142926,941,1108,State-funded AP school,43,4,39,9.30%,90.70%,14,32.60%,27,62.80%,2,41,0,4.70%,95.30%,0.00%,17,24,43,55.80% +142928,208,7000,State-funded special school,59,15,44,25.40%,74.60%,59,100.00%,0,0.00%,4,53,2,6.80%,89.80%,3.40%,28,31,52,59.60% +142930,892,6021,Independent school,29,6,23,20.70%,79.30%,2,6.90%,14,48.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142931,889,6015,Independent school,24,11,13,45.80%,54.20%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142932,873,7006,State-funded special school,77,26,51,33.80%,66.20%,77,100.00%,0,0.00%,0,77,0,0.00%,100.00%,0.00%,45,49,77,63.60% +142933,371,2007,State-funded primary,204,100,104,49.00%,51.00%,2,1.00%,37,18.10%,26,173,5,12.70%,84.80%,2.50%,52,54,204,26.50% +142935,881,2138,State-funded primary,64,25,39,39.10%,60.90%,2,3.10%,7,10.90%,1,63,0,1.60%,98.40%,0.00%,18,19,64,29.70% +142936,352,2043,State-funded primary,339,169,170,49.90%,50.10%,11,3.20%,33,9.70%,57,282,0,16.80%,83.20%,0.00%,76,76,300,25.30% +142937,373,2045,State-funded primary,297,134,163,45.10%,54.90%,21,7.10%,78,26.30%,55,242,0,18.50%,81.50%,0.00%,206,187,260,71.90% +142938,882,1102,State-funded AP school,43,14,29,32.60%,67.40%,0,0.00%,41,95.30%,1,42,0,2.30%,97.70%,0.00%,30,35,43,81.40% +142939,855,6038,Independent school,31,7,24,22.60%,77.40%,31,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +142940,882,7000,State-funded special school,64,9,55,14.10%,85.90%,64,100.00%,0,0.00%,0,64,0,0.00%,100.00%,0.00%,48,53,64,82.80% +142941,800,2249,State-funded primary,179,75,104,41.90%,58.10%,8,4.50%,23,12.80%,12,167,0,6.70%,93.30%,0.00%,34,34,167,20.40% +142942,800,2293,State-funded primary,192,85,107,44.30%,55.70%,9,4.70%,35,18.20%,4,188,0,2.10%,97.90%,0.00%,44,40,169,23.70% +142943,800,3128,State-funded primary,409,197,212,48.20%,51.80%,20,4.90%,37,9.00%,26,382,1,6.40%,93.40%,0.20%,64,66,409,16.10% +142944,350,3016,State-funded primary,358,181,177,50.60%,49.40%,12,3.40%,49,13.70%,75,283,0,20.90%,79.10%,0.00%,158,165,299,55.20% +142945,380,3352,State-funded primary,197,99,98,50.30%,49.70%,4,2.00%,35,17.80%,32,165,0,16.20%,83.80%,0.00%,37,39,197,19.80% +142946,380,3375,State-funded primary,201,98,103,48.80%,51.20%,3,1.50%,13,6.50%,9,192,0,4.50%,95.50%,0.00%,22,24,201,11.90% +142947,380,3371,State-funded primary,237,113,124,47.70%,52.30%,10,4.20%,29,12.20%,23,214,0,9.70%,90.30%,0.00%,25,24,211,11.40% +142948,380,5205,State-funded primary,442,211,231,47.70%,52.30%,1,0.20%,34,7.70%,7,432,3,1.60%,97.70%,0.70%,40,41,391,10.50% +142949,380,2121,State-funded primary,310,164,146,52.90%,47.10%,14,4.50%,18,5.80%,2,308,0,0.60%,99.40%,0.00%,30,30,287,10.50% +142950,380,2127,State-funded primary,227,126,101,55.50%,44.50%,5,2.20%,23,10.10%,2,225,0,0.90%,99.10%,0.00%,24,24,204,11.80% +142951,380,3350,State-funded primary,415,224,191,54.00%,46.00%,10,2.40%,43,10.40%,53,362,0,12.80%,87.20%,0.00%,91,95,380,25.00% +142952,908,2410,State-funded primary,205,101,104,49.30%,50.70%,4,2.00%,59,28.80%,9,196,0,4.40%,95.60%,0.00%,59,60,205,29.30% +142953,908,2707,State-funded primary,118,64,54,54.20%,45.80%,2,1.70%,17,14.40%,0,118,0,0.00%,100.00%,0.00%,24,22,103,21.40% +142954,908,2508,State-funded primary,58,29,29,50.00%,50.00%,3,5.20%,10,17.20%,1,57,0,1.70%,98.30%,0.00%,6,6,53,11.30% +142955,908,2737,State-funded primary,107,51,56,47.70%,52.30%,5,4.70%,13,12.10%,0,107,0,0.00%,100.00%,0.00%,21,21,86,24.40% +142956,908,2716,State-funded primary,63,28,35,44.40%,55.60%,1,1.60%,3,4.80%,0,63,0,0.00%,100.00%,0.00%,6,7,63,11.10% +142957,908,2231,State-funded primary,106,57,49,53.80%,46.20%,1,0.90%,17,16.00%,1,105,0,0.90%,99.10%,0.00%,22,24,106,22.60% +142958,908,2502,State-funded primary,426,208,218,48.80%,51.20%,26,6.10%,101,23.70%,29,397,0,6.80%,93.20%,0.00%,173,176,383,46.00% +142959,908,2404,State-funded primary,24,16,8,66.70%,33.30%,0,0.00%,7,29.20%,4,20,0,16.70%,83.30%,0.00%,10,10,22,45.50% +142960,331,4030,State-funded secondary,908,411,497,45.30%,54.70%,13,1.40%,151,16.60%,317,591,0,34.90%,65.10%,0.00%,350,327,798,41.00% +142961,841,3133,State-funded primary,101,50,51,49.50%,50.50%,1,1.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,13,13,101,12.90% +142962,841,3002,State-funded primary,191,106,85,55.50%,44.50%,3,1.60%,39,20.40%,15,176,0,7.90%,92.10%,0.00%,69,69,191,36.10% +142963,838,3369,State-funded primary,142,76,66,53.50%,46.50%,1,0.70%,25,17.60%,7,135,0,4.90%,95.10%,0.00%,12,12,142,8.50% +142964,332,2102,State-funded primary,525,261,264,49.70%,50.30%,11,2.10%,68,13.00%,145,380,0,27.60%,72.40%,0.00%,150,151,478,31.60% +142965,805,2090,State-funded primary,319,161,158,50.50%,49.50%,7,2.20%,61,19.10%,33,286,0,10.30%,89.70%,0.00%,191,193,274,70.40% +142966,311,2036,State-funded primary,225,111,114,49.30%,50.70%,5,2.20%,40,17.80%,82,143,0,36.40%,63.60%,0.00%,70,70,180,38.90% +142967,856,2328,State-funded primary,251,113,138,45.00%,55.00%,19,7.60%,23,9.20%,133,117,1,53.00%,46.60%,0.40%,62,65,221,29.40% +142968,926,2201,State-funded primary,311,161,150,51.80%,48.20%,15,4.80%,37,11.90%,124,182,5,39.90%,58.50%,1.60%,139,137,273,50.20% +142969,812,2937,State-funded primary,189,105,84,55.60%,44.40%,2,1.10%,53,28.00%,45,144,0,23.80%,76.20%,0.00%,100,90,153,58.80% +142970,839,3154,State-funded primary,347,160,187,46.10%,53.90%,1,0.30%,17,4.90%,65,282,0,18.70%,81.30%,0.00%,8,8,347,2.30% +142971,839,2260,State-funded primary,201,93,108,46.30%,53.70%,3,1.50%,22,10.90%,60,141,0,29.90%,70.10%,0.00%,66,67,167,40.10% +142972,839,2152,State-funded primary,346,171,175,49.40%,50.60%,5,1.40%,44,12.70%,49,297,0,14.20%,85.80%,0.00%,33,33,346,9.50% +142973,839,3152,State-funded primary,623,326,297,52.30%,47.70%,4,0.60%,90,14.40%,77,546,0,12.40%,87.60%,0.00%,98,101,623,16.20% +142974,839,3211,State-funded primary,720,330,390,45.80%,54.20%,9,1.30%,46,6.40%,56,664,0,7.80%,92.20%,0.00%,38,42,720,5.80% +142975,839,2259,State-funded primary,437,224,213,51.30%,48.70%,6,1.40%,49,11.20%,48,389,0,11.00%,89.00%,0.00%,110,115,437,26.30% +142976,372,2018,State-funded primary,190,111,79,58.40%,41.60%,6,3.20%,58,30.50%,24,166,0,12.60%,87.40%,0.00%,135,144,190,75.80% +142977,372,2019,State-funded primary,110,56,54,50.90%,49.10%,1,0.90%,50,45.50%,10,100,0,9.10%,90.90%,0.00%,56,56,94,59.60% +142978,372,2116,State-funded primary,139,68,71,48.90%,51.10%,7,5.00%,32,23.00%,7,132,0,5.00%,95.00%,0.00%,53,50,119,42.00% +142979,334,2020,State-funded primary,221,111,110,50.20%,49.80%,9,4.10%,22,10.00%,31,190,0,14.00%,86.00%,0.00%,16,15,181,8.30% +142980,860,4133,State-funded secondary,509,249,260,48.90%,51.10%,9,1.80%,43,8.40%,8,501,0,1.60%,98.40%,0.00%,85,96,509,18.90% +142981,860,2352,State-funded primary,402,218,184,54.20%,45.80%,2,0.50%,49,12.20%,27,375,0,6.70%,93.30%,0.00%,14,15,402,3.70% +142982,860,3114,State-funded primary,147,65,82,44.20%,55.80%,3,2.00%,5,3.40%,4,143,0,2.70%,97.30%,0.00%,14,15,147,10.20% +142983,860,4180,State-funded secondary,962,503,459,52.30%,47.70%,21,2.20%,168,17.50%,53,909,0,5.50%,94.50%,0.00%,145,171,869,19.70% +142984,860,2392,State-funded primary,365,176,189,48.20%,51.80%,4,1.10%,47,12.90%,24,341,0,6.60%,93.40%,0.00%,64,68,365,18.60% +142985,860,3498,State-funded primary,428,205,223,47.90%,52.10%,4,0.90%,30,7.00%,58,362,8,13.60%,84.60%,1.90%,12,12,428,2.80% +142986,860,3044,State-funded primary,311,169,142,54.30%,45.70%,7,2.30%,31,10.00%,6,305,0,1.90%,98.10%,0.00%,34,34,310,11.00% +142987,860,4111,State-funded secondary,1312,655,657,49.90%,50.10%,16,1.20%,98,7.50%,54,1258,0,4.10%,95.90%,0.00%,81,79,1056,7.50% +142988,861,2013,State-funded primary,448,228,220,50.90%,49.10%,6,1.30%,109,24.30%,237,211,0,52.90%,47.10%,0.00%,203,193,402,48.00% +142989,861,2115,State-funded primary,477,229,248,48.00%,52.00%,6,1.30%,43,9.00%,9,468,0,1.90%,98.10%,0.00%,80,78,418,18.70% +142990,861,2114,State-funded primary,460,227,233,49.30%,50.70%,10,2.20%,25,5.40%,31,429,0,6.70%,93.30%,0.00%,19,19,415,4.60% +142991,861,2117,State-funded primary,465,241,224,51.80%,48.20%,10,2.20%,64,13.80%,36,429,0,7.70%,92.30%,0.00%,170,164,411,39.90% +142992,861,2009,State-funded primary,224,117,107,52.20%,47.80%,6,2.70%,21,9.40%,23,201,0,10.30%,89.70%,0.00%,75,67,198,33.80% +142993,935,2022,State-funded primary,248,129,119,52.00%,48.00%,4,1.60%,35,14.10%,121,127,0,48.80%,51.20%,0.00%,32,32,217,14.70% +142994,935,3097,State-funded primary,94,44,50,46.80%,53.20%,2,2.10%,13,13.80%,3,91,0,3.20%,96.80%,0.00%,9,9,94,9.60% +142995,935,2030,State-funded primary,198,98,100,49.50%,50.50%,2,1.00%,22,11.10%,3,195,0,1.50%,98.50%,0.00%,21,22,198,11.10% +142996,394,2168,State-funded primary,139,78,61,56.10%,43.90%,4,2.90%,47,33.80%,5,134,0,3.60%,96.40%,0.00%,57,57,124,46.00% +142997,394,2144,State-funded primary,214,108,106,50.50%,49.50%,5,2.30%,36,16.80%,4,210,0,1.90%,98.10%,0.00%,35,36,192,18.80% +142998,936,2401,State-funded primary,212,91,121,42.90%,57.10%,27,12.70%,12,5.70%,13,199,0,6.10%,93.90%,0.00%,26,27,212,12.70% +142999,936,2313,State-funded primary,375,169,206,45.10%,54.90%,32,8.50%,37,9.90%,28,347,0,7.50%,92.50%,0.00%,44,45,375,12.00% +143000,936,2095,State-funded primary,206,94,112,45.60%,54.40%,19,9.20%,27,13.10%,35,171,0,17.00%,83.00%,0.00%,31,34,194,17.50% +143001,936,2381,State-funded primary,244,115,129,47.10%,52.90%,6,2.50%,23,9.40%,78,166,0,32.00%,68.00%,0.00%,9,9,180,5.00% +143003,384,2067,State-funded primary,302,145,157,48.00%,52.00%,10,3.30%,70,23.20%,14,288,0,4.60%,95.40%,0.00%,66,72,271,26.60% +143004,865,3061,State-funded primary,142,77,65,54.20%,45.80%,0,0.00%,19,13.40%,3,139,0,2.10%,97.90%,0.00%,11,11,142,7.70% +143005,865,4071,State-funded secondary,441,228,213,51.70%,48.30%,15,3.40%,62,14.10%,16,425,0,3.60%,96.40%,0.00%,69,90,441,20.40% +143006,865,3071,State-funded primary,444,214,230,48.20%,51.80%,10,2.30%,85,19.10%,19,417,8,4.30%,93.90%,1.80%,13,21,395,5.30% +143007,865,3022,State-funded primary,176,97,79,55.10%,44.90%,3,1.70%,41,23.30%,27,149,0,15.30%,84.70%,0.00%,10,10,160,6.30% +143009,865,3094,State-funded primary,86,39,47,45.30%,54.70%,0,0.00%,15,17.40%,3,83,0,3.50%,96.50%,0.00%,7,9,86,10.50% +143010,800,2162,State-funded primary,181,90,91,49.70%,50.30%,2,1.10%,14,7.70%,28,153,0,15.50%,84.50%,0.00%,13,13,181,7.20% +143011,895,2137,State-funded primary,414,189,225,45.70%,54.30%,10,2.40%,52,12.60%,16,397,1,3.90%,95.90%,0.20%,12,13,414,3.10% +143012,861,2111,State-funded primary,231,124,107,53.70%,46.30%,1,0.40%,13,5.60%,9,222,0,3.90%,96.10%,0.00%,14,14,207,6.80% +143013,866,7013,State-funded special school,114,27,87,23.70%,76.30%,114,100.00%,0,0.00%,28,85,1,24.60%,74.60%,0.90%,45,50,114,43.90% +143014,866,7012,State-funded special school,155,38,117,24.50%,75.50%,155,100.00%,0,0.00%,33,122,0,21.30%,78.70%,0.00%,52,39,102,38.20% +143015,892,3000,State-funded primary,235,130,105,55.30%,44.70%,1,0.40%,21,8.90%,32,203,0,13.60%,86.40%,0.00%,112,103,207,49.80% +143016,908,2028,State-funded primary,106,54,52,50.90%,49.10%,1,0.90%,11,10.40%,2,104,0,1.90%,98.10%,0.00%,12,12,106,11.30% +143018,916,6006,Independent school,86,44,42,51.20%,48.80%,12,14.00%,8,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143020,206,2001,State-funded primary,265,134,131,50.60%,49.40%,2,0.80%,16,6.00%,81,183,1,30.60%,69.10%,0.40%,54,59,265,22.30% +143021,802,3450,State-funded primary,272,140,132,51.50%,48.50%,6,2.20%,20,7.40%,12,260,0,4.40%,95.60%,0.00%,24,24,272,8.80% +143022,318,4002,State-funded secondary,748,266,482,35.60%,64.40%,20,2.70%,108,14.40%,211,537,0,28.20%,71.80%,0.00%,123,146,748,19.50% +143025,940,2201,State-funded primary,423,209,214,49.40%,50.60%,9,2.10%,88,20.80%,94,324,5,22.20%,76.60%,1.20%,124,128,377,34.00% +143026,350,6004,Independent school,53,11,42,20.80%,79.20%,30,56.60%,17,32.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143030,350,2081,State-funded primary,480,239,241,49.80%,50.20%,14,2.90%,102,21.30%,40,440,0,8.30%,91.70%,0.00%,239,243,410,59.30% +143031,350,2071,State-funded primary,260,138,122,53.10%,46.90%,8,3.10%,46,17.70%,4,256,0,1.50%,98.50%,0.00%,52,55,235,23.40% +143032,380,3370,State-funded primary,323,165,158,51.10%,48.90%,14,4.30%,38,11.80%,41,282,0,12.70%,87.30%,0.00%,77,77,299,25.80% +143033,305,2074,State-funded primary,417,205,212,49.20%,50.80%,13,3.10%,33,7.90%,62,351,4,14.90%,84.20%,1.00%,21,22,417,5.30% +143034,845,3090,State-funded primary,654,303,351,46.30%,53.70%,3,0.50%,111,17.00%,93,561,0,14.20%,85.80%,0.00%,230,233,606,38.40% +143035,845,4610,State-funded secondary,1077,506,571,47.00%,53.00%,10,0.90%,88,8.20%,64,1013,0,5.90%,94.10%,0.00%,223,251,1077,23.30% +143036,308,6006,Independent school,37,8,29,21.60%,78.40%,13,35.10%,4,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143037,302,6008,Independent school,94,81,13,86.20%,13.80%,0,0.00%,11,11.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143038,333,6011,Independent school,79,24,55,30.40%,69.60%,12,15.20%,17,21.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143039,330,6026,Independent school,22,10,12,45.50%,54.50%,3,13.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143040,330,6030,Independent school,9,1,8,11.10%,88.90%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143041,888,6064,Independent school,2,0,2,0.00%,100.00%,1,50.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143042,931,6016,Independent school,63,28,35,44.40%,55.60%,12,19.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143046,846,6024,Independent school,141,71,70,50.40%,49.60%,3,2.10%,5,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143048,205,6007,Independent school,49,23,26,46.90%,53.10%,0,0.00%,2,4.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143049,392,6005,Independent school,7,1,6,14.30%,85.70%,5,71.40%,2,28.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143050,935,2150,State-funded primary,90,45,45,50.00%,50.00%,3,3.30%,9,10.00%,0,90,0,0.00%,100.00%,0.00%,25,26,90,28.90% +143051,334,2003,State-funded primary,190,100,90,52.60%,47.40%,5,2.60%,21,11.10%,50,140,0,26.30%,73.70%,0.00%,45,41,145,28.30% +143052,373,2046,State-funded primary,442,226,216,51.10%,48.90%,11,2.50%,86,19.50%,283,158,1,64.00%,35.70%,0.20%,192,179,387,46.30% +143053,926,2128,State-funded primary,213,110,103,51.60%,48.40%,8,3.80%,28,13.10%,7,206,0,3.30%,96.70%,0.00%,23,25,213,11.70% +143054,372,2133,State-funded primary,302,145,157,48.00%,52.00%,6,2.00%,24,7.90%,6,296,0,2.00%,98.00%,0.00%,25,26,302,8.60% +143055,372,2087,State-funded primary,182,83,99,45.60%,54.40%,2,1.10%,30,16.50%,1,179,2,0.50%,98.40%,1.10%,53,50,157,31.80% +143056,935,3002,State-funded primary,63,30,33,47.60%,52.40%,1,1.60%,13,20.60%,5,58,0,7.90%,92.10%,0.00%,7,7,63,11.10% +143057,372,2108,State-funded primary,278,142,136,51.10%,48.90%,15,5.40%,54,19.40%,39,239,0,14.00%,86.00%,0.00%,44,44,248,17.70% +143058,877,3643,State-funded primary,248,120,128,48.40%,51.60%,1,0.40%,18,7.30%,16,232,0,6.50%,93.50%,0.00%,44,45,217,20.70% +143059,355,4026,State-funded secondary,926,469,457,50.60%,49.40%,35,3.80%,175,18.90%,269,655,2,29.00%,70.70%,0.20%,396,423,926,45.70% +143060,892,2082,State-funded primary,234,117,117,50.00%,50.00%,1,0.40%,34,14.50%,65,169,0,27.80%,72.20%,0.00%,99,91,208,43.80% +143061,373,2095,State-funded primary,428,212,216,49.50%,50.50%,8,1.90%,84,19.60%,337,91,0,78.70%,21.30%,0.00%,193,194,398,48.70% +143062,355,7026,State-funded special school,169,39,130,23.10%,76.90%,165,97.60%,4,2.40%,41,128,0,24.30%,75.70%,0.00%,100,74,125,59.20% +143063,808,4008,State-funded secondary,1525,770,755,50.50%,49.50%,30,2.00%,184,12.10%,62,1455,8,4.10%,95.40%,0.50%,140,154,1177,13.10% +143064,877,2005,State-funded primary,345,172,173,49.90%,50.10%,3,0.90%,28,8.10%,85,260,0,24.60%,75.40%,0.00%,94,97,310,31.30% +143065,935,3116,State-funded primary,150,74,76,49.30%,50.70%,1,0.70%,17,11.30%,1,149,0,0.70%,99.30%,0.00%,15,17,150,11.30% +143066,926,2412,State-funded primary,65,30,35,46.20%,53.80%,2,3.10%,7,10.80%,0,65,0,0.00%,100.00%,0.00%,6,7,65,10.80% +143067,879,2705,State-funded primary,407,189,218,46.40%,53.60%,0,0.00%,56,13.80%,7,400,0,1.70%,98.30%,0.00%,81,82,407,20.10% +143068,808,2079,State-funded primary,378,182,196,48.10%,51.90%,16,4.20%,28,7.40%,24,351,3,6.30%,92.90%,0.80%,33,35,344,10.20% +143069,935,2096,State-funded primary,72,39,33,54.20%,45.80%,1,1.40%,9,12.50%,0,71,1,0.00%,98.60%,1.40%,12,14,64,21.90% +143070,935,3098,State-funded primary,86,43,43,50.00%,50.00%,1,1.20%,16,18.60%,3,83,0,3.50%,96.50%,0.00%,10,11,86,12.80% +143071,935,3099,State-funded primary,86,42,44,48.80%,51.20%,0,0.00%,8,9.30%,5,81,0,5.80%,94.20%,0.00%,7,7,86,8.10% +143072,877,2722,State-funded primary,213,104,109,48.80%,51.20%,2,0.90%,27,12.70%,28,185,0,13.10%,86.90%,0.00%,20,20,213,9.40% +143073,886,2309,State-funded primary,365,187,178,51.20%,48.80%,4,1.10%,120,32.90%,104,261,0,28.50%,71.50%,0.00%,209,211,365,57.80% +143074,935,2087,State-funded primary,71,37,34,52.10%,47.90%,4,5.60%,11,15.50%,3,68,0,4.20%,95.80%,0.00%,11,11,67,16.40% +143075,886,2313,State-funded primary,194,92,102,47.40%,52.60%,1,0.50%,32,16.50%,3,191,0,1.50%,98.50%,0.00%,33,35,194,18.00% +143076,940,2078,State-funded primary,197,114,83,57.90%,42.10%,2,1.00%,15,7.60%,3,193,1,1.50%,98.00%,0.50%,19,20,197,10.20% +143077,808,2084,State-funded primary,189,79,110,41.80%,58.20%,7,3.70%,15,7.90%,3,186,0,1.60%,98.40%,0.00%,30,29,172,16.90% +143078,384,2129,State-funded primary,274,136,138,49.60%,50.40%,7,2.60%,47,17.20%,7,267,0,2.60%,97.40%,0.00%,39,41,248,16.50% +143079,203,2890,State-funded primary,811,406,405,50.10%,49.90%,23,2.80%,159,19.60%,375,436,0,46.20%,53.80%,0.00%,344,338,773,43.70% +143082,302,5408,State-funded secondary,1020,461,559,45.20%,54.80%,7,0.70%,127,12.50%,561,423,36,55.00%,41.50%,3.50%,226,270,759,35.60% +143083,800,3102,State-funded primary,430,211,219,49.10%,50.90%,18,4.20%,40,9.30%,9,414,7,2.10%,96.30%,1.60%,23,24,430,5.60% +143084,822,2054,State-funded primary,116,60,56,51.70%,48.30%,3,2.60%,4,3.40%,2,114,0,1.70%,98.30%,0.00%,8,8,116,6.90% +143085,303,2061,State-funded primary,207,107,100,51.70%,48.30%,3,1.40%,7,3.40%,9,198,0,4.30%,95.70%,0.00%,6,6,175,3.40% +143086,330,2082,State-funded primary,435,191,244,43.90%,56.10%,8,1.80%,59,13.60%,302,132,1,69.40%,30.30%,0.20%,266,268,409,65.50% +143087,330,2447,State-funded primary,655,333,322,50.80%,49.20%,6,0.90%,95,14.50%,214,439,2,32.70%,67.00%,0.30%,374,348,596,58.40% +143088,330,2226,State-funded primary,338,176,162,52.10%,47.90%,5,1.50%,62,18.30%,113,225,0,33.40%,66.60%,0.00%,176,183,338,54.10% +143089,330,2475,State-funded primary,347,177,170,51.00%,49.00%,7,2.00%,53,15.30%,229,117,1,66.00%,33.70%,0.30%,174,200,347,57.60% +143090,330,2086,State-funded primary,845,379,466,44.90%,55.10%,12,1.40%,141,16.70%,484,361,0,57.30%,42.70%,0.00%,311,309,798,38.70% +143091,330,2273,State-funded primary,256,117,139,45.70%,54.30%,57,22.30%,34,13.30%,24,231,1,9.40%,90.20%,0.40%,172,173,256,67.60% +143092,380,2001,State-funded primary,425,217,208,51.10%,48.90%,8,1.90%,80,18.80%,84,341,0,19.80%,80.20%,0.00%,120,126,391,32.20% +143093,380,2029,State-funded primary,729,376,353,51.60%,48.40%,9,1.20%,133,18.20%,646,83,0,88.60%,11.40%,0.00%,227,229,625,36.60% +143094,380,2038,State-funded primary,789,414,375,52.50%,47.50%,12,1.50%,204,25.90%,559,230,0,70.80%,29.20%,0.00%,209,212,631,33.60% +143095,380,2180,State-funded primary,432,216,216,50.00%,50.00%,18,4.20%,125,28.90%,265,167,0,61.30%,38.70%,0.00%,211,216,432,50.00% +143096,380,2186,State-funded primary,526,277,249,52.70%,47.30%,10,1.90%,82,15.60%,495,31,0,94.10%,5.90%,0.00%,110,112,420,26.70% +143097,305,3002,State-funded primary,396,224,172,56.60%,43.40%,7,1.80%,46,11.60%,42,353,1,10.60%,89.10%,0.30%,32,32,396,8.10% +143099,908,3301,State-funded primary,230,112,118,48.70%,51.30%,1,0.40%,28,12.20%,2,228,0,0.90%,99.10%,0.00%,39,40,230,17.40% +143100,802,3447,State-funded primary,414,199,215,48.10%,51.90%,3,0.70%,25,6.00%,12,402,0,2.90%,97.10%,0.00%,53,57,413,13.80% +143101,336,6000,State-funded secondary,1468,710,758,48.40%,51.60%,49,3.30%,184,12.50%,691,746,31,47.10%,50.80%,2.10%,346,309,1215,25.40% +143102,384,6005,Independent school,8,5,3,62.50%,37.50%,2,25.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143103,204,6010,State-funded AP school,9,1,8,11.10%,88.90%,9,100.00%,0,0.00%,4,5,0,44.40%,55.60%,0.00%,8,8,9,88.90% +143104,358,6003,State-funded secondary,757,364,393,48.10%,51.90%,33,4.40%,51,6.70%,175,582,0,23.10%,76.90%,0.00%,127,137,757,18.10% +143105,331,6004,Independent school,110,38,72,34.50%,65.50%,0,0.00%,6,5.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143106,885,6045,Independent school,25,12,13,48.00%,52.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143107,370,2043,State-funded primary,230,112,118,48.70%,51.30%,13,5.70%,47,20.40%,85,145,0,37.00%,63.00%,0.00%,102,102,203,50.20% +143108,800,2001,State-funded primary,201,95,106,47.30%,52.70%,40,19.90%,44,21.90%,33,167,1,16.40%,83.10%,0.50%,102,102,201,50.70% +143110,305,2026,State-funded primary,686,333,353,48.50%,51.50%,18,2.60%,94,13.70%,104,582,0,15.20%,84.80%,0.00%,122,126,686,18.40% +143111,873,7007,State-funded special school,135,34,101,25.20%,74.80%,135,100.00%,0,0.00%,11,124,0,8.10%,91.90%,0.00%,52,49,127,38.60% +143112,380,4032,State-funded secondary,1560,827,733,53.00%,47.00%,29,1.90%,260,16.70%,319,1240,1,20.40%,79.50%,0.10%,524,530,1413,37.50% +143114,380,4040,State-funded secondary,1344,615,729,45.80%,54.20%,44,3.30%,205,15.30%,149,1194,1,11.10%,88.80%,0.10%,424,487,1289,37.80% +143115,381,4004,State-funded secondary,436,221,215,50.70%,49.30%,29,6.70%,147,33.70%,34,402,0,7.80%,92.20%,0.00%,254,265,436,60.80% +143116,909,2007,State-funded primary,188,100,88,53.20%,46.80%,3,1.60%,18,9.60%,2,186,0,1.10%,98.90%,0.00%,46,46,176,26.10% +143118,307,2010,State-funded primary,194,91,103,46.90%,53.10%,15,7.70%,19,9.80%,123,68,3,63.40%,35.10%,1.50%,83,85,177,48.00% +143119,845,2020,State-funded primary,372,160,212,43.00%,57.00%,5,1.30%,28,7.50%,11,361,0,3.00%,97.00%,0.00%,89,91,372,24.50% +143120,845,2021,State-funded primary,164,79,85,48.20%,51.80%,3,1.80%,30,18.30%,23,141,0,14.00%,86.00%,0.00%,71,72,164,43.90% +143121,881,2139,State-funded primary,172,77,95,44.80%,55.20%,5,2.90%,54,31.40%,2,170,0,1.20%,98.80%,0.00%,124,129,172,75.00% +143122,881,2141,State-funded primary,186,92,94,49.50%,50.50%,4,2.20%,40,21.50%,20,166,0,10.80%,89.20%,0.00%,86,90,186,48.40% +143123,881,2143,State-funded primary,201,99,102,49.30%,50.70%,5,2.50%,25,12.40%,6,195,0,3.00%,97.00%,0.00%,22,26,186,14.00% +143124,881,2144,State-funded primary,198,106,92,53.50%,46.50%,5,2.50%,36,18.20%,38,160,0,19.20%,80.80%,0.00%,78,88,198,44.40% +143125,881,2145,State-funded primary,704,367,337,52.10%,47.90%,20,2.80%,101,14.30%,105,599,0,14.90%,85.10%,0.00%,261,273,621,44.00% +143126,881,2146,State-funded primary,653,313,340,47.90%,52.10%,14,2.10%,81,12.40%,94,559,0,14.40%,85.60%,0.00%,254,258,611,42.20% +143127,881,2147,State-funded primary,363,188,175,51.80%,48.20%,4,1.10%,83,22.90%,56,307,0,15.40%,84.60%,0.00%,149,153,322,47.50% +143128,881,2148,State-funded primary,695,353,342,50.80%,49.20%,22,3.20%,73,10.50%,118,577,0,17.00%,83.00%,0.00%,198,211,613,34.40% +143129,205,4004,State-funded secondary,532,223,309,41.90%,58.10%,16,3.00%,69,13.00%,258,274,0,48.50%,51.50%,0.00%,237,259,499,51.90% +143130,311,1109,State-funded AP school,11,2,9,18.20%,81.80%,0,0.00%,9,81.80%,1,9,1,9.10%,81.80%,9.10%,6,6,11,54.50% +143131,919,4024,State-funded secondary,707,350,357,49.50%,50.50%,24,3.40%,106,15.00%,65,641,1,9.20%,90.70%,0.10%,154,160,632,25.30% +143132,925,2040,State-funded primary,92,35,57,38.00%,62.00%,4,4.30%,15,16.30%,0,92,0,0.00%,100.00%,0.00%,49,49,85,57.60% +143133,315,2003,State-funded primary,178,100,78,56.20%,43.80%,4,2.20%,19,10.70%,120,58,0,67.40%,32.60%,0.00%,67,64,164,39.00% +143135,926,2133,State-funded primary,205,84,121,41.00%,59.00%,5,2.40%,34,16.60%,5,200,0,2.40%,97.60%,0.00%,28,29,188,15.40% +143136,802,2005,State-funded primary,242,110,132,45.50%,54.50%,7,2.90%,37,15.30%,22,220,0,9.10%,90.90%,0.00%,36,37,204,18.10% +143137,802,4001,State-funded secondary,1348,648,700,48.10%,51.90%,26,1.90%,134,9.90%,116,1229,3,8.60%,91.20%,0.20%,300,351,1348,26.00% +143138,815,4003,State-funded secondary,778,371,407,47.70%,52.30%,10,1.30%,109,14.00%,40,738,0,5.10%,94.90%,0.00%,121,139,778,17.90% +143139,815,2004,State-funded primary,100,53,47,53.00%,47.00%,1,1.00%,11,11.00%,6,94,0,6.00%,94.00%,0.00%,26,24,92,26.10% +143140,891,2025,State-funded primary,371,167,204,45.00%,55.00%,4,1.10%,36,9.70%,21,350,0,5.70%,94.30%,0.00%,145,142,301,47.20% +143141,372,4004,State-funded secondary,978,508,470,51.90%,48.10%,30,3.10%,144,14.70%,35,943,0,3.60%,96.40%,0.00%,248,259,894,29.00% +143142,893,4002,State-funded secondary,682,358,323,52.50%,47.40%,11,1.60%,138,20.20%,13,667,2,1.90%,97.80%,0.30%,141,151,660,22.90% +143143,933,2024,State-funded primary,133,64,69,48.10%,51.90%,9,6.80%,27,20.30%,14,119,0,10.50%,89.50%,0.00%,71,71,114,62.30% +143144,882,4002,State-funded secondary,794,370,424,46.60%,53.40%,18,2.30%,111,14.00%,89,705,0,11.20%,88.80%,0.00%,300,341,794,42.90% +143145,808,2017,State-funded primary,468,225,243,48.10%,51.90%,22,4.70%,65,13.90%,17,451,0,3.60%,96.40%,0.00%,222,224,402,55.70% +143146,808,4007,State-funded secondary,562,262,300,46.60%,53.40%,40,7.10%,126,22.40%,17,543,2,3.00%,96.60%,0.40%,275,332,562,59.10% +143147,935,2155,State-funded primary,227,108,119,47.60%,52.40%,3,1.30%,19,8.40%,1,226,0,0.40%,99.60%,0.00%,43,41,201,20.40% +143149,883,2011,State-funded primary,208,96,112,46.20%,53.80%,9,4.30%,21,10.10%,41,167,0,19.70%,80.30%,0.00%,87,92,208,44.20% +143150,336,1105,State-funded AP school,22,2,20,9.10%,90.90%,3,13.60%,19,86.40%,2,20,0,9.10%,90.90%,0.00%,8,19,22,86.40% +143151,336,2033,State-funded primary,354,168,186,47.50%,52.50%,6,1.70%,32,9.00%,103,251,0,29.10%,70.90%,0.00%,159,162,313,51.80% +143152,336,2040,State-funded primary,697,333,364,47.80%,52.20%,12,1.70%,65,9.30%,126,571,0,18.10%,81.90%,0.00%,313,320,620,51.60% +143153,895,3808,State-funded primary,415,191,224,46.00%,54.00%,15,3.60%,86,20.70%,127,288,0,30.60%,69.40%,0.00%,224,236,415,56.90% +143154,895,2143,State-funded primary,87,46,41,52.90%,47.10%,1,1.10%,5,5.70%,2,85,0,2.30%,97.70%,0.00%,2,2,87,2.30% +143155,895,3544,State-funded primary,193,97,96,50.30%,49.70%,2,1.00%,20,10.40%,5,188,0,2.60%,97.40%,0.00%,12,12,193,6.20% +143156,895,3814,State-funded primary,374,163,211,43.60%,56.40%,14,3.70%,27,7.20%,89,285,0,23.80%,76.20%,0.00%,79,84,374,22.50% +143157,895,2214,State-funded primary,92,46,46,50.00%,50.00%,4,4.30%,7,7.60%,5,87,0,5.40%,94.60%,0.00%,12,13,80,16.30% +143158,895,3140,State-funded primary,114,64,50,56.10%,43.90%,6,5.30%,10,8.80%,3,111,0,2.60%,97.40%,0.00%,13,12,91,13.20% +143159,895,3139,State-funded primary,171,76,95,44.40%,55.60%,3,1.80%,15,8.80%,17,154,0,9.90%,90.10%,0.00%,22,22,171,12.90% +143160,895,2229,State-funded primary,254,119,135,46.90%,53.10%,9,3.50%,16,6.30%,5,249,0,2.00%,98.00%,0.00%,24,23,208,11.10% +143164,896,2709,State-funded primary,144,63,81,43.80%,56.30%,5,3.50%,30,20.80%,44,99,1,30.60%,68.80%,0.70%,42,42,144,29.20% +143165,908,2413,State-funded primary,181,80,101,44.20%,55.80%,5,2.80%,30,16.60%,31,149,1,17.10%,82.30%,0.60%,58,56,152,36.80% +143166,908,7004,State-funded special school,100,34,66,34.00%,66.00%,100,100.00%,0,0.00%,3,97,0,3.00%,97.00%,0.00%,50,41,83,49.40% +143167,908,7005,State-funded special school,94,31,63,33.00%,67.00%,94,100.00%,0,0.00%,1,93,0,1.10%,98.90%,0.00%,57,48,78,61.50% +143168,908,2132,State-funded primary,193,102,91,52.80%,47.20%,7,3.60%,21,10.90%,4,189,0,2.10%,97.90%,0.00%,26,26,193,13.50% +143169,908,2522,State-funded primary,174,93,81,53.40%,46.60%,2,1.10%,19,10.90%,0,174,0,0.00%,100.00%,0.00%,20,22,174,12.60% +143170,908,2238,State-funded primary,185,89,96,48.10%,51.90%,2,1.10%,26,14.10%,8,177,0,4.30%,95.70%,0.00%,25,23,161,14.30% +143171,908,2310,State-funded primary,207,103,104,49.80%,50.20%,6,2.90%,34,16.40%,5,200,2,2.40%,96.60%,1.00%,31,32,181,17.70% +143172,908,3625,State-funded primary,372,157,215,42.20%,57.80%,7,1.90%,62,16.70%,46,326,0,12.40%,87.60%,0.00%,67,71,350,20.30% +143173,908,7003,State-funded special school,97,28,69,28.90%,71.10%,95,97.90%,2,2.10%,3,94,0,3.10%,96.90%,0.00%,42,39,82,47.60% +143174,330,6031,Independent school,14,2,12,14.30%,85.70%,12,85.70%,2,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143175,212,7000,State-funded special school,120,0,120,0.00%,100.00%,120,100.00%,0,0.00%,8,112,0,6.70%,93.30%,0.00%,76,82,97,84.50% +143176,908,2447,State-funded primary,182,80,102,44.00%,56.00%,3,1.60%,26,14.30%,7,171,4,3.80%,94.00%,2.20%,44,42,146,28.80% +143177,331,2056,State-funded primary,431,210,221,48.70%,51.30%,3,0.70%,66,15.30%,315,116,0,73.10%,26.90%,0.00%,159,162,395,41.00% +143178,306,2055,State-funded primary,541,261,280,48.20%,51.80%,11,2.00%,59,10.90%,229,312,0,42.30%,57.70%,0.00%,172,171,467,36.60% +143179,830,2233,State-funded primary,94,41,53,43.60%,56.40%,5,5.30%,16,17.00%,1,93,0,1.10%,98.90%,0.00%,65,62,84,73.80% +143180,830,3025,State-funded primary,172,95,77,55.20%,44.80%,1,0.60%,26,15.10%,14,158,0,8.10%,91.90%,0.00%,50,51,172,29.70% +143182,878,2053,State-funded primary,42,17,25,40.50%,59.50%,5,11.90%,8,19.00%,0,42,0,0.00%,100.00%,0.00%,14,14,42,33.30% +143183,878,3318,State-funded primary,557,283,274,50.80%,49.20%,25,4.50%,100,18.00%,31,525,1,5.60%,94.30%,0.20%,121,112,495,22.60% +143184,878,2719,State-funded primary,196,105,91,53.60%,46.40%,5,2.60%,22,11.20%,1,195,0,0.50%,99.50%,0.00%,28,25,178,14.00% +143185,878,3755,State-funded primary,45,30,15,66.70%,33.30%,1,2.20%,8,17.80%,5,40,0,11.10%,88.90%,0.00%,22,22,45,48.90% +143186,878,3305,State-funded primary,109,57,52,52.30%,47.70%,1,0.90%,15,13.80%,0,109,0,0.00%,100.00%,0.00%,13,13,109,11.90% +143187,878,3012,State-funded primary,28,13,15,46.40%,53.60%,0,0.00%,4,14.30%,0,28,0,0.00%,100.00%,0.00%,9,6,23,26.10% +143188,878,2017,State-funded primary,472,223,249,47.20%,52.80%,13,2.80%,60,12.70%,26,446,0,5.50%,94.50%,0.00%,35,35,416,8.40% +143189,878,2087,State-funded primary,152,70,82,46.10%,53.90%,2,1.30%,17,11.20%,4,148,0,2.60%,97.40%,0.00%,6,5,130,3.80% +143190,878,3303,State-funded primary,98,44,54,44.90%,55.10%,2,2.00%,14,14.30%,4,94,0,4.10%,95.90%,0.00%,12,12,98,12.20% +143191,878,2032,State-funded primary,198,102,96,51.50%,48.50%,8,4.00%,32,16.20%,57,140,1,28.80%,70.70%,0.50%,58,60,198,30.30% +143192,878,3753,State-funded primary,89,48,41,53.90%,46.10%,1,1.10%,5,5.60%,2,87,0,2.20%,97.80%,0.00%,4,4,89,4.50% +143193,878,2042,State-funded primary,494,224,270,45.30%,54.70%,17,3.40%,87,17.60%,74,420,0,15.00%,85.00%,0.00%,78,81,494,16.40% +143194,371,2203,State-funded primary,429,211,218,49.20%,50.80%,4,0.90%,64,14.90%,287,142,0,66.90%,33.10%,0.00%,230,235,393,59.80% +143195,332,2104,State-funded primary,230,126,104,54.80%,45.20%,4,1.70%,36,15.70%,19,211,0,8.30%,91.70%,0.00%,31,32,208,15.40% +143196,332,2156,State-funded primary,242,109,133,45.00%,55.00%,25,10.30%,32,13.20%,35,207,0,14.50%,85.50%,0.00%,108,109,217,50.20% +143197,308,4007,State-funded secondary,1816,904,912,49.80%,50.20%,46,2.50%,215,11.80%,1026,660,130,56.50%,36.30%,7.20%,599,596,1584,37.60% +143198,308,2038,State-funded primary,1097,523,574,47.70%,52.30%,31,2.80%,188,17.10%,779,318,0,71.00%,29.00%,0.00%,334,387,947,40.90% +143199,308,2075,State-funded primary,500,252,248,50.40%,49.60%,28,5.60%,39,7.80%,113,387,0,22.60%,77.40%,0.00%,91,95,422,22.50% +143200,308,3507,State-funded primary,551,269,282,48.80%,51.20%,31,5.60%,80,14.50%,348,203,0,63.20%,36.80%,0.00%,279,285,513,55.60% +143201,308,2081,State-funded primary,502,250,252,49.80%,50.20%,22,4.40%,54,10.80%,212,290,0,42.20%,57.80%,0.00%,112,115,502,22.90% +143202,308,3508,State-funded primary,548,251,297,45.80%,54.20%,45,8.20%,39,7.10%,275,273,0,50.20%,49.80%,0.00%,270,275,504,54.60% +143203,881,3255,State-funded primary,467,227,240,48.60%,51.40%,12,2.60%,53,11.30%,46,421,0,9.90%,90.10%,0.00%,217,228,410,55.60% +143204,881,2083,State-funded primary,359,176,183,49.00%,51.00%,7,1.90%,49,13.60%,22,337,0,6.10%,93.90%,0.00%,115,118,332,35.50% +143205,881,3252,State-funded primary,514,269,245,52.30%,47.70%,15,2.90%,20,3.90%,121,393,0,23.50%,76.50%,0.00%,96,115,482,23.90% +143206,881,2014,State-funded primary,684,310,374,45.30%,54.70%,15,2.20%,34,5.00%,112,572,0,16.40%,83.60%,0.00%,165,176,638,27.60% +143207,916,2043,State-funded primary,229,117,112,51.10%,48.90%,5,2.20%,24,10.50%,8,221,0,3.50%,96.50%,0.00%,26,26,199,13.10% +143208,916,3101,State-funded primary,198,93,105,47.00%,53.00%,4,2.00%,35,17.70%,2,196,0,1.00%,99.00%,0.00%,19,19,198,9.60% +143209,203,2919,State-funded primary,430,192,238,44.70%,55.30%,10,2.30%,55,12.80%,108,309,13,25.10%,71.90%,3.00%,86,85,395,21.50% +143210,203,2790,State-funded primary,211,107,104,50.70%,49.30%,4,1.90%,16,7.60%,65,145,1,30.80%,68.70%,0.50%,34,34,186,18.30% +143211,203,2018,State-funded primary,438,213,225,48.60%,51.40%,17,3.90%,28,6.40%,162,253,23,37.00%,57.80%,5.30%,92,98,395,24.80% +143212,205,2484,State-funded primary,229,107,122,46.70%,53.30%,28,12.20%,29,12.70%,107,122,0,46.70%,53.30%,0.00%,56,61,203,30.00% +143213,205,2286,State-funded primary,265,118,147,44.50%,55.50%,8,3.00%,36,13.60%,176,89,0,66.40%,33.60%,0.00%,114,111,237,46.80% +143214,205,2577,State-funded primary,191,107,84,56.00%,44.00%,13,6.80%,35,18.30%,65,126,0,34.00%,66.00%,0.00%,82,83,172,48.30% +143215,805,2127,State-funded primary,381,184,197,48.30%,51.70%,9,2.40%,46,12.10%,10,371,0,2.60%,97.40%,0.00%,149,154,302,51.00% +143216,311,2009,State-funded primary,416,200,216,48.10%,51.90%,9,2.20%,32,7.70%,92,299,25,22.10%,71.90%,6.00%,61,61,416,14.70% +143217,206,7031,State-funded special school,236,56,180,23.70%,76.30%,236,100.00%,0,0.00%,103,133,0,43.60%,56.40%,0.00%,152,146,206,70.90% +143218,886,3914,State-funded primary,719,336,383,46.70%,53.30%,34,4.70%,85,11.80%,243,475,1,33.80%,66.10%,0.10%,192,196,649,30.20% +143219,886,2657,State-funded primary,891,433,458,48.60%,51.40%,35,3.90%,178,20.00%,319,572,0,35.80%,64.20%,0.00%,329,332,831,40.00% +143220,886,2523,State-funded primary,513,250,263,48.70%,51.30%,12,2.30%,57,11.10%,34,479,0,6.60%,93.40%,0.00%,114,121,513,23.60% +143221,810,4113,State-funded secondary,1580,743,837,47.00%,53.00%,51,3.20%,207,13.10%,130,1449,1,8.20%,91.70%,0.10%,394,456,1580,28.90% +143222,810,1106,State-funded AP school,49,19,30,38.80%,61.20%,33,67.30%,15,30.60%,1,48,0,2.00%,98.00%,0.00%,27,30,49,61.20% +143223,810,2040,State-funded primary,226,102,124,45.10%,54.90%,6,2.70%,54,23.90%,148,78,0,65.50%,34.50%,0.00%,88,87,209,41.60% +143224,810,2285,State-funded primary,280,133,147,47.50%,52.50%,16,5.70%,55,19.60%,13,267,0,4.60%,95.40%,0.00%,86,91,249,36.50% +143225,810,2088,State-funded primary,474,226,248,47.70%,52.30%,11,2.30%,93,19.60%,218,256,0,46.00%,54.00%,0.00%,234,237,420,56.40% +143226,810,2642,State-funded primary,237,112,125,47.30%,52.70%,6,2.50%,28,11.80%,104,133,0,43.90%,56.10%,0.00%,96,97,211,46.00% +143227,382,7013,State-funded special school,63,0,63,0.00%,100.00%,63,100.00%,0,0.00%,1,62,0,1.60%,98.40%,0.00%,50,52,63,82.50% +143228,382,3328,State-funded primary,173,98,75,56.60%,43.40%,2,1.20%,20,11.60%,1,172,0,0.60%,99.40%,0.00%,10,11,173,6.40% +143230,382,2082,State-funded primary,157,67,90,42.70%,57.30%,0,0.00%,22,14.00%,1,156,0,0.60%,99.40%,0.00%,25,26,146,17.80% +143231,382,2026,State-funded primary,362,175,187,48.30%,51.70%,12,3.30%,34,9.40%,13,349,0,3.60%,96.40%,0.00%,139,139,362,38.40% +143232,382,3327,State-funded primary,171,90,81,52.60%,47.40%,0,0.00%,21,12.30%,1,170,0,0.60%,99.40%,0.00%,18,18,171,10.50% +143238,383,4113,State-funded secondary,1406,681,725,48.40%,51.60%,34,2.40%,193,13.70%,26,1380,0,1.80%,98.20%,0.00%,229,239,1216,19.70% +143239,383,2328,State-funded primary,206,104,102,50.50%,49.50%,0,0.00%,32,15.50%,16,190,0,7.80%,92.20%,0.00%,57,48,176,27.30% +143240,383,2801,State-funded primary,371,191,180,51.50%,48.50%,4,1.10%,58,15.60%,21,350,0,5.70%,94.30%,0.00%,111,103,323,31.90% +143241,383,2384,State-funded primary,144,78,66,54.20%,45.80%,2,1.40%,28,19.40%,2,142,0,1.40%,98.60%,0.00%,23,23,144,16.00% +143242,383,2507,State-funded primary,429,208,221,48.50%,51.50%,6,1.40%,63,14.70%,9,420,0,2.10%,97.90%,0.00%,86,83,378,22.00% +143243,383,2399,State-funded primary,245,139,106,56.70%,43.30%,2,0.80%,24,9.80%,9,236,0,3.70%,96.30%,0.00%,30,25,208,12.00% +143244,856,2265,State-funded primary,353,175,178,49.60%,50.40%,4,1.10%,61,17.30%,247,106,0,70.00%,30.00%,0.00%,108,110,353,31.20% +143245,856,3434,State-funded primary,434,233,201,53.70%,46.30%,21,4.80%,58,13.40%,105,329,0,24.20%,75.80%,0.00%,248,243,398,61.10% +143246,856,2323,State-funded primary,379,180,199,47.50%,52.50%,5,1.30%,56,14.80%,169,210,0,44.60%,55.40%,0.00%,158,162,349,46.40% +143247,856,4270,State-funded secondary,1344,648,696,48.20%,51.80%,52,3.90%,217,16.10%,614,726,4,45.70%,54.00%,0.30%,595,655,1344,48.70% +143248,855,2149,State-funded primary,317,157,160,49.50%,50.50%,4,1.30%,30,9.50%,46,255,16,14.50%,80.40%,5.00%,54,56,317,17.70% +143249,855,2088,State-funded primary,95,45,50,47.40%,52.60%,2,2.10%,16,16.80%,2,93,0,2.10%,97.90%,0.00%,11,11,95,11.60% +143250,855,2092,State-funded primary,391,200,191,51.20%,48.80%,5,1.30%,28,7.20%,15,376,0,3.80%,96.20%,0.00%,53,57,391,14.60% +143251,855,2167,State-funded primary,409,202,207,49.40%,50.60%,5,1.20%,33,8.10%,9,399,1,2.20%,97.60%,0.20%,20,21,409,5.10% +143252,855,3046,State-funded primary,83,39,44,47.00%,53.00%,4,4.80%,6,7.20%,4,79,0,4.80%,95.20%,0.00%,7,7,83,8.40% +143253,855,2079,State-funded primary,104,51,53,49.00%,51.00%,1,1.00%,12,11.50%,2,102,0,1.90%,98.10%,0.00%,7,7,104,6.70% +143254,855,3310,State-funded primary,81,39,42,48.10%,51.90%,2,2.50%,10,12.30%,5,76,0,6.20%,93.80%,0.00%,15,15,81,18.50% +143256,925,3044,State-funded primary,215,97,118,45.10%,54.90%,7,3.30%,14,6.50%,6,209,0,2.80%,97.20%,0.00%,32,35,192,18.20% +143257,925,7008,State-funded special school,103,12,91,11.70%,88.30%,103,100.00%,0,0.00%,4,99,0,3.90%,96.10%,0.00%,47,49,103,47.60% +143258,925,3317,State-funded primary,86,30,56,34.90%,65.10%,2,2.30%,18,20.90%,3,83,0,3.50%,96.50%,0.00%,22,22,72,30.60% +143259,925,3022,State-funded primary,106,46,60,43.40%,56.60%,2,1.90%,6,5.70%,9,97,0,8.50%,91.50%,0.00%,21,21,106,19.80% +143260,352,4248,State-funded secondary,1923,932,991,48.50%,51.50%,39,2.00%,185,9.60%,507,1408,8,26.40%,73.20%,0.40%,544,497,1495,33.20% +143261,887,2203,State-funded primary,235,125,110,53.20%,46.80%,2,0.90%,35,14.90%,28,207,0,11.90%,88.10%,0.00%,39,42,235,17.90% +143262,887,2213,State-funded primary,573,265,308,46.20%,53.80%,88,15.40%,70,12.20%,27,546,0,4.70%,95.30%,0.00%,114,123,516,23.80% +143263,826,2281,State-funded primary,380,175,205,46.10%,53.90%,5,1.30%,40,10.50%,19,355,6,5.00%,93.40%,1.60%,56,61,380,16.10% +143265,826,2003,State-funded primary,433,210,223,48.50%,51.50%,21,4.80%,81,18.70%,86,347,0,19.90%,80.10%,0.00%,123,127,405,31.40% +143266,391,2735,State-funded primary,446,222,224,49.80%,50.20%,6,1.30%,48,10.80%,177,269,0,39.70%,60.30%,0.00%,157,159,416,38.20% +143267,391,2995,State-funded primary,322,168,154,52.20%,47.80%,15,4.70%,43,13.40%,125,197,0,38.80%,61.20%,0.00%,181,174,297,58.60% +143268,391,2300,State-funded primary,174,90,84,51.70%,48.30%,12,6.90%,36,20.70%,45,129,0,25.90%,74.10%,0.00%,92,94,162,58.00% +143269,391,2462,State-funded primary,202,116,86,57.40%,42.60%,10,5.00%,37,18.30%,49,153,0,24.30%,75.70%,0.00%,114,116,186,62.40% +143270,391,2996,State-funded primary,432,190,242,44.00%,56.00%,21,4.90%,47,10.90%,124,308,0,28.70%,71.30%,0.00%,115,114,398,28.60% +143271,391,2018,State-funded primary,229,128,101,55.90%,44.10%,6,2.60%,41,17.90%,25,204,0,10.90%,89.10%,0.00%,179,159,197,80.70% +143272,391,2027,State-funded primary,240,119,121,49.60%,50.40%,3,1.30%,32,13.30%,7,233,0,2.90%,97.10%,0.00%,110,110,210,52.40% +143273,391,2990,State-funded primary,207,92,115,44.40%,55.60%,5,2.40%,15,7.20%,43,164,0,20.80%,79.20%,0.00%,80,75,181,41.40% +143274,316,4008,State-funded secondary,1311,535,776,40.80%,59.20%,23,1.80%,81,6.20%,791,512,8,60.30%,39.10%,0.60%,463,524,1311,40.00% +143275,316,7007,State-funded special school,72,13,59,18.10%,81.90%,64,88.90%,8,11.10%,15,57,0,20.80%,79.20%,0.00%,39,60,72,83.30% +143276,316,2022,State-funded primary,236,105,131,44.50%,55.50%,20,8.50%,46,19.50%,150,86,0,63.60%,36.40%,0.00%,75,77,205,37.60% +143277,316,2102,State-funded primary,438,226,212,51.60%,48.40%,5,1.10%,80,18.30%,310,121,7,70.80%,27.60%,1.60%,131,144,387,37.20% +143278,926,4083,State-funded secondary,1839,883,956,48.00%,52.00%,19,1.00%,212,11.50%,163,1675,1,8.90%,91.10%,0.10%,199,195,1501,13.00% +143279,926,3430,State-funded primary,345,179,166,51.90%,48.10%,12,3.50%,45,13.00%,41,291,13,11.90%,84.30%,3.80%,43,45,345,13.00% +143280,926,2160,State-funded primary,420,191,229,45.50%,54.50%,3,0.70%,24,5.70%,37,379,4,8.80%,90.20%,1.00%,31,32,375,8.50% +143281,812,3059,State-funded primary,180,80,100,44.40%,55.60%,7,3.90%,31,17.20%,7,173,0,3.90%,96.10%,0.00%,77,83,180,46.10% +143282,802,2252,State-funded primary,415,208,207,50.10%,49.90%,7,1.70%,39,9.40%,25,390,0,6.00%,94.00%,0.00%,21,21,415,5.10% +143283,802,3446,State-funded primary,93,47,46,50.50%,49.50%,0,0.00%,9,9.70%,5,88,0,5.40%,94.60%,0.00%,12,12,93,12.90% +143284,802,2254,State-funded primary,280,121,159,43.20%,56.80%,2,0.70%,9,3.20%,16,264,0,5.70%,94.30%,0.00%,15,15,247,6.10% +143285,802,3099,State-funded primary,622,299,323,48.10%,51.90%,8,1.30%,47,7.60%,23,599,0,3.70%,96.30%,0.00%,40,44,622,7.10% +143286,802,2263,State-funded primary,342,162,180,47.40%,52.60%,3,0.90%,32,9.40%,19,323,0,5.60%,94.40%,0.00%,43,48,342,14.00% +143287,815,2368,State-funded primary,299,144,155,48.20%,51.80%,6,2.00%,43,14.40%,14,285,0,4.70%,95.30%,0.00%,62,62,299,20.70% +143288,815,4073,State-funded secondary,981,465,516,47.40%,52.60%,35,3.60%,120,12.20%,42,939,0,4.30%,95.70%,0.00%,209,219,981,22.30% +143289,815,3288,State-funded primary,112,46,66,41.10%,58.90%,0,0.00%,11,9.80%,8,104,0,7.10%,92.90%,0.00%,9,9,106,8.50% +143290,815,2154,State-funded primary,225,128,97,56.90%,43.10%,16,7.10%,26,11.60%,11,214,0,4.90%,95.10%,0.00%,71,68,192,35.40% +143291,929,4417,State-funded secondary,1298,629,669,48.50%,51.50%,25,1.90%,71,5.50%,26,1271,1,2.00%,97.90%,0.10%,127,128,925,13.80% +143292,929,4441,State-funded secondary,549,244,305,44.40%,55.60%,7,1.30%,72,13.10%,19,527,3,3.50%,96.00%,0.50%,72,77,549,14.00% +143293,891,2865,State-funded primary,251,135,116,53.80%,46.20%,2,0.80%,27,10.80%,21,230,0,8.40%,91.60%,0.00%,56,57,251,22.70% +143294,891,3097,State-funded primary,198,98,100,49.50%,50.50%,1,0.50%,21,10.60%,5,193,0,2.50%,97.50%,0.00%,40,42,197,21.30% +143295,891,2919,State-funded primary,462,224,238,48.50%,51.50%,1,0.20%,62,13.40%,44,418,0,9.50%,90.50%,0.00%,126,125,404,30.90% +143296,891,2590,State-funded primary,680,342,338,50.30%,49.70%,1,0.10%,35,5.10%,299,381,0,44.00%,56.00%,0.00%,48,48,640,7.50% +143297,891,3350,State-funded primary,77,44,33,57.10%,42.90%,0,0.00%,4,5.20%,3,74,0,3.90%,96.10%,0.00%,16,16,72,22.20% +143298,891,2924,State-funded primary,170,85,85,50.00%,50.00%,6,3.50%,14,8.20%,26,144,0,15.30%,84.70%,0.00%,74,69,153,45.10% +143299,891,2699,State-funded primary,307,143,164,46.60%,53.40%,0,0.00%,36,11.70%,10,297,0,3.30%,96.70%,0.00%,19,19,307,6.20% +143300,891,2770,State-funded primary,191,93,98,48.70%,51.30%,1,0.50%,19,9.90%,19,172,0,9.90%,90.10%,0.00%,13,13,191,6.80% +143301,891,2009,State-funded primary,425,215,210,50.60%,49.40%,4,0.90%,34,8.00%,10,415,0,2.40%,97.60%,0.00%,75,77,394,19.50% +143302,891,2858,State-funded primary,209,99,110,47.40%,52.60%,3,1.40%,9,4.30%,26,183,0,12.40%,87.60%,0.00%,12,12,209,5.70% +143303,891,2723,State-funded primary,197,96,101,48.70%,51.30%,1,0.50%,14,7.10%,10,187,0,5.10%,94.90%,0.00%,24,24,197,12.20% +143304,353,7013,State-funded special school,214,58,156,27.10%,72.90%,214,100.00%,0,0.00%,102,111,1,47.70%,51.90%,0.50%,83,88,200,44.00% +143305,879,3769,State-funded primary,339,167,172,49.30%,50.70%,9,2.70%,46,13.60%,19,320,0,5.60%,94.40%,0.00%,113,119,339,35.10% +143306,879,2708,State-funded primary,268,122,146,45.50%,54.50%,18,6.70%,45,16.80%,24,244,0,9.00%,91.00%,0.00%,48,49,268,18.30% +143307,879,2677,State-funded primary,414,208,206,50.20%,49.80%,6,1.40%,50,12.10%,37,377,0,8.90%,91.10%,0.00%,72,74,414,17.90% +143308,879,2730,State-funded primary,411,198,213,48.20%,51.80%,5,1.20%,59,14.40%,11,400,0,2.70%,97.30%,0.00%,111,109,374,29.10% +143309,879,2681,State-funded primary,603,302,301,50.10%,49.90%,11,1.80%,84,13.90%,24,579,0,4.00%,96.00%,0.00%,91,95,603,15.80% +143310,879,2627,State-funded primary,242,113,129,46.70%,53.30%,5,2.10%,55,22.70%,10,232,0,4.10%,95.90%,0.00%,108,109,224,48.70% +143311,879,3770,State-funded primary,344,172,172,50.00%,50.00%,21,6.10%,58,16.90%,40,304,0,11.60%,88.40%,0.00%,161,154,320,48.10% +143312,879,2703,State-funded primary,388,188,200,48.50%,51.50%,30,7.70%,65,16.80%,16,372,0,4.10%,95.90%,0.00%,50,50,361,13.90% +143313,839,2154,State-funded primary,391,189,202,48.30%,51.70%,2,0.50%,50,12.80%,39,347,5,10.00%,88.70%,1.30%,55,57,342,16.70% +143314,839,2176,State-funded primary,460,245,215,53.30%,46.70%,11,2.40%,51,11.10%,45,414,1,9.80%,90.00%,0.20%,101,110,460,23.90% +143315,851,2677,State-funded primary,342,179,163,52.30%,47.70%,8,2.30%,48,14.00%,58,284,0,17.00%,83.00%,0.00%,55,55,342,16.10% +143316,851,2644,State-funded primary,479,240,239,50.10%,49.90%,18,3.80%,98,20.50%,41,438,0,8.60%,91.40%,0.00%,104,111,479,23.20% +143317,318,7000,State-funded special school,166,46,120,27.70%,72.30%,164,98.80%,1,0.60%,51,115,0,30.70%,69.30%,0.00%,58,68,166,41.00% +143318,318,7007,State-funded special school,113,40,73,35.40%,64.60%,111,98.20%,2,1.80%,42,71,0,37.20%,62.80%,0.00%,38,31,95,32.60% +143319,354,4091,State-funded secondary,1346,656,690,48.70%,51.30%,24,1.80%,144,10.70%,109,1237,0,8.10%,91.90%,0.00%,366,419,1346,31.10% +143320,372,2054,State-funded primary,234,127,107,54.30%,45.70%,7,3.00%,41,17.50%,19,215,0,8.10%,91.90%,0.00%,63,65,234,27.80% +143321,372,2075,State-funded primary,347,159,188,45.80%,54.20%,10,2.90%,60,17.30%,5,342,0,1.40%,98.60%,0.00%,66,71,314,22.60% +143322,333,3407,State-funded primary,798,406,392,50.90%,49.10%,12,1.50%,121,15.20%,127,671,0,15.90%,84.10%,0.00%,355,360,750,48.00% +143323,893,3089,State-funded primary,205,104,101,50.70%,49.30%,1,0.50%,13,6.30%,4,201,0,2.00%,98.00%,0.00%,54,47,179,26.30% +143325,893,3122,State-funded primary,150,80,70,53.30%,46.70%,4,2.70%,12,8.00%,1,147,2,0.70%,98.00%,1.30%,21,18,119,15.10% +143326,893,2044,State-funded primary,373,186,187,49.90%,50.10%,8,2.10%,55,14.70%,32,341,0,8.60%,91.40%,0.00%,67,65,344,18.90% +143327,871,4085,State-funded secondary,870,402,468,46.20%,53.80%,15,1.70%,128,14.70%,382,486,2,43.90%,55.90%,0.20%,301,291,733,39.70% +143329,933,4584,State-funded secondary,625,308,317,49.30%,50.70%,8,1.30%,59,9.40%,13,612,0,2.10%,97.90%,0.00%,77,83,625,13.30% +143330,933,3236,State-funded primary,139,78,61,56.10%,43.90%,2,1.40%,3,2.20%,12,127,0,8.60%,91.40%,0.00%,11,11,109,10.10% +143331,933,3232,State-funded primary,84,43,41,51.20%,48.80%,1,1.20%,6,7.10%,5,79,0,6.00%,94.00%,0.00%,23,23,69,33.30% +143332,933,3237,State-funded primary,160,75,85,46.90%,53.10%,2,1.30%,18,11.30%,0,156,4,0.00%,97.50%,2.50%,13,15,125,12.00% +143333,882,2094,State-funded primary,246,114,132,46.30%,53.70%,1,0.40%,27,11.00%,12,234,0,4.90%,95.10%,0.00%,41,44,208,21.20% +143334,882,3824,State-funded primary,436,186,250,42.70%,57.30%,4,0.90%,53,12.20%,29,407,0,6.70%,93.30%,0.00%,185,187,405,46.20% +143335,882,2092,State-funded primary,581,300,281,51.60%,48.40%,17,2.90%,79,13.60%,82,498,1,14.10%,85.70%,0.20%,238,244,581,42.00% +143336,882,5225,State-funded primary,536,259,277,48.30%,51.70%,10,1.90%,79,14.70%,45,490,1,8.40%,91.40%,0.20%,275,253,488,51.80% +143337,882,2387,State-funded primary,657,310,347,47.20%,52.80%,29,4.40%,41,6.20%,44,613,0,6.70%,93.30%,0.00%,115,125,627,19.90% +143338,882,2104,State-funded primary,929,472,457,50.80%,49.20%,24,2.60%,78,8.40%,66,863,0,7.10%,92.90%,0.00%,278,291,929,31.30% +143339,882,2128,State-funded primary,180,98,82,54.40%,45.60%,4,2.20%,14,7.80%,18,158,4,10.00%,87.80%,2.20%,10,10,180,5.60% +143340,882,2093,State-funded primary,462,236,226,51.10%,48.90%,14,3.00%,85,18.40%,54,408,0,11.70%,88.30%,0.00%,126,128,395,32.40% +143345,860,2358,State-funded primary,175,87,88,49.70%,50.30%,1,0.60%,30,17.10%,29,146,0,16.60%,83.40%,0.00%,85,88,138,63.80% +143346,860,7028,State-funded special school,127,44,83,34.60%,65.40%,127,100.00%,0,0.00%,5,122,0,3.90%,96.10%,0.00%,40,31,86,36.00% +143347,860,3081,State-funded primary,102,58,44,56.90%,43.10%,4,3.90%,8,7.80%,4,98,0,3.90%,96.10%,0.00%,13,13,102,12.70% +143348,860,3147,State-funded primary,380,188,192,49.50%,50.50%,3,0.80%,53,13.90%,86,291,3,22.60%,76.60%,0.80%,44,48,380,12.60% +143349,860,2247,State-funded primary,196,94,102,48.00%,52.00%,2,1.00%,31,15.80%,16,180,0,8.20%,91.80%,0.00%,103,103,170,60.60% +143350,860,2320,State-funded primary,329,147,182,44.70%,55.30%,1,0.30%,21,6.40%,19,310,0,5.80%,94.20%,0.00%,17,17,329,5.20% +143351,860,3146,State-funded primary,242,117,125,48.30%,51.70%,4,1.70%,25,10.30%,3,238,1,1.20%,98.30%,0.40%,26,26,242,10.70% +143352,860,3466,State-funded primary,386,193,193,50.00%,50.00%,5,1.30%,36,9.30%,36,349,1,9.30%,90.40%,0.30%,38,40,386,10.40% +143353,860,2387,State-funded primary,242,128,114,52.90%,47.10%,4,1.70%,31,12.80%,16,226,0,6.60%,93.40%,0.00%,32,33,195,16.90% +143354,860,7033,State-funded special school,69,20,49,29.00%,71.00%,69,100.00%,0,0.00%,7,62,0,10.10%,89.90%,0.00%,28,28,69,40.60% +143355,860,2401,State-funded primary,382,172,210,45.00%,55.00%,13,3.40%,24,6.30%,44,338,0,11.50%,88.50%,0.00%,34,38,326,11.70% +143356,861,2113,State-funded primary,208,98,110,47.10%,52.90%,1,0.50%,27,13.00%,7,201,0,3.40%,96.60%,0.00%,61,63,208,30.30% +143358,861,2112,State-funded primary,142,72,70,50.70%,49.30%,1,0.70%,26,18.30%,3,139,0,2.10%,97.90%,0.00%,34,33,125,26.40% +143359,935,2060,State-funded primary,133,58,75,43.60%,56.40%,1,0.80%,21,15.80%,2,131,0,1.50%,98.50%,0.00%,36,36,133,27.10% +143360,935,3345,State-funded primary,368,174,194,47.30%,52.70%,7,1.90%,26,7.10%,19,349,0,5.20%,94.80%,0.00%,58,63,368,17.10% +143361,935,2097,State-funded primary,115,56,59,48.70%,51.30%,15,13.00%,15,13.00%,0,115,0,0.00%,100.00%,0.00%,23,23,115,20.00% +143362,935,4103,State-funded secondary,1003,494,509,49.30%,50.70%,36,3.60%,80,8.00%,32,970,1,3.20%,96.70%,0.10%,217,239,895,26.70% +143363,394,2015,State-funded primary,333,136,197,40.80%,59.20%,5,1.50%,58,17.40%,63,269,1,18.90%,80.80%,0.30%,149,150,333,45.00% +143364,936,3919,State-funded primary,404,209,195,51.70%,48.30%,3,0.70%,45,11.10%,77,327,0,19.10%,80.90%,0.00%,14,15,404,3.70% +143365,936,3922,State-funded primary,429,215,214,50.10%,49.90%,7,1.60%,65,15.20%,150,279,0,35.00%,65.00%,0.00%,38,41,429,9.60% +143366,936,3921,State-funded primary,409,220,189,53.80%,46.20%,5,1.20%,36,8.80%,96,313,0,23.50%,76.50%,0.00%,19,21,409,5.10% +143367,936,5412,State-funded secondary,1822,860,962,47.20%,52.80%,54,3.00%,119,6.50%,355,1467,0,19.50%,80.50%,0.00%,109,114,1398,8.20% +143368,936,3441,State-funded primary,221,117,104,52.90%,47.10%,4,1.80%,22,10.00%,25,196,0,11.30%,88.70%,0.00%,23,24,221,10.90% +143369,936,5402,State-funded secondary,1498,734,764,49.00%,51.00%,41,2.70%,229,15.30%,336,1162,0,22.40%,77.60%,0.00%,67,79,1198,6.60% +143370,936,3488,State-funded primary,210,105,105,50.00%,50.00%,5,2.40%,25,11.90%,35,175,0,16.70%,83.30%,0.00%,6,6,210,2.90% +143371,936,2880,State-funded primary,704,365,339,51.80%,48.20%,15,2.10%,79,11.20%,268,436,0,38.10%,61.90%,0.00%,160,140,617,22.70% +143372,936,3918,State-funded primary,243,119,124,49.00%,51.00%,9,3.70%,26,10.70%,53,190,0,21.80%,78.20%,0.00%,11,11,211,5.20% +143373,936,2963,State-funded primary,416,207,209,49.80%,50.20%,30,7.20%,83,20.00%,122,292,2,29.30%,70.20%,0.50%,166,161,381,42.30% +143374,936,3933,State-funded primary,434,197,237,45.40%,54.60%,5,1.20%,44,10.10%,188,245,1,43.30%,56.50%,0.20%,30,30,434,6.90% +143375,319,2009,State-funded primary,489,238,251,48.70%,51.30%,16,3.30%,22,4.50%,132,357,0,27.00%,73.00%,0.00%,39,38,456,8.30% +143376,357,2032,State-funded primary,222,113,109,50.90%,49.10%,5,2.30%,18,8.10%,6,216,0,2.70%,97.30%,0.00%,86,88,197,44.70% +143377,357,2033,State-funded primary,471,232,239,49.30%,50.70%,7,1.50%,50,10.60%,16,454,1,3.40%,96.40%,0.20%,98,100,420,23.80% +143378,883,2439,State-funded primary,417,196,221,47.00%,53.00%,18,4.30%,44,10.60%,10,407,0,2.40%,97.60%,0.00%,54,60,417,14.40% +143379,211,4277,State-funded secondary,1868,819,1049,43.80%,56.20%,122,6.50%,172,9.20%,1184,683,1,63.40%,36.60%,0.10%,833,821,1600,51.30% +143380,358,2028,State-funded primary,346,173,173,50.00%,50.00%,4,1.20%,70,20.20%,20,325,1,5.80%,93.90%,0.30%,156,152,308,49.40% +143381,384,2187,State-funded primary,214,107,107,50.00%,50.00%,6,2.80%,36,16.80%,14,197,3,6.50%,92.10%,1.40%,100,102,214,47.70% +143382,335,7013,State-funded special school,39,5,34,12.80%,87.20%,39,100.00%,0,0.00%,1,38,0,2.60%,97.40%,0.00%,26,28,39,71.80% +143383,320,3310,State-funded primary,685,345,340,50.40%,49.60%,19,2.80%,70,10.20%,199,481,5,29.10%,70.20%,0.70%,137,146,590,24.70% +143384,320,2015,State-funded primary,940,461,479,49.00%,51.00%,46,4.90%,60,6.40%,338,601,1,36.00%,63.90%,0.10%,158,166,830,20.00% +143385,320,4064,State-funded secondary,821,8,813,1.00%,99.00%,17,2.10%,63,7.70%,246,572,3,30.00%,69.70%,0.40%,187,213,739,28.80% +143386,938,2233,State-funded primary,184,100,84,54.30%,45.70%,4,2.20%,36,19.60%,18,166,0,9.80%,90.20%,0.00%,54,55,184,29.90% +143387,938,3367,State-funded primary,615,315,300,51.20%,48.80%,15,2.40%,64,10.40%,50,565,0,8.10%,91.90%,0.00%,69,72,615,11.70% +143388,359,2064,State-funded primary,411,176,235,42.80%,57.20%,14,3.40%,69,16.80%,23,388,0,5.60%,94.40%,0.00%,156,157,411,38.20% +143389,359,2023,State-funded primary,213,105,108,49.30%,50.70%,0,0.00%,22,10.30%,8,205,0,3.80%,96.20%,0.00%,38,38,213,17.80% +143390,868,4083,State-funded secondary,547,257,290,47.00%,53.00%,6,1.10%,89,16.30%,88,459,0,16.10%,83.90%,0.00%,75,84,547,15.40% +143391,344,2204,State-funded primary,346,185,161,53.50%,46.50%,4,1.20%,35,10.10%,34,312,0,9.80%,90.20%,0.00%,27,25,259,9.70% +143393,336,3008,State-funded primary,399,192,207,48.10%,51.90%,12,3.00%,36,9.00%,14,385,0,3.50%,96.50%,0.00%,42,42,360,11.70% +143394,885,2162,State-funded primary,430,204,226,47.40%,52.60%,21,4.90%,64,14.90%,32,398,0,7.40%,92.60%,0.00%,133,141,396,35.60% +143395,885,4400,State-funded secondary,484,244,240,50.40%,49.60%,6,1.20%,52,10.70%,11,473,0,2.30%,97.70%,0.00%,55,64,484,13.20% +143396,885,3401,State-funded primary,620,289,331,46.60%,53.40%,7,1.10%,43,6.90%,35,585,0,5.60%,94.40%,0.00%,48,50,620,8.10% +143397,885,3318,State-funded primary,441,226,215,51.20%,48.80%,7,1.60%,37,8.40%,13,426,2,2.90%,96.60%,0.50%,37,37,441,8.40% +143398,816,2024,State-funded primary,150,71,79,47.30%,52.70%,3,2.00%,15,10.00%,26,122,2,17.30%,81.30%,1.30%,41,42,116,36.20% +143400,938,6002,Independent school,75,21,54,28.00%,72.00%,46,61.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143403,801,2110,State-funded primary,362,177,185,48.90%,51.10%,9,2.50%,71,19.60%,31,330,1,8.60%,91.20%,0.30%,250,250,362,69.10% +143404,873,4012,State-funded secondary,1556,755,801,48.50%,51.50%,44,2.80%,103,6.60%,80,1426,50,5.10%,91.60%,3.20%,198,181,1330,13.60% +143406,317,6005,Independent school,3,0,3,0.00%,100.00%,2,66.70%,1,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143407,878,6066,Independent school,23,9,14,39.10%,60.90%,2,8.70%,8,34.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143408,803,2171,State-funded primary,208,110,98,52.90%,47.10%,3,1.40%,24,11.50%,41,167,0,19.70%,80.30%,0.00%,37,39,208,18.80% +143409,919,2429,State-funded primary,297,139,158,46.80%,53.20%,5,1.70%,52,17.50%,18,279,0,6.10%,93.90%,0.00%,53,54,297,18.20% +143410,919,2384,State-funded primary,438,202,236,46.10%,53.90%,10,2.30%,87,19.90%,17,421,0,3.90%,96.10%,0.00%,47,52,419,12.40% +143411,319,2002,State-funded primary,428,219,209,51.20%,48.80%,9,2.10%,110,25.70%,143,285,0,33.40%,66.60%,0.00%,192,197,397,49.60% +143412,878,2716,State-funded primary,370,215,155,58.10%,41.90%,4,1.10%,24,6.50%,1,369,0,0.30%,99.70%,0.00%,56,58,370,15.70% +143413,330,2168,State-funded secondary,953,473,480,49.60%,50.40%,7,0.70%,122,12.80%,302,622,29,31.70%,65.30%,3.00%,488,555,953,58.20% +143414,394,2008,State-funded primary,217,107,110,49.30%,50.70%,6,2.80%,19,8.80%,2,215,0,0.90%,99.10%,0.00%,44,44,149,29.50% +143415,394,2009,State-funded primary,193,92,101,47.70%,52.30%,4,2.10%,35,18.10%,2,191,0,1.00%,99.00%,0.00%,97,100,193,51.80% +143416,885,2011,State-funded primary,197,90,107,45.70%,54.30%,4,2.00%,30,15.20%,38,159,0,19.30%,80.70%,0.00%,101,100,177,56.50% +143417,335,2029,State-funded primary,628,315,313,50.20%,49.80%,13,2.10%,104,16.60%,84,542,2,13.40%,86.30%,0.30%,229,240,570,42.10% +143418,330,6032,Independent school,10,3,7,30.00%,70.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143419,318,4003,State-funded secondary,886,418,468,47.20%,52.80%,41,4.60%,133,15.00%,106,780,0,12.00%,88.00%,0.00%,207,239,886,27.00% +143420,318,4004,State-funded secondary,591,305,286,51.60%,48.40%,14,2.40%,75,12.70%,208,383,0,35.20%,64.80%,0.00%,181,208,591,35.20% +143421,941,4041,State-funded secondary,1156,591,565,51.10%,48.90%,13,1.10%,120,10.40%,73,1083,0,6.30%,93.70%,0.00%,159,178,1027,17.30% +143424,883,4001,State-funded secondary,629,316,313,50.20%,49.80%,14,2.20%,80,12.70%,73,547,9,11.60%,87.00%,1.40%,195,214,629,34.00% +143426,305,2070,State-funded primary,315,160,155,50.80%,49.20%,32,10.20%,51,16.20%,56,258,1,17.80%,81.90%,0.30%,135,138,315,43.80% +143427,305,4003,State-funded secondary,609,271,338,44.50%,55.50%,23,3.80%,93,15.30%,64,544,1,10.50%,89.30%,0.20%,270,261,485,53.80% +143428,311,4007,State-funded secondary,896,423,473,47.20%,52.80%,27,3.00%,93,10.40%,217,658,21,24.20%,73.40%,2.30%,211,241,896,26.90% +143429,807,6001,Independent school,28,3,25,10.70%,89.30%,28,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143430,851,4006,State-funded secondary,456,125,331,27.40%,72.60%,6,1.30%,25,5.50%,32,424,0,7.00%,93.00%,0.00%,38,39,241,16.20% +143431,370,2056,State-funded primary,419,225,194,53.70%,46.30%,16,3.80%,53,12.60%,20,399,0,4.80%,95.20%,0.00%,127,127,384,33.10% +143432,303,2009,State-funded primary,471,228,243,48.40%,51.60%,9,1.90%,28,5.90%,94,377,0,20.00%,80.00%,0.00%,39,41,449,9.10% +143433,330,2188,State-funded primary,218,115,103,52.80%,47.20%,4,1.80%,44,20.20%,48,170,0,22.00%,78.00%,0.00%,61,59,199,29.60% +143434,330,5205,State-funded primary,222,101,121,45.50%,54.50%,2,0.90%,26,11.70%,9,213,0,4.10%,95.90%,0.00%,26,22,201,10.90% +143435,330,5403,State-funded secondary,1434,678,756,47.30%,52.70%,3,0.20%,184,12.80%,433,983,18,30.20%,68.50%,1.30%,736,766,1279,59.90% +143436,330,2156,State-funded primary,193,101,92,52.30%,47.70%,1,0.50%,45,23.30%,59,134,0,30.60%,69.40%,0.00%,100,100,173,57.80% +143437,330,3412,State-funded primary,847,397,450,46.90%,53.10%,16,1.90%,147,17.40%,316,531,0,37.30%,62.70%,0.00%,469,459,796,57.70% +143438,330,4129,State-funded secondary,783,350,433,44.70%,55.30%,12,1.50%,107,13.70%,125,656,2,16.00%,83.80%,0.30%,238,345,733,47.10% +143439,330,3004,State-funded primary,211,100,111,47.40%,52.60%,0,0.00%,30,14.20%,25,186,0,11.80%,88.20%,0.00%,37,39,211,18.50% +143440,873,3000,State-funded primary,90,44,46,48.90%,51.10%,1,1.10%,8,8.90%,25,65,0,27.80%,72.20%,0.00%,5,5,90,5.60% +143441,908,2215,State-funded primary,152,85,67,55.90%,44.10%,2,1.30%,19,12.50%,3,149,0,2.00%,98.00%,0.00%,16,17,152,11.20% +143442,908,2008,State-funded primary,104,55,49,52.90%,47.10%,2,1.90%,3,2.90%,3,101,0,2.90%,97.10%,0.00%,22,22,92,23.90% +143443,908,2234,State-funded primary,453,214,239,47.20%,52.80%,18,4.00%,78,17.20%,32,400,21,7.10%,88.30%,4.60%,132,134,453,29.60% +143444,908,2241,State-funded primary,396,192,204,48.50%,51.50%,12,3.00%,66,16.70%,15,369,12,3.80%,93.20%,3.00%,138,138,396,34.80% +143445,908,2758,State-funded primary,203,106,97,52.20%,47.80%,5,2.50%,28,13.80%,2,201,0,1.00%,99.00%,0.00%,54,52,183,28.40% +143446,908,2239,State-funded primary,492,252,240,51.20%,48.80%,10,2.00%,67,13.60%,53,439,0,10.80%,89.20%,0.00%,159,151,415,36.40% +143447,908,2233,State-funded primary,199,92,107,46.20%,53.80%,3,1.50%,25,12.60%,5,194,0,2.50%,97.50%,0.00%,62,64,199,32.20% +143448,908,2240,State-funded primary,207,99,108,47.80%,52.20%,2,1.00%,15,7.20%,3,204,0,1.40%,98.60%,0.00%,39,48,207,23.20% +143449,841,2648,State-funded primary,272,135,137,49.60%,50.40%,30,11.00%,53,19.50%,24,248,0,8.80%,91.20%,0.00%,132,134,221,60.60% +143450,830,3160,State-funded primary,137,67,70,48.90%,51.10%,5,3.60%,14,10.20%,0,137,0,0.00%,100.00%,0.00%,16,16,137,11.70% +143451,371,2170,State-funded primary,380,182,198,47.90%,52.10%,5,1.30%,54,14.20%,119,261,0,31.30%,68.70%,0.00%,139,145,354,41.00% +143452,881,3253,State-funded primary,445,224,221,50.30%,49.70%,9,2.00%,99,22.20%,74,371,0,16.60%,83.40%,0.00%,183,191,405,47.20% +143453,881,3401,State-funded primary,217,100,117,46.10%,53.90%,5,2.30%,38,17.50%,21,178,18,9.70%,82.00%,8.30%,39,41,185,22.20% +143454,884,3010,State-funded primary,61,34,27,55.70%,44.30%,1,1.60%,15,24.60%,7,54,0,11.50%,88.50%,0.00%,12,12,52,23.10% +143455,884,3304,State-funded primary,115,54,61,47.00%,53.00%,2,1.70%,10,8.70%,8,107,0,7.00%,93.00%,0.00%,14,15,100,15.00% +143456,340,3300,State-funded primary,235,125,110,53.20%,46.80%,7,3.00%,26,11.10%,3,232,0,1.30%,98.70%,0.00%,19,19,208,9.10% +143457,340,3301,State-funded primary,235,114,121,48.50%,51.50%,2,0.90%,20,8.50%,4,231,0,1.70%,98.30%,0.00%,9,10,209,4.80% +143458,887,2684,State-funded primary,207,105,102,50.70%,49.30%,1,0.50%,37,17.90%,12,195,0,5.80%,94.20%,0.00%,38,42,185,22.70% +143459,926,2025,State-funded primary,88,46,42,52.30%,47.70%,3,3.40%,15,17.00%,1,87,0,1.10%,98.90%,0.00%,10,10,75,13.30% +143460,926,2384,State-funded primary,147,62,85,42.20%,57.80%,3,2.00%,17,11.60%,15,132,0,10.20%,89.80%,0.00%,27,27,147,18.40% +143461,926,2338,State-funded primary,214,106,108,49.50%,50.50%,3,1.40%,16,7.50%,15,199,0,7.00%,93.00%,0.00%,79,79,191,41.40% +143462,926,2196,State-funded primary,112,54,58,48.20%,51.80%,1,0.90%,22,19.60%,5,104,3,4.50%,92.90%,2.70%,17,19,75,25.30% +143463,926,2009,State-funded primary,97,45,52,46.40%,53.60%,2,2.10%,11,11.30%,3,94,0,3.10%,96.90%,0.00%,11,13,97,13.40% +143464,802,3130,State-funded primary,325,156,169,48.00%,52.00%,11,3.40%,27,8.30%,20,305,0,6.20%,93.80%,0.00%,47,51,285,17.90% +143466,815,3245,State-funded primary,163,88,75,54.00%,46.00%,3,1.80%,8,4.90%,3,160,0,1.80%,98.20%,0.00%,7,9,140,6.40% +143467,941,3090,State-funded primary,398,185,213,46.50%,53.50%,6,1.50%,37,9.30%,60,338,0,15.10%,84.90%,0.00%,57,58,398,14.60% +143468,941,2011,State-funded primary,102,41,61,40.20%,59.80%,2,2.00%,19,18.60%,3,99,0,2.90%,97.10%,0.00%,16,17,82,20.70% +143469,929,4150,State-funded primary,230,129,101,56.10%,43.90%,3,1.30%,17,7.40%,18,212,0,7.80%,92.20%,0.00%,27,31,202,15.30% +143470,891,2222,State-funded primary,207,96,111,46.40%,53.60%,2,1.00%,31,15.00%,18,189,0,8.70%,91.30%,0.00%,72,76,207,36.70% +143471,891,2417,State-funded primary,210,111,99,52.90%,47.10%,0,0.00%,23,11.00%,6,204,0,2.90%,97.10%,0.00%,20,23,210,11.00% +143472,353,7012,State-funded special school,101,13,88,12.90%,87.10%,101,100.00%,0,0.00%,2,99,0,2.00%,98.00%,0.00%,68,81,101,80.20% +143473,879,2695,State-funded primary,179,86,93,48.00%,52.00%,2,1.10%,19,10.60%,2,177,0,1.10%,98.90%,0.00%,33,33,179,18.40% +143474,879,3771,State-funded primary,378,186,192,49.20%,50.80%,3,0.80%,19,5.00%,12,366,0,3.20%,96.80%,0.00%,46,47,378,12.40% +143475,879,2672,State-funded primary,228,120,108,52.60%,47.40%,7,3.10%,47,20.60%,28,200,0,12.30%,87.70%,0.00%,88,90,178,50.60% +143476,879,2724,State-funded primary,396,193,203,48.70%,51.30%,8,2.00%,53,13.40%,110,286,0,27.80%,72.20%,0.00%,149,149,396,37.60% +143477,839,2264,State-funded primary,213,107,106,50.20%,49.80%,2,0.90%,24,11.30%,23,181,9,10.80%,85.00%,4.20%,50,50,204,24.50% +143478,807,2224,State-funded primary,224,107,117,47.80%,52.20%,0,0.00%,27,12.10%,15,209,0,6.70%,93.30%,0.00%,74,77,197,39.10% +143479,807,2329,State-funded primary,289,143,146,49.50%,50.50%,6,2.10%,46,15.90%,2,287,0,0.70%,99.30%,0.00%,84,87,267,32.60% +143480,372,3327,State-funded primary,445,224,221,50.30%,49.70%,9,2.00%,64,14.40%,7,438,0,1.60%,98.40%,0.00%,61,61,406,15.00% +143481,372,2063,State-funded primary,432,220,212,50.90%,49.10%,12,2.80%,97,22.50%,23,409,0,5.30%,94.70%,0.00%,207,214,364,58.80% +143482,372,2122,State-funded primary,152,71,81,46.70%,53.30%,1,0.70%,24,15.80%,9,143,0,5.90%,94.10%,0.00%,55,57,152,37.50% +143483,860,2337,State-funded primary,138,67,71,48.60%,51.40%,2,1.40%,21,15.20%,7,131,0,5.10%,94.90%,0.00%,51,52,138,37.70% +143484,861,2048,State-funded primary,130,66,64,50.80%,49.20%,4,3.10%,26,20.00%,30,100,0,23.10%,76.90%,0.00%,44,38,101,37.60% +143485,861,2119,State-funded primary,209,107,102,51.20%,48.80%,4,1.90%,44,21.10%,151,58,0,72.20%,27.80%,0.00%,110,113,209,54.10% +143486,861,2050,State-funded primary,189,80,109,42.30%,57.70%,2,1.10%,38,20.10%,58,131,0,30.70%,69.30%,0.00%,64,50,142,35.20% +143487,861,2020,State-funded primary,223,109,114,48.90%,51.10%,1,0.40%,35,15.70%,67,156,0,30.00%,70.00%,0.00%,99,83,179,46.40% +143488,861,2026,State-funded primary,238,113,125,47.50%,52.50%,4,1.70%,61,25.60%,63,175,0,26.50%,73.50%,0.00%,118,120,238,50.40% +143489,861,2082,State-funded primary,169,81,88,47.90%,52.10%,6,3.60%,18,10.70%,118,51,0,69.80%,30.20%,0.00%,75,63,137,46.00% +143490,935,1110,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +143491,935,2064,State-funded primary,47,28,19,59.60%,40.40%,1,2.10%,10,21.30%,4,43,0,8.50%,91.50%,0.00%,9,9,47,19.10% +143492,935,2063,State-funded primary,398,193,205,48.50%,51.50%,12,3.00%,84,21.10%,9,389,0,2.30%,97.70%,0.00%,87,89,354,25.10% +143493,394,2175,State-funded primary,136,62,74,45.60%,54.40%,1,0.70%,29,21.30%,7,129,0,5.10%,94.90%,0.00%,83,83,120,69.20% +143494,866,3165,State-funded primary,101,50,51,49.50%,50.50%,0,0.00%,11,10.90%,4,94,3,4.00%,93.10%,3.00%,12,14,101,13.90% +143495,357,2079,State-funded primary,260,131,129,50.40%,49.60%,5,1.90%,26,10.00%,112,148,0,43.10%,56.90%,0.00%,81,95,244,38.90% +143497,937,2049,State-funded primary,135,65,70,48.10%,51.90%,2,1.50%,8,5.90%,4,131,0,3.00%,97.00%,0.00%,10,10,117,8.50% +143498,359,2015,State-funded primary,408,221,187,54.20%,45.80%,10,2.50%,53,13.00%,11,397,0,2.70%,97.30%,0.00%,55,58,408,14.20% +143499,865,2037,State-funded primary,135,66,69,48.90%,51.10%,2,1.50%,28,20.70%,10,125,0,7.40%,92.60%,0.00%,31,31,97,32.00% +143500,865,3344,State-funded primary,462,233,229,50.40%,49.60%,11,2.40%,69,14.90%,18,435,9,3.90%,94.20%,1.90%,68,68,419,16.20% +143501,344,2234,State-funded primary,475,224,251,47.20%,52.80%,9,1.90%,55,11.60%,8,467,0,1.70%,98.30%,0.00%,25,26,436,6.00% +143502,344,2244,State-funded primary,272,122,150,44.90%,55.10%,33,12.10%,74,27.20%,25,247,0,9.20%,90.80%,0.00%,159,159,259,61.40% +143503,344,2231,State-funded primary,472,245,227,51.90%,48.10%,6,1.30%,40,8.50%,13,457,2,2.80%,96.80%,0.40%,22,22,420,5.20% +143504,344,2200,State-funded primary,280,140,140,50.00%,50.00%,0,0.00%,49,17.50%,18,261,1,6.40%,93.20%,0.40%,47,49,280,17.50% +143505,344,2266,State-funded primary,333,158,175,47.40%,52.60%,2,0.60%,66,19.80%,9,324,0,2.70%,97.30%,0.00%,79,77,300,25.70% +143506,336,7011,State-funded special school,75,24,51,32.00%,68.00%,75,100.00%,0,0.00%,15,60,0,20.00%,80.00%,0.00%,41,42,75,56.00% +143507,885,4575,State-funded secondary,439,222,217,50.60%,49.40%,15,3.40%,45,10.30%,1,438,0,0.20%,99.80%,0.00%,37,44,439,10.00% +143508,885,2902,State-funded primary,289,150,139,51.90%,48.10%,4,1.40%,61,21.10%,10,279,0,3.50%,96.50%,0.00%,84,89,289,30.80% +143509,816,2429,State-funded primary,245,114,131,46.50%,53.50%,5,2.00%,49,20.00%,22,219,4,9.00%,89.40%,1.60%,91,93,197,47.20% +143510,380,2030,State-funded primary,257,114,143,44.40%,55.60%,13,5.10%,20,7.80%,5,252,0,1.90%,98.10%,0.00%,127,126,210,60.00% +143511,380,2031,State-funded primary,232,113,119,48.70%,51.30%,2,0.90%,35,15.10%,12,220,0,5.20%,94.80%,0.00%,131,135,206,65.50% +143512,841,2009,State-funded primary,256,121,135,47.30%,52.70%,3,1.20%,45,17.60%,180,76,0,70.30%,29.70%,0.00%,110,110,230,47.80% +143513,830,2024,State-funded primary,233,120,113,51.50%,48.50%,5,2.10%,27,11.60%,34,199,0,14.60%,85.40%,0.00%,44,43,209,20.60% +143514,371,2009,State-funded primary,155,68,87,43.90%,56.10%,6,3.90%,24,15.50%,12,143,0,7.70%,92.30%,0.00%,84,84,141,59.60% +143515,840,2020,State-funded primary,98,49,49,50.00%,50.00%,1,1.00%,18,18.40%,21,76,1,21.40%,77.60%,1.00%,35,34,89,38.20% +143516,881,2149,State-funded primary,437,211,226,48.30%,51.70%,5,1.10%,77,17.60%,137,287,13,31.40%,65.70%,3.00%,108,121,411,29.40% +143517,886,2081,State-funded primary,83,43,40,51.80%,48.20%,2,2.40%,18,21.70%,0,82,1,0.00%,98.80%,1.20%,32,35,83,42.20% +143518,925,2042,State-funded primary,102,55,47,53.90%,46.10%,1,1.00%,9,8.80%,4,98,0,3.90%,96.10%,0.00%,35,28,88,31.80% +143519,806,7001,State-funded special school,83,6,77,7.20%,92.80%,83,100.00%,0,0.00%,1,82,0,1.20%,98.80%,0.00%,66,69,83,83.10% +143520,926,4026,State-funded secondary,612,323,289,52.80%,47.20%,21,3.40%,113,18.50%,12,600,0,2.00%,98.00%,0.00%,138,159,612,26.00% +143522,926,2137,State-funded primary,327,158,169,48.30%,51.70%,13,4.00%,38,11.60%,28,299,0,8.60%,91.40%,0.00%,176,180,327,55.00% +143523,815,2005,State-funded primary,73,33,40,45.20%,54.80%,1,1.40%,4,5.50%,9,64,0,12.30%,87.70%,0.00%,6,6,65,9.20% +143524,394,2011,State-funded primary,462,231,231,50.00%,50.00%,5,1.10%,62,13.40%,6,456,0,1.30%,98.70%,0.00%,115,118,350,33.70% +143530,213,6003,Independent school,510,265,245,52.00%,48.00%,98,19.20%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143531,895,6003,Independent school,15,5,10,33.30%,66.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143532,394,6000,Independent school,109,20,89,18.30%,81.70%,107,98.20%,2,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143533,380,7004,State-funded special school,117,20,97,17.10%,82.90%,117,100.00%,0,0.00%,36,81,0,30.80%,69.20%,0.00%,47,39,93,41.90% +143534,825,2024,State-funded primary,253,122,131,48.20%,51.80%,22,8.70%,20,7.90%,19,233,1,7.50%,92.10%,0.40%,59,59,221,26.70% +143535,331,2018,State-funded primary,459,241,218,52.50%,47.50%,9,2.00%,79,17.20%,136,323,0,29.60%,70.40%,0.00%,102,106,400,26.50% +143536,909,2009,State-funded primary,64,33,31,51.60%,48.40%,5,7.80%,9,14.10%,0,64,0,0.00%,100.00%,0.00%,40,40,61,65.60% +143537,332,2006,State-funded primary,241,116,125,48.10%,51.90%,10,4.10%,39,16.20%,13,228,0,5.40%,94.60%,0.00%,60,62,215,28.80% +143538,881,2150,State-funded primary,408,200,208,49.00%,51.00%,16,3.90%,84,20.60%,56,352,0,13.70%,86.30%,0.00%,98,104,408,25.50% +143539,878,6067,Independent school,13,2,11,15.40%,84.60%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143541,921,2003,State-funded primary,202,99,103,49.00%,51.00%,10,5.00%,19,9.40%,3,199,0,1.50%,98.50%,0.00%,72,75,202,37.10% +143542,941,2202,State-funded primary,196,96,100,49.00%,51.00%,5,2.60%,45,23.00%,59,137,0,30.10%,69.90%,0.00%,75,79,196,40.30% +143543,929,2001,State-funded primary,99,47,52,47.50%,52.50%,4,4.00%,26,26.30%,0,99,0,0.00%,100.00%,0.00%,48,40,78,51.30% +143544,372,2026,State-funded primary,424,238,186,56.10%,43.90%,7,1.70%,79,18.60%,11,413,0,2.60%,97.40%,0.00%,94,100,388,25.80% +143545,372,4005,State-funded secondary,1027,506,521,49.30%,50.70%,24,2.30%,263,25.60%,438,585,4,42.60%,57.00%,0.40%,584,632,1027,61.50% +143546,373,2048,State-funded primary,225,110,115,48.90%,51.10%,5,2.20%,32,14.20%,115,110,0,51.10%,48.90%,0.00%,102,102,207,49.30% +143547,860,2022,State-funded primary,285,137,148,48.10%,51.90%,2,0.70%,38,13.30%,0,285,0,0.00%,100.00%,0.00%,21,25,285,8.80% +143548,893,2008,State-funded primary,107,49,58,45.80%,54.20%,4,3.70%,12,11.20%,2,105,0,1.90%,98.10%,0.00%,23,22,101,21.80% +143549,935,2187,State-funded primary,107,40,67,37.40%,62.60%,1,0.90%,15,14.00%,2,105,0,1.90%,98.10%,0.00%,11,11,107,10.30% +143550,935,2188,State-funded primary,431,217,214,50.30%,49.70%,25,5.80%,24,5.60%,148,283,0,34.30%,65.70%,0.00%,175,180,406,44.30% +143551,357,2015,State-funded primary,224,107,117,47.80%,52.20%,4,1.80%,22,9.80%,12,212,0,5.40%,94.60%,0.00%,82,83,224,37.10% +143552,880,7000,State-funded special school,55,6,49,10.90%,89.10%,54,98.20%,1,1.80%,0,55,0,0.00%,100.00%,0.00%,34,49,55,89.10% +143553,938,2027,State-funded primary,151,71,80,47.00%,53.00%,2,1.30%,31,20.50%,35,115,1,23.20%,76.20%,0.70%,53,55,151,36.40% +143554,344,4001,State-funded secondary,1098,478,620,43.50%,56.50%,18,1.60%,178,16.20%,37,1061,0,3.40%,96.60%,0.00%,445,424,943,45.00% +143555,370,2142,State-funded primary,419,214,205,51.10%,48.90%,13,3.10%,50,11.90%,14,405,0,3.30%,96.70%,0.00%,99,104,384,27.10% +143556,370,2135,State-funded primary,212,103,109,48.60%,51.40%,3,1.40%,25,11.80%,6,206,0,2.80%,97.20%,0.00%,58,60,194,30.90% +143557,800,2150,State-funded primary,171,90,81,52.60%,47.40%,5,2.90%,21,12.30%,14,157,0,8.20%,91.80%,0.00%,27,27,171,15.80% +143558,800,2159,State-funded primary,247,127,120,51.40%,48.60%,14,5.70%,33,13.40%,18,229,0,7.30%,92.70%,0.00%,59,61,247,24.70% +143559,800,3423,State-funded primary,239,110,129,46.00%,54.00%,6,2.50%,21,8.80%,23,216,0,9.60%,90.40%,0.00%,26,26,239,10.90% +143560,800,3032,State-funded primary,275,125,150,45.50%,54.50%,9,3.30%,40,14.50%,41,234,0,14.90%,85.10%,0.00%,44,46,275,16.70% +143561,822,2115,State-funded primary,286,135,151,47.20%,52.80%,4,1.40%,31,10.80%,38,246,2,13.30%,86.00%,0.70%,39,39,286,13.60% +143562,330,5402,State-funded secondary,1065,27,1038,2.50%,97.50%,2,0.20%,19,1.80%,331,730,4,31.10%,68.50%,0.40%,121,110,750,14.70% +143563,330,2060,State-funded primary,232,109,123,47.00%,53.00%,3,1.30%,35,15.10%,153,79,0,65.90%,34.10%,0.00%,161,156,210,74.30% +143564,380,2041,State-funded primary,704,339,365,48.20%,51.80%,19,2.70%,101,14.30%,663,41,0,94.20%,5.80%,0.00%,204,201,620,32.40% +143565,380,2184,State-funded primary,194,91,103,46.90%,53.10%,9,4.60%,49,25.30%,170,24,0,87.60%,12.40%,0.00%,53,56,185,30.30% +143566,380,2193,State-funded primary,435,206,229,47.40%,52.60%,8,1.80%,88,20.20%,327,108,0,75.20%,24.80%,0.00%,137,143,394,36.30% +143567,380,2167,State-funded primary,210,112,98,53.30%,46.70%,9,4.30%,29,13.80%,9,201,0,4.30%,95.70%,0.00%,65,60,186,32.30% +143568,380,2179,State-funded primary,635,323,312,50.90%,49.10%,14,2.20%,132,20.80%,448,187,0,70.60%,29.40%,0.00%,149,152,574,26.50% +143569,380,2132,State-funded primary,223,107,116,48.00%,52.00%,14,6.30%,41,18.40%,109,114,0,48.90%,51.10%,0.00%,94,84,196,42.90% +143571,380,2135,State-funded primary,332,178,154,53.60%,46.40%,4,1.20%,38,11.40%,243,89,0,73.20%,26.80%,0.00%,80,78,285,27.40% +143572,380,2044,State-funded primary,413,205,208,49.60%,50.40%,9,2.20%,47,11.40%,317,96,0,76.80%,23.20%,0.00%,128,132,413,32.00% +143573,380,2034,State-funded primary,623,312,311,50.10%,49.90%,42,6.70%,86,13.80%,537,86,0,86.20%,13.80%,0.00%,235,241,552,43.70% +143574,825,1106,State-funded AP school,72,23,49,31.90%,68.10%,41,56.90%,30,41.70%,4,68,0,5.60%,94.40%,0.00%,33,40,68,58.80% +143575,873,2220,State-funded primary,275,138,137,50.20%,49.80%,7,2.50%,45,16.40%,15,260,0,5.50%,94.50%,0.00%,60,64,275,23.30% +143576,873,2204,State-funded primary,236,115,121,48.70%,51.30%,6,2.50%,26,11.00%,10,226,0,4.20%,95.80%,0.00%,37,39,236,16.50% +143578,830,2291,State-funded primary,253,126,127,49.80%,50.20%,4,1.60%,61,24.10%,14,239,0,5.50%,94.50%,0.00%,102,92,216,42.60% +143579,830,2056,State-funded primary,80,44,36,55.00%,45.00%,0,0.00%,5,6.30%,3,77,0,3.80%,96.30%,0.00%,14,14,69,20.30% +143580,830,2055,State-funded primary,316,144,172,45.60%,54.40%,2,0.60%,63,19.90%,4,312,0,1.30%,98.70%,0.00%,110,111,316,35.10% +143581,371,3308,State-funded primary,235,121,114,51.50%,48.50%,7,3.00%,50,21.30%,4,231,0,1.70%,98.30%,0.00%,80,79,202,39.10% +143582,332,4110,State-funded secondary,1003,472,531,47.10%,52.90%,17,1.70%,194,19.30%,100,898,5,10.00%,89.50%,0.50%,241,272,1003,27.10% +143583,840,4691,State-funded secondary,1408,742,666,52.70%,47.30%,15,1.10%,62,4.40%,91,1317,0,6.50%,93.50%,0.00%,152,154,1165,13.20% +143584,840,2225,State-funded primary,129,63,66,48.80%,51.20%,1,0.80%,30,23.30%,4,125,0,3.10%,96.90%,0.00%,63,51,107,47.70% +143585,840,3526,State-funded primary,331,147,184,44.40%,55.60%,11,3.30%,37,11.20%,10,321,0,3.00%,97.00%,0.00%,133,135,331,40.80% +143586,811,2746,State-funded primary,311,155,156,49.80%,50.20%,11,3.50%,18,5.80%,6,305,0,1.90%,98.10%,0.00%,21,21,291,7.20% +143587,811,2743,State-funded primary,286,134,152,46.90%,53.10%,14,4.90%,31,10.80%,19,267,0,6.60%,93.40%,0.00%,68,69,286,24.10% +143588,811,4060,State-funded secondary,1261,617,644,48.90%,51.10%,32,2.50%,148,11.70%,33,1224,4,2.60%,97.10%,0.30%,134,139,1095,12.70% +143589,881,7065,State-funded special school,446,113,333,25.30%,74.70%,446,100.00%,0,0.00%,5,441,0,1.10%,98.90%,0.00%,186,162,346,46.80% +143590,881,1112,State-funded AP school,48,16,32,33.30%,66.70%,3,6.30%,45,93.80%,0,48,0,0.00%,100.00%,0.00%,23,32,48,66.70% +143591,881,1106,State-funded AP school,56,20,36,35.70%,64.30%,2,3.60%,54,96.40%,1,55,0,1.80%,98.20%,0.00%,34,38,56,67.90% +143592,203,2885,State-funded primary,686,333,353,48.50%,51.50%,24,3.50%,91,13.30%,283,403,0,41.30%,58.70%,0.00%,183,181,611,29.60% +143593,203,2804,State-funded primary,215,104,111,48.40%,51.60%,8,3.70%,48,22.30%,43,172,0,20.00%,80.00%,0.00%,73,72,198,36.40% +143594,203,2656,State-funded primary,480,232,248,48.30%,51.70%,11,2.30%,58,12.10%,158,322,0,32.90%,67.10%,0.00%,243,242,434,55.80% +143595,203,7201,State-funded special school,272,88,184,32.40%,67.60%,269,98.90%,3,1.10%,78,194,0,28.70%,71.30%,0.00%,135,139,264,52.70% +143596,203,2920,State-funded primary,625,309,316,49.40%,50.60%,17,2.70%,128,20.50%,255,360,10,40.80%,57.60%,1.60%,228,226,561,40.30% +143597,203,2275,State-funded primary,410,196,214,47.80%,52.20%,12,2.90%,37,9.00%,108,299,3,26.30%,72.90%,0.70%,44,49,410,12.00% +143598,203,2313,State-funded primary,357,181,176,50.70%,49.30%,14,3.90%,69,19.30%,89,267,1,24.90%,74.80%,0.30%,169,158,328,48.20% +143599,203,2923,State-funded primary,463,230,233,49.70%,50.30%,8,1.70%,50,10.80%,93,370,0,20.10%,79.90%,0.00%,42,42,413,10.20% +143601,203,2024,State-funded primary,205,93,112,45.40%,54.60%,19,9.30%,26,12.70%,49,154,2,23.90%,75.10%,1.00%,110,115,205,56.10% +143602,876,2109,State-funded primary,197,102,95,51.80%,48.20%,2,1.00%,32,16.20%,2,195,0,1.00%,99.00%,0.00%,22,23,197,11.70% +143603,919,2398,State-funded primary,463,232,231,50.10%,49.90%,10,2.20%,55,11.90%,325,138,0,70.20%,29.80%,0.00%,67,68,405,16.80% +143604,919,7034,State-funded special school,93,9,84,9.70%,90.30%,91,97.80%,2,2.20%,2,90,1,2.20%,96.80%,1.10%,57,60,93,64.50% +143605,886,5220,State-funded primary,591,289,302,48.90%,51.10%,15,2.50%,97,16.40%,37,554,0,6.30%,93.70%,0.00%,168,174,591,29.40% +143606,886,2235,State-funded primary,579,294,285,50.80%,49.20%,9,1.60%,89,15.40%,9,570,0,1.60%,98.40%,0.00%,150,154,579,26.60% +143607,856,2008,State-funded primary,179,96,83,53.60%,46.40%,4,2.20%,42,23.50%,67,111,1,37.40%,62.00%,0.60%,60,63,157,40.10% +143608,855,2006,State-funded primary,201,113,88,56.20%,43.80%,2,1.00%,18,9.00%,8,191,2,4.00%,95.00%,1.00%,22,25,201,12.40% +143609,855,2383,State-funded primary,189,103,86,54.50%,45.50%,6,3.20%,20,10.60%,3,185,1,1.60%,97.90%,0.50%,17,17,189,9.00% +143610,855,3305,State-funded primary,72,34,38,47.20%,52.80%,1,1.40%,7,9.70%,2,70,0,2.80%,97.20%,0.00%,2,2,72,2.80% +143611,855,2083,State-funded primary,98,34,64,34.70%,65.30%,0,0.00%,23,23.50%,5,93,0,5.10%,94.90%,0.00%,34,35,98,35.70% +143612,815,2139,State-funded primary,280,131,149,46.80%,53.20%,10,3.60%,26,9.30%,10,270,0,3.60%,96.40%,0.00%,107,93,229,40.60% +143613,815,2382,State-funded primary,406,189,217,46.60%,53.40%,13,3.20%,41,10.10%,30,376,0,7.40%,92.60%,0.00%,35,35,406,8.60% +143614,941,3057,State-funded primary,249,132,117,53.00%,47.00%,1,0.40%,27,10.80%,12,237,0,4.80%,95.20%,0.00%,27,29,249,11.60% +143615,879,3774,State-funded primary,401,201,200,50.10%,49.90%,10,2.50%,43,10.70%,67,331,3,16.70%,82.50%,0.70%,117,123,401,30.70% +143616,839,2173,State-funded primary,302,152,150,50.30%,49.70%,3,1.00%,8,2.60%,3,299,0,1.00%,99.00%,0.00%,11,11,302,3.60% +143617,317,3529,State-funded primary,665,340,325,51.10%,48.90%,11,1.70%,85,12.80%,598,67,0,89.90%,10.10%,0.00%,168,169,613,27.60% +143618,807,2315,State-funded primary,157,81,76,51.60%,48.40%,0,0.00%,26,16.60%,3,154,0,1.90%,98.10%,0.00%,31,32,138,23.20% +143619,807,2356,State-funded primary,113,52,61,46.00%,54.00%,2,1.80%,25,22.10%,0,113,0,0.00%,100.00%,0.00%,48,48,90,53.30% +143620,373,2321,State-funded primary,553,287,266,51.90%,48.10%,14,2.50%,109,19.70%,108,444,1,19.50%,80.30%,0.20%,341,296,421,70.30% +143621,933,3489,State-funded primary,407,196,211,48.20%,51.80%,6,1.50%,45,11.10%,49,358,0,12.00%,88.00%,0.00%,30,30,407,7.40% +143622,860,3156,State-funded primary,87,44,43,50.60%,49.40%,1,1.10%,6,6.90%,2,85,0,2.30%,97.70%,0.00%,13,14,87,16.10% +143623,808,2076,State-funded primary,354,168,186,47.50%,52.50%,6,1.70%,41,11.60%,12,342,0,3.40%,96.60%,0.00%,180,158,306,51.60% +143624,935,3320,State-funded primary,261,144,117,55.20%,44.80%,4,1.50%,15,5.70%,111,150,0,42.50%,57.50%,0.00%,28,29,238,12.20% +143625,936,3939,State-funded primary,358,173,185,48.30%,51.70%,26,7.30%,51,14.20%,42,316,0,11.70%,88.30%,0.00%,100,103,358,28.80% +143626,936,3059,State-funded primary,216,125,91,57.90%,42.10%,4,1.90%,33,15.30%,38,178,0,17.60%,82.40%,0.00%,53,53,216,24.50% +143627,936,3587,State-funded primary,480,223,256,46.50%,53.30%,11,2.30%,56,11.70%,38,441,1,7.90%,91.90%,0.20%,30,32,480,6.70% +143628,319,2027,State-funded primary,446,215,231,48.20%,51.80%,10,2.20%,34,7.60%,205,241,0,46.00%,54.00%,0.00%,75,77,414,18.60% +143629,211,4242,State-funded secondary,1616,1616,0,100.00%,0.00%,39,2.40%,126,7.80%,1125,491,0,69.60%,30.40%,0.00%,755,612,1190,51.40% +143630,211,7171,State-funded special school,55,0,55,0.00%,100.00%,55,100.00%,0,0.00%,7,48,0,12.70%,87.30%,0.00%,28,36,42,85.70% +143631,937,3508,State-funded primary,103,47,56,45.60%,54.40%,0,0.00%,7,6.80%,9,91,3,8.70%,88.30%,2.90%,6,6,101,5.90% +143632,937,3500,State-funded primary,88,40,48,45.50%,54.50%,3,3.40%,15,17.00%,2,86,0,2.30%,97.70%,0.00%,28,28,88,31.80% +143633,937,3506,State-funded primary,204,100,104,49.00%,51.00%,1,0.50%,17,8.30%,79,125,0,38.70%,61.30%,0.00%,22,22,204,10.80% +143634,937,4730,State-funded secondary,579,286,293,49.40%,50.60%,6,1.00%,96,16.60%,96,481,2,16.60%,83.10%,0.30%,91,86,490,17.60% +143635,938,3361,State-funded primary,582,270,312,46.40%,53.60%,10,1.70%,50,8.60%,180,402,0,30.90%,69.10%,0.00%,155,163,582,28.00% +143636,885,3322,State-funded primary,150,70,80,46.70%,53.30%,2,1.30%,21,14.00%,80,70,0,53.30%,46.70%,0.00%,19,19,150,12.70% +143638,885,3309,State-funded primary,80,32,48,40.00%,60.00%,0,0.00%,9,11.30%,3,77,0,3.80%,96.30%,0.00%,12,13,80,16.30% +143639,881,4018,State-funded secondary,507,257,250,50.70%,49.30%,43,8.50%,79,15.60%,13,494,0,2.60%,97.40%,0.00%,124,169,507,33.30% +143640,304,6004,Independent school,140,68,72,48.60%,51.40%,1,0.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143641,874,4005,State-funded secondary,1157,571,586,49.40%,50.60%,35,3.00%,81,7.00%,104,1029,24,9.00%,88.90%,2.10%,233,241,1042,23.10% +143642,838,6039,Independent school,19,1,18,5.30%,94.70%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143643,825,2025,State-funded primary,91,44,47,48.40%,51.60%,2,2.20%,14,15.40%,6,84,1,6.60%,92.30%,1.10%,12,12,91,13.20% +143648,919,2060,State-funded primary,213,117,96,54.90%,45.10%,2,0.90%,33,15.50%,38,174,1,17.80%,81.70%,0.50%,11,11,213,5.20% +143649,908,4002,State-funded secondary,866,428,438,49.40%,50.60%,19,2.20%,125,14.40%,23,843,0,2.70%,97.30%,0.00%,197,200,782,25.60% +143651,381,2001,State-funded primary,285,154,131,54.00%,46.00%,4,1.40%,35,12.30%,25,260,0,8.80%,91.20%,0.00%,107,108,285,37.90% +143652,372,3342,State-funded primary,330,157,173,47.60%,52.40%,2,0.60%,39,11.80%,8,322,0,2.40%,97.60%,0.00%,62,66,299,22.10% +143653,861,6013,Independent school,56,11,45,19.60%,80.40%,22,39.30%,34,60.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143655,916,2029,State-funded primary,237,106,131,44.70%,55.30%,5,2.10%,25,10.50%,13,224,0,5.50%,94.50%,0.00%,32,32,198,16.20% +143659,206,4001,State-funded secondary,675,340,335,50.40%,49.60%,16,2.40%,103,15.30%,269,406,0,39.90%,60.10%,0.00%,343,375,644,58.20% +143663,860,2023,State-funded primary,162,77,85,47.50%,52.50%,3,1.90%,23,14.20%,27,135,0,16.70%,83.30%,0.00%,26,26,162,16.00% +143668,316,2011,State-funded primary,279,133,146,47.70%,52.30%,8,2.90%,29,10.40%,202,74,3,72.40%,26.50%,1.10%,45,46,241,19.10% +143669,936,4004,State-funded secondary,124,57,67,46.00%,54.00%,11,8.90%,18,14.50%,18,106,0,14.50%,85.50%,0.00%,20,21,124,16.90% +143671,935,2189,State-funded primary,259,129,130,49.80%,50.20%,4,1.50%,25,9.70%,12,247,0,4.60%,95.40%,0.00%,63,59,222,26.60% +143673,866,2017,State-funded primary,58,26,32,44.80%,55.20%,1,1.70%,4,6.90%,8,50,0,13.80%,86.20%,0.00%,16,16,32,50.00% +143679,856,4001,State-funded secondary,950,444,506,46.70%,53.30%,8,0.80%,60,6.30%,557,393,0,58.60%,41.40%,0.00%,96,108,894,12.10% +143686,203,4005,State-funded secondary,943,943,0,100.00%,0.00%,13,1.40%,78,8.30%,236,684,23,25.00%,72.50%,2.40%,294,356,943,37.80% +143697,881,4019,State-funded secondary,652,308,344,47.20%,52.80%,20,3.10%,54,8.30%,81,549,22,12.40%,84.20%,3.40%,155,182,628,29.00% +143698,850,4008,State-funded secondary,278,137,141,49.30%,50.70%,19,6.80%,30,10.80%,2,276,0,0.70%,99.30%,0.00%,48,63,278,22.70% +143701,881,4021,State-funded secondary,239,126,113,52.70%,47.30%,7,2.90%,42,17.60%,18,221,0,7.50%,92.50%,0.00%,34,48,239,20.10% +143702,206,7002,State-funded special school,29,7,22,24.10%,75.90%,28,96.60%,1,3.40%,2,27,0,6.90%,93.10%,0.00%,20,21,29,72.40% +143704,380,4048,State-funded secondary,1091,611,480,56.00%,44.00%,2,0.20%,27,2.50%,275,306,510,25.20%,28.00%,46.70%,240,0,0,0.00% +143706,319,4005,State-funded secondary,1036,477,559,46.00%,54.00%,32,3.10%,106,10.20%,293,741,2,28.30%,71.50%,0.20%,115,151,1036,14.60% +143707,937,4010,State-funded secondary,358,197,161,55.00%,45.00%,7,2.00%,47,13.10%,46,312,0,12.80%,87.20%,0.00%,66,71,358,19.80% +143712,916,2036,State-funded primary,188,90,98,47.90%,52.10%,9,4.80%,12,6.40%,10,178,0,5.30%,94.70%,0.00%,25,26,188,13.80% +143714,312,7007,State-funded special school,64,10,54,15.60%,84.40%,64,100.00%,0,0.00%,5,58,1,7.80%,90.60%,1.60%,34,49,64,76.60% +143718,304,4003,State-funded secondary,220,103,117,46.80%,53.20%,1,0.50%,6,2.70%,146,73,1,66.40%,33.20%,0.50%,41,55,220,25.00% +143723,909,7003,State-funded special school,56,10,46,17.90%,82.10%,56,100.00%,0,0.00%,1,55,0,1.80%,98.20%,0.00%,19,18,52,34.60% +143729,352,4009,State-funded secondary,846,398,448,47.00%,53.00%,42,5.00%,151,17.80%,246,574,26,29.10%,67.80%,3.10%,301,316,846,37.40% +143731,304,7001,State-funded special school,73,8,65,11.00%,89.00%,73,100.00%,0,0.00%,38,35,0,52.10%,47.90%,0.00%,23,24,73,32.90% +143734,831,4004,State-funded secondary,877,409,468,46.60%,53.40%,12,1.40%,112,12.80%,146,728,3,16.60%,83.00%,0.30%,321,370,877,42.20% +143739,212,2008,State-funded primary,70,36,34,51.40%,48.60%,1,1.40%,5,7.10%,47,23,0,67.10%,32.90%,0.00%,16,16,70,22.90% +143745,210,7000,State-funded special school,76,20,56,26.30%,73.70%,76,100.00%,0,0.00%,41,35,0,53.90%,46.10%,0.00%,50,53,76,69.70% +143746,341,1110,State-funded AP school,3,1,2,33.30%,66.70%,1,33.30%,1,33.30%,0,2,1,0.00%,66.70%,33.30%,1,3,3,100.00% +143749,909,4013,State-funded secondary,368,181,187,49.20%,50.80%,4,1.10%,95,25.80%,5,363,0,1.40%,98.60%,0.00%,22,24,280,8.60% +143750,335,1105,State-funded AP school,16,6,10,37.50%,62.50%,4,25.00%,12,75.00%,1,15,0,6.30%,93.80%,0.00%,9,0,2,0.00% +143756,204,4005,State-funded secondary,729,366,363,50.20%,49.80%,35,4.80%,69,9.50%,356,370,3,48.80%,50.80%,0.40%,370,423,709,59.70% +143761,383,1113,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +143762,353,7002,State-funded special school,75,24,51,32.00%,68.00%,75,100.00%,0,0.00%,25,50,0,33.30%,66.70%,0.00%,31,34,75,45.30% +143763,352,2044,State-funded primary,268,139,129,51.90%,48.10%,22,8.20%,27,10.10%,167,94,7,62.30%,35.10%,2.60%,121,119,233,51.10% +143766,826,2024,State-funded primary,490,236,254,48.20%,51.80%,12,2.40%,25,5.10%,148,340,2,30.20%,69.40%,0.40%,50,53,444,11.90% +143768,876,2003,State-funded primary,166,73,93,44.00%,56.00%,10,6.00%,29,17.50%,6,160,0,3.60%,96.40%,0.00%,81,83,153,54.20% +143770,822,2052,State-funded primary,228,122,106,53.50%,46.50%,4,1.80%,34,14.90%,28,200,0,12.30%,87.70%,0.00%,35,35,198,17.70% +143771,890,2824,State-funded primary,301,162,139,53.80%,46.20%,5,1.70%,55,18.30%,22,279,0,7.30%,92.70%,0.00%,195,177,265,66.80% +143772,350,4046,State-funded secondary,1224,593,631,48.40%,51.60%,14,1.10%,107,8.70%,400,821,3,32.70%,67.10%,0.20%,521,576,1224,47.10% +143773,350,4501,State-funded secondary,1507,762,745,50.60%,49.40%,42,2.80%,136,9.00%,151,1354,2,10.00%,89.80%,0.10%,336,347,1274,27.20% +143774,305,2062,State-funded primary,430,196,234,45.60%,54.40%,15,3.50%,59,13.70%,114,309,7,26.50%,71.90%,1.60%,132,134,391,34.30% +143775,873,2216,State-funded primary,197,74,123,37.60%,62.40%,5,2.50%,34,17.30%,10,187,0,5.10%,94.90%,0.00%,53,54,197,27.40% +143776,873,3026,State-funded primary,340,178,162,52.40%,47.60%,16,4.70%,28,8.20%,101,237,2,29.70%,69.70%,0.60%,34,38,340,11.20% +143777,873,2218,State-funded primary,267,124,143,46.40%,53.60%,13,4.90%,45,16.90%,27,240,0,10.10%,89.90%,0.00%,103,106,267,39.70% +143778,908,2319,State-funded primary,38,23,15,60.50%,39.50%,1,2.60%,5,13.20%,3,35,0,7.90%,92.10%,0.00%,7,8,35,22.90% +143779,331,2138,State-funded primary,684,343,341,50.10%,49.90%,8,1.20%,127,18.60%,248,435,1,36.30%,63.60%,0.10%,161,165,621,26.60% +143780,331,2034,State-funded primary,284,135,149,47.50%,52.50%,1,0.40%,60,21.10%,37,247,0,13.00%,87.00%,0.00%,54,56,284,19.70% +143781,909,2123,State-funded primary,48,20,28,41.70%,58.30%,1,2.10%,7,14.60%,2,46,0,4.20%,95.80%,0.00%,1,1,48,2.10% +143782,332,2107,State-funded primary,380,202,178,53.20%,46.80%,3,0.80%,24,6.30%,11,369,0,2.90%,97.10%,0.00%,37,41,380,10.80% +143783,332,2120,State-funded primary,617,298,319,48.30%,51.70%,6,1.00%,41,6.60%,6,611,0,1.00%,99.00%,0.00%,57,58,617,9.40% +143784,881,2589,State-funded primary,301,155,146,51.50%,48.50%,5,1.70%,28,9.30%,100,201,0,33.20%,66.80%,0.00%,22,23,301,7.60% +143785,919,2110,State-funded primary,679,337,342,49.60%,50.40%,22,3.20%,183,27.00%,183,496,0,27.00%,73.00%,0.00%,211,211,613,34.40% +143786,919,2235,State-funded primary,498,231,267,46.40%,53.60%,9,1.80%,91,18.30%,82,416,0,16.50%,83.50%,0.00%,86,91,409,22.20% +143787,886,2290,State-funded primary,151,73,78,48.30%,51.70%,2,1.30%,15,9.90%,3,148,0,2.00%,98.00%,0.00%,32,32,151,21.20% +143788,886,3143,State-funded primary,160,67,93,41.90%,58.10%,0,0.00%,21,13.10%,21,139,0,13.10%,86.90%,0.00%,41,43,160,26.90% +143789,886,3144,State-funded primary,194,103,91,53.10%,46.90%,6,3.10%,30,15.50%,8,186,0,4.10%,95.90%,0.00%,56,58,194,29.90% +143790,382,2078,State-funded primary,41,19,22,46.30%,53.70%,2,4.90%,7,17.10%,0,41,0,0.00%,100.00%,0.00%,4,4,41,9.80% +143791,382,4054,State-funded secondary,496,251,245,50.60%,49.40%,11,2.20%,50,10.10%,3,493,0,0.60%,99.40%,0.00%,66,71,496,14.30% +143792,382,4041,State-funded secondary,616,300,316,48.70%,51.30%,21,3.40%,108,17.50%,4,612,0,0.60%,99.40%,0.00%,69,75,616,12.20% +143793,382,2094,State-funded primary,178,92,86,51.70%,48.30%,6,3.40%,16,9.00%,0,178,0,0.00%,100.00%,0.00%,4,4,178,2.20% +143794,888,4131,State-funded secondary,953,460,493,48.30%,51.70%,20,2.10%,132,13.90%,29,921,3,3.00%,96.60%,0.30%,274,298,953,31.30% +143795,855,2351,State-funded primary,520,236,284,45.40%,54.60%,15,2.90%,75,14.40%,50,467,3,9.60%,89.80%,0.60%,111,111,520,21.30% +143796,892,2155,State-funded primary,449,225,224,50.10%,49.90%,3,0.70%,75,16.70%,322,127,0,71.70%,28.30%,0.00%,142,146,410,35.60% +143797,891,2876,State-funded primary,143,68,75,47.60%,52.40%,2,1.40%,13,9.10%,4,139,0,2.80%,97.20%,0.00%,13,11,121,9.10% +143798,373,2332,State-funded primary,441,199,242,45.10%,54.90%,7,1.60%,73,16.60%,339,102,0,76.90%,23.10%,0.00%,242,234,394,59.40% +143799,373,2359,State-funded primary,375,181,194,48.30%,51.70%,16,4.30%,54,14.40%,119,256,0,31.70%,68.30%,0.00%,155,160,337,47.50% +143801,893,2149,State-funded primary,446,224,222,50.20%,49.80%,3,0.70%,62,13.90%,15,431,0,3.40%,96.60%,0.00%,93,93,395,23.50% +143802,871,3363,State-funded primary,424,198,226,46.70%,53.30%,11,2.60%,34,8.00%,215,209,0,50.70%,49.30%,0.00%,59,60,393,15.30% +143803,871,4800,State-funded secondary,940,451,489,48.00%,52.00%,31,3.30%,107,11.40%,402,537,1,42.80%,57.10%,0.10%,87,84,775,10.80% +143804,871,3364,State-funded primary,496,256,240,51.60%,48.40%,18,3.60%,57,11.50%,304,192,0,61.30%,38.70%,0.00%,78,81,463,17.50% +143805,860,3042,State-funded primary,197,96,101,48.70%,51.30%,2,1.00%,21,10.70%,3,194,0,1.50%,98.50%,0.00%,9,10,171,5.80% +143806,935,2098,State-funded primary,25,11,14,44.00%,56.00%,1,4.00%,2,8.00%,0,25,0,0.00%,100.00%,0.00%,5,5,25,20.00% +143807,935,3096,State-funded primary,166,91,75,54.80%,45.20%,0,0.00%,16,9.60%,0,166,0,0.00%,100.00%,0.00%,11,11,166,6.60% +143808,936,5408,State-funded secondary,831,404,427,48.60%,51.40%,35,4.20%,134,16.10%,37,794,0,4.50%,95.50%,0.00%,203,223,831,26.80% +143809,936,2403,State-funded primary,421,211,210,50.10%,49.90%,6,1.40%,36,8.60%,29,392,0,6.90%,93.10%,0.00%,53,56,421,13.30% +143810,384,2069,State-funded primary,185,81,104,43.80%,56.20%,4,2.20%,37,20.00%,4,181,0,2.20%,97.80%,0.00%,22,22,162,13.60% +143811,384,2207,State-funded primary,466,241,225,51.70%,48.30%,10,2.10%,54,11.60%,12,454,0,2.60%,97.40%,0.00%,76,76,407,18.70% +143812,359,4034,State-funded secondary,1286,641,645,49.80%,50.20%,19,1.50%,186,14.50%,36,1249,1,2.80%,97.10%,0.10%,190,205,1286,15.90% +143813,336,3318,State-funded primary,255,119,136,46.70%,53.30%,5,2.00%,39,15.30%,31,224,0,12.20%,87.80%,0.00%,111,111,216,51.40% +143814,885,3082,State-funded primary,115,51,64,44.30%,55.70%,1,0.90%,12,10.40%,10,105,0,8.70%,91.30%,0.00%,9,9,115,7.80% +143816,885,3072,State-funded primary,127,73,54,57.50%,42.50%,2,1.60%,26,20.50%,10,117,0,7.90%,92.10%,0.00%,20,20,127,15.70% +143817,896,4002,State-funded secondary,722,381,341,52.80%,47.20%,20,2.80%,118,16.30%,127,595,0,17.60%,82.40%,0.00%,195,188,620,30.30% +143818,332,4001,State-funded secondary,916,456,460,49.80%,50.20%,17,1.90%,124,13.50%,58,850,8,6.30%,92.80%,0.90%,252,271,916,29.60% +143821,332,2007,State-funded primary,459,217,242,47.30%,52.70%,17,3.70%,120,26.10%,121,337,1,26.40%,73.40%,0.20%,175,181,401,45.10% +143822,332,2008,State-funded primary,369,189,180,51.20%,48.80%,5,1.40%,53,14.40%,49,319,1,13.30%,86.40%,0.30%,66,68,369,18.40% +143823,811,2009,State-funded primary,55,30,25,54.50%,45.50%,1,1.80%,10,18.20%,0,55,0,0.00%,100.00%,0.00%,16,18,51,35.30% +143824,926,2149,State-funded primary,323,167,156,51.70%,48.30%,22,6.80%,53,16.40%,74,246,3,22.90%,76.20%,0.90%,145,148,323,45.80% +143825,891,2026,State-funded primary,272,125,147,46.00%,54.00%,2,0.70%,54,19.90%,57,215,0,21.00%,79.00%,0.00%,131,130,263,49.40% +143826,879,2006,State-funded primary,434,205,229,47.20%,52.80%,15,3.50%,45,10.40%,22,411,1,5.10%,94.70%,0.20%,52,59,434,13.60% +143827,879,2007,State-funded primary,115,52,63,45.20%,54.80%,4,3.50%,21,18.30%,52,63,0,45.20%,54.80%,0.00%,55,52,88,59.10% +143828,851,7001,State-funded special school,162,42,120,25.90%,74.10%,162,100.00%,0,0.00%,17,145,0,10.50%,89.50%,0.00%,98,102,162,63.00% +143829,860,2025,State-funded primary,201,110,91,54.70%,45.30%,1,0.50%,23,11.40%,1,200,0,0.50%,99.50%,0.00%,29,29,182,15.90% +143830,935,2197,State-funded primary,94,50,44,53.20%,46.80%,3,3.20%,10,10.60%,1,93,0,1.10%,98.90%,0.00%,27,26,88,29.50% +143832,887,3758,State-funded primary,229,127,102,55.50%,44.50%,1,0.40%,40,17.50%,24,205,0,10.50%,89.50%,0.00%,39,41,210,19.50% +143833,885,3012,State-funded primary,229,103,126,45.00%,55.00%,3,1.30%,52,22.70%,12,217,0,5.20%,94.80%,0.00%,96,99,201,49.30% +143835,873,3046,State-funded primary,241,121,120,50.20%,49.80%,7,2.90%,28,11.60%,11,197,33,4.60%,81.70%,13.70%,64,67,207,32.40% +143836,873,2044,State-funded primary,418,220,198,52.60%,47.40%,24,5.70%,71,17.00%,218,200,0,52.20%,47.80%,0.00%,193,195,373,52.30% +143838,209,6002,Independent school,13,7,6,53.80%,46.20%,5,38.50%,5,38.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143839,860,6044,Independent school,85,29,56,34.10%,65.90%,84,98.80%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143841,381,6019,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143844,855,4023,State-funded secondary,622,288,334,46.30%,53.70%,40,6.40%,115,18.50%,123,499,0,19.80%,80.20%,0.00%,227,255,622,41.00% +143845,841,4002,State-funded secondary,453,231,222,51.00%,49.00%,11,2.40%,70,15.50%,26,427,0,5.70%,94.30%,0.00%,196,222,453,49.00% +143846,306,4007,State-funded secondary,539,255,284,47.30%,52.70%,35,6.50%,145,26.90%,44,462,33,8.20%,85.70%,6.10%,324,357,539,66.20% +143847,380,2032,State-funded primary,309,149,160,48.20%,51.80%,10,3.20%,42,13.60%,56,253,0,18.10%,81.90%,0.00%,123,126,261,48.30% +143848,351,4000,State-funded secondary,946,495,451,52.30%,47.70%,30,3.20%,101,10.70%,128,802,16,13.50%,84.80%,1.70%,263,280,946,29.60% +143849,873,2045,State-funded primary,227,111,116,48.90%,51.10%,16,7.00%,24,10.60%,52,175,0,22.90%,77.10%,0.00%,62,64,227,28.20% +143850,823,2006,State-funded primary,205,110,95,53.70%,46.30%,10,4.90%,39,19.00%,43,162,0,21.00%,79.00%,0.00%,55,55,176,31.30% +143853,831,4005,State-funded secondary,1120,575,545,51.30%,48.70%,26,2.30%,163,14.60%,116,1003,1,10.40%,89.60%,0.10%,421,518,1120,46.30% +143854,811,4001,State-funded secondary,1406,708,698,50.40%,49.60%,38,2.70%,171,12.20%,42,1364,0,3.00%,97.00%,0.00%,293,294,1222,24.10% +143855,881,2155,State-funded primary,132,66,66,50.00%,50.00%,3,2.30%,17,12.90%,5,127,0,3.80%,96.20%,0.00%,12,12,132,9.10% +143856,919,2063,State-funded primary,311,147,164,47.30%,52.70%,13,4.20%,21,6.80%,78,233,0,25.10%,74.90%,0.00%,98,100,291,34.40% +143857,856,4002,State-funded secondary,944,308,636,32.60%,67.40%,4,0.40%,117,12.40%,509,427,8,53.90%,45.20%,0.80%,367,396,944,41.90% +143858,888,6067,Independent school,6,0,6,0.00%,100.00%,4,66.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143859,874,2008,State-funded primary,555,258,297,46.50%,53.50%,5,0.90%,69,12.40%,437,118,0,78.70%,21.30%,0.00%,224,233,509,45.80% +143860,935,2198,State-funded primary,399,201,198,50.40%,49.60%,11,2.80%,46,11.50%,20,378,1,5.00%,94.70%,0.30%,126,127,365,34.80% +143861,935,2199,State-funded primary,337,170,167,50.40%,49.60%,15,4.50%,45,13.40%,85,247,5,25.20%,73.30%,1.50%,99,101,337,30.00% +143863,816,2020,State-funded primary,159,72,87,45.30%,54.70%,7,4.40%,30,18.90%,54,105,0,34.00%,66.00%,0.00%,63,58,146,39.70% +143864,816,4000,State-funded secondary,684,333,351,48.70%,51.30%,10,1.50%,62,9.10%,50,634,0,7.30%,92.70%,0.00%,161,170,684,24.90% +143865,302,7000,State-funded special school,207,71,136,34.30%,65.70%,207,100.00%,0,0.00%,76,128,3,36.70%,61.80%,1.40%,97,80,131,61.10% +143866,303,2032,State-funded primary,406,201,205,49.50%,50.50%,13,3.20%,64,15.80%,61,342,3,15.00%,84.20%,0.70%,55,56,353,15.90% +143867,303,2031,State-funded primary,452,204,248,45.10%,54.90%,36,8.00%,114,25.20%,60,392,0,13.30%,86.70%,0.00%,100,107,452,23.70% +143868,303,2083,State-funded primary,215,104,111,48.40%,51.60%,14,6.50%,35,16.30%,79,136,0,36.70%,63.30%,0.00%,37,37,215,17.20% +143869,330,3430,State-funded primary,722,353,369,48.90%,51.10%,10,1.40%,103,14.30%,479,243,0,66.30%,33.70%,0.00%,239,248,722,34.30% +143870,873,2252,State-funded primary,202,114,88,56.40%,43.60%,7,3.50%,16,7.90%,0,202,0,0.00%,100.00%,0.00%,48,48,174,27.60% +143871,873,2206,State-funded primary,411,202,209,49.10%,50.90%,14,3.40%,53,12.90%,40,369,2,9.70%,89.80%,0.50%,102,108,411,26.30% +143872,895,3545,State-funded primary,71,37,34,52.10%,47.90%,3,4.20%,11,15.50%,4,67,0,5.60%,94.40%,0.00%,9,10,71,14.10% +143873,908,2119,State-funded primary,135,73,62,54.10%,45.90%,2,1.50%,12,8.90%,1,134,0,0.70%,99.30%,0.00%,12,12,135,8.90% +143874,908,2104,State-funded primary,84,41,43,48.80%,51.20%,0,0.00%,11,13.10%,19,65,0,22.60%,77.40%,0.00%,10,9,73,12.30% +143875,831,3544,State-funded primary,593,277,316,46.70%,53.30%,17,2.90%,65,11.00%,538,55,0,90.70%,9.30%,0.00%,307,292,541,54.00% +143876,371,2164,State-funded primary,408,205,203,50.20%,49.80%,8,2.00%,51,12.50%,116,287,5,28.40%,70.30%,1.20%,119,113,366,30.90% +143877,311,4025,State-funded secondary,736,0,736,0.00%,100.00%,20,2.70%,84,11.40%,185,549,2,25.10%,74.60%,0.30%,138,150,736,20.40% +143878,340,2000,State-funded primary,251,128,123,51.00%,49.00%,9,3.60%,46,18.30%,6,245,0,2.40%,97.60%,0.00%,118,118,227,52.00% +143879,888,7092,State-funded special school,233,67,166,28.80%,71.20%,232,99.60%,1,0.40%,25,208,0,10.70%,89.30%,0.00%,71,67,189,35.40% +143880,887,2214,State-funded primary,480,223,257,46.50%,53.50%,4,0.80%,65,13.50%,160,320,0,33.30%,66.70%,0.00%,139,150,480,31.30% +143881,316,2071,State-funded primary,437,229,208,52.40%,47.60%,27,6.20%,48,11.00%,316,121,0,72.30%,27.70%,0.00%,125,136,401,33.90% +143882,316,2091,State-funded primary,495,247,248,49.90%,50.10%,23,4.60%,69,13.90%,405,90,0,81.80%,18.20%,0.00%,130,137,416,32.90% +143883,316,2016,State-funded primary,418,221,197,52.90%,47.10%,18,4.30%,34,8.10%,213,205,0,51.00%,49.00%,0.00%,170,173,380,45.50% +143884,812,2109,State-funded primary,305,173,132,56.70%,43.30%,7,2.30%,73,23.90%,19,286,0,6.20%,93.80%,0.00%,195,200,305,65.60% +143886,891,2801,State-funded primary,224,121,103,54.00%,46.00%,5,2.20%,24,10.70%,9,215,0,4.00%,96.00%,0.00%,76,78,224,34.80% +143887,891,2236,State-funded primary,176,89,87,50.60%,49.40%,3,1.70%,19,10.80%,14,162,0,8.00%,92.00%,0.00%,50,51,176,29.00% +143888,931,3655,State-funded primary,96,45,51,46.90%,53.10%,5,5.20%,27,28.10%,10,86,0,10.40%,89.60%,0.00%,10,9,84,10.70% +143889,931,3144,State-funded primary,105,57,48,54.30%,45.70%,1,1.00%,16,15.20%,3,102,0,2.90%,97.10%,0.00%,17,14,92,15.20% +143890,931,4125,State-funded secondary,866,441,425,50.90%,49.10%,25,2.90%,131,15.10%,111,755,0,12.80%,87.20%,0.00%,139,141,751,18.80% +143891,879,2682,State-funded primary,112,57,55,50.90%,49.10%,7,6.30%,22,19.60%,22,90,0,19.60%,80.40%,0.00%,57,57,112,50.90% +143892,879,2683,State-funded primary,180,97,83,53.90%,46.10%,3,1.70%,21,11.70%,26,154,0,14.40%,85.60%,0.00%,90,87,168,51.80% +143893,879,2696,State-funded primary,408,203,205,49.80%,50.20%,9,2.20%,62,15.20%,20,388,0,4.90%,95.10%,0.00%,43,43,377,11.40% +143894,372,2074,State-funded primary,176,87,89,49.40%,50.60%,4,2.30%,28,15.90%,1,175,0,0.60%,99.40%,0.00%,30,33,168,19.60% +143895,334,4037,State-funded secondary,899,451,448,50.20%,49.80%,15,1.70%,186,20.70%,75,821,3,8.30%,91.30%,0.30%,490,569,899,63.30% +143896,860,3120,State-funded primary,166,75,91,45.20%,54.80%,2,1.20%,16,9.60%,2,164,0,1.20%,98.80%,0.00%,16,16,143,11.20% +143897,860,7038,State-funded special school,108,20,88,18.50%,81.50%,107,99.10%,1,0.90%,11,97,0,10.20%,89.80%,0.00%,39,39,108,36.10% +143898,860,2217,State-funded primary,481,237,244,49.30%,50.70%,3,0.60%,105,21.80%,10,471,0,2.10%,97.90%,0.00%,105,109,381,28.60% +143899,860,4178,State-funded secondary,1309,647,662,49.40%,50.60%,22,1.70%,181,13.80%,24,1283,2,1.80%,98.00%,0.20%,237,248,1181,21.00% +143900,860,2410,State-funded primary,189,105,84,55.60%,44.40%,1,0.50%,45,23.80%,1,188,0,0.50%,99.50%,0.00%,60,62,189,32.80% +143901,936,4454,State-funded secondary,1478,696,782,47.10%,52.90%,26,1.80%,192,13.00%,89,1387,2,6.00%,93.80%,0.10%,116,122,1218,10.00% +143902,936,4073,State-funded secondary,1043,430,613,41.20%,58.80%,47,4.50%,143,13.70%,79,964,0,7.60%,92.40%,0.00%,185,199,935,21.30% +143903,936,4460,State-funded secondary,972,485,487,49.90%,50.10%,25,2.60%,200,20.60%,117,796,59,12.00%,81.90%,6.10%,228,249,972,25.60% +143904,335,2123,State-funded primary,451,242,209,53.70%,46.30%,9,2.00%,33,7.30%,323,128,0,71.60%,28.40%,0.00%,188,194,411,47.20% +143905,937,4114,State-funded secondary,1672,868,804,51.90%,48.10%,29,1.70%,238,14.20%,55,1614,3,3.30%,96.50%,0.20%,171,177,1341,13.20% +143906,937,2624,State-funded primary,386,190,196,49.20%,50.80%,3,0.80%,33,8.50%,23,363,0,6.00%,94.00%,0.00%,71,72,386,18.70% +143907,370,4009,State-funded secondary,1204,574,630,47.70%,52.30%,30,2.50%,196,16.30%,77,1088,39,6.40%,90.40%,3.20%,417,470,1204,39.00% +143908,330,2170,State-funded primary,469,223,246,47.50%,52.50%,5,1.10%,82,17.50%,277,192,0,59.10%,40.90%,0.00%,231,220,412,53.40% +143909,887,2018,State-funded primary,392,180,212,45.90%,54.10%,5,1.30%,48,12.20%,54,314,24,13.80%,80.10%,6.10%,136,138,327,42.20% +143911,935,6004,Independent school,23,2,21,8.70%,91.30%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143912,341,6008,Independent school,16,3,13,18.80%,81.30%,15,93.80%,1,6.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143915,800,2002,State-funded primary,156,84,72,53.80%,46.20%,7,4.50%,28,17.90%,2,153,1,1.30%,98.10%,0.60%,11,11,125,8.80% +143916,371,4006,State-funded secondary,290,132,158,45.50%,54.50%,34,11.70%,51,17.60%,10,280,0,3.40%,96.60%,0.00%,60,60,245,24.50% +143918,334,1108,State-funded AP school,72,17,55,23.60%,76.40%,20,27.80%,30,41.70%,0,72,0,0.00%,100.00%,0.00%,46,48,72,66.70% +143923,391,4005,State-funded secondary,120,69,51,57.50%,42.50%,1,0.80%,9,7.50%,5,115,0,4.20%,95.80%,0.00%,7,8,120,6.70% +143924,308,4003,State-funded secondary,549,274,275,49.90%,50.10%,20,3.60%,51,9.30%,55,464,30,10.00%,84.50%,5.50%,40,45,549,8.20% +143925,310,2004,State-funded primary,177,95,82,53.70%,46.30%,0,0.00%,20,11.30%,87,90,0,49.20%,50.80%,0.00%,25,26,177,14.70% +143926,822,2002,State-funded primary,476,245,231,51.50%,48.50%,4,0.80%,57,12.00%,68,408,0,14.30%,85.70%,0.00%,64,64,438,14.60% +143927,203,4006,State-funded secondary,798,316,482,39.60%,60.40%,10,1.30%,128,16.00%,234,561,3,29.30%,70.30%,0.40%,324,352,705,49.90% +143930,895,6004,Independent school,21,9,12,42.90%,57.10%,4,19.00%,17,81.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143932,860,6045,Independent school,111,17,94,15.30%,84.70%,111,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143933,209,6003,Independent school,9,3,6,33.30%,66.70%,5,55.60%,1,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143934,831,4006,State-funded secondary,1115,520,595,46.60%,53.40%,64,5.70%,160,14.30%,86,1026,3,7.70%,92.00%,0.30%,307,324,1041,31.10% +143935,938,6003,Independent school,16,9,7,56.30%,43.80%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143936,888,6069,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143938,371,4007,State-funded secondary,1153,574,579,49.80%,50.20%,12,1.00%,177,15.40%,392,759,2,34.00%,65.80%,0.20%,390,418,1067,39.20% +143939,370,2044,State-funded primary,419,202,217,48.20%,51.80%,12,2.90%,32,7.60%,33,373,13,7.90%,89.00%,3.10%,190,192,394,48.70% +143940,370,2049,State-funded primary,217,109,108,50.20%,49.80%,1,0.50%,27,12.40%,35,182,0,16.10%,83.90%,0.00%,74,70,185,37.80% +143941,873,2049,State-funded primary,426,204,222,47.90%,52.10%,28,6.60%,56,13.10%,57,369,0,13.40%,86.60%,0.00%,132,134,416,32.20% +143942,330,2039,State-funded primary,484,240,244,49.60%,50.40%,3,0.60%,82,16.90%,258,226,0,53.30%,46.70%,0.00%,155,148,424,34.90% +143943,330,2471,State-funded primary,473,241,232,51.00%,49.00%,7,1.50%,62,13.10%,392,81,0,82.90%,17.10%,0.00%,172,176,424,41.50% +143944,380,2061,State-funded primary,533,256,277,48.00%,52.00%,17,3.20%,55,10.30%,24,509,0,4.50%,95.50%,0.00%,152,151,486,31.10% +143945,891,2027,State-funded primary,472,228,244,48.30%,51.70%,5,1.10%,37,7.80%,50,422,0,10.60%,89.40%,0.00%,175,172,416,41.30% +143946,311,4013,State-funded secondary,787,355,432,45.10%,54.90%,20,2.50%,20,2.50%,221,543,23,28.10%,69.00%,2.90%,246,273,787,34.70% +143947,878,6068,Independent school,104,62,42,59.60%,40.40%,10,9.60%,40,38.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +143948,881,2156,State-funded primary,176,94,82,53.40%,46.60%,4,2.30%,19,10.80%,2,174,0,1.10%,98.90%,0.00%,41,44,176,25.00% +143949,926,2150,State-funded primary,86,42,44,48.80%,51.20%,1,1.20%,15,17.40%,1,85,0,1.20%,98.80%,0.00%,16,17,86,19.80% +143950,940,2207,State-funded primary,81,33,48,40.70%,59.30%,5,6.20%,8,9.90%,3,78,0,3.70%,96.30%,0.00%,11,11,81,13.60% +143951,931,2020,State-funded primary,293,141,152,48.10%,51.90%,15,5.10%,35,11.90%,112,180,1,38.20%,61.40%,0.30%,46,48,257,18.70% +143952,860,2026,State-funded primary,288,140,148,48.60%,51.40%,7,2.40%,39,13.50%,6,282,0,2.10%,97.90%,0.00%,28,28,288,9.70% +143953,830,2025,State-funded primary,197,83,114,42.10%,57.90%,22,11.20%,57,28.90%,0,197,0,0.00%,100.00%,0.00%,108,113,197,57.40% +143954,886,4015,State-funded secondary,779,387,392,49.70%,50.30%,21,2.70%,81,10.40%,29,720,30,3.70%,92.40%,3.90%,178,196,751,26.10% +143955,873,2050,State-funded primary,145,70,75,48.30%,51.70%,9,6.20%,20,13.80%,2,142,1,1.40%,97.90%,0.70%,41,42,121,34.70% +143956,926,2151,State-funded primary,290,133,157,45.90%,54.10%,10,3.40%,27,9.30%,119,170,1,41.00%,58.60%,0.30%,59,59,235,25.10% +143957,865,2030,State-funded primary,77,42,35,54.50%,45.50%,1,1.30%,15,19.50%,4,73,0,5.20%,94.80%,0.00%,6,7,76,9.20% +143958,933,3493,State-funded primary,212,113,99,53.30%,46.70%,8,3.80%,14,6.60%,6,206,0,2.80%,97.20%,0.00%,12,13,212,6.10% +143959,860,3075,State-funded primary,39,13,26,33.30%,66.70%,1,2.60%,2,5.10%,1,38,0,2.60%,97.40%,0.00%,3,3,39,7.70% +143960,384,3316,State-funded primary,225,106,119,47.10%,52.90%,5,2.20%,30,13.30%,3,222,0,1.30%,98.70%,0.00%,35,37,199,18.60% +143961,926,2003,State-funded primary,86,51,35,59.30%,40.70%,0,0.00%,15,17.40%,0,86,0,0.00%,100.00%,0.00%,15,15,86,17.40% +143962,371,2169,State-funded primary,458,213,245,46.50%,53.50%,5,1.10%,91,19.90%,158,300,0,34.50%,65.50%,0.00%,160,155,400,38.80% +143963,373,4276,State-funded secondary,1083,513,570,47.40%,52.60%,56,5.20%,217,20.00%,51,1032,0,4.70%,95.30%,0.00%,363,388,1083,35.80% +143964,373,2353,State-funded primary,576,284,292,49.30%,50.70%,5,0.90%,83,14.40%,4,572,0,0.70%,99.30%,0.00%,164,159,526,30.20% +143965,373,2323,State-funded primary,384,182,202,47.40%,52.60%,14,3.60%,78,20.30%,18,366,0,4.70%,95.30%,0.00%,144,135,343,39.40% +143966,882,3822,State-funded primary,591,317,274,53.60%,46.40%,12,2.00%,90,15.20%,108,483,0,18.30%,81.70%,0.00%,240,250,544,46.00% +143967,908,3381,State-funded primary,63,29,34,46.00%,54.00%,1,1.60%,8,12.70%,2,61,0,3.20%,96.80%,0.00%,15,14,56,25.00% +143968,830,2005,State-funded primary,158,65,93,41.10%,58.90%,1,0.60%,51,32.30%,6,152,0,3.80%,96.20%,0.00%,76,66,124,53.20% +143969,931,2452,State-funded primary,202,85,117,42.10%,57.90%,3,1.50%,25,12.40%,6,196,0,3.00%,97.00%,0.00%,26,27,185,14.60% +143970,373,2354,State-funded primary,406,208,198,51.20%,48.80%,0,0.00%,56,13.80%,18,388,0,4.40%,95.60%,0.00%,89,93,406,22.90% +143973,938,2244,State-funded primary,450,221,229,49.10%,50.90%,28,6.20%,84,18.70%,114,336,0,25.30%,74.70%,0.00%,117,119,415,28.70% +143974,884,3037,State-funded primary,107,55,52,51.40%,48.60%,0,0.00%,8,7.50%,4,103,0,3.70%,96.30%,0.00%,8,8,107,7.50% +143975,908,2114,State-funded primary,65,27,38,41.50%,58.50%,2,3.10%,6,9.20%,0,61,4,0.00%,93.80%,6.20%,7,7,65,10.80% +143976,873,2448,State-funded primary,398,187,211,47.00%,53.00%,10,2.50%,58,14.60%,50,348,0,12.60%,87.40%,0.00%,122,124,398,31.20% +143977,908,2100,State-funded primary,74,36,38,48.60%,51.40%,1,1.40%,4,5.40%,0,72,2,0.00%,97.30%,2.70%,8,10,74,13.50% +143978,881,2130,State-funded primary,418,202,216,48.30%,51.70%,17,4.10%,37,8.90%,9,409,0,2.20%,97.80%,0.00%,84,89,418,21.30% +143979,941,3032,State-funded primary,172,84,88,48.80%,51.20%,2,1.20%,18,10.50%,2,170,0,1.20%,98.80%,0.00%,16,16,172,9.30% +143980,908,2128,State-funded primary,68,29,39,42.60%,57.40%,0,0.00%,9,13.20%,0,68,0,0.00%,100.00%,0.00%,16,16,68,23.50% +143981,908,4146,State-funded secondary,1293,646,647,50.00%,50.00%,24,1.90%,211,16.30%,10,1251,32,0.80%,96.80%,2.50%,207,200,1107,18.10% +143982,380,2123,State-funded primary,359,180,179,50.10%,49.90%,7,1.90%,58,16.20%,202,157,0,56.30%,43.70%,0.00%,123,126,322,39.10% +143983,860,3432,State-funded primary,68,38,30,55.90%,44.10%,0,0.00%,7,10.30%,0,68,0,0.00%,100.00%,0.00%,3,3,68,4.40% +143984,931,4082,State-funded secondary,743,369,374,49.70%,50.30%,25,3.40%,162,21.80%,26,717,0,3.50%,96.50%,0.00%,82,99,743,13.30% +143986,931,3124,State-funded primary,95,43,52,45.30%,54.70%,4,4.20%,5,5.30%,0,95,0,0.00%,100.00%,0.00%,11,12,95,12.60% +143987,886,3324,State-funded primary,216,113,103,52.30%,47.70%,5,2.30%,14,6.50%,3,213,0,1.40%,98.60%,0.00%,14,14,216,6.50% +143988,926,2364,State-funded primary,179,77,102,43.00%,57.00%,3,1.70%,16,8.90%,10,165,4,5.60%,92.20%,2.20%,20,20,179,11.20% +143989,936,2292,State-funded primary,124,61,63,49.20%,50.80%,3,2.40%,9,7.30%,27,97,0,21.80%,78.20%,0.00%,15,15,82,18.30% +143990,926,2275,State-funded primary,139,65,74,46.80%,53.20%,1,0.70%,18,12.90%,12,127,0,8.60%,91.40%,0.00%,19,19,121,15.70% +143991,802,2310,State-funded primary,373,186,187,49.90%,50.10%,8,2.10%,27,7.20%,10,363,0,2.70%,97.30%,0.00%,45,48,373,12.90% +143992,908,2115,State-funded primary,157,78,79,49.70%,50.30%,4,2.50%,28,17.80%,2,155,0,1.30%,98.70%,0.00%,28,28,157,17.80% +143993,908,4164,State-funded secondary,555,265,290,47.70%,52.30%,19,3.40%,110,19.80%,4,550,1,0.70%,99.10%,0.20%,116,121,555,21.80% +143994,908,2133,State-funded primary,456,224,232,49.10%,50.90%,5,1.10%,57,12.50%,3,453,0,0.70%,99.30%,0.00%,53,50,403,12.40% +143995,936,2444,State-funded primary,104,49,55,47.10%,52.90%,0,0.00%,19,18.30%,19,85,0,18.30%,81.70%,0.00%,31,22,66,33.30% +143996,908,2749,State-funded primary,215,120,95,55.80%,44.20%,2,0.90%,36,16.70%,2,213,0,0.90%,99.10%,0.00%,34,33,196,16.80% +143997,373,2363,State-funded primary,361,177,184,49.00%,51.00%,11,3.00%,62,17.20%,22,339,0,6.10%,93.90%,0.00%,176,143,301,47.50% +143998,908,2124,State-funded primary,79,37,42,46.80%,53.20%,4,5.10%,4,5.10%,0,79,0,0.00%,100.00%,0.00%,9,9,79,11.40% +143999,869,2079,State-funded primary,283,131,152,46.30%,53.70%,17,6.00%,22,7.80%,101,182,0,35.70%,64.30%,0.00%,62,62,283,21.90% +144000,353,3007,State-funded primary,207,94,113,45.40%,54.60%,4,1.90%,13,6.30%,8,199,0,3.90%,96.10%,0.00%,12,16,207,7.70% +144001,936,3936,State-funded primary,439,225,214,51.30%,48.70%,12,2.70%,52,11.80%,171,267,1,39.00%,60.80%,0.20%,149,141,401,35.20% +144002,860,4146,State-funded secondary,993,525,468,52.90%,47.10%,9,0.90%,146,14.70%,34,956,3,3.40%,96.30%,0.30%,97,94,743,12.70% +144003,908,2125,State-funded primary,66,28,38,42.40%,57.60%,2,3.00%,10,15.20%,0,66,0,0.00%,100.00%,0.00%,17,17,64,26.60% +144005,886,2658,State-funded primary,358,181,177,50.60%,49.40%,3,0.80%,46,12.80%,84,269,5,23.50%,75.10%,1.40%,145,149,336,44.30% +144006,380,2117,State-funded primary,281,147,134,52.30%,47.70%,4,1.40%,9,3.20%,3,278,0,1.10%,98.90%,0.00%,33,36,281,12.80% +144007,860,4512,State-funded secondary,368,200,168,54.30%,45.70%,3,0.80%,68,18.50%,19,349,0,5.20%,94.80%,0.00%,51,53,368,14.40% +144008,931,4052,State-funded secondary,1225,621,604,50.70%,49.30%,41,3.30%,164,13.40%,81,1143,1,6.60%,93.30%,0.10%,146,161,1073,15.00% +144009,879,7065,State-funded special school,100,19,81,19.00%,81.00%,100,100.00%,0,0.00%,4,96,0,4.00%,96.00%,0.00%,45,52,100,52.00% +144010,823,2007,State-funded primary,52,29,23,55.80%,44.20%,3,5.80%,15,28.80%,1,51,0,1.90%,98.10%,0.00%,21,21,51,41.20% +144012,830,2026,State-funded primary,260,124,136,47.70%,52.30%,14,5.40%,50,19.20%,11,249,0,4.20%,95.80%,0.00%,104,111,232,47.80% +144013,916,4009,State-funded secondary,789,413,376,52.30%,47.70%,26,3.30%,94,11.90%,6,780,3,0.80%,98.90%,0.40%,184,206,789,26.10% +144014,850,4009,State-funded secondary,1360,664,696,48.80%,51.20%,51,3.80%,234,17.20%,43,1314,3,3.20%,96.60%,0.20%,467,510,1360,37.50% +144015,886,4016,State-funded secondary,1111,571,540,51.40%,48.60%,26,2.30%,204,18.40%,87,1021,3,7.80%,91.90%,0.30%,400,451,1111,40.60% +144017,926,2154,State-funded primary,202,101,101,50.00%,50.00%,2,1.00%,30,14.90%,3,199,0,1.50%,98.50%,0.00%,58,62,202,30.70% +144018,926,4027,State-funded secondary,682,334,348,49.00%,51.00%,13,1.90%,149,21.80%,14,663,5,2.10%,97.20%,0.70%,122,129,682,18.90% +144019,926,2156,State-funded primary,100,41,59,41.00%,59.00%,1,1.00%,18,18.00%,7,82,11,7.00%,82.00%,11.00%,11,11,100,11.00% +144020,926,2157,State-funded primary,324,151,173,46.60%,53.40%,4,1.20%,28,8.60%,17,307,0,5.20%,94.80%,0.00%,27,29,324,9.00% +144021,926,2159,State-funded primary,77,35,42,45.50%,54.50%,2,2.60%,12,15.60%,4,73,0,5.20%,94.80%,0.00%,15,15,77,19.50% +144022,892,1111,State-funded AP school,95,16,79,16.80%,83.20%,6,6.30%,79,83.20%,4,91,0,4.20%,95.80%,0.00%,80,86,95,90.50% +144023,892,1112,State-funded AP school,122,31,91,25.40%,74.60%,4,3.30%,114,93.40%,13,109,0,10.70%,89.30%,0.00%,73,93,122,76.20% +144024,891,7001,State-funded special school,55,13,42,23.60%,76.40%,55,100.00%,0,0.00%,8,46,1,14.50%,83.60%,1.80%,38,38,55,69.10% +144025,353,2020,State-funded primary,349,192,157,55.00%,45.00%,7,2.00%,74,21.20%,40,309,0,11.50%,88.50%,0.00%,165,150,293,51.20% +144031,880,1100,State-funded AP school,43,16,27,37.20%,62.80%,0,0.00%,23,53.50%,0,43,0,0.00%,100.00%,0.00%,26,32,43,74.40% +144033,869,6019,Independent school,69,12,57,17.40%,82.60%,69,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144035,301,3300,State-funded primary,364,178,186,48.90%,51.10%,3,0.80%,49,13.50%,149,215,0,40.90%,59.10%,0.00%,71,76,364,20.90% +144036,370,2099,State-funded primary,220,110,110,50.00%,50.00%,5,2.30%,42,19.10%,26,194,0,11.80%,88.20%,0.00%,104,100,197,50.80% +144037,370,2126,State-funded primary,405,201,204,49.60%,50.40%,7,1.70%,47,11.60%,44,361,0,10.90%,89.10%,0.00%,200,193,367,52.60% +144038,800,2242,State-funded primary,258,128,130,49.60%,50.40%,11,4.30%,28,10.90%,21,237,0,8.10%,91.90%,0.00%,32,32,258,12.40% +144039,822,2045,State-funded primary,416,222,194,53.40%,46.60%,8,1.90%,54,13.00%,73,343,0,17.50%,82.50%,0.00%,81,82,416,19.70% +144041,303,7001,State-funded special school,174,39,135,22.40%,77.60%,174,100.00%,0,0.00%,39,135,0,22.40%,77.60%,0.00%,59,62,174,35.60% +144042,330,7038,State-funded special school,104,48,56,46.20%,53.80%,104,100.00%,0,0.00%,36,64,4,34.60%,61.50%,3.80%,30,35,99,35.40% +144043,330,7049,State-funded special school,89,30,59,33.70%,66.30%,89,100.00%,0,0.00%,18,68,3,20.20%,76.40%,3.40%,40,42,87,48.30% +144044,350,5401,State-funded secondary,1759,904,855,51.40%,48.60%,30,1.70%,108,6.10%,119,1639,1,6.80%,93.20%,0.10%,184,204,1493,13.70% +144045,350,2086,State-funded primary,243,114,129,46.90%,53.10%,5,2.10%,25,10.30%,14,229,0,5.80%,94.20%,0.00%,36,36,210,17.10% +144046,350,5400,State-funded secondary,1046,500,546,47.80%,52.20%,56,5.40%,99,9.50%,125,921,0,12.00%,88.00%,0.00%,164,193,1046,18.50% +144047,839,2231,State-funded primary,456,233,223,51.10%,48.90%,16,3.50%,77,16.90%,34,422,0,7.50%,92.50%,0.00%,80,86,456,18.90% +144048,867,2236,State-funded primary,616,300,316,48.70%,51.30%,21,3.40%,74,12.00%,79,535,2,12.80%,86.90%,0.30%,98,98,564,17.40% +144050,380,2036,State-funded primary,688,326,362,47.40%,52.60%,7,1.00%,106,15.40%,513,175,0,74.60%,25.40%,0.00%,211,212,617,34.40% +144053,304,7006,State-funded special school,215,56,159,26.00%,74.00%,215,100.00%,0,0.00%,124,88,3,57.70%,40.90%,1.40%,88,89,215,41.40% +144054,873,2057,State-funded primary,197,98,99,49.70%,50.30%,9,4.60%,17,8.60%,28,169,0,14.20%,85.80%,0.00%,22,22,197,11.20% +144055,873,7021,State-funded special school,176,57,119,32.40%,67.60%,176,100.00%,0,0.00%,14,162,0,8.00%,92.00%,0.00%,88,71,143,49.70% +144056,895,3811,State-funded primary,448,218,230,48.70%,51.30%,9,2.00%,29,6.50%,16,432,0,3.60%,96.40%,0.00%,47,49,412,11.90% +144058,896,2730,State-funded primary,492,240,252,48.80%,51.20%,21,4.30%,56,11.40%,10,482,0,2.00%,98.00%,0.00%,69,79,394,20.10% +144059,908,3891,State-funded primary,424,222,202,52.40%,47.60%,4,0.90%,54,12.70%,7,417,0,1.70%,98.30%,0.00%,38,40,424,9.40% +144060,908,2757,State-funded primary,340,175,165,51.50%,48.50%,11,3.20%,42,12.40%,25,315,0,7.40%,92.60%,0.00%,137,135,315,42.90% +144061,908,3218,State-funded primary,413,184,229,44.60%,55.40%,3,0.70%,43,10.40%,11,402,0,2.70%,97.30%,0.00%,45,47,413,11.40% +144062,908,2625,State-funded primary,68,32,36,47.10%,52.90%,2,2.90%,5,7.40%,1,65,2,1.50%,95.60%,2.90%,10,6,55,10.90% +144063,908,3183,State-funded primary,119,62,57,52.10%,47.90%,0,0.00%,16,13.40%,0,117,2,0.00%,98.30%,1.70%,15,15,119,12.60% +144064,331,2009,State-funded primary,700,339,361,48.40%,51.60%,28,4.00%,260,37.10%,213,486,1,30.40%,69.40%,0.10%,226,232,639,36.30% +144065,306,2043,State-funded primary,422,196,226,46.40%,53.60%,11,2.60%,42,10.00%,61,360,1,14.50%,85.30%,0.20%,59,63,422,14.90% +144066,831,4007,State-funded secondary,698,333,365,47.70%,52.30%,25,3.60%,96,13.80%,96,602,0,13.80%,86.20%,0.00%,323,370,698,53.00% +144067,830,3066,State-funded primary,233,120,113,51.50%,48.50%,2,0.90%,24,10.30%,12,221,0,5.20%,94.80%,0.00%,52,54,233,23.20% +144068,830,3067,State-funded primary,162,75,87,46.30%,53.70%,0,0.00%,14,8.60%,2,160,0,1.20%,98.80%,0.00%,21,21,162,13.00% +144069,830,5410,State-funded secondary,1427,705,722,49.40%,50.60%,85,6.00%,273,19.10%,32,1395,0,2.20%,97.80%,0.00%,353,355,1196,29.70% +144070,878,3123,State-funded primary,42,20,22,47.60%,52.40%,3,7.10%,9,21.40%,3,39,0,7.10%,92.90%,0.00%,11,9,31,29.00% +144071,937,2054,State-funded primary,274,147,127,53.60%,46.40%,3,1.10%,24,8.80%,42,232,0,15.30%,84.70%,0.00%,32,35,274,12.80% +144072,878,2022,State-funded primary,562,262,300,46.60%,53.40%,11,2.00%,77,13.70%,59,503,0,10.50%,89.50%,0.00%,95,96,512,18.80% +144073,878,3104,State-funded primary,60,29,31,48.30%,51.70%,1,1.70%,10,16.70%,1,59,0,1.70%,98.30%,0.00%,9,6,51,11.80% +144074,878,3612,State-funded primary,155,68,87,43.90%,56.10%,1,0.60%,12,7.70%,4,151,0,2.60%,97.40%,0.00%,14,13,134,9.70% +144076,371,2191,State-funded primary,453,211,242,46.60%,53.40%,16,3.50%,85,18.80%,64,388,1,14.10%,85.70%,0.20%,144,139,376,37.00% +144077,371,2208,State-funded primary,394,185,209,47.00%,53.00%,8,2.00%,74,18.80%,46,348,0,11.70%,88.30%,0.00%,114,110,346,31.80% +144078,332,2005,State-funded primary,438,227,211,51.80%,48.20%,13,3.00%,66,15.10%,37,398,3,8.40%,90.90%,0.70%,140,143,404,35.40% +144079,332,2147,State-funded primary,467,231,236,49.50%,50.50%,13,2.80%,88,18.80%,12,455,0,2.60%,97.40%,0.00%,162,163,413,39.50% +144080,332,2010,State-funded primary,437,213,224,48.70%,51.30%,10,2.30%,80,18.30%,234,203,0,53.50%,46.50%,0.00%,153,157,390,40.30% +144082,811,3041,State-funded primary,119,63,56,52.90%,47.10%,4,3.40%,20,16.80%,3,116,0,2.50%,97.50%,0.00%,12,12,106,11.30% +144083,845,2025,State-funded primary,387,185,202,47.80%,52.20%,6,1.60%,92,23.80%,63,324,0,16.30%,83.70%,0.00%,208,208,358,58.10% +144084,308,4038,State-funded secondary,855,423,432,49.50%,50.50%,16,1.90%,105,12.30%,447,407,1,52.30%,47.60%,0.10%,329,324,706,45.90% +144086,881,2568,State-funded primary,210,106,104,50.50%,49.50%,4,1.90%,18,8.60%,7,203,0,3.30%,96.70%,0.00%,37,42,210,20.00% +144089,916,3096,State-funded primary,417,215,202,51.60%,48.40%,6,1.40%,35,8.40%,44,373,0,10.60%,89.40%,0.00%,25,26,417,6.20% +144091,203,3535,State-funded primary,454,238,216,52.40%,47.60%,6,1.30%,49,10.80%,119,335,0,26.20%,73.80%,0.00%,52,55,420,13.10% +144093,850,2631,State-funded primary,241,109,132,45.20%,54.80%,8,3.30%,35,14.50%,12,229,0,5.00%,95.00%,0.00%,33,36,241,14.90% +144094,311,4037,State-funded secondary,1182,525,657,44.40%,55.60%,20,1.70%,76,6.40%,249,932,1,21.10%,78.80%,0.10%,291,321,1182,27.20% +144095,311,4015,State-funded secondary,288,134,154,46.50%,53.50%,1,0.30%,45,15.60%,35,252,1,12.20%,87.50%,0.30%,69,79,288,27.40% +144097,313,2075,State-funded primary,460,224,236,48.70%,51.30%,3,0.70%,180,39.10%,403,57,0,87.60%,12.40%,0.00%,130,137,408,33.60% +144098,886,3021,State-funded primary,645,318,327,49.30%,50.70%,10,1.60%,27,4.20%,135,510,0,20.90%,79.10%,0.00%,121,126,645,19.50% +144099,886,5215,State-funded primary,236,122,114,51.70%,48.30%,5,2.10%,34,14.40%,20,216,0,8.50%,91.50%,0.00%,49,53,236,22.50% +144100,886,5411,State-funded secondary,1248,1207,41,96.70%,3.30%,4,0.30%,56,4.50%,497,751,0,39.80%,60.20%,0.00%,193,191,890,21.50% +144101,810,3511,State-funded primary,208,114,94,54.80%,45.20%,8,3.80%,32,15.40%,49,159,0,23.60%,76.40%,0.00%,56,53,188,28.20% +144102,810,3404,State-funded primary,236,124,112,52.50%,47.50%,4,1.70%,34,14.40%,72,164,0,30.50%,69.50%,0.00%,95,92,201,45.80% +144103,810,2023,State-funded primary,160,80,80,50.00%,50.00%,2,1.30%,17,10.60%,102,58,0,63.80%,36.30%,0.00%,57,57,160,35.60% +144104,810,4626,State-funded secondary,2508,1336,1172,53.30%,46.70%,58,2.30%,276,11.00%,775,1733,0,30.90%,69.10%,0.00%,380,354,1820,19.50% +144105,340,2012,State-funded primary,310,154,156,49.70%,50.30%,6,1.90%,51,16.50%,11,299,0,3.50%,96.50%,0.00%,132,134,276,48.60% +144107,856,2324,State-funded primary,365,189,176,51.80%,48.20%,3,0.80%,70,19.20%,266,97,2,72.90%,26.60%,0.50%,104,105,339,31.00% +144108,855,2034,State-funded primary,76,32,44,42.10%,57.90%,2,2.60%,5,6.60%,0,75,1,0.00%,98.70%,1.30%,7,8,76,10.50% +144109,855,3095,State-funded primary,214,109,105,50.90%,49.10%,5,2.30%,18,8.40%,57,157,0,26.60%,73.40%,0.00%,11,12,214,5.60% +144110,855,3078,State-funded primary,106,51,55,48.10%,51.90%,4,3.80%,18,17.00%,0,106,0,0.00%,100.00%,0.00%,26,27,106,25.50% +144111,855,2166,State-funded primary,294,145,149,49.30%,50.70%,6,2.00%,53,18.00%,37,254,3,12.60%,86.40%,1.00%,51,54,294,18.40% +144112,855,3319,State-funded primary,220,113,107,51.40%,48.60%,5,2.30%,24,10.90%,4,216,0,1.80%,98.20%,0.00%,24,25,220,11.40% +144113,855,3314,State-funded primary,297,147,150,49.50%,50.50%,9,3.00%,63,21.20%,8,288,1,2.70%,97.00%,0.30%,56,57,297,19.20% +144114,855,3098,State-funded primary,111,46,65,41.40%,58.60%,3,2.70%,27,24.30%,5,106,0,4.50%,95.50%,0.00%,13,13,111,11.70% +144115,855,3052,State-funded primary,69,38,31,55.10%,44.90%,0,0.00%,4,5.80%,1,68,0,1.40%,98.60%,0.00%,14,14,69,20.30% +144116,855,3302,State-funded primary,102,49,53,48.00%,52.00%,4,3.90%,26,25.50%,5,96,1,4.90%,94.10%,1.00%,5,7,102,6.90% +144117,855,3085,State-funded primary,68,36,32,52.90%,47.10%,2,2.90%,12,17.60%,1,65,2,1.50%,95.60%,2.90%,16,16,68,23.50% +144118,855,3329,State-funded primary,103,60,43,58.30%,41.70%,0,0.00%,7,6.80%,3,100,0,2.90%,97.10%,0.00%,3,3,103,2.90% +144119,925,3097,State-funded primary,191,85,106,44.50%,55.50%,5,2.60%,9,4.70%,10,181,0,5.20%,94.80%,0.00%,59,64,191,33.50% +144122,925,3009,State-funded primary,136,63,73,46.30%,53.70%,2,1.50%,13,9.60%,5,131,0,3.70%,96.30%,0.00%,14,16,136,11.80% +144128,352,2325,State-funded primary,283,151,132,53.40%,46.60%,21,7.40%,74,26.10%,75,208,0,26.50%,73.50%,0.00%,138,120,233,51.50% +144131,352,2079,State-funded primary,448,215,233,48.00%,52.00%,11,2.50%,42,9.40%,29,419,0,6.50%,93.50%,0.00%,33,30,407,7.40% +144132,887,2592,State-funded primary,449,225,224,50.10%,49.90%,4,0.90%,76,16.90%,28,421,0,6.20%,93.80%,0.00%,74,75,410,18.30% +144133,887,2479,State-funded primary,300,145,155,48.30%,51.70%,3,1.00%,45,15.00%,19,281,0,6.30%,93.70%,0.00%,30,30,268,11.20% +144134,887,1107,State-funded AP school,26,8,18,30.80%,69.20%,0,0.00%,26,100.00%,3,23,0,11.50%,88.50%,0.00%,17,17,26,65.40% +144135,887,3757,State-funded primary,406,186,220,45.80%,54.20%,22,5.40%,95,23.40%,64,342,0,15.80%,84.20%,0.00%,117,117,360,32.50% +144136,806,2331,State-funded primary,627,296,331,47.20%,52.80%,0,0.00%,77,12.30%,22,601,4,3.50%,95.90%,0.60%,374,356,543,65.60% +144137,826,2008,State-funded primary,421,204,217,48.50%,51.50%,4,1.00%,47,11.20%,127,284,10,30.20%,67.50%,2.40%,53,54,421,12.80% +144139,316,2043,State-funded primary,326,151,175,46.30%,53.70%,28,8.60%,41,12.60%,221,105,0,67.80%,32.20%,0.00%,120,147,294,50.00% +144140,316,2055,State-funded primary,556,265,291,47.70%,52.30%,31,5.60%,55,9.90%,358,198,0,64.40%,35.60%,0.00%,218,230,524,43.90% +144141,316,2036,State-funded primary,659,328,331,49.80%,50.20%,10,1.50%,57,8.60%,544,114,1,82.50%,17.30%,0.20%,153,161,603,26.70% +144142,316,2012,State-funded primary,893,451,442,50.50%,49.50%,34,3.80%,84,9.40%,548,344,1,61.40%,38.50%,0.10%,248,264,820,32.20% +144143,926,2271,State-funded primary,132,68,64,51.50%,48.50%,5,3.80%,16,12.10%,31,101,0,23.50%,76.50%,0.00%,30,30,132,22.70% +144144,926,3422,State-funded primary,200,88,112,44.00%,56.00%,1,0.50%,47,23.50%,63,137,0,31.50%,68.50%,0.00%,45,45,159,28.30% +144145,926,2303,State-funded primary,291,154,137,52.90%,47.10%,4,1.40%,57,19.60%,77,212,2,26.50%,72.90%,0.70%,96,100,291,34.40% +144146,926,2318,State-funded primary,277,134,143,48.40%,51.60%,11,4.00%,66,23.80%,62,215,0,22.40%,77.60%,0.00%,126,128,277,46.20% +144147,926,5218,State-funded primary,93,37,56,39.80%,60.20%,2,2.20%,7,7.50%,0,93,0,0.00%,100.00%,0.00%,15,16,93,17.20% +144148,812,2000,State-funded primary,277,147,130,53.10%,46.90%,5,1.80%,35,12.60%,27,250,0,9.70%,90.30%,0.00%,77,78,244,32.00% +144155,815,3133,State-funded primary,31,13,18,41.90%,58.10%,2,6.50%,11,35.50%,0,31,0,0.00%,100.00%,0.00%,9,9,31,29.00% +144156,815,3022,State-funded primary,109,57,52,52.30%,47.70%,3,2.80%,11,10.10%,0,109,0,0.00%,100.00%,0.00%,6,6,101,5.90% +144157,815,3030,State-funded primary,28,10,18,35.70%,64.30%,0,0.00%,5,17.90%,0,28,0,0.00%,100.00%,0.00%,3,4,28,14.30% +144159,815,2065,State-funded primary,180,82,98,45.60%,54.40%,4,2.20%,18,10.00%,5,175,0,2.80%,97.20%,0.00%,22,22,166,13.30% +144161,815,3090,State-funded primary,43,21,22,48.80%,51.20%,0,0.00%,12,27.90%,2,41,0,4.70%,95.30%,0.00%,4,5,43,11.60% +144162,815,3291,State-funded primary,115,52,63,45.20%,54.80%,3,2.60%,21,18.30%,3,112,0,2.60%,97.40%,0.00%,7,7,101,6.90% +144163,815,2377,State-funded primary,421,227,194,53.90%,46.10%,14,3.30%,63,15.00%,7,414,0,1.70%,98.30%,0.00%,29,30,421,7.10% +144164,815,3034,State-funded primary,39,18,21,46.20%,53.80%,0,0.00%,2,5.10%,2,37,0,5.10%,94.90%,0.00%,4,4,39,10.30% +144165,815,3000,State-funded primary,83,42,41,50.60%,49.40%,4,4.80%,14,16.90%,3,80,0,3.60%,96.40%,0.00%,14,14,83,16.90% +144166,815,3065,State-funded primary,16,5,11,31.30%,68.80%,0,0.00%,8,50.00%,1,15,0,6.30%,93.80%,0.00%,0,0,16,0.00% +144167,815,3079,State-funded primary,120,64,56,53.30%,46.70%,1,0.80%,9,7.50%,4,116,0,3.30%,96.70%,0.00%,4,5,120,4.20% +144168,815,2389,State-funded primary,212,105,107,49.50%,50.50%,9,4.20%,43,20.30%,22,190,0,10.40%,89.60%,0.00%,46,46,212,21.70% +144170,940,2104,State-funded primary,298,131,167,44.00%,56.00%,7,2.30%,47,15.80%,15,282,1,5.00%,94.60%,0.30%,48,51,298,17.10% +144172,941,2125,State-funded primary,169,86,83,50.90%,49.10%,5,3.00%,18,10.70%,39,130,0,23.10%,76.90%,0.00%,45,45,169,26.60% +144173,941,2169,State-funded primary,348,184,164,52.90%,47.10%,5,1.40%,46,13.20%,113,235,0,32.50%,67.50%,0.00%,85,87,348,25.00% +144176,940,2062,State-funded primary,243,126,117,51.90%,48.10%,9,3.70%,17,7.00%,75,168,0,30.90%,69.10%,0.00%,70,70,243,28.80% +144177,941,2192,State-funded primary,376,165,211,43.90%,56.10%,3,0.80%,47,12.50%,163,213,0,43.40%,56.60%,0.00%,71,74,376,19.70% +144178,941,2118,State-funded primary,199,85,114,42.70%,57.30%,5,2.50%,28,14.10%,75,124,0,37.70%,62.30%,0.00%,28,28,154,18.20% +144180,929,2220,State-funded primary,263,125,138,47.50%,52.50%,8,3.00%,31,11.80%,0,263,0,0.00%,100.00%,0.00%,57,49,200,24.50% +144181,929,2354,State-funded primary,334,166,168,49.70%,50.30%,5,1.50%,40,12.00%,3,331,0,0.90%,99.10%,0.00%,28,27,298,9.10% +144182,891,4025,State-funded secondary,785,381,404,48.50%,51.50%,11,1.40%,83,10.60%,19,724,42,2.40%,92.20%,5.40%,160,164,699,23.50% +144183,891,2692,State-funded primary,146,75,71,51.40%,48.60%,2,1.40%,10,6.80%,14,132,0,9.60%,90.40%,0.00%,25,26,146,17.80% +144184,891,2860,State-funded primary,206,95,111,46.10%,53.90%,4,1.90%,24,11.70%,3,203,0,1.50%,98.50%,0.00%,64,67,206,32.50% +144185,931,2255,State-funded primary,370,181,189,48.90%,51.10%,9,2.40%,38,10.30%,10,360,0,2.70%,97.30%,0.00%,43,45,329,13.70% +144186,931,3828,State-funded primary,192,81,111,42.20%,57.80%,5,2.60%,17,8.90%,14,177,1,7.30%,92.20%,0.50%,8,11,192,5.70% +144187,931,3004,State-funded primary,94,48,46,51.10%,48.90%,3,3.20%,16,17.00%,10,84,0,10.60%,89.40%,0.00%,15,15,94,16.00% +144188,879,2646,State-funded primary,396,189,207,47.70%,52.30%,17,4.30%,91,23.00%,139,257,0,35.10%,64.90%,0.00%,189,194,396,49.00% +144189,851,2679,State-funded primary,267,135,132,50.60%,49.40%,4,1.50%,28,10.50%,5,262,0,1.90%,98.10%,0.00%,24,26,267,9.70% +144191,851,2674,State-funded primary,406,211,195,52.00%,48.00%,8,2.00%,70,17.20%,29,375,2,7.10%,92.40%,0.50%,104,106,406,26.10% +144192,851,4301,State-funded secondary,1075,528,547,49.10%,50.90%,15,1.40%,159,14.80%,91,984,0,8.50%,91.50%,0.00%,226,248,1075,23.10% +144193,851,2666,State-funded primary,363,171,192,47.10%,52.90%,11,3.00%,36,9.90%,15,348,0,4.10%,95.90%,0.00%,43,45,363,12.40% +144194,851,2005,State-funded primary,617,304,313,49.30%,50.70%,18,2.90%,141,22.90%,198,409,10,32.10%,66.30%,1.60%,352,356,553,64.40% +144195,372,2036,State-funded primary,294,130,164,44.20%,55.80%,2,0.70%,61,20.70%,33,261,0,11.20%,88.80%,0.00%,97,99,236,41.90% +144196,372,7006,State-funded special school,142,33,109,23.20%,76.80%,142,100.00%,0,0.00%,10,132,0,7.00%,93.00%,0.00%,78,88,142,62.00% +144197,372,3331,State-funded primary,478,230,248,48.10%,51.90%,2,0.40%,71,14.90%,10,467,1,2.10%,97.70%,0.20%,95,101,447,22.60% +144198,372,3003,State-funded primary,111,56,55,50.50%,49.50%,0,0.00%,9,8.10%,1,110,0,0.90%,99.10%,0.00%,5,5,111,4.50% +144199,355,4039,State-funded secondary,1141,511,630,44.80%,55.20%,37,3.20%,148,13.00%,107,1032,2,9.40%,90.40%,0.20%,294,338,1141,29.60% +144200,355,4049,State-funded secondary,795,372,423,46.80%,53.20%,47,5.90%,147,18.50%,113,681,1,14.20%,85.70%,0.10%,199,219,795,27.50% +144201,893,3018,State-funded primary,153,71,82,46.40%,53.60%,4,2.60%,19,12.40%,7,142,4,4.60%,92.80%,2.60%,21,21,153,13.70% +144202,893,2178,State-funded primary,383,175,208,45.70%,54.30%,6,1.60%,42,11.00%,45,338,0,11.70%,88.30%,0.00%,63,59,350,16.90% +144203,893,2180,State-funded primary,331,137,194,41.40%,58.60%,2,0.60%,39,11.80%,27,304,0,8.20%,91.80%,0.00%,21,22,331,6.60% +144204,393,4004,State-funded secondary,1631,845,786,51.80%,48.20%,43,2.60%,366,22.40%,185,1444,2,11.30%,88.50%,0.10%,394,460,1363,33.70% +144205,852,7036,State-funded special school,322,89,233,27.60%,72.40%,320,99.40%,2,0.60%,60,262,0,18.60%,81.40%,0.00%,183,175,322,54.30% +144206,860,4128,State-funded secondary,492,235,257,47.80%,52.20%,11,2.20%,73,14.80%,13,479,0,2.60%,97.40%,0.00%,70,84,492,17.10% +144207,860,2250,State-funded primary,205,125,80,61.00%,39.00%,1,0.50%,16,7.80%,16,189,0,7.80%,92.20%,0.00%,7,8,187,4.30% +144208,860,7034,State-funded special school,54,15,39,27.80%,72.20%,52,96.30%,2,3.70%,2,52,0,3.70%,96.30%,0.00%,11,14,53,26.40% +144209,860,7043,State-funded special school,104,29,75,27.90%,72.10%,103,99.00%,1,1.00%,3,101,0,2.90%,97.10%,0.00%,38,35,86,40.70% +144210,861,3309,State-funded primary,489,233,256,47.60%,52.40%,9,1.80%,58,11.90%,163,326,0,33.30%,66.70%,0.00%,187,178,421,42.30% +144211,935,2058,State-funded primary,84,35,49,41.70%,58.30%,3,3.60%,12,14.30%,0,84,0,0.00%,100.00%,0.00%,16,16,84,19.00% +144212,935,2154,State-funded primary,374,203,171,54.30%,45.70%,5,1.30%,120,32.10%,289,85,0,77.30%,22.70%,0.00%,110,110,374,29.40% +144213,935,2172,State-funded primary,304,144,160,47.40%,52.60%,2,0.70%,41,13.50%,97,207,0,31.90%,68.10%,0.00%,69,69,269,25.70% +144214,935,4096,State-funded secondary,774,393,381,50.80%,49.20%,22,2.80%,108,14.00%,28,745,1,3.60%,96.30%,0.10%,117,139,774,18.00% +144215,935,2204,State-funded primary,49,22,27,44.90%,55.10%,3,6.10%,7,14.30%,0,49,0,0.00%,100.00%,0.00%,12,12,49,24.50% +144216,935,2185,State-funded primary,356,188,168,52.80%,47.20%,13,3.70%,85,23.90%,73,283,0,20.50%,79.50%,0.00%,198,201,356,56.50% +144217,935,2186,State-funded primary,415,210,205,50.60%,49.40%,6,1.40%,40,9.60%,57,358,0,13.70%,86.30%,0.00%,87,91,415,21.90% +144218,935,2209,State-funded primary,482,240,242,49.80%,50.20%,7,1.50%,64,13.30%,16,464,2,3.30%,96.30%,0.40%,91,95,430,22.10% +144219,394,3333,State-funded primary,422,217,205,51.40%,48.60%,5,1.20%,92,21.80%,15,407,0,3.60%,96.40%,0.00%,198,199,369,53.90% +144220,394,2339,State-funded primary,397,190,207,47.90%,52.10%,3,0.80%,83,20.90%,11,386,0,2.80%,97.20%,0.00%,172,172,397,43.30% +144221,394,2341,State-funded primary,386,193,193,50.00%,50.00%,11,2.80%,92,23.80%,102,284,0,26.40%,73.60%,0.00%,156,157,349,45.00% +144222,394,2039,State-funded primary,457,220,237,48.10%,51.90%,2,0.40%,25,5.50%,14,443,0,3.10%,96.90%,0.00%,36,36,348,10.30% +144223,394,2170,State-funded primary,441,210,231,47.60%,52.40%,29,6.60%,86,19.50%,9,432,0,2.00%,98.00%,0.00%,103,102,394,25.90% +144224,394,2038,State-funded primary,448,215,233,48.00%,52.00%,4,0.90%,71,15.80%,16,432,0,3.60%,96.40%,0.00%,79,81,448,18.10% +144225,394,2112,State-funded primary,435,218,217,50.10%,49.90%,9,2.10%,53,12.20%,2,433,0,0.50%,99.50%,0.00%,111,115,435,26.40% +144228,936,7025,State-funded special school,149,54,95,36.20%,63.80%,149,100.00%,0,0.00%,15,132,2,10.10%,88.60%,1.30%,62,65,149,43.60% +144229,936,2026,State-funded primary,249,125,124,50.20%,49.80%,37,14.90%,54,21.70%,8,240,1,3.20%,96.40%,0.40%,70,73,221,33.00% +144230,936,2050,State-funded primary,365,181,184,49.60%,50.40%,7,1.90%,39,10.70%,29,334,2,7.90%,91.50%,0.50%,55,55,312,17.60% +144231,936,2253,State-funded primary,207,100,107,48.30%,51.70%,6,2.90%,26,12.60%,3,204,0,1.40%,98.60%,0.00%,21,22,207,10.60% +144232,936,5219,State-funded primary,195,90,105,46.20%,53.80%,4,2.10%,17,8.70%,4,191,0,2.10%,97.90%,0.00%,15,15,195,7.70% +144233,936,7060,State-funded special school,140,15,125,10.70%,89.30%,140,100.00%,0,0.00%,22,118,0,15.70%,84.30%,0.00%,34,33,123,26.80% +144234,883,7032,State-funded special school,313,93,220,29.70%,70.30%,313,100.00%,0,0.00%,34,278,1,10.90%,88.80%,0.30%,100,96,260,36.90% +144235,211,2568,State-funded primary,689,331,358,48.00%,52.00%,39,5.70%,157,22.80%,646,43,0,93.80%,6.20%,0.00%,260,265,599,44.20% +144236,211,2920,State-funded primary,248,126,122,50.80%,49.20%,18,7.30%,40,16.10%,212,36,0,85.50%,14.50%,0.00%,104,97,207,46.90% +144237,384,2170,State-funded primary,315,151,164,47.90%,52.10%,3,1.00%,37,11.70%,23,285,7,7.30%,90.50%,2.20%,25,27,315,8.60% +144238,320,3307,State-funded primary,566,276,290,48.80%,51.20%,15,2.70%,33,5.80%,66,499,1,11.70%,88.20%,0.20%,86,87,566,15.40% +144239,320,3304,State-funded primary,331,163,168,49.20%,50.80%,5,1.50%,43,13.00%,69,260,2,20.80%,78.50%,0.60%,48,55,330,16.70% +144240,877,1104,State-funded AP school,9,6,3,66.70%,33.30%,5,55.60%,4,44.40%,0,9,0,0.00%,100.00%,0.00%,5,6,9,66.70% +144241,877,2728,State-funded primary,706,340,366,48.20%,51.80%,39,5.50%,119,16.90%,68,638,0,9.60%,90.40%,0.00%,276,283,643,44.00% +144242,937,2014,State-funded primary,203,96,107,47.30%,52.70%,5,2.50%,18,8.90%,2,196,5,1.00%,96.60%,2.50%,33,34,202,16.80% +144243,938,4800,State-funded secondary,1177,544,633,46.20%,53.80%,39,3.30%,163,13.80%,193,958,26,16.40%,81.40%,2.20%,99,118,958,12.30% +144244,938,2024,State-funded primary,308,135,173,43.80%,56.20%,6,1.90%,40,13.00%,11,297,0,3.60%,96.40%,0.00%,35,37,308,12.00% +144248,868,3337,State-funded primary,421,213,208,50.60%,49.40%,9,2.10%,36,8.60%,135,286,0,32.10%,67.90%,0.00%,15,15,421,3.60% +144249,868,3010,State-funded primary,91,46,45,50.50%,49.50%,3,3.30%,18,19.80%,5,86,0,5.50%,94.50%,0.00%,20,20,91,22.00% +144251,336,3010,State-funded primary,251,130,121,51.80%,48.20%,2,0.80%,31,12.40%,130,114,7,51.80%,45.40%,2.80%,114,114,208,54.80% +144252,336,2075,State-funded primary,434,213,221,49.10%,50.90%,2,0.50%,45,10.40%,315,119,0,72.60%,27.40%,0.00%,161,162,397,40.80% +144253,336,2073,State-funded primary,211,111,100,52.60%,47.40%,1,0.50%,33,15.60%,106,105,0,50.20%,49.80%,0.00%,102,102,211,48.30% +144256,885,2080,State-funded primary,361,183,178,50.70%,49.30%,10,2.80%,41,11.40%,14,347,0,3.90%,96.10%,0.00%,71,73,361,20.20% +144257,885,3205,State-funded primary,212,110,102,51.90%,48.10%,3,1.40%,37,17.50%,6,206,0,2.80%,97.20%,0.00%,29,30,212,14.20% +144258,885,3357,State-funded primary,209,113,96,54.10%,45.90%,5,2.40%,25,12.00%,10,199,0,4.80%,95.20%,0.00%,28,29,209,13.90% +144259,885,3353,State-funded primary,102,53,49,52.00%,48.00%,2,2.00%,29,28.40%,5,97,0,4.90%,95.10%,0.00%,29,29,102,28.40% +144260,885,3088,State-funded primary,118,62,56,52.50%,47.50%,6,5.10%,34,28.80%,0,118,0,0.00%,100.00%,0.00%,24,24,102,23.50% +144261,885,3013,State-funded primary,170,76,94,44.70%,55.30%,6,3.50%,40,23.50%,3,167,0,1.80%,98.20%,0.00%,34,34,170,20.00% +144262,885,3051,State-funded primary,115,51,64,44.30%,55.70%,2,1.70%,15,13.00%,3,112,0,2.60%,97.40%,0.00%,14,14,115,12.20% +144264,816,2430,State-funded primary,631,318,313,50.40%,49.60%,14,2.20%,61,9.70%,64,567,0,10.10%,89.90%,0.00%,69,68,593,11.50% +144265,816,2000,State-funded primary,330,153,177,46.40%,53.60%,10,3.00%,12,3.60%,12,305,13,3.60%,92.40%,3.90%,41,42,330,12.70% +144266,816,2012,State-funded primary,273,130,143,47.60%,52.40%,8,2.90%,25,9.20%,65,208,0,23.80%,76.20%,0.00%,47,47,273,17.20% +144267,816,2027,State-funded primary,467,228,239,48.80%,51.20%,7,1.50%,51,10.90%,12,448,7,2.60%,95.90%,1.50%,93,89,399,22.30% +144269,391,2940,State-funded primary,223,124,99,55.60%,44.40%,7,3.10%,42,18.80%,26,197,0,11.70%,88.30%,0.00%,161,143,193,74.10% +144270,391,3876,State-funded primary,458,222,236,48.50%,51.50%,10,2.20%,96,21.00%,126,332,0,27.50%,72.50%,0.00%,345,311,399,77.90% +144271,391,4480,State-funded secondary,979,470,509,48.00%,52.00%,57,5.80%,105,10.70%,230,749,0,23.50%,76.50%,0.00%,574,587,956,61.40% +144272,391,2250,State-funded primary,289,137,152,47.40%,52.60%,9,3.10%,34,11.80%,21,268,0,7.30%,92.70%,0.00%,120,122,217,56.20% +144273,391,2880,State-funded primary,659,317,342,48.10%,51.90%,24,3.60%,76,11.50%,58,601,0,8.80%,91.20%,0.00%,310,298,604,49.30% +144274,815,3154,State-funded primary,231,120,111,51.90%,48.10%,2,0.90%,35,15.20%,12,219,0,5.20%,94.80%,0.00%,67,60,188,31.90% +144275,935,2200,State-funded primary,232,123,109,53.00%,47.00%,4,1.70%,31,13.40%,4,228,0,1.70%,98.30%,0.00%,50,52,232,22.40% +144276,935,2201,State-funded primary,264,125,139,47.30%,52.70%,21,8.00%,46,17.40%,65,198,1,24.60%,75.00%,0.40%,82,81,230,35.20% +144277,865,2033,State-funded primary,111,43,68,38.70%,61.30%,6,5.40%,13,11.70%,2,109,0,1.80%,98.20%,0.00%,22,22,111,19.80% +144278,336,4005,State-funded secondary,1020,500,520,49.00%,51.00%,25,2.50%,240,23.50%,183,836,1,17.90%,82.00%,0.10%,527,545,935,58.30% +144279,392,4001,State-funded secondary,554,254,300,45.80%,54.20%,16,2.90%,60,10.80%,12,542,0,2.20%,97.80%,0.00%,189,210,554,37.90% +144280,301,2026,State-funded primary,575,278,297,48.30%,51.70%,7,1.20%,121,21.00%,236,338,1,41.00%,58.80%,0.20%,176,187,539,34.70% +144281,800,3089,State-funded primary,104,51,53,49.00%,51.00%,0,0.00%,9,8.70%,1,103,0,1.00%,99.00%,0.00%,9,9,104,8.70% +144282,800,3096,State-funded primary,84,48,36,57.10%,42.90%,1,1.20%,8,9.50%,2,82,0,2.40%,97.60%,0.00%,9,9,84,10.70% +144283,800,2258,State-funded primary,212,99,113,46.70%,53.30%,2,0.90%,21,9.90%,5,206,1,2.40%,97.20%,0.50%,15,15,178,8.40% +144284,801,1104,State-funded AP school,16,6,10,37.50%,62.50%,1,6.30%,7,43.80%,0,15,1,0.00%,93.80%,6.30%,12,13,16,81.30% +144285,801,1102,State-funded AP school,18,6,12,33.30%,66.70%,2,11.10%,16,88.90%,3,14,1,16.70%,77.80%,5.60%,13,13,18,72.20% +144286,801,7015,State-funded special school,49,0,49,0.00%,100.00%,49,100.00%,0,0.00%,1,48,0,2.00%,98.00%,0.00%,29,29,47,61.70% +144287,305,2003,State-funded primary,193,102,91,52.80%,47.20%,3,1.60%,29,15.00%,52,140,1,26.90%,72.50%,0.50%,44,47,193,24.40% +144288,873,3056,State-funded primary,71,33,38,46.50%,53.50%,3,4.20%,6,8.50%,4,67,0,5.60%,94.40%,0.00%,25,27,71,38.00% +144289,873,3072,State-funded primary,358,179,179,50.00%,50.00%,15,4.20%,37,10.30%,174,182,2,48.60%,50.80%,0.60%,115,123,358,34.40% +144290,908,2710,State-funded primary,184,80,104,43.50%,56.50%,4,2.20%,36,19.60%,0,184,0,0.00%,100.00%,0.00%,33,33,184,17.90% +144291,908,4167,State-funded secondary,1192,572,620,48.00%,52.00%,48,4.00%,134,11.20%,17,1165,10,1.40%,97.70%,0.80%,293,304,1072,28.40% +144292,908,2711,State-funded primary,46,24,22,52.20%,47.80%,1,2.20%,6,13.00%,0,46,0,0.00%,100.00%,0.00%,5,4,36,11.10% +144293,830,2093,State-funded primary,144,69,75,47.90%,52.10%,1,0.70%,24,16.70%,3,141,0,2.10%,97.90%,0.00%,58,60,144,41.70% +144298,838,2004,State-funded primary,220,107,113,48.60%,51.40%,16,7.30%,35,15.90%,12,208,0,5.50%,94.50%,0.00%,91,88,197,44.70% +144299,838,3049,State-funded primary,96,38,58,39.60%,60.40%,3,3.10%,20,20.80%,1,95,0,1.00%,99.00%,0.00%,11,11,96,11.50% +144301,332,2106,State-funded primary,451,230,221,51.00%,49.00%,2,0.40%,61,13.50%,124,327,0,27.50%,72.50%,0.00%,118,121,401,30.20% +144302,845,2115,State-funded primary,158,78,80,49.40%,50.60%,1,0.60%,28,17.70%,14,144,0,8.90%,91.10%,0.00%,47,47,140,33.60% +144303,881,2127,State-funded primary,432,192,240,44.40%,55.60%,8,1.90%,73,16.90%,64,366,2,14.80%,84.70%,0.50%,181,180,404,44.60% +144304,881,2018,State-funded primary,419,192,227,45.80%,54.20%,7,1.70%,89,21.20%,94,325,0,22.40%,77.60%,0.00%,135,145,419,34.60% +144305,810,2560,State-funded primary,356,168,188,47.20%,52.80%,2,0.60%,53,14.90%,117,239,0,32.90%,67.10%,0.00%,115,118,323,36.50% +144306,330,4024,State-funded secondary,595,293,302,49.20%,50.80%,8,1.30%,86,14.50%,276,318,1,46.40%,53.40%,0.20%,399,425,595,71.40% +144307,810,4030,State-funded secondary,650,650,0,100.00%,0.00%,3,0.50%,98,15.10%,296,354,0,45.50%,54.50%,0.00%,259,294,650,45.20% +144308,208,2899,State-funded primary,638,322,316,50.50%,49.50%,6,0.90%,27,4.20%,69,569,0,10.80%,89.20%,0.00%,140,145,608,23.80% +144309,208,4731,State-funded secondary,1113,495,618,44.50%,55.50%,49,4.40%,115,10.30%,310,745,58,27.90%,66.90%,5.20%,324,339,876,38.70% +144310,855,3089,State-funded primary,80,36,44,45.00%,55.00%,4,5.00%,8,10.00%,1,79,0,1.30%,98.80%,0.00%,11,11,80,13.80% +144311,821,4108,State-funded secondary,1134,545,589,48.10%,51.90%,19,1.70%,107,9.40%,301,833,0,26.50%,73.50%,0.00%,204,245,1134,21.60% +144312,821,4103,State-funded secondary,1049,1049,0,100.00%,0.00%,13,1.20%,103,9.80%,860,189,0,82.00%,18.00%,0.00%,258,295,1049,28.10% +144313,926,2358,State-funded primary,56,32,24,57.10%,42.90%,2,3.60%,3,5.40%,2,54,0,3.60%,96.40%,0.00%,18,18,56,32.10% +144314,926,2051,State-funded primary,92,42,50,45.70%,54.30%,1,1.10%,11,12.00%,5,82,5,5.40%,89.10%,5.40%,20,20,77,26.00% +144315,926,2067,State-funded primary,72,39,33,54.20%,45.80%,1,1.40%,22,30.60%,0,72,0,0.00%,100.00%,0.00%,13,14,72,19.40% +144316,926,4085,State-funded secondary,1189,583,606,49.00%,51.00%,53,4.50%,241,20.30%,104,1084,1,8.70%,91.20%,0.10%,208,217,1189,18.30% +144317,926,2015,State-funded primary,57,31,26,54.40%,45.60%,1,1.80%,3,5.30%,1,56,0,1.80%,98.20%,0.00%,6,6,57,10.50% +144318,940,2227,State-funded primary,203,112,91,55.20%,44.80%,2,1.00%,9,4.40%,69,134,0,34.00%,66.00%,0.00%,13,13,203,6.40% +144319,941,5212,State-funded primary,75,38,37,50.70%,49.30%,1,1.30%,9,12.00%,1,74,0,1.30%,98.70%,0.00%,12,12,75,16.00% +144320,892,7040,State-funded special school,104,0,104,0.00%,100.00%,104,100.00%,0,0.00%,2,102,0,1.90%,98.10%,0.00%,75,80,104,76.90% +144321,892,7033,State-funded special school,87,17,70,19.50%,80.50%,87,100.00%,0,0.00%,12,75,0,13.80%,86.20%,0.00%,53,58,87,66.70% +144322,891,2120,State-funded primary,345,163,182,47.20%,52.80%,9,2.60%,35,10.10%,9,327,9,2.60%,94.80%,2.60%,46,50,316,15.80% +144323,372,2134,State-funded primary,212,104,108,49.10%,50.90%,2,0.90%,26,12.30%,7,205,0,3.30%,96.70%,0.00%,31,30,190,15.80% +144324,372,2053,State-funded primary,166,84,82,50.60%,49.40%,1,0.60%,29,17.50%,9,157,0,5.40%,94.60%,0.00%,25,28,112,25.00% +144325,372,2140,State-funded primary,184,96,88,52.20%,47.80%,1,0.50%,16,8.70%,1,183,0,0.50%,99.50%,0.00%,45,49,166,29.50% +144326,342,4104,State-funded secondary,1830,826,1004,45.10%,54.90%,49,2.70%,219,12.00%,71,1756,3,3.90%,96.00%,0.20%,244,290,1483,19.60% +144327,342,4050,State-funded secondary,1652,852,800,51.60%,48.40%,77,4.70%,273,16.50%,22,1630,0,1.30%,98.70%,0.00%,219,217,1451,15.00% +144329,935,2171,State-funded primary,346,173,173,50.00%,50.00%,4,1.20%,42,12.10%,93,251,2,26.90%,72.50%,0.60%,97,98,346,28.30% +144330,936,3024,State-funded primary,88,48,40,54.50%,45.50%,0,0.00%,6,6.80%,7,81,0,8.00%,92.00%,0.00%,8,8,88,9.10% +144331,384,2185,State-funded primary,353,177,176,50.10%,49.90%,7,2.00%,49,13.90%,26,327,0,7.40%,92.60%,0.00%,55,58,304,19.10% +144332,384,2182,State-funded primary,406,194,212,47.80%,52.20%,8,2.00%,68,16.70%,30,376,0,7.40%,92.60%,0.00%,81,83,370,22.40% +144333,865,3352,State-funded primary,68,37,31,54.40%,45.60%,1,1.50%,14,20.60%,0,68,0,0.00%,100.00%,0.00%,8,8,68,11.80% +144334,885,3208,State-funded primary,189,94,95,49.70%,50.30%,4,2.10%,37,19.60%,5,184,0,2.60%,97.40%,0.00%,45,46,189,24.30% +144335,885,3028,State-funded primary,58,32,26,55.20%,44.80%,1,1.70%,15,25.90%,1,57,0,1.70%,98.30%,0.00%,5,5,58,8.60% +144336,330,7000,State-funded special school,256,97,159,37.90%,62.10%,256,100.00%,0,0.00%,103,153,0,40.20%,59.80%,0.00%,162,131,195,67.20% +144337,330,2171,State-funded primary,347,176,171,50.70%,49.30%,1,0.30%,52,15.00%,216,131,0,62.20%,37.80%,0.00%,157,163,347,47.00% +144338,825,2034,State-funded primary,134,63,71,47.00%,53.00%,4,3.00%,17,12.70%,23,111,0,17.20%,82.80%,0.00%,24,29,134,21.60% +144339,825,2035,State-funded primary,201,96,105,47.80%,52.20%,5,2.50%,18,9.00%,22,179,0,10.90%,89.10%,0.00%,21,23,201,11.40% +144340,359,2006,State-funded primary,234,113,121,48.30%,51.70%,8,3.40%,85,36.30%,41,193,0,17.50%,82.50%,0.00%,94,93,198,47.00% +144342,823,4010,State-funded secondary,1095,563,532,51.40%,48.60%,41,3.70%,153,14.00%,164,931,0,15.00%,85.00%,0.00%,203,214,998,21.40% +144343,831,2016,State-funded primary,284,136,148,47.90%,52.10%,5,1.80%,33,11.60%,62,222,0,21.80%,78.20%,0.00%,147,145,234,62.00% +144344,830,2027,State-funded primary,104,52,52,50.00%,50.00%,1,1.00%,14,13.50%,1,103,0,1.00%,99.00%,0.00%,45,42,97,43.30% +144345,371,2028,State-funded primary,345,170,175,49.30%,50.70%,7,2.00%,78,22.60%,19,326,0,5.50%,94.50%,0.00%,60,64,324,19.80% +144346,371,7000,State-funded special school,125,41,84,32.80%,67.20%,125,100.00%,0,0.00%,9,116,0,7.20%,92.80%,0.00%,75,80,125,64.00% +144347,371,2010,State-funded primary,266,134,132,50.40%,49.60%,10,3.80%,55,20.70%,46,220,0,17.30%,82.70%,0.00%,116,120,239,50.20% +144348,371,2011,State-funded primary,180,86,94,47.80%,52.20%,4,2.20%,17,9.40%,7,173,0,3.90%,96.10%,0.00%,58,59,167,35.30% +144349,881,2157,State-funded primary,303,142,161,46.90%,53.10%,10,3.30%,22,7.30%,123,180,0,40.60%,59.40%,0.00%,122,127,303,41.90% +144350,881,2158,State-funded primary,316,152,164,48.10%,51.90%,3,0.90%,40,12.70%,12,304,0,3.80%,96.20%,0.00%,79,92,316,29.10% +144351,881,2159,State-funded primary,668,324,344,48.50%,51.50%,20,3.00%,127,19.00%,139,527,2,20.80%,78.90%,0.30%,366,367,668,54.90% +144352,390,1101,State-funded AP school,90,29,61,32.20%,67.80%,4,4.40%,42,46.70%,3,86,1,3.30%,95.60%,1.10%,50,58,90,64.40% +144354,886,4091,State-funded secondary,1080,566,514,52.40%,47.60%,34,3.10%,78,7.20%,17,1063,0,1.60%,98.40%,0.00%,211,217,991,21.90% +144355,340,2006,State-funded primary,233,124,109,53.20%,46.80%,1,0.40%,10,4.30%,5,228,0,2.10%,97.90%,0.00%,36,34,208,16.30% +144356,888,4021,State-funded secondary,581,309,272,53.20%,46.80%,6,1.00%,98,16.90%,83,498,0,14.30%,85.70%,0.00%,240,254,581,43.70% +144357,826,2025,State-funded primary,311,148,162,47.60%,52.10%,9,2.90%,40,12.90%,120,191,0,38.60%,61.40%,0.00%,139,140,311,45.00% +144358,391,1106,State-funded AP school,64,23,41,35.90%,64.10%,9,14.10%,43,67.20%,1,63,0,1.60%,98.40%,0.00%,33,52,64,81.30% +144359,926,4028,State-funded secondary,1579,778,801,49.30%,50.70%,41,2.60%,220,13.90%,152,1427,0,9.60%,90.40%,0.00%,306,323,1464,22.10% +144360,926,2163,State-funded primary,187,87,100,46.50%,53.50%,1,0.50%,34,18.20%,8,179,0,4.30%,95.70%,0.00%,31,33,187,17.60% +144361,926,2165,State-funded primary,197,87,110,44.20%,55.80%,4,2.00%,22,11.20%,7,190,0,3.60%,96.40%,0.00%,50,56,197,28.40% +144363,302,6017,Independent school,19,0,19,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144364,371,4008,State-funded secondary,1045,537,508,51.40%,48.60%,13,1.20%,97,9.30%,79,962,4,7.60%,92.10%,0.40%,284,293,937,31.30% +144366,812,6005,Independent school,83,13,70,15.70%,84.30%,82,98.80%,1,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144367,885,4014,State-funded secondary,827,380,447,45.90%,54.10%,25,3.00%,141,17.00%,30,797,0,3.60%,96.40%,0.00%,274,280,747,37.50% +144371,359,3429,State-funded primary,361,175,186,48.50%,51.50%,8,2.20%,160,44.30%,35,325,1,9.70%,90.00%,0.30%,159,160,299,53.50% +144372,355,2004,State-funded primary,195,100,95,51.30%,48.70%,3,1.50%,14,7.20%,23,170,2,11.80%,87.20%,1.00%,82,72,174,41.40% +144374,332,6008,Independent school,34,4,30,11.80%,88.20%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144375,888,6070,Independent school,6,3,3,50.00%,50.00%,4,66.70%,2,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144377,940,6003,Independent school,6,0,6,0.00%,100.00%,5,83.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144378,881,6067,Independent school,24,8,16,33.30%,66.70%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144381,895,3546,State-funded primary,199,105,94,52.80%,47.20%,8,4.00%,24,12.10%,8,191,0,4.00%,96.00%,0.00%,21,24,174,13.80% +144382,306,2076,State-funded primary,369,175,194,47.40%,52.60%,9,2.40%,46,12.50%,151,216,2,40.90%,58.50%,0.50%,77,79,369,21.40% +144383,830,3541,State-funded primary,324,165,159,50.90%,49.10%,13,4.00%,27,8.30%,1,314,9,0.30%,96.90%,2.80%,89,91,324,28.10% +144384,878,3155,State-funded primary,102,56,46,54.90%,45.10%,4,3.90%,19,18.60%,0,102,0,0.00%,100.00%,0.00%,18,22,91,24.20% +144385,879,2665,State-funded primary,178,88,90,49.40%,50.60%,5,2.80%,30,16.90%,13,165,0,7.30%,92.70%,0.00%,59,61,178,34.30% +144386,860,3102,State-funded primary,138,72,66,52.20%,47.80%,4,2.90%,16,11.60%,19,119,0,13.80%,86.20%,0.00%,53,56,138,40.60% +144387,936,2090,State-funded primary,342,173,169,50.60%,49.40%,16,4.70%,36,10.50%,62,280,0,18.10%,81.90%,0.00%,20,24,342,7.00% +144388,865,4001,State-funded secondary,1328,811,517,61.10%,38.90%,41,3.10%,213,16.00%,82,1223,23,6.20%,92.10%,1.70%,221,242,1328,18.20% +144389,865,4006,State-funded secondary,770,379,391,49.20%,50.80%,45,5.80%,68,8.80%,20,746,4,2.60%,96.90%,0.50%,103,117,770,15.20% +144390,330,2175,State-funded primary,380,180,200,47.40%,52.60%,7,1.80%,43,11.30%,60,320,0,15.80%,84.20%,0.00%,220,228,380,60.00% +144391,830,4007,State-funded secondary,973,467,506,48.00%,52.00%,21,2.20%,213,21.90%,13,953,7,1.30%,97.90%,0.70%,331,358,973,36.80% +144392,878,4021,State-funded secondary,643,328,315,51.00%,49.00%,32,5.00%,149,23.20%,21,611,11,3.30%,95.00%,1.70%,160,187,643,29.10% +144393,940,2211,State-funded primary,329,160,169,48.60%,51.40%,4,1.20%,46,14.00%,111,218,0,33.70%,66.30%,0.00%,104,104,329,31.60% +144394,941,2224,State-funded primary,417,207,210,49.60%,50.40%,6,1.40%,51,12.20%,16,401,0,3.80%,96.20%,0.00%,10,12,417,2.90% +144395,941,2229,State-funded primary,90,45,45,50.00%,50.00%,0,0.00%,19,21.10%,17,73,0,18.90%,81.10%,0.00%,23,23,90,25.60% +144396,892,2017,State-funded primary,217,113,104,52.10%,47.90%,4,1.80%,48,22.10%,29,188,0,13.40%,86.60%,0.00%,128,128,196,65.30% +144397,891,2028,State-funded primary,214,113,101,52.80%,47.20%,5,2.30%,31,14.50%,30,184,0,14.00%,86.00%,0.00%,87,79,188,42.00% +144398,931,2021,State-funded primary,338,173,165,51.20%,48.80%,12,3.60%,25,7.40%,84,225,29,24.90%,66.60%,8.60%,66,67,295,22.70% +144399,935,2202,State-funded primary,195,94,101,48.20%,51.80%,3,1.50%,27,13.80%,2,193,0,1.00%,99.00%,0.00%,37,38,195,19.50% +144400,384,2024,State-funded primary,257,134,123,52.10%,47.90%,13,5.10%,53,20.60%,10,247,0,3.90%,96.10%,0.00%,130,131,257,51.00% +144401,938,2041,State-funded primary,246,116,130,47.20%,52.80%,10,4.10%,36,14.60%,88,158,0,35.80%,64.20%,0.00%,55,57,246,23.20% +144402,919,4025,State-funded secondary,993,513,480,51.70%,48.30%,31,3.10%,135,13.60%,234,758,1,23.60%,76.30%,0.10%,108,124,899,13.80% +144404,894,6009,Independent school,4,4,0,100.00%,0.00%,0,0.00%,4,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144405,303,7004,State-funded special school,79,14,65,17.70%,82.30%,79,100.00%,0,0.00%,1,78,0,1.30%,98.70%,0.00%,49,58,79,73.40% +144406,303,7003,State-funded special school,44,5,39,11.40%,88.60%,44,100.00%,0,0.00%,0,44,0,0.00%,100.00%,0.00%,29,36,44,81.80% +144407,303,1102,State-funded AP school,21,8,13,38.10%,61.90%,0,0.00%,17,81.00%,0,21,0,0.00%,100.00%,0.00%,14,18,21,85.70% +144408,351,3333,State-funded primary,244,115,129,47.10%,52.90%,4,1.60%,32,13.10%,16,228,0,6.60%,93.40%,0.00%,17,18,227,7.90% +144410,371,2159,State-funded primary,278,132,146,47.50%,52.50%,4,1.40%,44,15.80%,25,253,0,9.00%,91.00%,0.00%,33,31,241,12.90% +144411,371,2192,State-funded primary,412,192,220,46.60%,53.40%,7,1.70%,72,17.50%,51,359,2,12.40%,87.10%,0.50%,82,85,347,24.50% +144412,371,2177,State-funded primary,462,218,244,47.20%,52.80%,12,2.60%,29,6.30%,82,377,3,17.70%,81.60%,0.60%,24,25,417,6.00% +144413,838,3050,State-funded primary,118,64,54,54.20%,45.80%,2,1.70%,17,14.40%,0,118,0,0.00%,100.00%,0.00%,17,17,97,17.50% +144414,838,3028,State-funded primary,360,189,171,52.50%,47.50%,6,1.70%,57,15.80%,10,350,0,2.80%,97.20%,0.00%,93,94,360,26.10% +144415,838,3367,State-funded primary,100,53,47,53.00%,47.00%,0,0.00%,9,9.00%,1,99,0,1.00%,99.00%,0.00%,8,8,100,8.00% +144416,838,3058,State-funded primary,118,58,60,49.20%,50.80%,5,4.20%,17,14.40%,3,115,0,2.50%,97.50%,0.00%,19,19,118,16.10% +144417,838,2029,State-funded primary,299,154,145,51.50%,48.50%,9,3.00%,44,14.70%,20,279,0,6.70%,93.30%,0.00%,67,67,299,22.40% +144418,332,3053,State-funded primary,401,198,203,49.40%,50.60%,9,2.20%,64,16.00%,24,377,0,6.00%,94.00%,0.00%,141,145,360,40.30% +144419,919,2024,State-funded primary,458,233,225,50.90%,49.10%,19,4.10%,107,23.40%,74,384,0,16.20%,83.80%,0.00%,88,91,412,22.10% +144420,886,3716,State-funded primary,213,113,100,53.10%,46.90%,4,1.90%,25,11.70%,42,171,0,19.70%,80.30%,0.00%,31,32,213,15.00% +144421,810,3509,State-funded primary,440,206,234,46.80%,53.20%,11,2.50%,30,6.80%,31,409,0,7.00%,93.00%,0.00%,105,109,411,26.50% +144422,810,1102,State-funded AP school,119,27,92,22.70%,77.30%,70,58.80%,14,11.80%,23,95,1,19.30%,79.80%,0.80%,63,70,119,58.80% +144423,887,2396,State-funded primary,671,335,336,49.90%,50.10%,6,0.90%,61,9.10%,107,547,17,15.90%,81.50%,2.50%,171,177,616,28.70% +144424,826,2076,State-funded primary,616,281,335,45.60%,54.40%,31,5.00%,59,9.60%,172,444,0,27.90%,72.10%,0.00%,158,159,574,27.70% +144425,926,2186,State-funded primary,101,48,53,47.50%,52.50%,4,4.00%,13,12.90%,3,98,0,3.00%,97.00%,0.00%,5,6,101,5.90% +144426,926,2164,State-funded primary,27,12,15,44.40%,55.60%,1,3.70%,12,44.40%,0,27,0,0.00%,100.00%,0.00%,12,12,27,44.40% +144427,926,2031,State-funded primary,42,19,23,45.20%,54.80%,0,0.00%,15,35.70%,4,38,0,9.50%,90.50%,0.00%,11,11,42,26.20% +144428,926,2062,State-funded primary,85,44,41,51.80%,48.20%,0,0.00%,9,10.60%,1,84,0,1.20%,98.80%,0.00%,23,24,85,28.20% +144429,815,3068,State-funded primary,146,75,71,51.40%,48.60%,3,2.10%,22,15.10%,2,144,0,1.40%,98.60%,0.00%,6,6,146,4.10% +144430,941,3318,State-funded primary,109,58,51,53.20%,46.80%,0,0.00%,12,11.00%,3,105,1,2.80%,96.30%,0.90%,12,14,109,12.80% +144431,891,2247,State-funded primary,228,115,113,50.40%,49.60%,1,0.40%,13,5.70%,17,211,0,7.50%,92.50%,0.00%,40,41,228,18.00% +144432,931,3161,State-funded primary,142,65,77,45.80%,54.20%,7,4.90%,19,13.40%,13,129,0,9.20%,90.80%,0.00%,5,5,142,3.50% +144433,931,3167,State-funded primary,211,97,114,46.00%,54.00%,1,0.50%,31,14.70%,24,187,0,11.40%,88.60%,0.00%,22,22,211,10.40% +144434,893,3363,State-funded primary,363,202,161,55.60%,44.40%,7,1.90%,31,8.50%,36,327,0,9.90%,90.10%,0.00%,81,68,319,21.30% +144435,893,4501,State-funded secondary,584,287,297,49.10%,50.90%,7,1.20%,88,15.10%,20,557,7,3.40%,95.40%,1.20%,118,131,584,22.40% +144436,933,2180,State-funded primary,201,110,91,54.70%,45.30%,4,2.00%,17,8.50%,5,196,0,2.50%,97.50%,0.00%,21,22,201,10.90% +144437,933,2325,State-funded primary,406,206,200,50.70%,49.30%,25,6.20%,57,14.00%,94,301,11,23.20%,74.10%,2.70%,191,194,406,47.80% +144439,860,3496,State-funded primary,440,215,225,48.90%,51.10%,10,2.30%,43,9.80%,69,371,0,15.70%,84.30%,0.00%,53,54,401,13.50% +144441,861,2015,State-funded primary,400,204,196,51.00%,49.00%,3,0.80%,48,12.00%,23,377,0,5.80%,94.30%,0.00%,127,123,352,34.90% +144442,935,2086,State-funded primary,110,52,58,47.30%,52.70%,2,1.80%,10,9.10%,0,110,0,0.00%,100.00%,0.00%,17,19,103,18.40% +144443,935,2067,State-funded primary,174,77,97,44.30%,55.70%,7,4.00%,34,19.50%,19,155,0,10.90%,89.10%,0.00%,56,57,162,35.20% +144444,935,2080,State-funded primary,322,165,157,51.20%,48.80%,7,2.20%,60,18.60%,10,312,0,3.10%,96.90%,0.00%,106,108,300,36.00% +144445,935,2088,State-funded primary,103,42,61,40.80%,59.20%,3,2.90%,15,14.60%,2,101,0,1.90%,98.10%,0.00%,17,19,103,18.40% +144446,935,2122,State-funded primary,89,48,41,53.90%,46.10%,0,0.00%,16,18.00%,1,88,0,1.10%,98.90%,0.00%,21,22,89,24.70% +144447,394,2097,State-funded primary,277,136,141,49.10%,50.90%,1,0.40%,34,12.30%,15,262,0,5.40%,94.60%,0.00%,83,82,239,34.30% +144448,883,2429,State-funded primary,434,218,216,50.20%,49.80%,14,3.20%,35,8.10%,78,355,1,18.00%,81.80%,0.20%,127,131,405,32.30% +144449,384,2197,State-funded primary,232,99,133,42.70%,57.30%,3,1.30%,30,12.90%,5,227,0,2.20%,97.80%,0.00%,64,66,200,33.00% +144453,938,2223,State-funded primary,415,202,213,48.70%,51.30%,4,1.00%,53,12.80%,38,377,0,9.20%,90.80%,0.00%,52,54,415,13.00% +144454,865,3023,State-funded primary,95,45,50,47.40%,52.60%,0,0.00%,11,11.60%,1,94,0,1.10%,98.90%,0.00%,2,2,95,2.10% +144455,872,3341,State-funded primary,341,169,172,49.60%,50.40%,3,0.90%,20,5.90%,84,257,0,24.60%,75.40%,0.00%,22,22,304,7.20% +144456,885,3026,State-funded primary,156,83,73,53.20%,46.80%,3,1.90%,36,23.10%,6,150,0,3.80%,96.20%,0.00%,56,56,156,35.90% +144457,885,2121,State-funded primary,198,107,91,54.00%,46.00%,0,0.00%,45,22.70%,4,194,0,2.00%,98.00%,0.00%,48,48,198,24.20% +144458,823,2008,State-funded primary,81,32,49,39.50%,60.50%,6,7.40%,8,9.90%,2,79,0,2.50%,97.50%,0.00%,14,14,65,21.50% +144459,355,2085,State-funded primary,232,99,133,42.70%,57.30%,7,3.00%,25,10.80%,43,188,1,18.50%,81.00%,0.40%,119,112,207,54.10% +144460,893,5203,State-funded primary,274,137,137,50.00%,50.00%,3,1.10%,48,17.50%,86,184,4,31.40%,67.20%,1.50%,91,83,242,34.30% +144461,892,2090,State-funded primary,469,239,230,51.00%,49.00%,6,1.30%,51,10.90%,377,92,0,80.40%,19.60%,0.00%,105,102,419,24.30% +144462,892,2097,State-funded primary,233,104,129,44.60%,55.40%,3,1.30%,24,10.30%,96,137,0,41.20%,58.80%,0.00%,108,107,206,51.90% +144464,330,4025,State-funded secondary,1153,463,690,40.20%,59.80%,8,0.70%,103,8.90%,732,405,16,63.50%,35.10%,1.40%,443,540,1153,46.80% +144465,305,4004,State-funded secondary,1190,490,700,41.20%,58.80%,36,3.00%,228,19.20%,113,1077,0,9.50%,90.50%,0.00%,290,324,1115,29.10% +144466,831,2017,State-funded primary,356,177,179,49.70%,50.30%,2,0.60%,37,10.40%,289,67,0,81.20%,18.80%,0.00%,254,264,356,74.20% +144467,830,2029,State-funded primary,340,177,163,52.10%,47.90%,6,1.80%,53,15.60%,1,339,0,0.30%,99.70%,0.00%,47,50,340,14.70% +144468,830,2030,State-funded primary,102,50,52,49.00%,51.00%,1,1.00%,15,14.70%,1,101,0,1.00%,99.00%,0.00%,39,39,95,41.10% +144469,371,2012,State-funded primary,190,97,93,51.10%,48.90%,3,1.60%,32,16.80%,61,128,1,32.10%,67.40%,0.50%,31,31,190,16.30% +144470,838,2016,State-funded primary,294,116,178,39.50%,60.50%,7,2.40%,65,22.10%,18,276,0,6.10%,93.90%,0.00%,66,67,261,25.70% +144471,811,2010,State-funded primary,214,96,118,44.90%,55.10%,3,1.40%,10,4.70%,10,204,0,4.70%,95.30%,0.00%,35,36,190,18.90% +144472,916,2037,State-funded primary,137,63,74,46.00%,54.00%,6,4.40%,38,27.70%,17,120,0,12.40%,87.60%,0.00%,74,76,117,65.00% +144473,312,2049,State-funded primary,575,295,280,51.30%,48.70%,7,1.20%,58,10.10%,458,114,3,79.70%,19.80%,0.50%,148,147,529,27.80% +144474,888,2005,State-funded primary,54,24,30,44.40%,55.60%,0,0.00%,6,11.10%,0,54,0,0.00%,100.00%,0.00%,5,5,54,9.30% +144475,886,6144,Independent school,15,3,12,20.00%,80.00%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144478,929,2003,State-funded primary,23,12,11,52.20%,47.80%,1,4.30%,9,39.10%,1,22,0,4.30%,95.70%,0.00%,4,4,21,19.00% +144479,856,4004,State-funded secondary,961,491,470,51.10%,48.90%,8,0.80%,180,18.70%,217,741,3,22.60%,77.10%,0.30%,414,443,918,48.30% +144481,373,2049,State-funded primary,376,176,200,46.80%,53.20%,4,1.10%,74,19.70%,155,214,7,41.20%,56.90%,1.90%,225,230,376,61.20% +144482,373,2050,State-funded primary,624,322,302,51.60%,48.40%,14,2.20%,145,23.20%,87,537,0,13.90%,86.10%,0.00%,344,342,574,59.60% +144483,371,2013,State-funded primary,160,76,84,47.50%,52.50%,2,1.30%,34,21.30%,15,145,0,9.40%,90.60%,0.00%,50,52,160,32.50% +144484,370,2050,State-funded primary,328,157,171,47.90%,52.10%,11,3.40%,54,16.50%,25,303,0,7.60%,92.40%,0.00%,63,64,296,21.60% +144485,891,2029,State-funded primary,381,188,193,49.30%,50.70%,4,1.00%,79,20.70%,149,232,0,39.10%,60.90%,0.00%,183,181,343,52.80% +144486,891,4023,State-funded secondary,772,384,388,49.70%,50.30%,12,1.60%,121,15.70%,167,588,17,21.60%,76.20%,2.20%,303,323,762,42.40% +144487,892,4008,State-funded secondary,879,431,448,49.00%,51.00%,5,0.60%,135,15.40%,138,741,0,15.70%,84.30%,0.00%,346,388,879,44.10% +144488,925,4035,State-funded secondary,1382,680,702,49.20%,50.80%,40,2.90%,179,13.00%,425,954,3,30.80%,69.00%,0.20%,311,343,1382,24.80% +144489,891,4022,State-funded secondary,1122,547,575,48.80%,51.20%,9,0.80%,71,6.30%,125,993,4,11.10%,88.50%,0.40%,243,246,1019,24.10% +144490,372,2028,State-funded primary,247,145,102,58.70%,41.30%,3,1.20%,49,19.80%,12,235,0,4.90%,95.10%,0.00%,89,91,222,41.00% +144491,925,2043,State-funded primary,136,70,66,51.50%,48.50%,3,2.20%,26,19.10%,6,130,0,4.40%,95.60%,0.00%,31,32,136,23.50% +144492,380,2035,State-funded primary,423,198,225,46.80%,53.20%,10,2.40%,56,13.20%,50,373,0,11.80%,88.20%,0.00%,191,191,385,49.60% +144493,341,4009,State-funded secondary,890,366,524,41.10%,58.90%,33,3.70%,233,26.20%,417,472,1,46.90%,53.00%,0.10%,473,586,890,65.80% +144494,352,4010,State-funded secondary,1012,495,517,48.90%,51.10%,22,2.20%,233,23.00%,466,545,1,46.00%,53.90%,0.10%,667,691,1012,68.30% +144496,840,4007,State-funded secondary,720,357,363,49.60%,50.40%,10,1.40%,94,13.10%,14,706,0,1.90%,98.10%,0.00%,102,103,636,16.20% +144498,860,2027,State-funded primary,248,124,124,50.00%,50.00%,2,0.80%,35,14.10%,19,229,0,7.70%,92.30%,0.00%,94,96,224,42.90% +144499,335,2034,State-funded primary,236,108,128,45.80%,54.20%,5,2.10%,34,14.40%,137,98,1,58.10%,41.50%,0.40%,103,99,211,46.90% +144500,866,2018,State-funded primary,461,213,248,46.20%,53.80%,10,2.20%,68,14.80%,293,161,7,63.60%,34.90%,1.50%,73,82,406,20.20% +144501,871,2009,State-funded primary,445,250,195,56.20%,43.80%,14,3.10%,43,9.70%,295,150,0,66.30%,33.70%,0.00%,174,176,445,39.60% +144502,302,4010,State-funded secondary,899,333,566,37.00%,63.00%,32,3.60%,136,15.10%,324,572,3,36.00%,63.60%,0.30%,210,244,822,29.70% +144503,936,4005,State-funded secondary,1447,723,724,50.00%,50.00%,59,4.10%,242,16.70%,220,1219,8,15.20%,84.20%,0.60%,320,323,1309,24.70% +144504,305,2075,State-funded primary,407,211,196,51.80%,48.20%,38,9.30%,63,15.50%,34,373,0,8.40%,91.60%,0.00%,58,58,407,14.30% +144505,845,4006,State-funded secondary,565,273,292,48.30%,51.70%,14,2.50%,115,20.40%,8,556,1,1.40%,98.40%,0.20%,121,126,565,22.30% +144506,851,2010,State-funded primary,455,228,227,50.10%,49.90%,2,0.40%,79,17.40%,57,397,1,12.50%,87.30%,0.20%,125,128,455,28.10% +144507,353,2023,State-funded primary,236,121,115,51.30%,48.70%,4,1.70%,36,15.30%,24,212,0,10.20%,89.80%,0.00%,135,136,197,69.00% +144508,353,4004,State-funded secondary,1261,645,616,51.10%,48.90%,17,1.30%,212,16.80%,573,687,1,45.40%,54.50%,0.10%,568,616,1261,48.90% +144509,801,4010,State-funded secondary,1033,527,506,51.00%,49.00%,39,3.80%,194,18.80%,385,592,56,37.30%,57.30%,5.40%,474,516,1033,50.00% +144511,316,4010,State-funded secondary,657,362,295,55.10%,44.90%,0,0.00%,1,0.20%,265,392,0,40.30%,59.70%,0.00%,118,0,0,0.00% +144514,865,6046,Independent school,22,2,20,9.10%,90.90%,9,40.90%,13,59.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144515,313,4006,State-funded secondary,741,0,741,0.00%,100.00%,18,2.40%,158,21.30%,322,388,31,43.50%,52.40%,4.20%,213,212,688,30.80% +144516,207,6013,Independent school,152,0,152,0.00%,100.00%,1,0.70%,55,36.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144519,359,4010,State-funded secondary,791,387,404,48.90%,51.10%,17,2.10%,179,22.60%,64,725,2,8.10%,91.70%,0.30%,407,432,791,54.60% +144520,936,4006,State-funded secondary,1073,539,534,50.20%,49.80%,38,3.50%,142,13.20%,88,985,0,8.20%,91.80%,0.00%,173,190,1073,17.70% +144521,845,3350,State-funded primary,440,219,221,49.80%,50.20%,7,1.60%,144,32.70%,133,307,0,30.20%,69.80%,0.00%,222,224,397,56.40% +144522,908,2514,State-funded primary,83,42,41,50.60%,49.40%,1,1.20%,13,15.70%,0,83,0,0.00%,100.00%,0.00%,19,19,83,22.90% +144523,908,2708,State-funded primary,95,49,46,51.60%,48.40%,2,2.10%,18,18.90%,0,95,0,0.00%,100.00%,0.00%,19,20,95,21.10% +144524,391,2004,State-funded primary,456,227,229,49.80%,50.20%,10,2.20%,67,14.70%,34,422,0,7.50%,92.50%,0.00%,228,219,413,53.00% +144525,931,3351,State-funded primary,391,206,185,52.70%,47.30%,8,2.00%,37,9.50%,26,365,0,6.60%,93.40%,0.00%,51,55,391,14.10% +144526,891,2353,State-funded primary,236,110,126,46.60%,53.40%,3,1.30%,20,8.50%,7,229,0,3.00%,97.00%,0.00%,40,40,209,19.10% +144527,316,2099,State-funded primary,459,209,250,45.50%,54.50%,11,2.40%,45,9.80%,311,146,2,67.80%,31.80%,0.40%,121,125,419,29.80% +144528,822,2294,State-funded primary,419,195,224,46.50%,53.50%,19,4.50%,66,15.80%,296,123,0,70.60%,29.40%,0.00%,118,122,419,29.10% +144529,896,2234,State-funded primary,241,120,121,49.80%,50.20%,7,2.90%,25,10.40%,8,233,0,3.30%,96.70%,0.00%,15,17,206,8.30% +144530,931,3452,State-funded primary,198,98,100,49.50%,50.50%,8,4.00%,15,7.60%,2,196,0,1.00%,99.00%,0.00%,13,15,198,7.60% +144531,886,2172,State-funded primary,471,221,250,46.90%,53.10%,22,4.70%,37,7.90%,203,268,0,43.10%,56.90%,0.00%,96,100,471,21.20% +144532,926,2427,State-funded primary,388,203,185,52.30%,47.70%,5,1.30%,51,13.10%,82,306,0,21.10%,78.90%,0.00%,63,69,388,17.80% +144533,830,4097,State-funded secondary,830,413,417,49.80%,50.20%,20,2.40%,139,16.70%,38,790,2,4.60%,95.20%,0.20%,279,297,830,35.80% +144534,891,3550,State-funded primary,95,47,48,49.50%,50.50%,1,1.10%,3,3.20%,2,93,0,2.10%,97.90%,0.00%,10,11,87,12.60% +144535,878,3062,State-funded primary,102,50,52,49.00%,51.00%,2,2.00%,9,8.80%,3,99,0,2.90%,97.10%,0.00%,3,3,77,3.90% +144536,371,3307,State-funded primary,83,40,43,48.20%,51.80%,5,6.00%,15,18.10%,0,83,0,0.00%,100.00%,0.00%,12,13,83,15.70% +144537,873,5205,State-funded primary,424,190,234,44.80%,55.20%,14,3.30%,75,17.70%,98,326,0,23.10%,76.90%,0.00%,67,68,424,16.00% +144538,855,2181,State-funded primary,305,141,164,46.20%,53.80%,12,3.90%,19,6.20%,87,218,0,28.50%,71.50%,0.00%,56,56,305,18.40% +144539,371,2186,State-funded primary,211,98,113,46.40%,53.60%,1,0.50%,32,15.20%,23,188,0,10.90%,89.10%,0.00%,94,98,194,50.50% +144540,303,2065,State-funded primary,178,77,101,43.30%,56.70%,6,3.40%,23,12.90%,58,120,0,32.60%,67.40%,0.00%,77,81,178,45.50% +144541,896,2721,State-funded primary,199,98,101,49.20%,50.80%,11,5.50%,44,22.10%,30,169,0,15.10%,84.90%,0.00%,112,112,180,62.20% +144542,808,2343,State-funded primary,335,163,172,48.70%,51.30%,31,9.30%,46,13.70%,6,329,0,1.80%,98.20%,0.00%,124,125,272,46.00% +144544,319,2015,State-funded primary,387,190,197,49.10%,50.90%,15,3.90%,51,13.20%,137,250,0,35.40%,64.60%,0.00%,137,137,362,37.80% +144545,822,2211,State-funded primary,509,243,266,47.70%,52.30%,19,3.70%,70,13.80%,316,193,0,62.10%,37.90%,0.00%,193,195,509,38.30% +144546,822,2150,State-funded primary,475,235,240,49.50%,50.50%,17,3.60%,116,24.40%,113,361,1,23.80%,76.00%,0.20%,111,113,401,28.20% +144547,931,2566,State-funded primary,124,59,65,47.60%,52.40%,2,1.60%,18,14.50%,13,107,4,10.50%,86.30%,3.20%,15,16,124,12.90% +144548,892,3312,State-funded primary,382,170,212,44.50%,55.50%,0,0.00%,26,6.80%,55,327,0,14.40%,85.60%,0.00%,45,45,382,11.80% +144549,305,3504,State-funded primary,137,64,73,46.70%,53.30%,4,2.90%,18,13.10%,70,66,1,51.10%,48.20%,0.70%,40,40,137,29.20% +144550,838,3655,State-funded primary,229,118,111,51.50%,48.50%,10,4.40%,40,17.50%,38,191,0,16.60%,83.40%,0.00%,65,62,205,30.20% +144551,808,2006,State-funded primary,458,240,218,52.40%,47.60%,18,3.90%,38,8.30%,5,453,0,1.10%,98.90%,0.00%,90,95,402,23.60% +144553,935,2205,State-funded primary,46,25,21,54.30%,45.70%,2,4.30%,19,41.30%,5,41,0,10.90%,89.10%,0.00%,15,15,44,34.10% +144554,839,2162,State-funded primary,262,125,137,47.70%,52.30%,5,1.90%,24,9.20%,33,229,0,12.60%,87.40%,0.00%,63,63,211,29.90% +144555,891,2352,State-funded primary,238,131,107,55.00%,45.00%,2,0.80%,31,13.00%,11,227,0,4.60%,95.40%,0.00%,80,77,203,37.90% +144557,372,3341,State-funded primary,295,148,147,50.20%,49.80%,0,0.00%,48,16.30%,28,267,0,9.50%,90.50%,0.00%,48,49,274,17.90% +144558,861,4042,State-funded secondary,762,372,390,48.80%,51.20%,14,1.80%,117,15.40%,80,682,0,10.50%,89.50%,0.00%,120,145,762,19.00% +144559,391,2014,State-funded primary,172,84,88,48.80%,51.20%,4,2.30%,21,12.20%,7,165,0,4.10%,95.90%,0.00%,72,65,147,44.20% +144560,878,3068,State-funded primary,125,62,63,49.60%,50.40%,4,3.20%,11,8.80%,1,124,0,0.80%,99.20%,0.00%,26,25,95,26.30% +144561,811,4062,State-funded secondary,1518,746,772,49.10%,50.90%,38,2.50%,110,7.20%,30,1488,0,2.00%,98.00%,0.00%,237,235,1336,17.60% +144562,896,2242,State-funded primary,298,139,159,46.60%,53.40%,16,5.40%,45,15.10%,39,259,0,13.10%,86.90%,0.00%,106,105,226,46.50% +144563,384,2201,State-funded primary,222,86,136,38.70%,61.30%,7,3.20%,15,6.80%,4,218,0,1.80%,98.20%,0.00%,29,30,187,16.00% +144565,926,2413,State-funded primary,214,110,104,51.40%,48.60%,5,2.30%,27,12.60%,5,204,5,2.30%,95.30%,2.30%,62,64,214,29.90% +144566,887,2492,State-funded primary,328,169,159,51.50%,48.50%,5,1.50%,75,22.90%,42,284,2,12.80%,86.60%,0.60%,117,121,328,36.90% +144568,931,3221,State-funded primary,157,91,66,58.00%,42.00%,7,4.50%,12,7.60%,13,142,2,8.30%,90.40%,1.30%,12,12,157,7.60% +144569,357,2078,State-funded primary,397,193,204,48.60%,51.40%,14,3.50%,99,24.90%,114,283,0,28.70%,71.30%,0.00%,233,227,376,60.40% +144570,908,3875,State-funded primary,95,52,43,54.70%,45.30%,2,2.10%,12,12.60%,0,95,0,0.00%,100.00%,0.00%,12,12,81,14.80% +144571,872,3312,State-funded primary,494,245,249,49.60%,50.40%,8,1.60%,37,7.50%,196,298,0,39.70%,60.30%,0.00%,44,48,461,10.40% +144572,351,2047,State-funded primary,455,227,228,49.90%,50.10%,12,2.60%,49,10.80%,182,272,1,40.00%,59.80%,0.20%,227,229,419,54.70% +144573,384,2088,State-funded primary,177,84,93,47.50%,52.50%,6,3.40%,24,13.60%,17,160,0,9.60%,90.40%,0.00%,67,67,122,54.90% +144574,926,2077,State-funded primary,143,57,86,39.90%,60.10%,5,3.50%,27,18.90%,9,134,0,6.30%,93.70%,0.00%,19,20,143,14.00% +144575,351,2033,State-funded primary,456,231,225,50.70%,49.30%,13,2.90%,31,6.80%,67,389,0,14.70%,85.30%,0.00%,69,72,456,15.80% +144577,931,3807,State-funded primary,163,77,86,47.20%,52.80%,5,3.10%,23,14.10%,11,152,0,6.70%,93.30%,0.00%,13,13,163,8.00% +144580,885,2918,State-funded primary,418,205,213,49.00%,51.00%,12,2.90%,59,14.10%,53,365,0,12.70%,87.30%,0.00%,48,51,418,12.20% +144581,851,2715,State-funded primary,343,160,183,46.60%,53.40%,6,1.70%,42,12.20%,54,289,0,15.70%,84.30%,0.00%,88,89,343,25.90% +144582,851,2709,State-funded primary,149,71,78,47.70%,52.30%,4,2.70%,9,6.00%,13,136,0,8.70%,91.30%,0.00%,28,28,149,18.80% +144583,810,2904,State-funded primary,314,145,169,46.20%,53.80%,4,1.30%,40,12.70%,31,283,0,9.90%,90.10%,0.00%,175,169,290,58.30% +144584,931,3237,State-funded primary,203,93,110,45.80%,54.20%,3,1.50%,24,11.80%,19,179,5,9.40%,88.20%,2.50%,6,6,203,3.00% +144586,885,3081,State-funded primary,199,108,91,54.30%,45.70%,2,1.00%,26,13.10%,5,194,0,2.50%,97.50%,0.00%,11,11,199,5.50% +144587,883,3502,State-funded primary,201,99,102,49.30%,50.70%,9,4.50%,22,10.90%,13,188,0,6.50%,93.50%,0.00%,13,19,201,9.50% +144588,383,4110,State-funded secondary,1091,464,627,42.50%,57.50%,37,3.40%,146,13.40%,475,607,9,43.50%,55.60%,0.80%,305,342,970,35.30% +144589,311,2023,State-funded primary,258,133,125,51.60%,48.40%,8,3.10%,26,10.10%,60,198,0,23.30%,76.70%,0.00%,49,50,258,19.40% +144590,311,2022,State-funded primary,328,154,174,47.00%,53.00%,8,2.40%,38,11.60%,70,258,0,21.30%,78.70%,0.00%,79,86,328,26.20% +144591,860,3072,State-funded primary,186,92,94,49.50%,50.50%,5,2.70%,19,10.20%,9,177,0,4.80%,95.20%,0.00%,49,53,170,31.20% +144592,861,3300,State-funded primary,404,199,205,49.30%,50.70%,10,2.50%,70,17.30%,203,197,4,50.20%,48.80%,1.00%,195,183,366,50.00% +144593,351,2009,State-funded primary,218,111,107,50.90%,49.10%,6,2.80%,19,8.70%,35,183,0,16.10%,83.90%,0.00%,20,23,218,10.60% +144594,925,2012,State-funded primary,88,46,42,52.30%,47.70%,3,3.40%,13,14.80%,3,85,0,3.40%,96.60%,0.00%,14,14,88,15.90% +144595,822,4005,State-funded secondary,802,401,401,50.00%,50.00%,27,3.40%,86,10.70%,126,676,0,15.70%,84.30%,0.00%,124,129,756,17.10% +144596,311,2025,State-funded primary,328,159,169,48.50%,51.50%,9,2.70%,44,13.40%,133,195,0,40.50%,59.50%,0.00%,85,86,328,26.20% +144597,874,2009,State-funded primary,459,201,258,43.80%,56.20%,7,1.50%,39,8.50%,354,105,0,77.10%,22.90%,0.00%,185,187,411,45.50% +144598,874,2010,State-funded primary,362,186,176,51.40%,48.60%,1,0.30%,39,10.80%,174,188,0,48.10%,51.90%,0.00%,210,212,362,58.60% +144599,938,2047,State-funded primary,330,159,171,48.20%,51.80%,2,0.60%,45,13.60%,155,173,2,47.00%,52.40%,0.60%,137,139,330,42.10% +144600,874,2011,State-funded primary,355,164,191,46.20%,53.80%,7,2.00%,56,15.80%,142,213,0,40.00%,60.00%,0.00%,161,161,355,45.40% +144601,929,4005,State-funded secondary,955,464,491,48.60%,51.40%,12,1.30%,136,14.20%,16,939,0,1.70%,98.30%,0.00%,280,280,856,32.70% +144602,839,2008,State-funded primary,231,103,128,44.60%,55.40%,7,3.00%,28,12.10%,39,192,0,16.90%,83.10%,0.00%,95,97,231,42.00% +144603,883,2013,State-funded primary,67,32,35,47.80%,52.20%,0,0.00%,3,4.50%,2,65,0,3.00%,97.00%,0.00%,10,10,67,14.90% +144604,860,2028,State-funded primary,204,96,108,47.10%,52.90%,3,1.50%,20,9.80%,0,204,0,0.00%,100.00%,0.00%,14,14,189,7.40% +144605,810,2022,State-funded primary,439,241,198,54.90%,45.10%,0,0.00%,79,18.00%,19,420,0,4.30%,95.70%,0.00%,182,186,390,47.70% +144606,370,4011,State-funded secondary,1109,548,561,49.40%,50.60%,36,3.20%,135,12.20%,79,1030,0,7.10%,92.90%,0.00%,322,345,1078,32.00% +144607,830,2031,State-funded primary,119,49,70,41.20%,58.80%,1,0.80%,43,36.10%,4,115,0,3.40%,96.60%,0.00%,95,98,119,82.40% +144608,867,2000,State-funded primary,418,203,215,48.60%,51.40%,19,4.50%,57,13.60%,65,353,0,15.60%,84.40%,0.00%,48,50,384,13.00% +144609,359,2008,State-funded primary,313,151,162,48.20%,51.80%,10,3.20%,76,24.30%,131,182,0,41.90%,58.10%,0.00%,142,134,278,48.20% +144610,870,4003,State-funded secondary,795,795,0,100.00%,0.00%,9,1.10%,100,12.60%,382,394,19,48.10%,49.60%,2.40%,208,229,795,28.80% +144611,891,2030,State-funded primary,263,136,127,51.70%,48.30%,7,2.70%,65,24.70%,17,246,0,6.50%,93.50%,0.00%,91,89,227,39.20% +144612,830,2032,State-funded primary,269,143,126,53.20%,46.80%,0,0.00%,94,34.90%,9,260,0,3.30%,96.70%,0.00%,111,116,269,43.10% +144615,886,2085,State-funded primary,203,109,94,53.70%,46.30%,2,1.00%,21,10.30%,68,135,0,33.50%,66.50%,0.00%,70,74,203,36.50% +144617,876,4003,State-funded secondary,1130,578,552,51.20%,48.80%,55,4.90%,227,20.10%,51,1079,0,4.50%,95.50%,0.00%,581,598,1101,54.30% +144618,343,4005,State-funded secondary,814,372,442,45.70%,54.30%,16,2.00%,110,13.50%,63,751,0,7.70%,92.30%,0.00%,194,204,814,25.10% +144619,855,6040,Independent school,13,2,11,15.40%,84.60%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144621,212,2009,State-funded primary,289,135,154,46.70%,53.30%,5,1.70%,29,10.00%,134,153,2,46.40%,52.90%,0.70%,53,55,263,20.90% +144623,919,4026,State-funded secondary,814,399,415,49.00%,51.00%,22,2.70%,140,17.20%,108,706,0,13.30%,86.70%,0.00%,191,208,738,28.20% +144624,831,2018,State-funded primary,423,188,235,44.40%,55.60%,5,1.20%,73,17.30%,46,377,0,10.90%,89.10%,0.00%,199,188,368,51.10% +144625,935,2203,State-funded primary,115,58,57,50.40%,49.60%,3,2.60%,14,12.20%,2,113,0,1.70%,98.30%,0.00%,17,18,115,15.70% +144626,306,2114,State-funded primary,668,319,349,47.80%,52.20%,7,1.00%,92,13.80%,179,487,2,26.80%,72.90%,0.30%,141,142,599,23.70% +144627,353,4006,State-funded secondary,1453,749,704,51.50%,48.50%,25,1.70%,234,16.10%,95,1356,2,6.50%,93.30%,0.10%,564,631,1453,43.40% +144628,867,2001,State-funded primary,282,141,141,50.00%,50.00%,22,7.80%,68,24.10%,56,226,0,19.90%,80.10%,0.00%,89,92,264,34.80% +144629,856,4006,State-funded secondary,1121,535,586,47.70%,52.30%,35,3.10%,150,13.40%,504,612,5,45.00%,54.60%,0.40%,387,418,1121,37.30% +144630,333,2007,State-funded primary,208,103,105,49.50%,50.50%,2,1.00%,24,11.50%,61,147,0,29.30%,70.70%,0.00%,83,87,192,45.30% +144631,881,2160,State-funded primary,202,99,103,49.00%,51.00%,8,4.00%,28,13.90%,50,152,0,24.80%,75.20%,0.00%,55,58,185,31.40% +144632,344,2003,State-funded primary,193,94,99,48.70%,51.30%,0,0.00%,77,39.90%,34,159,0,17.60%,82.40%,0.00%,104,105,168,62.50% +144633,937,7005,State-funded special school,45,3,42,6.70%,93.30%,45,100.00%,0,0.00%,1,44,0,2.20%,97.80%,0.00%,28,31,45,68.90% +144634,886,2086,State-funded primary,311,149,162,47.90%,52.10%,5,1.60%,36,11.60%,13,298,0,4.20%,95.80%,0.00%,71,75,311,24.10% +144635,333,2008,State-funded primary,390,167,223,42.80%,57.20%,14,3.60%,50,12.80%,170,220,0,43.60%,56.40%,0.00%,130,132,346,38.20% +144637,872,2006,State-funded primary,406,204,202,50.20%,49.80%,7,1.70%,36,8.90%,71,331,4,17.50%,81.50%,1.00%,68,68,388,17.50% +144638,420,4002,State-funded secondary,263,125,138,47.50%,52.50%,9,3.40%,14,5.30%,2,261,0,0.80%,99.20%,0.00%,8,12,263,4.60% +144639,887,2623,State-funded primary,394,194,200,49.20%,50.80%,5,1.30%,79,20.10%,19,375,0,4.80%,95.20%,0.00%,56,57,394,14.50% +144640,926,3421,State-funded primary,462,221,241,47.80%,52.20%,7,1.50%,75,16.20%,187,252,23,40.50%,54.50%,5.00%,104,106,384,27.60% +144643,891,7018,State-funded special school,111,25,86,22.50%,77.50%,111,100.00%,0,0.00%,9,99,3,8.10%,89.20%,2.70%,64,60,98,61.20% +144644,891,3534,State-funded primary,110,57,53,51.80%,48.20%,0,0.00%,9,8.20%,1,109,0,0.90%,99.10%,0.00%,11,11,96,11.50% +144645,881,2161,State-funded primary,61,29,32,47.50%,52.50%,0,0.00%,10,16.40%,0,57,4,0.00%,93.40%,6.60%,17,18,61,29.50% +144646,888,4022,State-funded secondary,699,349,350,49.90%,50.10%,26,3.70%,156,22.30%,25,674,0,3.60%,96.40%,0.00%,319,335,699,47.90% +144647,815,2007,State-funded primary,162,74,88,45.70%,54.30%,5,3.10%,30,18.50%,7,155,0,4.30%,95.70%,0.00%,53,45,140,32.10% +144648,937,2056,State-funded primary,336,159,177,47.30%,52.70%,12,3.60%,42,12.50%,53,282,1,15.80%,83.90%,0.30%,82,83,336,24.70% +144649,358,2016,State-funded primary,173,74,99,42.80%,57.20%,26,15.00%,30,17.30%,70,103,0,40.50%,59.50%,0.00%,72,73,173,42.20% +144650,885,2014,State-funded primary,205,122,83,59.50%,40.50%,8,3.90%,65,31.70%,11,194,0,5.40%,94.60%,0.00%,131,132,194,68.00% +144651,816,2021,State-funded primary,222,118,104,53.20%,46.80%,6,2.70%,22,9.90%,16,206,0,7.20%,92.80%,0.00%,78,79,179,44.10% +144652,816,4001,State-funded secondary,720,354,366,49.20%,50.80%,18,2.50%,102,14.20%,26,694,0,3.60%,96.40%,0.00%,236,255,720,35.40% +144653,302,2051,State-funded primary,432,218,214,50.50%,49.50%,26,6.00%,82,19.00%,320,111,1,74.10%,25.70%,0.20%,129,133,401,33.20% +144655,801,7012,State-funded special school,165,30,135,18.20%,81.80%,165,100.00%,0,0.00%,9,156,0,5.50%,94.50%,0.00%,127,99,130,76.20% +144656,371,2199,State-funded primary,464,243,221,52.40%,47.60%,6,1.30%,71,15.30%,21,443,0,4.50%,95.50%,0.00%,132,123,400,30.80% +144657,332,4612,State-funded secondary,816,417,399,51.10%,48.90%,13,1.60%,98,12.00%,284,529,3,34.80%,64.80%,0.40%,396,426,816,52.20% +144658,840,2136,State-funded primary,258,121,137,46.90%,53.10%,6,2.30%,31,12.00%,2,256,0,0.80%,99.20%,0.00%,42,44,232,19.00% +144659,845,2141,State-funded primary,178,77,101,43.30%,56.70%,1,0.60%,24,13.50%,6,169,3,3.40%,94.90%,1.70%,64,64,178,36.00% +144660,845,2140,State-funded primary,251,132,119,52.60%,47.40%,5,2.00%,33,13.10%,15,236,0,6.00%,94.00%,0.00%,99,100,251,39.80% +144661,845,4000,State-funded secondary,888,451,437,50.80%,49.20%,47,5.30%,145,16.30%,28,838,22,3.20%,94.40%,2.50%,205,235,888,26.50% +144662,845,2154,State-funded primary,418,205,213,49.00%,51.00%,6,1.40%,77,18.40%,41,377,0,9.80%,90.20%,0.00%,177,180,377,47.70% +144663,881,3128,State-funded primary,210,111,99,52.90%,47.10%,2,1.00%,17,8.10%,18,192,0,8.60%,91.40%,0.00%,30,31,210,14.80% +144664,881,2983,State-funded primary,201,99,102,49.30%,50.70%,19,9.50%,26,12.90%,58,143,0,28.90%,71.10%,0.00%,37,46,201,22.90% +144665,881,2665,State-funded primary,442,211,231,47.70%,52.30%,15,3.40%,73,16.50%,90,352,0,20.40%,79.60%,0.00%,136,144,407,35.40% +144668,886,2676,State-funded primary,534,263,271,49.30%,50.70%,7,1.30%,71,13.30%,234,300,0,43.80%,56.20%,0.00%,67,74,534,13.90% +144669,810,2884,State-funded primary,578,292,286,50.50%,49.50%,14,2.40%,53,9.20%,45,529,4,7.80%,91.50%,0.70%,139,140,497,28.20% +144670,810,2279,State-funded primary,333,169,164,50.80%,49.20%,7,2.10%,32,9.60%,24,309,0,7.20%,92.80%,0.00%,79,85,333,25.50% +144671,810,2440,State-funded primary,208,110,98,52.90%,47.10%,4,1.90%,42,20.20%,19,189,0,9.10%,90.90%,0.00%,73,70,184,38.00% +144672,810,2005,State-funded primary,465,224,241,48.20%,51.80%,17,3.70%,108,23.20%,331,134,0,71.20%,28.80%,0.00%,210,215,421,51.10% +144673,810,2001,State-funded primary,301,133,168,44.20%,55.80%,7,2.30%,58,19.30%,96,201,4,31.90%,66.80%,1.30%,24,27,276,9.80% +144674,810,2670,State-funded primary,428,192,236,44.90%,55.10%,11,2.60%,52,12.10%,25,403,0,5.80%,94.20%,0.00%,156,160,374,42.80% +144676,810,2906,State-funded primary,200,95,105,47.50%,52.50%,4,2.00%,49,24.50%,25,175,0,12.50%,87.50%,0.00%,118,117,183,63.90% +144677,810,2089,State-funded primary,381,189,192,49.60%,50.40%,7,1.80%,70,18.40%,216,165,0,56.70%,43.30%,0.00%,173,172,338,50.90% +144678,815,2041,State-funded primary,28,14,14,50.00%,50.00%,0,0.00%,4,14.30%,0,28,0,0.00%,100.00%,0.00%,2,2,28,7.10% +144679,815,2190,State-funded primary,201,93,108,46.30%,53.70%,10,5.00%,19,9.50%,7,194,0,3.50%,96.50%,0.00%,52,52,172,30.20% +144680,815,2256,State-funded primary,54,30,24,55.60%,44.40%,3,5.60%,7,13.00%,2,52,0,3.70%,96.30%,0.00%,9,9,54,16.70% +144681,815,2197,State-funded primary,211,91,120,43.10%,56.90%,11,5.20%,22,10.40%,7,204,0,3.30%,96.70%,0.00%,42,43,189,22.80% +144682,815,2042,State-funded primary,31,14,17,45.20%,54.80%,1,3.20%,5,16.10%,0,31,0,0.00%,100.00%,0.00%,3,3,31,9.70% +144683,941,2166,State-funded primary,398,205,193,51.50%,48.50%,9,2.30%,18,4.50%,179,218,1,45.00%,54.80%,0.30%,91,93,398,23.40% +144684,940,7010,State-funded special school,87,30,57,34.50%,65.50%,87,100.00%,0,0.00%,20,65,2,23.00%,74.70%,2.30%,37,34,73,46.60% +144685,941,1105,State-funded AP school,6,6,0,100.00%,0.00%,1,16.70%,5,83.30%,0,6,0,0.00%,100.00%,0.00%,1,0,0,0.00% +144686,892,2190,State-funded primary,193,93,100,48.20%,51.80%,1,0.50%,29,15.00%,20,173,0,10.40%,89.60%,0.00%,67,71,180,39.40% +144687,891,4041,State-funded secondary,952,498,454,52.30%,47.70%,8,0.80%,82,8.60%,34,860,58,3.60%,90.30%,6.10%,215,223,875,25.50% +144688,931,3852,State-funded primary,346,168,178,48.60%,51.40%,9,2.60%,60,17.30%,34,312,0,9.80%,90.20%,0.00%,39,40,314,12.70% +144689,354,5202,State-funded primary,208,90,118,43.30%,56.70%,4,1.90%,14,6.70%,4,204,0,1.90%,98.10%,0.00%,41,41,208,19.70% +144690,354,3009,State-funded primary,451,215,236,47.70%,52.30%,7,1.60%,31,6.90%,24,427,0,5.30%,94.70%,0.00%,101,106,415,25.50% +144691,882,7004,State-funded special school,90,28,62,31.10%,68.90%,89,98.90%,1,1.10%,5,85,0,5.60%,94.40%,0.00%,56,60,90,66.70% +144692,882,7001,State-funded special school,124,57,67,46.00%,54.00%,124,100.00%,0,0.00%,11,113,0,8.90%,91.10%,0.00%,60,60,124,48.40% +144693,882,7005,State-funded special school,126,34,92,27.00%,73.00%,126,100.00%,0,0.00%,6,120,0,4.80%,95.20%,0.00%,54,20,50,40.00% +144694,882,2132,State-funded primary,779,389,390,49.90%,50.10%,37,4.70%,91,11.70%,140,639,0,18.00%,82.00%,0.00%,280,282,645,43.70% +144696,861,2118,State-funded primary,391,187,204,47.80%,52.20%,10,2.60%,98,25.10%,148,242,1,37.90%,61.90%,0.30%,176,180,391,46.00% +144697,936,2211,State-funded primary,218,109,109,50.00%,50.00%,6,2.80%,31,14.20%,37,181,0,17.00%,83.00%,0.00%,31,32,187,17.10% +144698,357,2053,State-funded primary,331,162,169,48.90%,51.10%,7,2.10%,30,9.10%,97,233,1,29.30%,70.40%,0.30%,151,150,310,48.40% +144699,211,2159,State-funded primary,449,225,224,50.10%,49.90%,26,5.80%,67,14.90%,394,55,0,87.80%,12.20%,0.00%,218,216,404,53.50% +144700,211,4276,State-funded secondary,1302,129,1173,9.90%,90.10%,34,2.60%,81,6.20%,459,843,0,35.30%,64.70%,0.00%,477,471,939,50.20% +144704,865,5200,State-funded primary,387,194,193,50.10%,49.90%,16,4.10%,71,18.30%,22,361,4,5.70%,93.30%,1.00%,88,89,387,23.00% +144705,865,2022,State-funded primary,442,218,224,49.30%,50.70%,11,2.50%,60,13.60%,23,419,0,5.20%,94.80%,0.00%,48,56,404,13.90% +144708,816,2028,State-funded primary,297,172,125,57.90%,42.10%,15,5.10%,31,10.40%,32,265,0,10.80%,89.20%,0.00%,121,114,273,41.80% +144709,816,7033,State-funded special school,115,28,87,24.30%,75.70%,115,100.00%,0,0.00%,13,102,0,11.30%,88.70%,0.00%,37,37,113,32.70% +144710,816,2428,State-funded primary,217,97,120,44.70%,55.30%,5,2.30%,15,6.90%,35,182,0,16.10%,83.90%,0.00%,39,39,217,18.00% +144711,816,4153,State-funded secondary,1650,823,827,49.90%,50.10%,27,1.60%,143,8.70%,159,1463,28,9.60%,88.70%,1.70%,100,103,1320,7.80% +144712,816,3380,State-funded primary,196,96,100,49.00%,51.00%,4,2.00%,27,13.80%,0,196,0,0.00%,100.00%,0.00%,2,3,196,1.50% +144713,816,3151,State-funded primary,204,104,100,51.00%,49.00%,0,0.00%,11,5.40%,14,189,1,6.90%,92.60%,0.50%,12,12,204,5.90% +144716,886,4019,State-funded secondary,576,191,385,33.20%,66.80%,20,3.50%,83,14.40%,65,506,5,11.30%,87.80%,0.90%,57,68,576,11.80% +144717,884,6016,Independent school,7,0,7,0.00%,100.00%,4,57.10%,3,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144719,330,4026,State-funded secondary,708,294,414,41.50%,58.50%,10,1.40%,84,11.90%,454,244,10,64.10%,34.50%,1.40%,360,420,708,59.30% +144721,330,4027,State-funded secondary,924,447,477,48.40%,51.60%,6,0.60%,182,19.70%,164,760,0,17.70%,82.30%,0.00%,396,431,886,48.60% +144722,330,2181,State-funded primary,499,254,245,50.90%,49.10%,2,0.40%,51,10.20%,394,105,0,79.00%,21.00%,0.00%,205,207,481,43.00% +144724,801,2114,State-funded primary,412,207,205,50.20%,49.80%,3,0.70%,65,15.80%,131,281,0,31.80%,68.20%,0.00%,116,111,384,28.90% +144726,919,6008,Independent school,37,37,0,100.00%,0.00%,1,2.70%,36,97.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144727,302,6012,Independent school,35,0,35,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144730,936,6011,Independent school,71,14,57,19.70%,80.30%,71,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144731,891,2031,State-funded primary,602,290,312,48.20%,51.80%,1,0.20%,56,9.30%,54,548,0,9.00%,91.00%,0.00%,66,69,602,11.50% +144735,382,2050,State-funded primary,433,213,220,49.20%,50.80%,15,3.50%,59,13.60%,13,420,0,3.00%,97.00%,0.00%,69,70,433,16.20% +144737,800,2003,State-funded primary,64,33,31,51.60%,48.40%,6,9.40%,17,26.60%,7,57,0,10.90%,89.10%,0.00%,24,24,64,37.50% +144738,310,6014,Independent school,49,11,38,22.40%,77.60%,49,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144739,316,4011,State-funded secondary,1037,435,602,41.90%,58.10%,22,2.10%,130,12.50%,224,710,103,21.60%,68.50%,9.90%,417,478,969,49.30% +144741,936,4007,State-funded secondary,846,409,437,48.30%,51.70%,31,3.70%,134,15.80%,95,751,0,11.20%,88.80%,0.00%,145,168,846,19.90% +144742,896,4003,State-funded secondary,253,145,108,57.30%,42.70%,16,6.30%,16,6.30%,50,203,0,19.80%,80.20%,0.00%,52,48,162,29.60% +144743,383,4075,State-funded secondary,886,444,442,50.10%,49.90%,8,0.90%,169,19.10%,240,585,61,27.10%,66.00%,6.90%,357,387,886,43.70% +144744,352,4011,State-funded secondary,627,0,627,0.00%,100.00%,26,4.10%,106,16.90%,443,161,23,70.70%,25.70%,3.70%,267,287,627,45.80% +144745,352,4012,State-funded secondary,625,625,0,100.00%,0.00%,11,1.80%,53,8.50%,376,239,10,60.20%,38.20%,1.60%,262,278,625,44.50% +144746,822,2003,State-funded primary,383,185,198,48.30%,51.70%,6,1.60%,53,13.80%,163,213,7,42.60%,55.60%,1.80%,58,51,337,15.10% +144747,825,2039,State-funded primary,478,240,238,50.20%,49.80%,15,3.10%,53,11.10%,138,340,0,28.90%,71.10%,0.00%,69,69,423,16.30% +144748,871,4005,State-funded secondary,948,422,526,44.50%,55.50%,23,2.40%,114,12.00%,690,253,5,72.80%,26.70%,0.50%,251,274,948,28.90% +144749,855,2030,State-funded primary,168,84,84,50.00%,50.00%,6,3.60%,23,13.70%,17,151,0,10.10%,89.90%,0.00%,31,31,168,18.50% +144750,883,4002,State-funded secondary,1016,446,570,43.90%,56.10%,38,3.70%,92,9.10%,252,744,20,24.80%,73.20%,2.00%,232,261,877,29.80% +144751,852,2008,State-funded primary,188,93,95,49.50%,50.50%,10,5.30%,22,11.70%,82,106,0,43.60%,56.40%,0.00%,76,77,188,41.00% +144752,302,6085,State-funded special school,70,21,49,30.00%,70.00%,70,100.00%,0,0.00%,9,61,0,12.90%,87.10%,0.00%,10,15,59,25.40% +144753,309,4002,State-funded secondary,607,355,252,58.50%,41.50%,1,0.20%,47,7.70%,221,386,0,36.40%,63.60%,0.00%,113,0,0,0.00% +144754,802,2006,State-funded primary,253,121,132,47.80%,52.20%,7,2.80%,26,10.30%,30,223,0,11.90%,88.10%,0.00%,48,49,228,21.50% +144755,352,4013,State-funded secondary,1050,416,634,39.60%,60.40%,40,3.80%,125,11.90%,556,494,0,53.00%,47.00%,0.00%,461,503,1050,47.90% +144756,211,4005,State-funded secondary,384,289,95,75.30%,24.70%,9,2.30%,25,6.50%,130,254,0,33.90%,66.10%,0.00%,152,30,50,60.00% +144757,933,2025,State-funded primary,256,117,139,45.70%,54.30%,8,3.10%,39,15.20%,48,202,6,18.80%,78.90%,2.30%,91,93,211,44.10% +144758,941,2233,State-funded primary,340,163,177,47.90%,52.10%,1,0.30%,11,3.20%,36,299,5,10.60%,87.90%,1.50%,32,33,340,9.70% +144759,941,7002,State-funded special school,116,27,89,23.30%,76.70%,116,100.00%,0,0.00%,19,97,0,16.40%,83.60%,0.00%,39,39,110,35.50% +144760,879,4004,State-funded secondary,277,223,54,80.50%,19.50%,4,1.40%,42,15.20%,30,247,0,10.80%,89.20%,0.00%,51,55,201,27.40% +144761,916,4010,State-funded secondary,294,43,251,14.60%,85.40%,4,1.40%,64,21.80%,26,265,3,8.80%,90.10%,1.00%,28,30,166,18.10% +144762,800,2004,State-funded primary,239,103,136,43.10%,56.90%,5,2.10%,27,11.30%,17,222,0,7.10%,92.90%,0.00%,23,22,208,10.60% +144763,925,1112,State-funded AP school,35,12,23,34.30%,65.70%,10,28.60%,25,71.40%,2,33,0,5.70%,94.30%,0.00%,17,19,35,54.30% +144764,937,7006,State-funded special school,100,14,86,14.00%,86.00%,100,100.00%,0,0.00%,0,100,0,0.00%,100.00%,0.00%,40,40,100,40.00% +144766,810,4013,State-funded secondary,665,157,508,23.60%,76.40%,10,1.50%,22,3.30%,49,616,0,7.40%,92.60%,0.00%,94,61,359,17.00% +144768,891,4024,State-funded secondary,484,239,245,49.40%,50.60%,5,1.00%,45,9.30%,46,434,4,9.50%,89.70%,0.80%,98,109,484,22.50% +144769,926,7002,State-funded special school,110,30,80,27.30%,72.70%,110,100.00%,0,0.00%,6,104,0,5.50%,94.50%,0.00%,38,37,100,37.00% +144770,873,2051,State-funded primary,385,207,178,53.80%,46.20%,12,3.10%,61,15.80%,210,146,29,54.50%,37.90%,7.50%,118,119,385,30.90% +144773,866,4002,State-funded secondary,864,433,431,50.10%,49.90%,24,2.80%,168,19.40%,330,533,1,38.20%,61.70%,0.10%,316,337,864,39.00% +144774,319,6000,Independent school,68,12,56,17.60%,82.40%,68,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144779,801,2117,State-funded primary,227,115,112,50.70%,49.30%,5,2.20%,50,22.00%,89,138,0,39.20%,60.80%,0.00%,143,137,210,65.20% +144784,302,5950,State-funded special school,47,7,40,14.90%,85.10%,47,100.00%,0,0.00%,4,40,3,8.50%,85.10%,6.40%,26,34,47,72.30% +144794,304,2040,State-funded primary,631,311,320,49.30%,50.70%,7,1.10%,25,4.00%,470,161,0,74.50%,25.50%,0.00%,61,62,631,9.80% +144795,213,6004,Independent school,165,48,117,29.10%,70.90%,3,1.80%,39,23.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144796,304,6006,Independent school,20,10,10,50.00%,50.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144798,877,2403,State-funded primary,354,176,178,49.70%,50.30%,3,0.80%,29,8.20%,31,323,0,8.80%,91.20%,0.00%,37,37,321,11.50% +144799,877,4007,State-funded secondary,797,404,393,50.70%,49.30%,43,5.40%,129,16.20%,149,648,0,18.70%,81.30%,0.00%,252,280,797,35.10% +144800,885,3015,State-funded primary,210,95,115,45.20%,54.80%,1,0.50%,43,20.50%,14,195,1,6.70%,92.90%,0.50%,28,30,190,15.80% +144804,840,6015,Independent school,83,40,43,48.20%,51.80%,2,2.40%,1,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144805,301,6006,Independent school,37,21,16,56.80%,43.20%,0,0.00%,4,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144806,830,6044,Independent school,27,15,12,55.60%,44.40%,1,3.70%,3,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144807,822,6007,Independent school,3,1,2,33.30%,66.70%,3,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144808,850,6093,Independent school,39,0,39,0.00%,100.00%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144809,383,4076,State-funded secondary,744,363,381,48.80%,51.20%,17,2.30%,90,12.10%,353,391,0,47.40%,52.60%,0.00%,378,413,744,55.50% +144811,382,6007,Independent school,117,117,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144816,888,6073,Independent school,248,248,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144818,881,6069,Independent school,15,3,12,20.00%,80.00%,13,86.70%,2,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144822,831,2019,State-funded primary,314,166,148,52.90%,47.10%,14,4.50%,70,22.30%,27,287,0,8.60%,91.40%,0.00%,106,117,314,37.30% +144823,881,2162,State-funded primary,294,142,152,48.30%,51.70%,3,1.00%,24,8.20%,98,196,0,33.30%,66.70%,0.00%,64,66,258,25.60% +144824,383,2020,State-funded primary,161,79,82,49.10%,50.90%,1,0.60%,37,23.00%,53,108,0,32.90%,67.10%,0.00%,53,55,161,34.20% +144825,926,2166,State-funded primary,99,49,50,49.50%,50.50%,2,2.00%,28,28.30%,3,96,0,3.00%,97.00%,0.00%,20,21,99,21.20% +144826,935,2206,State-funded primary,70,34,36,48.60%,51.40%,0,0.00%,7,10.00%,4,66,0,5.70%,94.30%,0.00%,20,22,59,37.30% +144827,935,2207,State-funded primary,82,38,44,46.30%,53.70%,1,1.20%,16,19.50%,2,80,0,2.40%,97.60%,0.00%,26,29,82,35.40% +144828,935,2208,State-funded primary,83,43,40,51.80%,48.20%,0,0.00%,7,8.40%,0,83,0,0.00%,100.00%,0.00%,15,16,68,23.50% +144830,800,2259,State-funded primary,267,119,148,44.60%,55.40%,2,0.70%,36,13.50%,10,257,0,3.70%,96.30%,0.00%,71,61,218,28.00% +144832,895,3527,State-funded primary,208,112,96,53.80%,46.20%,7,3.40%,14,6.70%,6,202,0,2.90%,97.10%,0.00%,19,21,208,10.10% +144833,895,2154,State-funded primary,201,98,103,48.80%,51.20%,7,3.50%,22,10.90%,2,199,0,1.00%,99.00%,0.00%,6,6,201,3.00% +144834,881,2548,State-funded primary,219,104,115,47.50%,52.50%,4,1.80%,7,3.20%,2,217,0,0.90%,99.10%,0.00%,13,15,191,7.90% +144835,886,3343,State-funded primary,165,78,87,47.30%,52.70%,5,3.00%,17,10.30%,20,145,0,12.10%,87.90%,0.00%,52,52,145,35.90% +144836,886,3754,State-funded primary,287,133,154,46.30%,53.70%,8,2.80%,38,13.20%,173,114,0,60.30%,39.70%,0.00%,49,50,287,17.40% +144837,855,2330,State-funded primary,373,160,213,42.90%,57.10%,5,1.30%,37,9.90%,13,357,3,3.50%,95.70%,0.80%,39,43,373,11.50% +144838,315,2094,State-funded primary,594,318,276,53.50%,46.50%,7,1.20%,91,15.30%,210,384,0,35.40%,64.60%,0.00%,128,130,535,24.30% +144839,926,5203,State-funded primary,178,80,98,44.90%,55.10%,2,1.10%,9,5.10%,1,177,0,0.60%,99.40%,0.00%,13,14,156,9.00% +144840,815,3120,State-funded primary,131,68,63,51.90%,48.10%,4,3.10%,31,23.70%,0,131,0,0.00%,100.00%,0.00%,17,17,106,16.00% +144841,940,3018,State-funded primary,100,52,48,52.00%,48.00%,2,2.00%,11,11.00%,1,99,0,1.00%,99.00%,0.00%,3,3,100,3.00% +144842,892,2935,State-funded primary,428,212,216,49.50%,50.50%,7,1.60%,40,9.30%,39,389,0,9.10%,90.90%,0.00%,185,176,369,47.70% +144843,879,2657,State-funded primary,398,161,237,40.50%,59.50%,10,2.50%,18,4.50%,57,341,0,14.30%,85.70%,0.00%,102,106,398,26.60% +144844,879,2659,State-funded primary,187,91,96,48.70%,51.30%,4,2.10%,21,11.20%,33,154,0,17.60%,82.40%,0.00%,68,70,187,37.40% +144845,851,2694,State-funded primary,250,123,127,49.20%,50.80%,7,2.80%,17,6.80%,29,221,0,11.60%,88.40%,0.00%,61,61,250,24.40% +144846,851,2700,State-funded primary,357,170,187,47.60%,52.40%,9,2.50%,41,11.50%,36,321,0,10.10%,89.90%,0.00%,111,114,357,31.90% +144847,857,3112,State-funded primary,64,27,37,42.20%,57.80%,2,3.10%,10,15.60%,3,61,0,4.70%,95.30%,0.00%,10,11,64,17.20% +144848,893,2084,State-funded primary,420,202,218,48.10%,51.90%,10,2.40%,42,10.00%,31,387,2,7.40%,92.10%,0.50%,49,50,420,11.90% +144849,935,3101,State-funded primary,112,56,56,50.00%,50.00%,2,1.80%,10,8.90%,1,111,0,0.90%,99.10%,0.00%,15,14,94,14.90% +144850,935,2083,State-funded primary,101,45,56,44.60%,55.40%,3,3.00%,8,7.90%,4,97,0,4.00%,96.00%,0.00%,7,7,101,6.90% +144851,319,7006,State-funded special school,146,43,103,29.50%,70.50%,146,100.00%,0,0.00%,23,123,0,15.80%,84.20%,0.00%,57,58,133,43.60% +144853,894,4439,State-funded secondary,1175,570,605,48.50%,51.50%,46,3.90%,217,18.50%,302,873,0,25.70%,74.30%,0.00%,312,331,1175,28.20% +144854,865,3190,State-funded primary,104,53,51,51.00%,49.00%,3,2.90%,12,11.50%,3,101,0,2.90%,97.10%,0.00%,21,21,104,20.20% +144856,344,6010,Independent school,27,10,17,37.00%,63.00%,1,3.70%,18,66.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144857,382,6008,Independent school,96,14,82,14.60%,85.40%,52,54.20%,17,17.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144858,940,3320,State-funded primary,103,58,45,56.30%,43.70%,2,1.90%,9,8.70%,9,94,0,8.70%,91.30%,0.00%,6,7,103,6.80% +144859,885,2079,State-funded primary,186,82,104,44.10%,55.90%,2,1.10%,25,13.40%,0,186,0,0.00%,100.00%,0.00%,2,6,186,3.20% +144860,380,5204,State-funded primary,469,226,243,48.20%,51.80%,20,4.30%,64,13.60%,239,230,0,51.00%,49.00%,0.00%,115,116,423,27.40% +144861,380,2126,State-funded primary,93,47,46,50.50%,49.50%,3,3.20%,7,7.50%,5,88,0,5.40%,94.60%,0.00%,30,34,93,36.60% +144862,380,2183,State-funded primary,473,240,233,50.70%,49.30%,7,1.50%,39,8.20%,417,51,5,88.20%,10.80%,1.10%,121,121,421,28.70% +144863,801,3440,State-funded primary,416,197,219,47.40%,52.60%,6,1.40%,60,14.40%,100,315,1,24.00%,75.70%,0.20%,83,87,416,20.90% +144864,801,2099,State-funded primary,455,233,222,51.20%,48.80%,6,1.30%,62,13.60%,34,421,0,7.50%,92.50%,0.00%,87,88,406,21.70% +144865,381,5204,State-funded primary,413,214,199,51.80%,48.20%,6,1.50%,20,4.80%,3,410,0,0.70%,99.30%,0.00%,29,30,413,7.30% +144866,881,3304,State-funded primary,64,35,29,54.70%,45.30%,0,0.00%,6,9.40%,3,61,0,4.70%,95.30%,0.00%,8,10,64,15.60% +144867,886,3329,State-funded primary,123,59,64,48.00%,52.00%,6,4.90%,11,8.90%,10,113,0,8.10%,91.90%,0.00%,18,20,123,16.30% +144868,886,3330,State-funded primary,108,56,52,51.90%,48.10%,1,0.90%,7,6.50%,4,104,0,3.70%,96.30%,0.00%,11,12,108,11.10% +144869,886,2463,State-funded primary,374,192,182,51.30%,48.70%,41,11.00%,57,15.20%,30,344,0,8.00%,92.00%,0.00%,60,63,374,16.80% +144870,886,2513,State-funded primary,324,159,165,49.10%,50.90%,12,3.70%,52,16.00%,16,307,1,4.90%,94.80%,0.30%,47,47,274,17.20% +144871,931,2598,State-funded primary,189,97,92,51.30%,48.70%,5,2.60%,54,28.60%,28,160,1,14.80%,84.70%,0.50%,61,62,164,37.80% +144872,931,3022,State-funded primary,215,104,111,48.40%,51.60%,6,2.80%,48,22.30%,113,102,0,52.60%,47.40%,0.00%,77,69,192,35.90% +144873,839,3600,State-funded primary,643,320,323,49.80%,50.20%,16,2.50%,85,13.20%,140,484,19,21.80%,75.30%,3.00%,120,121,608,19.90% +144874,839,2170,State-funded primary,611,285,326,46.60%,53.40%,9,1.50%,65,10.60%,123,487,1,20.10%,79.70%,0.20%,160,165,611,27.00% +144875,317,7009,State-funded special school,159,63,96,39.60%,60.40%,154,96.90%,5,3.10%,109,49,1,68.60%,30.80%,0.60%,63,54,127,42.50% +144877,882,2123,State-funded primary,263,125,138,47.50%,52.50%,8,3.00%,18,6.80%,30,232,1,11.40%,88.20%,0.40%,22,23,263,8.70% +144878,882,3823,State-funded primary,434,219,215,50.50%,49.50%,7,1.60%,58,13.40%,30,404,0,6.90%,93.10%,0.00%,93,95,400,23.80% +144879,935,1111,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +144880,801,2118,State-funded primary,462,243,219,52.60%,47.40%,8,1.70%,97,21.00%,55,407,0,11.90%,88.10%,0.00%,197,187,413,45.30% +144881,881,2163,State-funded primary,158,62,96,39.20%,60.80%,6,3.80%,13,8.20%,9,149,0,5.70%,94.30%,0.00%,41,41,138,29.70% +144882,850,2045,State-funded primary,200,95,105,47.50%,52.50%,6,3.00%,20,10.00%,14,186,0,7.00%,93.00%,0.00%,27,28,200,14.00% +144883,310,2005,State-funded primary,327,146,181,44.60%,55.40%,16,4.90%,16,4.90%,225,99,3,68.80%,30.30%,0.90%,74,83,316,26.30% +144884,926,2169,State-funded primary,370,209,161,56.50%,43.50%,7,1.90%,29,7.80%,43,327,0,11.60%,88.40%,0.00%,65,67,355,18.90% +144885,891,2032,State-funded primary,235,105,130,44.70%,55.30%,2,0.90%,23,9.80%,20,215,0,8.50%,91.50%,0.00%,109,106,211,50.20% +144889,303,5202,State-funded primary,157,71,86,45.20%,54.80%,3,1.90%,12,7.60%,43,114,0,27.40%,72.60%,0.00%,27,30,157,19.10% +144890,380,2115,State-funded primary,201,97,104,48.30%,51.70%,4,2.00%,26,12.90%,13,188,0,6.50%,93.50%,0.00%,38,38,188,20.20% +144891,380,7030,State-funded special school,109,31,78,28.40%,71.60%,109,100.00%,0,0.00%,15,92,2,13.80%,84.40%,1.80%,31,35,108,32.40% +144892,801,2010,State-funded primary,215,91,124,42.30%,57.70%,4,1.90%,52,24.20%,77,138,0,35.80%,64.20%,0.00%,91,84,190,44.20% +144893,305,5950,State-funded special school,261,91,170,34.90%,65.10%,260,99.60%,1,0.40%,24,237,0,9.20%,90.80%,0.00%,103,99,234,42.30% +144894,908,2027,State-funded primary,89,53,36,59.60%,40.40%,0,0.00%,17,19.10%,0,84,5,0.00%,94.40%,5.60%,18,20,89,22.50% +144895,908,2605,State-funded primary,99,45,54,45.50%,54.50%,3,3.00%,13,13.10%,0,99,0,0.00%,100.00%,0.00%,17,19,99,19.20% +144896,878,2624,State-funded primary,187,87,100,46.50%,53.50%,4,2.10%,21,11.20%,0,187,0,0.00%,100.00%,0.00%,10,13,187,7.00% +144897,881,7030,State-funded special school,151,47,104,31.10%,68.90%,150,99.30%,1,0.70%,1,150,0,0.70%,99.30%,0.00%,66,76,151,50.30% +144898,916,2158,State-funded primary,248,122,126,49.20%,50.80%,6,2.40%,46,18.50%,64,179,5,25.80%,72.20%,2.00%,66,67,248,27.00% +144899,850,2522,State-funded primary,223,107,116,48.00%,52.00%,9,4.00%,26,11.70%,109,114,0,48.90%,51.10%,0.00%,42,42,152,27.60% +144900,309,4031,State-funded secondary,1066,496,570,46.50%,53.50%,35,3.30%,105,9.80%,729,334,3,68.40%,31.30%,0.30%,422,514,1066,48.20% +144901,805,3330,State-funded primary,239,123,116,51.50%,48.50%,1,0.40%,40,16.70%,2,237,0,0.80%,99.20%,0.00%,29,29,209,13.90% +144902,805,3320,State-funded primary,346,179,167,51.70%,48.30%,2,0.60%,60,17.30%,25,321,0,7.20%,92.80%,0.00%,136,137,288,47.60% +144903,919,2067,State-funded primary,269,128,141,47.60%,52.40%,5,1.90%,56,20.80%,36,233,0,13.40%,86.60%,0.00%,106,113,269,42.00% +144904,919,2068,State-funded primary,197,98,99,49.70%,50.30%,3,1.50%,45,22.80%,17,180,0,8.60%,91.40%,0.00%,56,62,197,31.50% +144905,919,2135,State-funded primary,262,132,130,50.40%,49.60%,18,6.90%,41,15.60%,93,169,0,35.50%,64.50%,0.00%,55,61,206,29.60% +144906,919,2137,State-funded primary,367,200,167,54.50%,45.50%,19,5.20%,64,17.40%,171,196,0,46.60%,53.40%,0.00%,103,105,341,30.80% +144907,919,3981,State-funded primary,240,116,124,48.30%,51.70%,7,2.90%,35,14.60%,73,167,0,30.40%,69.60%,0.00%,49,52,210,24.80% +144908,919,2385,State-funded primary,275,138,137,50.20%,49.80%,1,0.40%,31,11.30%,68,207,0,24.70%,75.30%,0.00%,23,25,275,9.10% +144909,919,3991,State-funded primary,395,196,199,49.60%,50.40%,10,2.50%,83,21.00%,97,298,0,24.60%,75.40%,0.00%,114,117,379,30.90% +144910,886,5204,State-funded primary,400,202,198,50.50%,49.50%,5,1.30%,58,14.50%,9,391,0,2.30%,97.80%,0.00%,72,75,400,18.80% +144911,855,2044,State-funded primary,573,265,308,46.20%,53.80%,15,2.60%,73,12.70%,66,504,3,11.50%,88.00%,0.50%,104,108,573,18.80% +144912,925,2175,State-funded primary,93,49,44,52.70%,47.30%,1,1.10%,6,6.50%,6,87,0,6.50%,93.50%,0.00%,8,8,80,10.00% +144913,352,2013,State-funded primary,424,205,219,48.30%,51.70%,14,3.30%,86,20.30%,290,132,2,68.40%,31.10%,0.50%,176,178,391,45.50% +144914,887,3293,State-funded primary,225,106,119,47.10%,52.90%,1,0.40%,28,12.40%,49,176,0,21.80%,78.20%,0.00%,80,81,206,39.30% +144915,887,2537,State-funded primary,325,168,157,51.70%,48.30%,2,0.60%,29,8.90%,58,246,21,17.80%,75.70%,6.50%,86,79,263,30.00% +144917,802,3454,State-funded primary,344,177,167,51.50%,48.50%,5,1.50%,35,10.20%,50,294,0,14.50%,85.50%,0.00%,91,96,344,27.90% +144918,802,3455,State-funded primary,485,245,240,50.50%,49.50%,19,3.90%,123,25.40%,40,445,0,8.20%,91.80%,0.00%,247,253,404,62.60% +144919,802,3116,State-funded primary,205,103,102,50.20%,49.80%,2,1.00%,34,16.60%,8,197,0,3.90%,96.10%,0.00%,29,30,205,14.60% +144920,802,3117,State-funded primary,206,91,115,44.20%,55.80%,8,3.90%,40,19.40%,83,123,0,40.30%,59.70%,0.00%,57,58,206,28.20% +144921,802,3118,State-funded primary,348,175,173,50.30%,49.70%,6,1.70%,36,10.30%,48,300,0,13.80%,86.20%,0.00%,68,71,348,20.40% +144922,802,2316,State-funded primary,284,117,167,41.20%,58.80%,4,1.40%,24,8.50%,118,162,4,41.50%,57.00%,1.40%,109,112,284,39.40% +144923,802,2319,State-funded primary,201,107,94,53.20%,46.80%,4,2.00%,19,9.50%,46,155,0,22.90%,77.10%,0.00%,62,62,176,35.20% +144924,802,2277,State-funded primary,620,319,301,51.50%,48.50%,21,3.40%,39,6.30%,64,556,0,10.30%,89.70%,0.00%,149,153,620,24.70% +144925,802,2280,State-funded primary,333,166,167,49.80%,50.20%,4,1.20%,72,21.60%,43,290,0,12.90%,87.10%,0.00%,170,174,300,58.00% +144926,802,2286,State-funded primary,276,128,148,46.40%,53.60%,5,1.80%,35,12.70%,3,273,0,1.10%,98.90%,0.00%,70,70,276,25.40% +144927,802,2287,State-funded primary,245,128,117,52.20%,47.80%,5,2.00%,35,14.30%,40,205,0,16.30%,83.70%,0.00%,92,94,204,46.10% +144928,802,2292,State-funded primary,186,85,101,45.70%,54.30%,3,1.60%,21,11.30%,14,172,0,7.50%,92.50%,0.00%,44,45,186,24.20% +144929,815,4232,State-funded secondary,546,257,289,47.10%,52.90%,15,2.70%,52,9.50%,14,532,0,2.60%,97.40%,0.00%,49,56,546,10.30% +144930,815,3278,State-funded primary,220,101,119,45.90%,54.10%,3,1.40%,26,11.80%,12,208,0,5.50%,94.50%,0.00%,26,28,220,12.70% +144931,815,2351,State-funded primary,396,212,184,53.50%,46.50%,9,2.30%,55,13.90%,95,301,0,24.00%,76.00%,0.00%,160,154,327,47.10% +144932,891,2226,State-funded primary,231,88,143,38.10%,61.90%,3,1.30%,48,20.80%,21,210,0,9.10%,90.90%,0.00%,94,98,231,42.40% +144933,879,2688,State-funded primary,196,93,103,47.40%,52.60%,3,1.50%,26,13.30%,5,191,0,2.60%,97.40%,0.00%,48,53,196,27.00% +144934,354,3503,State-funded primary,300,142,158,47.30%,52.70%,17,5.70%,40,13.30%,53,243,4,17.70%,81.00%,1.30%,127,128,300,42.70% +144935,860,2195,State-funded primary,148,84,64,56.80%,43.20%,0,0.00%,18,12.20%,2,146,0,1.40%,98.60%,0.00%,8,8,148,5.40% +144936,808,3004,State-funded primary,220,99,121,45.00%,55.00%,5,2.30%,16,7.30%,9,211,0,4.10%,95.90%,0.00%,16,15,192,7.80% +144937,394,4065,State-funded secondary,661,328,333,49.60%,50.40%,32,4.80%,157,23.80%,25,636,0,3.80%,96.20%,0.00%,347,357,661,54.00% +144938,936,2931,State-funded primary,659,321,338,48.70%,51.30%,25,3.80%,147,22.30%,67,551,41,10.20%,83.60%,6.20%,135,138,632,21.80% +144939,936,3351,State-funded primary,237,103,134,43.50%,56.50%,18,7.60%,20,8.40%,5,232,0,2.10%,97.90%,0.00%,45,43,212,20.30% +144941,319,5200,State-funded primary,447,242,205,54.10%,45.90%,10,2.20%,24,5.40%,56,391,0,12.50%,87.50%,0.00%,24,24,418,5.70% +144942,894,2034,State-funded primary,665,327,338,49.20%,50.80%,6,0.90%,190,28.60%,238,425,2,35.80%,63.90%,0.30%,174,177,631,28.10% +144945,890,2201,State-funded primary,406,207,199,51.00%,49.00%,8,2.00%,115,28.30%,64,342,0,15.80%,84.20%,0.00%,316,320,406,78.80% +144946,381,4007,State-funded secondary,918,456,462,49.70%,50.30%,32,3.50%,152,16.60%,460,457,1,50.10%,49.80%,0.10%,435,458,918,49.90% +144947,873,2052,State-funded primary,159,75,84,47.20%,52.80%,3,1.90%,15,9.40%,8,151,0,5.00%,95.00%,0.00%,28,29,159,18.20% +144949,830,2033,State-funded primary,137,70,67,51.10%,48.90%,4,2.90%,19,13.90%,2,135,0,1.50%,98.50%,0.00%,83,84,137,61.30% +144950,371,2014,State-funded primary,376,192,184,51.10%,48.90%,6,1.60%,65,17.30%,303,73,0,80.60%,19.40%,0.00%,162,169,350,48.30% +144951,838,2018,State-funded primary,84,39,45,46.40%,53.60%,3,3.60%,12,14.30%,1,83,0,1.20%,98.80%,0.00%,19,19,84,22.60% +144952,332,4003,State-funded secondary,930,447,483,48.10%,51.90%,19,2.00%,180,19.40%,197,733,0,21.20%,78.80%,0.00%,389,423,930,45.50% +144953,840,2021,State-funded primary,190,84,106,44.20%,55.80%,5,2.60%,38,20.00%,11,179,0,5.80%,94.20%,0.00%,87,82,173,47.40% +144954,845,2022,State-funded primary,798,407,391,51.00%,49.00%,5,0.60%,154,19.30%,109,689,0,13.70%,86.30%,0.00%,210,221,798,27.70% +144955,881,2164,State-funded primary,341,167,174,49.00%,51.00%,12,3.50%,11,3.20%,7,333,1,2.10%,97.70%,0.30%,56,61,314,19.40% +144956,881,7004,State-funded special school,77,36,41,46.80%,53.20%,69,89.60%,8,10.40%,2,75,0,2.60%,97.40%,0.00%,28,28,67,41.80% +144959,919,2071,State-funded primary,91,41,50,45.10%,54.90%,7,7.70%,25,27.50%,6,85,0,6.60%,93.40%,0.00%,27,31,87,35.60% +144960,919,2080,State-funded primary,451,229,222,50.80%,49.20%,18,4.00%,28,6.20%,42,409,0,9.30%,90.70%,0.00%,21,22,420,5.20% +144962,206,4003,State-funded secondary,1150,417,733,36.30%,63.70%,31,2.70%,243,21.10%,302,846,2,26.30%,73.60%,0.20%,586,597,1036,57.60% +144963,382,2051,State-funded primary,371,179,192,48.20%,51.80%,6,1.60%,49,13.20%,182,189,0,49.10%,50.90%,0.00%,142,144,334,43.10% +144965,205,6014,Independent school,107,55,52,51.40%,48.60%,0,0.00%,25,23.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +144968,925,4039,State-funded secondary,870,440,430,50.60%,49.40%,28,3.20%,129,14.80%,18,852,0,2.10%,97.90%,0.00%,311,337,870,38.70% +144969,887,2019,State-funded primary,339,174,165,51.30%,48.70%,1,0.30%,57,16.80%,19,320,0,5.60%,94.40%,0.00%,116,122,339,36.00% +144970,391,2022,State-funded primary,781,370,411,47.40%,52.60%,2,0.30%,103,13.20%,638,127,16,81.70%,16.30%,2.00%,328,330,727,45.40% +144971,391,2023,State-funded primary,229,114,115,49.80%,50.20%,8,3.50%,18,7.90%,85,135,9,37.10%,59.00%,3.90%,130,122,204,59.80% +144972,926,2172,State-funded primary,56,32,24,57.10%,42.90%,2,3.60%,2,3.60%,2,53,1,3.60%,94.60%,1.80%,4,4,44,9.10% +144973,926,2173,State-funded primary,61,23,38,37.70%,62.30%,0,0.00%,6,9.80%,0,55,6,0.00%,90.20%,9.80%,4,6,61,9.80% +144974,926,2174,State-funded primary,61,36,25,59.00%,41.00%,2,3.30%,3,4.90%,1,58,2,1.60%,95.10%,3.30%,9,9,61,14.80% +144975,926,2177,State-funded primary,225,107,118,47.60%,52.40%,5,2.20%,46,20.40%,17,207,1,7.60%,92.00%,0.40%,51,51,196,26.00% +144976,815,4006,State-funded secondary,709,349,360,49.20%,50.80%,17,2.40%,65,9.20%,18,690,1,2.50%,97.30%,0.10%,75,77,601,12.80% +144977,929,4008,State-funded secondary,810,382,428,47.20%,52.80%,10,1.20%,107,13.20%,5,805,0,0.60%,99.40%,0.00%,220,222,743,29.90% +144978,891,2033,State-funded primary,455,228,227,50.10%,49.90%,3,0.70%,59,13.00%,47,408,0,10.30%,89.70%,0.00%,174,165,391,42.20% +144979,891,2034,State-funded primary,308,152,156,49.40%,50.60%,2,0.60%,43,14.00%,48,260,0,15.60%,84.40%,0.00%,96,99,262,37.80% +144981,874,2012,State-funded primary,530,241,289,45.50%,54.50%,12,2.30%,59,11.10%,290,240,0,54.70%,45.30%,0.00%,122,124,497,24.90% +144982,354,2010,State-funded primary,148,72,76,48.60%,51.40%,1,0.70%,15,10.10%,18,130,0,12.20%,87.80%,0.00%,83,89,148,60.10% +144983,893,2009,State-funded primary,95,36,59,37.90%,62.10%,2,2.10%,19,20.00%,4,89,2,4.20%,93.70%,2.10%,17,18,84,21.40% +144984,933,2026,State-funded primary,329,171,158,52.00%,48.00%,11,3.30%,40,12.20%,34,295,0,10.30%,89.70%,0.00%,59,61,329,18.50% +144985,933,2027,State-funded primary,442,227,215,51.40%,48.60%,12,2.70%,55,12.40%,84,358,0,19.00%,81.00%,0.00%,100,102,402,25.40% +144986,803,2013,State-funded primary,166,80,86,48.20%,51.80%,5,3.00%,18,10.80%,5,161,0,3.00%,97.00%,0.00%,16,16,166,9.60% +144987,882,2002,State-funded primary,460,232,228,50.40%,49.60%,8,1.70%,46,10.00%,80,379,1,17.40%,82.40%,0.20%,16,19,417,4.60% +144988,860,4015,State-funded secondary,535,278,257,52.00%,48.00%,12,2.20%,69,12.90%,6,529,0,1.10%,98.90%,0.00%,161,168,490,34.30% +144989,860,2029,State-funded primary,184,90,94,48.90%,51.10%,6,3.30%,27,14.70%,6,178,0,3.30%,96.70%,0.00%,55,57,184,31.00% +144990,394,4002,State-funded secondary,578,295,283,51.00%,49.00%,14,2.40%,77,13.30%,245,327,6,42.40%,56.60%,1.00%,228,238,578,41.20% +144991,840,4008,State-funded secondary,387,194,193,50.10%,49.90%,12,3.10%,82,21.20%,0,387,0,0.00%,100.00%,0.00%,100,110,387,28.40% +144994,936,2039,State-funded primary,371,188,183,50.70%,49.30%,32,8.60%,81,21.80%,173,198,0,46.60%,53.40%,0.00%,91,86,328,26.20% +144995,865,2035,State-funded primary,123,54,69,43.90%,56.10%,2,1.60%,35,28.50%,26,97,0,21.10%,78.90%,0.00%,17,18,107,16.80% +144998,885,2023,State-funded primary,222,119,103,53.60%,46.40%,3,1.40%,45,20.30%,74,148,0,33.30%,66.70%,0.00%,82,80,191,41.90% +144999,885,2024,State-funded primary,315,152,163,48.30%,51.70%,5,1.60%,76,24.10%,32,283,0,10.20%,89.80%,0.00%,114,121,315,38.40% +145000,885,2025,State-funded primary,157,71,86,45.20%,54.80%,3,1.90%,12,7.60%,7,150,0,4.50%,95.50%,0.00%,23,24,157,15.30% +145001,885,2026,State-funded primary,59,33,26,55.90%,44.10%,0,0.00%,8,13.60%,1,58,0,1.70%,98.30%,0.00%,12,12,59,20.30% +145008,336,4007,State-funded secondary,1166,590,576,50.60%,49.40%,24,2.10%,188,16.10%,151,1015,0,13.00%,87.00%,0.00%,590,582,1085,53.60% +145010,882,2004,State-funded primary,458,225,233,49.10%,50.90%,9,2.00%,75,16.40%,177,281,0,38.60%,61.40%,0.00%,146,151,410,36.80% +145011,303,2071,State-funded primary,366,175,191,47.80%,52.20%,16,4.40%,69,18.90%,95,271,0,26.00%,74.00%,0.00%,150,159,340,46.80% +145012,886,2087,State-funded primary,228,115,113,50.40%,49.60%,3,1.30%,18,7.90%,27,201,0,11.80%,88.20%,0.00%,57,60,190,31.60% +145013,886,2090,State-funded primary,325,169,156,52.00%,48.00%,10,3.10%,88,27.10%,39,286,0,12.00%,88.00%,0.00%,188,188,277,67.90% +145014,886,2092,State-funded primary,385,170,215,44.20%,55.80%,9,2.30%,27,7.00%,96,289,0,24.90%,75.10%,0.00%,126,127,354,35.90% +145015,845,2023,State-funded primary,193,92,101,47.70%,52.30%,3,1.60%,30,15.50%,30,163,0,15.50%,84.50%,0.00%,68,69,193,35.80% +145016,845,2024,State-funded primary,97,47,50,48.50%,51.50%,2,2.10%,26,26.80%,14,83,0,14.40%,85.60%,0.00%,57,59,97,60.80% +145017,372,2030,State-funded primary,452,239,213,52.90%,47.10%,6,1.30%,105,23.20%,15,437,0,3.30%,96.70%,0.00%,141,148,409,36.20% +145018,892,2018,State-funded primary,330,151,179,45.80%,54.20%,2,0.60%,48,14.50%,163,167,0,49.40%,50.60%,0.00%,153,160,306,52.30% +145019,937,4012,State-funded secondary,705,358,347,50.80%,49.20%,13,1.80%,107,15.20%,8,697,0,1.10%,98.90%,0.00%,137,153,705,21.70% +145020,881,2165,State-funded primary,230,109,121,47.40%,52.60%,6,2.60%,51,22.20%,26,204,0,11.30%,88.70%,0.00%,84,112,230,48.70% +145021,802,2007,State-funded primary,89,53,36,59.60%,40.40%,3,3.40%,16,18.00%,3,86,0,3.40%,96.60%,0.00%,13,13,89,14.60% +145026,815,2383,State-funded primary,205,102,103,49.80%,50.20%,4,2.00%,25,12.20%,34,171,0,16.60%,83.40%,0.00%,36,37,205,18.00% +145028,926,2181,State-funded primary,241,122,119,50.60%,49.40%,7,2.90%,66,27.40%,79,162,0,32.80%,67.20%,0.00%,38,43,241,17.80% +145029,926,2182,State-funded primary,317,160,157,50.50%,49.50%,9,2.80%,54,17.00%,199,118,0,62.80%,37.20%,0.00%,96,98,294,33.30% +145030,212,2877,State-funded primary,190,100,90,52.60%,47.40%,16,8.40%,49,25.80%,133,57,0,70.00%,30.00%,0.00%,108,95,164,57.90% +145031,935,2210,State-funded primary,222,103,119,46.40%,53.60%,1,0.50%,25,11.30%,32,190,0,14.40%,85.60%,0.00%,14,14,177,7.90% +145032,825,3063,State-funded primary,79,39,40,49.40%,50.60%,2,2.50%,10,12.70%,5,74,0,6.30%,93.70%,0.00%,21,20,71,28.20% +145033,825,3034,State-funded primary,216,101,115,46.80%,53.20%,4,1.90%,15,6.90%,18,196,2,8.30%,90.70%,0.90%,18,18,216,8.30% +145034,873,4010,State-funded secondary,457,218,239,47.70%,52.30%,21,4.60%,52,11.40%,161,296,0,35.20%,64.80%,0.00%,159,173,457,37.90% +145035,895,2168,State-funded primary,217,108,109,49.80%,50.20%,7,3.20%,22,10.10%,9,208,0,4.10%,95.90%,0.00%,16,16,217,7.40% +145036,895,2173,State-funded primary,243,115,128,47.30%,52.70%,17,7.00%,19,7.80%,1,242,0,0.40%,99.60%,0.00%,23,23,212,10.80% +145040,840,2226,State-funded primary,162,72,90,44.40%,55.60%,2,1.20%,33,20.40%,2,160,0,1.20%,98.80%,0.00%,107,108,162,66.70% +145041,312,2051,State-funded primary,664,359,305,54.10%,45.90%,14,2.10%,83,12.50%,440,223,1,66.30%,33.60%,0.20%,158,152,614,24.80% +145042,887,2401,State-funded primary,297,142,155,47.80%,52.20%,0,0.00%,32,10.80%,7,265,25,2.40%,89.20%,8.40%,94,84,243,34.60% +145043,826,2004,State-funded primary,534,255,279,47.80%,52.20%,3,0.60%,91,17.00%,335,199,0,62.70%,37.30%,0.00%,165,172,504,34.10% +145044,317,2024,State-funded primary,388,181,207,46.60%,53.40%,15,3.90%,49,12.60%,324,60,4,83.50%,15.50%,1.00%,92,93,388,24.00% +145045,317,2070,State-funded primary,670,325,345,48.50%,51.50%,18,2.70%,116,17.30%,299,327,44,44.60%,48.80%,6.60%,126,132,623,21.20% +145046,807,2340,State-funded primary,211,104,107,49.30%,50.70%,1,0.50%,25,11.80%,5,206,0,2.40%,97.60%,0.00%,62,65,177,36.70% +145047,860,4060,State-funded secondary,492,229,263,46.50%,53.50%,9,1.80%,48,9.80%,9,482,1,1.80%,98.00%,0.20%,90,105,492,21.30% +145048,860,2305,State-funded primary,115,62,53,53.90%,46.10%,0,0.00%,9,7.80%,0,115,0,0.00%,100.00%,0.00%,18,21,115,18.30% +145049,881,2166,State-funded primary,180,86,94,47.80%,52.20%,5,2.80%,27,15.00%,19,161,0,10.60%,89.40%,0.00%,64,66,180,36.70% +145050,881,4023,State-funded secondary,1015,528,487,52.00%,48.00%,11,1.10%,106,10.40%,47,941,27,4.60%,92.70%,2.70%,154,170,822,20.70% +145051,874,4006,State-funded secondary,1559,833,726,53.40%,46.60%,14,0.90%,203,13.00%,834,715,10,53.50%,45.90%,0.60%,638,597,1246,47.90% +145052,925,4041,State-funded secondary,517,257,260,49.70%,50.30%,35,6.80%,74,14.30%,20,497,0,3.90%,96.10%,0.00%,117,129,517,25.00% +145053,860,2030,State-funded primary,142,69,73,48.60%,51.40%,2,1.40%,18,12.70%,4,138,0,2.80%,97.20%,0.00%,52,52,142,36.60% +145054,356,2011,State-funded primary,257,128,129,49.80%,50.20%,13,5.10%,37,14.40%,27,230,0,10.50%,89.50%,0.00%,102,95,217,43.80% +145055,935,4048,State-funded secondary,872,431,441,49.40%,50.60%,23,2.60%,73,8.40%,37,833,2,4.20%,95.50%,0.20%,168,193,872,22.10% +145058,803,7002,State-funded special school,91,18,73,19.80%,80.20%,91,100.00%,0,0.00%,1,90,0,1.10%,98.90%,0.00%,25,26,91,28.60% +145059,336,6005,Independent school,25,5,20,20.00%,80.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145060,212,2011,State-funded primary,176,79,97,44.90%,55.10%,18,10.20%,30,17.00%,105,71,0,59.70%,40.30%,0.00%,111,105,154,68.20% +145061,881,4024,State-funded secondary,1133,595,538,52.50%,47.50%,19,1.70%,161,14.20%,42,1090,1,3.70%,96.20%,0.10%,395,422,1075,39.30% +145063,826,4004,State-funded secondary,931,453,478,48.70%,51.30%,19,2.00%,119,12.80%,196,733,2,21.10%,78.70%,0.20%,214,249,931,26.70% +145064,886,6145,Independent school,9,4,5,44.40%,55.60%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145068,852,2009,State-funded primary,491,243,248,49.50%,50.50%,13,2.60%,54,11.00%,64,424,3,13.00%,86.40%,0.60%,285,290,491,59.10% +145069,825,2205,State-funded primary,222,117,105,52.70%,47.30%,10,4.50%,39,17.60%,75,147,0,33.80%,66.20%,0.00%,57,58,222,26.10% +145070,800,3088,State-funded primary,174,81,93,46.60%,53.40%,3,1.70%,24,13.80%,2,172,0,1.10%,98.90%,0.00%,9,9,174,5.20% +145071,303,2063,State-funded primary,196,93,103,47.40%,52.60%,7,3.60%,19,9.70%,60,135,1,30.60%,68.90%,0.50%,81,84,187,44.90% +145072,380,3028,State-funded primary,237,116,121,48.90%,51.10%,1,0.40%,7,3.00%,9,228,0,3.80%,96.20%,0.00%,14,14,210,6.70% +145073,305,3508,State-funded primary,201,100,101,49.80%,50.20%,9,4.50%,27,13.40%,62,139,0,30.80%,69.20%,0.00%,77,77,201,38.30% +145074,896,3180,State-funded primary,417,200,217,48.00%,52.00%,9,2.20%,38,9.10%,20,397,0,4.80%,95.20%,0.00%,37,38,417,9.10% +145075,896,3155,State-funded primary,168,78,90,46.40%,53.60%,1,0.60%,14,8.30%,6,162,0,3.60%,96.40%,0.00%,24,24,168,14.30% +145076,896,3162,State-funded primary,59,27,32,45.80%,54.20%,3,5.10%,4,6.80%,1,58,0,1.70%,98.30%,0.00%,10,10,59,16.90% +145077,908,2226,State-funded primary,78,42,36,53.80%,46.20%,0,0.00%,5,6.40%,0,72,6,0.00%,92.30%,7.70%,10,10,78,12.80% +145078,908,2209,State-funded primary,219,103,116,47.00%,53.00%,3,1.40%,30,13.70%,5,214,0,2.30%,97.70%,0.00%,51,53,198,26.80% +145079,371,2166,State-funded primary,250,114,136,45.60%,54.40%,3,1.20%,33,13.20%,115,134,1,46.00%,53.60%,0.40%,99,97,234,41.50% +145080,371,2198,State-funded primary,404,203,201,50.20%,49.80%,10,2.50%,52,12.90%,34,370,0,8.40%,91.60%,0.00%,96,100,404,24.80% +145081,886,3059,State-funded primary,128,67,61,52.30%,47.70%,2,1.60%,20,15.60%,3,125,0,2.30%,97.70%,0.00%,20,21,128,16.40% +145082,888,4167,State-funded secondary,650,325,325,50.00%,50.00%,21,3.20%,78,12.00%,14,636,0,2.20%,97.80%,0.00%,158,174,650,26.80% +145083,855,2035,State-funded primary,373,171,202,45.80%,54.20%,39,10.50%,35,9.40%,20,351,2,5.40%,94.10%,0.50%,62,63,373,16.90% +145084,855,2033,State-funded primary,93,44,49,47.30%,52.70%,1,1.10%,10,10.80%,1,92,0,1.10%,98.90%,0.00%,21,22,93,23.70% +145086,341,3020,State-funded primary,484,239,245,49.40%,50.60%,3,0.60%,78,16.10%,112,370,2,23.10%,76.40%,0.40%,188,189,400,47.30% +145087,316,2059,State-funded primary,572,286,286,50.00%,50.00%,16,2.80%,62,10.80%,285,284,3,49.80%,49.70%,0.50%,237,248,572,43.40% +145088,316,2017,State-funded primary,450,206,244,45.80%,54.20%,12,2.70%,58,12.90%,374,73,3,83.10%,16.20%,0.70%,150,152,406,37.40% +145089,926,4056,State-funded secondary,582,269,313,46.20%,53.80%,20,3.40%,114,19.60%,19,563,0,3.30%,96.70%,0.00%,140,152,582,26.10% +145090,815,4076,State-funded secondary,1253,599,654,47.80%,52.20%,16,1.30%,185,14.80%,31,1221,1,2.50%,97.40%,0.10%,177,178,1060,16.80% +145091,941,3006,State-funded primary,101,48,53,47.50%,52.50%,2,2.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,8,9,101,8.90% +145092,891,2302,State-funded primary,235,113,122,48.10%,51.90%,0,0.00%,22,9.40%,27,208,0,11.50%,88.50%,0.00%,61,61,174,35.10% +145093,891,2227,State-funded primary,209,101,108,48.30%,51.70%,1,0.50%,26,12.40%,19,190,0,9.10%,90.90%,0.00%,64,60,171,35.10% +145094,931,2056,State-funded primary,491,225,266,45.80%,54.20%,14,2.90%,97,19.80%,133,358,0,27.10%,72.90%,0.00%,146,151,467,32.30% +145095,372,2104,State-funded primary,157,80,77,51.00%,49.00%,3,1.90%,22,14.00%,3,154,0,1.90%,98.10%,0.00%,28,28,157,17.80% +145096,343,3341,State-funded primary,240,137,103,57.10%,42.90%,0,0.00%,15,6.30%,2,238,0,0.80%,99.20%,0.00%,21,21,212,9.90% +145097,860,2296,State-funded primary,661,316,345,47.80%,52.20%,14,2.10%,66,10.00%,35,603,23,5.30%,91.20%,3.50%,97,98,619,15.80% +145098,860,2236,State-funded primary,102,48,54,47.10%,52.90%,1,1.00%,11,10.80%,2,99,1,2.00%,97.10%,1.00%,10,10,87,11.50% +145099,860,3501,State-funded primary,456,216,240,47.40%,52.60%,13,2.90%,66,14.50%,94,362,0,20.60%,79.40%,0.00%,87,87,422,20.60% +145100,860,2422,State-funded primary,364,175,189,48.10%,51.90%,4,1.10%,19,5.20%,14,350,0,3.80%,96.20%,0.00%,39,40,364,11.00% +145101,935,1107,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +145102,936,3458,State-funded primary,424,210,214,49.50%,50.50%,16,3.80%,52,12.30%,82,342,0,19.30%,80.70%,0.00%,27,32,424,7.50% +145103,880,3619,State-funded primary,205,92,113,44.90%,55.10%,9,4.40%,21,10.20%,3,202,0,1.50%,98.50%,0.00%,51,51,205,24.90% +145104,880,3600,State-funded primary,222,121,101,54.50%,45.50%,8,3.60%,23,10.40%,4,218,0,1.80%,98.20%,0.00%,27,27,222,12.20% +145106,320,4062,State-funded secondary,1024,476,548,46.50%,53.50%,38,3.70%,88,8.60%,561,451,12,54.80%,44.00%,1.20%,330,367,977,37.60% +145107,359,3007,State-funded primary,252,126,126,50.00%,50.00%,10,4.00%,56,22.20%,72,180,0,28.60%,71.40%,0.00%,116,114,206,55.30% +145108,908,4004,State-funded secondary,898,431,467,48.00%,52.00%,23,2.60%,160,17.80%,17,878,3,1.90%,97.80%,0.30%,252,278,898,31.00% +145109,830,4008,State-funded secondary,796,419,377,52.60%,47.40%,18,2.30%,143,18.00%,18,777,1,2.30%,97.60%,0.10%,234,253,796,31.80% +145110,881,2167,State-funded primary,426,195,231,45.80%,54.20%,22,5.20%,51,12.00%,16,410,0,3.80%,96.20%,0.00%,74,75,384,19.50% +145111,311,2032,State-funded primary,412,194,218,47.10%,52.90%,13,3.20%,26,6.30%,148,264,0,35.90%,64.10%,0.00%,117,120,412,29.10% +145112,887,2020,State-funded primary,395,208,187,52.70%,47.30%,4,1.00%,71,18.00%,22,372,1,5.60%,94.20%,0.30%,87,88,395,22.30% +145113,316,4012,State-funded secondary,1417,692,725,48.80%,51.20%,28,2.00%,113,8.00%,812,584,21,57.30%,41.20%,1.50%,672,754,1417,53.20% +145114,336,4008,State-funded secondary,998,504,494,50.50%,49.50%,25,2.50%,203,20.30%,18,980,0,1.80%,98.20%,0.00%,287,302,888,34.00% +145115,886,2093,State-funded primary,205,95,110,46.30%,53.70%,12,5.90%,25,12.20%,30,175,0,14.60%,85.40%,0.00%,42,45,176,25.60% +145116,845,6063,Independent school,4,0,4,0.00%,100.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145117,886,2096,State-funded primary,504,247,257,49.00%,51.00%,12,2.40%,71,14.10%,79,425,0,15.70%,84.30%,0.00%,124,129,504,25.60% +145118,935,2211,State-funded primary,325,166,159,51.10%,48.90%,15,4.60%,37,11.40%,97,228,0,29.80%,70.20%,0.00%,147,150,302,49.70% +145119,838,4007,State-funded secondary,787,380,407,48.30%,51.70%,39,5.00%,236,30.00%,10,777,0,1.30%,98.70%,0.00%,271,275,787,34.90% +145120,330,4029,State-funded secondary,496,0,496,0.00%,100.00%,4,0.80%,40,8.10%,228,266,2,46.00%,53.60%,0.40%,207,255,496,51.40% +145121,312,4021,State-funded secondary,831,441,390,53.10%,46.90%,28,3.40%,114,13.70%,279,532,20,33.60%,64.00%,2.40%,293,345,742,46.50% +145122,318,2029,State-funded primary,289,132,157,45.70%,54.30%,7,2.40%,33,11.40%,105,184,0,36.30%,63.70%,0.00%,54,55,289,19.00% +145123,916,2038,State-funded primary,158,78,80,49.40%,50.60%,5,3.20%,38,24.10%,4,154,0,2.50%,97.50%,0.00%,48,51,158,32.30% +145124,803,4008,State-funded secondary,765,394,370,51.50%,48.40%,16,2.10%,134,17.50%,205,560,0,26.80%,73.20%,0.00%,178,201,746,26.90% +145125,850,4014,State-funded secondary,655,308,347,47.00%,53.00%,16,2.40%,101,15.40%,79,573,3,12.10%,87.50%,0.50%,205,216,655,33.00% +145126,213,4004,State-funded secondary,1383,680,703,49.20%,50.80%,28,2.00%,130,9.40%,795,511,77,57.50%,36.90%,5.60%,683,574,1029,55.80% +145127,841,6008,Independent school,23,0,23,0.00%,100.00%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145129,892,6024,Independent school,17,1,16,5.90%,94.10%,2,11.80%,8,47.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145130,210,2008,State-funded primary,302,160,142,53.00%,47.00%,6,2.00%,56,18.50%,92,209,1,30.50%,69.20%,0.30%,140,124,263,47.10% +145131,306,2115,State-funded primary,295,116,179,39.30%,60.70%,44,14.90%,88,29.80%,97,198,0,32.90%,67.10%,0.00%,178,161,251,64.10% +145132,831,4008,State-funded secondary,961,471,490,49.00%,51.00%,17,1.80%,153,15.90%,540,413,8,56.20%,43.00%,0.80%,442,497,961,51.70% +145133,356,4001,State-funded secondary,1035,534,501,51.60%,48.40%,25,2.40%,167,16.10%,56,975,4,5.40%,94.20%,0.40%,409,465,1035,44.90% +145134,336,4009,State-funded secondary,867,442,425,51.00%,49.00%,15,1.70%,114,13.10%,259,600,8,29.90%,69.20%,0.90%,504,481,765,62.90% +145135,803,4009,State-funded secondary,779,405,374,52.00%,48.00%,28,3.60%,93,11.90%,73,705,1,9.40%,90.50%,0.10%,164,171,711,24.10% +145136,806,2007,State-funded primary,323,152,171,47.10%,52.90%,27,8.40%,58,18.00%,10,313,0,3.10%,96.90%,0.00%,153,148,286,51.70% +145137,909,2017,State-funded primary,49,23,26,46.90%,53.10%,2,4.10%,7,14.30%,0,49,0,0.00%,100.00%,0.00%,16,17,45,37.80% +145138,909,2018,State-funded primary,150,82,68,54.70%,45.30%,1,0.70%,12,8.00%,3,147,0,2.00%,98.00%,0.00%,12,12,127,9.40% +145139,866,4003,State-funded secondary,942,434,508,46.10%,53.90%,46,4.90%,144,15.30%,71,867,4,7.50%,92.00%,0.40%,217,241,942,25.60% +145140,303,4003,State-funded secondary,1477,713,764,48.30%,51.70%,29,2.00%,179,12.10%,441,999,37,29.90%,67.60%,2.50%,523,584,1406,41.50% +145142,310,2006,State-funded primary,420,221,199,52.60%,47.40%,7,1.70%,19,4.50%,370,50,0,88.10%,11.90%,0.00%,6,7,420,1.70% +145145,892,2019,State-funded primary,443,216,227,48.80%,51.20%,9,2.00%,48,10.80%,107,336,0,24.20%,75.80%,0.00%,186,179,417,42.90% +145146,892,4009,State-funded secondary,781,378,403,48.40%,51.60%,15,1.90%,114,14.60%,202,579,0,25.90%,74.10%,0.00%,261,280,781,35.90% +145147,873,2053,State-funded primary,99,54,45,54.50%,45.50%,3,3.00%,8,8.10%,1,98,0,1.00%,99.00%,0.00%,29,30,99,30.30% +145155,866,4004,State-funded secondary,184,28,156,15.20%,84.80%,4,2.20%,66,35.90%,6,178,0,3.30%,96.70%,0.00%,42,41,133,30.80% +145157,877,4009,State-funded secondary,895,441,454,49.30%,50.70%,44,4.90%,116,13.00%,124,769,2,13.90%,85.90%,0.20%,226,246,895,27.50% +145158,855,4024,State-funded secondary,399,225,174,56.40%,43.60%,7,1.80%,33,8.30%,11,388,0,2.80%,97.20%,0.00%,19,0,0,0.00% +145159,926,6017,Independent school,14,6,8,42.90%,57.10%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145160,341,6025,Independent school,36,14,22,38.90%,61.10%,2,5.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145164,212,6003,Independent school,62,14,48,22.60%,77.40%,62,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145166,865,2036,State-funded primary,271,127,144,46.90%,53.10%,6,2.20%,32,11.80%,43,228,0,15.90%,84.10%,0.00%,62,63,271,23.20% +145169,936,6012,Independent school,4,2,2,50.00%,50.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145170,354,6038,Independent school,4,0,4,0.00%,100.00%,1,25.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145173,380,4061,State-funded secondary,1237,587,650,47.50%,52.50%,46,3.70%,218,17.60%,117,1113,7,9.50%,90.00%,0.60%,570,626,1219,51.40% +145176,860,4016,State-funded secondary,444,221,223,49.80%,50.20%,10,2.30%,49,11.00%,5,439,0,1.10%,98.90%,0.00%,77,81,444,18.20% +145177,811,2011,State-funded primary,352,174,178,49.40%,50.60%,8,2.30%,41,11.60%,31,319,2,8.80%,90.60%,0.60%,75,78,337,23.10% +145178,383,2021,State-funded primary,625,295,330,47.20%,52.80%,36,5.80%,147,23.50%,284,334,7,45.40%,53.40%,1.10%,353,350,581,60.20% +145179,331,4008,State-funded secondary,1035,493,542,47.60%,52.40%,14,1.40%,223,21.50%,414,621,0,40.00%,60.00%,0.00%,296,300,903,33.20% +145180,380,2037,State-funded primary,407,203,204,49.90%,50.10%,7,1.70%,42,10.30%,64,343,0,15.70%,84.30%,0.00%,112,118,367,32.20% +145181,878,6071,Independent school,53,15,38,28.30%,71.70%,52,98.10%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145182,341,6011,Independent school,78,14,64,17.90%,82.10%,78,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145184,929,6004,Independent school,20,5,15,25.00%,75.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145187,359,6002,Independent school,4,1,3,25.00%,75.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145188,807,4010,State-funded secondary,597,310,287,51.90%,48.10%,18,3.00%,112,18.80%,24,558,15,4.00%,93.50%,2.50%,291,315,597,52.80% +145189,811,2012,State-funded primary,28,14,14,50.00%,50.00%,0,0.00%,6,21.40%,0,28,0,0.00%,100.00%,0.00%,13,12,24,50.00% +145190,811,2013,State-funded primary,224,104,120,46.40%,53.60%,8,3.60%,22,9.80%,6,218,0,2.70%,97.30%,0.00%,54,47,194,24.20% +145191,373,4012,State-funded secondary,1711,798,913,46.60%,53.40%,21,1.20%,313,18.30%,69,1638,4,4.00%,95.70%,0.20%,455,507,1711,29.60% +145192,311,6002,Independent school,47,17,30,36.20%,63.80%,11,23.40%,3,6.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145194,888,6074,Independent school,2,0,2,0.00%,100.00%,1,50.00%,1,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145195,318,6010,Independent school,90,2,88,2.20%,97.80%,3,3.30%,17,18.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145196,926,4029,State-funded secondary,1209,587,622,48.60%,51.40%,31,2.60%,165,13.60%,65,1144,0,5.40%,94.60%,0.00%,290,317,1116,28.40% +145197,306,4011,State-funded secondary,243,108,135,44.40%,55.60%,8,3.30%,56,23.00%,67,174,2,27.60%,71.60%,0.80%,67,0,0,0.00% +145198,865,7000,State-funded special school,231,21,210,9.10%,90.90%,231,100.00%,0,0.00%,4,227,0,1.70%,98.30%,0.00%,101,112,230,48.70% +145199,933,2001,State-funded primary,51,25,26,49.00%,51.00%,0,0.00%,6,11.80%,2,49,0,3.90%,96.10%,0.00%,2,2,42,4.80% +145200,937,7023,State-funded special school,208,58,150,27.90%,72.10%,202,97.10%,6,2.90%,25,181,2,12.00%,87.00%,1.00%,85,72,171,42.10% +145201,308,2010,State-funded primary,342,162,180,47.40%,52.60%,10,2.90%,59,17.30%,253,89,0,74.00%,26.00%,0.00%,157,159,342,46.50% +145202,893,2157,State-funded primary,233,113,120,48.50%,51.50%,3,1.30%,15,6.40%,1,222,10,0.40%,95.30%,4.30%,11,11,211,5.20% +145203,855,3332,State-funded primary,207,101,106,48.80%,51.20%,6,2.90%,13,6.30%,14,193,0,6.80%,93.20%,0.00%,11,12,207,5.80% +145204,305,2004,State-funded primary,486,254,232,52.30%,47.70%,29,6.00%,45,9.30%,60,426,0,12.30%,87.70%,0.00%,69,71,452,15.70% +145205,936,2316,State-funded primary,272,137,135,50.40%,49.60%,26,9.60%,56,20.60%,42,229,1,15.40%,84.20%,0.40%,40,40,272,14.70% +145206,941,2219,State-funded primary,427,207,220,48.50%,51.50%,52,12.20%,44,10.30%,125,302,0,29.30%,70.70%,0.00%,52,52,427,12.20% +145207,308,2076,State-funded primary,801,397,404,49.60%,50.40%,15,1.90%,51,6.40%,206,595,0,25.70%,74.30%,0.00%,130,138,762,18.10% +145208,303,2006,State-funded primary,420,215,205,51.20%,48.80%,15,3.60%,48,11.40%,149,270,1,35.50%,64.30%,0.20%,100,100,397,25.20% +145209,926,2084,State-funded primary,113,54,59,47.80%,52.20%,0,0.00%,24,21.20%,3,110,0,2.70%,97.30%,0.00%,14,14,99,14.10% +145210,203,2266,State-funded primary,276,130,146,47.10%,52.90%,16,5.80%,54,19.60%,55,212,9,19.90%,76.80%,3.30%,83,82,225,36.40% +145211,908,4171,State-funded secondary,510,250,259,49.00%,50.80%,22,4.30%,77,15.10%,24,486,0,4.70%,95.30%,0.00%,143,152,510,29.80% +145212,839,2168,State-funded primary,628,320,308,51.00%,49.00%,10,1.60%,104,16.60%,72,556,0,11.50%,88.50%,0.00%,157,165,628,26.30% +145213,936,2210,State-funded primary,337,176,161,52.20%,47.80%,3,0.90%,18,5.30%,35,291,11,10.40%,86.40%,3.30%,7,7,301,2.30% +145214,331,3302,State-funded primary,222,119,103,53.60%,46.40%,6,2.70%,33,14.90%,36,186,0,16.20%,83.80%,0.00%,110,109,201,54.20% +145215,203,2902,State-funded primary,230,114,116,49.60%,50.40%,5,2.20%,33,14.30%,112,118,0,48.70%,51.30%,0.00%,74,72,201,35.80% +145216,825,3015,State-funded primary,101,54,47,53.50%,46.50%,0,0.00%,12,11.90%,5,94,2,5.00%,93.10%,2.00%,10,10,101,9.90% +145217,936,4157,State-funded secondary,1255,595,660,47.40%,52.60%,39,3.10%,194,15.50%,69,1033,153,5.50%,82.30%,12.20%,225,254,1255,20.20% +145218,860,2167,State-funded primary,625,314,311,50.20%,49.80%,6,1.00%,47,7.50%,114,502,9,18.20%,80.30%,1.40%,83,85,625,13.60% +145219,822,2186,State-funded primary,367,194,173,52.90%,47.10%,10,2.70%,46,12.50%,139,227,1,37.90%,61.90%,0.30%,124,135,367,36.80% +145220,380,5208,State-funded primary,445,212,233,47.60%,52.40%,8,1.80%,49,11.00%,110,335,0,24.70%,75.30%,0.00%,106,107,407,26.30% +145221,893,2195,State-funded primary,291,132,159,45.40%,54.60%,4,1.40%,56,19.20%,5,276,10,1.70%,94.80%,3.40%,44,49,279,17.60% +145222,852,2002,State-funded primary,371,182,189,49.10%,50.90%,14,3.80%,72,19.40%,52,319,0,14.00%,86.00%,0.00%,234,234,371,63.10% +145223,808,2358,State-funded primary,474,211,263,44.50%,55.50%,9,1.90%,31,6.50%,33,441,0,7.00%,93.00%,0.00%,67,69,434,15.90% +145224,937,7047,State-funded special school,217,60,157,27.60%,72.40%,216,99.50%,1,0.50%,9,208,0,4.10%,95.90%,0.00%,99,87,190,45.80% +145225,380,3035,State-funded primary,113,42,71,37.20%,62.80%,1,0.90%,13,11.50%,6,107,0,5.30%,94.70%,0.00%,18,19,102,18.60% +145226,936,2953,State-funded primary,433,211,222,48.70%,51.30%,13,3.00%,57,13.20%,29,403,1,6.70%,93.10%,0.20%,61,62,433,14.30% +145231,887,6011,Independent school,47,8,39,17.00%,83.00%,47,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145232,308,7001,State-funded special school,67,15,52,22.40%,77.60%,66,98.50%,1,1.50%,6,61,0,9.00%,91.00%,0.00%,49,53,67,79.10% +145233,830,2034,State-funded primary,277,134,143,48.40%,51.60%,4,1.40%,45,16.20%,7,270,0,2.50%,97.50%,0.00%,111,119,277,43.00% +145234,935,2212,State-funded primary,138,70,68,50.70%,49.30%,0,0.00%,26,18.80%,2,136,0,1.40%,98.60%,0.00%,25,28,127,22.00% +145235,316,2014,State-funded primary,617,304,313,49.30%,50.70%,15,2.40%,42,6.80%,534,83,0,86.50%,13.50%,0.00%,159,166,554,30.00% +145236,382,2053,State-funded primary,258,122,136,47.30%,52.70%,8,3.10%,19,7.40%,56,195,7,21.70%,75.60%,2.70%,67,67,258,26.00% +145237,935,2213,State-funded primary,202,110,92,54.50%,45.50%,3,1.50%,22,10.90%,6,196,0,3.00%,97.00%,0.00%,19,20,202,9.90% +145239,392,6001,Independent school,20,9,11,45.00%,55.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145241,815,6044,Independent school,6,6,0,100.00%,0.00%,4,66.70%,2,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145242,888,6075,Independent school,12,3,9,25.00%,75.00%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145244,867,4032,State-funded secondary,1497,712,785,47.60%,52.40%,43,2.90%,91,6.10%,95,1399,3,6.30%,93.50%,0.20%,67,63,1109,5.70% +145245,825,3040,State-funded primary,420,209,211,49.80%,50.20%,7,1.70%,35,8.30%,32,388,0,7.60%,92.40%,0.00%,22,24,380,6.30% +145246,873,3326,State-funded primary,112,55,57,49.10%,50.90%,0,0.00%,12,10.70%,9,96,7,8.00%,85.70%,6.30%,14,14,112,12.50% +145248,895,2728,State-funded primary,442,205,237,46.40%,53.60%,28,6.30%,47,10.60%,41,401,0,9.30%,90.70%,0.00%,66,58,383,15.10% +145250,830,2036,State-funded primary,298,130,168,43.60%,56.40%,13,4.40%,42,14.10%,19,264,15,6.40%,88.60%,5.00%,134,149,273,54.60% +145251,830,2205,State-funded primary,94,55,39,58.50%,41.50%,1,1.10%,11,11.70%,0,94,0,0.00%,100.00%,0.00%,23,24,94,25.50% +145252,878,3317,State-funded primary,105,44,61,41.90%,58.10%,3,2.90%,9,8.60%,1,104,0,1.00%,99.00%,0.00%,15,15,88,17.00% +145253,840,4150,State-funded secondary,785,376,409,47.90%,52.10%,16,2.00%,158,20.10%,16,764,5,2.00%,97.30%,0.60%,318,343,785,43.70% +145254,845,7032,State-funded special school,120,49,71,40.80%,59.20%,120,100.00%,0,0.00%,11,109,0,9.20%,90.80%,0.00%,45,22,64,34.40% +145255,919,2436,State-funded primary,457,209,248,45.70%,54.30%,4,0.90%,27,5.90%,21,434,2,4.60%,95.00%,0.40%,35,37,412,9.00% +145256,919,2372,State-funded primary,201,95,106,47.30%,52.70%,3,1.50%,24,11.90%,30,171,0,14.90%,85.10%,0.00%,17,18,201,9.00% +145257,919,2296,State-funded primary,178,87,91,48.90%,51.10%,9,5.10%,25,14.00%,35,143,0,19.70%,80.30%,0.00%,55,55,165,33.30% +145260,802,2261,State-funded primary,239,106,133,44.40%,55.60%,2,0.80%,33,13.80%,13,226,0,5.40%,94.60%,0.00%,18,18,239,7.50% +145261,802,2264,State-funded primary,157,76,81,48.40%,51.60%,3,1.90%,5,3.20%,2,155,0,1.30%,98.70%,0.00%,5,5,157,3.20% +145262,802,2268,State-funded primary,153,72,81,47.10%,52.90%,1,0.70%,18,11.80%,14,139,0,9.20%,90.80%,0.00%,15,15,153,9.80% +145263,802,3111,State-funded primary,338,152,186,45.00%,55.00%,8,2.40%,29,8.60%,7,331,0,2.10%,97.90%,0.00%,43,45,338,13.30% +145264,802,3095,State-funded primary,213,110,103,51.60%,48.40%,3,1.40%,11,5.20%,5,208,0,2.30%,97.70%,0.00%,2,4,197,2.00% +145265,802,3075,State-funded primary,240,122,118,50.80%,49.20%,2,0.80%,14,5.80%,3,236,1,1.30%,98.30%,0.40%,4,5,240,2.10% +145266,874,2330,State-funded primary,379,197,182,52.00%,48.00%,7,1.80%,50,13.20%,182,197,0,48.00%,52.00%,0.00%,139,142,379,37.50% +145267,874,2297,State-funded primary,417,204,213,48.90%,51.10%,11,2.60%,28,6.70%,285,132,0,68.30%,31.70%,0.00%,36,37,417,8.90% +145268,874,2013,State-funded primary,396,198,198,50.00%,50.00%,8,2.00%,51,12.90%,102,294,0,25.80%,74.20%,0.00%,160,162,396,40.90% +145269,874,2324,State-funded primary,315,149,166,47.30%,52.70%,11,3.50%,32,10.20%,8,307,0,2.50%,97.50%,0.00%,49,52,315,16.50% +145270,874,2233,State-funded primary,132,65,67,49.20%,50.80%,1,0.80%,8,6.10%,2,130,0,1.50%,98.50%,0.00%,7,8,132,6.10% +145271,874,5405,State-funded secondary,1870,929,941,49.70%,50.30%,10,0.50%,97,5.20%,887,979,4,47.40%,52.40%,0.20%,519,546,1626,33.60% +145272,874,2451,State-funded primary,411,213,198,51.80%,48.20%,8,1.90%,48,11.70%,41,370,0,10.00%,90.00%,0.00%,74,74,411,18.00% +145273,372,3001,State-funded primary,233,122,111,52.40%,47.60%,7,3.00%,50,21.50%,2,231,0,0.90%,99.10%,0.00%,61,64,208,30.80% +145274,373,4271,State-funded secondary,788,386,402,49.00%,51.00%,23,2.90%,108,13.70%,16,772,0,2.00%,98.00%,0.00%,222,251,788,31.90% +145275,893,3316,State-funded primary,115,65,50,56.50%,43.50%,2,1.70%,13,11.30%,2,113,0,1.70%,98.30%,0.00%,8,9,115,7.80% +145276,860,7036,State-funded special school,127,27,100,21.30%,78.70%,127,100.00%,0,0.00%,6,121,0,4.70%,95.30%,0.00%,61,63,127,49.60% +145277,935,2216,State-funded primary,221,98,123,44.30%,55.70%,3,1.40%,35,15.80%,5,203,13,2.30%,91.90%,5.90%,22,25,221,11.30% +145278,936,3062,State-funded primary,535,244,291,45.60%,54.40%,11,2.10%,68,12.70%,28,507,0,5.20%,94.80%,0.00%,61,62,535,11.60% +145279,936,2336,State-funded primary,621,325,296,52.30%,47.70%,16,2.60%,115,18.50%,256,365,0,41.20%,58.80%,0.00%,136,133,555,24.00% +145280,212,2107,State-funded primary,407,210,197,51.60%,48.40%,18,4.40%,48,11.80%,142,264,1,34.90%,64.90%,0.20%,177,171,371,46.10% +145281,872,2067,State-funded primary,367,184,183,50.10%,49.90%,7,1.90%,32,8.70%,25,342,0,6.80%,93.20%,0.00%,18,21,367,5.70% +145282,872,2062,State-funded primary,253,102,151,40.30%,59.70%,7,2.80%,16,6.30%,24,229,0,9.50%,90.50%,0.00%,13,13,253,5.10% +145283,872,2132,State-funded primary,157,87,70,55.40%,44.60%,1,0.60%,16,10.20%,7,150,0,4.50%,95.50%,0.00%,8,8,157,5.10% +145284,872,2163,State-funded primary,202,105,97,52.00%,48.00%,5,2.50%,19,9.40%,12,190,0,5.90%,94.10%,0.00%,9,9,202,4.50% +145285,872,3330,State-funded primary,135,62,73,45.90%,54.10%,4,3.00%,18,13.30%,53,82,0,39.30%,60.70%,0.00%,18,18,130,13.80% +145286,872,4048,State-funded secondary,1384,557,827,40.20%,59.80%,50,3.60%,179,12.90%,326,1058,0,23.60%,76.40%,0.00%,122,127,1133,11.20% +145287,806,2008,State-funded primary,352,170,182,48.30%,51.70%,6,1.70%,30,8.50%,15,335,2,4.30%,95.20%,0.60%,21,23,310,7.40% +145288,336,3025,State-funded primary,710,357,353,50.30%,49.70%,6,0.80%,62,8.70%,332,378,0,46.80%,53.20%,0.00%,319,319,622,51.30% +145289,359,6003,Independent school,45,11,34,24.40%,75.60%,44,97.80%,1,2.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145290,357,6005,Independent school,19,6,13,31.60%,68.40%,4,21.10%,15,78.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145292,909,6004,Independent school,98,52,46,53.10%,46.90%,0,0.00%,11,11.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145293,933,6008,Independent school,6,6,0,100.00%,0.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145295,309,6006,Independent school,4,2,2,50.00%,50.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145296,888,6079,Independent school,3,3,0,100.00%,0.00%,1,33.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145297,919,5425,State-funded secondary,603,317,286,52.60%,47.40%,27,4.50%,125,20.70%,118,484,1,19.60%,80.30%,0.20%,157,181,603,30.00% +145298,825,6048,Independent school,36,5,31,13.90%,86.10%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145299,926,2183,State-funded primary,26,15,11,57.70%,42.30%,0,0.00%,6,23.10%,1,25,0,3.80%,96.20%,0.00%,7,7,26,26.90% +145300,893,2010,State-funded primary,32,12,20,37.50%,62.50%,0,0.00%,8,25.00%,3,29,0,9.40%,90.60%,0.00%,6,6,32,18.80% +145301,926,2188,State-funded primary,250,105,145,42.00%,58.00%,3,1.20%,19,7.60%,21,229,0,8.40%,91.60%,0.00%,21,21,250,8.40% +145302,873,2055,State-funded primary,111,57,54,51.40%,48.60%,5,4.50%,16,14.40%,9,102,0,8.10%,91.90%,0.00%,40,43,111,38.70% +145303,380,2039,State-funded primary,246,131,115,53.30%,46.70%,22,8.90%,46,18.70%,20,225,1,8.10%,91.50%,0.40%,154,147,222,66.20% +145304,926,2189,State-funded primary,86,44,42,51.20%,48.80%,3,3.50%,16,18.60%,0,86,0,0.00%,100.00%,0.00%,18,19,86,22.10% +145305,332,2009,State-funded primary,610,325,285,53.30%,46.70%,25,4.10%,77,12.60%,88,521,1,14.40%,85.40%,0.20%,269,273,547,49.90% +145306,383,2022,State-funded primary,211,105,106,49.80%,50.20%,2,0.90%,23,10.90%,27,182,2,12.80%,86.30%,0.90%,95,89,186,47.80% +145307,926,2190,State-funded primary,170,73,97,42.90%,57.10%,5,2.90%,57,33.50%,56,114,0,32.90%,67.10%,0.00%,70,70,144,48.60% +145308,933,6009,Independent school,19,1,18,5.30%,94.70%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145313,210,4005,State-funded secondary,1028,456,572,44.40%,55.60%,28,2.70%,132,12.80%,419,600,9,40.80%,58.40%,0.90%,467,468,888,52.70% +145314,350,4003,State-funded secondary,1061,494,567,46.60%,53.40%,32,3.00%,304,28.70%,201,860,0,18.90%,81.10%,0.00%,544,578,1036,55.80% +145315,203,4007,State-funded secondary,876,374,502,42.70%,57.30%,28,3.20%,112,12.80%,393,464,19,44.90%,53.00%,2.20%,307,332,750,44.30% +145319,867,2065,State-funded primary,201,90,111,44.80%,55.20%,7,3.50%,20,10.00%,19,182,0,9.50%,90.50%,0.00%,11,11,201,5.50% +145320,801,2320,State-funded primary,195,101,94,51.80%,48.20%,24,12.30%,33,16.90%,81,114,0,41.50%,58.50%,0.00%,95,91,175,52.00% +145321,801,2005,State-funded primary,185,102,83,55.10%,44.90%,2,1.10%,34,18.40%,13,172,0,7.00%,93.00%,0.00%,52,52,185,28.10% +145322,825,4042,State-funded secondary,1065,504,561,47.30%,52.70%,45,4.20%,145,13.60%,57,1007,1,5.40%,94.60%,0.10%,95,95,893,10.60% +145323,825,3039,State-funded primary,100,56,44,56.00%,44.00%,3,3.00%,10,10.00%,9,91,0,9.00%,91.00%,0.00%,8,8,100,8.00% +145324,823,3346,State-funded primary,248,112,136,45.20%,54.80%,10,4.00%,31,12.50%,69,179,0,27.80%,72.20%,0.00%,51,53,197,26.90% +145325,823,3348,State-funded primary,215,112,103,52.10%,47.90%,3,1.40%,43,20.00%,80,135,0,37.20%,62.80%,0.00%,26,26,199,13.10% +145326,909,2100,State-funded primary,31,21,10,67.70%,32.30%,1,3.20%,2,6.50%,0,31,0,0.00%,100.00%,0.00%,4,4,30,13.30% +145327,831,4178,State-funded secondary,1680,874,806,52.00%,48.00%,42,2.50%,142,8.50%,575,1105,0,34.20%,65.80%,0.00%,433,442,1453,30.40% +145328,830,2192,State-funded primary,104,47,57,45.20%,54.80%,1,1.00%,8,7.70%,4,100,0,3.80%,96.20%,0.00%,37,37,104,35.60% +145329,830,2194,State-funded primary,50,29,21,58.00%,42.00%,1,2.00%,8,16.00%,0,50,0,0.00%,100.00%,0.00%,19,19,50,38.00% +145330,878,2601,State-funded primary,36,22,14,61.10%,38.90%,1,2.80%,3,8.30%,0,36,0,0.00%,100.00%,0.00%,2,2,33,6.10% +145331,878,2602,State-funded primary,82,44,38,53.70%,46.30%,6,7.30%,14,17.10%,2,80,0,2.40%,97.60%,0.00%,8,9,82,11.00% +145332,878,2613,State-funded primary,36,17,19,47.20%,52.80%,1,2.80%,5,13.90%,0,36,0,0.00%,100.00%,0.00%,1,1,36,2.80% +145333,878,2615,State-funded primary,195,94,101,48.20%,51.80%,8,4.10%,26,13.30%,7,188,0,3.60%,96.40%,0.00%,27,32,161,19.90% +145334,878,2616,State-funded primary,556,263,293,47.30%,52.70%,28,5.00%,86,15.50%,31,525,0,5.60%,94.40%,0.00%,145,142,507,28.00% +145335,878,2619,State-funded primary,216,125,91,57.90%,42.10%,4,1.90%,29,13.40%,0,216,0,0.00%,100.00%,0.00%,23,23,185,12.40% +145336,878,4182,State-funded secondary,1322,644,678,48.70%,51.30%,40,3.00%,132,10.00%,25,1297,0,1.90%,98.10%,0.00%,256,287,1141,25.20% +145337,878,4183,State-funded secondary,1306,680,626,52.10%,47.90%,38,2.90%,131,10.00%,49,1257,0,3.80%,96.20%,0.00%,209,238,1172,20.30% +145338,878,3151,State-funded primary,152,75,77,49.30%,50.70%,3,2.00%,18,11.80%,1,151,0,0.70%,99.30%,0.00%,12,14,131,10.70% +145339,878,3153,State-funded primary,49,26,23,53.10%,46.90%,2,4.10%,10,20.40%,0,49,0,0.00%,100.00%,0.00%,12,12,49,24.50% +145340,878,3157,State-funded primary,31,17,14,54.80%,45.20%,1,3.20%,3,9.70%,0,31,0,0.00%,100.00%,0.00%,5,5,31,16.10% +145341,878,3056,State-funded primary,16,4,12,25.00%,75.00%,0,0.00%,8,50.00%,1,15,0,6.30%,93.80%,0.00%,4,5,16,31.30% +145342,878,3057,State-funded primary,78,40,38,51.30%,48.70%,3,3.80%,14,17.90%,1,77,0,1.30%,98.70%,0.00%,10,10,62,16.10% +145343,878,4056,State-funded secondary,512,247,265,48.20%,51.80%,22,4.30%,94,18.40%,9,502,1,1.80%,98.00%,0.20%,139,156,512,30.50% +145344,878,2076,State-funded primary,63,38,25,60.30%,39.70%,2,3.20%,17,27.00%,2,61,0,3.20%,96.80%,0.00%,8,9,60,15.00% +145345,878,2088,State-funded primary,95,51,44,53.70%,46.30%,2,2.10%,7,7.40%,7,88,0,7.40%,92.60%,0.00%,11,11,95,11.60% +145346,878,2212,State-funded primary,19,11,8,57.90%,42.10%,0,0.00%,1,5.30%,0,19,0,0.00%,100.00%,0.00%,2,2,13,15.40% +145347,878,2418,State-funded primary,92,54,38,58.70%,41.30%,3,3.30%,3,3.30%,1,91,0,1.10%,98.90%,0.00%,4,3,72,4.20% +145348,307,4030,State-funded secondary,1493,728,765,48.80%,51.20%,32,2.10%,116,7.80%,1191,302,0,79.80%,20.20%,0.00%,408,403,1211,33.30% +145349,881,5262,State-funded primary,192,90,102,46.90%,53.10%,11,5.70%,27,14.10%,2,190,0,1.00%,99.00%,0.00%,40,40,192,20.80% +145350,919,2020,State-funded primary,399,197,202,49.40%,50.60%,14,3.50%,56,14.00%,217,182,0,54.40%,45.60%,0.00%,81,82,360,22.80% +145351,919,2156,State-funded primary,432,215,217,49.80%,50.20%,10,2.30%,44,10.20%,201,231,0,46.50%,53.50%,0.00%,92,95,395,24.10% +145352,919,2115,State-funded primary,442,198,244,44.80%,55.20%,10,2.30%,49,11.10%,247,195,0,55.90%,44.10%,0.00%,75,79,413,19.10% +145353,919,2432,State-funded primary,444,211,233,47.50%,52.50%,14,3.20%,59,13.30%,224,220,0,50.50%,49.50%,0.00%,71,73,406,18.00% +145355,886,2531,State-funded primary,229,117,112,51.10%,48.90%,2,0.90%,50,21.80%,46,183,0,20.10%,79.90%,0.00%,116,113,188,60.10% +145357,856,2366,State-funded primary,604,285,319,47.20%,52.80%,8,1.30%,60,9.90%,131,473,0,21.70%,78.30%,0.00%,281,287,573,50.10% +145358,925,2240,State-funded primary,374,186,188,49.70%,50.30%,14,3.70%,25,6.70%,13,360,1,3.50%,96.30%,0.30%,56,59,374,15.80% +145359,341,2223,State-funded primary,475,232,243,48.80%,51.20%,20,4.20%,67,14.10%,211,264,0,44.40%,55.60%,0.00%,191,200,417,48.00% +145360,341,3966,State-funded primary,249,124,125,49.80%,50.20%,6,2.40%,52,20.90%,40,209,0,16.10%,83.90%,0.00%,125,127,207,61.40% +145361,391,7037,State-funded AP school,33,13,20,39.40%,60.60%,24,72.70%,4,12.10%,0,33,0,0.00%,100.00%,0.00%,18,17,27,63.00% +145362,316,2018,State-funded primary,989,499,490,50.50%,49.50%,8,0.80%,64,6.50%,818,171,0,82.70%,17.30%,0.00%,223,228,834,27.30% +145363,316,2030,State-funded primary,458,229,229,50.00%,50.00%,8,1.70%,29,6.30%,372,86,0,81.20%,18.80%,0.00%,138,149,412,36.20% +145364,316,2094,State-funded primary,805,392,413,48.70%,51.30%,23,2.90%,103,12.80%,637,167,1,79.10%,20.70%,0.10%,284,297,760,39.10% +145365,316,2088,State-funded primary,374,175,199,46.80%,53.20%,9,2.40%,33,8.80%,248,126,0,66.30%,33.70%,0.00%,171,194,321,60.40% +145366,316,2093,State-funded primary,882,405,477,45.90%,54.10%,28,3.20%,60,6.80%,729,153,0,82.70%,17.30%,0.00%,250,266,831,32.00% +145367,316,2047,State-funded primary,632,317,315,50.20%,49.80%,14,2.20%,78,12.30%,463,167,2,73.30%,26.40%,0.30%,161,175,562,31.10% +145368,316,2098,State-funded primary,440,206,234,46.80%,53.20%,24,5.50%,54,12.30%,182,257,1,41.40%,58.40%,0.20%,128,135,406,33.30% +145369,815,2183,State-funded primary,299,151,148,50.50%,49.50%,4,1.30%,69,23.10%,14,285,0,4.70%,95.30%,0.00%,53,57,273,20.90% +145370,815,2252,State-funded primary,206,109,97,52.90%,47.10%,3,1.50%,22,10.70%,3,203,0,1.50%,98.50%,0.00%,22,22,206,10.70% +145371,891,2244,State-funded primary,213,114,99,53.50%,46.50%,3,1.40%,12,5.60%,7,206,0,3.30%,96.70%,0.00%,13,14,213,6.60% +145372,851,4302,State-funded secondary,602,322,280,53.50%,46.50%,19,3.20%,112,18.60%,34,568,0,5.60%,94.40%,0.00%,300,328,602,54.50% +145373,373,2361,State-funded primary,314,153,161,48.70%,51.30%,2,0.60%,51,16.20%,6,308,0,1.90%,98.10%,0.00%,56,56,314,17.80% +145374,373,2341,State-funded primary,471,237,234,50.30%,49.70%,8,1.70%,78,16.60%,41,429,1,8.70%,91.10%,0.20%,176,178,471,37.80% +145375,860,4511,State-funded secondary,193,97,96,50.30%,49.70%,6,3.10%,22,11.40%,7,186,0,3.60%,96.40%,0.00%,25,30,193,15.50% +145376,860,4145,State-funded secondary,511,243,268,47.60%,52.40%,11,2.20%,75,14.70%,9,502,0,1.80%,98.20%,0.00%,54,59,511,11.50% +145377,860,2124,State-funded primary,153,68,85,44.40%,55.60%,3,2.00%,12,7.80%,117,36,0,76.50%,23.50%,0.00%,40,41,120,34.20% +145378,860,2323,State-funded primary,189,74,115,39.20%,60.80%,4,2.10%,22,11.60%,0,189,0,0.00%,100.00%,0.00%,24,24,144,16.70% +145379,860,2362,State-funded primary,215,108,107,50.20%,49.80%,4,1.90%,37,17.20%,4,211,0,1.90%,98.10%,0.00%,25,26,215,12.10% +145380,860,3030,State-funded primary,76,40,36,52.60%,47.40%,3,3.90%,9,11.80%,0,76,0,0.00%,100.00%,0.00%,13,14,76,18.40% +145381,860,4100,State-funded secondary,813,395,418,48.60%,51.40%,8,1.00%,75,9.20%,4,808,1,0.50%,99.40%,0.10%,75,82,631,13.00% +145382,935,3340,State-funded primary,213,119,94,55.90%,44.10%,2,0.90%,17,8.00%,71,142,0,33.30%,66.70%,0.00%,27,28,213,13.10% +145383,936,7067,State-funded special school,59,3,56,5.10%,94.90%,59,100.00%,0,0.00%,1,58,0,1.70%,98.30%,0.00%,36,43,59,72.90% +145384,936,7010,State-funded special school,153,16,137,10.50%,89.50%,153,100.00%,0,0.00%,3,150,0,2.00%,98.00%,0.00%,57,51,133,38.30% +145385,319,5202,State-funded primary,291,150,141,51.50%,48.50%,4,1.40%,21,7.20%,45,246,0,15.50%,84.50%,0.00%,22,22,265,8.30% +145387,877,2420,State-funded primary,211,110,101,52.10%,47.90%,3,1.40%,13,6.20%,11,200,0,5.20%,94.80%,0.00%,19,19,211,9.00% +145388,877,2421,State-funded primary,621,302,319,48.60%,51.40%,5,0.80%,63,10.10%,111,510,0,17.90%,82.10%,0.00%,123,126,621,20.30% +145389,877,2685,State-funded primary,380,172,208,45.30%,54.70%,5,1.30%,47,12.40%,68,312,0,17.90%,82.10%,0.00%,97,101,380,26.60% +145390,877,2400,State-funded primary,210,98,112,46.70%,53.30%,2,1.00%,21,10.00%,8,202,0,3.80%,96.20%,0.00%,44,44,210,21.00% +145391,937,3143,State-funded primary,100,47,53,47.00%,53.00%,0,0.00%,15,15.00%,6,94,0,6.00%,94.00%,0.00%,8,8,100,8.00% +145392,937,3588,State-funded primary,131,57,74,43.50%,56.50%,1,0.80%,18,13.70%,12,119,0,9.20%,90.80%,0.00%,12,13,131,9.90% +145393,937,3597,State-funded primary,220,105,115,47.70%,52.30%,15,6.80%,44,20.00%,51,169,0,23.20%,76.80%,0.00%,107,100,201,49.80% +145394,938,7019,State-funded special school,75,0,75,0.00%,100.00%,75,100.00%,0,0.00%,0,75,0,0.00%,100.00%,0.00%,34,38,75,50.70% +145395,336,2057,State-funded primary,310,158,152,51.00%,49.00%,6,1.90%,25,8.10%,41,269,0,13.20%,86.80%,0.00%,76,78,310,25.20% +145396,336,3016,State-funded primary,203,90,113,44.30%,55.70%,12,5.90%,36,17.70%,26,177,0,12.80%,87.20%,0.00%,69,70,203,34.50% +145397,878,2006,State-funded primary,113,58,55,51.30%,48.70%,0,0.00%,22,19.50%,2,111,0,1.80%,98.20%,0.00%,10,10,83,12.00% +145398,801,4011,State-funded secondary,1238,569,669,46.00%,54.00%,32,2.60%,213,17.20%,131,1099,8,10.60%,88.80%,0.60%,274,263,1075,24.50% +145399,801,2119,State-funded primary,112,56,56,50.00%,50.00%,2,1.80%,18,16.10%,4,108,0,3.60%,96.40%,0.00%,29,29,112,25.90% +145400,381,2011,State-funded primary,235,132,103,56.20%,43.80%,12,5.10%,36,15.30%,10,225,0,4.30%,95.70%,0.00%,124,111,202,55.00% +145401,873,2061,State-funded primary,97,48,49,49.50%,50.50%,4,4.10%,18,18.60%,10,87,0,10.30%,89.70%,0.00%,21,21,97,21.60% +145402,909,6007,Independent school,12,2,10,16.70%,83.30%,11,91.70%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145403,830,2035,State-funded primary,218,116,102,53.20%,46.80%,0,0.00%,28,12.80%,10,208,0,4.60%,95.40%,0.00%,70,77,218,35.30% +145404,878,4023,State-funded secondary,1180,559,621,47.40%,52.60%,36,3.10%,204,17.30%,152,1028,0,12.90%,87.10%,0.00%,227,286,1180,24.20% +145405,838,4009,State-funded secondary,451,240,211,53.20%,46.80%,8,1.80%,60,13.30%,10,441,0,2.20%,97.80%,0.00%,83,85,451,18.80% +145406,307,2011,State-funded primary,321,153,168,47.70%,52.30%,7,2.20%,55,17.10%,198,123,0,61.70%,38.30%,0.00%,116,121,321,37.70% +145407,881,2168,State-funded primary,229,105,124,45.90%,54.10%,6,2.60%,21,9.20%,7,222,0,3.10%,96.90%,0.00%,18,19,199,9.50% +145408,916,2039,State-funded primary,64,36,28,56.30%,43.80%,3,4.70%,11,17.20%,1,63,0,1.60%,98.40%,0.00%,8,8,64,12.50% +145409,919,2081,State-funded primary,292,131,161,44.90%,55.10%,3,1.00%,45,15.40%,29,263,0,9.90%,90.10%,0.00%,71,71,292,24.30% +145410,316,4013,State-funded secondary,883,423,460,47.90%,52.10%,82,9.30%,128,14.50%,531,352,0,60.10%,39.90%,0.00%,456,503,866,58.10% +145411,815,2008,State-funded primary,159,83,76,52.20%,47.80%,6,3.80%,14,8.80%,19,140,0,11.90%,88.10%,0.00%,57,55,147,37.40% +145412,929,2005,State-funded primary,111,45,66,40.50%,59.50%,1,0.90%,18,16.20%,0,111,0,0.00%,100.00%,0.00%,26,27,95,28.40% +145413,373,2051,State-funded primary,457,209,248,45.70%,54.30%,12,2.60%,100,21.90%,132,325,0,28.90%,71.10%,0.00%,238,232,400,58.00% +145414,860,2031,State-funded primary,529,259,270,49.00%,51.00%,4,0.80%,59,11.20%,17,512,0,3.20%,96.80%,0.00%,64,69,529,13.00% +145415,937,2057,State-funded primary,60,23,37,38.30%,61.70%,2,3.30%,25,41.70%,3,57,0,5.00%,95.00%,0.00%,35,38,60,63.30% +145416,871,6004,Independent school,82,0,82,0.00%,100.00%,0,0.00%,2,2.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145417,330,6036,Independent school,24,8,16,33.30%,66.70%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145420,886,4020,State-funded secondary,1080,542,538,50.20%,49.80%,32,3.00%,216,20.00%,180,893,7,16.70%,82.70%,0.60%,467,453,930,48.70% +145421,881,2169,State-funded primary,349,189,160,54.20%,45.80%,3,0.90%,26,7.40%,9,340,0,2.60%,97.40%,0.00%,40,49,349,14.00% +145422,825,3336,State-funded primary,201,90,111,44.80%,55.20%,4,2.00%,28,13.90%,11,171,19,5.50%,85.10%,9.50%,6,6,201,3.00% +145423,873,2009,State-funded primary,148,72,76,48.60%,51.40%,8,5.40%,19,12.80%,22,115,11,14.90%,77.70%,7.40%,43,43,148,29.10% +145424,873,2041,State-funded primary,207,106,101,51.20%,48.80%,3,1.40%,30,14.50%,34,173,0,16.40%,83.60%,0.00%,23,23,189,12.20% +145425,873,2200,State-funded primary,300,141,159,47.00%,53.00%,5,1.70%,19,6.30%,41,259,0,13.70%,86.30%,0.00%,52,53,279,19.00% +145426,823,2137,State-funded primary,188,84,104,44.70%,55.30%,9,4.80%,24,12.80%,10,178,0,5.30%,94.70%,0.00%,16,16,166,9.60% +145427,823,2153,State-funded primary,171,86,85,50.30%,49.70%,6,3.50%,18,10.50%,11,160,0,6.40%,93.60%,0.00%,44,44,171,25.70% +145428,839,2240,State-funded primary,495,251,244,50.70%,49.30%,7,1.40%,64,12.90%,20,475,0,4.00%,96.00%,0.00%,83,84,495,17.00% +145429,840,2310,State-funded primary,218,101,117,46.30%,53.70%,4,1.80%,46,21.10%,1,217,0,0.50%,99.50%,0.00%,66,66,194,34.00% +145430,919,4032,State-funded secondary,709,355,354,50.10%,49.90%,23,3.20%,184,26.00%,89,618,2,12.60%,87.20%,0.30%,242,252,662,38.10% +145431,810,2647,State-funded primary,420,195,225,46.40%,53.60%,8,1.90%,37,8.80%,252,168,0,60.00%,40.00%,0.00%,78,84,382,22.00% +145432,382,1102,State-funded AP school,13,4,9,30.80%,69.20%,8,61.50%,5,38.50%,2,11,0,15.40%,84.60%,0.00%,11,11,13,84.60% +145433,382,1101,State-funded AP school,23,9,14,39.10%,60.90%,22,95.70%,1,4.30%,0,22,1,0.00%,95.70%,4.30%,13,14,23,60.90% +145434,382,1100,State-funded AP school,12,2,10,16.70%,83.30%,3,25.00%,8,66.70%,1,11,0,8.30%,91.70%,0.00%,10,10,12,83.30% +145435,340,3302,State-funded primary,425,198,227,46.60%,53.40%,14,3.30%,68,16.00%,26,399,0,6.10%,93.90%,0.00%,139,142,390,36.40% +145436,925,3146,State-funded primary,88,47,41,53.40%,46.60%,2,2.30%,24,27.30%,0,88,0,0.00%,100.00%,0.00%,15,15,88,17.00% +145437,925,2002,State-funded primary,175,87,88,49.70%,50.30%,3,1.70%,7,4.00%,2,173,0,1.10%,98.90%,0.00%,10,10,175,5.70% +145438,341,3306,State-funded primary,205,109,96,53.20%,46.80%,5,2.40%,44,21.50%,14,191,0,6.80%,93.20%,0.00%,13,13,205,6.30% +145439,352,2002,State-funded primary,652,317,335,48.60%,51.40%,19,2.90%,87,13.30%,410,242,0,62.90%,37.10%,0.00%,327,304,584,52.10% +145440,887,2499,State-funded primary,436,194,242,44.50%,55.50%,6,1.40%,70,16.10%,49,387,0,11.20%,88.80%,0.00%,62,64,423,15.10% +145441,926,2402,State-funded primary,307,155,152,50.50%,49.50%,7,2.30%,63,20.50%,11,296,0,3.60%,96.40%,0.00%,119,121,307,39.40% +145442,926,2120,State-funded primary,189,97,92,51.30%,48.70%,1,0.50%,32,16.90%,8,180,1,4.20%,95.20%,0.50%,68,68,189,36.00% +145443,802,3129,State-funded primary,355,187,168,52.70%,47.30%,1,0.30%,31,8.70%,11,344,0,3.10%,96.90%,0.00%,25,25,355,7.00% +145444,802,3120,State-funded primary,182,97,85,53.30%,46.70%,1,0.50%,10,5.50%,6,176,0,3.30%,96.70%,0.00%,24,24,182,13.20% +145445,802,3091,State-funded primary,210,101,109,48.10%,51.90%,7,3.30%,12,5.70%,2,208,0,1.00%,99.00%,0.00%,10,11,210,5.20% +145446,941,2225,State-funded primary,367,192,175,52.30%,47.70%,4,1.10%,45,12.30%,105,238,24,28.60%,64.90%,6.50%,55,58,367,15.80% +145447,891,3390,State-funded primary,117,58,59,49.60%,50.40%,4,3.40%,17,14.50%,8,109,0,6.80%,93.20%,0.00%,59,57,99,57.60% +145449,931,3657,State-funded primary,25,12,13,48.00%,52.00%,0,0.00%,8,32.00%,2,23,0,8.00%,92.00%,0.00%,1,1,25,4.00% +145450,851,2658,State-funded primary,441,224,217,50.80%,49.20%,12,2.70%,67,15.20%,85,355,1,19.30%,80.50%,0.20%,170,176,441,39.90% +145451,851,2659,State-funded primary,262,122,140,46.60%,53.40%,6,2.30%,45,17.20%,49,211,2,18.70%,80.50%,0.80%,69,69,262,26.30% +145452,851,2653,State-funded primary,335,176,159,52.50%,47.50%,4,1.20%,48,14.30%,57,276,2,17.00%,82.40%,0.60%,70,71,335,21.20% +145453,343,3020,State-funded primary,251,126,125,50.20%,49.80%,2,0.80%,28,11.20%,5,245,1,2.00%,97.60%,0.40%,47,52,251,20.70% +145454,343,3304,State-funded primary,209,93,116,44.50%,55.50%,1,0.50%,24,11.50%,120,89,0,57.40%,42.60%,0.00%,51,53,209,25.40% +145455,373,4257,State-funded secondary,1695,840,855,49.60%,50.40%,40,2.40%,179,10.60%,114,1575,6,6.70%,92.90%,0.40%,108,102,1216,8.40% +145456,852,2429,State-funded primary,351,161,190,45.90%,54.10%,6,1.70%,48,13.70%,29,322,0,8.30%,91.70%,0.00%,87,87,351,24.80% +145457,852,2430,State-funded primary,270,136,134,50.40%,49.60%,7,2.60%,39,14.40%,28,231,11,10.40%,85.60%,4.10%,50,51,270,18.90% +145458,342,3304,State-funded primary,221,102,119,46.20%,53.80%,4,1.80%,24,10.90%,29,192,0,13.10%,86.90%,0.00%,66,71,198,35.90% +145459,860,3119,State-funded primary,276,140,136,50.70%,49.30%,2,0.70%,30,10.90%,12,263,1,4.30%,95.30%,0.40%,44,46,276,16.70% +145460,935,2126,State-funded primary,98,62,36,63.30%,36.70%,1,1.00%,12,12.20%,1,97,0,1.00%,99.00%,0.00%,5,5,98,5.10% +145462,813,6006,Independent school,47,2,45,4.30%,95.70%,41,87.20%,6,12.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145463,341,6013,Independent school,17,8,9,47.10%,52.90%,11,64.70%,6,35.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145465,909,6009,Independent school,12,4,8,33.30%,66.70%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145468,893,6034,Independent school,5,5,0,100.00%,0.00%,1,20.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145470,937,6015,Independent school,8,0,8,0.00%,100.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145474,881,4027,State-funded secondary,1027,497,530,48.40%,51.60%,14,1.40%,126,12.30%,85,931,11,8.30%,90.70%,1.10%,144,183,691,26.50% +145475,313,2030,State-funded primary,670,347,323,51.80%,48.20%,9,1.30%,156,23.30%,433,234,3,64.60%,34.90%,0.40%,225,224,619,36.20% +145476,935,2214,State-funded primary,226,110,116,48.70%,51.30%,6,2.70%,28,12.40%,56,167,3,24.80%,73.90%,1.30%,51,55,226,24.30% +145477,394,4003,State-funded secondary,893,425,468,47.60%,52.40%,50,5.60%,178,19.90%,8,885,0,0.90%,99.10%,0.00%,564,575,893,64.40% +145478,893,6035,Independent school,9,7,2,77.80%,22.20%,1,11.10%,1,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145479,850,6094,Independent school,32,12,20,37.50%,62.50%,32,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145480,916,4017,State-funded secondary,741,348,393,47.00%,53.00%,20,2.70%,189,25.50%,51,687,3,6.90%,92.70%,0.40%,196,213,741,28.70% +145481,319,2007,State-funded primary,427,211,216,49.40%,50.60%,7,1.60%,26,6.10%,179,248,0,41.90%,58.10%,0.00%,25,21,361,5.80% +145482,800,4130,State-funded secondary,1166,597,569,51.20%,48.80%,17,1.50%,108,9.30%,41,1125,0,3.50%,96.50%,0.00%,154,173,1019,17.00% +145483,885,2908,State-funded primary,241,103,138,42.70%,57.30%,4,1.70%,59,24.50%,15,226,0,6.20%,93.80%,0.00%,75,73,204,35.80% +145484,319,2026,State-funded primary,697,329,368,47.20%,52.80%,13,1.90%,111,15.90%,436,261,0,62.60%,37.40%,0.00%,111,112,645,17.40% +145485,358,2071,State-funded primary,448,222,226,49.60%,50.40%,0,0.00%,47,10.50%,138,310,0,30.80%,69.20%,0.00%,11,14,420,3.30% +145486,937,7044,State-funded special school,183,58,125,31.70%,68.30%,183,100.00%,0,0.00%,4,179,0,2.20%,97.80%,0.00%,79,62,141,44.00% +145487,919,2086,State-funded primary,168,76,92,45.20%,54.80%,4,2.40%,18,10.70%,24,144,0,14.30%,85.70%,0.00%,58,64,154,41.60% +145488,855,2038,State-funded primary,342,169,173,49.40%,50.60%,3,0.90%,50,14.60%,11,330,1,3.20%,96.50%,0.30%,68,69,342,20.20% +145489,925,2045,State-funded primary,131,65,66,49.60%,50.40%,5,3.80%,19,14.50%,2,129,0,1.50%,98.50%,0.00%,83,83,131,63.40% +145490,390,4002,State-funded secondary,1055,520,535,49.30%,50.70%,19,1.80%,99,9.40%,133,922,0,12.60%,87.40%,0.00%,489,530,1055,50.20% +145491,830,2037,State-funded primary,274,143,131,52.20%,47.80%,13,4.70%,60,21.90%,8,264,2,2.90%,96.40%,0.70%,112,115,274,42.00% +145492,802,2009,State-funded primary,238,96,142,40.30%,59.70%,4,1.70%,38,16.00%,37,201,0,15.50%,84.50%,0.00%,68,72,238,30.30% +145493,885,6046,Independent school,4,1,3,25.00%,75.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145494,894,7000,State-funded special school,116,19,97,16.40%,83.60%,116,100.00%,0,0.00%,0,116,0,0.00%,100.00%,0.00%,59,64,116,55.20% +145495,825,2041,State-funded primary,138,69,69,50.00%,50.00%,2,1.40%,27,19.60%,19,119,0,13.80%,86.20%,0.00%,44,46,138,33.30% +145496,839,2004,State-funded primary,247,120,127,48.60%,51.40%,3,1.20%,69,27.90%,18,229,0,7.30%,92.70%,0.00%,137,141,247,57.10% +145499,380,6015,Independent school,114,114,0,100.00%,0.00%,0,0.00%,6,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145500,830,4009,State-funded secondary,1929,968,961,50.20%,49.80%,20,1.00%,290,15.00%,44,1885,0,2.30%,97.70%,0.00%,244,259,1633,15.90% +145501,926,4030,State-funded secondary,785,393,392,50.10%,49.90%,18,2.30%,122,15.50%,34,751,0,4.30%,95.70%,0.00%,163,177,785,22.50% +145502,803,4010,State-funded secondary,1861,941,920,50.60%,49.40%,26,1.40%,209,11.20%,197,1662,2,10.60%,89.30%,0.10%,185,178,1557,11.40% +145505,856,6028,Independent school,139,0,139,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145506,892,2020,State-funded primary,628,322,306,51.30%,48.70%,6,1.00%,153,24.40%,126,502,0,20.10%,79.90%,0.00%,288,296,582,50.90% +145510,311,6003,Independent school,24,17,7,70.80%,29.20%,3,12.50%,9,37.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145511,800,2236,State-funded primary,191,93,98,48.70%,51.30%,4,2.10%,24,12.60%,13,178,0,6.80%,93.20%,0.00%,5,6,191,3.10% +145512,800,3076,State-funded primary,184,80,104,43.50%,56.50%,8,4.30%,32,17.40%,10,174,0,5.40%,94.60%,0.00%,29,33,184,17.90% +145513,800,3033,State-funded primary,198,108,90,54.50%,45.50%,6,3.00%,27,13.60%,30,168,0,15.20%,84.80%,0.00%,32,32,198,16.20% +145514,800,3034,State-funded primary,147,83,64,56.50%,43.50%,4,2.70%,15,10.20%,26,121,0,17.70%,82.30%,0.00%,16,14,108,13.00% +145515,800,3420,State-funded primary,218,123,95,56.40%,43.60%,10,4.60%,37,17.00%,75,143,0,34.40%,65.60%,0.00%,17,18,218,8.30% +145516,800,3421,State-funded primary,222,124,98,55.90%,44.10%,12,5.40%,34,15.30%,85,137,0,38.30%,61.70%,0.00%,42,39,187,20.90% +145517,800,3422,State-funded primary,334,152,182,45.50%,54.50%,6,1.80%,32,9.60%,26,308,0,7.80%,92.20%,0.00%,25,25,334,7.50% +145518,908,2715,State-funded primary,240,119,121,49.60%,50.40%,5,2.10%,24,10.00%,2,238,0,0.80%,99.20%,0.00%,27,30,219,13.70% +145519,908,2500,State-funded primary,47,24,23,51.10%,48.90%,1,2.10%,6,12.80%,0,47,0,0.00%,100.00%,0.00%,4,4,38,10.50% +145520,830,2287,State-funded primary,85,37,48,43.50%,56.50%,1,1.20%,13,15.30%,10,75,0,11.80%,88.20%,0.00%,46,30,56,53.60% +145521,830,4126,State-funded secondary,1280,665,615,52.00%,48.00%,29,2.30%,128,10.00%,24,1252,4,1.90%,97.80%,0.30%,261,264,1128,23.40% +145522,308,2079,State-funded primary,553,265,288,47.90%,52.10%,20,3.60%,90,16.30%,356,197,0,64.40%,35.60%,0.00%,238,245,508,48.20% +145523,881,3303,State-funded primary,218,109,109,50.00%,50.00%,6,2.80%,23,10.60%,7,211,0,3.20%,96.80%,0.00%,29,29,218,13.30% +145524,916,3330,State-funded primary,196,86,110,43.90%,56.10%,3,1.50%,22,11.20%,5,191,0,2.60%,97.40%,0.00%,16,17,196,8.70% +145525,383,3920,State-funded primary,434,211,223,48.60%,51.40%,2,0.50%,37,8.50%,28,405,1,6.50%,93.30%,0.20%,79,74,391,18.90% +145526,383,2339,State-funded primary,482,221,261,45.90%,54.10%,0,0.00%,56,11.60%,82,400,0,17.00%,83.00%,0.00%,60,65,441,14.70% +145527,925,3119,State-funded primary,296,138,158,46.60%,53.40%,6,2.00%,44,14.90%,1,295,0,0.30%,99.70%,0.00%,85,87,296,29.40% +145528,391,4450,State-funded secondary,1158,559,599,48.30%,51.70%,33,2.80%,132,11.40%,218,940,0,18.80%,81.20%,0.00%,713,728,1132,64.30% +145529,926,7021,State-funded special school,219,64,155,29.20%,70.80%,219,100.00%,0,0.00%,16,203,0,7.30%,92.70%,0.00%,110,105,203,51.70% +145530,926,2202,State-funded primary,56,30,26,53.60%,46.40%,1,1.80%,8,14.30%,28,28,0,50.00%,50.00%,0.00%,24,25,56,44.60% +145531,926,2234,State-funded primary,122,63,59,51.60%,48.40%,1,0.80%,11,9.00%,3,119,0,2.50%,97.50%,0.00%,19,19,110,17.30% +145532,926,2235,State-funded primary,46,12,34,26.10%,73.90%,4,8.70%,4,8.70%,5,40,1,10.90%,87.00%,2.20%,11,12,40,30.00% +145533,926,2236,State-funded primary,113,65,48,57.50%,42.50%,1,0.90%,17,15.00%,3,109,1,2.70%,96.50%,0.90%,7,7,100,7.00% +145534,926,2237,State-funded primary,137,66,71,48.20%,51.80%,4,2.90%,31,22.60%,61,75,1,44.50%,54.70%,0.70%,46,46,120,38.30% +145535,926,2419,State-funded primary,258,131,127,50.80%,49.20%,12,4.70%,39,15.10%,73,185,0,28.30%,71.70%,0.00%,115,119,258,46.10% +145536,891,2934,State-funded primary,295,139,156,47.10%,52.90%,3,1.00%,40,13.60%,95,200,0,32.20%,67.80%,0.00%,36,37,295,12.50% +145537,353,2010,State-funded primary,256,134,122,52.30%,47.70%,7,2.70%,55,21.50%,122,122,12,47.70%,47.70%,4.70%,59,64,217,29.50% +145538,860,2234,State-funded primary,180,92,88,51.10%,48.90%,3,1.70%,32,17.80%,10,170,0,5.60%,94.40%,0.00%,37,37,180,20.60% +145539,935,3092,State-funded primary,78,35,43,44.90%,55.10%,2,2.60%,17,21.80%,2,76,0,2.60%,97.40%,0.00%,13,13,78,16.70% +145540,935,2167,State-funded primary,286,142,144,49.70%,50.30%,5,1.70%,27,9.40%,92,192,2,32.20%,67.10%,0.70%,92,96,286,33.60% +145541,935,2147,State-funded primary,349,156,193,44.70%,55.30%,13,3.70%,60,17.20%,15,331,3,4.30%,94.80%,0.90%,184,184,329,55.90% +145542,936,2941,State-funded primary,436,221,215,50.70%,49.30%,4,0.90%,91,20.90%,125,311,0,28.70%,71.30%,0.00%,127,133,436,30.50% +145543,936,2004,State-funded primary,206,84,122,40.80%,59.20%,4,1.90%,24,11.70%,12,194,0,5.80%,94.20%,0.00%,21,21,206,10.20% +145544,938,2230,State-funded primary,355,171,184,48.20%,51.80%,6,1.70%,53,14.90%,103,251,1,29.00%,70.70%,0.30%,117,121,330,36.70% +145545,865,2065,State-funded primary,211,104,107,49.30%,50.70%,2,0.90%,42,19.90%,34,175,2,16.10%,82.90%,0.90%,11,17,211,8.10% +145546,891,6038,Independent school,12,3,9,25.00%,75.00%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145548,881,2170,State-funded primary,320,136,184,42.50%,57.50%,2,0.60%,28,8.80%,12,308,0,3.80%,96.30%,0.00%,58,64,320,20.00% +145549,878,6072,Independent school,14,1,13,7.10%,92.90%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145552,316,6011,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145553,873,2067,State-funded primary,101,45,56,44.60%,55.40%,4,4.00%,16,15.80%,4,97,0,4.00%,96.00%,0.00%,23,23,101,22.80% +145555,865,2039,State-funded primary,63,32,31,50.80%,49.20%,1,1.60%,20,31.70%,1,62,0,1.60%,98.40%,0.00%,16,17,63,27.00% +145556,382,2055,State-funded primary,128,65,63,50.80%,49.20%,6,4.70%,32,25.00%,1,127,0,0.80%,99.20%,0.00%,42,42,128,32.80% +145557,881,2171,State-funded primary,359,169,190,47.10%,52.90%,2,0.60%,39,10.90%,87,272,0,24.20%,75.80%,0.00%,75,81,359,22.60% +145558,856,4007,State-funded secondary,1199,527,672,44.00%,56.00%,9,0.80%,82,6.80%,417,782,0,34.80%,65.20%,0.00%,213,242,1199,20.20% +145559,935,2215,State-funded primary,509,281,228,55.20%,44.80%,13,2.60%,77,15.10%,39,469,1,7.70%,92.10%,0.20%,254,258,487,53.00% +145560,351,2008,State-funded primary,216,110,106,50.90%,49.10%,7,3.20%,41,19.00%,56,160,0,25.90%,74.10%,0.00%,134,131,199,65.80% +145561,908,2045,State-funded primary,39,23,16,59.00%,41.00%,0,0.00%,8,20.50%,0,37,2,0.00%,94.90%,5.10%,7,8,39,20.50% +145562,373,4013,State-funded secondary,1245,599,646,48.10%,51.90%,22,1.80%,205,16.50%,15,1227,3,1.20%,98.60%,0.20%,302,336,1245,27.00% +145563,332,6009,Independent school,90,17,73,18.90%,81.10%,90,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145564,840,4009,State-funded secondary,847,405,442,47.80%,52.20%,12,1.40%,142,16.80%,18,829,0,2.10%,97.90%,0.00%,263,293,847,34.60% +145568,310,6011,Independent school,12,6,6,50.00%,50.00%,1,8.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145571,381,2016,State-funded primary,127,70,57,55.10%,44.90%,4,3.10%,23,18.10%,5,122,0,3.90%,96.10%,0.00%,52,52,127,40.90% +145572,830,6046,Independent school,10,4,6,40.00%,60.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145574,886,6149,Independent school,34,10,24,29.40%,70.60%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145575,937,4014,State-funded secondary,1097,562,535,51.20%,48.80%,25,2.30%,144,13.10%,167,926,4,15.20%,84.40%,0.40%,257,264,988,26.70% +145576,384,2029,State-funded primary,330,170,160,51.50%,48.50%,16,4.80%,45,13.60%,20,310,0,6.10%,93.90%,0.00%,88,89,296,30.10% +145577,841,4003,State-funded secondary,819,383,436,46.80%,53.20%,11,1.30%,141,17.20%,58,761,0,7.10%,92.90%,0.00%,244,262,819,32.00% +145579,384,4007,State-funded secondary,1021,545,476,53.40%,46.60%,45,4.40%,106,10.40%,228,793,0,22.30%,77.70%,0.00%,383,407,1021,39.90% +145580,330,4031,State-funded secondary,1108,567,541,51.20%,48.80%,4,0.40%,129,11.60%,193,898,17,17.40%,81.00%,1.50%,331,375,1108,33.80% +145581,892,1113,State-funded AP school,5,3,2,60.00%,40.00%,0,0.00%,1,20.00%,0,5,0,0.00%,100.00%,0.00%,1,3,5,60.00% +145582,800,3077,State-funded primary,178,90,88,50.60%,49.40%,7,3.90%,25,14.00%,22,156,0,12.40%,87.60%,0.00%,12,12,178,6.70% +145583,800,3092,State-funded primary,155,77,78,49.70%,50.30%,1,0.60%,26,16.80%,3,152,0,1.90%,98.10%,0.00%,5,5,155,3.20% +145585,305,2082,State-funded primary,408,197,211,48.30%,51.70%,9,2.20%,43,10.50%,56,352,0,13.70%,86.30%,0.00%,25,25,408,6.10% +145587,895,2222,State-funded primary,251,123,128,49.00%,51.00%,10,4.00%,22,8.80%,11,238,2,4.40%,94.80%,0.80%,21,22,251,8.80% +145591,306,7004,State-funded special school,116,23,93,19.80%,80.20%,106,91.40%,10,8.60%,4,112,0,3.40%,96.60%,0.00%,79,90,116,77.60% +145592,831,2467,State-funded primary,298,142,156,47.70%,52.30%,5,1.70%,83,27.90%,15,283,0,5.00%,95.00%,0.00%,108,112,273,41.00% +145593,332,4105,State-funded secondary,606,296,310,48.80%,51.20%,10,1.70%,104,17.20%,206,400,0,34.00%,66.00%,0.00%,214,224,606,37.00% +145594,840,2002,State-funded primary,313,170,143,54.30%,45.70%,6,1.90%,53,16.90%,9,304,0,2.90%,97.10%,0.00%,92,97,264,36.70% +145595,811,3087,State-funded primary,202,93,109,46.00%,54.00%,9,4.50%,17,8.40%,8,194,0,4.00%,96.00%,0.00%,28,28,202,13.90% +145596,811,2913,State-funded primary,103,44,59,42.70%,57.30%,5,4.90%,7,6.80%,5,98,0,4.90%,95.10%,0.00%,14,15,103,14.60% +145597,881,4499,State-funded secondary,1439,694,745,48.20%,51.80%,17,1.20%,133,9.20%,202,1229,8,14.00%,85.40%,0.60%,238,264,1178,22.40% +145599,881,3122,State-funded primary,410,206,204,50.20%,49.80%,8,2.00%,22,5.40%,75,335,0,18.30%,81.70%,0.00%,26,32,410,7.80% +145600,881,3124,State-funded primary,93,50,43,53.80%,46.20%,7,7.50%,11,11.80%,7,86,0,7.50%,92.50%,0.00%,18,18,93,19.40% +145601,881,3125,State-funded primary,186,90,96,48.40%,51.60%,4,2.20%,20,10.80%,9,177,0,4.80%,95.20%,0.00%,9,12,186,6.50% +145602,881,3133,State-funded primary,197,94,103,47.70%,52.30%,1,0.50%,14,7.10%,53,134,10,26.90%,68.00%,5.10%,45,45,153,29.40% +145603,881,2503,State-funded primary,416,207,209,49.80%,50.20%,11,2.60%,40,9.60%,51,365,0,12.30%,87.70%,0.00%,77,77,416,18.50% +145604,881,2690,State-funded primary,215,112,103,52.10%,47.90%,5,2.30%,15,7.00%,10,205,0,4.70%,95.30%,0.00%,40,42,215,19.50% +145605,881,2823,State-funded primary,299,148,151,49.50%,50.50%,7,2.30%,16,5.40%,22,277,0,7.40%,92.60%,0.00%,47,48,299,16.10% +145606,916,2073,State-funded primary,103,45,58,43.70%,56.30%,2,1.90%,14,13.60%,4,99,0,3.90%,96.10%,0.00%,11,11,103,10.70% +145607,916,3089,State-funded primary,95,46,49,48.40%,51.60%,6,6.30%,17,17.90%,0,95,0,0.00%,100.00%,0.00%,30,30,95,31.60% +145609,204,4000,State-funded secondary,124,124,0,100.00%,0.00%,4,3.20%,25,20.20%,19,105,0,15.30%,84.70%,0.00%,10,10,98,10.20% +145610,204,3664,State-funded primary,115,115,0,100.00%,0.00%,1,0.90%,16,13.90%,23,92,0,20.00%,80.00%,0.00%,6,6,107,5.60% +145611,810,2600,State-funded primary,170,86,84,50.60%,49.40%,4,2.40%,52,30.60%,5,165,0,2.90%,97.10%,0.00%,71,71,159,44.70% +145612,810,2657,State-funded primary,162,77,85,47.50%,52.50%,5,3.10%,25,15.40%,24,138,0,14.80%,85.20%,0.00%,46,48,144,33.30% +145613,340,2021,State-funded primary,346,171,175,49.40%,50.60%,10,2.90%,43,12.40%,21,324,1,6.10%,93.60%,0.30%,112,112,317,35.30% +145614,208,3329,State-funded primary,179,84,95,46.90%,53.10%,3,1.70%,27,15.10%,69,110,0,38.50%,61.50%,0.00%,93,96,179,53.60% +145615,208,3493,State-funded primary,367,175,192,47.70%,52.30%,13,3.50%,39,10.60%,143,224,0,39.00%,61.00%,0.00%,90,95,352,27.00% +145616,208,3499,State-funded primary,165,82,83,49.70%,50.30%,6,3.60%,30,18.20%,81,83,1,49.10%,50.30%,0.60%,94,95,165,57.60% +145617,856,2262,State-funded primary,357,179,178,50.10%,49.90%,10,2.80%,39,10.90%,87,249,21,24.40%,69.70%,5.90%,24,25,357,7.00% +145618,856,2263,State-funded primary,472,224,248,47.50%,52.50%,12,2.50%,97,20.60%,97,374,1,20.60%,79.20%,0.20%,56,58,472,12.30% +145619,855,2189,State-funded primary,435,199,236,45.70%,54.30%,26,6.00%,59,13.60%,112,316,7,25.70%,72.60%,1.60%,52,54,435,12.40% +145620,855,2384,State-funded primary,439,211,228,48.10%,51.90%,13,3.00%,20,4.60%,283,153,3,64.50%,34.90%,0.70%,27,28,439,6.40% +145621,209,3325,State-funded primary,217,108,109,49.80%,50.20%,9,4.10%,45,20.70%,99,118,0,45.60%,54.40%,0.00%,89,91,191,47.60% +145622,352,2332,State-funded primary,703,342,361,48.60%,51.40%,22,3.10%,69,9.80%,662,39,2,94.20%,5.50%,0.30%,231,225,625,36.00% +145623,806,2325,State-funded primary,505,242,263,47.90%,52.10%,5,1.00%,84,16.60%,143,362,0,28.30%,71.70%,0.00%,248,254,414,61.40% +145624,391,3662,State-funded primary,242,138,104,57.00%,43.00%,3,1.20%,19,7.90%,43,198,1,17.80%,81.80%,0.40%,59,59,210,28.10% +145627,316,2064,State-funded primary,647,320,327,49.50%,50.50%,15,2.30%,26,4.00%,562,82,3,86.90%,12.70%,0.50%,160,162,606,26.70% +145628,926,2320,State-funded primary,198,102,96,51.50%,48.50%,10,5.10%,32,16.20%,70,128,0,35.40%,64.60%,0.00%,46,46,152,30.30% +145629,926,2395,State-funded primary,220,110,110,50.00%,50.00%,6,2.70%,22,10.00%,9,211,0,4.10%,95.90%,0.00%,10,10,179,5.60% +145630,802,2332,State-funded primary,415,190,225,45.80%,54.20%,32,7.70%,36,8.70%,21,394,0,5.10%,94.90%,0.00%,51,55,415,13.30% +145631,802,3115,State-funded primary,389,199,190,51.20%,48.80%,15,3.90%,37,9.50%,21,368,0,5.40%,94.60%,0.00%,45,45,389,11.60% +145633,815,2076,State-funded primary,418,196,222,46.90%,53.10%,8,1.90%,58,13.90%,14,404,0,3.30%,96.70%,0.00%,62,63,418,15.10% +145634,941,3508,State-funded primary,396,193,203,48.70%,51.30%,12,3.00%,63,15.90%,124,271,1,31.30%,68.40%,0.30%,118,122,396,30.80% +145635,941,3040,State-funded primary,122,72,50,59.00%,41.00%,2,1.60%,15,12.30%,10,112,0,8.20%,91.80%,0.00%,7,8,122,6.60% +145636,941,3058,State-funded primary,81,40,41,49.40%,50.60%,0,0.00%,11,13.60%,3,77,1,3.70%,95.10%,1.20%,5,7,81,8.60% +145637,929,5201,State-funded primary,46,25,21,54.30%,45.70%,0,0.00%,9,19.60%,0,46,0,0.00%,100.00%,0.00%,2,2,38,5.30% +145638,929,3423,State-funded primary,18,9,9,50.00%,50.00%,1,5.60%,2,11.10%,0,18,0,0.00%,100.00%,0.00%,2,2,13,15.40% +145639,929,4802,State-funded secondary,214,110,104,51.40%,48.60%,5,2.30%,30,14.00%,6,208,0,2.80%,97.20%,0.00%,27,29,214,13.60% +145640,891,2006,State-funded primary,271,130,141,48.00%,52.00%,5,1.80%,11,4.10%,5,266,0,1.80%,98.20%,0.00%,13,13,271,4.80% +145641,891,2414,State-funded primary,211,104,107,49.30%,50.70%,1,0.50%,14,6.60%,6,205,0,2.80%,97.20%,0.00%,39,39,211,18.50% +145642,891,2824,State-funded primary,185,89,96,48.10%,51.90%,0,0.00%,23,12.40%,5,180,0,2.70%,97.30%,0.00%,13,13,172,7.60% +145643,891,4669,State-funded secondary,1636,868,768,53.10%,46.90%,18,1.10%,79,4.80%,47,1589,0,2.90%,97.10%,0.00%,116,123,1263,9.70% +145644,891,2900,State-funded primary,218,102,116,46.80%,53.20%,3,1.40%,39,17.90%,5,213,0,2.30%,97.70%,0.00%,61,54,189,28.60% +145645,891,3065,State-funded primary,147,84,63,57.10%,42.90%,1,0.70%,13,8.80%,0,147,0,0.00%,100.00%,0.00%,5,5,147,3.40% +145646,891,3104,State-funded primary,74,42,32,56.80%,43.20%,0,0.00%,14,18.90%,0,74,0,0.00%,100.00%,0.00%,7,8,74,10.80% +145647,891,3132,State-funded primary,49,29,20,59.20%,40.80%,1,2.00%,5,10.20%,1,48,0,2.00%,98.00%,0.00%,1,2,47,4.30% +145648,931,2002,State-funded primary,276,124,152,44.90%,55.10%,6,2.20%,42,15.20%,30,246,0,10.90%,89.10%,0.00%,27,28,252,11.10% +145649,931,2578,State-funded primary,232,114,118,49.10%,50.90%,12,5.20%,50,21.60%,21,211,0,9.10%,90.90%,0.00%,38,42,232,18.10% +145650,931,3244,State-funded primary,187,93,94,49.70%,50.30%,1,0.50%,29,15.50%,14,173,0,7.50%,92.50%,0.00%,23,23,164,14.00% +145651,931,2302,State-funded primary,210,89,121,42.40%,57.60%,6,2.90%,40,19.00%,11,199,0,5.20%,94.80%,0.00%,50,46,185,24.90% +145652,879,2630,State-funded primary,203,88,115,43.30%,56.70%,4,2.00%,35,17.20%,28,175,0,13.80%,86.20%,0.00%,97,99,191,51.80% +145653,879,2639,State-funded primary,348,166,182,47.70%,52.30%,11,3.20%,72,20.70%,24,324,0,6.90%,93.10%,0.00%,190,170,295,57.60% +145654,879,2660,State-funded primary,204,84,120,41.20%,58.80%,8,3.90%,45,22.10%,7,196,1,3.40%,96.10%,0.50%,116,112,183,61.20% +145655,879,2668,State-funded primary,122,71,51,58.20%,41.80%,4,3.30%,15,12.30%,5,117,0,4.10%,95.90%,0.00%,41,28,86,32.60% +145656,879,2674,State-funded primary,268,131,137,48.90%,51.10%,4,1.50%,36,13.40%,49,219,0,18.30%,81.70%,0.00%,127,129,225,57.30% +145658,879,3775,State-funded primary,433,212,221,49.00%,51.00%,11,2.50%,50,11.50%,33,400,0,7.60%,92.40%,0.00%,178,170,394,43.10% +145659,851,2697,State-funded primary,219,102,117,46.60%,53.40%,21,9.60%,13,5.90%,91,128,0,41.60%,58.40%,0.00%,50,50,185,27.00% +145660,870,2254,State-funded primary,198,99,99,50.00%,50.00%,10,5.10%,31,15.70%,100,98,0,50.50%,49.50%,0.00%,50,51,198,25.80% +145661,807,2082,State-funded primary,352,157,195,44.60%,55.40%,2,0.60%,27,7.70%,0,352,0,0.00%,100.00%,0.00%,35,37,309,12.00% +145662,807,2218,State-funded primary,260,137,123,52.70%,47.30%,3,1.20%,43,16.50%,4,256,0,1.50%,98.50%,0.00%,160,163,225,72.40% +145663,807,2223,State-funded primary,204,97,107,47.50%,52.50%,2,1.00%,28,13.70%,9,194,1,4.40%,95.10%,0.50%,47,53,190,27.90% +145664,807,2229,State-funded primary,471,231,240,49.00%,51.00%,4,0.80%,40,8.50%,12,459,0,2.50%,97.50%,0.00%,52,54,395,13.70% +145665,807,2338,State-funded primary,299,147,152,49.20%,50.80%,6,2.00%,87,29.10%,7,292,0,2.30%,97.70%,0.00%,112,115,254,45.30% +145666,807,2088,State-funded primary,282,149,133,52.80%,47.20%,1,0.40%,16,5.70%,2,280,0,0.70%,99.30%,0.00%,15,17,245,6.90% +145667,807,2368,State-funded primary,212,105,107,49.50%,50.50%,5,2.40%,22,10.40%,3,209,0,1.40%,98.60%,0.00%,52,52,174,29.90% +145668,807,2361,State-funded primary,451,225,226,49.90%,50.10%,1,0.20%,53,11.80%,4,447,0,0.90%,99.10%,0.00%,38,39,381,10.20% +145670,807,3005,State-funded primary,230,114,116,49.60%,50.40%,6,2.60%,44,19.10%,12,218,0,5.20%,94.80%,0.00%,66,66,198,33.30% +145671,807,3007,State-funded primary,332,161,171,48.50%,51.50%,28,8.40%,56,16.90%,2,330,0,0.60%,99.40%,0.00%,111,112,257,43.60% +145672,893,2029,State-funded primary,130,63,67,48.50%,51.50%,4,3.10%,20,15.40%,4,126,0,3.10%,96.90%,0.00%,30,30,130,23.10% +145673,893,3312,State-funded primary,91,40,51,44.00%,56.00%,0,0.00%,13,14.30%,1,90,0,1.10%,98.90%,0.00%,3,3,76,3.90% +145674,933,2226,State-funded primary,117,62,55,53.00%,47.00%,1,0.90%,7,6.00%,0,117,0,0.00%,100.00%,0.00%,10,10,98,10.20% +145675,933,3182,State-funded primary,151,68,83,45.00%,55.00%,0,0.00%,11,7.30%,4,147,0,2.60%,97.40%,0.00%,14,14,136,10.30% +145676,933,3492,State-funded primary,211,86,125,40.80%,59.20%,5,2.40%,11,5.20%,1,210,0,0.50%,99.50%,0.00%,26,27,211,12.80% +145677,933,4308,State-funded secondary,941,469,472,49.80%,50.20%,20,2.10%,123,13.10%,141,799,1,15.00%,84.90%,0.10%,251,264,941,28.10% +145678,882,3326,State-funded primary,436,214,222,49.10%,50.90%,4,0.90%,62,14.20%,134,302,0,30.70%,69.30%,0.00%,139,140,412,34.00% +145679,860,3426,State-funded primary,49,24,25,49.00%,51.00%,0,0.00%,3,6.10%,3,46,0,6.10%,93.90%,0.00%,0,0,44,0.00% +145680,860,2388,State-funded primary,232,116,116,50.00%,50.00%,3,1.30%,32,13.80%,11,221,0,4.70%,95.30%,0.00%,76,78,207,37.70% +145681,860,3048,State-funded primary,82,39,43,47.60%,52.40%,0,0.00%,6,7.30%,7,75,0,8.50%,91.50%,0.00%,6,6,75,8.00% +145682,860,3049,State-funded primary,55,24,31,43.60%,56.40%,1,1.80%,8,14.50%,0,55,0,0.00%,100.00%,0.00%,2,3,47,6.40% +145683,860,3063,State-funded primary,441,211,230,47.80%,52.20%,6,1.40%,59,13.40%,1,440,0,0.20%,99.80%,0.00%,69,73,403,18.10% +145684,860,2179,State-funded primary,209,98,111,46.90%,53.10%,1,0.50%,21,10.00%,2,207,0,1.00%,99.00%,0.00%,64,64,195,32.80% +145685,860,2189,State-funded primary,306,152,154,49.70%,50.30%,2,0.70%,45,14.70%,10,296,0,3.30%,96.70%,0.00%,111,115,270,42.60% +145686,860,2361,State-funded primary,186,95,91,51.10%,48.90%,2,1.10%,28,15.10%,5,181,0,2.70%,97.30%,0.00%,48,48,186,25.80% +145687,860,3476,State-funded primary,212,109,103,51.40%,48.60%,1,0.50%,10,4.70%,16,196,0,7.50%,92.50%,0.00%,11,11,212,5.20% +145688,356,3528,State-funded primary,440,236,204,53.60%,46.40%,21,4.80%,50,11.40%,21,415,4,4.80%,94.30%,0.90%,57,61,412,14.80% +145689,808,2304,State-funded primary,325,172,153,52.90%,47.10%,5,1.50%,24,7.40%,6,319,0,1.80%,98.20%,0.00%,29,32,283,11.30% +145691,861,2031,State-funded primary,573,283,290,49.40%,50.60%,9,1.60%,76,13.30%,180,388,5,31.40%,67.70%,0.90%,227,222,522,42.50% +145692,935,3323,State-funded primary,184,97,87,52.70%,47.30%,6,3.30%,26,14.10%,1,183,0,0.50%,99.50%,0.00%,37,38,174,21.80% +145693,935,3331,State-funded primary,106,54,52,50.90%,49.10%,5,4.70%,5,4.70%,1,105,0,0.90%,99.10%,0.00%,18,18,106,17.00% +145694,935,2109,State-funded primary,58,35,23,60.30%,39.70%,2,3.40%,7,12.10%,1,57,0,1.70%,98.30%,0.00%,6,6,58,10.30% +145695,935,2152,State-funded primary,486,235,251,48.40%,51.60%,10,2.10%,26,5.30%,9,477,0,1.90%,98.10%,0.00%,81,82,418,19.60% +145696,935,3089,State-funded primary,123,51,72,41.50%,58.50%,1,0.80%,33,26.80%,1,122,0,0.80%,99.20%,0.00%,20,25,118,21.20% +145697,935,3102,State-funded primary,113,59,54,52.20%,47.80%,5,4.40%,8,7.10%,1,112,0,0.90%,99.10%,0.00%,10,11,113,9.70% +145698,935,2220,State-funded primary,528,267,261,50.60%,49.40%,4,0.80%,34,6.40%,41,483,4,7.80%,91.50%,0.80%,54,60,447,13.40% +145700,936,3014,State-funded primary,417,203,214,48.70%,51.30%,10,2.40%,38,9.10%,20,397,0,4.80%,95.20%,0.00%,37,40,417,9.60% +145701,936,2267,State-funded primary,91,41,50,45.10%,54.90%,2,2.20%,2,2.20%,5,86,0,5.50%,94.50%,0.00%,7,7,91,7.70% +145702,936,2419,State-funded primary,175,80,95,45.70%,54.30%,2,1.10%,11,6.30%,32,143,0,18.30%,81.70%,0.00%,14,15,159,9.40% +145703,936,2476,State-funded primary,211,105,106,49.80%,50.20%,5,2.40%,24,11.40%,26,184,1,12.30%,87.20%,0.50%,15,16,211,7.60% +145704,319,1100,State-funded AP school,104,39,65,37.50%,62.50%,6,5.80%,97,93.30%,24,79,1,23.10%,76.00%,1.00%,64,70,104,67.30% +145706,357,2040,State-funded primary,451,222,229,49.20%,50.80%,6,1.30%,81,18.00%,38,413,0,8.40%,91.60%,0.00%,159,171,402,42.50% +145707,894,5402,State-funded secondary,952,486,466,51.10%,48.90%,35,3.70%,175,18.40%,151,793,8,15.90%,83.30%,0.80%,206,243,952,25.50% +145708,320,4076,State-funded secondary,744,326,418,43.80%,56.20%,20,2.70%,94,12.60%,414,323,7,55.60%,43.40%,0.90%,256,283,660,42.90% +145709,212,7067,State-funded special school,146,62,84,42.50%,57.50%,144,98.60%,2,1.40%,51,95,0,34.90%,65.10%,0.00%,54,45,110,40.90% +145710,877,2426,State-funded primary,256,117,139,45.70%,54.30%,3,1.20%,44,17.20%,13,243,0,5.10%,94.90%,0.00%,30,24,205,11.70% +145711,937,3021,State-funded primary,179,85,94,47.50%,52.50%,4,2.20%,18,10.10%,2,177,0,1.10%,98.90%,0.00%,25,26,179,14.50% +145712,937,3066,State-funded primary,107,63,44,58.90%,41.10%,0,0.00%,7,6.50%,0,107,0,0.00%,100.00%,0.00%,8,8,107,7.50% +145713,359,3306,State-funded primary,428,223,205,52.10%,47.90%,3,0.70%,26,6.10%,18,410,0,4.20%,95.80%,0.00%,63,67,395,17.00% +145714,865,3243,State-funded primary,194,108,86,55.70%,44.30%,1,0.50%,9,4.60%,0,194,0,0.00%,100.00%,0.00%,9,9,194,4.60% +145715,336,2054,State-funded primary,667,331,336,49.60%,50.40%,12,1.80%,120,18.00%,147,520,0,22.00%,78.00%,0.00%,244,248,623,39.80% +145716,800,2005,State-funded primary,145,75,70,51.70%,48.30%,9,6.20%,42,29.00%,13,132,0,9.00%,91.00%,0.00%,103,103,145,71.00% +145718,304,2058,State-funded primary,687,346,341,50.40%,49.60%,13,1.90%,67,9.80%,620,66,1,90.20%,9.60%,0.10%,238,245,629,39.00% +145719,873,2071,State-funded primary,158,78,80,49.40%,50.60%,7,4.40%,17,10.80%,5,153,0,3.20%,96.80%,0.00%,35,35,158,22.20% +145720,895,2005,State-funded primary,82,38,44,46.30%,53.70%,8,9.80%,14,17.10%,0,82,0,0.00%,100.00%,0.00%,11,11,79,13.90% +145721,838,2019,State-funded primary,147,78,69,53.10%,46.90%,4,2.70%,18,12.20%,0,147,0,0.00%,100.00%,0.00%,30,27,121,22.30% +145722,811,4002,State-funded secondary,1101,602,499,54.70%,45.30%,40,3.60%,116,10.50%,8,1093,0,0.70%,99.30%,0.00%,217,236,1002,23.60% +145723,353,4008,State-funded secondary,982,502,480,51.10%,48.90%,22,2.20%,190,19.30%,473,508,1,48.20%,51.70%,0.10%,388,425,982,43.30% +145724,307,4002,State-funded secondary,865,376,489,43.50%,56.50%,21,2.40%,17,2.00%,294,567,4,34.00%,65.50%,0.50%,171,191,865,22.10% +145725,881,2172,State-funded primary,174,98,76,56.30%,43.70%,1,0.60%,15,8.60%,4,170,0,2.30%,97.70%,0.00%,16,22,174,12.60% +145726,881,2173,State-funded primary,239,106,133,44.40%,55.60%,7,2.90%,25,10.50%,46,191,2,19.20%,79.90%,0.80%,77,84,239,35.10% +145727,881,2174,State-funded primary,133,73,60,54.90%,45.10%,1,0.80%,24,18.00%,1,132,0,0.80%,99.20%,0.00%,14,14,133,10.50% +145728,881,2175,State-funded primary,216,104,112,48.10%,51.90%,9,4.20%,55,25.50%,46,170,0,21.30%,78.70%,0.00%,53,57,216,26.40% +145729,916,2058,State-funded primary,194,88,106,45.40%,54.60%,11,5.70%,41,21.10%,3,191,0,1.50%,98.50%,0.00%,57,59,194,30.40% +145730,204,2005,State-funded primary,105,0,105,0.00%,100.00%,3,2.90%,22,21.00%,11,94,0,10.50%,89.50%,0.00%,6,8,104,7.70% +145731,206,2003,State-funded primary,144,63,81,43.80%,56.30%,29,20.10%,29,20.10%,54,90,0,37.50%,62.50%,0.00%,75,78,130,60.00% +145732,383,7007,State-funded special school,57,21,36,36.80%,63.20%,57,100.00%,0,0.00%,15,40,2,26.30%,70.20%,3.50%,28,26,55,47.30% +145733,383,2023,State-funded primary,443,225,218,50.80%,49.20%,5,1.10%,37,8.40%,8,435,0,1.80%,98.20%,0.00%,39,35,397,8.80% +145734,925,2047,State-funded primary,75,31,44,41.30%,58.70%,3,4.00%,21,28.00%,8,67,0,10.70%,89.30%,0.00%,38,41,75,54.70% +145735,341,2040,State-funded primary,230,125,105,54.30%,45.70%,6,2.60%,35,15.20%,25,205,0,10.90%,89.10%,0.00%,107,108,191,56.50% +145736,826,4005,State-funded secondary,1420,688,732,48.50%,51.50%,34,2.40%,157,11.10%,188,1230,2,13.20%,86.60%,0.10%,374,413,1275,32.40% +145737,926,2191,State-funded primary,259,135,124,52.10%,47.90%,6,2.30%,47,18.10%,77,182,0,29.70%,70.30%,0.00%,74,78,259,30.10% +145738,926,2197,State-funded primary,199,100,99,50.30%,49.70%,4,2.00%,68,34.20%,68,131,0,34.20%,65.80%,0.00%,62,63,199,31.70% +145739,874,2014,State-funded primary,388,191,197,49.20%,50.80%,23,5.90%,77,19.80%,156,232,0,40.20%,59.80%,0.00%,168,170,388,43.80% +145740,372,2031,State-funded primary,317,172,145,54.30%,45.70%,4,1.30%,69,21.80%,15,302,0,4.70%,95.30%,0.00%,85,88,260,33.80% +145741,871,7000,State-funded special school,342,114,228,33.30%,66.70%,342,100.00%,0,0.00%,155,187,0,45.30%,54.70%,0.00%,132,111,274,40.50% +145742,319,2017,State-funded primary,192,99,93,51.60%,48.40%,3,1.60%,29,15.10%,71,121,0,37.00%,63.00%,0.00%,88,90,183,49.20% +145744,866,4005,State-funded secondary,1153,550,603,47.70%,52.30%,33,2.90%,169,14.70%,141,1011,1,12.20%,87.70%,0.10%,175,208,1153,18.00% +145745,894,2004,State-funded primary,395,194,201,49.10%,50.90%,9,2.30%,65,16.50%,86,309,0,21.80%,78.20%,0.00%,205,210,367,57.20% +145746,358,2017,State-funded primary,406,217,189,53.40%,46.60%,7,1.70%,24,5.90%,69,336,1,17.00%,82.80%,0.20%,34,32,386,8.30% +145747,336,2056,State-funded primary,200,108,92,54.00%,46.00%,5,2.50%,22,11.00%,31,169,0,15.50%,84.50%,0.00%,71,77,180,42.80% +145751,350,3335,State-funded primary,215,91,124,42.30%,57.70%,1,0.50%,12,5.60%,9,206,0,4.20%,95.80%,0.00%,15,15,215,7.00% +145752,380,2056,State-funded primary,215,129,86,60.00%,40.00%,4,1.90%,38,17.70%,15,200,0,7.00%,93.00%,0.00%,120,121,201,60.20% +145754,908,2503,State-funded primary,87,40,47,46.00%,54.00%,2,2.30%,8,9.20%,0,87,0,0.00%,100.00%,0.00%,14,14,79,17.70% +145755,908,2506,State-funded primary,166,78,88,47.00%,53.00%,6,3.60%,10,6.00%,3,163,0,1.80%,98.20%,0.00%,22,24,166,14.50% +145757,908,2524,State-funded primary,234,110,124,47.00%,53.00%,11,4.70%,33,14.10%,26,208,0,11.10%,88.90%,0.00%,103,93,203,45.80% +145758,908,2615,State-funded primary,48,22,26,45.80%,54.20%,0,0.00%,12,25.00%,0,48,0,0.00%,100.00%,0.00%,5,5,46,10.90% +145759,831,2442,State-funded primary,335,154,181,46.00%,54.00%,6,1.80%,52,15.50%,38,297,0,11.30%,88.70%,0.00%,116,134,335,40.00% +145760,831,3546,State-funded primary,675,327,348,48.40%,51.60%,11,1.60%,72,10.70%,424,251,0,62.80%,37.20%,0.00%,301,309,615,50.20% +145761,878,2424,State-funded primary,74,41,33,55.40%,44.60%,4,5.40%,9,12.20%,1,73,0,1.40%,98.60%,0.00%,11,11,69,15.90% +145762,878,3771,State-funded primary,102,48,54,47.10%,52.90%,5,4.90%,11,10.80%,4,98,0,3.90%,96.10%,0.00%,19,20,92,21.70% +145763,878,2084,State-funded primary,253,132,121,52.20%,47.80%,9,3.60%,38,15.00%,12,240,1,4.70%,94.90%,0.40%,48,50,253,19.80% +145764,878,2222,State-funded primary,155,65,90,41.90%,58.10%,3,1.90%,28,18.10%,4,151,0,2.60%,97.40%,0.00%,46,42,126,33.30% +145765,878,2253,State-funded primary,233,124,109,53.20%,46.80%,3,1.30%,24,10.30%,2,231,0,0.90%,99.10%,0.00%,25,23,194,11.90% +145766,878,2411,State-funded primary,86,36,50,41.90%,58.10%,1,1.20%,9,10.50%,1,84,1,1.20%,97.70%,1.20%,16,16,86,18.60% +145767,878,3064,State-funded primary,89,44,45,49.40%,50.60%,6,6.70%,13,14.60%,2,87,0,2.20%,97.80%,0.00%,10,10,82,12.20% +145768,878,3111,State-funded primary,96,50,46,52.10%,47.90%,2,2.10%,11,11.50%,4,92,0,4.20%,95.80%,0.00%,11,12,96,12.50% +145769,878,3450,State-funded primary,210,95,115,45.20%,54.80%,7,3.30%,23,11.00%,3,207,0,1.40%,98.60%,0.00%,17,18,210,8.60% +145770,878,3454,State-funded primary,38,22,16,57.90%,42.10%,2,5.30%,4,10.50%,0,37,1,0.00%,97.40%,2.60%,11,10,31,32.30% +145771,371,3313,State-funded primary,242,120,122,49.60%,50.40%,2,0.80%,28,11.60%,8,234,0,3.30%,96.70%,0.00%,29,31,210,14.80% +145772,881,2251,State-funded primary,99,52,47,52.50%,47.50%,3,3.00%,12,12.10%,1,98,0,1.00%,99.00%,0.00%,87,89,99,89.90% +145773,881,3221,State-funded primary,138,68,70,49.30%,50.70%,2,1.40%,15,10.90%,4,134,0,2.90%,97.10%,0.00%,8,10,138,7.20% +145774,806,4136,State-funded secondary,1461,749,712,51.30%,48.70%,35,2.40%,232,15.90%,187,1274,0,12.80%,87.20%,0.00%,410,480,1461,32.90% +145775,806,2003,State-funded primary,723,347,376,48.00%,52.00%,7,1.00%,88,12.20%,286,437,0,39.60%,60.40%,0.00%,264,270,629,42.90% +145776,926,4044,State-funded secondary,789,378,411,47.90%,52.10%,29,3.70%,97,12.30%,20,768,1,2.50%,97.30%,0.10%,101,107,789,13.60% +145777,815,4211,State-funded secondary,1513,747,766,49.40%,50.60%,35,2.30%,177,11.70%,20,1396,97,1.30%,92.30%,6.40%,127,129,1289,10.00% +145778,815,3257,State-funded primary,208,116,92,55.80%,44.20%,6,2.90%,22,10.60%,1,207,0,0.50%,99.50%,0.00%,17,18,208,8.70% +145779,929,2044,State-funded primary,75,30,45,40.00%,60.00%,1,1.30%,14,18.70%,2,73,0,2.70%,97.30%,0.00%,3,3,75,4.00% +145780,929,2215,State-funded primary,474,219,255,46.20%,53.80%,7,1.50%,51,10.80%,14,460,0,3.00%,97.00%,0.00%,45,49,422,11.60% +145781,929,2526,State-funded primary,472,217,255,46.00%,54.00%,8,1.70%,14,3.00%,9,463,0,1.90%,98.10%,0.00%,20,21,440,4.80% +145782,929,3133,State-funded primary,225,122,103,54.20%,45.80%,7,3.10%,21,9.30%,1,224,0,0.40%,99.60%,0.00%,19,20,189,10.60% +145783,929,4426,State-funded secondary,1584,782,802,49.40%,50.60%,37,2.30%,22,1.40%,53,1530,1,3.30%,96.60%,0.10%,158,163,1299,12.50% +145784,929,4800,State-funded primary,334,158,176,47.30%,52.70%,8,2.40%,31,9.30%,10,324,0,3.00%,97.00%,0.00%,32,36,298,12.10% +145786,891,3783,State-funded primary,295,148,147,50.20%,49.80%,1,0.30%,40,13.60%,14,281,0,4.70%,95.30%,0.00%,50,50,279,17.90% +145787,874,3385,State-funded primary,550,277,273,50.40%,49.60%,22,4.00%,81,14.70%,244,306,0,44.40%,55.60%,0.00%,211,216,550,39.30% +145788,893,2122,State-funded primary,359,175,184,48.70%,51.30%,2,0.60%,68,18.90%,18,339,2,5.00%,94.40%,0.60%,109,114,359,31.80% +145789,893,2139,State-funded primary,237,117,120,49.40%,50.60%,5,2.10%,39,16.50%,9,228,0,3.80%,96.20%,0.00%,129,118,205,57.60% +145790,893,3116,State-funded primary,420,209,211,49.80%,50.20%,5,1.20%,38,9.00%,21,387,12,5.00%,92.10%,2.90%,80,74,390,19.00% +145791,893,2086,State-funded primary,284,152,132,53.50%,46.50%,8,2.80%,25,8.80%,21,261,2,7.40%,91.90%,0.70%,16,16,265,6.00% +145792,893,2070,State-funded primary,374,191,183,51.10%,48.90%,5,1.30%,41,11.00%,24,349,1,6.40%,93.30%,0.30%,102,82,262,31.30% +145793,893,5202,State-funded primary,133,64,69,48.10%,51.90%,2,1.50%,30,22.60%,6,127,0,4.50%,95.50%,0.00%,73,68,117,58.10% +145794,860,2126,State-funded primary,229,118,111,51.50%,48.50%,5,2.20%,16,7.00%,28,201,0,12.20%,87.80%,0.00%,35,36,209,17.20% +145795,935,3346,State-funded primary,308,169,139,54.90%,45.10%,2,0.60%,30,9.70%,19,289,0,6.20%,93.80%,0.00%,20,22,273,8.10% +145796,936,3943,State-funded primary,628,302,326,48.10%,51.90%,12,1.90%,58,9.20%,86,542,0,13.70%,86.30%,0.00%,38,40,583,6.90% +145797,936,2093,State-funded primary,514,239,275,46.50%,53.50%,30,5.80%,60,11.70%,114,400,0,22.20%,77.80%,0.00%,70,73,456,16.00% +145798,384,2196,State-funded primary,205,95,110,46.30%,53.70%,6,2.90%,28,13.70%,5,200,0,2.40%,97.60%,0.00%,58,62,187,33.20% +145799,877,3794,State-funded primary,372,190,182,51.10%,48.90%,7,1.90%,64,17.20%,101,271,0,27.20%,72.80%,0.00%,165,169,349,48.40% +145800,877,2731,State-funded primary,309,141,168,45.60%,54.40%,3,1.00%,33,10.70%,74,235,0,23.90%,76.10%,0.00%,140,145,279,52.00% +145801,873,2058,State-funded primary,278,137,141,49.30%,50.70%,10,3.60%,27,9.70%,69,205,4,24.80%,73.70%,1.40%,22,25,278,9.00% +145804,873,3387,State-funded primary,397,197,200,49.60%,50.40%,13,3.30%,36,9.10%,29,368,0,7.30%,92.70%,0.00%,42,44,397,11.10% +145805,823,2047,State-funded primary,88,40,48,45.50%,54.50%,1,1.10%,14,15.90%,1,87,0,1.10%,98.90%,0.00%,18,18,78,23.10% +145806,831,2509,State-funded primary,172,81,91,47.10%,52.90%,5,2.90%,32,18.60%,99,73,0,57.60%,42.40%,0.00%,88,88,160,55.00% +145809,878,2214,State-funded primary,94,36,58,38.30%,61.70%,5,5.30%,13,13.80%,2,92,0,2.10%,97.90%,0.00%,25,25,94,26.60% +145810,878,3070,State-funded primary,217,108,109,49.80%,50.20%,7,3.20%,37,17.10%,33,184,0,15.20%,84.80%,0.00%,103,103,206,50.00% +145811,838,4034,State-funded secondary,462,218,244,47.20%,52.80%,6,1.30%,65,14.10%,10,452,0,2.20%,97.80%,0.00%,58,58,462,12.60% +145812,881,2191,State-funded primary,221,116,105,52.50%,47.50%,2,0.90%,35,15.80%,29,192,0,13.10%,86.90%,0.00%,79,81,198,40.90% +145813,805,2001,State-funded primary,110,50,60,45.50%,54.50%,1,0.90%,16,14.50%,3,107,0,2.70%,97.30%,0.00%,5,5,97,5.20% +145814,805,3003,State-funded primary,101,46,55,45.50%,54.50%,0,0.00%,9,8.90%,0,101,0,0.00%,100.00%,0.00%,6,6,89,6.70% +145815,886,2666,State-funded primary,446,211,235,47.30%,52.70%,6,1.30%,22,4.90%,201,236,9,45.10%,52.90%,2.00%,121,124,409,30.30% +145816,888,2075,State-funded primary,103,38,65,36.90%,63.10%,3,2.90%,10,9.70%,0,103,0,0.00%,100.00%,0.00%,4,4,103,3.90% +145817,888,2079,State-funded primary,211,104,107,49.30%,50.70%,4,1.90%,24,11.40%,3,202,6,1.40%,95.70%,2.80%,19,22,211,10.40% +145818,888,2080,State-funded primary,355,185,170,52.10%,47.90%,12,3.40%,86,24.20%,17,338,0,4.80%,95.20%,0.00%,133,134,355,37.70% +145819,815,4216,State-funded secondary,883,438,445,49.60%,50.40%,16,1.80%,94,10.60%,24,859,0,2.70%,97.30%,0.00%,115,122,765,15.90% +145820,815,2357,State-funded primary,203,90,113,44.30%,55.70%,5,2.50%,12,5.90%,2,201,0,1.00%,99.00%,0.00%,14,16,203,7.90% +145821,815,2380,State-funded primary,325,162,163,49.80%,50.20%,9,2.80%,18,5.50%,12,313,0,3.70%,96.30%,0.00%,71,71,297,23.90% +145822,815,2427,State-funded primary,376,182,194,48.40%,51.60%,12,3.20%,39,10.40%,2,374,0,0.50%,99.50%,0.00%,31,32,338,9.50% +145823,940,2020,State-funded primary,460,198,262,43.00%,57.00%,28,6.10%,73,15.90%,87,372,1,18.90%,80.90%,0.20%,130,132,460,28.70% +145824,940,2021,State-funded primary,384,199,185,51.80%,48.20%,20,5.20%,47,12.20%,80,304,0,20.80%,79.20%,0.00%,64,64,332,19.30% +145827,891,2418,State-funded primary,173,85,88,49.10%,50.90%,0,0.00%,24,13.90%,10,163,0,5.80%,94.20%,0.00%,21,21,173,12.10% +145828,891,2910,State-funded primary,208,104,104,50.00%,50.00%,1,0.50%,35,16.80%,9,199,0,4.30%,95.70%,0.00%,46,46,208,22.10% +145832,373,2313,State-funded primary,418,213,205,51.00%,49.00%,8,1.90%,46,11.00%,5,413,0,1.20%,98.80%,0.00%,35,36,418,8.60% +145833,860,3053,State-funded primary,208,104,104,50.00%,50.00%,3,1.40%,9,4.30%,4,199,5,1.90%,95.70%,2.40%,8,8,208,3.80% +145834,860,2374,State-funded primary,294,129,165,43.90%,56.10%,2,0.70%,65,22.10%,20,274,0,6.80%,93.20%,0.00%,113,119,245,48.60% +145835,935,2133,State-funded primary,236,117,119,49.60%,50.40%,2,0.80%,19,8.10%,2,234,0,0.80%,99.20%,0.00%,24,26,236,11.00% +145836,885,2172,State-funded primary,405,178,227,44.00%,56.00%,11,2.70%,61,15.10%,172,233,0,42.50%,57.50%,0.00%,60,65,405,16.00% +145837,885,3017,State-funded primary,83,39,44,47.00%,53.00%,1,1.20%,11,13.30%,1,82,0,1.20%,98.80%,0.00%,3,4,83,4.80% +145838,885,3089,State-funded primary,183,90,93,49.20%,50.80%,2,1.10%,33,18.00%,5,178,0,2.70%,97.30%,0.00%,21,21,183,11.50% +145842,933,2031,State-funded primary,34,17,17,50.00%,50.00%,1,2.90%,9,26.50%,1,33,0,2.90%,97.10%,0.00%,7,7,31,22.60% +145843,908,4005,State-funded secondary,931,445,486,47.80%,52.20%,12,1.30%,97,10.40%,23,879,29,2.50%,94.40%,3.10%,201,204,876,23.30% +145844,878,2070,State-funded primary,26,11,15,42.30%,57.70%,2,7.70%,3,11.50%,0,26,0,0.00%,100.00%,0.00%,5,6,22,27.30% +145845,352,7001,State-funded special school,252,48,204,19.00%,81.00%,252,100.00%,0,0.00%,89,163,0,35.30%,64.70%,0.00%,163,146,219,66.70% +145846,815,2009,State-funded primary,60,29,31,48.30%,51.70%,1,1.70%,12,20.00%,1,59,0,1.70%,98.30%,0.00%,5,5,60,8.30% +145847,891,2035,State-funded primary,314,148,166,47.10%,52.90%,3,1.00%,75,23.90%,77,237,0,24.50%,75.50%,0.00%,152,142,274,51.80% +145848,372,4007,State-funded secondary,1983,997,986,50.30%,49.70%,46,2.30%,166,8.40%,74,1846,63,3.70%,93.10%,3.20%,419,434,1604,27.10% +145849,304,6007,Independent school,13,3,10,23.10%,76.90%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145850,355,7000,State-funded special school,123,13,110,10.60%,89.40%,123,100.00%,0,0.00%,5,118,0,4.10%,95.90%,0.00%,99,106,123,86.20% +145851,935,2217,State-funded primary,375,182,193,48.50%,51.50%,6,1.60%,45,12.00%,39,336,0,10.40%,89.60%,0.00%,121,124,344,36.00% +145852,866,7002,State-funded special school,78,12,66,15.40%,84.60%,78,100.00%,0,0.00%,2,76,0,2.60%,97.40%,0.00%,46,55,78,70.50% +145853,937,2060,State-funded primary,181,84,97,46.40%,53.60%,2,1.10%,28,15.50%,50,131,0,27.60%,72.40%,0.00%,85,87,181,48.10% +145854,350,2015,State-funded primary,421,209,212,49.60%,50.40%,8,1.90%,51,12.10%,80,341,0,19.00%,81.00%,0.00%,197,195,383,50.90% +145855,831,2020,State-funded primary,394,181,213,45.90%,54.10%,13,3.30%,55,14.00%,78,316,0,19.80%,80.20%,0.00%,150,156,371,42.00% +145856,881,2176,State-funded primary,163,79,84,48.50%,51.50%,1,0.60%,21,12.90%,7,156,0,4.30%,95.70%,0.00%,48,48,163,29.40% +145857,208,4006,State-funded secondary,267,114,153,42.70%,57.30%,5,1.90%,42,15.70%,116,151,0,43.40%,56.60%,0.00%,111,140,267,52.40% +145859,330,6041,Independent school,43,7,36,16.30%,83.70%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145860,315,4001,State-funded secondary,846,345,501,40.80%,59.20%,26,3.10%,77,9.10%,318,528,0,37.60%,62.40%,0.00%,315,356,846,42.10% +145861,822,4006,State-funded secondary,580,287,293,49.50%,50.50%,22,3.80%,73,12.60%,31,548,1,5.30%,94.50%,0.20%,122,131,580,22.60% +145863,890,4005,State-funded secondary,1105,563,542,51.00%,49.00%,21,1.90%,77,7.00%,39,1066,0,3.50%,96.50%,0.00%,373,403,1074,37.50% +145864,373,4014,State-funded secondary,988,492,496,49.80%,50.20%,11,1.10%,178,18.00%,569,393,26,57.60%,39.80%,2.60%,506,532,958,55.50% +145866,313,4007,State-funded secondary,844,405,439,48.00%,52.00%,21,2.50%,134,15.90%,335,509,0,39.70%,60.30%,0.00%,262,283,844,33.50% +145868,305,4005,State-funded secondary,900,0,900,0.00%,100.00%,36,4.00%,176,19.60%,107,785,8,11.90%,87.20%,0.90%,136,158,900,17.60% +145869,384,4008,State-funded secondary,335,266,68,79.40%,20.30%,4,1.20%,16,4.80%,5,330,0,1.50%,98.50%,0.00%,26,0,0,0.00% +145870,356,2013,State-funded primary,341,177,164,51.90%,48.10%,10,2.90%,20,5.90%,25,316,0,7.30%,92.70%,0.00%,14,14,299,4.70% +145872,821,4001,State-funded secondary,1165,534,631,45.80%,54.20%,31,2.70%,141,12.10%,499,664,2,42.80%,57.00%,0.20%,372,430,1165,36.90% +145873,352,4014,State-funded secondary,964,418,546,43.40%,56.60%,35,3.60%,98,10.20%,293,671,0,30.40%,69.60%,0.00%,447,499,964,51.80% +145874,866,7003,State-funded special school,91,18,73,19.80%,80.20%,91,100.00%,0,0.00%,1,89,1,1.10%,97.80%,1.10%,38,32,70,45.70% +145875,306,4012,State-funded secondary,1021,409,612,40.10%,59.90%,37,3.60%,124,12.10%,186,700,135,18.20%,68.60%,13.20%,248,252,892,28.30% +145877,806,7002,State-funded special school,126,45,81,35.70%,64.30%,125,99.20%,1,0.80%,28,98,0,22.20%,77.80%,0.00%,73,70,116,60.30% +145878,330,4032,State-funded secondary,608,0,608,0.00%,100.00%,4,0.70%,112,18.40%,534,73,1,87.80%,12.00%,0.20%,229,259,608,42.60% +145879,383,2024,State-funded primary,278,145,133,52.20%,47.80%,0,0.00%,28,10.10%,43,235,0,15.50%,84.50%,0.00%,82,86,278,30.90% +145880,881,2177,State-funded primary,350,159,191,45.40%,54.60%,3,0.90%,23,6.60%,100,250,0,28.60%,71.40%,0.00%,41,43,289,14.90% +145883,866,4006,State-funded secondary,878,450,428,51.30%,48.70%,29,3.30%,105,12.00%,71,787,20,8.10%,89.60%,2.30%,101,110,764,14.40% +145887,936,2040,State-funded primary,241,113,128,46.90%,53.10%,6,2.50%,37,15.40%,44,186,11,18.30%,77.20%,4.60%,45,46,241,19.10% +145888,210,2009,State-funded primary,244,120,124,49.20%,50.80%,7,2.90%,48,19.70%,70,173,1,28.70%,70.90%,0.40%,132,126,216,58.30% +145889,860,4017,State-funded secondary,1141,558,583,48.90%,51.10%,35,3.10%,142,12.40%,219,920,2,19.20%,80.60%,0.20%,176,194,1141,17.00% +145890,919,4030,State-funded secondary,744,307,437,41.30%,58.70%,28,3.80%,94,12.60%,42,702,0,5.60%,94.40%,0.00%,112,125,744,16.80% +145892,867,4001,State-funded secondary,1051,502,549,47.80%,52.20%,33,3.10%,124,11.80%,91,943,17,8.70%,89.70%,1.60%,114,132,1019,13.00% +145893,356,4005,State-funded secondary,1071,531,540,49.60%,50.40%,43,4.00%,197,18.40%,139,922,10,13.00%,86.10%,0.90%,177,200,1071,18.70% +145894,357,4002,State-funded secondary,952,450,502,47.30%,52.70%,31,3.30%,133,14.00%,80,832,40,8.40%,87.40%,4.20%,278,292,952,30.70% +145895,203,4008,State-funded secondary,895,393,502,43.90%,56.10%,19,2.10%,86,9.60%,154,726,15,17.20%,81.10%,1.70%,180,230,895,25.70% +145897,373,4015,State-funded secondary,787,403,384,51.20%,48.80%,13,1.70%,103,13.10%,245,541,1,31.10%,68.70%,0.10%,155,173,787,22.00% +145898,936,4012,State-funded secondary,521,252,269,48.40%,51.60%,22,4.20%,92,17.70%,54,462,5,10.40%,88.70%,1.00%,134,154,521,29.60% +145899,800,2006,State-funded primary,120,53,67,44.20%,55.80%,7,5.80%,19,15.80%,33,87,0,27.50%,72.50%,0.00%,27,27,120,22.50% +145900,391,4006,State-funded secondary,317,150,167,47.30%,52.70%,7,2.20%,14,4.40%,53,264,0,16.70%,83.30%,0.00%,120,106,229,46.30% +145902,925,2048,State-funded primary,293,146,147,49.80%,50.20%,11,3.80%,28,9.60%,38,255,0,13.00%,87.00%,0.00%,54,56,293,19.10% +145903,941,2234,State-funded primary,346,187,159,54.00%,46.00%,0,0.00%,48,13.90%,11,335,0,3.20%,96.80%,0.00%,27,28,346,8.10% +145906,940,7003,State-funded special school,141,49,92,34.80%,65.20%,139,98.60%,2,1.40%,10,131,0,7.10%,92.90%,0.00%,56,57,134,42.50% +145907,878,2071,State-funded primary,254,120,134,47.20%,52.80%,6,2.40%,24,9.40%,7,247,0,2.80%,97.20%,0.00%,51,49,217,22.60% +145912,878,2082,State-funded primary,186,97,89,52.20%,47.80%,4,2.20%,18,9.70%,15,171,0,8.10%,91.90%,0.00%,40,31,142,21.80% +145914,926,2199,State-funded primary,202,105,97,52.00%,48.00%,5,2.50%,25,12.40%,40,162,0,19.80%,80.20%,0.00%,33,34,202,16.80% +145916,881,4029,State-funded secondary,1112,551,561,49.60%,50.40%,30,2.70%,113,10.20%,107,1003,2,9.60%,90.20%,0.20%,121,143,1112,12.90% +145917,309,7003,State-funded special school,122,24,98,19.70%,80.30%,122,100.00%,0,0.00%,12,109,1,9.80%,89.30%,0.80%,55,59,111,53.20% +145918,888,1124,State-funded AP school,1,0,1,0.00%,100.00%,0,0.00%,1,100.00%,0,1,0,0.00%,100.00%,0.00%,0,1,1,100.00% +145921,302,4011,State-funded secondary,827,352,475,42.60%,57.40%,23,2.80%,110,13.30%,523,304,0,63.20%,36.80%,0.00%,376,484,827,58.50% +145922,353,7003,State-funded special school,65,5,60,7.70%,92.30%,65,100.00%,0,0.00%,0,65,0,0.00%,100.00%,0.00%,45,29,38,76.30% +145923,886,4021,State-funded secondary,826,396,430,47.90%,52.10%,30,3.60%,154,18.60%,39,787,0,4.70%,95.30%,0.00%,294,315,826,38.10% +145924,873,2073,State-funded primary,120,59,61,49.20%,50.80%,2,1.70%,19,15.80%,33,87,0,27.50%,72.50%,0.00%,18,18,75,24.00% +145925,938,2054,State-funded primary,308,159,149,51.60%,48.40%,5,1.60%,33,10.70%,20,288,0,6.50%,93.50%,0.00%,42,43,308,14.00% +145926,887,2021,State-funded primary,301,153,148,50.80%,49.20%,26,8.60%,70,23.30%,23,278,0,7.60%,92.40%,0.00%,169,174,290,60.00% +145927,383,4077,State-funded secondary,1208,606,602,50.20%,49.80%,13,1.10%,248,20.50%,532,675,1,44.00%,55.90%,0.10%,624,690,1208,57.10% +145928,372,2033,State-funded primary,260,137,123,52.70%,47.30%,7,2.70%,32,12.30%,17,243,0,6.50%,93.50%,0.00%,85,100,233,42.90% +145929,811,4003,State-funded secondary,1113,529,584,47.50%,52.50%,24,2.20%,98,8.80%,233,878,2,20.90%,78.90%,0.20%,307,337,1113,30.30% +145930,371,2015,State-funded primary,324,152,172,46.90%,53.10%,3,0.90%,57,17.60%,38,286,0,11.70%,88.30%,0.00%,141,137,299,45.80% +145931,881,4030,State-funded secondary,196,66,130,33.70%,66.30%,1,0.50%,21,10.70%,28,165,3,14.30%,84.20%,1.50%,38,38,135,28.10% +145932,925,6009,Independent school,84,15,69,17.90%,82.10%,10,11.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145933,371,2016,State-funded primary,189,77,112,40.70%,59.30%,1,0.50%,20,10.60%,51,138,0,27.00%,73.00%,0.00%,85,86,165,52.10% +145935,371,2018,State-funded primary,399,195,204,48.90%,51.10%,7,1.80%,46,11.50%,79,320,0,19.80%,80.20%,0.00%,32,35,399,8.80% +145936,380,2042,State-funded primary,505,250,255,49.50%,50.50%,10,2.00%,71,14.10%,292,213,0,57.80%,42.20%,0.00%,150,157,452,34.70% +145937,384,4013,State-funded secondary,935,462,473,49.40%,50.60%,20,2.10%,143,15.30%,70,864,1,7.50%,92.40%,0.10%,259,282,935,30.20% +145938,384,4014,State-funded secondary,1064,538,526,50.60%,49.40%,15,1.40%,155,14.60%,46,1012,6,4.30%,95.10%,0.60%,366,374,988,37.90% +145939,384,2030,State-funded primary,456,222,234,48.70%,51.30%,12,2.60%,49,10.70%,232,224,0,50.90%,49.10%,0.00%,158,161,420,38.30% +145940,384,2031,State-funded primary,222,107,115,48.20%,51.80%,12,5.40%,29,13.10%,18,204,0,8.10%,91.90%,0.00%,89,90,200,45.00% +145941,384,2036,State-funded primary,320,162,158,50.60%,49.40%,2,0.60%,34,10.60%,9,311,0,2.80%,97.20%,0.00%,27,27,292,9.20% +145943,373,4016,State-funded secondary,902,423,479,46.90%,53.10%,17,1.90%,202,22.40%,34,868,0,3.80%,96.20%,0.00%,356,382,902,42.40% +145944,311,4014,State-funded secondary,575,275,300,47.80%,52.20%,15,2.60%,49,8.50%,155,420,0,27.00%,73.00%,0.00%,171,177,513,34.50% +145945,869,4002,State-funded secondary,723,350,373,48.40%,51.60%,24,3.30%,71,9.80%,59,664,0,8.20%,91.80%,0.00%,153,168,632,26.60% +145946,302,6016,Independent school,74,74,0,100.00%,0.00%,1,1.40%,4,5.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145949,891,6039,Independent school,20,6,14,30.00%,70.00%,18,90.00%,1,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145950,861,6017,Independent school,10,4,6,40.00%,60.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145951,886,2098,State-funded primary,348,164,184,47.10%,52.90%,4,1.10%,37,10.60%,162,185,1,46.60%,53.20%,0.30%,172,173,319,54.20% +145952,892,4010,State-funded secondary,1074,514,560,47.90%,52.10%,7,0.70%,175,16.30%,93,981,0,8.70%,91.30%,0.00%,511,559,1051,53.20% +145954,925,4043,State-funded secondary,700,349,351,49.90%,50.10%,19,2.70%,175,25.00%,35,663,2,5.00%,94.70%,0.30%,399,423,700,60.40% +145955,308,2022,State-funded primary,138,67,71,48.60%,51.40%,3,2.20%,24,17.40%,79,59,0,57.20%,42.80%,0.00%,58,60,138,43.50% +145956,929,2006,State-funded primary,471,251,220,53.30%,46.70%,7,1.50%,91,19.30%,7,464,0,1.50%,98.50%,0.00%,147,149,392,38.00% +145957,929,5950,State-funded special school,118,34,84,28.80%,71.20%,118,100.00%,0,0.00%,5,113,0,4.20%,95.80%,0.00%,65,55,99,55.60% +145960,926,6018,Independent school,15,2,13,13.30%,86.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145962,919,6009,Independent school,13,13,0,100.00%,0.00%,2,15.40%,11,84.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145965,908,2432,State-funded primary,367,184,183,50.10%,49.90%,6,1.60%,67,18.30%,7,360,0,1.90%,98.10%,0.00%,90,89,346,25.70% +145966,830,5409,State-funded secondary,1279,638,641,49.90%,50.10%,23,1.80%,178,13.90%,34,1232,13,2.70%,96.30%,1.00%,291,290,1106,26.20% +145967,830,2212,State-funded primary,124,59,65,47.60%,52.40%,1,0.80%,28,22.60%,2,121,1,1.60%,97.60%,0.80%,53,42,104,40.40% +145968,308,2077,State-funded primary,451,213,238,47.20%,52.80%,21,4.70%,59,13.10%,284,167,0,63.00%,37.00%,0.00%,191,199,418,47.60% +145969,919,2444,State-funded primary,270,141,129,52.20%,47.80%,5,1.90%,31,11.50%,52,218,0,19.30%,80.70%,0.00%,44,45,259,17.40% +145970,856,3432,State-funded primary,456,247,209,54.20%,45.80%,2,0.40%,31,6.80%,129,326,1,28.30%,71.50%,0.20%,99,95,413,23.00% +145972,855,3330,State-funded primary,134,72,62,53.70%,46.30%,0,0.00%,19,14.20%,8,126,0,6.00%,94.00%,0.00%,24,24,134,17.90% +145973,855,3331,State-funded primary,216,111,105,51.40%,48.60%,10,4.60%,33,15.30%,58,155,3,26.90%,71.80%,1.40%,81,82,216,38.00% +145974,855,3044,State-funded primary,207,107,100,51.70%,48.30%,3,1.40%,22,10.60%,24,183,0,11.60%,88.40%,0.00%,9,9,207,4.30% +145975,926,3125,State-funded primary,181,85,96,47.00%,53.00%,4,2.20%,13,7.20%,6,173,2,3.30%,95.60%,1.10%,27,28,181,15.50% +145976,808,2085,State-funded primary,151,71,80,47.00%,53.00%,0,0.00%,21,13.90%,0,151,0,0.00%,100.00%,0.00%,9,9,131,6.90% +145977,319,2001,State-funded primary,686,311,375,45.30%,54.70%,13,1.90%,44,6.40%,236,450,0,34.40%,65.60%,0.00%,62,62,645,9.60% +145978,888,2006,State-funded primary,298,129,169,43.30%,56.70%,12,4.00%,33,11.10%,103,195,0,34.60%,65.40%,0.00%,113,117,298,39.30% +145979,935,2221,State-funded primary,76,40,36,52.60%,47.40%,2,2.60%,13,17.10%,2,74,0,2.60%,97.40%,0.00%,9,11,76,14.50% +145980,845,6065,Independent school,30,3,27,10.00%,90.00%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +145981,895,2258,State-funded primary,209,105,104,50.20%,49.80%,3,1.40%,5,2.40%,7,202,0,3.30%,96.70%,0.00%,14,14,209,6.70% +145982,831,2023,State-funded primary,114,58,56,50.90%,49.10%,1,0.90%,16,14.00%,63,51,0,55.30%,44.70%,0.00%,68,68,101,67.30% +145983,840,2233,State-funded primary,178,79,99,44.40%,55.60%,7,3.90%,44,24.70%,2,176,0,1.10%,98.90%,0.00%,102,92,162,56.80% +145984,308,2072,State-funded primary,493,242,251,49.10%,50.90%,13,2.60%,64,13.00%,395,98,0,80.10%,19.90%,0.00%,172,185,409,45.20% +145985,308,2080,State-funded primary,661,330,331,49.90%,50.10%,12,1.80%,27,4.10%,193,468,0,29.20%,70.80%,0.00%,238,247,606,40.80% +145986,308,2093,State-funded primary,408,187,221,45.80%,54.20%,14,3.40%,40,9.80%,233,175,0,57.10%,42.90%,0.00%,150,152,363,41.90% +145987,881,7044,State-funded special school,134,36,98,26.90%,73.10%,133,99.30%,1,0.70%,15,119,0,11.20%,88.80%,0.00%,53,54,119,45.40% +145988,881,2629,State-funded primary,180,86,94,47.80%,52.20%,4,2.20%,17,9.40%,33,147,0,18.30%,81.70%,0.00%,14,14,180,7.80% +145989,881,2483,State-funded primary,163,88,75,54.00%,46.00%,2,1.20%,25,15.30%,44,119,0,27.00%,73.00%,0.00%,36,36,163,22.10% +145990,881,2655,State-funded primary,446,238,208,53.40%,46.60%,14,3.10%,16,3.60%,117,329,0,26.20%,73.80%,0.00%,43,61,411,14.80% +145991,881,2707,State-funded primary,173,80,93,46.20%,53.80%,6,3.50%,30,17.30%,90,83,0,52.00%,48.00%,0.00%,43,44,139,31.70% +145992,881,3256,State-funded primary,307,143,164,46.60%,53.40%,4,1.30%,28,9.10%,25,282,0,8.10%,91.90%,0.00%,64,81,307,26.40% +145993,881,2323,State-funded primary,58,24,34,41.40%,58.60%,5,8.60%,6,10.30%,6,52,0,10.30%,89.70%,0.00%,14,14,58,24.10% +145994,881,3411,State-funded primary,201,100,101,49.80%,50.20%,4,2.00%,17,8.50%,9,191,1,4.50%,95.00%,0.50%,34,36,201,17.90% +145995,881,3441,State-funded primary,207,95,112,45.90%,54.10%,11,5.30%,39,18.80%,12,192,3,5.80%,92.80%,1.40%,38,39,195,20.00% +145996,881,3461,State-funded primary,399,190,209,47.60%,52.40%,4,1.00%,36,9.00%,28,371,0,7.00%,93.00%,0.00%,42,45,399,11.30% +145997,881,3467,State-funded primary,161,68,93,42.20%,57.80%,8,5.00%,26,16.10%,5,156,0,3.10%,96.90%,0.00%,45,45,161,28.00% +145998,881,2839,State-funded primary,362,196,166,54.10%,45.90%,13,3.60%,40,11.00%,57,305,0,15.70%,84.30%,0.00%,48,49,362,13.50% +145999,881,2873,State-funded primary,317,157,160,49.50%,50.50%,4,1.30%,33,10.40%,8,308,1,2.50%,97.20%,0.30%,9,9,317,2.80% +146000,881,2928,State-funded primary,237,120,117,50.60%,49.40%,6,2.50%,38,16.00%,31,206,0,13.10%,86.90%,0.00%,36,36,237,15.20% +146001,881,3841,State-funded primary,612,303,309,49.50%,50.50%,17,2.80%,42,6.90%,64,547,1,10.50%,89.40%,0.20%,38,41,612,6.70% +146002,850,2021,State-funded primary,250,120,130,48.00%,52.00%,9,3.60%,26,10.40%,25,225,0,10.00%,90.00%,0.00%,55,61,250,24.40% +146003,383,3044,State-funded primary,202,101,101,50.00%,50.00%,2,1.00%,24,11.90%,2,200,0,1.00%,99.00%,0.00%,19,19,202,9.40% +146004,802,3348,State-funded primary,80,40,40,50.00%,50.00%,0,0.00%,8,10.00%,10,70,0,12.50%,87.50%,0.00%,5,5,80,6.30% +146005,815,2301,State-funded primary,111,43,68,38.70%,61.30%,3,2.70%,12,10.80%,0,111,0,0.00%,100.00%,0.00%,1,1,111,0.90% +146006,815,2422,State-funded primary,115,62,53,53.90%,46.10%,4,3.50%,12,10.40%,2,113,0,1.70%,98.30%,0.00%,29,31,101,30.70% +146007,815,3251,State-funded primary,242,108,134,44.60%,55.40%,4,1.70%,16,6.60%,7,235,0,2.90%,97.10%,0.00%,28,28,242,11.60% +146008,941,2038,State-funded primary,46,20,26,43.50%,56.50%,0,0.00%,4,8.70%,7,39,0,15.20%,84.80%,0.00%,1,1,46,2.20% +146009,941,2131,State-funded primary,183,102,81,55.70%,44.30%,4,2.20%,17,9.30%,13,170,0,7.10%,92.90%,0.00%,19,19,183,10.40% +146010,891,2234,State-funded primary,455,216,239,47.50%,52.50%,3,0.70%,38,8.40%,98,357,0,21.50%,78.50%,0.00%,86,88,420,21.00% +146011,891,2745,State-funded primary,97,49,48,50.50%,49.50%,0,0.00%,4,4.10%,6,91,0,6.20%,93.80%,0.00%,9,8,91,8.80% +146012,373,2309,State-funded primary,242,109,133,45.00%,55.00%,14,5.80%,45,18.60%,7,235,0,2.90%,97.10%,0.00%,26,27,242,11.20% +146013,803,7031,State-funded special school,126,44,82,34.90%,65.10%,126,100.00%,0,0.00%,11,115,0,8.70%,91.30%,0.00%,37,33,105,31.40% +146014,803,7000,State-funded special school,146,43,103,29.50%,70.50%,146,100.00%,0,0.00%,5,141,0,3.40%,96.60%,0.00%,39,40,146,27.40% +146015,882,3327,State-funded primary,422,223,199,52.80%,47.20%,10,2.40%,60,14.20%,183,239,0,43.40%,56.60%,0.00%,83,88,422,20.90% +146016,882,3329,State-funded primary,207,113,94,54.60%,45.40%,5,2.40%,30,14.50%,12,195,0,5.80%,94.20%,0.00%,34,35,207,16.90% +146017,808,2324,State-funded primary,218,112,106,51.40%,48.60%,3,1.40%,23,10.60%,10,208,0,4.60%,95.40%,0.00%,40,35,180,19.40% +146018,808,2020,State-funded primary,130,63,67,48.50%,51.50%,3,2.30%,19,14.60%,3,127,0,2.30%,97.70%,0.00%,7,8,103,7.80% +146019,808,2042,State-funded primary,600,300,300,50.00%,50.00%,5,0.80%,37,6.20%,47,553,0,7.80%,92.20%,0.00%,49,56,522,10.70% +146020,808,2075,State-funded primary,244,118,126,48.40%,51.60%,4,1.60%,36,14.80%,8,236,0,3.30%,96.70%,0.00%,78,79,199,39.70% +146021,935,2069,State-funded primary,484,227,257,46.90%,53.10%,6,1.20%,43,8.90%,5,479,0,1.00%,99.00%,0.00%,83,84,459,18.30% +146022,936,2229,State-funded primary,113,58,55,51.30%,48.70%,1,0.90%,13,11.50%,4,109,0,3.50%,96.50%,0.00%,11,3,83,3.60% +146023,936,2391,State-funded primary,382,191,191,50.00%,50.00%,10,2.60%,70,18.30%,36,346,0,9.40%,90.60%,0.00%,33,33,382,8.60% +146024,936,2961,State-funded primary,170,89,81,52.40%,47.60%,7,4.10%,16,9.40%,8,162,0,4.70%,95.30%,0.00%,19,20,170,11.80% +146025,936,5212,State-funded primary,348,155,193,44.50%,55.50%,29,8.30%,54,15.50%,32,316,0,9.20%,90.80%,0.00%,74,76,348,21.80% +146026,894,2201,State-funded primary,469,214,255,45.60%,54.40%,9,1.90%,53,11.30%,107,360,2,22.80%,76.80%,0.40%,40,42,423,9.90% +146027,885,2187,State-funded primary,166,75,91,45.20%,54.80%,3,1.80%,32,19.30%,2,164,0,1.20%,98.80%,0.00%,20,19,141,13.50% +146028,816,2176,State-funded primary,298,146,152,49.00%,51.00%,9,3.00%,31,10.40%,48,250,0,16.10%,83.90%,0.00%,66,63,256,24.60% +146029,852,2010,State-funded primary,75,34,41,45.30%,54.70%,5,6.70%,7,9.30%,7,68,0,9.30%,90.70%,0.00%,51,51,75,68.00% +146030,888,6115,Independent school,3,3,0,100.00%,0.00%,2,66.70%,1,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146031,206,4004,State-funded secondary,758,442,316,58.30%,41.70%,21,2.80%,140,18.50%,55,703,0,7.30%,92.70%,0.00%,163,0,2,0.00% +146034,384,2038,State-funded primary,268,125,143,46.60%,53.40%,4,1.50%,61,22.80%,24,224,20,9.00%,83.60%,7.50%,106,107,246,43.50% +146035,941,2235,State-funded primary,233,107,126,45.90%,54.10%,18,7.70%,30,12.90%,107,126,0,45.90%,54.10%,0.00%,82,82,211,38.90% +146036,846,6026,Independent school,14,14,0,100.00%,0.00%,1,7.10%,5,35.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146048,825,3043,State-funded primary,184,102,82,55.40%,44.60%,6,3.30%,34,18.50%,10,174,0,5.40%,94.60%,0.00%,25,25,184,13.60% +146049,380,2112,State-funded primary,315,155,160,49.20%,50.80%,4,1.30%,41,13.00%,20,295,0,6.30%,93.70%,0.00%,44,47,315,14.90% +146050,873,2226,State-funded primary,193,92,101,47.70%,52.30%,8,4.10%,31,16.10%,6,187,0,3.10%,96.90%,0.00%,36,36,193,18.70% +146051,908,3715,State-funded primary,121,56,65,46.30%,53.70%,1,0.80%,9,7.40%,0,121,0,0.00%,100.00%,0.00%,21,13,86,15.10% +146052,830,7014,State-funded special school,97,24,73,24.70%,75.30%,97,100.00%,0,0.00%,2,95,0,2.10%,97.90%,0.00%,53,54,97,55.70% +146053,830,7017,State-funded special school,79,26,53,32.90%,67.10%,79,100.00%,0,0.00%,2,77,0,2.50%,97.50%,0.00%,25,26,61,42.60% +146054,830,7019,State-funded special school,97,23,74,23.70%,76.30%,97,100.00%,0,0.00%,4,92,1,4.10%,94.80%,1.00%,38,32,77,41.60% +146055,830,1102,State-funded AP school,92,18,74,19.60%,80.40%,27,29.30%,65,70.70%,0,92,0,0.00%,100.00%,0.00%,61,65,92,70.70% +146056,830,1106,State-funded AP school,6,2,4,33.30%,66.70%,0,0.00%,4,66.70%,0,6,0,0.00%,100.00%,0.00%,5,5,6,83.30% +146057,830,1111,State-funded AP school,127,36,91,28.30%,71.70%,9,7.10%,118,92.90%,1,125,1,0.80%,98.40%,0.80%,86,93,127,73.20% +146058,830,7001,State-funded special school,140,13,127,9.30%,90.70%,140,100.00%,0,0.00%,7,133,0,5.00%,95.00%,0.00%,73,65,121,53.70% +146060,926,3106,State-funded primary,159,93,66,58.50%,41.50%,10,6.30%,12,7.50%,3,141,15,1.90%,88.70%,9.40%,37,38,159,23.90% +146061,926,3141,State-funded primary,178,97,81,54.50%,45.50%,2,1.10%,31,17.40%,2,176,0,1.10%,98.90%,0.00%,31,32,178,18.00% +146062,926,3390,State-funded primary,86,51,35,59.30%,40.70%,0,0.00%,5,5.80%,0,86,0,0.00%,100.00%,0.00%,13,13,84,15.50% +146063,926,4037,State-funded secondary,745,371,374,49.80%,50.20%,8,1.10%,74,9.90%,26,719,0,3.50%,96.50%,0.00%,96,111,745,14.90% +146065,926,2102,State-funded primary,72,36,36,50.00%,50.00%,3,4.20%,14,19.40%,1,71,0,1.40%,98.60%,0.00%,23,25,72,34.70% +146066,802,2285,State-funded primary,620,301,319,48.50%,51.50%,44,7.10%,107,17.30%,28,592,0,4.50%,95.50%,0.00%,146,148,620,23.90% +146067,807,2233,State-funded primary,66,34,32,51.50%,48.50%,1,1.50%,9,13.60%,2,64,0,3.00%,97.00%,0.00%,24,24,55,43.60% +146068,372,3329,State-funded primary,119,59,60,49.60%,50.40%,6,5.00%,19,16.00%,2,117,0,1.70%,98.30%,0.00%,22,22,109,20.20% +146069,933,2030,State-funded primary,42,24,18,57.10%,42.90%,3,7.10%,10,23.80%,3,39,0,7.10%,92.90%,0.00%,13,13,31,41.90% +146070,860,7015,State-funded special school,223,65,158,29.10%,70.90%,223,100.00%,0,0.00%,40,183,0,17.90%,82.10%,0.00%,87,65,158,41.10% +146071,860,7016,State-funded special school,201,52,149,25.90%,74.10%,201,100.00%,0,0.00%,44,157,0,21.90%,78.10%,0.00%,85,86,200,43.00% +146072,935,1108,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +146073,866,2000,State-funded primary,491,247,244,50.30%,49.70%,13,2.60%,48,9.80%,99,392,0,20.20%,79.80%,0.00%,99,102,464,22.00% +146074,885,3332,State-funded primary,197,92,105,46.70%,53.30%,3,1.50%,22,11.20%,4,193,0,2.00%,98.00%,0.00%,20,22,197,11.20% +146075,330,2186,State-funded primary,686,322,364,46.90%,53.10%,12,1.70%,117,17.10%,480,206,0,70.00%,30.00%,0.00%,225,222,632,35.10% +146076,908,2046,State-funded primary,130,60,70,46.20%,53.80%,2,1.50%,11,8.50%,4,125,1,3.10%,96.20%,0.80%,30,30,130,23.10% +146077,908,2047,State-funded primary,268,121,147,45.10%,54.90%,16,6.00%,54,20.10%,8,260,0,3.00%,97.00%,0.00%,105,109,268,40.70% +146078,860,6048,Independent school,14,1,13,7.10%,92.90%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146079,831,2021,State-funded primary,550,275,275,50.00%,50.00%,18,3.30%,83,15.10%,202,348,0,36.70%,63.30%,0.00%,335,320,513,62.40% +146080,831,2022,State-funded primary,625,314,311,50.20%,49.80%,15,2.40%,97,15.50%,146,479,0,23.40%,76.60%,0.00%,277,274,569,48.20% +146081,886,2099,State-funded primary,407,201,206,49.40%,50.60%,10,2.50%,71,17.40%,26,380,1,6.40%,93.40%,0.20%,153,155,372,41.70% +146084,926,2200,State-funded primary,164,83,81,50.60%,49.40%,0,0.00%,22,13.40%,48,113,3,29.30%,68.90%,1.80%,15,16,148,10.80% +146085,860,2033,State-funded primary,243,121,122,49.80%,50.20%,7,2.90%,45,18.50%,29,214,0,11.90%,88.10%,0.00%,53,54,201,26.90% +146086,935,2222,State-funded primary,184,84,100,45.70%,54.30%,4,2.20%,28,15.20%,94,90,0,51.10%,48.90%,0.00%,35,35,184,19.00% +146087,359,4011,State-funded secondary,917,480,437,52.30%,47.70%,38,4.10%,136,14.80%,106,811,0,11.60%,88.40%,0.00%,406,444,917,48.40% +146088,344,2004,State-funded primary,306,151,155,49.30%,50.70%,1,0.30%,24,7.80%,47,259,0,15.40%,84.60%,0.00%,47,50,285,17.50% +146091,865,2044,State-funded primary,153,84,69,54.90%,45.10%,1,0.70%,25,16.30%,3,150,0,2.00%,98.00%,0.00%,15,15,153,9.80% +146093,878,2236,State-funded primary,194,109,85,56.20%,43.80%,6,3.10%,38,19.60%,5,189,0,2.60%,97.40%,0.00%,22,22,194,11.30% +146094,878,4059,State-funded secondary,1448,739,709,51.00%,49.00%,36,2.50%,108,7.50%,55,1388,5,3.80%,95.90%,0.30%,304,357,1448,24.70% +146095,878,2246,State-funded primary,457,245,212,53.60%,46.40%,4,0.90%,103,22.50%,18,439,0,3.90%,96.10%,0.00%,113,112,411,27.30% +146096,878,2204,State-funded primary,169,82,87,48.50%,51.50%,8,4.70%,44,26.00%,16,153,0,9.50%,90.50%,0.00%,75,74,141,52.50% +146097,879,2008,State-funded primary,243,125,118,51.40%,48.60%,3,1.20%,24,9.90%,101,142,0,41.60%,58.40%,0.00%,98,78,193,40.40% +146098,865,2046,State-funded primary,155,67,88,43.20%,56.80%,19,12.30%,35,22.60%,11,144,0,7.10%,92.90%,0.00%,52,53,155,34.20% +146099,830,4010,State-funded secondary,1574,784,790,49.80%,50.20%,23,1.50%,213,13.50%,41,1532,1,2.60%,97.30%,0.10%,450,434,1271,34.10% +146100,209,2004,State-funded primary,201,85,116,42.30%,57.70%,9,4.50%,27,13.40%,70,131,0,34.80%,65.20%,0.00%,94,98,190,51.60% +146101,801,2120,State-funded primary,139,55,84,39.60%,60.40%,4,2.90%,20,14.40%,121,18,0,87.10%,12.90%,0.00%,60,60,139,43.20% +146102,383,2025,State-funded primary,299,131,168,43.80%,56.20%,4,1.30%,81,27.10%,28,271,0,9.40%,90.60%,0.00%,101,110,261,42.10% +146103,931,4013,State-funded secondary,395,198,197,50.10%,49.90%,11,2.80%,91,23.00%,19,375,1,4.80%,94.90%,0.30%,93,109,395,27.60% +146104,831,3542,State-funded primary,373,188,185,50.40%,49.60%,10,2.70%,47,12.60%,248,125,0,66.50%,33.50%,0.00%,74,78,373,20.90% +146105,855,3338,State-funded primary,130,61,69,46.90%,53.10%,2,1.50%,21,16.20%,16,114,0,12.30%,87.70%,0.00%,19,19,130,14.60% +146106,881,3205,State-funded primary,121,65,56,53.70%,46.30%,6,5.00%,23,19.00%,0,121,0,0.00%,100.00%,0.00%,21,30,121,24.80% +146107,334,3300,State-funded primary,230,126,104,54.80%,45.20%,8,3.50%,23,10.00%,29,200,1,12.60%,87.00%,0.40%,15,15,206,7.30% +146108,856,4232,State-funded secondary,1172,1172,0,100.00%,0.00%,9,0.80%,104,8.90%,391,780,1,33.40%,66.60%,0.10%,300,331,1172,28.20% +146109,830,3501,State-funded primary,213,103,110,48.40%,51.60%,4,1.90%,35,16.40%,7,203,3,3.30%,95.30%,1.40%,49,49,213,23.00% +146110,876,7206,State-funded special school,119,25,94,21.00%,79.00%,119,100.00%,0,0.00%,6,113,0,5.00%,95.00%,0.00%,69,69,119,58.00% +146112,815,2217,State-funded primary,182,93,89,51.10%,48.90%,4,2.20%,25,13.70%,6,176,0,3.30%,96.70%,0.00%,51,47,152,30.90% +146113,830,3521,State-funded primary,30,18,12,60.00%,40.00%,0,0.00%,11,36.70%,0,30,0,0.00%,100.00%,0.00%,22,22,30,73.30% +146114,886,2677,State-funded primary,434,222,212,51.20%,48.80%,3,0.70%,33,7.60%,48,386,0,11.10%,88.90%,0.00%,94,95,434,21.90% +146115,340,3362,State-funded primary,248,111,137,44.80%,55.20%,36,14.50%,68,27.40%,14,234,0,5.60%,94.40%,0.00%,120,120,232,51.70% +146116,304,3500,State-funded primary,232,123,109,53.00%,47.00%,4,1.70%,22,9.50%,117,115,0,50.40%,49.60%,0.00%,66,69,232,29.70% +146117,210,5209,State-funded primary,461,218,243,47.30%,52.70%,20,4.30%,69,15.00%,209,252,0,45.30%,54.70%,0.00%,159,235,409,57.50% +146119,830,3513,State-funded primary,197,111,86,56.30%,43.70%,1,0.50%,41,20.80%,11,186,0,5.60%,94.40%,0.00%,19,19,197,9.60% +146120,342,3501,State-funded primary,203,102,101,50.20%,49.80%,1,0.50%,32,15.80%,6,197,0,3.00%,97.00%,0.00%,36,43,203,21.20% +146121,929,7018,State-funded special school,113,31,82,27.40%,72.60%,113,100.00%,0,0.00%,1,111,1,0.90%,98.20%,0.90%,40,35,91,38.50% +146123,919,2130,State-funded primary,436,219,217,50.20%,49.80%,8,1.80%,33,7.60%,101,335,0,23.20%,76.80%,0.00%,34,35,417,8.40% +146124,330,4804,State-funded secondary,1158,554,604,47.80%,52.20%,11,0.90%,174,15.00%,303,855,0,26.20%,73.80%,0.00%,486,481,1048,45.90% +146126,860,3067,State-funded primary,78,35,43,44.90%,55.10%,1,1.30%,6,7.70%,0,71,7,0.00%,91.00%,9.00%,4,4,67,6.00% +146127,314,2008,State-funded primary,400,199,201,49.80%,50.30%,8,2.00%,36,9.00%,57,343,0,14.30%,85.80%,0.00%,46,47,366,12.80% +146128,830,4601,State-funded secondary,437,218,219,49.90%,50.10%,13,3.00%,57,13.00%,25,412,0,5.70%,94.30%,0.00%,83,89,437,20.40% +146129,811,4063,State-funded secondary,698,328,370,47.00%,53.00%,25,3.60%,74,10.60%,14,684,0,2.00%,98.00%,0.00%,132,144,698,20.60% +146130,860,2423,State-funded primary,201,101,100,50.20%,49.80%,6,3.00%,40,19.90%,21,180,0,10.40%,89.60%,0.00%,38,39,201,19.40% +146131,896,2181,State-funded primary,212,94,118,44.30%,55.70%,3,1.40%,19,9.00%,0,212,0,0.00%,100.00%,0.00%,13,14,212,6.60% +146132,830,3504,State-funded primary,71,41,30,57.70%,42.30%,1,1.40%,11,15.50%,0,71,0,0.00%,100.00%,0.00%,19,20,71,28.20% +146133,855,3335,State-funded primary,205,111,94,54.10%,45.90%,2,1.00%,22,10.70%,21,182,2,10.20%,88.80%,1.00%,25,27,205,13.20% +146134,306,2086,State-funded primary,215,107,108,49.80%,50.20%,21,9.80%,29,13.50%,17,197,1,7.90%,91.60%,0.50%,66,68,215,31.60% +146135,851,2654,State-funded primary,177,81,96,45.80%,54.20%,5,2.80%,13,7.30%,13,163,1,7.30%,92.10%,0.60%,34,34,177,19.20% +146136,311,2015,State-funded primary,613,295,318,48.10%,51.90%,33,5.40%,25,4.10%,63,534,16,10.30%,87.10%,2.60%,56,62,573,10.80% +146137,306,3416,State-funded primary,182,79,103,43.40%,56.60%,15,8.20%,47,25.80%,61,121,0,33.50%,66.50%,0.00%,72,77,163,47.20% +146139,881,2660,State-funded primary,132,63,69,47.70%,52.30%,1,0.80%,17,12.90%,3,129,0,2.30%,97.70%,0.00%,18,18,132,13.60% +146140,831,3528,State-funded primary,359,181,178,50.40%,49.60%,7,1.90%,37,10.30%,151,207,1,42.10%,57.70%,0.30%,102,103,330,31.20% +146141,350,3340,State-funded primary,190,90,100,47.40%,52.60%,3,1.60%,34,17.90%,7,183,0,3.70%,96.30%,0.00%,22,24,190,12.60% +146142,881,2178,State-funded primary,408,195,213,47.80%,52.20%,5,1.20%,70,17.20%,41,365,2,10.00%,89.50%,0.50%,166,173,408,42.40% +146143,886,2044,State-funded primary,656,313,343,47.70%,52.30%,10,1.50%,49,7.50%,55,601,0,8.40%,91.60%,0.00%,53,55,656,8.40% +146144,926,4054,State-funded secondary,504,247,257,49.00%,51.00%,15,3.00%,55,10.90%,47,457,0,9.30%,90.70%,0.00%,97,109,504,21.60% +146145,830,3508,State-funded primary,234,115,119,49.10%,50.90%,4,1.70%,15,6.40%,8,226,0,3.40%,96.60%,0.00%,55,57,234,24.40% +146146,893,4403,State-funded secondary,1343,638,705,47.50%,52.50%,13,1.00%,104,7.70%,67,1268,8,5.00%,94.40%,0.60%,222,241,1343,17.90% +146147,856,3423,State-funded primary,216,107,109,49.50%,50.50%,7,3.20%,36,16.70%,139,77,0,64.40%,35.60%,0.00%,27,27,197,13.70% +146148,935,3081,State-funded primary,31,12,19,38.70%,61.30%,3,9.70%,10,32.30%,1,30,0,3.20%,96.80%,0.00%,6,6,31,19.40% +146149,937,3211,State-funded primary,194,97,97,50.00%,50.00%,5,2.60%,11,5.70%,12,182,0,6.20%,93.80%,0.00%,35,35,194,18.00% +146150,866,3462,State-funded primary,455,215,240,47.30%,52.70%,29,6.40%,66,14.50%,93,361,1,20.40%,79.30%,0.20%,63,64,424,15.10% +146151,937,3585,State-funded primary,190,80,110,42.10%,57.90%,3,1.60%,28,14.70%,5,185,0,2.60%,97.40%,0.00%,35,35,190,18.40% +146152,815,2392,State-funded primary,109,61,48,56.00%,44.00%,4,3.70%,14,12.80%,7,102,0,6.40%,93.60%,0.00%,16,17,95,17.90% +146153,838,3004,State-funded primary,231,112,119,48.50%,51.50%,8,3.50%,26,11.30%,17,214,0,7.40%,92.60%,0.00%,53,54,231,23.40% +146154,874,3076,State-funded primary,372,188,184,50.50%,49.50%,12,3.20%,38,10.20%,54,318,0,14.50%,85.50%,0.00%,41,42,372,11.30% +146155,861,3020,State-funded primary,194,101,93,52.10%,47.90%,4,2.10%,29,14.90%,60,134,0,30.90%,69.10%,0.00%,103,97,172,56.40% +146156,351,3009,State-funded primary,419,201,218,48.00%,52.00%,13,3.10%,43,10.30%,338,81,0,80.70%,19.30%,0.00%,80,82,367,22.30% +146157,881,2833,State-funded primary,421,214,207,50.80%,49.20%,3,0.70%,61,14.50%,154,264,3,36.60%,62.70%,0.70%,99,121,388,31.20% +146158,856,3420,State-funded primary,628,302,326,48.10%,51.90%,8,1.30%,76,12.10%,263,362,3,41.90%,57.60%,0.50%,74,75,628,11.90% +146160,319,2012,State-funded primary,467,231,236,49.50%,50.50%,10,2.10%,63,13.50%,215,252,0,46.00%,54.00%,0.00%,85,88,420,21.00% +146161,811,2755,State-funded primary,205,86,119,42.00%,58.00%,1,0.50%,13,6.30%,3,202,0,1.50%,98.50%,0.00%,12,12,179,6.70% +146164,894,6011,Independent school,24,7,17,29.20%,70.80%,22,91.70%,2,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146166,865,6051,Independent school,28,13,15,46.40%,53.60%,27,96.40%,1,3.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146167,878,6074,Independent school,48,15,33,31.30%,68.80%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146170,940,3048,State-funded primary,366,181,185,49.50%,50.50%,4,1.10%,51,13.90%,30,336,0,8.20%,91.80%,0.00%,58,61,366,16.70% +146171,937,3586,State-funded primary,409,194,215,47.40%,52.60%,3,0.70%,61,14.90%,11,397,1,2.70%,97.10%,0.20%,87,92,369,24.90% +146173,935,2100,State-funded primary,53,28,25,52.80%,47.20%,1,1.90%,17,32.10%,2,51,0,3.80%,96.20%,0.00%,7,8,53,15.10% +146174,811,3035,State-funded primary,85,35,50,41.20%,58.80%,3,3.50%,13,15.30%,4,81,0,4.70%,95.30%,0.00%,5,6,74,8.10% +146175,935,3091,State-funded primary,76,50,26,65.80%,34.20%,0,0.00%,10,13.20%,1,75,0,1.30%,98.70%,0.00%,27,27,76,35.50% +146176,310,3508,State-funded primary,406,198,208,48.80%,51.20%,6,1.50%,44,10.80%,207,199,0,51.00%,49.00%,0.00%,24,26,406,6.40% +146177,357,2080,State-funded primary,396,186,210,47.00%,53.00%,16,4.00%,61,15.40%,83,313,0,21.00%,79.00%,0.00%,188,190,373,50.90% +146178,310,3505,State-funded primary,628,292,336,46.50%,53.50%,14,2.20%,59,9.40%,295,333,0,47.00%,53.00%,0.00%,53,54,628,8.60% +146179,304,3511,State-funded primary,225,118,107,52.40%,47.60%,7,3.10%,25,11.10%,144,81,0,64.00%,36.00%,0.00%,48,51,199,25.60% +146180,855,3342,State-funded primary,207,98,109,47.30%,52.70%,4,1.90%,26,12.60%,51,156,0,24.60%,75.40%,0.00%,41,41,207,19.80% +146181,881,5247,State-funded primary,339,162,177,47.80%,52.20%,11,3.20%,25,7.40%,3,336,0,0.90%,99.10%,0.00%,18,33,339,9.70% +146182,357,6006,Independent school,1,0,1,0.00%,100.00%,0,0.00%,1,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146183,893,2092,State-funded primary,352,154,198,43.80%,56.30%,7,2.00%,47,13.40%,26,326,0,7.40%,92.60%,0.00%,42,42,352,11.90% +146185,311,3000,State-funded primary,88,51,37,58.00%,42.00%,3,3.40%,17,19.30%,3,81,4,3.40%,92.00%,4.50%,17,18,88,20.50% +146187,343,2063,State-funded primary,205,107,98,52.20%,47.80%,1,0.50%,57,27.80%,22,183,0,10.70%,89.30%,0.00%,115,116,196,59.20% +146189,356,3516,State-funded primary,233,106,127,45.50%,54.50%,4,1.70%,19,8.20%,13,220,0,5.60%,94.40%,0.00%,9,9,212,4.20% +146190,210,7048,State-funded special school,111,15,96,13.50%,86.50%,111,100.00%,0,0.00%,31,80,0,27.90%,72.10%,0.00%,70,58,78,74.40% +146191,212,2231,State-funded primary,280,150,130,53.60%,46.40%,7,2.50%,80,28.60%,167,113,0,59.60%,40.40%,0.00%,111,94,207,45.40% +146194,336,2115,State-funded primary,427,202,225,47.30%,52.70%,2,0.50%,69,16.20%,38,388,1,8.90%,90.90%,0.20%,79,81,392,20.70% +146195,881,2685,State-funded primary,205,106,99,51.70%,48.30%,6,2.90%,33,16.10%,1,204,0,0.50%,99.50%,0.00%,27,27,205,13.20% +146196,856,4721,State-funded secondary,1161,607,554,52.30%,47.70%,6,0.50%,115,9.90%,702,459,0,60.50%,39.50%,0.00%,139,155,966,16.00% +146198,380,4073,State-funded secondary,867,321,546,37.00%,63.00%,5,0.60%,110,12.70%,240,607,20,27.70%,70.00%,2.30%,296,330,867,38.10% +146199,937,2065,State-funded primary,162,85,77,52.50%,47.50%,2,1.20%,36,22.20%,41,121,0,25.30%,74.70%,0.00%,65,63,137,46.00% +146200,878,6075,Independent school,57,8,49,14.00%,86.00%,57,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146201,860,7042,State-funded special school,126,33,93,26.20%,73.80%,124,98.40%,2,1.60%,3,123,0,2.40%,97.60%,0.00%,48,52,126,41.30% +146202,896,2182,State-funded primary,168,85,83,50.60%,49.40%,1,0.60%,13,7.70%,2,166,0,1.20%,98.80%,0.00%,17,17,168,10.10% +146203,925,2061,State-funded primary,303,162,141,53.50%,46.50%,10,3.30%,37,12.20%,9,294,0,3.00%,97.00%,0.00%,52,54,303,17.80% +146204,381,1101,State-funded AP school,76,17,59,22.40%,77.60%,6,7.90%,70,92.10%,11,65,0,14.50%,85.50%,0.00%,56,56,76,73.70% +146205,925,2241,State-funded primary,195,99,96,50.80%,49.20%,4,2.10%,37,19.00%,18,177,0,9.20%,90.80%,0.00%,43,47,195,24.10% +146208,940,2236,State-funded primary,254,119,135,46.90%,53.10%,7,2.80%,44,17.30%,43,211,0,16.90%,83.10%,0.00%,104,106,254,41.70% +146209,940,4027,State-funded secondary,852,459,393,53.90%,46.10%,5,0.60%,70,8.20%,94,758,0,11.00%,89.00%,0.00%,173,195,744,26.20% +146210,881,2529,State-funded primary,179,92,87,51.40%,48.60%,6,3.40%,17,9.50%,50,129,0,27.90%,72.10%,0.00%,8,8,179,4.50% +146211,830,2370,State-funded primary,648,310,338,47.80%,52.20%,13,2.00%,64,9.90%,38,610,0,5.90%,94.10%,0.00%,120,116,620,18.70% +146212,304,7009,State-funded special school,309,104,205,33.70%,66.30%,309,100.00%,0,0.00%,194,115,0,62.80%,37.20%,0.00%,124,100,245,40.80% +146213,383,2463,State-funded primary,212,113,99,53.30%,46.70%,0,0.00%,20,9.40%,6,206,0,2.80%,97.20%,0.00%,24,25,212,11.80% +146214,212,2301,State-funded primary,200,112,88,56.00%,44.00%,10,5.00%,29,14.50%,68,132,0,34.00%,66.00%,0.00%,128,135,200,67.50% +146215,383,3923,State-funded primary,464,218,246,47.00%,53.00%,2,0.40%,69,14.90%,138,323,3,29.70%,69.60%,0.60%,202,209,379,55.10% +146217,383,4114,State-funded secondary,1362,681,681,50.00%,50.00%,6,0.40%,107,7.90%,150,1212,0,11.00%,89.00%,0.00%,237,235,1171,20.10% +146218,383,2465,State-funded primary,452,219,233,48.50%,51.50%,2,0.40%,71,15.70%,11,441,0,2.40%,97.60%,0.00%,69,68,416,16.30% +146219,383,2466,State-funded primary,384,185,199,48.20%,51.80%,4,1.00%,39,10.20%,29,355,0,7.60%,92.40%,0.00%,62,64,384,16.70% +146220,810,7006,State-funded special school,108,44,64,40.70%,59.30%,108,100.00%,0,0.00%,13,95,0,12.00%,88.00%,0.00%,43,43,88,48.90% +146221,209,2108,State-funded primary,427,200,227,46.80%,53.20%,25,5.90%,83,19.40%,292,135,0,68.40%,31.60%,0.00%,215,199,387,51.40% +146222,806,2370,State-funded primary,429,216,213,50.30%,49.70%,4,0.90%,40,9.30%,53,376,0,12.40%,87.60%,0.00%,47,50,373,13.40% +146223,380,2120,State-funded primary,487,263,224,54.00%,46.00%,10,2.10%,34,7.00%,438,41,8,89.90%,8.40%,1.60%,102,118,385,30.60% +146224,856,3425,State-funded primary,230,123,107,53.50%,46.50%,19,8.30%,62,27.00%,74,155,1,32.20%,67.40%,0.40%,97,98,216,45.40% +146225,306,2025,State-funded primary,215,112,103,52.10%,47.90%,1,0.50%,26,12.10%,31,184,0,14.40%,85.60%,0.00%,63,64,195,32.80% +146226,925,3330,State-funded primary,199,106,93,53.30%,46.70%,12,6.00%,45,22.60%,64,132,3,32.20%,66.30%,1.50%,64,65,199,32.70% +146227,352,2247,State-funded primary,236,124,112,52.50%,47.50%,5,2.10%,39,16.50%,68,166,2,28.80%,70.30%,0.80%,90,85,199,42.70% +146228,888,4018,State-funded secondary,1089,541,548,49.70%,50.30%,17,1.60%,113,10.40%,25,1006,58,2.30%,92.40%,5.30%,312,329,1089,30.20% +146229,935,3339,State-funded primary,415,212,203,51.10%,48.90%,8,1.90%,66,15.90%,242,173,0,58.30%,41.70%,0.00%,161,165,415,39.80% +146230,881,2840,State-funded primary,168,64,104,38.10%,61.90%,2,1.20%,30,17.90%,6,161,1,3.60%,95.80%,0.60%,53,55,168,32.70% +146231,845,2130,State-funded primary,501,260,241,51.90%,48.10%,9,1.80%,76,15.20%,38,463,0,7.60%,92.40%,0.00%,140,147,451,32.60% +146232,856,4723,State-funded secondary,1130,570,560,50.40%,49.60%,9,0.80%,95,8.40%,483,647,0,42.70%,57.30%,0.00%,190,174,926,18.80% +146233,383,2453,State-funded primary,239,115,124,48.10%,51.90%,5,2.10%,34,14.20%,11,228,0,4.60%,95.40%,0.00%,15,15,209,7.20% +146234,935,3084,State-funded primary,75,35,40,46.70%,53.30%,1,1.30%,11,14.70%,3,72,0,4.00%,96.00%,0.00%,19,19,75,25.30% +146235,860,4710,State-funded secondary,566,272,294,48.10%,51.90%,14,2.50%,59,10.40%,132,434,0,23.30%,76.70%,0.00%,105,110,566,19.40% +146236,931,2151,State-funded primary,115,58,57,50.40%,49.60%,1,0.90%,14,12.20%,1,113,1,0.90%,98.30%,0.90%,8,10,115,8.70% +146237,926,4053,State-funded secondary,764,350,414,45.80%,54.20%,21,2.70%,109,14.30%,23,710,31,3.00%,92.90%,4.10%,113,131,764,17.10% +146238,830,3518,State-funded primary,230,122,108,53.00%,47.00%,3,1.30%,23,10.00%,60,169,1,26.10%,73.50%,0.40%,33,31,204,15.20% +146239,352,4276,State-funded secondary,1826,861,965,47.20%,52.80%,43,2.40%,278,15.20%,378,1435,13,20.70%,78.60%,0.70%,759,900,1826,49.30% +146241,925,3342,State-funded primary,200,101,99,50.50%,49.50%,4,2.00%,28,14.00%,132,68,0,66.00%,34.00%,0.00%,32,32,200,16.00% +146242,881,3220,State-funded primary,78,37,41,47.40%,52.60%,2,2.60%,9,11.50%,5,73,0,6.40%,93.60%,0.00%,17,20,78,25.60% +146243,933,2033,State-funded primary,77,38,39,49.40%,50.60%,4,5.20%,6,7.80%,6,67,4,7.80%,87.00%,5.20%,12,12,77,15.60% +146244,850,2616,State-funded primary,205,98,107,47.80%,52.20%,8,3.90%,49,23.90%,4,201,0,2.00%,98.00%,0.00%,80,84,205,41.00% +146245,310,4700,State-funded secondary,838,838,0,100.00%,0.00%,7,0.80%,94,11.20%,370,448,20,44.20%,53.50%,2.40%,110,138,838,16.50% +146246,310,3507,State-funded primary,414,201,213,48.60%,51.40%,12,2.90%,53,12.80%,242,172,0,58.50%,41.50%,0.00%,60,61,414,14.70% +146247,383,4046,State-funded secondary,1309,680,629,51.90%,48.10%,17,1.30%,81,6.20%,83,1226,0,6.30%,93.70%,0.00%,259,270,1148,23.50% +146248,878,2255,State-funded primary,26,8,18,30.80%,69.20%,0,0.00%,7,26.90%,0,26,0,0.00%,100.00%,0.00%,4,4,26,15.40% +146249,806,3390,State-funded primary,233,95,138,40.80%,59.20%,3,1.30%,28,12.00%,17,216,0,7.30%,92.70%,0.00%,96,107,203,52.70% +146250,909,7022,State-funded special school,167,42,125,25.10%,74.90%,167,100.00%,0,0.00%,13,154,0,7.80%,92.20%,0.00%,48,41,129,31.80% +146251,806,2175,State-funded primary,226,121,105,53.50%,46.50%,2,0.90%,18,8.00%,1,225,0,0.40%,99.60%,0.00%,27,23,198,11.60% +146252,806,2167,State-funded primary,435,223,212,51.30%,48.70%,3,0.70%,33,7.60%,6,429,0,1.40%,98.60%,0.00%,48,48,387,12.40% +146253,831,3543,State-funded primary,348,186,162,53.40%,46.60%,10,2.90%,36,10.30%,69,279,0,19.80%,80.20%,0.00%,47,48,305,15.70% +146254,878,2607,State-funded primary,72,36,36,50.00%,50.00%,3,4.20%,6,8.30%,3,69,0,4.20%,95.80%,0.00%,6,6,64,9.40% +146255,936,7061,State-funded special school,133,42,91,31.60%,68.40%,133,100.00%,0,0.00%,7,126,0,5.30%,94.70%,0.00%,45,48,133,36.10% +146256,841,3309,State-funded primary,340,167,173,49.10%,50.90%,12,3.50%,33,9.70%,91,249,0,26.80%,73.20%,0.00%,50,52,306,17.00% +146257,925,3343,State-funded primary,207,90,117,43.50%,56.50%,5,2.40%,21,10.10%,105,102,0,50.70%,49.30%,0.00%,41,44,207,21.30% +146259,936,2133,State-funded primary,308,144,164,46.80%,53.20%,6,1.90%,50,16.20%,49,259,0,15.90%,84.10%,0.00%,50,44,267,16.50% +146260,830,3509,State-funded primary,127,69,58,54.30%,45.70%,1,0.80%,19,15.00%,2,125,0,1.60%,98.40%,0.00%,37,37,127,29.10% +146261,801,3433,State-funded primary,237,129,108,54.40%,45.60%,10,4.20%,22,9.30%,85,150,2,35.90%,63.30%,0.80%,77,81,206,39.30% +146262,806,2180,State-funded primary,258,125,133,48.40%,51.60%,14,5.40%,38,14.70%,9,249,0,3.50%,96.50%,0.00%,51,51,219,23.30% +146263,800,2007,State-funded primary,306,158,148,51.60%,48.40%,15,4.90%,72,23.50%,41,265,0,13.40%,86.60%,0.00%,142,120,259,46.30% +146264,936,2041,State-funded primary,429,231,198,53.80%,46.20%,35,8.20%,83,19.30%,85,344,0,19.80%,80.20%,0.00%,116,113,395,28.60% +146265,307,2012,State-funded primary,218,107,111,49.10%,50.90%,6,2.80%,30,13.80%,115,103,0,52.80%,47.20%,0.00%,46,50,175,28.60% +146266,860,2034,State-funded primary,203,105,98,51.70%,48.30%,3,1.50%,18,8.90%,84,119,0,41.40%,58.60%,0.00%,44,44,188,23.40% +146267,813,2008,State-funded primary,470,229,241,48.70%,51.30%,11,2.30%,69,14.70%,53,415,2,11.30%,88.30%,0.40%,221,225,470,47.90% +146268,330,2187,State-funded primary,441,223,218,50.60%,49.40%,5,1.10%,66,15.00%,191,249,1,43.30%,56.50%,0.20%,206,209,409,51.10% +146269,822,2010,State-funded primary,60,32,28,53.30%,46.70%,1,1.70%,14,23.30%,7,53,0,11.70%,88.30%,0.00%,16,15,55,27.30% +146270,931,2022,State-funded primary,254,129,125,50.80%,49.20%,4,1.60%,46,18.10%,39,210,5,15.40%,82.70%,2.00%,40,40,254,15.70% +146271,935,2223,State-funded primary,145,77,68,53.10%,46.90%,0,0.00%,25,17.20%,1,144,0,0.70%,99.30%,0.00%,26,27,145,18.60% +146272,860,1103,State-funded AP school,30,8,22,26.70%,73.30%,2,6.70%,25,83.30%,0,30,0,0.00%,100.00%,0.00%,15,20,30,66.70% +146273,830,2038,State-funded primary,180,78,102,43.30%,56.70%,2,1.10%,39,21.70%,4,176,0,2.20%,97.80%,0.00%,47,47,180,26.10% +146274,938,7000,State-funded special school,82,0,82,0.00%,100.00%,82,100.00%,0,0.00%,3,79,0,3.70%,96.30%,0.00%,47,50,82,61.00% +146275,870,2035,State-funded primary,319,153,166,48.00%,52.00%,10,3.10%,73,22.90%,113,189,17,35.40%,59.20%,5.30%,110,109,287,38.00% +146276,888,4023,State-funded secondary,1046,494,552,47.20%,52.80%,18,1.70%,161,15.40%,950,96,0,90.80%,9.20%,0.00%,249,267,1046,25.50% +146277,209,6005,Independent school,8,8,0,100.00%,0.00%,4,50.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146278,931,2023,State-funded primary,288,155,133,53.80%,46.20%,15,5.20%,65,22.60%,90,198,0,31.30%,68.80%,0.00%,113,117,247,47.40% +146279,925,2049,State-funded primary,115,48,67,41.70%,58.30%,3,2.60%,6,5.20%,14,101,0,12.20%,87.80%,0.00%,19,20,115,17.40% +146280,935,2224,State-funded primary,175,89,86,50.90%,49.10%,3,1.70%,43,24.60%,30,145,0,17.10%,82.90%,0.00%,58,58,150,38.70% +146281,380,2046,State-funded primary,304,152,152,50.00%,50.00%,2,0.70%,36,11.80%,43,259,2,14.10%,85.20%,0.70%,48,49,275,17.80% +146282,888,4024,State-funded secondary,679,342,337,50.40%,49.60%,7,1.00%,20,2.90%,12,667,0,1.80%,98.20%,0.00%,98,114,679,16.80% +146283,941,2237,State-funded primary,409,214,195,52.30%,47.70%,3,0.70%,27,6.60%,75,326,8,18.30%,79.70%,2.00%,26,32,409,7.80% +146284,852,4003,State-funded secondary,1040,507,533,48.80%,51.30%,20,1.90%,131,12.60%,122,915,3,11.70%,88.00%,0.30%,322,343,1040,33.00% +146287,878,6076,Independent school,7,7,0,100.00%,0.00%,4,57.10%,3,42.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146288,891,6041,Independent school,53,14,39,26.40%,73.60%,53,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146294,860,3486,State-funded primary,79,45,34,57.00%,43.00%,3,3.80%,5,6.30%,3,74,2,3.80%,93.70%,2.50%,8,9,79,11.40% +146295,860,3100,State-funded primary,112,54,58,48.20%,51.80%,2,1.80%,2,1.80%,7,105,0,6.30%,93.80%,0.00%,7,7,112,6.30% +146296,883,3605,State-funded primary,229,103,126,45.00%,55.00%,20,8.70%,26,11.40%,76,153,0,33.20%,66.80%,0.00%,38,41,206,19.90% +146297,383,2477,State-funded primary,424,203,221,47.90%,52.10%,2,0.50%,95,22.40%,106,318,0,25.00%,75.00%,0.00%,220,224,424,52.80% +146298,330,3362,State-funded primary,206,109,97,52.90%,47.10%,4,1.90%,31,15.00%,58,148,0,28.20%,71.80%,0.00%,33,34,206,16.50% +146299,883,3603,State-funded primary,605,314,291,51.90%,48.10%,14,2.30%,102,16.90%,145,460,0,24.00%,76.00%,0.00%,84,90,605,14.90% +146300,883,3512,State-funded primary,191,96,95,50.30%,49.70%,5,2.60%,21,11.00%,16,175,0,8.40%,91.60%,0.00%,30,47,191,24.60% +146301,873,6056,Independent school,70,30,40,42.90%,57.10%,1,1.40%,9,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146303,355,4003,State-funded secondary,337,159,178,47.20%,52.80%,17,5.00%,63,18.70%,22,313,2,6.50%,92.90%,0.60%,88,79,187,42.20% +146305,919,4031,State-funded secondary,904,436,468,48.20%,51.80%,34,3.80%,193,21.30%,56,842,6,6.20%,93.10%,0.70%,233,256,844,30.30% +146306,383,2027,State-funded primary,193,95,98,49.20%,50.80%,2,1.00%,33,17.10%,63,130,0,32.60%,67.40%,0.00%,95,100,193,51.80% +146307,869,2003,State-funded primary,193,105,88,54.40%,45.60%,3,1.60%,54,28.00%,18,175,0,9.30%,90.70%,0.00%,57,59,157,37.60% +146308,351,2010,State-funded primary,231,119,112,51.50%,48.50%,7,3.00%,30,13.00%,193,38,0,83.50%,16.50%,0.00%,77,77,206,37.40% +146309,311,4016,State-funded secondary,664,343,321,51.70%,48.30%,23,3.50%,87,13.10%,91,564,9,13.70%,84.90%,1.40%,170,188,664,28.30% +146310,873,2078,State-funded primary,276,148,128,53.60%,46.40%,9,3.30%,73,26.40%,74,202,0,26.80%,73.20%,0.00%,132,132,239,55.20% +146311,916,2063,State-funded primary,258,114,144,44.20%,55.80%,8,3.10%,91,35.30%,31,227,0,12.00%,88.00%,0.00%,65,68,258,26.40% +146312,815,2010,State-funded primary,408,214,194,52.50%,47.50%,13,3.20%,70,17.20%,23,385,0,5.60%,94.40%,0.00%,245,235,367,64.00% +146313,343,2004,State-funded primary,200,95,105,47.50%,52.50%,4,2.00%,27,13.50%,14,186,0,7.00%,93.00%,0.00%,36,38,164,23.20% +146314,891,2036,State-funded primary,320,166,154,51.90%,48.10%,2,0.60%,29,9.10%,17,303,0,5.30%,94.70%,0.00%,107,106,294,36.10% +146315,344,4003,State-funded secondary,1120,324,796,28.90%,71.10%,43,3.80%,259,23.10%,55,1065,0,4.90%,95.10%,0.00%,516,509,1017,50.00% +146316,353,4010,State-funded secondary,1062,498,564,46.90%,53.10%,24,2.30%,160,15.10%,162,900,0,15.30%,84.70%,0.00%,450,493,1062,46.40% +146318,307,4007,State-funded secondary,860,333,527,38.70%,61.30%,15,1.70%,98,11.40%,571,287,2,66.40%,33.40%,0.20%,370,351,723,48.50% +146319,926,2203,State-funded primary,143,76,67,53.10%,46.90%,5,3.50%,27,18.90%,55,88,0,38.50%,61.50%,0.00%,66,66,143,46.20% +146320,370,4012,State-funded secondary,1159,584,575,50.40%,49.60%,38,3.30%,71,6.10%,42,1093,24,3.60%,94.30%,2.10%,235,277,1159,23.90% +146322,830,2039,State-funded primary,121,67,54,55.40%,44.60%,3,2.50%,13,10.70%,3,117,1,2.50%,96.70%,0.80%,45,47,121,38.80% +146323,935,2225,State-funded primary,668,325,343,48.70%,51.30%,4,0.60%,79,11.80%,110,557,1,16.50%,83.40%,0.10%,73,76,629,12.10% +146325,908,4006,State-funded secondary,232,105,127,45.30%,54.70%,25,10.80%,32,13.80%,4,215,13,1.70%,92.70%,5.60%,70,75,232,32.30% +146326,916,2080,State-funded primary,206,106,100,51.50%,48.50%,12,5.80%,40,19.40%,14,192,0,6.80%,93.20%,0.00%,52,55,158,34.80% +146327,382,4006,State-funded secondary,1244,594,650,47.70%,52.30%,50,4.00%,192,15.40%,350,887,7,28.10%,71.30%,0.60%,536,550,1244,44.20% +146331,892,2021,State-funded primary,350,172,178,49.10%,50.90%,2,0.60%,43,12.30%,186,164,0,53.10%,46.90%,0.00%,132,131,298,44.00% +146332,935,6013,Independent school,45,14,31,31.10%,68.90%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146333,811,6018,Independent school,4,0,4,0.00%,100.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146335,933,6010,Independent school,13,0,13,0.00%,100.00%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146338,936,6015,Independent school,15,5,10,33.30%,66.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146339,383,6006,Independent school,55,8,47,14.50%,85.50%,39,70.90%,16,29.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146340,893,6036,Independent school,13,1,12,7.70%,92.30%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146343,865,2047,State-funded primary,406,220,186,54.20%,45.80%,10,2.50%,31,7.60%,16,365,25,3.90%,89.90%,6.20%,55,55,406,13.50% +146344,865,4008,State-funded secondary,1282,638,644,49.80%,50.20%,50,3.90%,167,13.00%,55,1227,0,4.30%,95.70%,0.00%,259,264,1144,23.10% +146345,865,2048,State-funded primary,201,97,104,48.30%,51.70%,9,4.50%,30,14.90%,6,194,1,3.00%,96.50%,0.50%,28,28,201,13.90% +146346,865,2049,State-funded primary,86,39,47,45.30%,54.70%,4,4.70%,14,16.30%,3,83,0,3.50%,96.50%,0.00%,11,11,86,12.80% +146347,865,2050,State-funded primary,81,41,40,50.60%,49.40%,5,6.20%,8,9.90%,0,81,0,0.00%,100.00%,0.00%,12,13,81,16.00% +146348,865,2051,State-funded primary,178,97,81,54.50%,45.50%,13,7.30%,38,21.30%,17,154,7,9.60%,86.50%,3.90%,80,83,178,46.60% +146350,894,6012,Independent school,12,4,8,33.30%,66.70%,11,91.70%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146357,873,2081,State-funded primary,102,55,47,53.90%,46.10%,4,3.90%,16,15.70%,3,93,6,2.90%,91.20%,5.90%,14,13,98,13.30% +146358,333,2009,State-funded primary,471,211,260,44.80%,55.20%,11,2.30%,75,15.90%,79,392,0,16.80%,83.20%,0.00%,239,242,440,55.00% +146359,919,2088,State-funded primary,113,44,69,38.90%,61.10%,3,2.70%,20,17.70%,19,94,0,16.80%,83.20%,0.00%,56,57,104,54.80% +146360,855,6043,Independent school,42,9,33,21.40%,78.60%,40,95.20%,2,4.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146363,383,4078,State-funded secondary,886,424,462,47.90%,52.10%,7,0.80%,175,19.80%,256,626,4,28.90%,70.70%,0.50%,428,473,886,53.40% +146365,382,4007,State-funded secondary,886,431,455,48.60%,51.40%,36,4.10%,140,15.80%,428,458,0,48.30%,51.70%,0.00%,266,282,886,31.80% +146366,941,2238,State-funded primary,241,110,131,45.60%,54.40%,8,3.30%,28,11.60%,104,137,0,43.20%,56.80%,0.00%,72,74,201,36.80% +146367,382,4008,State-funded secondary,735,334,401,45.40%,54.60%,16,2.20%,118,16.10%,337,398,0,45.90%,54.10%,0.00%,258,273,735,37.10% +146368,208,2001,State-funded primary,344,171,173,49.70%,50.30%,12,3.50%,65,18.90%,145,192,7,42.20%,55.80%,2.00%,172,175,323,54.20% +146369,873,4014,State-funded secondary,703,362,341,51.50%,48.50%,26,3.70%,102,14.50%,49,649,5,7.00%,92.30%,0.70%,212,233,703,33.10% +146370,371,4010,State-funded secondary,713,356,357,49.90%,50.10%,4,0.60%,115,16.10%,209,504,0,29.30%,70.70%,0.00%,327,358,685,52.30% +146371,941,2239,State-funded primary,175,89,86,50.90%,49.10%,8,4.60%,14,8.00%,22,153,0,12.60%,87.40%,0.00%,17,17,145,11.70% +146372,929,2007,State-funded primary,244,110,134,45.10%,54.90%,15,6.10%,41,16.80%,0,244,0,0.00%,100.00%,0.00%,58,53,210,25.20% +146374,830,4011,State-funded secondary,871,397,474,45.60%,54.40%,14,1.60%,96,11.00%,16,792,63,1.80%,90.90%,7.20%,300,293,776,37.80% +146375,312,4024,State-funded secondary,219,26,193,11.90%,88.10%,8,3.70%,36,16.40%,82,137,0,37.40%,62.60%,0.00%,64,33,72,45.80% +146376,886,2107,State-funded primary,141,65,76,46.10%,53.90%,5,3.50%,17,12.10%,58,83,0,41.10%,58.90%,0.00%,59,59,141,41.80% +146377,825,4012,State-funded secondary,1019,480,539,47.10%,52.90%,59,5.80%,93,9.10%,165,849,5,16.20%,83.30%,0.50%,184,181,891,20.30% +146378,303,4005,State-funded secondary,1286,613,673,47.70%,52.30%,24,1.90%,285,22.20%,223,1063,0,17.30%,82.70%,0.00%,463,515,1156,44.60% +146379,334,4003,State-funded secondary,1259,627,632,49.80%,50.20%,18,1.40%,214,17.00%,51,1176,32,4.10%,93.40%,2.50%,567,625,1142,54.70% +146380,931,2024,State-funded primary,242,110,132,45.50%,54.50%,9,3.70%,50,20.70%,60,182,0,24.80%,75.20%,0.00%,103,104,218,47.70% +146381,931,2025,State-funded primary,199,100,99,50.30%,49.70%,9,4.50%,61,30.70%,60,139,0,30.20%,69.80%,0.00%,79,83,166,50.00% +146382,895,2006,State-funded primary,418,195,223,46.70%,53.30%,22,5.30%,63,15.10%,93,325,0,22.20%,77.80%,0.00%,89,90,388,23.20% +146383,333,4006,State-funded secondary,1542,765,777,49.60%,50.40%,24,1.60%,175,11.30%,599,943,0,38.80%,61.20%,0.00%,572,596,1406,42.40% +146385,330,2194,State-funded primary,440,213,227,48.40%,51.60%,4,0.90%,61,13.90%,322,114,4,73.20%,25.90%,0.90%,150,158,405,39.00% +146386,839,4012,State-funded secondary,492,244,248,49.60%,50.40%,28,5.70%,54,11.00%,85,407,0,17.30%,82.70%,0.00%,119,130,492,26.40% +146387,895,4211,State-funded secondary,1457,729,728,50.00%,50.00%,34,2.30%,96,6.60%,58,1131,268,4.00%,77.60%,18.40%,104,106,1156,9.20% +146388,908,2603,State-funded primary,304,146,158,48.00%,52.00%,16,5.30%,45,14.80%,7,297,0,2.30%,97.70%,0.00%,86,84,280,30.00% +146389,908,2621,State-funded primary,110,47,63,42.70%,57.30%,0,0.00%,19,17.30%,0,104,6,0.00%,94.50%,5.50%,10,10,110,9.10% +146390,306,2004,State-funded primary,441,238,203,54.00%,46.00%,4,0.90%,41,9.30%,29,395,17,6.60%,89.60%,3.90%,67,67,416,16.10% +146391,908,2617,State-funded primary,70,32,38,45.70%,54.30%,2,2.90%,9,12.90%,0,70,0,0.00%,100.00%,0.00%,11,12,70,17.10% +146392,931,4127,State-funded secondary,733,329,404,44.90%,55.10%,35,4.80%,128,17.50%,70,656,7,9.50%,89.50%,1.00%,77,76,639,11.90% +146393,331,2143,State-funded primary,468,225,243,48.10%,51.90%,6,1.30%,64,13.70%,159,309,0,34.00%,66.00%,0.00%,99,104,424,24.50% +146394,808,2087,State-funded primary,216,115,101,53.20%,46.80%,2,0.90%,7,3.20%,10,206,0,4.60%,95.40%,0.00%,12,12,191,6.30% +146395,908,2619,State-funded primary,47,25,22,53.20%,46.80%,0,0.00%,14,29.80%,0,47,0,0.00%,100.00%,0.00%,4,4,47,8.50% +146396,800,3107,State-funded primary,106,50,56,47.20%,52.80%,4,3.80%,14,13.20%,8,98,0,7.50%,92.50%,0.00%,6,6,106,5.70% +146397,857,3120,State-funded primary,91,43,48,47.30%,52.70%,5,5.50%,3,3.30%,1,90,0,1.10%,98.90%,0.00%,5,6,91,6.60% +146399,359,3315,State-funded primary,196,89,107,45.40%,54.60%,4,2.00%,17,8.70%,6,190,0,3.10%,96.90%,0.00%,22,24,196,12.20% +146400,886,3313,State-funded primary,70,32,38,45.70%,54.30%,1,1.40%,8,11.40%,5,65,0,7.10%,92.90%,0.00%,19,19,70,27.10% +146401,315,2004,State-funded primary,152,75,77,49.30%,50.70%,29,19.10%,18,11.80%,104,48,0,68.40%,31.60%,0.00%,53,52,137,38.00% +146402,895,2344,State-funded primary,213,103,110,48.40%,51.60%,8,3.80%,9,4.20%,28,185,0,13.10%,86.90%,0.00%,23,22,189,11.60% +146403,807,2330,State-funded primary,210,99,111,47.10%,52.90%,0,0.00%,31,14.80%,9,201,0,4.30%,95.70%,0.00%,109,111,186,59.70% +146404,355,4035,State-funded secondary,1503,715,788,47.60%,52.40%,66,4.40%,181,12.00%,85,1418,0,5.70%,94.30%,0.00%,385,445,1503,29.60% +146405,373,2292,State-funded primary,210,101,109,48.10%,51.90%,1,0.50%,21,10.00%,4,206,0,1.90%,98.10%,0.00%,20,20,210,9.50% +146406,350,7000,State-funded special school,193,49,144,25.40%,74.60%,189,97.90%,4,2.10%,36,154,3,18.70%,79.80%,1.60%,82,83,193,43.00% +146407,873,2079,State-funded primary,805,402,403,49.90%,50.10%,18,2.20%,38,4.70%,52,753,0,6.50%,93.50%,0.00%,284,290,805,36.00% +146408,908,4141,State-funded secondary,601,280,321,46.60%,53.40%,14,2.30%,92,15.30%,6,595,0,1.00%,99.00%,0.00%,155,161,601,26.80% +146409,800,2250,State-funded primary,413,203,210,49.20%,50.80%,10,2.40%,65,15.70%,12,401,0,2.90%,97.10%,0.00%,101,102,374,27.30% +146410,350,7004,State-funded special school,199,80,119,40.20%,59.80%,195,98.00%,4,2.00%,64,135,0,32.20%,67.80%,0.00%,94,67,138,48.60% +146411,372,2079,State-funded primary,224,124,100,55.40%,44.60%,7,3.10%,23,10.30%,4,220,0,1.80%,98.20%,0.00%,30,31,212,14.60% +146412,877,3602,State-funded primary,119,57,62,47.90%,52.10%,3,2.50%,6,5.00%,0,119,0,0.00%,100.00%,0.00%,22,22,119,18.50% +146413,940,2240,State-funded primary,262,135,127,51.50%,48.50%,3,1.10%,31,11.80%,73,189,0,27.90%,72.10%,0.00%,109,113,262,43.10% +146414,940,2241,State-funded primary,273,133,140,48.70%,51.30%,9,3.30%,30,11.00%,76,197,0,27.80%,72.20%,0.00%,101,107,273,39.20% +146415,940,2242,State-funded primary,375,188,187,50.10%,49.90%,8,2.10%,42,11.20%,117,254,4,31.20%,67.70%,1.10%,130,135,342,39.50% +146417,877,3600,State-funded primary,132,59,73,44.70%,55.30%,0,0.00%,24,18.20%,6,126,0,4.50%,95.50%,0.00%,21,21,102,20.60% +146418,935,7001,State-funded special school,206,59,147,28.60%,71.40%,206,100.00%,0,0.00%,27,178,1,13.10%,86.40%,0.50%,60,57,188,30.30% +146419,936,3012,State-funded primary,228,112,116,49.10%,50.90%,10,4.40%,37,16.20%,23,205,0,10.10%,89.90%,0.00%,45,47,228,20.60% +146420,936,3052,State-funded primary,207,101,106,48.80%,51.20%,5,2.40%,15,7.20%,9,198,0,4.30%,95.70%,0.00%,18,18,178,10.10% +146421,865,2162,State-funded primary,240,100,140,41.70%,58.30%,4,1.70%,64,26.70%,16,184,40,6.70%,76.70%,16.70%,35,36,240,15.00% +146422,935,1103,State-funded AP school,19,4,15,21.10%,78.90%,16,84.20%,3,15.80%,1,18,0,5.30%,94.70%,0.00%,9,13,19,68.40% +146423,909,5219,State-funded primary,126,62,64,49.20%,50.80%,3,2.40%,17,13.50%,1,125,0,0.80%,99.20%,0.00%,38,38,112,33.90% +146424,800,3347,State-funded primary,119,63,56,52.90%,47.10%,8,6.70%,10,8.40%,2,117,0,1.70%,98.30%,0.00%,16,15,105,14.30% +146425,857,3111,State-funded primary,80,34,46,42.50%,57.50%,1,1.30%,8,10.00%,0,80,0,0.00%,100.00%,0.00%,15,15,80,18.80% +146426,893,3121,State-funded primary,278,123,155,44.20%,55.80%,4,1.40%,43,15.50%,17,259,2,6.10%,93.20%,0.70%,54,49,216,22.70% +146427,860,3130,State-funded primary,75,29,46,38.70%,61.30%,0,0.00%,5,6.70%,0,75,0,0.00%,100.00%,0.00%,12,12,75,16.00% +146428,857,3119,State-funded primary,137,66,71,48.20%,51.80%,3,2.20%,27,19.70%,7,130,0,5.10%,94.90%,0.00%,39,39,137,28.50% +146429,342,3457,State-funded primary,159,72,87,45.30%,54.70%,2,1.30%,24,15.10%,10,149,0,6.30%,93.70%,0.00%,63,63,159,39.60% +146430,895,2159,State-funded primary,195,107,88,54.90%,45.10%,13,6.70%,18,9.20%,5,190,0,2.60%,97.40%,0.00%,26,27,195,13.80% +146431,935,7014,State-funded special school,123,46,77,37.40%,62.60%,123,100.00%,0,0.00%,3,120,0,2.40%,97.60%,0.00%,58,54,107,50.50% +146432,893,2011,State-funded primary,305,143,162,46.90%,53.10%,7,2.30%,43,14.10%,29,276,0,9.50%,90.50%,0.00%,79,83,305,27.20% +146433,885,2027,State-funded primary,439,200,239,45.60%,54.40%,10,2.30%,61,13.90%,12,427,0,2.70%,97.30%,0.00%,50,52,397,13.10% +146434,333,2011,State-funded primary,222,100,122,45.00%,55.00%,5,2.30%,62,27.90%,95,127,0,42.80%,57.20%,0.00%,98,100,207,48.30% +146435,380,2049,State-funded primary,363,171,192,47.10%,52.90%,4,1.10%,39,10.70%,117,246,0,32.20%,67.80%,0.00%,170,174,341,51.00% +146436,331,4010,State-funded secondary,1056,514,542,48.70%,51.30%,15,1.40%,154,14.60%,464,592,0,43.90%,56.10%,0.00%,365,353,903,39.10% +146437,330,2196,State-funded primary,331,152,179,45.90%,54.10%,2,0.60%,42,12.70%,224,107,0,67.70%,32.30%,0.00%,182,186,318,58.50% +146438,936,2042,State-funded primary,153,68,85,44.40%,55.60%,2,1.30%,19,12.40%,18,135,0,11.80%,88.20%,0.00%,24,25,153,16.30% +146439,933,4005,State-funded secondary,1354,700,654,51.70%,48.30%,26,1.90%,134,9.90%,82,1264,8,6.10%,93.40%,0.60%,332,331,1198,27.60% +146440,919,4033,State-funded secondary,754,374,380,49.60%,50.40%,8,1.10%,116,15.40%,132,622,0,17.50%,82.50%,0.00%,244,262,712,36.80% +146443,860,4140,State-funded secondary,1262,654,608,51.80%,48.20%,17,1.30%,142,11.30%,9,1253,0,0.70%,99.30%,0.00%,175,199,1100,18.10% +146444,830,2133,State-funded primary,106,48,58,45.30%,54.70%,5,4.70%,24,22.60%,2,102,2,1.90%,96.20%,1.90%,16,17,106,16.00% +146446,933,2059,State-funded primary,146,64,82,43.80%,56.20%,2,1.40%,16,11.00%,2,144,0,1.40%,98.60%,0.00%,21,22,146,15.10% +146447,933,2043,State-funded primary,102,59,43,57.80%,42.20%,1,1.00%,3,2.90%,2,100,0,2.00%,98.00%,0.00%,6,6,82,7.30% +146448,938,3321,State-funded primary,209,103,106,49.30%,50.70%,2,1.00%,31,14.80%,9,200,0,4.30%,95.70%,0.00%,22,25,209,12.00% +146449,808,3383,State-funded primary,110,49,61,44.50%,55.50%,1,0.90%,15,13.60%,0,110,0,0.00%,100.00%,0.00%,13,12,95,12.60% +146450,830,2118,State-funded primary,80,47,33,58.80%,41.30%,0,0.00%,7,8.80%,2,78,0,2.50%,97.50%,0.00%,25,20,61,32.80% +146451,830,4054,State-funded secondary,1192,590,602,49.50%,50.50%,20,1.70%,125,10.50%,45,1144,3,3.80%,96.00%,0.30%,258,265,1055,25.10% +146452,885,2179,State-funded primary,322,166,156,51.60%,48.40%,13,4.00%,55,17.10%,179,143,0,55.60%,44.40%,0.00%,81,83,285,29.10% +146454,830,3550,State-funded primary,326,158,168,48.50%,51.50%,4,1.20%,46,14.10%,11,315,0,3.40%,96.60%,0.00%,151,135,288,46.90% +146455,370,4805,State-funded secondary,2004,992,1012,49.50%,50.50%,44,2.20%,160,8.00%,248,1704,52,12.40%,85.00%,2.60%,515,594,2004,29.60% +146456,357,2077,State-funded primary,386,174,212,45.10%,54.90%,3,0.80%,114,29.50%,36,350,0,9.30%,90.70%,0.00%,186,196,360,54.40% +146457,937,2502,State-funded primary,114,54,60,47.40%,52.60%,2,1.80%,12,10.50%,6,108,0,5.30%,94.70%,0.00%,21,21,114,18.40% +146459,861,2054,State-funded primary,458,211,247,46.10%,53.90%,10,2.20%,90,19.70%,349,107,2,76.20%,23.40%,0.40%,198,181,406,44.60% +146460,935,2194,State-funded primary,626,330,296,52.70%,47.30%,10,1.60%,57,9.10%,68,558,0,10.90%,89.10%,0.00%,42,43,595,7.20% +146461,830,3064,State-funded primary,50,28,22,56.00%,44.00%,0,0.00%,6,12.00%,0,50,0,0.00%,100.00%,0.00%,5,5,50,10.00% +146462,826,2349,State-funded primary,246,118,128,48.00%,52.00%,3,1.20%,28,11.40%,80,136,30,32.50%,55.30%,12.20%,60,60,246,24.40% +146463,371,2167,State-funded primary,427,210,217,49.20%,50.80%,10,2.30%,49,11.50%,67,359,1,15.70%,84.10%,0.20%,163,158,391,40.40% +146464,861,2002,State-funded primary,450,203,247,45.10%,54.90%,12,2.70%,44,9.80%,234,216,0,52.00%,48.00%,0.00%,206,188,405,46.40% +146465,861,3301,State-funded primary,459,218,241,47.50%,52.50%,7,1.50%,68,14.80%,385,66,8,83.90%,14.40%,1.70%,214,196,414,47.30% +146466,861,2060,State-funded primary,427,214,213,50.10%,49.90%,8,1.90%,86,20.10%,90,337,0,21.10%,78.90%,0.00%,180,160,383,41.80% +146467,372,2130,State-funded primary,236,113,123,47.90%,52.10%,12,5.10%,20,8.50%,4,232,0,1.70%,98.30%,0.00%,22,22,210,10.50% +146469,873,3037,State-funded primary,98,53,45,54.10%,45.90%,6,6.10%,15,15.30%,7,88,3,7.10%,89.80%,3.10%,14,16,90,17.80% +146470,372,2082,State-funded primary,163,78,85,47.90%,52.10%,4,2.50%,33,20.20%,6,157,0,3.70%,96.30%,0.00%,33,31,138,22.50% +146471,830,2148,State-funded primary,144,69,75,47.90%,52.10%,1,0.70%,32,22.20%,0,144,0,0.00%,100.00%,0.00%,44,52,144,36.10% +146473,861,2064,State-funded primary,363,183,180,50.40%,49.60%,8,2.20%,65,17.90%,42,321,0,11.60%,88.40%,0.00%,147,141,322,43.80% +146474,313,2015,State-funded primary,203,109,94,53.70%,46.30%,21,10.30%,27,13.30%,105,97,1,51.70%,47.80%,0.50%,77,78,181,43.10% +146475,838,2024,State-funded primary,428,214,214,50.00%,50.00%,11,2.60%,44,10.30%,8,418,2,1.90%,97.70%,0.50%,40,41,428,9.60% +146477,831,2006,State-funded primary,354,169,185,47.70%,52.30%,9,2.50%,39,11.00%,84,266,4,23.70%,75.10%,1.10%,12,13,317,4.10% +146479,926,2308,State-funded primary,251,116,135,46.20%,53.80%,9,3.60%,35,13.90%,67,182,2,26.70%,72.50%,0.80%,55,55,210,26.20% +146480,357,2066,State-funded primary,472,234,238,49.60%,50.40%,30,6.40%,170,36.00%,33,439,0,7.00%,93.00%,0.00%,162,167,441,37.90% +146481,931,2455,State-funded primary,93,46,47,49.50%,50.50%,3,3.20%,10,10.80%,8,85,0,8.60%,91.40%,0.00%,10,10,93,10.80% +146482,940,2232,State-funded primary,377,185,192,49.10%,50.90%,4,1.10%,35,9.30%,19,358,0,5.00%,95.00%,0.00%,84,88,377,23.30% +146483,816,3229,State-funded primary,227,109,118,48.00%,52.00%,4,1.80%,16,7.00%,9,218,0,4.00%,96.00%,0.00%,16,18,227,7.90% +146484,830,2116,State-funded primary,193,81,112,42.00%,58.00%,4,2.10%,42,21.80%,12,181,0,6.20%,93.80%,0.00%,63,63,149,42.30% +146486,807,2357,State-funded primary,229,114,115,49.80%,50.20%,5,2.20%,32,14.00%,0,229,0,0.00%,100.00%,0.00%,50,52,213,24.40% +146487,861,2033,State-funded primary,228,112,116,49.10%,50.90%,6,2.60%,49,21.50%,37,190,1,16.20%,83.30%,0.40%,139,129,202,63.90% +146488,373,2328,State-funded primary,136,72,64,52.90%,47.10%,0,0.00%,19,14.00%,2,134,0,1.50%,98.50%,0.00%,12,12,136,8.80% +146489,940,4038,State-funded secondary,1410,704,706,49.90%,50.10%,21,1.50%,148,10.50%,45,1365,0,3.20%,96.80%,0.00%,158,169,1189,14.20% +146490,838,2044,State-funded primary,346,170,176,49.10%,50.90%,7,2.00%,50,14.50%,14,332,0,4.00%,96.00%,0.00%,87,89,346,25.70% +146491,891,2732,State-funded primary,314,148,166,47.10%,52.90%,1,0.30%,17,5.40%,13,301,0,4.10%,95.90%,0.00%,28,31,314,9.90% +146492,372,2061,State-funded primary,166,87,79,52.40%,47.60%,2,1.20%,36,21.70%,1,165,0,0.60%,99.40%,0.00%,28,30,166,18.10% +146493,860,4089,State-funded secondary,666,341,325,51.20%,48.80%,10,1.50%,112,16.80%,51,602,13,7.70%,90.40%,2.00%,216,224,596,37.60% +146494,935,2106,State-funded primary,268,140,128,52.20%,47.80%,9,3.40%,48,17.90%,13,255,0,4.90%,95.10%,0.00%,93,91,252,36.10% +146495,830,3086,State-funded primary,199,90,109,45.20%,54.80%,5,2.50%,28,14.10%,4,194,1,2.00%,97.50%,0.50%,27,27,199,13.60% +146496,838,2026,State-funded primary,247,111,136,44.90%,55.10%,5,2.00%,34,13.80%,4,229,14,1.60%,92.70%,5.70%,51,51,247,20.60% +146497,861,7011,State-funded special school,220,85,135,38.60%,61.40%,220,100.00%,0,0.00%,40,180,0,18.20%,81.80%,0.00%,124,124,213,58.20% +146498,373,2311,State-funded primary,161,71,90,44.10%,55.90%,23,14.30%,26,16.10%,6,153,2,3.70%,95.00%,1.20%,46,44,140,31.40% +146499,925,5206,State-funded primary,326,165,161,50.60%,49.40%,22,6.70%,70,21.50%,12,314,0,3.70%,96.30%,0.00%,177,177,326,54.30% +146500,831,5203,State-funded primary,506,235,271,46.40%,53.60%,10,2.00%,61,12.10%,41,465,0,8.10%,91.90%,0.00%,132,144,506,28.50% +146501,370,4037,State-funded secondary,1146,558,588,48.70%,51.30%,54,4.70%,140,12.20%,51,1085,10,4.50%,94.70%,0.90%,436,498,1146,43.50% +146502,830,3049,State-funded primary,199,94,105,47.20%,52.80%,3,1.50%,37,18.60%,6,193,0,3.00%,97.00%,0.00%,40,41,173,23.70% +146503,861,7008,State-funded special school,234,69,165,29.50%,70.50%,230,98.30%,3,1.30%,0,233,1,0.00%,99.60%,0.40%,116,127,234,54.30% +146505,925,2170,State-funded primary,256,130,126,50.80%,49.20%,11,4.30%,50,19.50%,17,239,0,6.60%,93.40%,0.00%,142,124,212,58.50% +146506,893,4396,State-funded secondary,826,393,433,47.60%,52.40%,22,2.70%,79,9.60%,39,776,11,4.70%,93.90%,1.30%,199,211,826,25.50% +146507,831,2455,State-funded primary,290,139,151,47.90%,52.10%,6,2.10%,25,8.60%,29,260,1,10.00%,89.70%,0.30%,78,78,290,26.90% +146508,830,2127,State-funded primary,335,176,159,52.50%,47.50%,4,1.20%,53,15.80%,9,326,0,2.70%,97.30%,0.00%,105,109,288,37.80% +146509,893,4410,State-funded secondary,621,297,324,47.80%,52.20%,8,1.30%,109,17.60%,21,554,46,3.40%,89.20%,7.40%,118,125,621,20.10% +146510,373,2294,State-funded primary,180,90,90,50.00%,50.00%,3,1.70%,12,6.70%,4,176,0,2.20%,97.80%,0.00%,21,21,180,11.70% +146511,359,3427,State-funded primary,99,49,50,49.50%,50.50%,3,3.00%,15,15.20%,12,87,0,12.10%,87.90%,0.00%,23,24,99,24.20% +146512,380,2050,State-funded primary,350,158,192,45.10%,54.90%,1,0.30%,37,10.60%,24,325,1,6.90%,92.90%,0.30%,69,71,350,20.30% +146513,860,2035,State-funded primary,249,124,125,49.80%,50.20%,1,0.40%,50,20.10%,14,235,0,5.60%,94.40%,0.00%,61,64,249,25.70% +146515,873,2085,State-funded primary,287,133,154,46.30%,53.70%,24,8.40%,74,25.80%,77,207,3,26.80%,72.10%,1.00%,146,152,287,53.00% +146516,931,6022,Independent school,373,209,164,56.00%,44.00%,0,0.00%,20,5.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146518,825,4013,State-funded secondary,823,437,386,53.10%,46.90%,46,5.60%,143,17.40%,148,675,0,18.00%,82.00%,0.00%,223,239,725,33.00% +146519,916,6021,Independent school,45,3,42,6.70%,93.30%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146521,886,6152,Independent school,50,19,31,38.00%,62.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146525,390,6010,Independent school,412,0,412,0.00%,100.00%,3,0.70%,28,6.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146527,936,7001,State-funded special school,64,0,64,0.00%,100.00%,64,100.00%,0,0.00%,3,61,0,4.70%,95.30%,0.00%,51,53,64,82.80% +146528,940,2066,State-funded primary,188,97,91,51.60%,48.40%,2,1.10%,12,6.40%,12,175,1,6.40%,93.10%,0.50%,29,30,188,16.00% +146529,351,4020,State-funded secondary,919,427,492,46.50%,53.50%,17,1.80%,121,13.20%,66,853,0,7.20%,92.80%,0.00%,221,249,919,27.10% +146530,344,3337,State-funded primary,372,175,197,47.00%,53.00%,7,1.90%,72,19.40%,13,359,0,3.50%,96.50%,0.00%,80,82,372,22.00% +146531,878,2091,State-funded primary,204,97,107,47.50%,52.50%,6,2.90%,57,27.90%,10,194,0,4.90%,95.10%,0.00%,100,91,177,51.40% +146532,935,2226,State-funded primary,172,82,90,47.70%,52.30%,4,2.30%,23,13.40%,16,156,0,9.30%,90.70%,0.00%,53,53,172,30.80% +146534,878,2092,State-funded primary,155,84,71,54.20%,45.80%,5,3.20%,25,16.10%,6,148,1,3.90%,95.50%,0.60%,75,77,155,49.70% +146535,350,2021,State-funded primary,184,92,92,50.00%,50.00%,8,4.30%,23,12.50%,23,161,0,12.50%,87.50%,0.00%,106,101,160,63.10% +146536,380,2053,State-funded primary,207,97,110,46.90%,53.10%,2,1.00%,38,18.40%,46,161,0,22.20%,77.80%,0.00%,49,50,186,26.90% +146537,891,2037,State-funded primary,221,94,127,42.50%,57.50%,3,1.40%,43,19.50%,29,192,0,13.10%,86.90%,0.00%,145,142,195,72.80% +146538,896,2007,State-funded primary,142,63,79,44.40%,55.60%,4,2.80%,49,34.50%,7,135,0,4.90%,95.10%,0.00%,81,79,130,60.80% +146539,892,4011,State-funded secondary,1284,550,734,42.80%,57.20%,9,0.70%,180,14.00%,346,938,0,26.90%,73.10%,0.00%,539,611,1284,47.60% +146540,383,2028,State-funded primary,245,119,126,48.60%,51.40%,2,0.80%,22,9.00%,4,241,0,1.60%,98.40%,0.00%,21,21,209,10.00% +146541,889,2014,State-funded primary,323,151,172,46.70%,53.30%,13,4.00%,64,19.80%,256,67,0,79.30%,20.70%,0.00%,68,75,323,23.20% +146542,383,2030,State-funded primary,272,135,137,49.60%,50.40%,12,4.40%,93,34.20%,37,235,0,13.60%,86.40%,0.00%,164,163,262,62.20% +146543,306,2116,State-funded primary,331,166,165,50.20%,49.80%,18,5.40%,56,16.90%,154,176,1,46.50%,53.20%,0.30%,157,167,331,50.50% +146544,929,2008,State-funded primary,434,216,218,49.80%,50.20%,23,5.30%,91,21.00%,13,421,0,3.00%,97.00%,0.00%,159,159,400,39.80% +146545,929,2010,State-funded primary,408,186,222,45.60%,54.40%,16,3.90%,77,18.90%,30,378,0,7.40%,92.60%,0.00%,156,159,360,44.20% +146549,212,2012,State-funded primary,193,92,101,47.70%,52.30%,4,2.10%,38,19.70%,126,67,0,65.30%,34.70%,0.00%,66,71,173,41.00% +146550,926,2209,State-funded primary,125,62,63,49.60%,50.40%,3,2.40%,10,8.00%,8,117,0,6.40%,93.60%,0.00%,18,17,100,17.00% +146553,202,6005,Independent school,22,13,9,59.10%,40.90%,2,9.10%,6,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146558,926,2211,State-funded primary,74,36,38,48.60%,51.40%,4,5.40%,9,12.20%,0,74,0,0.00%,100.00%,0.00%,8,9,74,12.20% +146559,925,2058,State-funded primary,404,190,214,47.00%,53.00%,12,3.00%,60,14.90%,18,386,0,4.50%,95.50%,0.00%,161,161,379,42.50% +146560,879,4005,State-funded secondary,536,121,415,22.60%,77.40%,16,3.00%,90,16.80%,35,501,0,6.50%,93.50%,0.00%,206,222,490,45.30% +146561,925,2063,State-funded primary,390,187,203,47.90%,52.10%,10,2.60%,77,19.70%,67,323,0,17.20%,82.80%,0.00%,230,237,390,60.80% +146562,891,4026,State-funded secondary,1573,744,829,47.30%,52.70%,19,1.20%,252,16.00%,102,1453,18,6.50%,92.40%,1.10%,273,286,1334,21.40% +146563,335,6044,Independent school,21,2,19,9.50%,90.50%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146564,892,4012,State-funded secondary,881,460,421,52.20%,47.80%,5,0.60%,145,16.50%,82,797,2,9.30%,90.50%,0.20%,368,411,881,46.70% +146566,940,2243,State-funded primary,291,139,152,47.80%,52.20%,8,2.70%,35,12.00%,21,270,0,7.20%,92.80%,0.00%,85,88,291,30.20% +146567,878,4024,State-funded secondary,263,126,137,47.90%,52.10%,31,11.80%,57,21.70%,1,262,0,0.40%,99.60%,0.00%,83,100,263,38.00% +146569,888,6128,Independent school,60,19,41,31.70%,68.30%,60,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146571,372,6000,Independent school,67,13,54,19.40%,80.60%,67,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146572,801,2130,State-funded primary,209,94,115,45.00%,55.00%,6,2.90%,25,12.00%,11,164,34,5.30%,78.50%,16.30%,38,40,209,19.10% +146573,936,3475,State-funded primary,212,122,90,57.50%,42.50%,6,2.80%,25,11.80%,23,189,0,10.80%,89.20%,0.00%,14,15,212,7.10% +146574,886,2062,State-funded primary,187,93,94,49.70%,50.30%,3,1.60%,34,18.20%,42,145,0,22.50%,77.50%,0.00%,80,82,187,43.90% +146575,831,3158,State-funded primary,124,54,70,43.50%,56.50%,1,0.80%,21,16.90%,114,10,0,91.90%,8.10%,0.00%,59,60,105,57.10% +146578,878,2040,State-funded primary,211,108,103,51.20%,48.80%,11,5.20%,43,20.40%,35,176,0,16.60%,83.40%,0.00%,103,109,211,51.70% +146579,831,2002,State-funded primary,468,236,232,50.40%,49.60%,13,2.80%,52,11.10%,86,380,2,18.40%,81.20%,0.40%,28,29,430,6.70% +146580,893,4423,State-funded secondary,848,415,433,48.90%,51.10%,14,1.70%,112,13.20%,44,804,0,5.20%,94.80%,0.00%,198,220,776,28.40% +146581,380,2024,State-funded primary,704,338,366,48.00%,52.00%,53,7.50%,71,10.10%,371,333,0,52.70%,47.30%,0.00%,201,204,608,33.60% +146582,372,2083,State-funded primary,194,100,94,51.50%,48.50%,9,4.60%,50,25.80%,10,184,0,5.20%,94.80%,0.00%,61,66,194,34.00% +146583,371,3326,State-funded primary,436,212,224,48.60%,51.40%,11,2.50%,70,16.10%,7,429,0,1.60%,98.40%,0.00%,117,122,386,31.60% +146584,380,2199,State-funded primary,414,210,204,50.70%,49.30%,7,1.70%,62,15.00%,87,327,0,21.00%,79.00%,0.00%,148,157,381,41.20% +146586,925,2152,State-funded primary,37,20,17,54.10%,45.90%,5,13.50%,13,35.10%,0,37,0,0.00%,100.00%,0.00%,19,20,37,54.10% +146589,860,3442,State-funded primary,162,73,89,45.10%,54.90%,2,1.20%,23,14.20%,3,159,0,1.90%,98.10%,0.00%,48,50,138,36.20% +146590,860,2228,State-funded primary,149,81,68,54.40%,45.60%,0,0.00%,20,13.40%,0,149,0,0.00%,100.00%,0.00%,33,33,149,22.10% +146593,380,2033,State-funded primary,216,105,111,48.60%,51.40%,2,0.90%,14,6.50%,14,202,0,6.50%,93.50%,0.00%,68,72,203,35.50% +146594,860,3103,State-funded primary,41,20,21,48.80%,51.20%,0,0.00%,4,9.80%,3,38,0,7.30%,92.70%,0.00%,4,4,41,9.80% +146596,802,3108,State-funded primary,200,100,100,50.00%,50.00%,2,1.00%,25,12.50%,2,198,0,1.00%,99.00%,0.00%,13,14,200,7.00% +146597,925,2180,State-funded primary,42,14,28,33.30%,66.70%,11,26.20%,15,35.70%,0,42,0,0.00%,100.00%,0.00%,19,19,42,45.20% +146598,891,2206,State-funded primary,198,97,101,49.00%,51.00%,1,0.50%,16,8.10%,7,191,0,3.50%,96.50%,0.00%,11,11,198,5.60% +146600,878,2039,State-funded primary,245,127,118,51.80%,48.20%,2,0.80%,29,11.80%,41,204,0,16.70%,83.30%,0.00%,113,83,161,51.60% +146601,881,5951,State-funded special school,150,61,89,40.70%,59.30%,150,100.00%,0,0.00%,5,145,0,3.30%,96.70%,0.00%,62,62,118,52.50% +146602,855,3000,State-funded primary,54,21,33,38.90%,61.10%,3,5.60%,10,18.50%,0,54,0,0.00%,100.00%,0.00%,8,8,54,14.80% +146603,855,3321,State-funded primary,202,110,92,54.50%,45.50%,1,0.50%,15,7.40%,4,197,1,2.00%,97.50%,0.50%,41,41,202,20.30% +146605,860,2224,State-funded primary,171,85,86,49.70%,50.30%,4,2.30%,14,8.20%,2,169,0,1.20%,98.80%,0.00%,18,18,157,11.50% +146607,830,3097,State-funded primary,142,76,66,53.50%,46.50%,5,3.50%,18,12.70%,5,134,3,3.50%,94.40%,2.10%,10,10,131,7.60% +146609,860,2223,State-funded primary,229,118,111,51.50%,48.50%,6,2.60%,52,22.70%,4,225,0,1.70%,98.30%,0.00%,45,48,229,21.00% +146611,855,3209,State-funded primary,414,207,207,50.00%,50.00%,5,1.20%,39,9.40%,39,367,8,9.40%,88.60%,1.90%,39,41,414,9.90% +146612,860,3443,State-funded primary,237,121,116,51.10%,48.90%,0,0.00%,35,14.80%,3,234,0,1.30%,98.70%,0.00%,19,19,205,9.30% +146615,895,2138,State-funded primary,346,152,194,43.90%,56.10%,19,5.50%,24,6.90%,45,301,0,13.00%,87.00%,0.00%,39,40,316,12.70% +146616,382,2062,State-funded primary,231,108,123,46.80%,53.20%,9,3.90%,39,16.90%,205,26,0,88.70%,11.30%,0.00%,18,18,210,8.60% +146618,855,3087,State-funded primary,410,193,217,47.10%,52.90%,6,1.50%,40,9.80%,11,399,0,2.70%,97.30%,0.00%,50,50,410,12.20% +146621,855,3027,State-funded primary,133,60,73,45.10%,54.90%,5,3.80%,18,13.50%,9,124,0,6.80%,93.20%,0.00%,18,19,133,14.30% +146622,896,2196,State-funded primary,192,84,108,43.80%,56.30%,2,1.00%,23,12.00%,4,188,0,2.10%,97.90%,0.00%,26,27,192,14.10% +146623,860,2229,State-funded primary,277,136,141,49.10%,50.90%,1,0.40%,31,11.20%,5,270,2,1.80%,97.50%,0.70%,47,47,277,17.00% +146624,886,4023,State-funded secondary,900,465,435,51.70%,48.30%,35,3.90%,79,8.80%,24,873,3,2.70%,97.00%,0.30%,291,291,850,34.20% +146626,926,6021,Independent school,8,1,7,12.50%,87.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146633,383,6009,Independent school,91,24,67,26.40%,73.60%,6,6.60%,83,91.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146634,909,4015,State-funded secondary,665,326,339,49.00%,51.00%,19,2.90%,101,15.20%,6,659,0,0.90%,99.10%,0.00%,218,236,650,36.30% +146635,860,4019,State-funded secondary,295,151,144,51.20%,48.80%,3,1.00%,30,10.20%,3,292,0,1.00%,99.00%,0.00%,77,86,295,29.20% +146636,860,2036,State-funded primary,150,65,85,43.30%,56.70%,3,2.00%,38,25.30%,2,148,0,1.30%,98.70%,0.00%,49,49,125,39.20% +146639,371,4012,State-funded secondary,654,324,330,49.50%,50.50%,7,1.10%,76,11.60%,33,620,1,5.00%,94.80%,0.20%,298,322,654,49.20% +146640,394,7002,State-funded special school,131,20,111,15.30%,84.70%,131,100.00%,0,0.00%,1,130,0,0.80%,99.20%,0.00%,99,102,131,77.90% +146642,896,2008,State-funded primary,82,37,45,45.10%,54.90%,2,2.40%,20,24.40%,4,78,0,4.90%,95.10%,0.00%,31,32,82,39.00% +146646,353,6004,Independent school,33,1,32,3.00%,97.00%,33,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146648,887,4003,State-funded secondary,267,77,190,28.80%,71.20%,6,2.20%,82,30.70%,24,241,2,9.00%,90.30%,0.70%,77,73,211,34.60% +146654,865,6052,Independent school,30,12,18,40.00%,60.00%,0,0.00%,4,13.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146660,936,6058,Independent school,56,12,44,21.40%,78.60%,56,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146661,936,2214,State-funded primary,200,94,106,47.00%,53.00%,9,4.50%,14,7.00%,14,186,0,7.00%,93.00%,0.00%,23,24,200,12.00% +146662,302,2041,State-funded primary,207,105,102,50.70%,49.30%,3,1.40%,32,15.50%,13,194,0,6.30%,93.70%,0.00%,4,4,207,1.90% +146663,308,3506,State-funded primary,461,204,257,44.30%,55.70%,12,2.60%,42,9.10%,14,447,0,3.00%,97.00%,0.00%,7,7,411,1.70% +146665,830,2040,State-funded primary,235,112,123,47.70%,52.30%,8,3.40%,98,41.70%,5,230,0,2.10%,97.90%,0.00%,147,152,235,64.70% +146666,384,2041,State-funded primary,295,137,158,46.40%,53.60%,10,3.40%,37,12.50%,33,262,0,11.20%,88.80%,0.00%,75,76,265,28.70% +146667,885,2028,State-funded primary,135,63,72,46.70%,53.30%,8,5.90%,34,25.20%,12,123,0,8.90%,91.10%,0.00%,75,76,135,56.30% +146668,866,7005,State-funded special school,72,15,57,20.80%,79.20%,72,100.00%,0,0.00%,9,63,0,12.50%,87.50%,0.00%,30,36,72,50.00% +146669,210,2010,State-funded primary,194,95,99,49.00%,51.00%,3,1.50%,32,16.50%,85,109,0,43.80%,56.20%,0.00%,87,92,176,52.30% +146670,353,2024,State-funded primary,269,125,144,46.50%,53.50%,5,1.90%,22,8.20%,7,262,0,2.60%,97.40%,0.00%,77,78,248,31.50% +146671,916,6025,Independent school,27,6,21,22.20%,77.80%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146672,371,2056,State-funded primary,95,57,38,60.00%,40.00%,3,3.20%,14,14.70%,3,92,0,3.20%,96.80%,0.00%,21,21,75,28.00% +146673,879,2637,State-funded primary,256,119,137,46.50%,53.50%,1,0.40%,13,5.10%,50,206,0,19.50%,80.50%,0.00%,19,19,256,7.40% +146674,940,2004,State-funded primary,134,69,65,51.50%,48.50%,0,0.00%,10,7.50%,1,133,0,0.70%,99.30%,0.00%,19,18,120,15.00% +146676,933,3195,State-funded primary,418,201,217,48.10%,51.90%,14,3.30%,56,13.40%,41,377,0,9.80%,90.20%,0.00%,58,58,418,13.90% +146677,381,2028,State-funded primary,540,253,287,46.90%,53.10%,15,2.80%,67,12.40%,390,150,0,72.20%,27.80%,0.00%,131,132,445,29.70% +146678,885,2156,State-funded primary,144,79,65,54.90%,45.10%,0,0.00%,8,5.60%,5,139,0,3.50%,96.50%,0.00%,20,21,144,14.60% +146679,808,3313,State-funded primary,290,154,136,53.10%,46.90%,2,0.70%,15,5.20%,8,282,0,2.80%,97.20%,0.00%,43,43,258,16.70% +146680,391,7036,State-funded special school,314,69,245,22.00%,78.00%,314,100.00%,0,0.00%,59,254,1,18.80%,80.90%,0.30%,171,162,292,55.50% +146681,320,2061,State-funded primary,231,101,130,43.70%,56.30%,3,1.30%,32,13.90%,68,163,0,29.40%,70.60%,0.00%,36,35,195,17.90% +146682,936,3935,State-funded primary,453,242,211,53.40%,46.60%,10,2.20%,48,10.60%,99,354,0,21.90%,78.10%,0.00%,141,139,409,34.00% +146683,931,7029,State-funded special school,106,30,76,28.30%,71.70%,106,100.00%,0,0.00%,12,94,0,11.30%,88.70%,0.00%,37,34,88,38.60% +146684,926,2393,State-funded primary,240,115,125,47.90%,52.10%,4,1.70%,30,12.50%,28,212,0,11.70%,88.30%,0.00%,31,31,180,17.20% +146685,823,2069,State-funded primary,170,84,86,49.40%,50.60%,5,2.90%,21,12.40%,22,148,0,12.90%,87.10%,0.00%,38,36,126,28.60% +146687,801,2002,State-funded primary,456,234,222,51.30%,48.70%,4,0.90%,37,8.10%,9,447,0,2.00%,98.00%,0.00%,90,90,416,21.60% +146688,343,2032,State-funded primary,743,377,366,50.70%,49.30%,9,1.20%,77,10.40%,34,709,0,4.60%,95.40%,0.00%,96,98,697,14.10% +146689,800,3106,State-funded primary,81,46,35,56.80%,43.20%,3,3.70%,5,6.20%,2,79,0,2.50%,97.50%,0.00%,3,3,81,3.70% +146690,838,2048,State-funded primary,206,95,111,46.10%,53.90%,3,1.50%,31,15.00%,1,205,0,0.50%,99.50%,0.00%,30,30,206,14.60% +146691,937,2610,State-funded primary,93,45,48,48.40%,51.60%,2,2.20%,18,19.40%,6,87,0,6.50%,93.50%,0.00%,24,25,93,26.90% +146692,926,2049,State-funded primary,123,45,78,36.60%,63.40%,3,2.40%,38,30.90%,50,72,1,40.70%,58.50%,0.80%,21,20,105,19.00% +146693,334,2089,State-funded primary,476,232,244,48.70%,51.30%,6,1.30%,69,14.50%,36,440,0,7.60%,92.40%,0.00%,91,89,409,21.80% +146694,940,3000,State-funded primary,139,58,81,41.70%,58.30%,3,2.20%,20,14.40%,5,134,0,3.60%,96.40%,0.00%,11,11,139,7.90% +146695,881,2757,State-funded primary,211,101,110,47.90%,52.10%,9,4.30%,29,13.70%,11,200,0,5.20%,94.80%,0.00%,44,46,211,21.80% +146696,330,2052,State-funded primary,406,197,209,48.50%,51.50%,6,1.50%,55,13.50%,41,365,0,10.10%,89.90%,0.00%,254,267,406,65.80% +146697,937,4236,State-funded secondary,1834,896,938,48.90%,51.10%,20,1.10%,322,17.60%,133,1682,19,7.30%,91.70%,1.00%,135,135,1413,9.60% +146698,933,7014,State-funded special school,198,58,140,29.30%,70.70%,197,99.50%,1,0.50%,24,174,0,12.10%,87.90%,0.00%,78,68,177,38.40% +146699,885,4418,State-funded secondary,594,265,329,44.60%,55.40%,18,3.00%,126,21.20%,107,486,1,18.00%,81.80%,0.20%,216,234,594,39.40% +146701,330,2132,State-funded primary,638,313,325,49.10%,50.90%,4,0.60%,118,18.50%,463,175,0,72.60%,27.40%,0.00%,246,250,589,42.40% +146703,357,3020,State-funded primary,204,90,114,44.10%,55.90%,2,1.00%,37,18.10%,59,145,0,28.90%,71.10%,0.00%,82,83,191,43.50% +146704,933,2330,State-funded primary,240,126,114,52.50%,47.50%,6,2.50%,31,12.90%,45,195,0,18.80%,81.30%,0.00%,28,31,240,12.90% +146706,371,2160,State-funded primary,176,80,96,45.50%,54.50%,1,0.60%,29,16.50%,14,162,0,8.00%,92.00%,0.00%,43,41,128,32.00% +146707,800,2248,State-funded primary,55,31,24,56.40%,43.60%,1,1.80%,11,20.00%,1,54,0,1.80%,98.20%,0.00%,12,12,55,21.80% +146708,883,5281,State-funded primary,237,120,117,50.60%,49.40%,5,2.10%,35,14.80%,4,233,0,1.70%,98.30%,0.00%,23,24,201,11.90% +146709,808,3303,State-funded primary,185,95,90,51.40%,48.60%,1,0.50%,17,9.20%,4,181,0,2.20%,97.80%,0.00%,61,57,157,36.30% +146710,879,2636,State-funded primary,331,172,159,52.00%,48.00%,3,0.90%,31,9.40%,62,269,0,18.70%,81.30%,0.00%,45,46,331,13.90% +146711,926,2058,State-funded primary,298,150,148,50.30%,49.70%,7,2.30%,48,16.10%,31,266,1,10.40%,89.30%,0.30%,78,82,298,27.50% +146712,940,2203,State-funded primary,444,219,225,49.30%,50.70%,6,1.40%,33,7.40%,137,307,0,30.90%,69.10%,0.00%,48,49,398,12.30% +146714,821,2273,State-funded primary,397,200,197,50.40%,49.60%,8,2.00%,87,21.90%,176,221,0,44.30%,55.70%,0.00%,117,125,357,35.00% +146715,831,2629,State-funded primary,639,319,320,49.90%,50.10%,25,3.90%,59,9.20%,495,144,0,77.50%,22.50%,0.00%,228,230,533,43.20% +146716,357,3311,State-funded primary,220,106,114,48.20%,51.80%,7,3.20%,47,21.40%,39,181,0,17.70%,82.30%,0.00%,69,72,202,35.60% +146717,933,3286,State-funded primary,199,101,98,50.80%,49.20%,7,3.50%,31,15.60%,22,177,0,11.10%,88.90%,0.00%,24,27,199,13.60% +146719,885,2131,State-funded primary,307,171,136,55.70%,44.30%,2,0.70%,54,17.60%,83,224,0,27.00%,73.00%,0.00%,54,58,271,21.40% +146720,838,3053,State-funded primary,310,153,157,49.40%,50.60%,6,1.90%,22,7.10%,3,307,0,1.00%,99.00%,0.00%,28,24,268,9.00% +146721,304,3510,State-funded primary,224,112,112,50.00%,50.00%,2,0.90%,27,12.10%,124,100,0,55.40%,44.60%,0.00%,24,25,178,14.00% +146722,330,2485,State-funded primary,625,297,328,47.50%,52.50%,1,0.20%,107,17.10%,170,453,2,27.20%,72.50%,0.30%,347,355,625,56.80% +146723,919,3037,State-funded primary,159,83,76,52.20%,47.80%,1,0.60%,8,5.00%,4,155,0,2.50%,97.50%,0.00%,18,22,159,13.80% +146724,306,3415,State-funded primary,515,249,266,48.30%,51.70%,38,7.40%,55,10.70%,276,239,0,53.60%,46.40%,0.00%,138,152,472,32.20% +146725,881,2036,State-funded primary,141,83,58,58.90%,41.10%,3,2.10%,7,5.00%,0,141,0,0.00%,100.00%,0.00%,9,9,141,6.40% +146726,874,2296,State-funded primary,216,98,118,45.40%,54.60%,0,0.00%,16,7.40%,82,134,0,38.00%,62.00%,0.00%,75,76,216,35.20% +146727,860,7030,State-funded special school,244,80,164,32.80%,67.20%,244,100.00%,0,0.00%,6,238,0,2.50%,97.50%,0.00%,115,106,203,52.20% +146728,308,2023,State-funded primary,487,234,253,48.00%,52.00%,15,3.10%,101,20.70%,389,98,0,79.90%,20.10%,0.00%,190,195,440,44.30% +146729,212,6004,Independent school,110,0,110,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146731,330,1112,State-funded AP school,2,0,2,0.00%,100.00%,0,0.00%,1,50.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +146732,878,1114,State-funded AP school,39,18,21,46.20%,53.80%,6,15.40%,33,84.60%,1,38,0,2.60%,97.40%,0.00%,16,28,39,71.80% +146733,808,6005,Independent school,86,23,63,26.70%,73.30%,84,97.70%,2,2.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146734,878,1115,State-funded AP school,58,14,44,24.10%,75.90%,9,15.50%,49,84.50%,2,55,1,3.40%,94.80%,1.70%,28,44,58,75.90% +146735,878,1116,State-funded AP school,36,12,24,33.30%,66.70%,2,5.60%,34,94.40%,0,35,1,0.00%,97.20%,2.80%,20,24,36,66.70% +146736,886,6153,Independent school,46,13,33,28.30%,71.70%,46,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146740,344,2005,State-funded primary,222,118,104,53.20%,46.80%,11,5.00%,40,18.00%,7,215,0,3.20%,96.80%,0.00%,71,64,190,33.70% +146742,896,4009,State-funded secondary,608,299,309,49.20%,50.80%,15,2.50%,81,13.30%,92,515,1,15.10%,84.70%,0.20%,271,280,543,51.60% +146743,890,2006,State-funded primary,610,317,293,52.00%,48.00%,3,0.50%,67,11.00%,21,588,1,3.40%,96.40%,0.20%,227,223,565,39.50% +146747,933,2035,State-funded primary,186,84,102,45.20%,54.80%,4,2.20%,37,19.90%,52,134,0,28.00%,72.00%,0.00%,69,69,161,42.90% +146748,204,6018,Independent school,478,478,0,100.00%,0.00%,8,1.70%,55,11.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146749,885,3369,State-funded primary,231,120,111,51.90%,48.10%,3,1.30%,67,29.00%,5,226,0,2.20%,97.80%,0.00%,61,54,204,26.50% +146750,310,2061,State-funded primary,879,455,424,51.80%,48.20%,27,3.10%,58,6.60%,480,399,0,54.60%,45.40%,0.00%,104,100,828,12.10% +146751,821,2268,State-funded primary,448,236,212,52.70%,47.30%,12,2.70%,79,17.60%,150,298,0,33.50%,66.50%,0.00%,186,186,408,45.60% +146752,391,4007,State-funded secondary,2019,1019,1000,50.50%,49.50%,34,1.70%,245,12.10%,569,1442,8,28.20%,71.40%,0.40%,646,569,1647,34.50% +146753,874,2015,State-funded primary,687,344,343,50.10%,49.90%,7,1.00%,87,12.70%,189,497,1,27.50%,72.30%,0.10%,133,134,610,22.00% +146754,885,2029,State-funded primary,187,90,97,48.10%,51.90%,1,0.50%,21,11.20%,132,55,0,70.60%,29.40%,0.00%,28,27,166,16.30% +146755,888,2007,State-funded primary,172,91,81,52.90%,47.10%,5,2.90%,12,7.00%,4,168,0,2.30%,97.70%,0.00%,35,39,172,22.70% +146756,909,2021,State-funded primary,94,44,50,46.80%,53.20%,1,1.10%,13,13.80%,0,94,0,0.00%,100.00%,0.00%,2,2,77,2.60% +146757,926,2217,State-funded primary,68,30,38,44.10%,55.90%,6,8.80%,16,23.50%,1,67,0,1.50%,98.50%,0.00%,20,20,62,32.30% +146762,812,2014,State-funded primary,310,163,147,52.60%,47.40%,4,1.30%,44,14.20%,39,271,0,12.60%,87.40%,0.00%,139,140,295,47.50% +146765,877,4010,State-funded secondary,577,299,278,51.80%,48.20%,38,6.60%,49,8.50%,107,454,16,18.50%,78.70%,2.80%,246,281,577,48.70% +146767,353,2025,State-funded primary,459,235,224,51.20%,48.80%,15,3.30%,93,20.30%,389,70,0,84.70%,15.30%,0.00%,179,178,410,43.40% +146768,341,2041,State-funded primary,298,143,155,48.00%,52.00%,9,3.00%,71,23.80%,72,226,0,24.20%,75.80%,0.00%,166,167,285,58.60% +146769,815,4007,State-funded secondary,1006,560,446,55.70%,44.30%,29,2.90%,110,10.90%,121,875,10,12.00%,87.00%,1.00%,318,360,1006,35.80% +146770,806,2009,State-funded primary,740,346,394,46.80%,53.20%,5,0.70%,125,16.90%,530,208,2,71.60%,28.10%,0.30%,390,395,630,62.70% +146773,353,6006,Independent school,43,9,34,20.90%,79.10%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146774,850,6095,Independent school,18,4,14,22.20%,77.80%,17,94.40%,1,5.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146778,933,2037,State-funded primary,202,108,94,53.50%,46.50%,3,1.50%,22,10.90%,27,174,1,13.40%,86.10%,0.50%,22,22,147,15.00% +146779,896,2009,State-funded primary,197,112,85,56.90%,43.10%,5,2.50%,25,12.70%,32,165,0,16.20%,83.80%,0.00%,37,38,197,19.30% +146780,330,6045,Independent school,16,7,9,43.80%,56.30%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146781,936,2043,State-funded primary,149,67,82,45.00%,55.00%,8,5.40%,25,16.80%,37,112,0,24.80%,75.20%,0.00%,53,53,120,44.20% +146782,310,2007,State-funded primary,445,203,242,45.60%,54.40%,21,4.70%,61,13.70%,296,149,0,66.50%,33.50%,0.00%,110,113,419,27.00% +146784,830,2042,State-funded primary,89,45,44,50.60%,49.40%,1,1.10%,10,11.20%,1,88,0,1.10%,98.90%,0.00%,28,28,89,31.50% +146785,335,2036,State-funded primary,282,146,136,51.80%,48.20%,12,4.30%,60,21.30%,7,275,0,2.50%,97.50%,0.00%,137,145,268,54.10% +146786,845,3345,State-funded primary,199,99,100,49.70%,50.30%,3,1.50%,43,21.60%,25,173,1,12.60%,86.90%,0.50%,44,45,199,22.60% +146787,800,3086,State-funded primary,90,40,50,44.40%,55.60%,2,2.20%,7,7.80%,0,90,0,0.00%,100.00%,0.00%,12,12,90,13.30% +146788,800,2237,State-funded primary,182,86,96,47.30%,52.70%,4,2.20%,21,11.50%,3,179,0,1.60%,98.40%,0.00%,15,15,182,8.20% +146790,838,6042,Independent school,26,9,17,34.60%,65.40%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146792,355,2005,State-funded primary,291,148,143,50.90%,49.10%,9,3.10%,59,20.30%,193,97,1,66.30%,33.30%,0.30%,149,152,256,59.40% +146793,355,4004,State-funded secondary,892,427,465,47.90%,52.10%,11,1.20%,136,15.20%,316,576,0,35.40%,64.60%,0.00%,518,543,892,60.90% +146794,881,4031,State-funded secondary,1733,758,975,43.70%,56.30%,30,1.70%,161,9.30%,215,1518,0,12.40%,87.60%,0.00%,381,385,1532,25.10% +146795,881,4032,State-funded secondary,1243,612,631,49.20%,50.80%,30,2.40%,154,12.40%,47,1195,1,3.80%,96.10%,0.10%,222,258,1243,20.80% +146796,839,2009,State-funded primary,205,104,101,50.70%,49.30%,3,1.50%,33,16.10%,13,192,0,6.30%,93.70%,0.00%,96,96,205,46.80% +146797,359,4012,State-funded secondary,699,336,363,48.10%,51.90%,10,1.40%,182,26.00%,88,609,2,12.60%,87.10%,0.30%,342,357,699,51.10% +146798,380,2059,State-funded primary,365,185,180,50.70%,49.30%,9,2.50%,45,12.30%,219,142,4,60.00%,38.90%,1.10%,187,190,347,54.80% +146800,931,4014,State-funded secondary,655,313,342,47.80%,52.20%,16,2.40%,60,9.20%,317,335,3,48.40%,51.10%,0.50%,181,176,523,33.70% +146803,302,2053,State-funded primary,236,102,134,43.20%,56.80%,6,2.50%,30,12.70%,53,183,0,22.50%,77.50%,0.00%,4,4,209,1.90% +146804,881,6073,Independent school,7,2,5,28.60%,71.40%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146806,860,6049,Independent school,57,14,43,24.60%,75.40%,56,98.20%,1,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146807,860,3118,State-funded primary,112,60,52,53.60%,46.40%,0,0.00%,19,17.00%,0,112,0,0.00%,100.00%,0.00%,22,22,104,21.20% +146808,865,3448,State-funded primary,209,99,110,47.40%,52.60%,4,1.90%,21,10.00%,23,186,0,11.00%,89.00%,0.00%,28,28,209,13.40% +146809,825,2169,State-funded primary,486,232,254,47.70%,52.30%,13,2.70%,42,8.60%,91,395,0,18.70%,81.30%,0.00%,46,50,486,10.30% +146810,931,2060,State-funded primary,233,120,113,51.50%,48.50%,8,3.40%,44,18.90%,54,178,1,23.20%,76.40%,0.40%,52,47,207,22.70% +146811,353,2093,State-funded primary,215,108,107,50.20%,49.80%,1,0.50%,11,5.10%,10,205,0,4.70%,95.30%,0.00%,51,52,190,27.40% +146812,916,3019,State-funded primary,26,14,12,53.80%,46.20%,1,3.80%,6,23.10%,4,22,0,15.40%,84.60%,0.00%,10,10,26,38.50% +146813,353,2069,State-funded primary,231,116,115,50.20%,49.80%,4,1.70%,26,11.30%,10,221,0,4.30%,95.70%,0.00%,26,26,208,12.50% +146814,860,3493,State-funded primary,212,110,102,51.90%,48.10%,10,4.70%,27,12.70%,12,200,0,5.70%,94.30%,0.00%,57,58,212,27.40% +146815,931,2027,State-funded primary,401,189,212,47.10%,52.90%,9,2.20%,118,29.40%,111,288,2,27.70%,71.80%,0.50%,67,67,363,18.50% +146817,330,2198,State-funded primary,241,125,116,51.90%,48.10%,8,3.30%,50,20.70%,47,194,0,19.50%,80.50%,0.00%,156,159,241,66.00% +146818,883,2014,State-funded primary,434,212,222,48.80%,51.20%,26,6.00%,67,15.40%,93,341,0,21.40%,78.60%,0.00%,113,114,411,27.70% +146819,815,4008,State-funded secondary,660,318,342,48.20%,51.80%,17,2.60%,95,14.40%,12,646,2,1.80%,97.90%,0.30%,226,257,660,38.90% +146820,871,4006,State-funded secondary,869,338,531,38.90%,61.10%,23,2.60%,119,13.70%,504,355,10,58.00%,40.90%,1.20%,295,316,869,36.40% +146822,313,2035,State-funded primary,634,324,310,51.10%,48.90%,12,1.90%,46,7.30%,509,125,0,80.30%,19.70%,0.00%,131,141,585,24.10% +146824,808,6006,Independent school,5,5,0,100.00%,0.00%,3,60.00%,2,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146825,845,4008,State-funded secondary,569,285,284,50.10%,49.90%,3,0.50%,92,16.20%,20,549,0,3.50%,96.50%,0.00%,190,205,569,36.00% +146826,845,2026,State-funded primary,250,118,132,47.20%,52.80%,3,1.20%,70,28.00%,11,239,0,4.40%,95.60%,0.00%,97,97,226,42.90% +146827,940,2244,State-funded primary,520,261,259,50.20%,49.80%,25,4.80%,98,18.80%,211,309,0,40.60%,59.40%,0.00%,165,166,443,37.50% +146839,831,2466,State-funded primary,344,165,179,48.00%,52.00%,57,16.60%,38,11.00%,19,325,0,5.50%,94.50%,0.00%,96,98,344,28.50% +146840,816,2349,State-funded primary,100,50,50,50.00%,50.00%,4,4.00%,10,10.00%,5,95,0,5.00%,95.00%,0.00%,7,7,100,7.00% +146841,373,2366,State-funded primary,468,234,234,50.00%,50.00%,11,2.40%,55,11.80%,335,133,0,71.60%,28.40%,0.00%,261,243,425,57.20% +146842,305,3005,State-funded primary,237,123,114,51.90%,48.10%,5,2.10%,89,37.60%,43,194,0,18.10%,81.90%,0.00%,94,93,207,44.90% +146843,874,2225,State-funded primary,584,272,312,46.60%,53.40%,16,2.70%,65,11.10%,185,399,0,31.70%,68.30%,0.00%,172,173,584,29.60% +146844,856,2071,State-funded primary,365,182,183,49.90%,50.10%,8,2.20%,53,14.50%,312,53,0,85.50%,14.50%,0.00%,75,79,334,23.70% +146845,874,5205,State-funded primary,396,203,193,51.30%,48.70%,6,1.50%,40,10.10%,40,356,0,10.10%,89.90%,0.00%,45,46,396,11.60% +146846,936,2362,State-funded primary,220,115,105,52.30%,47.70%,2,0.90%,26,11.80%,12,208,0,5.50%,94.50%,0.00%,15,13,186,7.00% +146847,831,5201,State-funded primary,325,159,166,48.90%,51.10%,8,2.50%,37,11.40%,25,300,0,7.70%,92.30%,0.00%,66,69,292,23.60% +146848,340,2035,State-funded primary,161,88,73,54.70%,45.30%,4,2.50%,31,19.30%,14,147,0,8.70%,91.30%,0.00%,105,106,161,65.80% +146849,865,3308,State-funded primary,234,105,129,44.90%,55.10%,5,2.10%,20,8.50%,4,230,0,1.70%,98.30%,0.00%,29,31,205,15.10% +146850,866,2093,State-funded primary,214,106,108,49.50%,50.50%,2,0.90%,19,8.90%,16,196,2,7.50%,91.60%,0.90%,29,30,214,14.00% +146851,380,1104,State-funded AP school,49,12,37,24.50%,75.50%,6,12.20%,22,44.90%,10,39,0,20.40%,79.60%,0.00%,30,35,49,71.40% +146852,856,2229,State-funded primary,317,170,147,53.60%,46.40%,5,1.60%,47,14.80%,283,34,0,89.30%,10.70%,0.00%,24,24,243,9.90% +146853,856,2299,State-funded primary,403,214,189,53.10%,46.90%,9,2.20%,28,6.90%,381,22,0,94.50%,5.50%,0.00%,54,54,326,16.60% +146854,874,2457,State-funded primary,315,144,171,45.70%,54.30%,3,1.00%,39,12.40%,85,230,0,27.00%,73.00%,0.00%,23,23,315,7.30% +146855,831,2464,State-funded primary,229,124,105,54.10%,45.90%,3,1.30%,48,21.00%,13,216,0,5.70%,94.30%,0.00%,61,59,197,29.90% +146856,805,2310,State-funded primary,328,143,185,43.60%,56.40%,6,1.80%,58,17.70%,8,320,0,2.40%,97.60%,0.00%,114,115,300,38.30% +146857,856,2370,State-funded primary,467,225,242,48.20%,51.80%,14,3.00%,63,13.50%,423,44,0,90.60%,9.40%,0.00%,113,114,422,27.00% +146858,330,7001,State-funded special school,267,77,190,28.80%,71.20%,267,100.00%,0,0.00%,50,187,30,18.70%,70.00%,11.20%,145,124,190,65.30% +146859,919,3398,State-funded primary,188,91,97,48.40%,51.60%,2,1.10%,29,15.40%,19,167,2,10.10%,88.80%,1.10%,25,25,188,13.30% +146860,929,2056,State-funded primary,137,59,78,43.10%,56.90%,1,0.70%,13,9.50%,2,135,0,1.50%,98.50%,0.00%,11,11,137,8.00% +146861,382,2021,State-funded primary,196,85,111,43.40%,56.60%,0,0.00%,18,9.20%,9,187,0,4.60%,95.40%,0.00%,21,22,164,13.40% +146862,308,2030,State-funded primary,717,342,375,47.70%,52.30%,41,5.70%,89,12.40%,442,275,0,61.60%,38.40%,0.00%,257,261,601,43.40% +146863,860,3488,State-funded primary,103,60,43,58.30%,41.70%,4,3.90%,9,8.70%,0,103,0,0.00%,100.00%,0.00%,11,11,103,10.70% +146865,940,2077,State-funded primary,160,77,83,48.10%,51.90%,5,3.10%,7,4.40%,5,155,0,3.10%,96.90%,0.00%,19,20,160,12.50% +146866,372,2097,State-funded primary,269,138,131,51.30%,48.70%,3,1.10%,66,24.50%,13,256,0,4.80%,95.20%,0.00%,75,73,220,33.20% +146867,883,3522,State-funded primary,234,116,118,49.60%,50.40%,12,5.10%,17,7.30%,163,71,0,69.70%,30.30%,0.00%,47,48,207,23.20% +146868,308,2063,State-funded primary,421,211,210,50.10%,49.90%,12,2.90%,31,7.40%,104,317,0,24.70%,75.30%,0.00%,29,29,421,6.90% +146869,925,3085,State-funded primary,404,208,196,51.50%,48.50%,8,2.00%,46,11.40%,118,286,0,29.20%,70.80%,0.00%,85,86,404,21.30% +146870,303,2033,State-funded primary,432,206,226,47.70%,52.30%,19,4.40%,67,15.50%,47,385,0,10.90%,89.10%,0.00%,64,65,409,15.90% +146871,929,4198,State-funded secondary,398,195,203,49.00%,51.00%,9,2.30%,73,18.30%,8,390,0,2.00%,98.00%,0.00%,100,114,398,28.60% +146872,887,2211,State-funded primary,376,188,188,50.00%,50.00%,6,1.60%,33,8.80%,27,349,0,7.20%,92.80%,0.00%,65,65,376,17.30% +146873,860,2163,State-funded primary,286,146,140,51.00%,49.00%,3,1.00%,9,3.10%,1,285,0,0.30%,99.70%,0.00%,48,49,286,17.10% +146874,860,2325,State-funded primary,215,99,116,46.00%,54.00%,3,1.40%,14,6.50%,0,215,0,0.00%,100.00%,0.00%,10,10,215,4.70% +146875,935,2136,State-funded primary,141,76,65,53.90%,46.10%,3,2.10%,17,12.10%,2,139,0,1.40%,98.60%,0.00%,22,22,141,15.60% +146877,831,2004,State-funded primary,312,158,154,50.60%,49.40%,11,3.50%,66,21.20%,53,259,0,17.00%,83.00%,0.00%,168,161,288,55.90% +146878,919,2206,State-funded primary,358,164,194,45.80%,54.20%,9,2.50%,51,14.20%,45,313,0,12.60%,87.40%,0.00%,20,21,358,5.90% +146879,831,2440,State-funded primary,346,178,168,51.40%,48.60%,4,1.20%,53,15.30%,11,333,2,3.20%,96.20%,0.60%,49,55,346,15.90% +146880,926,2362,State-funded primary,218,113,105,51.80%,48.20%,5,2.30%,35,16.10%,40,178,0,18.30%,81.70%,0.00%,39,41,218,18.80% +146881,865,3406,State-funded primary,167,79,88,47.30%,52.70%,3,1.80%,17,10.20%,1,166,0,0.60%,99.40%,0.00%,8,9,167,5.40% +146882,308,2083,State-funded primary,647,309,338,47.80%,52.20%,35,5.40%,74,11.40%,546,101,0,84.40%,15.60%,0.00%,244,261,574,45.50% +146885,303,7000,State-funded special school,199,37,162,18.60%,81.40%,199,100.00%,0,0.00%,21,178,0,10.60%,89.40%,0.00%,61,65,178,36.50% +146887,807,2196,State-funded primary,323,160,163,49.50%,50.50%,2,0.60%,47,14.60%,9,314,0,2.80%,97.20%,0.00%,71,74,274,27.00% +146888,851,2698,State-funded primary,207,107,100,51.70%,48.30%,5,2.40%,46,22.20%,44,162,1,21.30%,78.30%,0.50%,82,82,207,39.60% +146889,873,3070,State-funded primary,117,51,66,43.60%,56.40%,2,1.70%,14,12.00%,5,112,0,4.30%,95.70%,0.00%,11,11,117,9.40% +146890,382,2126,State-funded primary,215,110,105,51.20%,48.80%,5,2.30%,31,14.40%,7,208,0,3.30%,96.70%,0.00%,58,59,192,30.70% +146891,351,7011,State-funded special school,307,94,213,30.60%,69.40%,307,100.00%,0,0.00%,50,257,0,16.30%,83.70%,0.00%,134,113,226,50.00% +146892,303,2068,State-funded primary,359,191,168,53.20%,46.80%,8,2.20%,44,12.30%,131,222,6,36.50%,61.80%,1.70%,72,76,346,22.00% +146893,919,2311,State-funded primary,328,174,154,53.00%,47.00%,9,2.70%,54,16.50%,64,264,0,19.50%,80.50%,0.00%,10,10,270,3.70% +146894,929,4199,State-funded secondary,335,165,170,49.30%,50.70%,12,3.60%,29,8.70%,5,330,0,1.50%,98.50%,0.00%,33,36,335,10.70% +146895,343,2048,State-funded primary,452,221,231,48.90%,51.10%,18,4.00%,64,14.20%,48,389,15,10.60%,86.10%,3.30%,118,114,414,27.50% +146896,933,5202,State-funded primary,54,33,21,61.10%,38.90%,1,1.90%,6,11.10%,1,53,0,1.90%,98.10%,0.00%,6,6,54,11.10% +146897,893,3070,State-funded primary,106,59,47,55.70%,44.30%,3,2.80%,12,11.30%,0,106,0,0.00%,100.00%,0.00%,18,18,90,20.00% +146898,881,3010,State-funded primary,139,84,55,60.40%,39.60%,2,1.40%,18,12.90%,1,138,0,0.70%,99.30%,0.00%,29,29,139,20.90% +146899,889,7003,State-funded special school,106,40,66,37.70%,62.30%,106,100.00%,0,0.00%,24,82,0,22.60%,77.40%,0.00%,34,37,95,38.90% +146900,308,2073,State-funded primary,819,420,399,51.30%,48.70%,22,2.70%,97,11.80%,569,249,1,69.50%,30.40%,0.10%,320,338,733,46.10% +146901,860,7041,State-funded special school,204,60,144,29.40%,70.60%,203,99.50%,1,0.50%,4,200,0,2.00%,98.00%,0.00%,77,65,162,40.10% +146902,865,3036,State-funded primary,77,38,39,49.40%,50.60%,1,1.30%,7,9.10%,0,77,0,0.00%,100.00%,0.00%,12,12,77,15.60% +146903,919,3985,State-funded primary,452,206,246,45.60%,54.40%,5,1.10%,32,7.10%,62,390,0,13.70%,86.30%,0.00%,21,25,422,5.90% +146904,860,2161,State-funded primary,223,110,113,49.30%,50.70%,5,2.20%,18,8.10%,3,220,0,1.30%,98.70%,0.00%,57,57,223,25.60% +146905,940,2057,State-funded primary,294,131,163,44.60%,55.40%,11,3.70%,44,15.00%,49,243,2,16.70%,82.70%,0.70%,51,54,294,18.40% +146906,382,4038,State-funded secondary,1271,640,631,50.40%,49.60%,38,3.00%,159,12.50%,63,1208,0,5.00%,95.00%,0.00%,233,264,1271,20.80% +146907,860,4126,State-funded secondary,1228,668,560,54.40%,45.60%,12,1.00%,104,8.50%,62,1166,0,5.00%,95.00%,0.00%,200,201,1042,19.30% +146909,935,4605,State-funded secondary,687,341,346,49.60%,50.40%,25,3.60%,103,15.00%,28,659,0,4.10%,95.90%,0.00%,236,271,687,39.40% +146910,860,2238,State-funded primary,103,51,52,49.50%,50.50%,4,3.90%,16,15.50%,2,101,0,1.90%,98.10%,0.00%,23,23,103,22.30% +146911,929,2278,State-funded primary,132,61,71,46.20%,53.80%,5,3.80%,18,13.60%,2,130,0,1.50%,98.50%,0.00%,5,6,120,5.00% +146912,802,3122,State-funded primary,120,56,64,46.70%,53.30%,2,1.70%,11,9.20%,4,116,0,3.30%,96.70%,0.00%,4,5,120,4.20% +146913,940,3084,State-funded primary,109,58,51,53.20%,46.80%,2,1.80%,11,10.10%,2,107,0,1.80%,98.20%,0.00%,15,17,93,18.30% +146914,860,4144,State-funded secondary,392,194,198,49.50%,50.50%,4,1.00%,44,11.20%,4,388,0,1.00%,99.00%,0.00%,127,134,392,34.20% +146915,316,2092,State-funded primary,491,252,239,51.30%,48.70%,18,3.70%,62,12.60%,302,189,0,61.50%,38.50%,0.00%,178,185,444,41.70% +146916,925,5214,State-funded primary,210,106,104,50.50%,49.50%,5,2.40%,31,14.80%,32,178,0,15.20%,84.80%,0.00%,56,58,210,27.60% +146917,936,2275,State-funded primary,260,128,132,49.20%,50.80%,7,2.70%,58,22.30%,204,56,0,78.50%,21.50%,0.00%,48,48,207,23.20% +146918,860,2294,State-funded primary,162,83,79,51.20%,48.80%,2,1.20%,17,10.50%,6,156,0,3.70%,96.30%,0.00%,29,30,162,18.50% +146919,371,2201,State-funded primary,328,149,179,45.40%,54.60%,3,0.90%,38,11.60%,24,304,0,7.30%,92.70%,0.00%,111,109,302,36.10% +146920,881,3237,State-funded primary,212,99,113,46.70%,53.30%,5,2.40%,24,11.30%,1,211,0,0.50%,99.50%,0.00%,23,28,212,13.20% +146921,831,2451,State-funded primary,619,315,304,50.90%,49.10%,8,1.30%,98,15.80%,37,582,0,6.00%,94.00%,0.00%,210,207,579,35.80% +146922,919,3410,State-funded primary,204,100,104,49.00%,51.00%,0,0.00%,25,12.30%,14,190,0,6.90%,93.10%,0.00%,19,24,204,11.80% +146923,881,3305,State-funded primary,114,52,62,45.60%,54.40%,4,3.50%,16,14.00%,1,113,0,0.90%,99.10%,0.00%,10,10,114,8.80% +146924,929,2217,State-funded primary,69,35,34,50.70%,49.30%,2,2.90%,17,24.60%,2,67,0,2.90%,97.10%,0.00%,13,11,50,22.00% +146925,865,3000,State-funded primary,154,78,76,50.60%,49.40%,0,0.00%,17,11.00%,1,153,0,0.60%,99.40%,0.00%,12,12,154,7.80% +146926,929,4369,State-funded secondary,754,347,407,46.00%,54.00%,10,1.30%,85,11.30%,16,737,1,2.10%,97.70%,0.10%,103,108,560,19.30% +146927,383,2489,State-funded primary,436,219,217,50.20%,49.80%,2,0.50%,102,23.40%,55,381,0,12.60%,87.40%,0.00%,158,157,398,39.40% +146929,873,2256,State-funded primary,332,161,171,48.50%,51.50%,9,2.70%,50,15.10%,9,323,0,2.70%,97.30%,0.00%,89,92,332,27.70% +146931,929,3210,State-funded primary,129,55,74,42.60%,57.40%,2,1.60%,7,5.40%,2,127,0,1.60%,98.40%,0.00%,11,11,129,8.50% +146932,351,2050,State-funded primary,214,103,111,48.10%,51.90%,19,8.90%,28,13.10%,3,211,0,1.40%,98.60%,0.00%,28,30,214,14.00% +146933,865,3381,State-funded primary,63,27,36,42.90%,57.10%,1,1.60%,9,14.30%,2,61,0,3.20%,96.80%,0.00%,14,15,63,23.80% +146935,308,2029,State-funded primary,390,205,185,52.60%,47.40%,20,5.10%,41,10.50%,342,47,1,87.70%,12.10%,0.30%,161,166,369,45.00% +146936,889,4799,State-funded secondary,921,424,497,46.00%,54.00%,21,2.30%,192,20.80%,473,447,1,51.40%,48.50%,0.10%,328,351,921,38.10% +146937,929,2219,State-funded primary,87,43,44,49.40%,50.60%,2,2.30%,4,4.60%,0,87,0,0.00%,100.00%,0.00%,6,6,70,8.60% +146938,831,2471,State-funded primary,353,183,170,51.80%,48.20%,18,5.10%,68,19.30%,44,309,0,12.50%,87.50%,0.00%,156,166,353,47.00% +146939,931,3256,State-funded primary,100,53,47,53.00%,47.00%,1,1.00%,8,8.00%,10,90,0,10.00%,90.00%,0.00%,13,13,100,13.00% +146941,931,3243,State-funded primary,213,111,102,52.10%,47.90%,4,1.90%,45,21.10%,26,187,0,12.20%,87.80%,0.00%,53,53,189,28.00% +146942,933,3227,State-funded primary,185,97,88,52.40%,47.60%,6,3.20%,14,7.60%,3,181,1,1.60%,97.80%,0.50%,13,13,145,9.00% +146943,860,2219,State-funded primary,197,98,99,49.70%,50.30%,3,1.50%,17,8.60%,8,189,0,4.10%,95.90%,0.00%,53,59,197,29.90% +146944,881,2581,State-funded primary,410,201,209,49.00%,51.00%,9,2.20%,68,16.60%,88,322,0,21.50%,78.50%,0.00%,156,166,410,40.50% +146946,308,2086,State-funded primary,412,206,206,50.00%,50.00%,9,2.20%,71,17.20%,268,144,0,65.00%,35.00%,0.00%,131,135,388,34.80% +146948,371,2101,State-funded primary,140,75,65,53.60%,46.40%,1,0.70%,21,15.00%,13,127,0,9.30%,90.70%,0.00%,53,57,124,46.00% +146949,929,2270,State-funded primary,77,36,41,46.80%,53.20%,1,1.30%,10,13.00%,2,75,0,2.60%,97.40%,0.00%,5,5,65,7.70% +146950,886,5224,State-funded primary,250,126,124,50.40%,49.60%,6,2.40%,42,16.80%,26,224,0,10.40%,89.60%,0.00%,100,103,250,41.20% +146952,800,2009,State-funded primary,328,160,168,48.80%,51.20%,7,2.10%,48,14.60%,31,297,0,9.50%,90.50%,0.00%,104,97,289,33.60% +146953,807,7000,State-funded special school,97,13,84,13.40%,86.60%,97,100.00%,0,0.00%,0,97,0,0.00%,100.00%,0.00%,76,82,97,84.50% +146956,803,2015,State-funded primary,153,81,72,52.90%,47.10%,2,1.30%,21,13.70%,18,132,3,11.80%,86.30%,2.00%,64,65,153,42.50% +146958,838,1107,State-funded AP school,6,1,5,16.70%,83.30%,2,33.30%,4,66.70%,0,6,0,0.00%,100.00%,0.00%,2,3,6,50.00% +146959,381,2026,State-funded primary,152,76,76,50.00%,50.00%,1,0.70%,14,9.20%,1,151,0,0.70%,99.30%,0.00%,16,16,152,10.50% +146960,830,2047,State-funded primary,145,79,66,54.50%,45.50%,2,1.40%,19,13.10%,10,135,0,6.90%,93.10%,0.00%,46,48,145,33.10% +146961,935,2228,State-funded primary,30,17,13,56.70%,43.30%,1,3.30%,7,23.30%,0,30,0,0.00%,100.00%,0.00%,6,6,24,25.00% +146963,891,2038,State-funded primary,287,146,141,50.90%,49.10%,3,1.00%,26,9.10%,7,280,0,2.40%,97.60%,0.00%,68,69,262,26.30% +146964,801,2121,State-funded primary,524,249,275,47.50%,52.50%,10,1.90%,103,19.70%,203,321,0,38.70%,61.30%,0.00%,185,184,491,37.50% +146965,873,2086,State-funded primary,107,60,47,56.10%,43.90%,7,6.50%,15,14.00%,49,58,0,45.80%,54.20%,0.00%,32,33,107,30.80% +146967,815,2011,State-funded primary,233,113,120,48.50%,51.50%,11,4.70%,17,7.30%,21,212,0,9.00%,91.00%,0.00%,61,63,211,29.90% +146968,873,2089,State-funded primary,275,137,138,49.80%,50.20%,17,6.20%,31,11.30%,15,245,15,5.50%,89.10%,5.50%,53,60,275,21.80% +146969,815,4009,State-funded secondary,1061,510,551,48.10%,51.90%,36,3.40%,160,15.10%,50,1006,5,4.70%,94.80%,0.50%,257,254,926,27.40% +146970,351,4001,State-funded secondary,716,356,360,49.70%,50.30%,17,2.40%,60,8.40%,278,438,0,38.80%,61.20%,0.00%,323,351,716,49.00% +146971,925,6011,Independent school,15,2,13,13.30%,86.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146972,800,4006,State-funded secondary,1284,131,1153,10.20%,89.80%,19,1.50%,154,12.00%,71,1213,0,5.50%,94.50%,0.00%,94,94,861,10.90% +146973,311,6004,Independent school,50,14,36,28.00%,72.00%,2,4.00%,10,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146975,936,2957,State-funded primary,329,170,159,51.70%,48.30%,10,3.00%,70,21.30%,26,303,0,7.90%,92.10%,0.00%,109,105,302,34.80% +146976,800,3078,State-funded primary,157,77,80,49.00%,51.00%,3,1.90%,19,12.10%,14,143,0,8.90%,91.10%,0.00%,20,21,138,15.20% +146977,935,3341,State-funded primary,192,90,102,46.90%,53.10%,5,2.60%,29,15.10%,26,166,0,13.50%,86.50%,0.00%,40,41,192,21.40% +146978,800,2246,State-funded primary,99,49,50,49.50%,50.50%,1,1.00%,11,11.10%,0,99,0,0.00%,100.00%,0.00%,8,8,99,8.10% +146979,800,2238,State-funded primary,103,52,51,50.50%,49.50%,0,0.00%,18,17.50%,2,101,0,1.90%,98.10%,0.00%,4,4,103,3.90% +146980,881,2569,State-funded primary,652,325,327,49.80%,50.20%,32,4.90%,43,6.60%,56,596,0,8.60%,91.40%,0.00%,72,79,614,12.90% +146981,860,6050,Independent school,95,20,75,21.10%,78.90%,95,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146982,860,6051,Independent school,7,4,3,57.10%,42.90%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146986,866,2020,State-funded primary,334,162,172,48.50%,51.50%,5,1.50%,46,13.80%,25,309,0,7.50%,92.50%,0.00%,60,63,334,18.90% +146988,359,6004,Independent school,60,7,53,11.70%,88.30%,56,93.30%,4,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +146995,895,2705,State-funded primary,145,73,72,50.30%,49.70%,11,7.60%,31,21.40%,7,138,0,4.80%,95.20%,0.00%,90,99,145,68.30% +146996,351,3022,State-funded primary,311,153,158,49.20%,50.80%,4,1.30%,69,22.20%,10,301,0,3.20%,96.80%,0.00%,63,68,311,21.90% +146997,816,2169,State-funded primary,103,54,49,52.40%,47.60%,2,1.90%,11,10.70%,7,96,0,6.80%,93.20%,0.00%,27,25,91,27.50% +146998,371,2019,State-funded primary,232,126,106,54.30%,45.70%,1,0.40%,69,29.70%,8,224,0,3.40%,96.60%,0.00%,117,118,232,50.90% +146999,330,6049,Independent school,3,0,3,0.00%,100.00%,3,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147008,919,2089,State-funded primary,188,91,97,48.40%,51.60%,4,2.10%,33,17.60%,21,167,0,11.20%,88.80%,0.00%,33,33,166,19.90% +147009,330,2199,State-funded primary,381,185,196,48.60%,51.40%,1,0.30%,52,13.60%,79,289,13,20.70%,75.90%,3.40%,137,141,381,37.00% +147015,933,2039,State-funded primary,67,34,33,50.70%,49.30%,1,1.50%,13,19.40%,0,61,6,0.00%,91.00%,9.00%,17,17,67,25.40% +147016,933,4006,State-funded secondary,463,223,240,48.20%,51.80%,16,3.50%,46,9.90%,33,428,2,7.10%,92.40%,0.40%,125,139,463,30.00% +147017,330,2201,State-funded primary,335,160,175,47.80%,52.20%,5,1.50%,43,12.80%,36,250,49,10.70%,74.60%,14.60%,68,77,335,23.00% +147018,888,4025,State-funded secondary,585,307,278,52.50%,47.50%,12,2.10%,78,13.30%,10,575,0,1.70%,98.30%,0.00%,244,261,585,44.60% +147019,933,2040,State-funded primary,77,43,34,55.80%,44.20%,0,0.00%,8,10.40%,1,76,0,1.30%,98.70%,0.00%,13,13,77,16.90% +147021,850,2048,State-funded primary,166,81,85,48.80%,51.20%,5,3.00%,20,12.00%,4,162,0,2.40%,97.60%,0.00%,35,39,166,23.50% +147022,830,2054,State-funded primary,238,116,122,48.70%,51.30%,4,1.70%,63,26.50%,6,232,0,2.50%,97.50%,0.00%,108,100,216,46.30% +147023,872,2008,State-funded primary,352,157,195,44.60%,55.40%,9,2.60%,41,11.60%,104,248,0,29.50%,70.50%,0.00%,70,73,352,20.70% +147024,933,2042,State-funded primary,44,23,21,52.30%,47.70%,0,0.00%,2,4.50%,0,44,0,0.00%,100.00%,0.00%,4,4,27,14.80% +147025,304,6009,Independent school,115,115,0,100.00%,0.00%,0,0.00%,4,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147027,306,6019,Independent school,83,83,0,100.00%,0.00%,0,0.00%,1,1.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147031,881,4033,State-funded secondary,968,475,493,49.10%,50.90%,20,2.10%,138,14.30%,23,945,0,2.40%,97.60%,0.00%,260,302,968,31.20% +147032,931,2028,State-funded primary,345,167,178,48.40%,51.60%,7,2.00%,42,12.20%,45,299,1,13.00%,86.70%,0.30%,81,81,345,23.50% +147034,886,6155,Independent school,24,3,21,12.50%,87.50%,24,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147036,936,6021,Independent school,36,10,26,27.80%,72.20%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147038,330,6052,Independent school,56,0,56,0.00%,100.00%,0,0.00%,7,12.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147053,886,3353,State-funded primary,199,104,95,52.30%,47.70%,9,4.50%,37,18.60%,13,186,0,6.50%,93.50%,0.00%,73,76,199,38.20% +147054,886,3911,State-funded primary,238,120,118,50.40%,49.60%,3,1.30%,20,8.40%,11,227,0,4.60%,95.40%,0.00%,71,75,238,31.50% +147055,886,3172,State-funded primary,132,63,69,47.70%,52.30%,2,1.50%,11,8.30%,3,129,0,2.30%,97.70%,0.00%,9,9,132,6.80% +147056,886,2659,State-funded primary,380,189,191,49.70%,50.30%,6,1.60%,40,10.50%,9,371,0,2.40%,97.60%,0.00%,122,124,380,32.60% +147057,886,3358,State-funded primary,97,51,46,52.60%,47.40%,2,2.10%,9,9.30%,2,95,0,2.10%,97.90%,0.00%,21,22,97,22.70% +147058,886,3163,State-funded primary,317,161,156,50.80%,49.20%,10,3.20%,37,11.70%,14,303,0,4.40%,95.60%,0.00%,117,119,317,37.50% +147059,886,4024,State-funded secondary,677,285,392,42.10%,57.90%,44,6.50%,163,24.10%,49,625,3,7.20%,92.30%,0.40%,179,191,659,29.00% +147060,309,6007,Independent school,18,5,13,27.80%,72.20%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147061,302,4013,State-funded secondary,720,251,469,34.90%,65.10%,18,2.50%,74,10.30%,249,471,0,34.60%,65.40%,0.00%,232,250,720,34.70% +147062,825,2042,State-funded primary,185,98,87,53.00%,47.00%,6,3.20%,16,8.60%,53,132,0,28.60%,71.40%,0.00%,32,32,185,17.30% +147063,935,4049,State-funded secondary,910,511,399,56.20%,43.80%,7,0.80%,42,4.60%,37,872,1,4.10%,95.80%,0.10%,52,0,0,0.00% +147064,878,7009,State-funded special school,83,17,66,20.50%,79.50%,83,100.00%,0,0.00%,0,83,0,0.00%,100.00%,0.00%,29,36,83,43.40% +147065,866,2021,State-funded primary,210,103,107,49.00%,51.00%,4,1.90%,28,13.30%,46,164,0,21.90%,78.10%,0.00%,15,18,177,10.20% +147066,850,2050,State-funded primary,192,96,96,50.00%,50.00%,6,3.10%,31,16.10%,7,185,0,3.60%,96.40%,0.00%,41,41,192,21.40% +147067,380,4085,State-funded secondary,583,583,0,100.00%,0.00%,4,0.70%,81,13.90%,327,247,9,56.10%,42.40%,1.50%,183,206,583,35.30% +147068,856,4009,State-funded secondary,966,452,514,46.80%,53.20%,16,1.70%,143,14.80%,355,607,4,36.70%,62.80%,0.40%,324,342,966,35.40% +147069,803,2016,State-funded primary,270,134,136,49.60%,50.40%,7,2.60%,17,6.30%,69,194,7,25.60%,71.90%,2.60%,55,55,270,20.40% +147070,830,2059,State-funded primary,141,63,78,44.70%,55.30%,3,2.10%,16,11.30%,15,126,0,10.60%,89.40%,0.00%,22,24,141,17.00% +147071,303,7005,State-funded special school,108,44,64,40.70%,59.30%,108,100.00%,0,0.00%,0,108,0,0.00%,100.00%,0.00%,54,60,108,55.60% +147072,801,4012,State-funded secondary,634,306,328,48.30%,51.70%,17,2.70%,106,16.70%,96,538,0,15.10%,84.90%,0.00%,198,214,634,33.80% +147073,210,4006,State-funded secondary,704,327,377,46.40%,53.60%,16,2.30%,111,15.80%,143,561,0,20.30%,79.70%,0.00%,276,329,704,46.70% +147074,874,2016,State-funded primary,257,125,132,48.60%,51.40%,10,3.90%,19,7.40%,68,177,12,26.50%,68.90%,4.70%,36,37,228,16.20% +147075,891,2039,State-funded primary,225,117,108,52.00%,48.00%,2,0.90%,24,10.70%,32,193,0,14.20%,85.80%,0.00%,33,30,187,16.00% +147076,867,2002,State-funded primary,180,87,93,48.30%,51.70%,2,1.10%,12,6.70%,24,156,0,13.30%,86.70%,0.00%,14,14,180,7.80% +147077,350,4004,State-funded secondary,717,281,436,39.20%,60.80%,7,1.00%,98,13.70%,370,342,5,51.60%,47.70%,0.70%,201,222,717,31.00% +147078,937,2067,State-funded primary,189,87,102,46.00%,54.00%,5,2.60%,11,5.80%,36,153,0,19.00%,81.00%,0.00%,32,34,163,20.90% +147079,908,2048,State-funded primary,302,142,160,47.00%,53.00%,8,2.60%,35,11.60%,7,284,11,2.30%,94.00%,3.60%,57,60,302,19.90% +147080,881,4034,State-funded secondary,697,323,374,46.30%,53.70%,41,5.90%,116,16.60%,76,621,0,10.90%,89.10%,0.00%,181,228,697,32.70% +147081,823,4012,State-funded secondary,561,274,287,48.80%,51.20%,20,3.60%,51,9.10%,19,542,0,3.40%,96.60%,0.00%,57,59,561,10.50% +147082,860,2037,State-funded primary,146,72,74,49.30%,50.70%,4,2.70%,5,3.40%,3,143,0,2.10%,97.90%,0.00%,9,10,120,8.30% +147083,886,2112,State-funded primary,240,112,128,46.70%,53.30%,9,3.80%,10,4.20%,101,139,0,42.10%,57.90%,0.00%,22,22,240,9.20% +147084,878,2093,State-funded primary,210,103,107,49.00%,51.00%,6,2.90%,17,8.10%,4,206,0,1.90%,98.10%,0.00%,29,24,147,16.30% +147085,860,2038,State-funded primary,191,96,95,50.30%,49.70%,2,1.00%,23,12.00%,6,185,0,3.10%,96.90%,0.00%,21,21,135,15.60% +147086,866,4007,State-funded secondary,724,337,387,46.50%,53.50%,24,3.30%,129,17.80%,139,582,3,19.20%,80.40%,0.40%,134,150,724,20.70% +147087,838,7001,State-funded special school,81,19,62,23.50%,76.50%,81,100.00%,0,0.00%,2,79,0,2.50%,97.50%,0.00%,38,43,74,58.10% +147088,830,2064,State-funded primary,111,47,64,42.30%,57.70%,1,0.90%,20,18.00%,13,96,2,11.70%,86.50%,1.80%,16,16,111,14.40% +147089,855,2039,State-funded primary,298,137,161,46.00%,54.00%,2,0.70%,24,8.10%,41,254,3,13.80%,85.20%,1.00%,50,53,298,17.80% +147090,937,2068,State-funded primary,137,66,71,48.20%,51.80%,0,0.00%,20,14.60%,15,121,1,10.90%,88.30%,0.70%,23,23,107,21.50% +147091,865,2054,State-funded primary,201,98,103,48.80%,51.20%,2,1.00%,22,10.90%,28,173,0,13.90%,86.10%,0.00%,11,20,201,10.00% +147092,926,2218,State-funded primary,164,81,83,49.40%,50.60%,2,1.20%,29,17.70%,35,129,0,21.30%,78.70%,0.00%,36,37,164,22.60% +147093,866,2022,State-funded primary,289,144,145,49.80%,50.20%,5,1.70%,30,10.40%,43,246,0,14.90%,85.10%,0.00%,25,26,230,11.30% +147095,815,3363,State-funded primary,91,50,41,54.90%,45.10%,5,5.50%,20,22.00%,0,91,0,0.00%,100.00%,0.00%,12,12,91,13.20% +147096,874,2316,State-funded primary,206,100,106,48.50%,51.50%,17,8.30%,35,17.00%,57,149,0,27.70%,72.30%,0.00%,79,79,206,38.30% +147097,815,3903,State-funded primary,314,149,165,47.50%,52.50%,9,2.90%,46,14.60%,17,297,0,5.40%,94.60%,0.00%,76,79,314,25.20% +147100,380,4100,State-funded secondary,1623,719,904,44.30%,55.70%,35,2.20%,264,16.30%,1201,404,18,74.00%,24.90%,1.10%,604,650,1623,40.00% +147101,359,2037,State-funded primary,331,145,186,43.80%,56.20%,4,1.20%,43,13.00%,41,290,0,12.40%,87.60%,0.00%,114,111,308,36.00% +147102,393,3312,State-funded primary,260,120,140,46.20%,53.80%,1,0.40%,20,7.70%,9,251,0,3.50%,96.50%,0.00%,111,101,212,47.60% +147103,860,3134,State-funded primary,76,37,39,48.70%,51.30%,2,2.60%,7,9.20%,2,74,0,2.60%,97.40%,0.00%,8,8,64,12.50% +147104,886,2114,State-funded primary,225,99,126,44.00%,56.00%,28,12.40%,33,14.70%,23,202,0,10.20%,89.80%,0.00%,101,103,225,45.80% +147105,816,2002,State-funded primary,296,137,159,46.30%,53.70%,11,3.70%,39,13.20%,17,279,0,5.70%,94.30%,0.00%,74,75,296,25.30% +147106,893,5205,State-funded primary,378,186,192,49.20%,50.80%,10,2.60%,48,12.70%,23,355,0,6.10%,93.90%,0.00%,81,83,378,22.00% +147107,830,3092,State-funded primary,143,86,57,60.10%,39.90%,1,0.70%,19,13.30%,7,136,0,4.90%,95.10%,0.00%,42,43,143,30.10% +147108,840,3510,State-funded primary,252,121,131,48.00%,52.00%,4,1.60%,39,15.50%,14,238,0,5.60%,94.40%,0.00%,112,107,233,45.90% +147109,330,2202,State-funded primary,185,88,97,47.60%,52.40%,1,0.50%,25,13.50%,94,91,0,50.80%,49.20%,0.00%,91,96,185,51.90% +147110,873,2096,State-funded primary,108,51,57,47.20%,52.80%,4,3.70%,17,15.70%,9,99,0,8.30%,91.70%,0.00%,23,23,108,21.30% +147111,330,2204,State-funded primary,314,137,177,43.60%,56.40%,5,1.60%,92,29.30%,34,280,0,10.80%,89.20%,0.00%,133,138,293,47.10% +147112,826,2026,State-funded primary,194,101,93,52.10%,47.90%,4,2.10%,35,18.00%,57,136,1,29.40%,70.10%,0.50%,97,98,170,57.60% +147114,909,2022,State-funded primary,239,124,115,51.90%,48.10%,11,4.60%,30,12.60%,50,189,0,20.90%,79.10%,0.00%,110,113,230,49.10% +147115,888,4027,State-funded secondary,1050,512,538,48.80%,51.20%,15,1.40%,133,12.70%,76,932,42,7.20%,88.80%,4.00%,343,334,905,36.90% +147116,916,7024,State-funded special school,329,103,226,31.30%,68.70%,329,100.00%,0,0.00%,35,280,14,10.60%,85.10%,4.30%,160,180,326,55.20% +147117,380,7035,State-funded special school,171,51,120,29.80%,70.20%,169,98.80%,2,1.20%,96,75,0,56.10%,43.90%,0.00%,64,66,171,38.60% +147118,830,2295,State-funded primary,246,119,127,48.40%,51.60%,3,1.20%,25,10.20%,3,243,0,1.20%,98.80%,0.00%,44,45,246,18.30% +147119,831,2512,State-funded primary,254,117,137,46.10%,53.90%,10,3.90%,21,8.30%,80,174,0,31.50%,68.50%,0.00%,32,31,220,14.10% +147120,830,2265,State-funded primary,383,202,181,52.70%,47.30%,5,1.30%,17,4.40%,3,361,19,0.80%,94.30%,5.00%,23,24,348,6.90% +147121,331,2117,State-funded primary,292,141,151,48.30%,51.70%,5,1.70%,27,9.20%,94,198,0,32.20%,67.80%,0.00%,35,35,292,12.00% +147122,840,4214,State-funded secondary,621,291,330,46.90%,53.10%,11,1.80%,177,28.50%,11,610,0,1.80%,98.20%,0.00%,363,388,621,62.50% +147123,394,3326,State-funded primary,221,114,107,51.60%,48.40%,1,0.50%,14,6.30%,10,211,0,4.50%,95.50%,0.00%,26,26,198,13.10% +147124,830,7006,State-funded special school,152,46,106,30.30%,69.70%,152,100.00%,0,0.00%,6,146,0,3.90%,96.10%,0.00%,89,76,122,62.30% +147125,831,2456,State-funded primary,166,84,82,50.60%,49.40%,3,1.80%,18,10.80%,65,101,0,39.20%,60.80%,0.00%,18,19,133,14.30% +147126,933,7019,State-funded special school,89,25,64,28.10%,71.90%,89,100.00%,0,0.00%,5,84,0,5.60%,94.40%,0.00%,36,32,81,39.50% +147127,931,7012,State-funded special school,103,34,69,33.00%,67.00%,103,100.00%,0,0.00%,4,99,0,3.90%,96.10%,0.00%,29,29,102,28.40% +147128,850,2735,State-funded primary,113,51,62,45.10%,54.90%,4,3.50%,34,30.10%,9,104,0,8.00%,92.00%,0.00%,57,59,113,52.20% +147130,371,2088,State-funded primary,234,111,123,47.40%,52.60%,7,3.00%,48,20.50%,4,230,0,1.70%,98.30%,0.00%,48,50,234,21.40% +147131,394,3323,State-funded primary,209,103,106,49.30%,50.70%,2,1.00%,18,8.60%,5,204,0,2.40%,97.60%,0.00%,21,21,209,10.00% +147132,831,7027,State-funded special school,145,49,96,33.80%,66.20%,140,96.60%,5,3.40%,35,109,1,24.10%,75.20%,0.70%,68,51,100,51.00% +147133,895,2715,State-funded primary,477,236,241,49.50%,50.50%,17,3.60%,23,4.80%,6,469,2,1.30%,98.30%,0.40%,28,27,411,6.60% +147134,371,2142,State-funded primary,189,99,90,52.40%,47.60%,0,0.00%,20,10.60%,6,183,0,3.20%,96.80%,0.00%,18,18,147,12.20% +147135,390,3322,State-funded primary,137,69,68,50.40%,49.60%,0,0.00%,27,19.70%,9,128,0,6.60%,93.40%,0.00%,47,47,137,34.30% +147136,373,7038,State-funded special school,9,4,5,44.40%,55.60%,5,55.60%,4,44.40%,0,9,0,0.00%,100.00%,0.00%,6,6,8,75.00% +147137,831,7025,State-funded special school,143,45,98,31.50%,68.50%,143,100.00%,0,0.00%,16,127,0,11.20%,88.80%,0.00%,69,77,143,53.80% +147138,394,3329,State-funded primary,221,122,99,55.20%,44.80%,4,1.80%,10,4.50%,10,211,0,4.50%,95.50%,0.00%,26,26,195,13.30% +147139,394,3327,State-funded primary,342,174,168,50.90%,49.10%,4,1.20%,20,5.80%,7,335,0,2.00%,98.00%,0.00%,32,32,317,10.10% +147140,830,3546,State-funded primary,400,207,193,51.80%,48.30%,1,0.30%,59,14.80%,53,347,0,13.30%,86.80%,0.00%,183,180,369,48.80% +147141,838,5203,State-funded primary,115,62,53,53.90%,46.10%,8,7.00%,27,23.50%,1,114,0,0.90%,99.10%,0.00%,28,28,115,24.30% +147142,394,4609,State-funded secondary,1642,783,859,47.70%,52.30%,24,1.50%,148,9.00%,82,1560,0,5.00%,95.00%,0.00%,217,177,1209,14.60% +147143,831,7021,State-funded special school,230,65,165,28.30%,71.70%,230,100.00%,0,0.00%,14,216,0,6.10%,93.90%,0.00%,109,86,177,48.60% +147144,830,2308,State-funded primary,178,93,85,52.20%,47.80%,1,0.60%,19,10.70%,2,176,0,1.10%,98.90%,0.00%,25,26,178,14.60% +147145,838,3407,State-funded primary,245,115,130,46.90%,53.10%,4,1.60%,45,18.40%,28,217,0,11.40%,88.60%,0.00%,28,28,200,14.00% +147147,394,3330,State-funded primary,172,96,76,55.80%,44.20%,1,0.60%,19,11.00%,9,163,0,5.20%,94.80%,0.00%,28,28,172,16.30% +147148,856,2337,State-funded primary,725,351,374,48.40%,51.60%,6,0.80%,101,13.90%,690,34,1,95.20%,4.70%,0.10%,94,94,631,14.90% +147149,830,2272,State-funded primary,61,28,33,45.90%,54.10%,0,0.00%,10,16.40%,4,57,0,6.60%,93.40%,0.00%,16,17,47,36.20% +147150,380,2063,State-funded primary,67,37,30,55.20%,44.80%,3,4.50%,7,10.40%,0,67,0,0.00%,100.00%,0.00%,9,12,55,21.80% +147153,925,2069,State-funded primary,195,89,106,45.60%,54.40%,7,3.60%,34,17.40%,7,188,0,3.60%,96.40%,0.00%,40,42,195,21.50% +147154,826,2027,State-funded primary,208,98,110,47.10%,52.90%,2,1.00%,37,17.80%,51,157,0,24.50%,75.50%,0.00%,110,111,191,58.10% +147155,332,2011,State-funded primary,390,199,191,51.00%,49.00%,8,2.10%,79,20.30%,47,343,0,12.10%,87.90%,0.00%,173,176,390,45.10% +147156,825,2043,State-funded primary,483,241,242,49.90%,50.10%,13,2.70%,71,14.70%,263,220,0,54.50%,45.50%,0.00%,132,134,424,31.60% +147157,830,4012,State-funded secondary,1246,603,643,48.40%,51.60%,25,2.00%,133,10.70%,9,1200,37,0.70%,96.30%,3.00%,305,326,1133,28.80% +147158,916,7004,State-funded special school,66,19,47,28.80%,71.20%,66,100.00%,0,0.00%,4,62,0,6.10%,93.90%,0.00%,25,29,66,43.90% +147159,351,2011,State-funded primary,292,126,166,43.20%,56.80%,7,2.40%,59,20.20%,80,212,0,27.40%,72.60%,0.00%,106,108,271,39.90% +147162,935,7015,State-funded special school,165,46,119,27.90%,72.10%,165,100.00%,0,0.00%,33,132,0,20.00%,80.00%,0.00%,70,75,165,45.50% +147163,335,2046,State-funded primary,156,86,70,55.10%,44.90%,2,1.30%,17,10.90%,22,134,0,14.10%,85.90%,0.00%,67,68,156,43.60% +147164,937,2069,State-funded primary,527,251,276,47.60%,52.40%,27,5.10%,96,18.20%,67,460,0,12.70%,87.30%,0.00%,241,253,527,48.00% +147165,885,2030,State-funded primary,170,82,88,48.20%,51.80%,1,0.60%,30,17.60%,110,60,0,64.70%,35.30%,0.00%,36,35,147,23.80% +147166,838,2023,State-funded primary,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +147168,209,6006,Independent school,18,6,12,33.30%,66.70%,0,0.00%,8,44.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147169,860,6052,Independent school,3,3,0,100.00%,0.00%,0,0.00%,3,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147170,925,6018,Independent school,124,20,104,16.10%,83.90%,124,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147171,382,6014,Independent school,57,0,57,0.00%,100.00%,0,0.00%,1,1.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147173,800,2008,State-funded primary,446,227,219,50.90%,49.10%,8,1.80%,76,17.00%,29,417,0,6.50%,93.50%,0.00%,109,104,403,25.80% +147176,851,2011,State-funded primary,240,113,127,47.10%,52.90%,5,2.10%,66,27.50%,44,193,3,18.30%,80.40%,1.30%,103,107,240,44.60% +147177,380,4086,State-funded secondary,1487,662,825,44.50%,55.50%,40,2.70%,223,15.00%,1079,376,32,72.60%,25.30%,2.20%,721,781,1487,52.50% +147178,390,4003,State-funded secondary,1231,555,676,45.10%,54.90%,18,1.50%,205,16.70%,137,1089,5,11.10%,88.50%,0.40%,481,485,1130,42.90% +147179,320,2043,State-funded primary,259,135,124,52.10%,47.90%,11,4.20%,26,10.00%,143,116,0,55.20%,44.80%,0.00%,74,79,232,34.10% +147180,320,2047,State-funded primary,327,169,158,51.70%,48.30%,12,3.70%,20,6.10%,174,153,0,53.20%,46.80%,0.00%,117,123,302,40.70% +147182,333,4007,State-funded secondary,642,317,325,49.40%,50.60%,14,2.20%,80,12.50%,319,320,3,49.70%,49.80%,0.50%,214,231,642,36.00% +147183,823,2009,State-funded primary,649,337,312,51.90%,48.10%,30,4.60%,103,15.90%,60,589,0,9.20%,90.80%,0.00%,80,72,552,13.00% +147184,306,6020,Independent school,276,130,146,47.10%,52.90%,1,0.40%,15,5.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147185,882,4004,State-funded secondary,883,434,449,49.20%,50.80%,19,2.20%,246,27.90%,136,746,1,15.40%,84.50%,0.10%,408,412,782,52.70% +147187,938,4014,State-funded secondary,727,259,468,35.60%,64.40%,16,2.20%,166,22.80%,64,662,1,8.80%,91.10%,0.10%,92,98,727,13.50% +147188,318,7002,State-funded special school,55,15,40,27.30%,72.70%,48,87.30%,7,12.70%,12,43,0,21.80%,78.20%,0.00%,13,21,55,38.20% +147189,301,7008,State-funded special school,47,6,41,12.80%,87.20%,38,80.90%,9,19.10%,1,46,0,2.10%,97.90%,0.00%,20,33,47,70.20% +147190,885,2031,State-funded primary,223,116,107,52.00%,48.00%,6,2.70%,25,11.20%,8,215,0,3.60%,96.40%,0.00%,18,18,173,10.40% +147191,333,2021,State-funded primary,286,138,148,48.30%,51.70%,2,0.70%,21,7.30%,155,127,4,54.20%,44.40%,1.40%,78,81,265,30.60% +147192,815,2012,State-funded primary,133,65,68,48.90%,51.10%,3,2.30%,24,18.00%,2,131,0,1.50%,98.50%,0.00%,18,18,103,17.50% +147193,938,2056,State-funded primary,188,94,94,50.00%,50.00%,2,1.10%,22,11.70%,35,153,0,18.60%,81.40%,0.00%,21,19,147,12.90% +147195,925,1117,State-funded AP school,52,10,42,19.20%,80.80%,18,34.60%,34,65.40%,0,52,0,0.00%,100.00%,0.00%,38,43,52,82.70% +147196,925,1118,State-funded AP school,34,13,21,38.20%,61.80%,9,26.50%,25,73.50%,0,34,0,0.00%,100.00%,0.00%,19,22,34,64.70% +147197,925,1119,State-funded AP school,50,8,42,16.00%,84.00%,6,12.00%,44,88.00%,5,45,0,10.00%,90.00%,0.00%,30,30,50,60.00% +147198,839,6012,Independent school,60,12,48,20.00%,80.00%,37,61.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147199,203,6006,Independent school,25,12,13,48.00%,52.00%,21,84.00%,4,16.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147201,330,4035,State-funded secondary,529,529,0,100.00%,0.00%,5,0.90%,67,12.70%,325,175,29,61.40%,33.10%,5.50%,188,240,529,45.40% +147203,931,4016,State-funded secondary,667,306,361,45.90%,54.10%,14,2.10%,87,13.00%,214,448,5,32.10%,67.20%,0.70%,99,105,615,17.10% +147204,380,4087,State-funded secondary,488,0,488,0.00%,100.00%,2,0.40%,74,15.20%,297,179,12,60.90%,36.70%,2.50%,113,133,488,27.30% +147205,886,6156,Independent school,19,1,18,5.30%,94.70%,18,94.70%,1,5.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147206,888,6118,Independent school,56,8,48,14.30%,85.70%,56,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147207,886,6157,Independent school,50,6,44,12.00%,88.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147208,355,6012,Independent school,137,137,0,100.00%,0.00%,0,0.00%,22,16.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147210,811,3318,State-funded primary,204,96,108,47.10%,52.90%,6,2.90%,21,10.30%,24,174,6,11.80%,85.30%,2.90%,49,50,204,24.50% +147211,815,3631,State-funded primary,105,53,52,50.50%,49.50%,3,2.90%,29,27.60%,9,91,5,8.60%,86.70%,4.80%,56,55,96,57.30% +147212,815,4604,State-funded secondary,599,297,302,49.60%,50.40%,26,4.30%,69,11.50%,65,534,0,10.90%,89.10%,0.00%,108,129,599,21.50% +147213,815,4605,State-funded secondary,606,305,301,50.30%,49.70%,16,2.60%,65,10.70%,20,586,0,3.30%,96.70%,0.00%,66,70,606,11.60% +147214,838,4000,State-funded secondary,781,393,388,50.30%,49.70%,46,5.90%,120,15.40%,36,745,0,4.60%,95.40%,0.00%,249,255,781,32.70% +147215,883,2015,State-funded primary,661,352,309,53.30%,46.70%,17,2.60%,61,9.20%,189,467,5,28.60%,70.70%,0.80%,98,103,616,16.70% +147216,815,2013,State-funded primary,115,54,61,47.00%,53.00%,4,3.50%,8,7.00%,1,114,0,0.90%,99.10%,0.00%,17,17,115,14.80% +147219,801,4013,State-funded secondary,904,438,466,48.50%,51.50%,53,5.90%,163,18.00%,197,675,32,21.80%,74.70%,3.50%,350,390,900,43.30% +147220,884,6018,Independent school,3,0,3,0.00%,100.00%,1,33.30%,2,66.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147223,856,6045,Independent school,149,0,149,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147227,351,2016,State-funded primary,464,464,0,100.00%,0.00%,6,1.30%,90,19.40%,15,449,0,3.20%,96.80%,0.00%,6,6,422,1.40% +147228,860,2336,State-funded primary,278,140,138,50.40%,49.60%,4,1.40%,29,10.40%,17,261,0,6.10%,93.90%,0.00%,63,63,278,22.70% +147229,815,2014,State-funded primary,75,36,39,48.00%,52.00%,2,2.70%,12,16.00%,17,58,0,22.70%,77.30%,0.00%,19,19,71,26.80% +147234,330,6061,Independent school,11,0,11,0.00%,100.00%,2,18.20%,7,63.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147235,356,6013,Independent school,10,2,8,20.00%,80.00%,9,90.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147236,861,6018,Independent school,62,62,0,100.00%,0.00%,2,3.20%,5,8.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147237,909,6016,Independent school,13,4,9,30.80%,69.20%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147238,302,4014,State-funded secondary,581,581,0,100.00%,0.00%,6,1.00%,72,12.40%,60,519,2,10.30%,89.30%,0.30%,34,34,428,7.90% +147240,303,2008,State-funded primary,439,202,237,46.00%,54.00%,28,6.40%,57,13.00%,113,321,5,25.70%,73.10%,1.10%,80,82,408,20.10% +147241,815,3614,State-funded primary,165,86,79,52.10%,47.90%,3,1.80%,11,6.70%,5,160,0,3.00%,97.00%,0.00%,19,25,149,16.80% +147242,825,2225,State-funded primary,457,213,244,46.60%,53.40%,19,4.20%,76,16.60%,180,274,3,39.40%,60.00%,0.70%,134,136,457,29.80% +147243,815,3610,State-funded primary,88,47,41,53.40%,46.60%,2,2.30%,12,13.60%,0,88,0,0.00%,100.00%,0.00%,33,34,80,42.50% +147244,811,3315,State-funded primary,85,47,38,55.30%,44.70%,6,7.10%,5,5.90%,13,72,0,15.30%,84.70%,0.00%,6,6,80,7.50% +147245,865,3199,State-funded primary,137,63,74,46.00%,54.00%,12,8.80%,15,10.90%,17,120,0,12.40%,87.60%,0.00%,9,10,137,7.30% +147246,919,5419,State-funded secondary,1218,526,692,43.20%,56.80%,21,1.70%,159,13.10%,204,1006,8,16.70%,82.60%,0.70%,154,157,1010,15.50% +147247,926,2045,State-funded primary,252,111,141,44.00%,56.00%,14,5.60%,56,22.20%,22,225,5,8.70%,89.30%,2.00%,83,83,252,32.90% +147248,811,3317,State-funded primary,116,60,56,51.70%,48.30%,5,4.30%,10,8.60%,20,96,0,17.20%,82.80%,0.00%,12,12,103,11.70% +147249,872,2157,State-funded primary,317,174,143,54.90%,45.10%,8,2.50%,21,6.60%,67,248,2,21.10%,78.20%,0.60%,28,28,270,10.40% +147250,866,2008,State-funded primary,400,175,225,43.80%,56.30%,9,2.30%,47,11.80%,64,336,0,16.00%,84.00%,0.00%,42,43,400,10.80% +147251,865,2008,State-funded primary,295,143,152,48.50%,51.50%,15,5.10%,37,12.50%,16,276,3,5.40%,93.60%,1.00%,61,61,295,20.70% +147252,811,3313,State-funded primary,168,75,93,44.60%,55.40%,6,3.60%,21,12.50%,11,157,0,6.50%,93.50%,0.00%,48,49,168,29.20% +147253,340,3304,State-funded primary,225,100,125,44.40%,55.60%,7,3.10%,44,19.60%,8,217,0,3.60%,96.40%,0.00%,100,94,199,47.20% +147254,808,3002,State-funded primary,350,183,167,52.30%,47.70%,5,1.40%,65,18.60%,7,343,0,2.00%,98.00%,0.00%,128,126,317,39.70% +147255,881,2679,State-funded primary,265,125,140,47.20%,52.80%,1,0.40%,34,12.80%,23,242,0,8.70%,91.30%,0.00%,95,95,240,39.60% +147256,940,3031,State-funded primary,75,38,37,50.70%,49.30%,2,2.70%,8,10.70%,2,73,0,2.70%,97.30%,0.00%,10,10,75,13.30% +147257,936,2013,State-funded primary,431,220,211,51.00%,49.00%,9,2.10%,48,11.10%,19,412,0,4.40%,95.60%,0.00%,34,36,381,9.40% +147258,815,3609,State-funded primary,210,123,87,58.60%,41.40%,8,3.80%,28,13.30%,34,176,0,16.20%,83.80%,0.00%,31,33,210,15.70% +147259,810,2081,State-funded primary,499,243,256,48.70%,51.30%,11,2.20%,43,8.60%,13,486,0,2.60%,97.40%,0.00%,22,22,455,4.80% +147260,888,4405,State-funded secondary,588,256,332,43.50%,56.50%,13,2.20%,116,19.70%,65,522,1,11.10%,88.80%,0.20%,243,253,588,43.00% +147261,935,2074,State-funded primary,306,141,165,46.10%,53.90%,61,19.90%,19,6.20%,51,255,0,16.70%,83.30%,0.00%,116,117,306,38.20% +147262,876,3175,State-funded primary,186,95,91,51.10%,48.90%,1,0.50%,46,24.70%,4,182,0,2.20%,97.80%,0.00%,72,73,186,39.20% +147263,879,2009,State-funded primary,180,79,101,43.90%,56.10%,5,2.80%,29,16.10%,10,170,0,5.60%,94.40%,0.00%,67,67,180,37.20% +147264,838,2001,State-funded primary,202,108,94,53.50%,46.50%,6,3.00%,35,17.30%,6,196,0,3.00%,97.00%,0.00%,27,27,202,13.40% +147265,881,2179,State-funded primary,587,299,288,50.90%,49.10%,7,1.20%,66,11.20%,132,455,0,22.50%,77.50%,0.00%,129,138,551,25.00% +147266,876,2004,State-funded primary,382,177,205,46.30%,53.70%,6,1.60%,61,16.00%,24,358,0,6.30%,93.70%,0.00%,176,189,382,49.50% +147267,876,2005,State-funded primary,230,107,123,46.50%,53.50%,20,8.70%,26,11.30%,15,215,0,6.50%,93.50%,0.00%,169,165,215,76.70% +147268,925,4044,State-funded secondary,703,321,382,45.70%,54.30%,27,3.80%,116,16.50%,38,661,4,5.40%,94.00%,0.60%,239,273,703,38.80% +147269,826,2028,State-funded primary,301,145,156,48.20%,51.80%,10,3.30%,37,12.30%,119,175,7,39.50%,58.10%,2.30%,84,80,279,28.70% +147270,810,2024,State-funded primary,330,162,168,49.10%,50.90%,6,1.80%,37,11.20%,18,312,0,5.50%,94.50%,0.00%,29,31,330,9.40% +147271,383,2031,State-funded primary,117,48,69,41.00%,59.00%,0,0.00%,41,35.00%,3,114,0,2.60%,97.40%,0.00%,36,36,95,37.90% +147272,355,6013,Independent school,122,122,0,100.00%,0.00%,0,0.00%,15,12.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147273,869,2090,State-funded primary,551,266,285,48.30%,51.70%,10,1.80%,83,15.10%,43,507,1,7.80%,92.00%,0.20%,93,96,551,17.40% +147274,815,3600,State-funded primary,78,40,38,51.30%,48.70%,1,1.30%,9,11.50%,5,73,0,6.40%,93.60%,0.00%,2,3,71,4.20% +147275,808,2002,State-funded primary,450,213,237,47.30%,52.70%,3,0.70%,59,13.10%,28,422,0,6.20%,93.80%,0.00%,25,25,400,6.30% +147276,815,3902,State-funded primary,94,55,39,58.50%,41.50%,2,2.10%,10,10.60%,10,84,0,10.60%,89.40%,0.00%,18,19,80,23.80% +147277,879,3760,State-funded primary,99,52,47,52.50%,47.50%,1,1.00%,14,14.10%,3,96,0,3.00%,97.00%,0.00%,10,10,99,10.10% +147278,815,3615,State-funded primary,209,104,105,49.80%,50.20%,5,2.40%,16,7.70%,25,183,1,12.00%,87.60%,0.50%,17,21,209,10.00% +147279,860,3034,State-funded primary,155,80,75,51.60%,48.40%,2,1.30%,13,8.40%,1,154,0,0.60%,99.40%,0.00%,20,20,155,12.90% +147280,886,2135,State-funded primary,180,86,94,47.80%,52.20%,4,2.20%,11,6.10%,14,166,0,7.80%,92.20%,0.00%,18,19,180,10.60% +147281,931,2459,State-funded primary,207,90,117,43.50%,56.50%,3,1.40%,27,13.00%,10,197,0,4.80%,95.20%,0.00%,24,22,184,12.00% +147282,881,3471,State-funded primary,418,199,219,47.60%,52.40%,3,0.70%,24,5.70%,39,379,0,9.30%,90.70%,0.00%,30,32,418,7.70% +147283,919,2092,State-funded primary,418,213,205,51.00%,49.00%,8,1.90%,25,6.00%,19,398,1,4.50%,95.20%,0.20%,9,9,394,2.30% +147284,885,2033,State-funded primary,168,92,76,54.80%,45.20%,1,0.60%,27,16.10%,13,154,1,7.70%,91.70%,0.60%,24,24,168,14.30% +147286,802,2013,State-funded primary,101,41,60,40.60%,59.40%,1,1.00%,6,5.90%,7,94,0,6.90%,93.10%,0.00%,15,15,101,14.90% +147290,926,2219,State-funded primary,101,54,47,53.50%,46.50%,4,4.00%,26,25.70%,17,84,0,16.80%,83.20%,0.00%,40,40,101,39.60% +147291,838,4004,State-funded secondary,962,487,475,50.60%,49.40%,30,3.10%,203,21.10%,38,924,0,4.00%,96.00%,0.00%,304,325,962,33.80% +147293,871,6005,Independent school,38,16,22,42.10%,57.90%,1,2.60%,1,2.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147295,350,6005,Independent school,12,2,10,16.70%,83.30%,8,66.70%,4,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147296,204,6021,Independent school,636,0,636,0.00%,100.00%,16,2.50%,81,12.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147298,815,6048,Independent school,21,4,17,19.00%,81.00%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147299,860,2039,State-funded primary,201,105,96,52.20%,47.80%,6,3.00%,31,15.40%,108,93,0,53.70%,46.30%,0.00%,98,103,201,51.20% +147300,916,4018,State-funded secondary,1312,656,656,50.00%,50.00%,19,1.40%,249,19.00%,166,1122,24,12.70%,85.50%,1.80%,439,433,1143,37.90% +147301,888,6120,Independent school,76,76,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147306,384,6009,Independent school,6,1,5,16.70%,83.30%,4,66.70%,2,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147307,831,2024,State-funded primary,240,129,111,53.80%,46.30%,2,0.80%,33,13.80%,57,183,0,23.80%,76.30%,0.00%,59,62,206,30.10% +147310,916,3040,State-funded primary,109,51,58,46.80%,53.20%,3,2.80%,11,10.10%,0,109,0,0.00%,100.00%,0.00%,12,13,109,11.90% +147311,803,2017,State-funded primary,470,237,233,50.40%,49.60%,10,2.10%,65,13.80%,60,405,5,12.80%,86.20%,1.10%,118,112,414,27.10% +147312,204,6022,Independent school,76,0,76,0.00%,100.00%,0,0.00%,5,6.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147313,390,6012,Independent school,37,0,37,0.00%,100.00%,1,2.70%,4,10.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147321,926,2148,State-funded primary,90,48,42,53.30%,46.70%,1,1.10%,10,11.10%,3,87,0,3.30%,96.70%,0.00%,21,21,90,23.30% +147322,926,2414,State-funded primary,24,8,16,33.30%,66.70%,1,4.20%,6,25.00%,0,24,0,0.00%,100.00%,0.00%,4,5,24,20.80% +147324,933,3159,State-funded primary,70,32,38,45.70%,54.30%,3,4.30%,13,18.60%,3,67,0,4.30%,95.70%,0.00%,10,12,70,17.10% +147326,933,3356,State-funded primary,65,31,34,47.70%,52.30%,2,3.10%,6,9.20%,1,64,0,1.50%,98.50%,0.00%,13,14,65,21.50% +147327,212,2495,State-funded primary,385,172,213,44.70%,55.30%,30,7.80%,31,8.10%,108,276,1,28.10%,71.70%,0.30%,70,68,348,19.50% +147328,301,3500,State-funded primary,245,122,123,49.80%,50.20%,3,1.20%,35,14.30%,135,103,7,55.10%,42.00%,2.90%,78,79,245,32.20% +147329,301,3502,State-funded primary,319,152,167,47.60%,52.40%,11,3.40%,43,13.50%,260,59,0,81.50%,18.50%,0.00%,58,61,319,19.10% +147330,301,3505,State-funded primary,222,103,119,46.40%,53.60%,6,2.70%,18,8.10%,142,80,0,64.00%,36.00%,0.00%,29,30,200,15.00% +147331,886,6158,Independent school,48,23,25,47.90%,52.10%,2,4.20%,4,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147332,303,2060,State-funded primary,264,128,136,48.50%,51.50%,4,1.50%,27,10.20%,142,122,0,53.80%,46.20%,0.00%,73,73,224,32.60% +147334,314,2020,State-funded primary,200,91,109,45.50%,54.50%,2,1.00%,20,10.00%,84,116,0,42.00%,58.00%,0.00%,43,45,174,25.90% +147335,316,3503,State-funded primary,428,218,210,50.90%,49.10%,9,2.10%,27,6.30%,252,176,0,58.90%,41.10%,0.00%,106,113,394,28.70% +147336,316,3510,State-funded primary,334,170,164,50.90%,49.10%,6,1.80%,34,10.20%,126,202,6,37.70%,60.50%,1.80%,114,118,302,39.10% +147337,317,3504,State-funded primary,429,216,213,50.30%,49.70%,8,1.90%,54,12.60%,136,293,0,31.70%,68.30%,0.00%,21,21,398,5.30% +147340,317,3513,State-funded primary,414,206,208,49.80%,50.20%,11,2.70%,33,8.00%,281,133,0,67.90%,32.10%,0.00%,82,89,381,23.40% +147341,331,3405,State-funded primary,236,112,124,47.50%,52.50%,7,3.00%,39,16.50%,138,98,0,58.50%,41.50%,0.00%,72,78,210,37.10% +147342,331,3412,State-funded primary,238,122,116,51.30%,48.70%,1,0.40%,22,9.20%,25,212,1,10.50%,89.10%,0.40%,23,24,211,11.40% +147343,331,3422,State-funded primary,363,197,166,54.30%,45.70%,2,0.60%,68,18.70%,160,203,0,44.10%,55.90%,0.00%,80,80,353,22.70% +147344,331,3432,State-funded primary,344,162,182,47.10%,52.90%,4,1.20%,27,7.80%,96,248,0,27.90%,72.10%,0.00%,57,59,321,18.40% +147345,331,4701,State-funded secondary,1101,575,526,52.20%,47.80%,7,0.60%,105,9.50%,345,750,6,31.30%,68.10%,0.50%,205,233,961,24.20% +147346,331,4707,State-funded secondary,1424,702,722,49.30%,50.70%,15,1.10%,201,14.10%,425,995,4,29.80%,69.90%,0.30%,334,342,1218,28.10% +147347,333,7001,State-funded special school,107,11,96,10.30%,89.70%,107,100.00%,0,0.00%,0,107,0,0.00%,100.00%,0.00%,78,82,107,76.60% +147349,351,6017,Independent school,64,13,51,20.30%,79.70%,64,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147350,802,4002,State-funded secondary,508,239,269,47.00%,53.00%,14,2.80%,81,15.90%,60,448,0,11.80%,88.20%,0.00%,118,107,406,26.40% +147351,802,4003,State-funded secondary,683,330,353,48.30%,51.70%,28,4.10%,330,48.30%,93,590,0,13.60%,86.40%,0.00%,230,257,683,37.60% +147355,209,2005,State-funded primary,415,212,203,51.10%,48.90%,11,2.70%,51,12.30%,82,333,0,19.80%,80.20%,0.00%,141,146,397,36.80% +147356,303,2072,State-funded primary,270,127,143,47.00%,53.00%,8,3.00%,53,19.60%,86,184,0,31.90%,68.10%,0.00%,58,60,231,26.00% +147358,303,2073,State-funded primary,221,96,125,43.40%,56.60%,9,4.10%,20,9.00%,22,198,1,10.00%,89.60%,0.50%,65,68,207,32.90% +147359,830,2143,State-funded primary,197,92,105,46.70%,53.30%,3,1.50%,37,18.80%,6,191,0,3.00%,97.00%,0.00%,82,85,197,43.10% +147360,916,2088,State-funded primary,199,97,102,48.70%,51.30%,4,2.00%,25,12.60%,6,193,0,3.00%,97.00%,0.00%,45,46,199,23.10% +147362,878,1117,State-funded AP school,2,1,1,50.00%,50.00%,1,50.00%,1,50.00%,0,2,0,0.00%,100.00%,0.00%,1,1,2,50.00% +147363,209,2006,State-funded primary,172,66,106,38.40%,61.60%,7,4.10%,25,14.50%,37,135,0,21.50%,78.50%,0.00%,57,66,155,42.60% +147364,334,2033,State-funded primary,271,134,137,49.40%,50.60%,3,1.10%,20,7.40%,99,171,1,36.50%,63.10%,0.40%,54,50,211,23.70% +147366,355,6014,Independent school,101,101,0,100.00%,0.00%,1,1.00%,13,12.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147367,336,3303,State-funded primary,346,163,183,47.10%,52.90%,3,0.90%,61,17.60%,52,293,1,15.00%,84.70%,0.30%,93,93,314,29.60% +147368,353,2091,State-funded primary,194,94,100,48.50%,51.50%,4,2.10%,21,10.80%,25,169,0,12.90%,87.10%,0.00%,78,94,194,48.50% +147369,354,4088,State-funded secondary,1206,598,608,49.60%,50.40%,48,4.00%,156,12.90%,538,668,0,44.60%,55.40%,0.00%,429,469,1206,38.90% +147371,357,2064,State-funded primary,233,111,122,47.60%,52.40%,4,1.70%,19,8.20%,14,219,0,6.00%,94.00%,0.00%,34,33,207,15.90% +147372,358,7003,State-funded special school,73,11,62,15.10%,84.90%,71,97.30%,2,2.70%,4,69,0,5.50%,94.50%,0.00%,43,45,73,61.60% +147373,371,2102,State-funded primary,382,178,204,46.60%,53.40%,8,2.10%,62,16.20%,36,346,0,9.40%,90.60%,0.00%,148,150,333,45.00% +147374,372,2121,State-funded primary,192,102,90,53.10%,46.90%,3,1.60%,23,12.00%,14,178,0,7.30%,92.70%,0.00%,37,38,179,21.20% +147375,373,2324,State-funded primary,433,222,211,51.30%,48.70%,5,1.20%,69,15.90%,89,335,9,20.60%,77.40%,2.10%,142,131,382,34.30% +147376,821,2249,State-funded primary,716,367,349,51.30%,48.70%,10,1.40%,21,2.90%,354,358,4,49.40%,50.00%,0.60%,221,231,716,32.30% +147377,872,3037,State-funded primary,135,80,55,59.30%,40.70%,0,0.00%,20,14.80%,15,120,0,11.10%,88.90%,0.00%,10,10,135,7.40% +147378,872,3048,State-funded primary,88,41,47,46.60%,53.40%,3,3.40%,5,5.70%,10,78,0,11.40%,88.60%,0.00%,2,5,88,5.70% +147379,872,3320,State-funded primary,202,97,105,48.00%,52.00%,3,1.50%,18,8.90%,10,192,0,5.00%,95.00%,0.00%,2,2,202,1.00% +147380,826,2326,State-funded primary,178,84,94,47.20%,52.80%,6,3.40%,16,9.00%,77,98,3,43.30%,55.10%,1.70%,15,15,178,8.40% +147381,826,2334,State-funded primary,185,98,87,53.00%,47.00%,8,4.30%,21,11.40%,59,126,0,31.90%,68.10%,0.00%,31,29,158,18.40% +147382,874,2234,State-funded primary,188,76,112,40.40%,59.60%,5,2.70%,10,5.30%,1,187,0,0.50%,99.50%,0.00%,16,17,188,9.00% +147384,873,3366,State-funded primary,264,142,122,53.80%,46.20%,10,3.80%,37,14.00%,90,171,3,34.10%,64.80%,1.10%,81,81,264,30.70% +147385,874,3378,State-funded primary,412,218,194,52.90%,47.10%,12,2.90%,49,11.90%,298,114,0,72.30%,27.70%,0.00%,137,142,412,34.50% +147386,874,3379,State-funded primary,209,106,103,50.70%,49.30%,7,3.30%,25,12.00%,112,97,0,53.60%,46.40%,0.00%,31,33,209,15.80% +147387,877,2401,State-funded primary,215,104,111,48.40%,51.60%,5,2.30%,23,10.70%,2,213,0,0.90%,99.10%,0.00%,23,23,215,10.70% +147388,877,2405,State-funded primary,234,112,122,47.90%,52.10%,22,9.40%,22,9.40%,27,207,0,11.50%,88.50%,0.00%,42,42,234,17.90% +147389,877,2687,State-funded primary,229,127,102,55.50%,44.50%,4,1.70%,13,5.70%,23,206,0,10.00%,90.00%,0.00%,34,35,229,15.30% +147392,807,2207,State-funded primary,297,150,147,50.50%,49.50%,4,1.30%,40,13.50%,8,289,0,2.70%,97.30%,0.00%,123,125,254,49.20% +147393,807,2336,State-funded primary,507,244,263,48.10%,51.90%,8,1.60%,52,10.30%,10,497,0,2.00%,98.00%,0.00%,234,237,446,53.10% +147394,807,2349,State-funded primary,294,138,156,46.90%,53.10%,12,4.10%,87,29.60%,28,266,0,9.50%,90.50%,0.00%,203,204,260,78.50% +147395,909,2200,State-funded primary,46,26,20,56.50%,43.50%,0,0.00%,6,13.00%,0,46,0,0.00%,100.00%,0.00%,7,7,37,18.90% +147396,909,2226,State-funded primary,82,34,48,41.50%,58.50%,5,6.10%,9,11.00%,2,80,0,2.40%,97.60%,0.00%,21,23,61,37.70% +147397,909,3037,State-funded primary,92,41,51,44.60%,55.40%,4,4.30%,17,18.50%,1,91,0,1.10%,98.90%,0.00%,12,13,90,14.40% +147398,830,2251,State-funded primary,317,145,172,45.70%,54.30%,3,0.90%,40,12.60%,24,293,0,7.60%,92.40%,0.00%,63,64,267,24.00% +147399,831,2463,State-funded primary,360,176,184,48.90%,51.10%,11,3.10%,72,20.00%,84,276,0,23.30%,76.70%,0.00%,100,105,360,29.20% +147400,830,4200,State-funded secondary,902,444,458,49.20%,50.80%,27,3.00%,136,15.10%,7,894,1,0.80%,99.10%,0.10%,346,371,902,41.10% +147401,878,4028,State-funded secondary,829,408,421,49.20%,50.80%,25,3.00%,218,26.30%,95,734,0,11.50%,88.50%,0.00%,215,261,829,31.50% +147402,840,3442,State-funded primary,141,73,68,51.80%,48.20%,0,0.00%,19,13.50%,4,137,0,2.80%,97.20%,0.00%,20,20,120,16.70% +147403,881,3660,State-funded primary,114,56,58,49.10%,50.90%,2,1.80%,20,17.50%,3,111,0,2.60%,97.40%,0.00%,16,18,114,15.80% +147404,881,3770,State-funded primary,213,125,88,58.70%,41.30%,2,0.90%,21,9.90%,78,135,0,36.60%,63.40%,0.00%,49,51,213,23.90% +147406,884,2152,State-funded primary,28,11,17,39.30%,60.70%,1,3.60%,7,25.00%,5,23,0,17.90%,82.10%,0.00%,0,0,21,0.00% +147407,811,3023,State-funded primary,386,179,207,46.40%,53.60%,4,1.00%,54,14.00%,21,364,1,5.40%,94.30%,0.30%,104,105,386,27.20% +147408,811,3024,State-funded primary,314,151,163,48.10%,51.90%,6,1.90%,26,8.30%,12,302,0,3.80%,96.20%,0.00%,58,48,256,18.80% +147409,886,2127,State-funded primary,611,286,325,46.80%,53.20%,6,1.00%,62,10.10%,46,565,0,7.50%,92.50%,0.00%,110,114,611,18.70% +147410,856,2287,State-funded primary,532,270,262,50.80%,49.20%,15,2.80%,136,25.60%,184,348,0,34.60%,65.40%,0.00%,243,249,484,51.40% +147411,856,2381,State-funded primary,796,386,410,48.50%,51.50%,23,2.90%,96,12.10%,456,339,1,57.30%,42.60%,0.10%,165,172,771,22.30% +147412,925,2191,State-funded primary,265,144,121,54.30%,45.70%,9,3.40%,45,17.00%,20,245,0,7.50%,92.50%,0.00%,130,124,241,51.50% +147413,881,3232,State-funded primary,146,75,71,51.40%,48.60%,4,2.70%,19,13.00%,2,144,0,1.40%,98.60%,0.00%,21,23,146,15.80% +147414,925,7028,State-funded special school,135,44,91,32.60%,67.40%,135,100.00%,0,0.00%,8,127,0,5.90%,94.10%,0.00%,52,48,121,39.70% +147415,926,3395,State-funded primary,418,205,213,49.00%,51.00%,6,1.40%,27,6.50%,198,201,19,47.40%,48.10%,4.50%,42,43,418,10.30% +147416,816,3401,State-funded primary,196,102,94,52.00%,48.00%,7,3.60%,50,25.50%,16,180,0,8.20%,91.80%,0.00%,53,53,170,31.20% +147417,816,3402,State-funded primary,218,107,111,49.10%,50.90%,2,0.90%,22,10.10%,70,148,0,32.10%,67.90%,0.00%,42,42,196,21.40% +147418,816,3403,State-funded primary,257,133,124,51.80%,48.20%,4,1.60%,10,3.90%,120,137,0,46.70%,53.30%,0.00%,16,19,257,7.40% +147420,933,2310,State-funded primary,392,196,196,50.00%,50.00%,12,3.10%,59,15.10%,61,323,8,15.60%,82.40%,2.00%,144,147,392,37.50% +147421,860,2328,State-funded primary,154,72,82,46.80%,53.20%,1,0.60%,16,10.40%,0,154,0,0.00%,100.00%,0.00%,21,21,125,16.80% +147422,860,3046,State-funded primary,152,77,75,50.70%,49.30%,1,0.70%,11,7.20%,1,151,0,0.70%,99.30%,0.00%,16,16,131,12.20% +147423,860,3050,State-funded primary,70,33,37,47.10%,52.90%,1,1.40%,7,10.00%,2,68,0,2.90%,97.10%,0.00%,6,6,62,9.70% +147424,860,3141,State-funded primary,449,223,226,49.70%,50.30%,7,1.60%,51,11.40%,4,440,5,0.90%,98.00%,1.10%,30,31,395,7.80% +147425,860,3433,State-funded primary,89,40,49,44.90%,55.10%,0,0.00%,16,18.00%,3,86,0,3.40%,96.60%,0.00%,20,20,80,25.00% +147427,936,2274,State-funded primary,295,131,164,44.40%,55.60%,4,1.40%,34,11.50%,38,257,0,12.90%,87.10%,0.00%,53,55,295,18.60% +147428,936,2406,State-funded primary,252,114,138,45.20%,54.80%,4,1.60%,34,13.50%,45,207,0,17.90%,82.10%,0.00%,43,43,226,19.00% +147429,936,3424,State-funded primary,410,202,208,49.30%,50.70%,11,2.70%,48,11.70%,72,338,0,17.60%,82.40%,0.00%,28,28,410,6.80% +147430,936,4619,State-funded secondary,1329,638,691,48.00%,52.00%,34,2.60%,163,12.30%,121,1202,6,9.10%,90.40%,0.50%,65,75,1050,7.10% +147431,936,5209,State-funded primary,430,209,221,48.60%,51.40%,8,1.90%,23,5.30%,111,319,0,25.80%,74.20%,0.00%,30,30,430,7.00% +147432,937,4110,State-funded secondary,1031,489,542,47.40%,52.60%,26,2.50%,242,23.50%,38,992,1,3.70%,96.20%,0.10%,157,172,897,19.20% +147433,807,3389,State-funded primary,296,129,167,43.60%,56.40%,2,0.70%,51,17.20%,5,291,0,1.70%,98.30%,0.00%,181,186,269,69.10% +147434,873,3302,State-funded primary,441,211,230,47.80%,52.20%,9,2.00%,57,12.90%,90,334,17,20.40%,75.70%,3.90%,71,72,355,20.30% +147435,808,2088,State-funded primary,399,200,199,50.10%,49.90%,6,1.50%,49,12.30%,1,398,0,0.30%,99.70%,0.00%,104,109,358,30.40% +147436,816,3904,State-funded primary,408,208,200,51.00%,49.00%,7,1.70%,37,9.10%,74,334,0,18.10%,81.90%,0.00%,38,41,372,11.00% +147437,331,2001,State-funded primary,449,231,218,51.40%,48.60%,8,1.80%,65,14.50%,30,419,0,6.70%,93.30%,0.00%,29,29,420,6.90% +147438,860,2021,State-funded primary,79,44,35,55.70%,44.30%,0,0.00%,14,17.70%,8,71,0,10.10%,89.90%,0.00%,11,12,79,15.20% +147439,203,4009,State-funded secondary,1106,478,628,43.20%,56.80%,35,3.20%,199,18.00%,329,776,1,29.70%,70.20%,0.10%,372,370,910,40.70% +147440,330,4036,State-funded secondary,393,174,219,44.30%,55.70%,7,1.80%,111,28.20%,50,343,0,12.70%,87.30%,0.00%,269,294,393,74.80% +147441,873,2098,State-funded primary,79,33,46,41.80%,58.20%,2,2.50%,18,22.80%,12,67,0,15.20%,84.80%,0.00%,17,17,79,21.50% +147442,908,4007,State-funded secondary,802,406,396,50.60%,49.40%,10,1.20%,116,14.50%,44,757,1,5.50%,94.40%,0.10%,257,281,802,35.00% +147443,838,4005,State-funded secondary,1538,790,748,51.40%,48.60%,48,3.10%,204,13.30%,73,1464,1,4.70%,95.20%,0.10%,398,359,1278,28.10% +147444,881,2182,State-funded primary,88,40,48,45.50%,54.50%,1,1.10%,12,13.60%,5,83,0,5.70%,94.30%,0.00%,17,18,88,20.50% +147446,887,2022,State-funded primary,455,220,235,48.40%,51.60%,8,1.80%,65,14.30%,47,407,1,10.30%,89.50%,0.20%,80,81,419,19.30% +147447,925,2073,State-funded primary,196,97,99,49.50%,50.50%,3,1.50%,21,10.70%,116,80,0,59.20%,40.80%,0.00%,66,69,196,35.20% +147448,815,2015,State-funded primary,323,164,159,50.80%,49.20%,11,3.40%,48,14.90%,149,174,0,46.10%,53.90%,0.00%,168,167,306,54.60% +147449,860,2040,State-funded primary,44,16,28,36.40%,63.60%,6,13.60%,11,25.00%,3,41,0,6.80%,93.20%,0.00%,11,11,44,25.00% +147450,935,2229,State-funded primary,76,37,39,48.70%,51.30%,0,0.00%,14,18.40%,3,73,0,3.90%,96.10%,0.00%,13,13,76,17.10% +147451,919,1112,State-funded AP school,13,3,10,23.10%,76.90%,0,0.00%,13,100.00%,0,13,0,0.00%,100.00%,0.00%,9,10,13,76.90% +147452,330,2205,State-funded primary,420,208,212,49.50%,50.50%,4,1.00%,53,12.60%,406,14,0,96.70%,3.30%,0.00%,144,147,420,35.00% +147453,353,2026,State-funded primary,312,154,158,49.40%,50.60%,11,3.50%,81,26.00%,147,165,0,47.10%,52.90%,0.00%,176,180,295,61.00% +147454,886,2117,State-funded primary,471,229,242,48.60%,51.40%,3,0.60%,50,10.60%,239,232,0,50.70%,49.30%,0.00%,38,38,419,9.10% +147455,315,6029,Independent school,63,27,36,42.90%,57.10%,1,1.60%,14,22.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147456,892,4014,State-funded secondary,682,326,356,47.80%,52.20%,2,0.30%,89,13.00%,256,380,46,37.50%,55.70%,6.70%,353,372,682,54.50% +147462,812,6008,Independent school,45,14,31,31.10%,68.90%,25,55.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147465,885,6056,Independent school,16,8,8,50.00%,50.00%,16,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147467,839,4008,State-funded secondary,742,0,742,0.00%,100.00%,5,0.70%,155,20.90%,259,482,1,34.90%,65.00%,0.10%,189,204,742,27.50% +147468,344,6003,Independent school,49,19,30,38.80%,61.20%,6,12.20%,38,77.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147471,878,6082,Independent school,48,24,24,50.00%,50.00%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147473,881,6075,Independent school,12,2,10,16.70%,83.30%,11,91.70%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147476,801,2138,State-funded primary,271,130,141,48.00%,52.00%,1,0.40%,22,8.10%,20,251,0,7.40%,92.60%,0.00%,5,5,271,1.80% +147477,341,4010,State-funded secondary,76,20,56,26.30%,73.70%,2,2.60%,8,10.50%,14,62,0,18.40%,81.60%,0.00%,9,0,0,0.00% +147478,330,3302,State-funded primary,440,224,216,50.90%,49.10%,2,0.50%,66,15.00%,95,345,0,21.60%,78.40%,0.00%,157,150,406,36.90% +147479,332,1102,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +147480,335,5203,State-funded primary,633,327,306,51.70%,48.30%,6,0.90%,117,18.50%,70,533,30,11.10%,84.20%,4.70%,134,138,577,23.90% +147481,373,5206,State-funded primary,210,104,106,49.50%,50.50%,0,0.00%,15,7.10%,19,190,1,9.00%,90.50%,0.50%,17,17,210,8.10% +147482,383,3368,State-funded primary,460,239,221,52.00%,48.00%,0,0.00%,77,16.70%,189,271,0,41.10%,58.90%,0.00%,167,157,405,38.80% +147483,383,3373,State-funded primary,208,109,99,52.40%,47.60%,1,0.50%,33,15.90%,40,168,0,19.20%,80.80%,0.00%,26,27,208,13.00% +147484,383,3377,State-funded primary,198,97,101,49.00%,51.00%,2,1.00%,53,26.80%,114,84,0,57.60%,42.40%,0.00%,67,70,198,35.40% +147485,383,3378,State-funded primary,210,109,101,51.90%,48.10%,0,0.00%,27,12.90%,25,185,0,11.90%,88.10%,0.00%,31,32,210,15.20% +147486,383,3381,State-funded primary,446,218,228,48.90%,51.10%,7,1.60%,45,10.10%,41,405,0,9.20%,90.80%,0.00%,26,29,446,6.50% +147487,383,3383,State-funded primary,241,112,129,46.50%,53.50%,1,0.40%,42,17.40%,178,63,0,73.90%,26.10%,0.00%,122,119,210,56.70% +147488,825,2143,State-funded primary,242,115,127,47.50%,52.50%,2,0.80%,22,9.10%,56,185,1,23.10%,76.40%,0.40%,34,37,242,15.30% +147489,896,2678,State-funded primary,245,131,114,53.50%,46.50%,11,4.50%,9,3.70%,8,237,0,3.30%,96.70%,0.00%,27,29,216,13.40% +147490,831,3532,State-funded primary,301,151,150,50.20%,49.80%,5,1.70%,36,12.00%,9,292,0,3.00%,97.00%,0.00%,48,50,301,16.60% +147491,831,7026,State-funded special school,84,29,55,34.50%,65.50%,84,100.00%,0,0.00%,32,52,0,38.10%,61.90%,0.00%,38,36,68,52.90% +147492,878,2220,State-funded primary,107,52,55,48.60%,51.40%,0,0.00%,14,13.10%,0,107,0,0.00%,100.00%,0.00%,15,12,83,14.50% +147493,878,2408,State-funded primary,58,29,29,50.00%,50.00%,0,0.00%,7,12.10%,5,53,0,8.60%,91.40%,0.00%,5,7,58,12.10% +147494,878,2617,State-funded primary,38,19,19,50.00%,50.00%,4,10.50%,10,26.30%,0,38,0,0.00%,100.00%,0.00%,20,20,38,52.60% +147495,878,3308,State-funded primary,50,28,22,56.00%,44.00%,2,4.00%,5,10.00%,5,45,0,10.00%,90.00%,0.00%,9,9,50,18.00% +147496,878,3316,State-funded primary,53,26,27,49.10%,50.90%,4,7.50%,3,5.70%,0,53,0,0.00%,100.00%,0.00%,13,11,46,23.90% +147497,885,3008,State-funded primary,148,70,78,47.30%,52.70%,3,2.00%,16,10.80%,3,145,0,2.00%,98.00%,0.00%,18,18,148,12.20% +147498,885,3014,State-funded primary,101,47,54,46.50%,53.50%,0,0.00%,7,6.90%,1,100,0,1.00%,99.00%,0.00%,14,14,101,13.90% +147499,885,3077,State-funded primary,139,75,64,54.00%,46.00%,1,0.70%,17,12.20%,3,136,0,2.20%,97.80%,0.00%,19,19,139,13.70% +147504,811,3031,State-funded primary,116,51,65,44.00%,56.00%,3,2.60%,10,8.60%,2,114,0,1.70%,98.30%,0.00%,6,7,116,6.00% +147505,926,4008,State-funded secondary,578,285,293,49.30%,50.70%,18,3.10%,64,11.10%,22,555,1,3.80%,96.00%,0.20%,163,176,578,30.40% +147506,891,2203,State-funded primary,453,226,227,49.90%,50.10%,2,0.40%,49,10.80%,35,418,0,7.70%,92.30%,0.00%,70,71,405,17.50% +147507,931,3181,State-funded primary,275,138,137,50.20%,49.80%,11,4.00%,31,11.30%,11,264,0,4.00%,96.00%,0.00%,27,31,253,12.30% +147508,893,4503,State-funded secondary,1255,621,634,49.50%,50.50%,16,1.30%,134,10.70%,63,1186,6,5.00%,94.50%,0.50%,179,190,1057,18.00% +147509,935,2105,State-funded primary,123,67,56,54.50%,45.50%,6,4.90%,12,9.80%,21,102,0,17.10%,82.90%,0.00%,9,11,123,8.90% +147510,936,2100,State-funded primary,623,319,304,51.20%,48.80%,11,1.80%,94,15.10%,40,580,3,6.40%,93.10%,0.50%,32,33,623,5.30% +147511,866,2161,State-funded primary,201,79,122,39.30%,60.70%,6,3.00%,31,15.40%,27,169,5,13.40%,84.10%,2.50%,41,43,168,25.60% +147512,865,5212,State-funded primary,172,85,87,49.40%,50.60%,1,0.60%,14,8.10%,5,166,1,2.90%,96.50%,0.60%,21,21,172,12.20% +147513,866,2024,State-funded primary,415,203,212,48.90%,51.10%,5,1.20%,35,8.40%,115,300,0,27.70%,72.30%,0.00%,32,43,378,11.40% +147514,830,3547,State-funded primary,354,174,180,49.20%,50.80%,10,2.80%,34,9.60%,6,348,0,1.70%,98.30%,0.00%,170,172,323,53.30% +147515,371,7012,State-funded special school,82,39,43,47.60%,52.40%,82,100.00%,0,0.00%,11,71,0,13.40%,86.60%,0.00%,30,22,55,40.00% +147516,356,2019,State-funded primary,271,131,140,48.30%,51.70%,3,1.10%,74,27.30%,32,239,0,11.80%,88.20%,0.00%,80,83,254,32.70% +147517,382,2058,State-funded primary,80,40,40,50.00%,50.00%,3,3.80%,8,10.00%,4,76,0,5.00%,95.00%,0.00%,19,19,80,23.80% +147518,840,2022,State-funded primary,136,67,69,49.30%,50.70%,5,3.70%,10,7.40%,2,134,0,1.50%,98.50%,0.00%,37,39,136,28.70% +147519,850,2052,State-funded primary,243,135,108,55.60%,44.40%,9,3.70%,14,5.80%,112,131,0,46.10%,53.90%,0.00%,29,29,243,11.90% +147520,925,2077,State-funded primary,553,266,287,48.10%,51.90%,12,2.20%,80,14.50%,238,315,0,43.00%,57.00%,0.00%,142,146,553,26.40% +147521,815,2016,State-funded primary,386,165,221,42.70%,57.30%,9,2.30%,58,15.00%,6,380,0,1.60%,98.40%,0.00%,45,46,364,12.60% +147522,933,2044,State-funded primary,31,15,16,48.40%,51.60%,2,6.50%,7,22.60%,0,31,0,0.00%,100.00%,0.00%,21,21,31,67.70% +147523,933,2049,State-funded primary,32,15,17,46.90%,53.10%,2,6.30%,4,12.50%,0,32,0,0.00%,100.00%,0.00%,8,9,32,28.10% +147524,936,7002,State-funded special school,110,28,82,25.50%,74.50%,110,100.00%,0,0.00%,17,93,0,15.50%,84.50%,0.00%,37,39,110,35.50% +147528,336,2068,State-funded primary,597,285,312,47.70%,52.30%,13,2.20%,68,11.40%,160,437,0,26.80%,73.20%,0.00%,179,186,554,33.60% +147530,925,2078,State-funded primary,411,200,211,48.70%,51.30%,18,4.40%,78,19.00%,38,371,2,9.20%,90.30%,0.50%,208,212,379,55.90% +147531,840,4010,State-funded secondary,1041,538,503,51.70%,48.30%,12,1.20%,72,6.90%,19,1021,1,1.80%,98.10%,0.10%,260,269,925,29.10% +147532,394,4005,State-funded secondary,878,397,481,45.20%,54.80%,9,1.00%,76,8.70%,19,859,0,2.20%,97.80%,0.00%,245,258,878,29.40% +147533,830,4013,State-funded secondary,545,257,288,47.20%,52.80%,30,5.50%,60,11.00%,8,537,0,1.50%,98.50%,0.00%,90,97,535,18.10% +147534,382,2059,State-funded primary,233,122,111,52.40%,47.60%,2,0.90%,30,12.90%,41,192,0,17.60%,82.40%,0.00%,104,108,223,48.40% +147535,919,4035,State-funded secondary,824,346,478,42.00%,58.00%,26,3.20%,138,16.70%,230,580,14,27.90%,70.40%,1.70%,238,252,738,34.10% +147536,308,4004,State-funded secondary,605,274,331,45.30%,54.70%,18,3.00%,140,23.10%,445,108,52,73.60%,17.90%,8.60%,171,222,581,38.20% +147537,883,4003,State-funded secondary,1438,703,735,48.90%,51.10%,38,2.60%,122,8.50%,335,1103,0,23.30%,76.70%,0.00%,316,331,1195,27.70% +147538,319,4008,State-funded secondary,1260,604,656,47.90%,52.10%,91,7.20%,206,16.30%,137,1117,6,10.90%,88.70%,0.50%,362,362,1158,31.30% +147539,893,2012,State-funded primary,174,80,94,46.00%,54.00%,2,1.10%,28,16.10%,4,170,0,2.30%,97.70%,0.00%,82,80,161,49.70% +147540,893,4004,State-funded secondary,802,388,414,48.40%,51.60%,10,1.20%,122,15.20%,80,718,4,10.00%,89.50%,0.50%,267,286,802,35.70% +147541,807,4012,State-funded secondary,814,398,416,48.90%,51.10%,35,4.30%,144,17.70%,5,805,4,0.60%,98.90%,0.50%,304,331,814,40.70% +147543,208,4007,State-funded secondary,582,271,311,46.60%,53.40%,21,3.60%,79,13.60%,226,356,0,38.80%,61.20%,0.00%,313,346,582,59.50% +147544,807,4013,State-funded secondary,731,388,343,53.10%,46.90%,18,2.50%,187,25.60%,21,707,3,2.90%,96.70%,0.40%,366,392,731,53.60% +147546,938,6004,Independent school,40,17,23,42.50%,57.50%,40,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147547,212,6005,Independent school,29,26,3,89.70%,10.30%,5,17.20%,9,31.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147548,888,6121,Independent school,44,5,39,11.40%,88.60%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147550,885,2202,State-funded primary,334,158,176,47.30%,52.70%,15,4.50%,79,23.70%,29,305,0,8.70%,91.30%,0.00%,80,81,334,24.30% +147551,351,2035,State-funded primary,344,169,175,49.10%,50.90%,16,4.70%,52,15.10%,10,334,0,2.90%,97.10%,0.00%,35,35,310,11.30% +147552,358,3316,State-funded primary,244,123,121,50.40%,49.60%,4,1.60%,34,13.90%,59,182,3,24.20%,74.60%,1.20%,68,64,217,29.50% +147553,371,2178,State-funded primary,399,177,222,44.40%,55.60%,6,1.50%,44,11.00%,247,151,1,61.90%,37.80%,0.30%,132,136,359,37.90% +147554,383,2406,State-funded primary,368,186,182,50.50%,49.50%,1,0.30%,19,5.20%,19,349,0,5.20%,94.80%,0.00%,15,16,368,4.30% +147555,800,3103,State-funded primary,80,34,46,42.50%,57.50%,0,0.00%,17,21.30%,0,80,0,0.00%,100.00%,0.00%,4,4,80,5.00% +147556,872,3046,State-funded primary,178,84,94,47.20%,52.80%,2,1.10%,23,12.90%,11,167,0,6.20%,93.80%,0.00%,8,9,178,5.10% +147558,831,7024,State-funded special school,143,34,109,23.80%,76.20%,143,100.00%,0,0.00%,34,109,0,23.80%,76.20%,0.00%,76,82,143,57.30% +147559,838,2015,State-funded primary,484,231,253,47.70%,52.30%,28,5.80%,69,14.30%,35,449,0,7.20%,92.80%,0.00%,103,103,484,21.30% +147560,881,2042,State-funded primary,195,100,95,51.30%,48.70%,3,1.50%,21,10.80%,0,195,0,0.00%,100.00%,0.00%,23,23,195,11.80% +147561,881,2973,State-funded primary,380,199,181,52.40%,47.60%,16,4.20%,30,7.90%,130,250,0,34.20%,65.80%,0.00%,58,59,380,15.50% +147562,916,7022,State-funded special school,65,11,54,16.90%,83.10%,65,100.00%,0,0.00%,8,57,0,12.30%,87.70%,0.00%,25,25,64,39.10% +147563,886,2287,State-funded primary,83,39,44,47.00%,53.00%,4,4.80%,13,15.70%,3,80,0,3.60%,96.40%,0.00%,17,17,83,20.50% +147564,888,3438,State-funded primary,206,99,107,48.10%,51.90%,5,2.40%,23,11.20%,13,193,0,6.30%,93.70%,0.00%,47,49,206,23.80% +147565,888,4709,State-funded secondary,489,259,230,53.00%,47.00%,11,2.20%,92,18.80%,18,471,0,3.70%,96.30%,0.00%,150,168,489,34.40% +147566,925,2095,State-funded primary,432,194,238,44.90%,55.10%,10,2.30%,79,18.30%,11,421,0,2.50%,97.50%,0.00%,99,109,408,26.70% +147567,926,2354,State-funded primary,412,203,209,49.30%,50.70%,16,3.90%,56,13.60%,77,334,1,18.70%,81.10%,0.20%,195,196,412,47.60% +147568,893,3134,State-funded primary,260,144,116,55.40%,44.60%,4,1.50%,33,12.70%,6,245,9,2.30%,94.20%,3.50%,35,39,243,16.00% +147569,860,2138,State-funded primary,348,174,174,50.00%,50.00%,4,1.10%,22,6.30%,27,321,0,7.80%,92.20%,0.00%,53,59,348,17.00% +147570,860,2334,State-funded primary,304,150,154,49.30%,50.70%,8,2.60%,33,10.90%,18,286,0,5.90%,94.10%,0.00%,76,76,304,25.00% +147571,860,2335,State-funded primary,247,130,117,52.60%,47.40%,4,1.60%,51,20.60%,2,245,0,0.80%,99.20%,0.00%,50,51,247,20.60% +147572,860,3128,State-funded primary,179,101,78,56.40%,43.60%,2,1.10%,25,14.00%,1,178,0,0.60%,99.40%,0.00%,14,16,179,8.90% +147574,860,4051,State-funded secondary,903,455,448,50.40%,49.60%,12,1.30%,100,11.10%,146,757,0,16.20%,83.80%,0.00%,197,209,773,27.00% +147575,935,3108,State-funded primary,37,20,17,54.10%,45.90%,1,2.70%,8,21.60%,0,37,0,0.00%,100.00%,0.00%,4,4,37,10.80% +147576,371,2207,State-funded primary,398,189,209,47.50%,52.50%,15,3.80%,92,23.10%,108,290,0,27.10%,72.90%,0.00%,149,158,362,43.60% +147577,916,7023,State-funded special school,178,46,132,25.80%,74.20%,178,100.00%,0,0.00%,12,165,1,6.70%,92.70%,0.60%,75,79,178,44.40% +147578,888,2015,State-funded primary,211,103,108,48.80%,51.20%,6,2.80%,9,4.30%,34,177,0,16.10%,83.90%,0.00%,68,69,211,32.70% +147579,894,2204,State-funded primary,478,231,247,48.30%,51.70%,10,2.10%,71,14.90%,113,365,0,23.60%,76.40%,0.00%,125,129,415,31.10% +147580,872,3370,State-funded primary,234,106,128,45.30%,54.70%,8,3.40%,32,13.70%,25,209,0,10.70%,89.30%,0.00%,14,14,234,6.00% +147581,888,4804,State-funded secondary,1283,621,662,48.40%,51.60%,21,1.60%,296,23.10%,154,1129,0,12.00%,88.00%,0.00%,345,378,1283,29.50% +147582,371,7014,State-funded special school,132,26,106,19.70%,80.30%,131,99.20%,1,0.80%,18,114,0,13.60%,86.40%,0.00%,57,54,110,49.10% +147583,381,2029,State-funded primary,132,62,70,47.00%,53.00%,4,3.00%,23,17.40%,16,116,0,12.10%,87.90%,0.00%,77,72,121,59.50% +147584,382,2063,State-funded primary,286,146,140,51.00%,49.00%,8,2.80%,34,11.90%,59,227,0,20.60%,79.40%,0.00%,130,130,255,51.00% +147591,886,2118,State-funded primary,511,254,257,49.70%,50.30%,4,0.80%,75,14.70%,22,489,0,4.30%,95.70%,0.00%,143,142,469,30.30% +147592,888,2008,State-funded primary,167,74,93,44.30%,55.70%,7,4.20%,36,21.60%,12,155,0,7.20%,92.80%,0.00%,130,116,144,80.60% +147593,815,2017,State-funded primary,156,86,70,55.10%,44.90%,3,1.90%,27,17.30%,16,140,0,10.30%,89.70%,0.00%,16,20,148,13.50% +147594,935,1116,State-funded AP school,10,0,10,0.00%,100.00%,6,60.00%,0,0.00%,0,10,0,0.00%,100.00%,0.00%,6,9,10,90.00% +147595,865,2055,State-funded primary,96,50,46,52.10%,47.90%,1,1.00%,12,12.50%,6,90,0,6.30%,93.80%,0.00%,17,20,96,20.80% +147597,909,2024,State-funded primary,148,70,78,47.30%,52.70%,7,4.70%,28,18.90%,10,138,0,6.80%,93.20%,0.00%,45,46,132,34.80% +147600,936,6035,Independent school,56,21,35,37.50%,62.50%,56,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147602,881,2183,State-funded primary,417,191,226,45.80%,54.20%,6,1.40%,61,14.60%,26,391,0,6.20%,93.80%,0.00%,112,121,417,29.00% +147603,881,2184,State-funded primary,421,211,210,50.10%,49.90%,7,1.70%,65,15.40%,30,391,0,7.10%,92.90%,0.00%,237,256,421,60.80% +147604,889,6016,Independent school,142,142,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147607,855,6047,Independent school,22,3,19,13.60%,86.40%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147615,850,6096,Independent school,5,0,5,0.00%,100.00%,3,60.00%,2,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147618,370,2053,State-funded primary,415,198,217,47.70%,52.30%,18,4.30%,60,14.50%,76,339,0,18.30%,81.70%,0.00%,161,166,374,44.40% +147619,370,2134,State-funded primary,409,200,209,48.90%,51.10%,28,6.80%,42,10.30%,15,359,35,3.70%,87.80%,8.60%,148,151,409,36.90% +147620,371,2147,State-funded primary,258,127,131,49.20%,50.80%,7,2.70%,45,17.40%,18,240,0,7.00%,93.00%,0.00%,132,129,236,54.70% +147621,373,2040,State-funded primary,473,241,232,51.00%,49.00%,19,4.00%,101,21.40%,444,29,0,93.90%,6.10%,0.00%,243,229,410,55.90% +147622,373,2093,State-funded primary,441,211,230,47.80%,52.20%,13,2.90%,144,32.70%,400,41,0,90.70%,9.30%,0.00%,263,251,396,63.40% +147623,382,3026,State-funded primary,183,94,89,51.40%,48.60%,3,1.60%,10,5.50%,8,175,0,4.40%,95.60%,0.00%,32,34,183,18.60% +147624,831,2522,State-funded primary,422,198,224,46.90%,53.10%,9,2.10%,22,5.20%,21,401,0,5.00%,95.00%,0.00%,29,34,422,8.10% +147625,830,2621,State-funded primary,242,124,118,51.20%,48.80%,6,2.50%,37,15.30%,55,187,0,22.70%,77.30%,0.00%,111,101,207,48.80% +147626,830,2630,State-funded primary,151,78,73,51.70%,48.30%,3,2.00%,30,19.90%,9,142,0,6.00%,94.00%,0.00%,63,66,138,47.80% +147627,830,7012,State-funded special school,218,66,152,30.30%,69.70%,185,84.90%,1,0.50%,12,205,1,5.50%,94.00%,0.50%,99,83,149,55.70% +147628,810,2490,State-funded primary,358,155,203,43.30%,56.70%,5,1.40%,66,18.40%,41,317,0,11.50%,88.50%,0.00%,181,182,325,56.00% +147629,382,3411,State-funded primary,343,180,163,52.50%,47.50%,11,3.20%,72,21.00%,98,245,0,28.60%,71.40%,0.00%,161,164,343,47.80% +147630,336,2076,State-funded primary,235,122,113,51.90%,48.10%,2,0.90%,24,10.20%,108,127,0,46.00%,54.00%,0.00%,90,90,208,43.30% +147631,350,2026,State-funded primary,190,96,94,50.50%,49.50%,5,2.60%,26,13.70%,41,149,0,21.60%,78.40%,0.00%,77,78,190,41.10% +147632,383,2032,State-funded primary,208,108,100,51.90%,48.10%,0,0.00%,38,18.30%,92,116,0,44.20%,55.80%,0.00%,118,108,180,60.00% +147633,383,2033,State-funded primary,257,119,138,46.30%,53.70%,2,0.80%,50,19.50%,54,203,0,21.00%,79.00%,0.00%,100,112,257,43.60% +147634,891,2040,State-funded primary,96,40,56,41.70%,58.30%,1,1.00%,20,20.80%,4,92,0,4.20%,95.80%,0.00%,20,23,81,28.40% +147635,886,6159,Independent school,26,4,22,15.40%,84.60%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147636,877,2016,State-funded primary,282,124,158,44.00%,56.00%,21,7.40%,76,27.00%,55,227,0,19.50%,80.50%,0.00%,147,146,227,64.30% +147637,877,2300,State-funded primary,351,169,182,48.10%,51.90%,12,3.40%,42,12.00%,19,332,0,5.40%,94.60%,0.00%,70,73,351,20.80% +147638,896,2010,State-funded primary,151,74,77,49.00%,51.00%,2,1.30%,9,6.00%,3,148,0,2.00%,98.00%,0.00%,14,14,151,9.30% +147639,878,2094,State-funded primary,128,53,75,41.40%,58.60%,6,4.70%,25,19.50%,2,126,0,1.60%,98.40%,0.00%,25,25,105,23.80% +147640,931,2030,State-funded primary,183,79,104,43.20%,56.80%,3,1.60%,32,17.50%,2,177,4,1.10%,96.70%,2.20%,20,21,183,11.50% +147641,931,2031,State-funded primary,117,59,58,50.40%,49.60%,3,2.60%,19,16.20%,12,103,2,10.30%,88.00%,1.70%,31,31,117,26.50% +147642,937,2071,State-funded primary,254,122,132,48.00%,52.00%,12,4.70%,48,18.90%,62,191,1,24.40%,75.20%,0.40%,117,116,216,53.70% +147643,878,4101,State-funded secondary,674,355,319,52.70%,47.30%,31,4.60%,93,13.80%,23,651,0,3.40%,96.60%,0.00%,154,172,674,25.50% +147644,878,2442,State-funded primary,186,94,92,50.50%,49.50%,4,2.20%,14,7.50%,2,184,0,1.10%,98.90%,0.00%,34,37,186,19.90% +147648,394,6005,Independent school,19,8,11,42.10%,57.90%,12,63.20%,7,36.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147649,865,2056,State-funded primary,103,44,59,42.70%,57.30%,5,4.90%,30,29.10%,2,101,0,1.90%,98.10%,0.00%,22,22,103,21.40% +147650,878,4029,State-funded secondary,412,206,206,50.00%,50.00%,37,9.00%,102,24.80%,55,351,6,13.30%,85.20%,1.50%,101,112,412,27.20% +147651,933,4007,State-funded primary,452,238,214,52.70%,47.30%,6,1.30%,55,12.20%,35,417,0,7.70%,92.30%,0.00%,93,95,452,21.00% +147652,801,4014,State-funded primary,218,106,112,48.60%,51.40%,5,2.30%,35,16.10%,37,181,0,17.00%,83.00%,0.00%,33,38,218,17.40% +147653,204,4006,State-funded secondary,392,172,220,43.90%,56.10%,10,2.60%,32,8.20%,180,202,10,45.90%,51.50%,2.60%,230,250,392,63.80% +147654,895,4005,State-funded secondary,536,281,255,52.40%,47.60%,23,4.30%,66,12.30%,194,341,1,36.20%,63.60%,0.20%,238,251,536,46.80% +147655,850,6097,Independent school,20,4,16,20.00%,80.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147660,895,6009,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147661,873,7008,State-funded special school,123,33,90,26.80%,73.20%,123,100.00%,0,0.00%,20,93,10,16.30%,75.60%,8.10%,43,45,123,36.60% +147662,354,6039,Independent school,170,170,0,100.00%,0.00%,1,0.60%,1,0.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147663,868,6026,Independent school,103,25,78,24.30%,75.70%,103,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147664,830,6050,Independent school,25,1,24,4.00%,96.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147665,341,6016,Independent school,48,10,38,20.80%,79.20%,20,41.70%,28,58.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147666,372,6004,Independent school,6,6,0,100.00%,0.00%,3,50.00%,3,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147669,330,3318,State-funded primary,415,203,212,48.90%,51.10%,5,1.20%,44,10.60%,216,199,0,52.00%,48.00%,0.00%,115,123,415,29.60% +147670,840,4231,State-funded secondary,991,506,485,51.10%,48.90%,20,2.00%,109,11.00%,8,983,0,0.80%,99.20%,0.00%,223,244,991,24.60% +147671,936,2271,State-funded primary,236,119,117,50.40%,49.60%,9,3.80%,46,19.50%,30,206,0,12.70%,87.30%,0.00%,41,41,236,17.40% +147675,870,7002,State-funded special school,51,0,51,0.00%,100.00%,51,100.00%,0,0.00%,4,47,0,7.80%,92.20%,0.00%,39,42,51,82.40% +147676,852,4004,State-funded secondary,747,340,407,45.50%,54.50%,15,2.00%,114,15.30%,292,452,3,39.10%,60.50%,0.40%,381,394,747,52.70% +147677,925,2079,State-funded primary,326,150,176,46.00%,54.00%,8,2.50%,28,8.60%,10,316,0,3.10%,96.90%,0.00%,69,73,326,22.40% +147678,936,2044,State-funded primary,235,129,106,54.90%,45.10%,17,7.20%,29,12.30%,78,155,2,33.20%,66.00%,0.90%,97,92,209,44.00% +147679,919,7003,State-funded special school,69,0,69,0.00%,100.00%,69,100.00%,0,0.00%,0,69,0,0.00%,100.00%,0.00%,46,47,69,68.10% +147680,846,2012,State-funded primary,172,82,90,47.70%,52.30%,5,2.90%,61,35.50%,31,141,0,18.00%,82.00%,0.00%,92,94,157,59.90% +147681,203,6007,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147683,876,4005,State-funded secondary,601,288,313,47.90%,52.10%,20,3.30%,70,11.60%,32,569,0,5.30%,94.70%,0.00%,150,159,601,26.50% +147685,831,4010,State-funded secondary,263,75,188,28.50%,71.50%,6,2.30%,43,16.30%,26,181,56,9.90%,68.80%,21.30%,69,80,209,38.30% +147690,821,6017,Independent school,102,0,102,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147697,940,6011,Independent school,24,2,22,8.30%,91.70%,1,4.20%,22,91.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147700,390,6013,Independent school,42,42,0,100.00%,0.00%,0,0.00%,3,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147701,850,2058,State-funded primary,106,52,54,49.10%,50.90%,9,8.50%,23,21.70%,6,100,0,5.70%,94.30%,0.00%,44,46,106,43.40% +147702,330,6134,Independent school,20,3,17,15.00%,85.00%,19,95.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147703,925,6055,Independent school,23,9,14,39.10%,60.90%,22,95.70%,1,4.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147704,881,6076,Independent school,18,0,18,0.00%,100.00%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147705,933,6012,Independent school,47,16,31,34.00%,66.00%,47,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147706,302,2010,State-funded primary,462,218,244,47.20%,52.80%,25,5.40%,36,7.80%,329,133,0,71.20%,28.80%,0.00%,131,137,416,32.90% +147707,330,4663,State-funded secondary,1127,587,540,52.10%,47.90%,5,0.40%,115,10.20%,355,757,15,31.50%,67.20%,1.30%,460,453,978,46.30% +147708,332,2000,State-funded primary,243,119,124,49.00%,51.00%,1,0.40%,37,15.20%,111,132,0,45.70%,54.30%,0.00%,72,77,211,36.50% +147709,380,2086,State-funded primary,476,228,248,47.90%,52.10%,29,6.10%,28,5.90%,282,194,0,59.20%,40.80%,0.00%,122,131,403,32.50% +147710,838,2257,State-funded primary,150,67,83,44.70%,55.30%,5,3.30%,14,9.30%,2,148,0,1.30%,98.70%,0.00%,5,5,150,3.30% +147711,840,4019,State-funded secondary,1158,571,587,49.30%,50.70%,26,2.20%,173,14.90%,21,1137,0,1.80%,98.20%,0.00%,443,468,1158,40.40% +147712,845,3360,State-funded primary,216,105,111,48.60%,51.40%,8,3.70%,29,13.40%,10,206,0,4.60%,95.40%,0.00%,16,18,216,8.30% +147713,881,2064,State-funded primary,406,195,211,48.00%,52.00%,3,0.70%,58,14.30%,57,349,0,14.00%,86.00%,0.00%,27,28,406,6.90% +147714,885,5202,State-funded primary,184,97,87,52.70%,47.30%,2,1.10%,34,18.50%,95,89,0,51.60%,48.40%,0.00%,33,33,184,17.90% +147715,891,2361,State-funded primary,242,132,110,54.50%,45.50%,3,1.20%,22,9.10%,15,227,0,6.20%,93.80%,0.00%,54,53,210,25.20% +147716,931,3453,State-funded primary,269,119,150,44.20%,55.80%,5,1.90%,44,16.40%,8,261,0,3.00%,97.00%,0.00%,22,24,245,9.80% +147717,370,2140,State-funded primary,304,148,156,48.70%,51.30%,6,2.00%,46,15.10%,18,286,0,5.90%,94.10%,0.00%,117,108,272,39.70% +147718,370,2143,State-funded primary,347,163,184,47.00%,53.00%,6,1.70%,27,7.80%,15,332,0,4.30%,95.70%,0.00%,48,49,304,16.10% +147719,870,1112,State-funded AP school,74,14,60,18.90%,81.10%,29,39.20%,45,60.80%,3,71,0,4.10%,95.90%,0.00%,44,49,68,72.10% +147720,851,7472,State-funded special school,106,16,90,15.10%,84.90%,96,90.60%,10,9.40%,2,104,0,1.90%,98.10%,0.00%,72,76,106,71.70% +147721,332,2013,State-funded primary,262,134,128,51.10%,48.90%,5,1.90%,43,16.40%,39,223,0,14.90%,85.10%,0.00%,129,130,262,49.60% +147723,356,2020,State-funded primary,154,77,77,50.00%,50.00%,1,0.60%,35,22.70%,20,134,0,13.00%,87.00%,0.00%,67,63,136,46.30% +147724,807,4014,State-funded secondary,1214,588,626,48.40%,51.60%,40,3.30%,161,13.30%,8,1206,0,0.70%,99.30%,0.00%,268,302,1214,24.90% +147725,831,2025,State-funded primary,204,117,87,57.40%,42.60%,2,1.00%,29,14.20%,58,146,0,28.40%,71.60%,0.00%,60,61,204,29.90% +147726,916,2092,State-funded primary,185,86,99,46.50%,53.50%,40,21.60%,37,20.00%,21,161,3,11.40%,87.00%,1.60%,104,108,185,58.40% +147727,925,2080,State-funded primary,247,115,132,46.60%,53.40%,8,3.20%,39,15.80%,120,127,0,48.60%,51.40%,0.00%,118,96,203,47.30% +147728,931,7004,State-funded special school,96,10,86,10.40%,89.60%,96,100.00%,0,0.00%,1,95,0,1.00%,99.00%,0.00%,60,66,96,68.80% +147729,886,2126,State-funded primary,194,90,104,46.40%,53.60%,10,5.20%,36,18.60%,51,143,0,26.30%,73.70%,0.00%,99,99,179,55.30% +147730,355,2006,State-funded primary,237,131,106,55.30%,44.70%,5,2.10%,23,9.70%,80,140,17,33.80%,59.10%,7.20%,127,115,207,55.60% +147732,210,6011,Independent school,8,3,5,37.50%,62.50%,1,12.50%,6,75.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147733,381,6023,Independent school,120,63,57,52.50%,47.50%,0,0.00%,11,9.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147734,855,6048,Independent school,8,0,8,0.00%,100.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147735,888,6122,Independent school,3,0,3,0.00%,100.00%,2,66.70%,1,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147736,333,6016,Independent school,25,2,23,8.00%,92.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147737,896,6008,Independent school,48,9,39,18.80%,81.30%,48,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147738,372,2021,State-funded primary,454,216,238,47.60%,52.40%,9,2.00%,147,32.40%,34,420,0,7.50%,92.50%,0.00%,170,172,385,44.70% +147739,372,2032,State-funded primary,546,275,271,50.40%,49.60%,9,1.60%,68,12.50%,10,536,0,1.80%,98.20%,0.00%,51,53,487,10.90% +147747,830,2135,State-funded primary,209,113,96,54.10%,45.90%,5,2.40%,29,13.90%,25,184,0,12.00%,88.00%,0.00%,89,72,167,43.10% +147748,830,2376,State-funded primary,234,111,123,47.40%,52.60%,10,4.30%,31,13.20%,21,213,0,9.00%,91.00%,0.00%,102,105,234,44.90% +147749,886,2237,State-funded primary,470,237,233,50.40%,49.60%,7,1.50%,72,15.30%,26,444,0,5.50%,94.50%,0.00%,162,165,415,39.80% +147750,886,2534,State-funded primary,236,108,128,45.80%,54.20%,13,5.50%,35,14.80%,26,210,0,11.00%,89.00%,0.00%,100,101,209,48.30% +147751,886,2569,State-funded primary,295,147,148,49.80%,50.20%,7,2.40%,30,10.20%,26,269,0,8.80%,91.20%,0.00%,106,108,295,36.60% +147752,886,2629,State-funded primary,196,92,104,46.90%,53.10%,5,2.60%,17,8.70%,20,176,0,10.20%,89.80%,0.00%,26,26,196,13.30% +147753,931,3090,State-funded primary,35,20,15,57.10%,42.90%,1,2.90%,7,20.00%,1,34,0,2.90%,97.10%,0.00%,2,2,29,6.90% +147755,866,2214,State-funded primary,412,219,193,53.20%,46.80%,7,1.70%,38,9.20%,46,362,4,11.20%,87.90%,1.00%,42,43,412,10.40% +147757,330,4038,State-funded secondary,2186,1089,1097,49.80%,50.20%,26,1.20%,352,16.10%,1541,624,21,70.50%,28.50%,1.00%,667,889,2060,43.20% +147758,330,2206,State-funded primary,405,196,209,48.40%,51.60%,7,1.70%,69,17.00%,221,184,0,54.60%,45.40%,0.00%,207,241,405,59.50% +147759,931,2032,State-funded primary,287,143,144,49.80%,50.20%,7,2.40%,52,18.10%,101,186,0,35.20%,64.80%,0.00%,51,52,260,20.00% +147760,811,2014,State-funded primary,194,91,103,46.90%,53.10%,6,3.10%,32,16.50%,3,191,0,1.50%,98.50%,0.00%,37,37,171,21.60% +147761,885,2037,State-funded primary,63,33,30,52.40%,47.60%,2,3.20%,8,12.70%,1,62,0,1.60%,98.40%,0.00%,11,13,63,20.60% +147762,815,2018,State-funded primary,111,48,63,43.20%,56.80%,4,3.60%,37,33.30%,0,111,0,0.00%,100.00%,0.00%,21,21,94,22.30% +147763,815,2019,State-funded primary,135,72,63,53.30%,46.70%,4,3.00%,22,16.30%,4,131,0,3.00%,97.00%,0.00%,18,18,135,13.30% +147764,815,2020,State-funded primary,230,105,125,45.70%,54.30%,2,0.90%,26,11.30%,31,198,1,13.50%,86.10%,0.40%,66,67,230,29.10% +147765,806,2010,State-funded primary,269,137,132,50.90%,49.10%,1,0.40%,35,13.00%,14,255,0,5.20%,94.80%,0.00%,187,189,249,75.90% +147768,936,6040,Independent school,7,1,6,14.30%,85.70%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147769,887,2023,State-funded primary,359,166,193,46.20%,53.80%,17,4.70%,63,17.50%,61,298,0,17.00%,83.00%,0.00%,158,168,359,46.80% +147780,860,6068,Independent school,5,0,5,0.00%,100.00%,4,80.00%,1,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147783,885,6057,Independent school,187,161,26,86.10%,13.90%,4,2.10%,79,42.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147784,931,5950,State-funded special school,82,10,72,12.20%,87.80%,82,100.00%,0,0.00%,0,82,0,0.00%,100.00%,0.00%,50,51,82,62.20% +147785,919,4036,State-funded secondary,984,493,491,50.10%,49.90%,14,1.40%,85,8.60%,240,734,10,24.40%,74.60%,1.00%,234,238,842,28.30% +147787,355,6015,Independent school,48,0,48,0.00%,100.00%,0,0.00%,8,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147788,373,4017,State-funded secondary,1059,515,544,48.60%,51.40%,26,2.50%,208,19.60%,37,1018,4,3.50%,96.10%,0.40%,165,180,1059,17.00% +147789,936,6043,Independent school,15,14,1,93.30%,6.70%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147793,205,7014,State-funded special school,243,46,197,18.90%,81.10%,242,99.60%,1,0.40%,98,142,3,40.30%,58.40%,1.20%,130,145,219,66.20% +147795,333,3305,State-funded primary,230,107,123,46.50%,53.50%,5,2.20%,25,10.90%,46,184,0,20.00%,80.00%,0.00%,42,43,208,20.70% +147796,335,4057,State-funded secondary,714,355,359,49.70%,50.30%,25,3.50%,112,15.70%,20,691,3,2.80%,96.80%,0.40%,328,359,714,50.30% +147797,371,2179,State-funded primary,246,120,126,48.80%,51.20%,2,0.80%,36,14.60%,44,202,0,17.90%,82.10%,0.00%,106,106,218,48.60% +147799,382,2118,State-funded primary,170,94,76,55.30%,44.70%,3,1.80%,25,14.70%,8,162,0,4.70%,95.30%,0.00%,44,44,170,25.90% +147800,800,2251,State-funded primary,198,113,85,57.10%,42.90%,5,2.50%,31,15.70%,18,180,0,9.10%,90.90%,0.00%,48,51,198,25.80% +147801,800,4607,State-funded secondary,247,99,148,40.10%,59.90%,24,9.70%,71,28.70%,41,206,0,16.60%,83.40%,0.00%,68,72,246,29.30% +147803,823,2282,State-funded primary,267,130,137,48.70%,51.30%,13,4.90%,28,10.50%,8,259,0,3.00%,97.00%,0.00%,21,22,267,8.20% +147804,823,4054,State-funded secondary,458,229,229,50.00%,50.00%,20,4.40%,75,16.40%,20,438,0,4.40%,95.60%,0.00%,41,47,458,10.30% +147805,872,2106,State-funded primary,461,235,226,51.00%,49.00%,14,3.00%,52,11.30%,80,381,0,17.40%,82.60%,0.00%,63,63,461,13.70% +147806,868,3326,State-funded primary,255,130,125,51.00%,49.00%,3,1.20%,16,6.30%,20,235,0,7.80%,92.20%,0.00%,28,28,255,11.00% +147807,825,3038,State-funded primary,149,65,84,43.60%,56.40%,2,1.30%,24,16.10%,25,124,0,16.80%,83.20%,0.00%,10,10,149,6.70% +147808,874,2264,State-funded primary,259,139,120,53.70%,46.30%,9,3.50%,21,8.10%,109,150,0,42.10%,57.90%,0.00%,89,90,259,34.70% +147809,896,2339,State-funded primary,176,87,89,49.40%,50.60%,1,0.60%,11,6.30%,0,176,0,0.00%,100.00%,0.00%,5,5,151,3.30% +147810,895,3108,State-funded primary,91,45,46,49.50%,50.50%,4,4.40%,19,20.90%,1,90,0,1.10%,98.90%,0.00%,26,26,91,28.60% +147811,830,2356,State-funded primary,163,81,82,49.70%,50.30%,11,6.70%,45,27.60%,6,156,1,3.70%,95.70%,0.60%,75,73,143,51.00% +147812,878,3101,State-funded primary,97,54,43,55.70%,44.30%,4,4.10%,3,3.10%,1,96,0,1.00%,99.00%,0.00%,11,11,97,11.30% +147813,880,3103,State-funded primary,244,121,123,49.60%,50.40%,9,3.70%,24,9.80%,4,240,0,1.60%,98.40%,0.00%,57,54,213,25.40% +147814,840,3087,State-funded primary,148,65,83,43.90%,56.10%,1,0.70%,18,12.20%,2,146,0,1.40%,98.60%,0.00%,20,20,129,15.50% +147815,840,3134,State-funded primary,48,22,26,45.80%,54.20%,1,2.10%,6,12.50%,0,48,0,0.00%,100.00%,0.00%,1,1,46,2.20% +147816,881,2134,State-funded primary,313,144,169,46.00%,54.00%,10,3.20%,63,20.10%,37,276,0,11.80%,88.20%,0.00%,113,116,313,37.10% +147817,881,3208,State-funded primary,56,26,30,46.40%,53.60%,0,0.00%,7,12.50%,0,56,0,0.00%,100.00%,0.00%,2,3,51,5.90% +147818,919,3003,State-funded primary,215,98,117,45.60%,54.40%,3,1.40%,10,4.70%,29,185,1,13.50%,86.00%,0.50%,26,26,177,14.70% +147819,815,7022,State-funded special school,136,47,89,34.60%,65.40%,136,100.00%,0,0.00%,6,130,0,4.40%,95.60%,0.00%,56,60,136,44.10% +147820,929,2360,State-funded primary,143,78,65,54.50%,45.50%,2,1.40%,24,16.80%,2,141,0,1.40%,98.60%,0.00%,34,34,119,28.60% +147821,931,7020,State-funded special school,105,33,72,31.40%,68.60%,104,99.00%,1,1.00%,36,68,1,34.30%,64.80%,1.00%,32,28,89,31.50% +147822,933,2255,State-funded primary,326,145,181,44.50%,55.50%,2,0.60%,21,6.40%,11,313,2,3.40%,96.00%,0.60%,46,46,256,18.00% +147823,933,3238,State-funded primary,97,50,47,51.50%,48.50%,1,1.00%,8,8.20%,3,94,0,3.10%,96.90%,0.00%,3,3,73,4.10% +147824,933,3317,State-funded primary,70,37,33,52.90%,47.10%,0,0.00%,6,8.60%,4,66,0,5.70%,94.30%,0.00%,4,4,54,7.40% +147825,933,4410,State-funded secondary,472,231,241,48.90%,51.10%,4,0.80%,34,7.20%,20,451,1,4.20%,95.60%,0.20%,57,66,472,14.00% +147826,860,2297,State-funded primary,322,157,165,48.80%,51.20%,3,0.90%,28,8.70%,11,308,3,3.40%,95.70%,0.90%,52,52,322,16.10% +147827,891,3791,State-funded primary,418,209,209,50.00%,50.00%,2,0.50%,35,8.40%,14,404,0,3.30%,96.70%,0.00%,83,83,418,19.90% +147829,371,7016,State-funded special school,137,43,94,31.40%,68.60%,137,100.00%,0,0.00%,10,127,0,7.30%,92.70%,0.00%,64,51,109,46.80% +147830,893,5204,State-funded primary,479,212,267,44.30%,55.70%,3,0.60%,35,7.30%,8,467,4,1.70%,97.50%,0.80%,49,46,424,10.80% +147832,306,4014,State-funded secondary,523,238,285,45.50%,54.50%,10,1.90%,102,19.50%,184,329,10,35.20%,62.90%,1.90%,235,264,523,50.50% +147833,886,7005,State-funded special school,152,38,114,25.00%,75.00%,152,100.00%,0,0.00%,4,148,0,2.60%,97.40%,0.00%,50,51,152,33.60% +147834,919,2097,State-funded primary,148,74,74,50.00%,50.00%,2,1.40%,11,7.40%,51,97,0,34.50%,65.50%,0.00%,32,32,148,21.60% +147836,850,2059,State-funded primary,104,45,59,43.30%,56.70%,3,2.90%,7,6.70%,6,98,0,5.80%,94.20%,0.00%,18,18,104,17.30% +147837,856,4011,State-funded secondary,925,532,393,57.50%,42.50%,5,0.50%,28,3.00%,251,654,20,27.10%,70.70%,2.20%,148,0,0,0.00% +147838,371,4013,State-funded secondary,712,205,507,28.80%,71.20%,4,0.60%,59,8.30%,44,667,1,6.20%,93.70%,0.10%,132,118,489,24.10% +147839,931,2033,State-funded primary,148,77,71,52.00%,48.00%,0,0.00%,22,14.90%,20,125,3,13.50%,84.50%,2.00%,19,18,123,14.60% +147840,878,7010,State-funded special school,121,29,92,24.00%,76.00%,121,100.00%,0,0.00%,1,115,5,0.80%,95.00%,4.10%,45,53,121,43.80% +147841,394,7003,State-funded special school,140,31,109,22.10%,77.90%,132,94.30%,8,5.70%,11,127,2,7.90%,90.70%,1.40%,68,68,140,48.60% +147842,933,2050,State-funded primary,145,72,73,49.70%,50.30%,3,2.10%,8,5.50%,13,130,2,9.00%,89.70%,1.40%,12,12,86,14.00% +147844,881,2185,State-funded primary,116,61,55,52.60%,47.40%,3,2.60%,8,6.90%,14,102,0,12.10%,87.90%,0.00%,18,20,116,17.20% +147845,890,7000,State-funded special school,40,4,36,10.00%,90.00%,40,100.00%,0,0.00%,0,40,0,0.00%,100.00%,0.00%,29,34,40,85.00% +147846,878,2095,State-funded primary,292,132,160,45.20%,54.80%,3,1.00%,31,10.60%,31,261,0,10.60%,89.40%,0.00%,23,16,180,8.90% +147847,883,4004,State-funded secondary,348,141,207,40.50%,59.50%,14,4.00%,48,13.80%,12,336,0,3.40%,96.60%,0.00%,69,77,348,22.10% +147848,806,4003,State-funded secondary,448,220,228,49.10%,50.90%,6,1.30%,90,20.10%,197,248,3,44.00%,55.40%,0.70%,274,283,448,63.20% +147849,935,7016,State-funded special school,65,1,64,1.50%,98.50%,65,100.00%,0,0.00%,1,64,0,1.50%,98.50%,0.00%,38,44,65,67.70% +147850,886,2129,State-funded primary,368,192,176,52.20%,47.80%,4,1.10%,42,11.40%,94,267,7,25.50%,72.60%,1.90%,67,71,304,23.40% +147851,880,2005,State-funded primary,48,28,20,58.30%,41.70%,0,0.00%,0,0.00%,2,46,0,4.20%,95.80%,0.00%,9,8,36,22.20% +147852,850,2060,State-funded primary,116,52,64,44.80%,55.20%,1,0.90%,6,5.20%,20,96,0,17.20%,82.80%,0.00%,14,14,116,12.10% +147853,883,4005,State-funded secondary,362,152,210,42.00%,58.00%,24,6.60%,18,5.00%,126,232,4,34.80%,64.10%,1.10%,98,120,362,33.10% +147854,895,7002,State-funded special school,61,23,38,37.70%,62.30%,57,93.40%,4,6.60%,0,61,0,0.00%,100.00%,0.00%,27,29,61,47.50% +147855,845,1101,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +147856,936,2052,State-funded primary,215,111,104,51.60%,48.40%,2,0.90%,26,12.10%,28,187,0,13.00%,87.00%,0.00%,14,13,178,7.30% +147857,926,2221,State-funded primary,234,119,115,50.90%,49.10%,2,0.90%,26,11.10%,10,224,0,4.30%,95.70%,0.00%,9,9,234,3.80% +147858,855,7000,State-funded special school,66,12,54,18.20%,81.80%,66,100.00%,0,0.00%,1,65,0,1.50%,98.50%,0.00%,17,17,64,26.60% +147859,357,6007,Independent school,23,3,20,13.00%,87.00%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147860,826,4007,State-funded secondary,841,408,433,48.50%,51.50%,15,1.80%,72,8.60%,187,654,0,22.20%,77.80%,0.00%,179,193,841,22.90% +147861,800,2010,State-funded primary,60,26,34,43.30%,56.70%,1,1.70%,15,25.00%,5,55,0,8.30%,91.70%,0.00%,8,8,60,13.30% +147862,872,2009,State-funded primary,204,86,118,42.20%,57.80%,3,1.50%,20,9.80%,65,139,0,31.90%,68.10%,0.00%,5,5,150,3.30% +147863,307,4008,State-funded secondary,350,155,195,44.30%,55.70%,8,2.30%,61,17.40%,163,187,0,46.60%,53.40%,0.00%,155,170,350,48.60% +147864,371,7001,State-funded special school,98,16,82,16.30%,83.70%,98,100.00%,0,0.00%,2,96,0,2.00%,98.00%,0.00%,43,45,98,45.90% +147865,931,2034,State-funded primary,109,61,48,56.00%,44.00%,2,1.80%,9,8.30%,26,83,0,23.90%,76.10%,0.00%,34,34,79,43.00% +147866,886,2131,State-funded primary,263,141,122,53.60%,46.40%,3,1.10%,54,20.50%,56,207,0,21.30%,78.70%,0.00%,17,20,233,8.60% +147867,886,2140,State-funded primary,262,114,148,43.50%,56.50%,16,6.10%,38,14.50%,40,206,16,15.30%,78.60%,6.10%,22,23,208,11.10% +147868,870,2039,State-funded primary,120,61,59,50.80%,49.20%,2,1.70%,10,8.30%,62,58,0,51.70%,48.30%,0.00%,12,12,120,10.00% +147869,830,2065,State-funded primary,183,85,98,46.40%,53.60%,3,1.60%,39,21.30%,37,143,3,20.20%,78.10%,1.60%,32,26,147,17.70% +147870,886,7006,State-funded special school,175,56,119,32.00%,68.00%,175,100.00%,0,0.00%,0,175,0,0.00%,100.00%,0.00%,60,68,175,38.90% +147871,372,2039,State-funded primary,534,246,288,46.10%,53.90%,13,2.40%,43,8.10%,105,428,1,19.70%,80.10%,0.20%,42,45,416,10.80% +147872,931,4017,State-funded secondary,361,155,206,42.90%,57.10%,16,4.40%,106,29.40%,45,316,0,12.50%,87.50%,0.00%,68,73,361,20.20% +147874,306,7002,State-funded special school,113,25,88,22.10%,77.90%,112,99.10%,1,0.90%,42,71,0,37.20%,62.80%,0.00%,53,54,104,51.90% +147875,354,4003,State-funded secondary,998,502,496,50.30%,49.70%,19,1.90%,134,13.40%,100,898,0,10.00%,90.00%,0.00%,422,450,998,45.10% +147876,825,3020,State-funded primary,455,229,226,50.30%,49.70%,11,2.40%,51,11.20%,72,383,0,15.80%,84.20%,0.00%,30,30,419,7.20% +147877,895,2139,State-funded primary,284,127,157,44.70%,55.30%,4,1.40%,19,6.70%,3,281,0,1.10%,98.90%,0.00%,19,21,284,7.40% +147878,881,2186,State-funded primary,43,24,19,55.80%,44.20%,2,4.70%,10,23.30%,0,43,0,0.00%,100.00%,0.00%,13,13,43,30.20% +147879,919,2401,State-funded primary,223,106,117,47.50%,52.50%,5,2.20%,28,12.60%,25,198,0,11.20%,88.80%,0.00%,32,34,203,16.70% +147880,935,2070,State-funded primary,377,198,179,52.50%,47.50%,10,2.70%,58,15.40%,13,364,0,3.40%,96.60%,0.00%,82,87,377,23.10% +147881,333,4008,State-funded secondary,899,471,428,52.40%,47.60%,13,1.40%,121,13.50%,299,597,3,33.30%,66.40%,0.30%,304,305,735,41.50% +147883,351,4002,State-funded secondary,595,294,301,49.40%,50.60%,13,2.20%,67,11.30%,161,432,2,27.10%,72.60%,0.30%,209,235,595,39.50% +147884,382,2070,State-funded primary,106,47,59,44.30%,55.70%,2,1.90%,16,15.10%,26,80,0,24.50%,75.50%,0.00%,62,63,97,64.90% +147885,352,7002,State-funded special school,80,18,62,22.50%,77.50%,80,100.00%,0,0.00%,24,56,0,30.00%,70.00%,0.00%,43,47,80,58.80% +147888,382,4010,State-funded secondary,700,359,341,51.30%,48.70%,46,6.60%,85,12.10%,190,510,0,27.10%,72.90%,0.00%,306,325,700,46.40% +147889,801,7004,State-funded special school,120,19,101,15.80%,84.20%,120,100.00%,0,0.00%,5,112,3,4.20%,93.30%,2.50%,77,80,119,67.20% +147890,800,2011,State-funded primary,151,68,83,45.00%,55.00%,1,0.70%,28,18.50%,4,147,0,2.60%,97.40%,0.00%,33,33,137,24.10% +147891,826,2029,State-funded primary,366,193,173,52.70%,47.30%,5,1.40%,69,18.90%,65,298,3,17.80%,81.40%,0.80%,133,133,349,38.10% +147892,874,1100,State-funded AP school,98,27,71,27.60%,72.40%,3,3.10%,28,28.60%,17,81,0,17.30%,82.70%,0.00%,65,72,98,73.50% +147893,838,2012,State-funded primary,71,33,38,46.50%,53.50%,3,4.20%,5,7.00%,1,70,0,1.40%,98.60%,0.00%,10,10,71,14.10% +147894,840,4011,State-funded secondary,701,326,375,46.50%,53.50%,14,2.00%,116,16.50%,13,688,0,1.90%,98.10%,0.00%,230,245,701,35.00% +147895,916,2093,State-funded primary,143,64,79,44.80%,55.20%,6,4.20%,35,24.50%,4,139,0,2.80%,97.20%,0.00%,48,48,119,40.30% +147896,895,6016,Independent school,93,19,74,20.40%,79.60%,93,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147897,886,4027,State-funded secondary,509,257,252,50.50%,49.50%,10,2.00%,54,10.60%,8,501,0,1.60%,98.40%,0.00%,176,175,463,37.80% +147898,931,2035,State-funded primary,175,83,92,47.40%,52.60%,2,1.10%,23,13.10%,69,106,0,39.40%,60.60%,0.00%,27,27,175,15.40% +147899,895,6017,Independent school,14,3,11,21.40%,78.60%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147902,855,4027,State-funded secondary,1232,607,625,49.30%,50.70%,16,1.30%,156,12.70%,49,1181,2,4.00%,95.90%,0.20%,196,205,1021,20.10% +147903,885,2038,State-funded primary,189,98,91,51.90%,48.10%,3,1.60%,49,25.90%,17,172,0,9.00%,91.00%,0.00%,75,74,164,45.10% +147904,838,4006,State-funded secondary,722,353,369,48.90%,51.10%,13,1.80%,111,15.40%,36,686,0,5.00%,95.00%,0.00%,123,129,722,17.90% +147905,879,4006,State-funded secondary,550,272,278,49.50%,50.50%,22,4.00%,76,13.80%,174,376,0,31.60%,68.40%,0.00%,285,290,550,52.70% +147906,838,6012,Independent school,25,11,14,44.00%,56.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147908,314,6008,Independent school,12,5,7,41.70%,58.30%,0,0.00%,2,16.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147909,931,2036,State-funded primary,100,53,47,53.00%,47.00%,5,5.00%,11,11.00%,19,81,0,19.00%,81.00%,0.00%,26,20,74,27.00% +147910,891,2041,State-funded primary,282,130,152,46.10%,53.90%,1,0.40%,15,5.30%,79,203,0,28.00%,72.00%,0.00%,39,37,249,14.90% +147911,938,6006,Independent school,105,53,52,50.50%,49.50%,4,3.80%,15,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147912,353,6008,Independent school,15,0,15,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147914,807,6002,Independent school,30,9,21,30.00%,70.00%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147916,357,3022,State-funded primary,211,102,109,48.30%,51.70%,1,0.50%,25,11.80%,145,66,0,68.70%,31.30%,0.00%,90,90,198,45.50% +147917,357,2026,State-funded primary,158,78,80,49.40%,50.60%,3,1.90%,27,17.10%,11,147,0,7.00%,93.00%,0.00%,72,76,137,55.50% +147920,372,2023,State-funded primary,203,106,97,52.20%,47.80%,8,3.90%,77,37.90%,46,157,0,22.70%,77.30%,0.00%,69,68,176,38.60% +147921,373,2139,State-funded primary,401,188,213,46.90%,53.10%,5,1.20%,97,24.20%,61,340,0,15.20%,84.80%,0.00%,206,192,369,52.00% +147922,380,3351,State-funded primary,243,121,122,49.80%,50.20%,5,2.10%,33,13.60%,13,230,0,5.30%,94.70%,0.00%,19,19,210,9.00% +147923,380,3354,State-funded primary,244,127,117,52.00%,48.00%,4,1.60%,50,20.50%,144,100,0,59.00%,41.00%,0.00%,45,46,212,21.70% +147924,380,3367,State-funded primary,188,90,98,47.90%,52.10%,4,2.10%,24,12.80%,23,165,0,12.20%,87.80%,0.00%,14,15,188,8.00% +147925,891,3789,State-funded primary,363,173,190,47.70%,52.30%,3,0.80%,71,19.60%,37,326,0,10.20%,89.80%,0.00%,113,116,320,36.30% +147926,872,2101,State-funded primary,159,79,80,49.70%,50.30%,10,6.30%,8,5.00%,39,120,0,24.50%,75.50%,0.00%,13,13,159,8.20% +147927,830,2185,State-funded primary,174,92,82,52.90%,47.10%,2,1.10%,32,18.40%,1,173,0,0.60%,99.40%,0.00%,49,51,174,29.30% +147928,840,3502,State-funded primary,70,34,36,48.60%,51.40%,1,1.40%,12,17.10%,7,63,0,10.00%,90.00%,0.00%,12,12,70,17.10% +147929,840,3505,State-funded primary,65,29,36,44.60%,55.40%,0,0.00%,12,18.50%,6,59,0,9.20%,90.80%,0.00%,22,23,65,35.40% +147930,929,3550,State-funded primary,188,93,95,49.50%,50.50%,0,0.00%,21,11.20%,4,184,0,2.10%,97.90%,0.00%,14,14,148,9.50% +147931,935,2114,State-funded primary,208,97,111,46.60%,53.40%,4,1.90%,32,15.40%,1,207,0,0.50%,99.50%,0.00%,32,32,208,15.40% +147932,935,2129,State-funded primary,165,70,95,42.40%,57.60%,5,3.00%,15,9.10%,20,145,0,12.10%,87.90%,0.00%,63,64,165,38.80% +147933,935,2138,State-funded primary,396,195,201,49.20%,50.80%,6,1.50%,44,11.10%,17,379,0,4.30%,95.70%,0.00%,69,72,396,18.20% +147934,935,2916,State-funded primary,251,109,142,43.40%,56.60%,5,2.00%,28,11.20%,7,244,0,2.80%,97.20%,0.00%,42,40,223,17.90% +147935,936,4058,State-funded secondary,665,334,331,50.20%,49.80%,54,8.10%,144,21.70%,48,610,7,7.20%,91.70%,1.10%,107,133,665,20.00% +147936,938,2176,State-funded primary,626,316,310,50.50%,49.50%,7,1.10%,72,11.50%,148,478,0,23.60%,76.40%,0.00%,108,110,626,17.60% +147937,938,3355,State-funded primary,422,224,198,53.10%,46.90%,6,1.40%,55,13.00%,158,262,2,37.40%,62.10%,0.50%,44,45,422,10.70% +147938,372,2137,State-funded primary,364,174,190,47.80%,52.20%,6,1.60%,76,20.90%,297,67,0,81.60%,18.40%,0.00%,190,212,338,62.70% +147939,380,2002,State-funded primary,320,167,153,52.20%,47.80%,9,2.80%,44,13.80%,245,75,0,76.60%,23.40%,0.00%,102,105,302,34.80% +147940,926,3418,State-funded primary,233,106,127,45.50%,54.50%,20,8.60%,31,13.30%,71,146,16,30.50%,62.70%,6.90%,104,105,211,49.80% +147941,354,2013,State-funded primary,196,109,87,55.60%,44.40%,3,1.50%,42,21.40%,59,137,0,30.10%,69.90%,0.00%,80,80,178,44.90% +147942,356,4006,State-funded secondary,592,294,298,49.70%,50.30%,17,2.90%,103,17.40%,126,466,0,21.30%,78.70%,0.00%,201,225,592,38.00% +147943,936,7004,State-funded special school,57,0,57,0.00%,100.00%,57,100.00%,0,0.00%,3,54,0,5.30%,94.70%,0.00%,38,39,57,68.40% +147944,874,7001,State-funded special school,151,64,87,42.40%,57.60%,151,100.00%,0,0.00%,79,72,0,52.30%,47.70%,0.00%,64,61,136,44.90% +147945,383,2034,State-funded primary,317,165,152,52.10%,47.90%,0,0.00%,61,19.20%,121,196,0,38.20%,61.80%,0.00%,142,148,296,50.00% +147949,891,6043,Independent school,13,5,8,38.50%,61.50%,5,38.50%,8,61.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147951,896,6010,Independent school,67,13,54,19.40%,80.60%,67,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147957,213,6012,Independent school,159,61,98,38.40%,61.60%,6,3.80%,60,37.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147963,855,6050,Independent school,10,1,9,10.00%,90.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147966,310,6013,Independent school,50,34,16,68.00%,32.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147967,879,4007,State-funded secondary,910,445,465,48.90%,51.10%,20,2.20%,123,13.50%,71,837,2,7.80%,92.00%,0.20%,350,363,817,44.40% +147969,926,2227,State-funded primary,261,124,137,47.50%,52.50%,9,3.40%,57,21.80%,86,169,6,33.00%,64.80%,2.30%,81,85,261,32.60% +147970,315,2054,State-funded primary,163,74,89,45.40%,54.60%,4,2.50%,33,20.20%,87,76,0,53.40%,46.60%,0.00%,122,110,145,75.90% +147971,306,2117,State-funded primary,929,453,476,48.80%,51.20%,13,1.40%,88,9.50%,564,365,0,60.70%,39.30%,0.00%,318,327,929,35.20% +147977,210,6012,Independent school,12,2,10,16.70%,83.30%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147980,929,6010,Independent school,20,7,13,35.00%,65.00%,19,95.00%,1,5.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147981,380,3333,State-funded primary,226,109,117,48.20%,51.80%,0,0.00%,20,8.80%,47,179,0,20.80%,79.20%,0.00%,33,34,202,16.80% +147982,380,3373,State-funded primary,125,60,65,48.00%,52.00%,3,2.40%,19,15.20%,23,102,0,18.40%,81.60%,0.00%,34,34,125,27.20% +147983,381,6024,Independent school,45,3,42,6.70%,93.30%,45,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147985,861,6023,Independent school,5,3,2,60.00%,40.00%,3,60.00%,2,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147986,306,6023,Independent school,86,42,44,48.80%,51.20%,5,5.80%,8,9.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147989,933,6014,Independent school,62,28,34,45.20%,54.80%,53,85.50%,9,14.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147991,203,6009,Independent school,111,17,94,15.30%,84.70%,111,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +147992,800,2243,State-funded primary,206,106,100,51.50%,48.50%,8,3.90%,27,13.10%,10,196,0,4.90%,95.10%,0.00%,39,39,206,18.90% +147993,800,3109,State-funded primary,159,79,80,49.70%,50.30%,6,3.80%,38,23.90%,5,154,0,3.10%,96.90%,0.00%,51,46,132,34.80% +147994,823,5201,State-funded primary,106,54,52,50.90%,49.10%,1,0.90%,6,5.70%,8,96,2,7.50%,90.60%,1.90%,5,4,89,4.50% +147995,896,2276,State-funded primary,266,133,133,50.00%,50.00%,6,2.30%,32,12.00%,5,261,0,1.90%,98.10%,0.00%,22,24,266,9.00% +147996,845,3058,State-funded primary,187,99,88,52.90%,47.10%,2,1.10%,24,12.80%,4,183,0,2.10%,97.90%,0.00%,27,28,187,15.00% +148001,933,2229,State-funded primary,294,149,145,50.70%,49.30%,6,2.00%,21,7.10%,60,234,0,20.40%,79.60%,0.00%,87,89,262,34.00% +148002,860,4077,State-funded secondary,698,357,341,51.10%,48.90%,20,2.90%,77,11.00%,7,691,0,1.00%,99.00%,0.00%,70,83,698,11.90% +148003,209,4001,State-funded secondary,722,344,378,47.60%,52.40%,14,1.90%,84,11.60%,309,413,0,42.80%,57.20%,0.00%,294,316,659,48.00% +148004,852,2011,State-funded primary,420,179,241,42.60%,57.40%,9,2.10%,42,10.00%,36,384,0,8.60%,91.40%,0.00%,132,134,420,31.90% +148006,933,6015,Independent school,34,14,20,41.20%,58.80%,29,85.30%,5,14.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148008,881,1121,State-funded AP school,61,20,41,32.80%,67.20%,1,1.60%,26,42.60%,1,60,0,1.60%,98.40%,0.00%,24,41,61,67.20% +148009,866,2023,State-funded primary,174,94,80,54.00%,46.00%,3,1.70%,17,9.80%,11,162,1,6.30%,93.10%,0.60%,22,30,174,17.20% +148010,825,6050,Independent school,66,51,15,77.30%,22.70%,0,0.00%,18,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148011,878,2096,State-funded primary,161,90,71,55.90%,44.10%,6,3.70%,30,18.60%,13,147,1,8.10%,91.30%,0.60%,28,29,161,18.00% +148012,210,2100,State-funded primary,488,242,246,49.60%,50.40%,12,2.50%,51,10.50%,108,376,4,22.10%,77.00%,0.80%,188,172,423,40.70% +148013,372,2043,State-funded primary,242,109,133,45.00%,55.00%,4,1.70%,26,10.70%,187,55,0,77.30%,22.70%,0.00%,137,137,209,65.60% +148014,872,2184,State-funded primary,240,128,112,53.30%,46.70%,21,8.80%,16,6.70%,38,202,0,15.80%,84.20%,0.00%,22,22,240,9.20% +148015,825,2213,State-funded primary,207,111,96,53.60%,46.40%,8,3.90%,32,15.50%,69,137,1,33.30%,66.20%,0.50%,38,37,158,23.40% +148016,830,2145,State-funded primary,163,75,88,46.00%,54.00%,3,1.80%,43,26.40%,1,162,0,0.60%,99.40%,0.00%,56,56,163,34.40% +148017,830,2328,State-funded primary,337,163,174,48.40%,51.60%,7,2.10%,89,26.40%,21,316,0,6.20%,93.80%,0.00%,143,137,307,44.60% +148018,830,2371,State-funded primary,206,117,89,56.80%,43.20%,4,1.90%,35,17.00%,2,204,0,1.00%,99.00%,0.00%,51,51,206,24.80% +148019,878,2226,State-funded primary,424,208,216,49.10%,50.90%,15,3.50%,71,16.70%,5,419,0,1.20%,98.80%,0.00%,91,90,392,23.00% +148020,878,2240,State-funded primary,128,71,57,55.50%,44.50%,1,0.80%,29,22.70%,1,127,0,0.80%,99.20%,0.00%,30,25,97,25.80% +148021,815,2365,State-funded primary,216,108,108,50.00%,50.00%,7,3.20%,30,13.90%,19,197,0,8.80%,91.20%,0.00%,52,52,200,26.00% +148022,815,3602,State-funded primary,32,15,17,46.90%,53.10%,0,0.00%,6,18.80%,0,32,0,0.00%,100.00%,0.00%,2,2,32,6.30% +148023,933,2169,State-funded primary,86,45,41,52.30%,47.70%,0,0.00%,4,4.70%,2,77,7,2.30%,89.50%,8.10%,34,34,86,39.50% +148024,865,3372,State-funded primary,147,68,79,46.30%,53.70%,3,2.00%,28,19.00%,2,145,0,1.40%,98.60%,0.00%,8,8,125,6.40% +148025,316,3511,State-funded primary,468,250,218,53.40%,46.60%,2,0.40%,93,19.90%,201,265,2,42.90%,56.60%,0.40%,123,136,404,33.70% +148026,358,4005,State-funded secondary,686,269,417,39.20%,60.80%,63,9.20%,61,8.90%,47,639,0,6.90%,93.10%,0.00%,211,223,686,32.50% +148027,855,6052,Independent school,4,0,4,0.00%,100.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148028,813,6008,Independent school,27,4,23,14.80%,85.20%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148029,855,7003,State-funded special school,59,6,53,10.20%,89.80%,59,100.00%,0,0.00%,2,56,1,3.40%,94.90%,1.70%,34,38,59,64.40% +148031,839,6013,Independent school,23,6,17,26.10%,73.90%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148032,937,6028,Independent school,19,4,15,21.10%,78.90%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148035,845,7001,State-funded special school,62,19,43,30.60%,69.40%,62,100.00%,0,0.00%,0,61,1,0.00%,98.40%,1.60%,31,38,62,61.30% +148036,916,4019,State-funded secondary,750,378,372,50.40%,49.60%,11,1.50%,124,16.50%,278,467,5,37.10%,62.30%,0.70%,365,400,750,53.30% +148037,861,6024,Independent school,39,4,35,10.30%,89.70%,39,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148038,908,6010,Independent school,55,2,53,3.60%,96.40%,55,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148039,888,2009,State-funded primary,176,78,98,44.30%,55.70%,7,4.00%,24,13.60%,11,165,0,6.30%,93.80%,0.00%,56,60,176,34.10% +148040,919,2112,State-funded primary,453,221,232,48.80%,51.20%,8,1.80%,76,16.80%,172,280,1,38.00%,61.80%,0.20%,148,152,410,37.10% +148041,893,6040,Independent school,6,1,5,16.70%,83.30%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148043,306,6024,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148046,838,6013,Independent school,7,0,7,0.00%,100.00%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148047,895,6019,Independent school,2,0,2,0.00%,100.00%,2,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148049,351,4003,State-funded secondary,1048,508,540,48.50%,51.50%,41,3.90%,70,6.70%,185,860,3,17.70%,82.10%,0.30%,186,220,1048,21.00% +148050,351,4006,State-funded secondary,1111,539,572,48.50%,51.50%,31,2.80%,126,11.30%,179,929,3,16.10%,83.60%,0.30%,175,195,1111,17.60% +148051,937,6031,Independent school,23,2,21,8.70%,91.30%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148055,845,7004,State-funded special school,26,6,20,23.10%,76.90%,25,96.20%,1,3.80%,0,26,0,0.00%,100.00%,0.00%,10,14,26,53.80% +148056,888,6123,Independent school,4,0,4,0.00%,100.00%,3,75.00%,1,25.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148058,935,6027,Independent school,40,10,30,25.00%,75.00%,40,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148059,381,6025,Independent school,25,9,16,36.00%,64.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148060,916,2095,State-funded primary,66,27,39,40.90%,59.10%,8,12.10%,6,9.10%,2,64,0,3.00%,97.00%,0.00%,15,17,66,25.80% +148061,860,2041,State-funded primary,100,58,42,58.00%,42.00%,3,3.00%,29,29.00%,11,89,0,11.00%,89.00%,0.00%,50,50,84,59.50% +148062,886,6161,Independent school,44,11,33,25.00%,75.00%,44,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148064,333,6017,Independent school,25,4,21,16.00%,84.00%,22,88.00%,3,12.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148068,886,2143,State-funded primary,424,213,211,50.20%,49.80%,9,2.10%,50,11.80%,31,393,0,7.30%,92.70%,0.00%,102,104,379,27.40% +148069,839,6014,Independent school,26,15,11,57.70%,42.30%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148070,359,6005,Independent school,23,6,17,26.10%,73.90%,19,82.60%,4,17.40%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148071,317,6012,Independent school,8,1,7,12.50%,87.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148078,851,2013,State-funded primary,559,258,301,46.20%,53.80%,13,2.30%,41,7.30%,93,465,1,16.60%,83.20%,0.20%,112,123,559,22.00% +148079,331,6005,Independent school,27,18,9,66.70%,33.30%,9,33.30%,16,59.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148081,330,3316,State-funded primary,207,107,100,51.70%,48.30%,3,1.40%,39,18.80%,24,183,0,11.60%,88.40%,0.00%,89,92,207,44.40% +148082,330,3357,State-funded primary,210,98,112,46.70%,53.30%,3,1.40%,32,15.20%,53,157,0,25.20%,74.80%,0.00%,102,105,210,50.00% +148083,330,3359,State-funded primary,353,165,188,46.70%,53.30%,3,0.80%,38,10.80%,170,178,5,48.20%,50.40%,1.40%,172,176,331,53.20% +148084,334,3312,State-funded primary,164,71,93,43.30%,56.70%,6,3.70%,32,19.50%,25,139,0,15.20%,84.80%,0.00%,42,43,153,28.10% +148085,334,3500,State-funded primary,456,234,222,51.30%,48.70%,3,0.70%,58,12.70%,24,432,0,5.30%,94.70%,0.00%,58,59,434,13.60% +148086,334,3501,State-funded primary,232,106,126,45.70%,54.30%,2,0.90%,28,12.10%,15,217,0,6.50%,93.50%,0.00%,35,34,208,16.30% +148087,334,3502,State-funded primary,238,102,136,42.90%,57.10%,1,0.40%,19,8.00%,50,188,0,21.00%,79.00%,0.00%,23,23,217,10.60% +148088,334,3503,State-funded primary,214,96,118,44.90%,55.10%,4,1.90%,32,15.00%,10,204,0,4.70%,95.30%,0.00%,20,19,193,9.80% +148089,334,3504,State-funded primary,338,172,166,50.90%,49.10%,2,0.60%,44,13.00%,21,317,0,6.20%,93.80%,0.00%,38,38,308,12.30% +148090,334,3510,State-funded primary,258,130,128,50.40%,49.60%,4,1.60%,39,15.10%,23,235,0,8.90%,91.10%,0.00%,72,70,207,33.80% +148092,334,3511,State-funded primary,453,238,215,52.50%,47.50%,9,2.00%,85,18.80%,71,382,0,15.70%,84.30%,0.00%,135,135,416,32.50% +148093,334,3516,State-funded primary,215,110,105,51.20%,48.80%,2,0.90%,27,12.60%,11,204,0,5.10%,94.90%,0.00%,114,112,196,57.10% +148094,334,4650,State-funded secondary,1291,652,639,50.50%,49.50%,10,0.80%,175,13.60%,124,1149,18,9.60%,89.00%,1.40%,151,162,1041,15.60% +148095,350,2051,State-funded primary,311,160,151,51.40%,48.60%,9,2.90%,58,18.60%,45,266,0,14.50%,85.50%,0.00%,82,86,297,29.00% +148096,351,2012,State-funded primary,243,122,121,50.20%,49.80%,3,1.20%,21,8.60%,48,195,0,19.80%,80.20%,0.00%,26,26,243,10.70% +148097,351,4026,State-funded secondary,1114,569,545,51.10%,48.90%,49,4.40%,124,11.10%,13,1097,4,1.20%,98.50%,0.40%,140,157,1114,14.10% +148098,357,3301,State-funded primary,228,114,114,50.00%,50.00%,14,6.10%,28,12.30%,178,50,0,78.10%,21.90%,0.00%,106,100,209,47.80% +148100,373,2246,State-funded primary,338,187,151,55.30%,44.70%,5,1.50%,34,10.10%,10,328,0,3.00%,97.00%,0.00%,56,61,338,18.00% +148101,380,3338,State-funded primary,346,166,180,48.00%,52.00%,4,1.20%,76,22.00%,177,169,0,51.20%,48.80%,0.00%,124,125,311,40.20% +148102,380,3349,State-funded primary,142,78,64,54.90%,45.10%,2,1.40%,18,12.70%,78,64,0,54.90%,45.10%,0.00%,55,56,142,39.40% +148104,823,2033,State-funded primary,125,52,73,41.60%,58.40%,1,0.80%,15,12.00%,1,122,2,0.80%,97.60%,1.60%,3,4,125,3.20% +148105,873,2015,State-funded primary,186,90,96,48.40%,51.60%,9,4.80%,22,11.80%,44,140,2,23.70%,75.30%,1.10%,20,21,186,11.30% +148106,908,2748,State-funded primary,180,80,100,44.40%,55.60%,11,6.10%,33,18.30%,6,171,3,3.30%,95.00%,1.70%,95,101,180,56.10% +148107,830,3006,State-funded primary,30,16,14,53.30%,46.70%,0,0.00%,4,13.30%,2,28,0,6.70%,93.30%,0.00%,10,13,30,43.30% +148108,830,3338,State-funded primary,109,46,63,42.20%,57.80%,0,0.00%,16,14.70%,7,102,0,6.40%,93.60%,0.00%,22,25,109,22.90% +148109,840,4139,State-funded secondary,752,386,366,51.30%,48.70%,13,1.70%,187,24.90%,6,746,0,0.80%,99.20%,0.00%,203,215,752,28.60% +148110,881,3302,State-funded primary,112,55,57,49.10%,50.90%,4,3.60%,22,19.60%,14,98,0,12.50%,87.50%,0.00%,16,16,112,14.30% +148111,881,3813,State-funded primary,206,123,83,59.70%,40.30%,4,1.90%,31,15.00%,22,184,0,10.70%,89.30%,0.00%,38,42,206,20.40% +148112,931,6024,Independent school,12,1,11,8.30%,91.70%,8,66.70%,4,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148113,852,2432,State-funded primary,171,74,97,43.30%,56.70%,6,3.50%,27,15.80%,45,125,1,26.30%,73.10%,0.60%,38,38,171,22.20% +148114,885,2173,State-funded primary,380,178,202,46.80%,53.20%,3,0.80%,64,16.80%,21,359,0,5.50%,94.50%,0.00%,63,64,380,16.80% +148115,885,3091,State-funded primary,114,58,56,50.90%,49.10%,1,0.90%,19,16.70%,2,112,0,1.80%,98.20%,0.00%,11,11,114,9.60% +148116,886,2183,State-funded primary,281,127,154,45.20%,54.80%,4,1.40%,36,12.80%,17,264,0,6.00%,94.00%,0.00%,84,85,281,30.20% +148117,887,2433,State-funded primary,430,222,208,51.60%,48.40%,3,0.70%,49,11.40%,45,385,0,10.50%,89.50%,0.00%,182,179,390,45.90% +148118,886,3106,State-funded primary,368,181,187,49.20%,50.80%,18,4.90%,59,16.00%,12,343,13,3.30%,93.20%,3.50%,166,170,347,49.00% +148119,926,2406,State-funded primary,189,92,97,48.70%,51.30%,10,5.30%,49,25.90%,50,139,0,26.50%,73.50%,0.00%,88,89,189,47.10% +148120,815,3153,State-funded primary,183,88,95,48.10%,51.90%,11,6.00%,21,11.50%,9,174,0,4.90%,95.10%,0.00%,5,5,183,2.70% +148121,861,2045,State-funded primary,449,229,220,51.00%,49.00%,5,1.10%,65,14.50%,209,240,0,46.50%,53.50%,0.00%,113,116,406,28.60% +148122,860,2407,State-funded primary,254,132,122,52.00%,48.00%,2,0.80%,29,11.40%,17,237,0,6.70%,93.30%,0.00%,93,95,254,37.40% +148123,936,1100,State-funded AP school,4,1,3,25.00%,75.00%,0,0.00%,4,100.00%,0,4,0,0.00%,100.00%,0.00%,1,1,4,25.00% +148124,936,1107,State-funded AP school,28,11,17,39.30%,60.70%,2,7.10%,26,92.90%,0,28,0,0.00%,100.00%,0.00%,20,22,28,78.60% +148125,937,3503,State-funded primary,222,114,108,51.40%,48.60%,4,1.80%,26,11.70%,4,218,0,1.80%,98.20%,0.00%,26,28,181,15.50% +148127,394,1104,State-funded AP school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,0,0,0,0.00%,0.00%,0.00%,0,0,0,0.00% +148128,873,4028,State-funded secondary,471,239,232,50.70%,49.30%,15,3.20%,40,8.50%,57,413,1,12.10%,87.70%,0.20%,75,77,471,16.30% +148129,936,1127,State-funded AP school,34,14,20,41.20%,58.80%,2,5.90%,32,94.10%,0,34,0,0.00%,100.00%,0.00%,22,23,34,67.60% +148131,861,6026,Independent school,10,0,10,0.00%,100.00%,8,80.00%,2,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148132,357,2017,State-funded primary,215,98,117,45.60%,54.40%,2,0.90%,45,20.90%,129,86,0,60.00%,40.00%,0.00%,97,97,203,47.80% +148133,860,6069,Independent school,5,2,3,40.00%,60.00%,4,80.00%,1,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148134,382,2071,State-funded primary,210,120,90,57.10%,42.90%,3,1.40%,36,17.10%,32,178,0,15.20%,84.80%,0.00%,107,108,195,55.40% +148135,391,4008,State-funded secondary,1630,818,812,50.20%,49.80%,23,1.40%,145,8.90%,223,1407,0,13.70%,86.30%,0.00%,727,737,1487,49.60% +148136,895,2008,State-funded primary,222,113,109,50.90%,49.10%,16,7.20%,32,14.40%,15,207,0,6.80%,93.20%,0.00%,54,56,222,25.20% +148137,909,2025,State-funded primary,121,61,60,50.40%,49.60%,7,5.80%,16,13.20%,15,106,0,12.40%,87.60%,0.00%,83,87,121,71.90% +148138,840,2024,State-funded primary,228,107,121,46.90%,53.10%,5,2.20%,49,21.50%,1,227,0,0.40%,99.60%,0.00%,98,89,181,49.20% +148139,881,2187,State-funded primary,195,91,104,46.70%,53.30%,6,3.10%,20,10.30%,2,193,0,1.00%,99.00%,0.00%,46,46,195,23.60% +148140,885,2039,State-funded primary,152,67,85,44.10%,55.90%,1,0.70%,41,27.00%,23,129,0,15.10%,84.90%,0.00%,46,48,140,34.30% +148141,938,2057,State-funded primary,346,162,184,46.80%,53.20%,6,1.70%,67,19.40%,24,322,0,6.90%,93.10%,0.00%,57,60,346,17.30% +148143,381,2035,State-funded primary,103,49,54,47.60%,52.40%,1,1.00%,18,17.50%,0,103,0,0.00%,100.00%,0.00%,48,51,103,49.50% +148144,886,1132,State-funded AP school,7,1,6,14.30%,85.70%,2,28.60%,5,71.40%,0,7,0,0.00%,100.00%,0.00%,1,6,7,85.70% +148145,865,7003,State-funded special school,425,146,279,34.40%,65.60%,425,100.00%,0,0.00%,33,391,1,7.80%,92.00%,0.20%,166,166,407,40.80% +148149,344,6009,Independent school,13,3,10,23.10%,76.90%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148150,313,2040,State-funded primary,469,239,230,51.00%,49.00%,4,0.90%,112,23.90%,354,115,0,75.50%,24.50%,0.00%,104,113,399,28.30% +148151,926,2230,State-funded primary,80,45,35,56.30%,43.80%,2,2.50%,21,26.30%,8,72,0,10.00%,90.00%,0.00%,6,7,80,8.80% +148152,926,2231,State-funded primary,84,39,45,46.40%,53.60%,4,4.80%,17,20.20%,7,77,0,8.30%,91.70%,0.00%,28,29,84,34.50% +148153,307,6011,Independent school,14,2,12,14.30%,85.70%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148155,302,6019,Independent school,3,1,2,33.30%,66.70%,3,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148156,885,6058,Independent school,12,9,3,75.00%,25.00%,11,91.70%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148157,330,6136,Independent school,82,82,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148158,888,2010,State-funded primary,103,34,69,33.00%,67.00%,11,10.70%,25,24.30%,11,92,0,10.70%,89.30%,0.00%,45,46,103,44.70% +148159,380,2110,State-funded primary,430,204,226,47.40%,52.60%,16,3.70%,46,10.70%,88,342,0,20.50%,79.50%,0.00%,69,71,417,17.00% +148160,802,2276,State-funded primary,316,159,157,50.30%,49.70%,7,2.20%,43,13.60%,19,297,0,6.00%,94.00%,0.00%,54,54,316,17.10% +148161,838,2020,State-funded primary,359,157,202,43.70%,56.30%,10,2.80%,52,14.50%,13,346,0,3.60%,96.40%,0.00%,89,89,359,24.80% +148162,838,2045,State-funded primary,315,132,183,41.90%,58.10%,21,6.70%,39,12.40%,3,312,0,1.00%,99.00%,0.00%,30,30,315,9.50% +148163,838,4184,State-funded secondary,595,321,274,53.90%,46.10%,21,3.50%,73,12.30%,18,577,0,3.00%,97.00%,0.00%,119,125,595,21.00% +148164,811,3332,State-funded primary,107,55,52,51.40%,48.60%,5,4.70%,14,13.10%,47,60,0,43.90%,56.10%,0.00%,31,31,107,29.00% +148165,856,7215,State-funded special school,125,9,116,7.20%,92.80%,122,97.60%,3,2.40%,3,122,0,2.40%,97.60%,0.00%,100,108,125,86.40% +148166,815,3373,State-funded primary,163,88,75,54.00%,46.00%,4,2.50%,18,11.00%,26,137,0,16.00%,84.00%,0.00%,23,23,163,14.10% +148167,815,4610,State-funded secondary,342,164,178,48.00%,52.00%,24,7.00%,77,22.50%,41,301,0,12.00%,88.00%,0.00%,71,85,342,24.90% +148168,891,2571,State-funded primary,429,203,226,47.30%,52.70%,4,0.90%,24,5.60%,38,391,0,8.90%,91.10%,0.00%,18,20,429,4.70% +148169,936,2933,State-funded primary,256,140,116,54.70%,45.30%,5,2.00%,25,9.80%,100,153,3,39.10%,59.80%,1.20%,57,57,212,26.90% +148170,938,3007,State-funded primary,45,21,24,46.70%,53.30%,3,6.70%,20,44.40%,1,44,0,2.20%,97.80%,0.00%,13,13,45,28.90% +148171,856,7220,State-funded special school,115,20,95,17.40%,82.60%,115,100.00%,0,0.00%,3,112,0,2.60%,97.40%,0.00%,69,81,115,70.40% +148172,883,2078,State-funded primary,448,218,230,48.70%,51.30%,28,6.30%,30,6.70%,101,347,0,22.50%,77.50%,0.00%,35,36,412,8.70% +148173,865,3462,State-funded primary,412,194,218,47.10%,52.90%,12,2.90%,71,17.20%,22,390,0,5.30%,94.70%,0.00%,97,102,412,24.80% +148175,382,6020,Independent school,23,6,17,26.10%,73.90%,2,8.70%,2,8.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148176,865,6053,Independent school,14,8,6,57.10%,42.90%,10,71.40%,4,28.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148177,341,2042,State-funded primary,303,145,158,47.90%,52.10%,3,1.00%,29,9.60%,5,296,2,1.70%,97.70%,0.70%,17,21,303,6.90% +148178,803,2018,State-funded primary,402,215,187,53.50%,46.50%,14,3.50%,52,12.90%,17,380,5,4.20%,94.50%,1.20%,35,36,402,9.00% +148179,845,4009,State-funded secondary,636,312,324,49.10%,50.90%,9,1.40%,114,17.90%,50,553,33,7.90%,86.90%,5.20%,258,278,636,43.70% +148180,878,6085,Independent school,5,0,5,0.00%,100.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148181,371,6014,Independent school,21,2,19,9.50%,90.50%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148182,332,2014,State-funded primary,336,167,169,49.70%,50.30%,7,2.10%,41,12.20%,21,315,0,6.30%,93.80%,0.00%,97,97,311,31.20% +148183,885,2040,State-funded primary,620,304,316,49.00%,51.00%,15,2.40%,86,13.90%,67,553,0,10.80%,89.20%,0.00%,96,92,566,16.30% +148184,938,2059,State-funded primary,77,42,35,54.50%,45.50%,3,3.90%,15,19.50%,10,67,0,13.00%,87.00%,0.00%,26,26,77,33.80% +148185,925,4052,State-funded secondary,768,396,372,51.60%,48.40%,15,2.00%,98,12.80%,274,488,6,35.70%,63.50%,0.80%,206,233,768,30.30% +148186,808,4010,State-funded secondary,454,223,231,49.10%,50.90%,25,5.50%,98,21.60%,41,413,0,9.00%,91.00%,0.00%,281,303,454,66.70% +148187,330,4039,State-funded secondary,737,329,408,44.60%,55.40%,3,0.40%,88,11.90%,374,357,6,50.70%,48.40%,0.80%,396,477,737,64.70% +148188,891,6045,Independent school,1,1,0,100.00%,0.00%,0,0.00%,1,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148189,925,6058,Independent school,9,0,9,0.00%,100.00%,8,88.90%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148190,313,6008,Independent school,44,16,28,36.40%,63.60%,0,0.00%,1,2.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148192,893,6043,Independent school,6,3,3,50.00%,50.00%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148193,826,2030,State-funded primary,284,158,126,55.60%,44.40%,6,2.10%,55,19.40%,75,209,0,26.40%,73.60%,0.00%,152,151,260,58.10% +148199,341,6019,Independent school,30,3,27,10.00%,90.00%,30,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148201,380,2093,State-funded primary,418,208,210,49.80%,50.20%,21,5.00%,29,6.90%,150,267,1,35.90%,63.90%,0.20%,107,107,383,27.90% +148202,381,2048,State-funded primary,147,76,71,51.70%,48.30%,6,4.10%,26,17.70%,3,144,0,2.00%,98.00%,0.00%,33,34,147,23.10% +148203,896,3133,State-funded primary,18,10,8,55.60%,44.40%,2,11.10%,7,38.90%,0,18,0,0.00%,100.00%,0.00%,1,1,15,6.70% +148204,840,3344,State-funded primary,95,52,43,54.70%,45.30%,2,2.10%,16,16.80%,2,93,0,2.10%,97.90%,0.00%,17,19,95,20.00% +148205,840,3346,State-funded primary,247,120,127,48.60%,51.40%,5,2.00%,15,6.10%,5,242,0,2.00%,98.00%,0.00%,13,12,210,5.70% +148206,840,3483,State-funded primary,81,41,40,50.60%,49.40%,0,0.00%,26,32.10%,0,81,0,0.00%,100.00%,0.00%,14,15,81,18.50% +148207,840,3486,State-funded primary,208,113,95,54.30%,45.70%,3,1.40%,12,5.80%,25,183,0,12.00%,88.00%,0.00%,4,5,208,2.40% +148208,840,3488,State-funded primary,92,50,42,54.30%,45.70%,5,5.40%,21,22.80%,4,88,0,4.30%,95.70%,0.00%,28,28,92,30.40% +148209,883,2722,State-funded primary,446,209,237,46.90%,53.10%,15,3.40%,65,14.60%,165,281,0,37.00%,63.00%,0.00%,81,91,408,22.30% +148210,881,3218,State-funded primary,68,33,35,48.50%,51.50%,0,0.00%,13,19.10%,5,63,0,7.40%,92.60%,0.00%,11,11,68,16.20% +148211,916,3018,State-funded primary,72,31,41,43.10%,56.90%,1,1.40%,15,20.80%,2,69,1,2.80%,95.80%,1.40%,15,15,72,20.80% +148212,916,3048,State-funded primary,209,99,110,47.40%,52.60%,8,3.80%,38,18.20%,8,201,0,3.80%,96.20%,0.00%,64,65,209,31.10% +148213,850,2006,State-funded primary,161,73,88,45.30%,54.70%,6,3.70%,12,7.50%,3,158,0,1.90%,98.10%,0.00%,12,12,161,7.50% +148214,850,2202,State-funded primary,207,102,105,49.30%,50.70%,5,2.40%,18,8.70%,4,203,0,1.90%,98.10%,0.00%,15,15,207,7.20% +148215,850,2288,State-funded primary,428,210,218,49.10%,50.90%,6,1.40%,66,15.40%,48,380,0,11.20%,88.80%,0.00%,70,84,400,21.00% +148216,850,2312,State-funded primary,435,216,219,49.70%,50.30%,7,1.60%,30,6.90%,16,419,0,3.70%,96.30%,0.00%,26,27,435,6.20% +148217,886,5202,State-funded primary,457,218,239,47.70%,52.30%,9,2.00%,65,14.20%,243,211,3,53.20%,46.20%,0.70%,122,116,417,27.80% +148218,891,2853,State-funded primary,98,40,58,40.80%,59.20%,1,1.00%,13,13.30%,4,94,0,4.10%,95.90%,0.00%,10,11,98,11.20% +148219,861,2075,State-funded primary,413,219,194,53.00%,47.00%,3,0.70%,68,16.50%,70,342,1,16.90%,82.80%,0.20%,197,195,366,53.30% +148220,861,4046,State-funded secondary,1024,466,558,45.50%,54.50%,23,2.20%,102,10.00%,258,765,1,25.20%,74.70%,0.10%,383,440,1024,43.00% +148221,938,4501,State-funded secondary,2206,1043,1163,47.30%,52.70%,41,1.90%,350,15.90%,68,2117,21,3.10%,96.00%,1.00%,196,213,1835,11.60% +148223,306,3418,State-funded primary,868,444,424,51.20%,48.80%,15,1.70%,79,9.10%,251,616,1,28.90%,71.00%,0.10%,110,111,820,13.50% +148224,316,4014,State-funded secondary,885,480,405,54.20%,45.80%,42,4.70%,98,11.10%,629,254,2,71.10%,28.70%,0.20%,404,453,885,51.20% +148225,330,7004,State-funded special school,306,104,202,34.00%,66.00%,306,100.00%,0,0.00%,220,84,2,71.90%,27.50%,0.70%,172,137,237,57.80% +148226,341,4011,State-funded secondary,1478,711,767,48.10%,51.90%,39,2.60%,71,4.80%,214,1263,1,14.50%,85.50%,0.10%,766,760,1320,57.60% +148227,823,2011,State-funded primary,294,146,148,49.70%,50.30%,2,0.70%,45,15.30%,93,200,1,31.60%,68.00%,0.30%,70,69,256,27.00% +148228,825,2046,State-funded primary,174,80,94,46.00%,54.00%,3,1.70%,20,11.50%,9,165,0,5.20%,94.80%,0.00%,15,19,174,10.90% +148229,826,2031,State-funded primary,208,108,100,51.90%,48.10%,2,1.00%,21,10.10%,32,176,0,15.40%,84.60%,0.00%,52,53,208,25.50% +148230,916,2104,State-funded primary,147,64,83,43.50%,56.50%,7,4.80%,38,25.90%,3,144,0,2.00%,98.00%,0.00%,55,55,147,37.40% +148231,888,2011,State-funded primary,123,55,68,44.70%,55.30%,6,4.90%,30,24.40%,26,97,0,21.10%,78.90%,0.00%,68,72,123,58.50% +148232,926,2238,State-funded primary,102,50,52,49.00%,51.00%,1,1.00%,13,12.70%,2,100,0,2.00%,98.00%,0.00%,22,22,102,21.60% +148233,815,2021,State-funded primary,50,28,22,56.00%,44.00%,0,0.00%,7,14.00%,8,42,0,16.00%,84.00%,0.00%,0,2,50,4.00% +148234,823,3015,State-funded primary,78,41,37,52.60%,47.40%,1,1.30%,2,2.60%,4,74,0,5.10%,94.90%,0.00%,0,0,57,0.00% +148235,860,1112,State-funded AP school,29,11,18,37.90%,62.10%,0,0.00%,12,41.40%,0,29,0,0.00%,100.00%,0.00%,11,14,29,48.30% +148236,873,7011,State-funded special school,103,0,103,0.00%,100.00%,103,100.00%,0,0.00%,3,98,2,2.90%,95.10%,1.90%,65,71,103,68.90% +148237,926,2242,State-funded primary,74,44,30,59.50%,40.50%,2,2.70%,11,14.90%,1,73,0,1.40%,98.60%,0.00%,9,11,74,14.90% +148239,888,6125,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148240,317,7001,State-funded special school,42,13,29,31.00%,69.00%,37,88.10%,5,11.90%,18,24,0,42.90%,57.10%,0.00%,13,13,40,32.50% +148241,384,6011,Independent school,18,4,14,22.20%,77.80%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148243,937,6033,Independent school,26,10,16,38.50%,61.50%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148244,301,6008,Independent school,23,8,15,34.80%,65.20%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148245,855,6054,Independent school,9,3,6,33.30%,66.70%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148247,931,2037,State-funded primary,306,138,168,45.10%,54.90%,9,2.90%,79,25.80%,102,177,27,33.30%,57.80%,8.80%,91,91,278,32.70% +148248,860,6084,Independent school,20,2,18,10.00%,90.00%,12,60.00%,8,40.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148250,304,4007,State-funded AP school,17,1,16,5.90%,94.10%,4,23.50%,0,0.00%,1,16,0,5.90%,94.10%,0.00%,9,13,17,76.50% +148252,336,6007,Independent school,20,2,18,10.00%,90.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148253,830,2180,State-funded primary,62,33,29,53.20%,46.80%,2,3.20%,6,9.70%,0,62,0,0.00%,100.00%,0.00%,6,6,62,9.70% +148254,888,4028,State-funded secondary,1230,572,658,46.50%,53.50%,17,1.40%,116,9.40%,36,1194,0,2.90%,97.10%,0.00%,251,259,1150,22.50% +148255,383,6014,Independent school,28,9,19,32.10%,67.90%,2,7.10%,5,17.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148256,380,3353,State-funded primary,193,93,100,48.20%,51.80%,10,5.20%,30,15.50%,79,114,0,40.90%,59.10%,0.00%,73,76,193,39.40% +148257,940,3051,State-funded primary,89,38,51,42.70%,57.30%,2,2.20%,13,14.60%,5,84,0,5.60%,94.40%,0.00%,8,8,89,9.00% +148258,380,3335,State-funded primary,406,201,205,49.50%,50.50%,8,2.00%,84,20.70%,133,273,0,32.80%,67.20%,0.00%,144,147,334,44.00% +148259,840,3343,State-funded primary,189,91,98,48.10%,51.90%,2,1.10%,19,10.10%,27,162,0,14.30%,85.70%,0.00%,24,24,189,12.70% +148260,929,4654,State-funded secondary,238,121,117,50.80%,49.20%,8,3.40%,9,3.80%,3,235,0,1.30%,98.70%,0.00%,55,59,238,24.80% +148261,929,3840,State-funded primary,109,40,69,36.70%,63.30%,5,4.60%,6,5.50%,4,105,0,3.70%,96.30%,0.00%,21,23,109,21.10% +148262,840,3407,State-funded primary,159,71,88,44.70%,55.30%,1,0.60%,16,10.10%,4,155,0,2.50%,97.50%,0.00%,20,21,159,13.20% +148266,330,3360,State-funded primary,209,113,96,54.10%,45.90%,0,0.00%,20,9.60%,19,189,1,9.10%,90.40%,0.50%,56,63,209,30.10% +148267,333,4111,State-funded secondary,989,460,529,46.50%,53.50%,11,1.10%,111,11.20%,213,776,0,21.50%,78.50%,0.00%,253,318,989,32.20% +148268,380,2048,State-funded primary,453,234,219,51.70%,48.30%,7,1.50%,44,9.70%,335,118,0,74.00%,26.00%,0.00%,117,113,411,27.50% +148269,391,3472,State-funded primary,239,125,114,52.30%,47.70%,3,1.30%,11,4.60%,49,190,0,20.50%,79.50%,0.00%,21,18,210,8.60% +148270,391,3476,State-funded primary,193,86,107,44.60%,55.40%,2,1.00%,12,6.20%,41,152,0,21.20%,78.80%,0.00%,70,70,193,36.30% +148271,391,3778,State-funded primary,207,100,107,48.30%,51.70%,4,1.90%,21,10.10%,99,108,0,47.80%,52.20%,0.00%,57,57,189,30.20% +148272,391,3792,State-funded primary,232,113,119,48.70%,51.30%,6,2.60%,30,12.90%,98,123,11,42.20%,53.00%,4.70%,138,135,210,64.30% +148273,391,3799,State-funded primary,233,120,113,51.50%,48.50%,1,0.40%,27,11.60%,125,108,0,53.60%,46.40%,0.00%,109,104,207,50.20% +148274,393,3306,State-funded primary,243,121,122,49.80%,50.20%,6,2.50%,36,14.80%,10,233,0,4.10%,95.90%,0.00%,44,46,243,18.90% +148275,393,3307,State-funded primary,233,115,118,49.40%,50.60%,2,0.90%,20,8.60%,7,226,0,3.00%,97.00%,0.00%,16,16,180,8.90% +148276,393,3314,State-funded primary,231,115,116,49.80%,50.20%,5,2.20%,18,7.80%,7,224,0,3.00%,97.00%,0.00%,45,46,202,22.80% +148277,394,3319,State-funded primary,130,65,65,50.00%,50.00%,3,2.30%,34,26.20%,9,121,0,6.90%,93.10%,0.00%,20,20,130,15.40% +148278,895,2720,State-funded primary,270,125,145,46.30%,53.70%,11,4.10%,61,22.60%,30,240,0,11.10%,88.90%,0.00%,87,86,224,38.40% +148279,805,3321,State-funded primary,409,196,213,47.90%,52.10%,4,1.00%,33,8.10%,27,382,0,6.60%,93.40%,0.00%,93,93,372,25.00% +148280,805,3328,State-funded primary,155,89,66,57.40%,42.60%,2,1.30%,23,14.80%,6,149,0,3.90%,96.10%,0.00%,58,59,134,44.00% +148281,840,3465,State-funded primary,79,34,45,43.00%,57.00%,2,2.50%,8,10.10%,1,78,0,1.30%,98.70%,0.00%,17,16,74,21.60% +148282,929,3711,State-funded primary,284,160,124,56.30%,43.70%,3,1.10%,34,12.00%,22,262,0,7.70%,92.30%,0.00%,100,102,258,39.50% +148283,929,3732,State-funded primary,228,115,113,50.40%,49.60%,5,2.20%,16,7.00%,7,221,0,3.10%,96.90%,0.00%,37,37,201,18.40% +148284,891,2678,State-funded primary,373,208,165,55.80%,44.20%,4,1.10%,49,13.10%,31,342,0,8.30%,91.70%,0.00%,109,106,345,30.70% +148285,860,2277,State-funded primary,245,115,130,46.90%,53.10%,0,0.00%,19,7.80%,93,152,0,38.00%,62.00%,0.00%,9,14,229,6.10% +148286,938,2012,State-funded primary,112,50,62,44.60%,55.40%,2,1.80%,12,10.70%,19,93,0,17.00%,83.00%,0.00%,23,23,92,25.00% +148287,384,2199,State-funded primary,248,122,126,49.20%,50.80%,9,3.60%,27,10.90%,7,240,1,2.80%,96.80%,0.40%,43,43,209,20.60% +148288,380,2200,State-funded primary,194,97,97,50.00%,50.00%,2,1.00%,38,19.60%,11,183,0,5.70%,94.30%,0.00%,86,89,194,45.90% +148289,301,3506,State-funded primary,228,102,126,44.70%,55.30%,3,1.30%,26,11.40%,114,114,0,50.00%,50.00%,0.00%,42,45,205,22.00% +148292,344,2210,State-funded primary,251,116,135,46.20%,53.80%,6,2.40%,49,19.50%,9,242,0,3.60%,96.40%,0.00%,59,59,251,23.50% +148293,382,2130,State-funded primary,377,182,195,48.30%,51.70%,15,4.00%,31,8.20%,16,361,0,4.20%,95.80%,0.00%,49,50,347,14.40% +148294,383,4752,State-funded secondary,883,423,460,47.90%,52.10%,26,2.90%,142,16.10%,160,720,3,18.10%,81.50%,0.30%,267,310,883,35.10% +148295,803,4502,State-funded secondary,736,355,381,48.20%,51.80%,25,3.40%,155,21.10%,26,703,7,3.50%,95.50%,1.00%,114,118,666,17.70% +148296,801,7025,State-funded special school,60,9,51,15.00%,85.00%,60,100.00%,0,0.00%,0,60,0,0.00%,100.00%,0.00%,43,44,60,73.30% +148297,821,2229,State-funded primary,343,160,183,46.60%,53.40%,3,0.90%,70,20.40%,176,167,0,51.30%,48.70%,0.00%,123,130,343,37.90% +148298,807,2366,State-funded primary,378,179,199,47.40%,52.60%,10,2.60%,41,10.80%,12,365,1,3.20%,96.60%,0.30%,74,74,339,21.80% +148299,830,4174,State-funded secondary,1303,658,645,50.50%,49.50%,23,1.80%,139,10.70%,37,1249,17,2.80%,95.90%,1.30%,258,256,1094,23.40% +148300,838,3017,State-funded primary,117,56,61,47.90%,52.10%,2,1.70%,2,1.70%,1,116,0,0.90%,99.10%,0.00%,5,5,117,4.30% +148301,838,3317,State-funded primary,80,40,40,50.00%,50.00%,1,1.30%,13,16.30%,1,79,0,1.30%,98.80%,0.00%,7,7,70,10.00% +148302,838,3376,State-funded primary,73,42,31,57.50%,42.50%,0,0.00%,9,12.30%,1,72,0,1.40%,98.60%,0.00%,13,11,63,17.50% +148303,840,3406,State-funded primary,92,43,49,46.70%,53.30%,1,1.10%,13,14.10%,2,90,0,2.20%,97.80%,0.00%,12,12,92,13.00% +148304,840,4693,State-funded secondary,918,399,519,43.50%,56.50%,16,1.70%,132,14.40%,39,879,0,4.20%,95.80%,0.00%,295,305,849,35.90% +148305,881,2250,State-funded primary,190,88,102,46.30%,53.70%,3,1.60%,39,20.50%,9,180,1,4.70%,94.70%,0.50%,47,48,190,25.30% +148306,881,2370,State-funded primary,187,93,94,49.70%,50.30%,5,2.70%,26,13.90%,4,183,0,2.10%,97.90%,0.00%,47,47,187,25.10% +148307,813,3076,State-funded primary,136,72,64,52.90%,47.10%,0,0.00%,9,6.60%,5,131,0,3.70%,96.30%,0.00%,4,5,136,3.70% +148308,886,3173,State-funded primary,213,99,114,46.50%,53.50%,1,0.50%,21,9.90%,4,191,18,1.90%,89.70%,8.50%,30,31,213,14.60% +148309,815,2314,State-funded primary,155,70,85,45.20%,54.80%,5,3.20%,10,6.50%,2,153,0,1.30%,98.70%,0.00%,29,30,155,19.40% +148310,940,2128,State-funded primary,183,89,94,48.60%,51.40%,2,1.10%,21,11.50%,49,132,2,26.80%,72.10%,1.10%,39,41,134,30.60% +148312,940,3339,State-funded primary,90,48,42,53.30%,46.70%,2,2.20%,8,8.90%,4,85,1,4.40%,94.40%,1.10%,8,9,90,10.00% +148313,891,2274,State-funded primary,385,184,201,47.80%,52.20%,5,1.30%,13,3.40%,140,240,5,36.40%,62.30%,1.30%,105,108,375,28.80% +148314,894,2038,State-funded primary,122,55,67,45.10%,54.90%,1,0.80%,19,15.60%,5,116,1,4.10%,95.10%,0.80%,9,9,122,7.40% +148315,933,2110,State-funded primary,237,119,118,50.20%,49.80%,5,2.10%,15,6.30%,10,222,5,4.20%,93.70%,2.10%,15,15,208,7.20% +148316,860,2276,State-funded primary,203,104,99,51.20%,48.80%,2,1.00%,27,13.30%,8,195,0,3.90%,96.10%,0.00%,14,14,203,6.90% +148318,860,3483,State-funded primary,201,106,95,52.70%,47.30%,4,2.00%,7,3.50%,5,196,0,2.50%,97.50%,0.00%,31,33,201,16.40% +148319,937,3301,State-funded primary,200,104,96,52.00%,48.00%,3,1.50%,47,23.50%,18,182,0,9.00%,91.00%,0.00%,72,72,173,41.60% +148321,866,2004,State-funded primary,426,232,194,54.50%,45.50%,4,0.90%,60,14.10%,90,336,0,21.10%,78.90%,0.00%,93,107,361,29.60% +148322,801,7001,State-funded special school,76,11,65,14.50%,85.50%,75,98.70%,1,1.30%,1,74,1,1.30%,97.40%,1.30%,60,63,76,82.90% +148323,838,2000,State-funded primary,135,73,62,54.10%,45.90%,0,0.00%,5,3.70%,1,134,0,0.70%,99.30%,0.00%,14,14,135,10.40% +148324,936,6048,Independent school,26,15,11,57.70%,42.30%,0,0.00%,8,30.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148325,351,2017,State-funded primary,82,40,42,48.80%,51.20%,5,6.10%,17,20.70%,0,82,0,0.00%,100.00%,0.00%,7,7,78,9.00% +148326,352,2047,State-funded primary,231,126,105,54.50%,45.50%,1,0.40%,32,13.90%,148,83,0,64.10%,35.90%,0.00%,81,81,207,39.10% +148327,356,4009,State-funded secondary,1109,546,563,49.20%,50.80%,30,2.70%,197,17.80%,55,1053,1,5.00%,95.00%,0.10%,366,398,1109,35.90% +148328,838,2013,State-funded primary,100,47,53,47.00%,53.00%,6,6.00%,13,13.00%,0,100,0,0.00%,100.00%,0.00%,19,21,100,21.00% +148329,885,2042,State-funded primary,442,205,237,46.40%,53.60%,7,1.60%,76,17.20%,18,423,1,4.10%,95.70%,0.20%,103,106,442,24.00% +148330,815,2022,State-funded primary,95,50,45,52.60%,47.40%,2,2.10%,7,7.40%,0,95,0,0.00%,100.00%,0.00%,7,7,95,7.40% +148332,815,7003,State-funded special school,71,8,63,11.30%,88.70%,71,100.00%,0,0.00%,0,71,0,0.00%,100.00%,0.00%,43,45,71,63.40% +148333,333,2025,State-funded primary,418,209,209,50.00%,50.00%,3,0.70%,43,10.30%,73,345,0,17.50%,82.50%,0.00%,54,59,418,14.10% +148334,822,2011,State-funded primary,75,27,48,36.00%,64.00%,10,13.30%,11,14.70%,15,60,0,20.00%,80.00%,0.00%,15,15,67,22.40% +148335,807,4015,State-funded secondary,514,260,254,50.60%,49.40%,20,3.90%,112,21.80%,6,507,1,1.20%,98.60%,0.20%,125,137,514,26.70% +148336,909,2030,State-funded primary,31,20,11,64.50%,35.50%,1,3.20%,2,6.50%,0,31,0,0.00%,100.00%,0.00%,2,2,22,9.10% +148337,830,4014,State-funded secondary,784,384,400,49.00%,51.00%,22,2.80%,113,14.40%,29,749,6,3.70%,95.50%,0.80%,225,249,784,31.80% +148338,885,4018,State-funded secondary,883,437,446,49.50%,50.50%,11,1.20%,53,6.00%,218,665,0,24.70%,75.30%,0.00%,206,202,771,26.20% +148339,940,2246,State-funded primary,378,169,209,44.70%,55.30%,6,1.60%,45,11.90%,156,221,1,41.30%,58.50%,0.30%,79,82,378,21.70% +148340,333,2026,State-funded primary,436,215,221,49.30%,50.70%,7,1.60%,43,9.90%,207,229,0,47.50%,52.50%,0.00%,161,166,404,41.10% +148341,807,6003,Independent school,35,12,23,34.30%,65.70%,1,2.90%,31,88.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148342,908,6011,Independent school,9,0,9,0.00%,100.00%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148343,850,7005,State-funded special school,100,31,69,31.00%,69.00%,96,96.00%,4,4.00%,2,97,1,2.00%,97.00%,1.00%,16,25,100,25.00% +148346,926,6030,Independent school,3,1,2,33.30%,66.70%,3,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148347,885,5950,State-funded special school,184,60,124,32.60%,67.40%,182,98.90%,2,1.10%,17,167,0,9.20%,90.80%,0.00%,70,59,160,36.90% +148348,885,1115,State-funded AP school,38,10,28,26.30%,73.70%,0,0.00%,38,100.00%,2,36,0,5.30%,94.70%,0.00%,26,28,38,73.70% +148349,872,7001,State-funded special school,49,6,43,12.20%,87.80%,49,100.00%,0,0.00%,1,48,0,2.00%,98.00%,0.00%,27,29,49,59.20% +148350,319,2118,State-funded primary,360,171,189,47.50%,52.50%,8,2.20%,56,15.60%,107,252,1,29.70%,70.00%,0.30%,105,106,329,32.20% +148352,306,2119,State-funded primary,406,191,215,47.00%,53.00%,7,1.70%,45,11.10%,63,343,0,15.50%,84.50%,0.00%,110,134,382,35.10% +148353,931,4018,State-funded secondary,584,283,301,48.50%,51.50%,16,2.70%,92,15.80%,53,525,6,9.10%,89.90%,1.00%,82,102,552,18.50% +148354,931,4019,State-funded secondary,1154,584,570,50.60%,49.40%,33,2.90%,293,25.40%,302,848,4,26.20%,73.50%,0.30%,434,489,1028,47.60% +148356,925,6059,Independent school,38,13,25,34.20%,65.80%,38,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148357,839,2010,State-funded primary,536,258,278,48.10%,51.90%,12,2.20%,45,8.40%,60,474,2,11.20%,88.40%,0.40%,62,63,536,11.80% +148358,308,6015,Independent school,35,5,30,14.30%,85.70%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148359,333,6018,Independent school,5,0,5,0.00%,100.00%,0,0.00%,4,80.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148360,926,6031,Independent school,54,17,37,31.50%,68.50%,54,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148361,370,2059,State-funded primary,288,146,142,50.70%,49.30%,5,1.70%,79,27.40%,27,260,1,9.40%,90.30%,0.30%,159,149,262,56.90% +148362,937,4752,State-funded secondary,561,287,274,51.20%,48.80%,38,6.80%,83,14.80%,126,415,20,22.50%,74.00%,3.60%,173,175,502,34.90% +148363,919,1110,State-funded AP school,39,22,17,56.40%,43.60%,39,100.00%,0,0.00%,1,38,0,2.60%,97.40%,0.00%,7,6,33,18.20% +148364,335,2234,State-funded primary,704,374,330,53.10%,46.90%,8,1.10%,58,8.20%,109,588,7,15.50%,83.50%,1.00%,47,52,636,8.20% +148365,342,3205,State-funded primary,263,125,138,47.50%,52.50%,3,1.10%,39,14.80%,6,255,2,2.30%,97.00%,0.80%,30,34,241,14.10% +148366,805,3323,State-funded primary,126,68,58,54.00%,46.00%,1,0.80%,16,12.70%,26,100,0,20.60%,79.40%,0.00%,58,61,113,54.00% +148367,805,3324,State-funded primary,323,157,166,48.60%,51.40%,0,0.00%,34,10.50%,17,306,0,5.30%,94.70%,0.00%,67,71,286,24.80% +148368,831,3535,State-funded primary,282,145,137,51.40%,48.60%,10,3.50%,51,18.10%,218,63,1,77.30%,22.30%,0.40%,172,173,282,61.30% +148369,879,4155,State-funded secondary,826,778,48,94.20%,5.80%,3,0.40%,9,1.10%,67,758,1,8.10%,91.80%,0.10%,69,56,580,9.70% +148370,886,2327,State-funded primary,63,26,37,41.30%,58.70%,0,0.00%,16,25.40%,2,61,0,3.20%,96.80%,0.00%,13,14,63,22.20% +148371,925,2066,State-funded primary,188,87,101,46.30%,53.70%,18,9.60%,32,17.00%,7,179,2,3.70%,95.20%,1.10%,79,81,168,48.20% +148372,925,3091,State-funded primary,405,195,210,48.10%,51.90%,7,1.70%,42,10.40%,50,355,0,12.30%,87.70%,0.00%,81,86,405,21.20% +148373,925,5211,State-funded primary,414,195,219,47.10%,52.90%,14,3.40%,59,14.30%,146,268,0,35.30%,64.70%,0.00%,86,89,414,21.50% +148374,815,2064,State-funded primary,209,91,118,43.50%,56.50%,9,4.30%,31,14.80%,12,197,0,5.70%,94.30%,0.00%,48,50,188,26.60% +148375,815,2221,State-funded primary,107,51,56,47.70%,52.30%,1,0.90%,4,3.70%,0,107,0,0.00%,100.00%,0.00%,3,3,62,4.80% +148376,815,2236,State-funded primary,169,83,86,49.10%,50.90%,4,2.40%,22,13.00%,6,163,0,3.60%,96.40%,0.00%,19,19,149,12.80% +148377,815,4022,State-funded secondary,737,367,370,49.80%,50.20%,22,3.00%,43,5.80%,24,709,4,3.30%,96.20%,0.50%,107,118,737,16.00% +148378,933,7006,State-funded special school,76,0,76,0.00%,100.00%,76,100.00%,0,0.00%,1,75,0,1.30%,98.70%,0.00%,50,55,76,72.40% +148379,871,3366,State-funded primary,490,228,262,46.50%,53.50%,8,1.60%,31,6.30%,476,11,3,97.10%,2.20%,0.60%,47,47,451,10.40% +148380,805,3322,State-funded primary,249,111,138,44.60%,55.40%,2,0.80%,56,22.50%,20,229,0,8.00%,92.00%,0.00%,59,59,226,26.10% +148381,815,3377,State-funded primary,284,140,144,49.30%,50.70%,4,1.40%,41,14.40%,127,157,0,44.70%,55.30%,0.00%,26,27,284,9.50% +148382,891,3297,State-funded primary,464,233,231,50.20%,49.80%,1,0.20%,34,7.30%,44,420,0,9.50%,90.50%,0.00%,86,86,420,20.50% +148383,891,2002,State-funded primary,469,228,241,48.60%,51.40%,2,0.40%,51,10.90%,76,393,0,16.20%,83.80%,0.00%,150,159,419,37.90% +148384,831,2026,State-funded primary,463,200,263,43.20%,56.80%,59,12.70%,112,24.20%,63,397,3,13.60%,85.70%,0.60%,173,176,431,40.80% +148385,850,2064,State-funded primary,411,205,206,49.90%,50.10%,16,3.90%,76,18.50%,62,349,0,15.10%,84.90%,0.00%,172,179,411,43.60% +148386,885,2043,State-funded primary,260,124,136,47.70%,52.30%,2,0.80%,39,15.00%,24,236,0,9.20%,90.80%,0.00%,98,94,245,38.40% +148387,888,2012,State-funded primary,202,101,101,50.00%,50.00%,5,2.50%,27,13.40%,21,181,0,10.40%,89.60%,0.00%,74,74,202,36.60% +148388,371,2020,State-funded primary,405,211,194,52.10%,47.90%,8,2.00%,88,21.70%,20,385,0,4.90%,95.10%,0.00%,156,164,368,44.60% +148389,352,4015,State-funded secondary,1308,642,666,49.10%,50.90%,32,2.40%,194,14.80%,355,948,5,27.10%,72.50%,0.40%,663,721,1308,55.10% +148390,855,2040,State-funded primary,220,108,112,49.10%,50.90%,1,0.50%,31,14.10%,9,211,0,4.10%,95.90%,0.00%,52,56,220,25.50% +148391,856,2009,State-funded primary,434,187,247,43.10%,56.90%,4,0.90%,59,13.60%,265,164,5,61.10%,37.80%,1.20%,159,162,411,39.40% +148392,925,2086,State-funded primary,68,34,34,50.00%,50.00%,3,4.40%,17,25.00%,12,56,0,17.60%,82.40%,0.00%,22,23,68,33.80% +148393,355,4005,State-funded secondary,970,511,459,52.70%,47.30%,20,2.10%,126,13.00%,169,770,31,17.40%,79.40%,3.20%,552,598,970,61.60% +148394,801,6040,Independent school,22,7,15,31.80%,68.20%,22,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148395,926,6032,Independent school,9,2,7,22.20%,77.80%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148396,938,2060,State-funded primary,54,24,30,44.40%,55.60%,0,0.00%,6,11.10%,5,49,0,9.30%,90.70%,0.00%,4,4,54,7.40% +148397,888,6126,Independent school,2,2,0,100.00%,0.00%,0,0.00%,2,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148398,937,6034,Independent school,20,9,11,45.00%,55.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148400,333,7000,State-funded special school,73,18,55,24.70%,75.30%,73,100.00%,0,0.00%,11,61,1,15.10%,83.60%,1.40%,30,39,73,53.40% +148401,860,3489,State-funded primary,191,87,104,45.50%,54.50%,5,2.60%,29,15.20%,0,191,0,0.00%,100.00%,0.00%,29,30,191,15.70% +148402,860,4012,State-funded secondary,757,362,395,47.80%,52.20%,23,3.00%,84,11.10%,24,733,0,3.20%,96.80%,0.00%,209,216,714,30.30% +148403,879,3759,State-funded primary,122,63,59,51.60%,48.40%,2,1.60%,21,17.20%,52,70,0,42.60%,57.40%,0.00%,52,47,104,45.20% +148404,838,3030,State-funded primary,36,22,14,61.10%,38.90%,0,0.00%,4,11.10%,0,36,0,0.00%,100.00%,0.00%,13,12,34,35.30% +148405,925,3353,State-funded primary,84,46,38,54.80%,45.20%,2,2.40%,21,25.00%,0,84,0,0.00%,100.00%,0.00%,33,31,79,39.20% +148406,830,6055,Independent school,11,3,8,27.30%,72.70%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148407,314,4006,State-funded secondary,641,297,344,46.30%,53.70%,31,4.80%,106,16.50%,105,534,2,16.40%,83.30%,0.30%,179,191,641,29.80% +148408,371,2196,State-funded primary,283,141,142,49.80%,50.20%,6,2.10%,74,26.10%,13,270,0,4.60%,95.40%,0.00%,154,154,263,58.60% +148409,390,3318,State-funded primary,199,110,89,55.30%,44.70%,8,4.00%,11,5.50%,28,171,0,14.10%,85.90%,0.00%,94,88,179,49.20% +148410,390,3335,State-funded primary,194,89,105,45.90%,54.10%,4,2.10%,20,10.30%,23,171,0,11.90%,88.10%,0.00%,29,28,172,16.30% +148411,823,3323,State-funded primary,53,21,32,39.60%,60.40%,3,5.70%,15,28.30%,0,53,0,0.00%,100.00%,0.00%,9,9,53,17.00% +148412,840,3381,State-funded primary,225,114,111,50.70%,49.30%,1,0.40%,21,9.30%,3,222,0,1.30%,98.70%,0.00%,42,45,200,22.50% +148413,840,3401,State-funded primary,205,107,98,52.20%,47.80%,4,2.00%,18,8.80%,6,199,0,2.90%,97.10%,0.00%,24,24,205,11.70% +148414,935,2922,State-funded primary,611,295,316,48.30%,51.70%,32,5.20%,102,16.70%,101,510,0,16.50%,83.50%,0.00%,102,106,569,18.60% +148415,307,6012,Independent school,49,16,33,32.70%,67.30%,49,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148417,855,4040,State-funded secondary,1163,574,589,49.40%,50.60%,23,2.00%,170,14.60%,90,1073,0,7.70%,92.30%,0.00%,215,209,910,23.00% +148418,802,6011,Independent school,7,7,0,100.00%,0.00%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148419,885,6072,Independent school,9,2,7,22.20%,77.80%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148420,826,6019,Independent school,6,0,6,0.00%,100.00%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148422,881,6078,Independent school,41,16,25,39.00%,61.00%,41,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148423,881,4035,State-funded secondary,748,390,358,52.10%,47.90%,11,1.50%,94,12.60%,83,655,10,11.10%,87.60%,1.30%,196,243,748,32.50% +148424,855,6055,Independent school,17,9,8,52.90%,47.10%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148425,935,6029,Independent school,18,4,14,22.20%,77.80%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148427,830,2067,State-funded primary,77,43,34,55.80%,44.20%,2,2.60%,15,19.50%,0,77,0,0.00%,100.00%,0.00%,43,40,70,57.10% +148428,830,2070,State-funded primary,136,58,78,42.60%,57.40%,3,2.20%,25,18.40%,12,123,1,8.80%,90.40%,0.70%,72,74,120,61.70% +148429,331,4011,State-funded secondary,797,407,390,51.10%,48.90%,7,0.90%,120,15.10%,243,544,10,30.50%,68.30%,1.30%,266,287,782,36.70% +148430,357,4007,State-funded secondary,537,304,233,56.60%,43.40%,14,2.60%,68,12.70%,80,450,7,14.90%,83.80%,1.30%,234,270,537,50.30% +148431,357,4009,State-funded secondary,805,453,352,56.30%,43.70%,15,1.90%,84,10.40%,19,782,4,2.40%,97.10%,0.50%,232,258,805,32.00% +148432,925,2099,State-funded primary,239,124,115,51.90%,48.10%,5,2.10%,32,13.40%,65,174,0,27.20%,72.80%,0.00%,171,171,233,73.40% +148433,925,4053,State-funded secondary,310,150,160,48.40%,51.60%,8,2.60%,95,30.60%,63,247,0,20.30%,79.70%,0.00%,156,170,310,54.80% +148434,919,2095,State-funded primary,567,286,281,50.40%,49.60%,7,1.20%,87,15.30%,129,438,0,22.80%,77.20%,0.00%,61,64,567,11.30% +148435,936,3049,State-funded primary,346,186,160,53.80%,46.20%,8,2.30%,53,15.30%,19,327,0,5.50%,94.50%,0.00%,45,46,346,13.30% +148436,354,2014,State-funded primary,240,131,109,54.60%,45.40%,7,2.90%,37,15.40%,56,184,0,23.30%,76.70%,0.00%,105,107,226,47.30% +148437,893,7001,State-funded special school,50,7,43,14.00%,86.00%,49,98.00%,1,2.00%,0,50,0,0.00%,100.00%,0.00%,36,37,50,74.00% +148438,207,3477,State-funded primary,223,115,108,51.60%,48.40%,3,1.30%,15,6.70%,176,47,0,78.90%,21.10%,0.00%,29,29,196,14.80% +148439,330,3325,State-funded primary,406,192,214,47.30%,52.70%,8,2.00%,112,27.60%,152,254,0,37.40%,62.60%,0.00%,138,136,376,36.20% +148440,330,3337,State-funded primary,207,107,100,51.70%,48.30%,7,3.40%,24,11.60%,134,65,8,64.70%,31.40%,3.90%,157,160,207,77.30% +148441,330,3339,State-funded primary,198,109,89,55.10%,44.90%,4,2.00%,32,16.20%,142,55,1,71.70%,27.80%,0.50%,123,130,198,65.70% +148442,370,2129,State-funded primary,307,143,164,46.60%,53.40%,10,3.30%,47,15.30%,33,254,20,10.70%,82.70%,6.50%,125,128,289,44.30% +148443,391,3474,State-funded primary,218,99,119,45.40%,54.60%,10,4.60%,29,13.30%,24,194,0,11.00%,89.00%,0.00%,76,74,202,36.60% +148444,391,3475,State-funded primary,98,46,52,46.90%,53.10%,2,2.00%,20,20.40%,11,87,0,11.20%,88.80%,0.00%,45,48,92,52.20% +148445,391,3650,State-funded primary,464,238,226,51.30%,48.70%,7,1.50%,51,11.00%,185,276,3,39.90%,59.50%,0.60%,137,137,422,32.50% +148446,391,3762,State-funded primary,212,100,112,47.20%,52.80%,4,1.90%,28,13.20%,60,152,0,28.30%,71.70%,0.00%,57,58,212,27.40% +148447,391,3874,State-funded primary,227,115,112,50.70%,49.30%,1,0.40%,32,14.10%,29,198,0,12.80%,87.20%,0.00%,77,74,206,35.90% +148448,392,3305,State-funded primary,215,103,112,47.90%,52.10%,2,0.90%,28,13.00%,28,187,0,13.00%,87.00%,0.00%,62,63,195,32.30% +148449,392,3308,State-funded primary,263,147,116,55.90%,44.10%,6,2.30%,65,24.70%,18,238,7,6.80%,90.50%,2.70%,138,141,222,63.50% +148450,392,3309,State-funded primary,213,105,108,49.30%,50.70%,5,2.30%,21,9.90%,5,207,1,2.30%,97.20%,0.50%,28,28,192,14.60% +148451,392,3317,State-funded primary,376,194,182,51.60%,48.40%,11,2.90%,27,7.20%,19,357,0,5.10%,94.90%,0.00%,59,59,345,17.10% +148452,394,3317,State-funded primary,149,79,70,53.00%,47.00%,2,1.30%,24,16.10%,16,133,0,10.70%,89.30%,0.00%,35,35,149,23.50% +148453,872,4049,State-funded secondary,1199,497,702,41.50%,58.50%,40,3.30%,20,1.70%,236,963,0,19.70%,80.30%,0.00%,124,131,1076,12.20% +148454,873,2202,State-funded primary,200,94,106,47.00%,53.00%,6,3.00%,30,15.00%,59,137,4,29.50%,68.50%,2.00%,48,49,200,24.50% +148455,896,2066,State-funded primary,210,106,104,50.50%,49.50%,4,1.90%,23,11.00%,23,187,0,11.00%,89.00%,0.00%,5,5,210,2.40% +148456,877,2125,State-funded primary,187,93,94,49.70%,50.30%,6,3.20%,18,9.60%,27,160,0,14.40%,85.60%,0.00%,49,50,187,26.70% +148457,877,2126,State-funded primary,409,196,213,47.90%,52.10%,5,1.20%,27,6.60%,37,364,8,9.00%,89.00%,2.00%,39,40,409,9.80% +148458,877,2313,State-funded primary,411,213,198,51.80%,48.20%,5,1.20%,52,12.70%,21,390,0,5.10%,94.90%,0.00%,49,52,411,12.70% +148459,896,2316,State-funded primary,172,89,83,51.70%,48.30%,5,2.90%,37,21.50%,18,154,0,10.50%,89.50%,0.00%,61,62,172,36.00% +148460,808,2022,State-funded primary,213,112,101,52.60%,47.40%,10,4.70%,16,7.50%,13,200,0,6.10%,93.90%,0.00%,42,45,195,23.10% +148461,808,3312,State-funded primary,224,105,119,46.90%,53.10%,6,2.70%,14,6.30%,74,150,0,33.00%,67.00%,0.00%,86,87,191,45.50% +148462,808,3316,State-funded primary,284,157,127,55.30%,44.70%,9,3.20%,6,2.10%,10,274,0,3.50%,96.50%,0.00%,12,15,251,6.00% +148463,830,3095,State-funded primary,201,93,108,46.30%,53.70%,2,1.00%,28,13.90%,7,194,0,3.50%,96.50%,0.00%,64,64,201,31.80% +148464,838,2040,State-funded primary,331,163,168,49.20%,50.80%,6,1.80%,28,8.50%,12,310,9,3.60%,93.70%,2.70%,32,32,331,9.70% +148465,840,2212,State-funded primary,120,62,58,51.70%,48.30%,5,4.20%,23,19.20%,4,116,0,3.30%,96.70%,0.00%,57,59,120,49.20% +148466,840,2213,State-funded primary,75,38,37,50.70%,49.30%,0,0.00%,14,18.70%,4,71,0,5.30%,94.70%,0.00%,33,33,75,44.00% +148467,840,2217,State-funded primary,191,78,113,40.80%,59.20%,2,1.00%,19,9.90%,5,186,0,2.60%,97.40%,0.00%,86,86,191,45.00% +148469,936,2057,State-funded primary,189,116,73,61.40%,38.60%,3,1.60%,19,10.10%,27,162,0,14.30%,85.70%,0.00%,41,41,141,29.10% +148471,341,6020,Independent school,12,10,2,83.30%,16.70%,0,0.00%,1,8.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148472,919,6018,Independent school,12,2,10,16.70%,83.30%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148475,355,6019,Independent school,43,43,0,100.00%,0.00%,0,0.00%,6,14.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148476,878,7011,State-funded special school,197,36,161,18.30%,81.70%,197,100.00%,0,0.00%,5,192,0,2.50%,97.50%,0.00%,74,78,182,42.90% +148477,380,3334,State-funded primary,211,97,114,46.00%,54.00%,6,2.80%,39,18.50%,85,126,0,40.30%,59.70%,0.00%,79,79,211,37.40% +148479,381,3305,State-funded primary,163,95,68,58.30%,41.70%,3,1.80%,13,8.00%,36,127,0,22.10%,77.90%,0.00%,29,30,163,18.40% +148480,381,3329,State-funded primary,230,119,111,51.70%,48.30%,3,1.30%,27,11.70%,2,228,0,0.90%,99.10%,0.00%,35,35,195,17.90% +148481,382,3304,State-funded primary,296,152,144,51.40%,48.60%,6,2.00%,28,9.50%,20,276,0,6.80%,93.20%,0.00%,102,104,281,37.00% +148482,382,3310,State-funded primary,214,107,107,50.00%,50.00%,3,1.40%,21,9.80%,50,164,0,23.40%,76.60%,0.00%,69,70,214,32.70% +148483,382,3400,State-funded primary,332,162,170,48.80%,51.20%,6,1.80%,29,8.70%,47,284,1,14.20%,85.50%,0.30%,63,63,306,20.60% +148484,382,3402,State-funded primary,226,115,111,50.90%,49.10%,6,2.70%,30,13.30%,89,137,0,39.40%,60.60%,0.00%,69,69,207,33.30% +148485,382,3408,State-funded primary,384,188,196,49.00%,51.00%,13,3.40%,81,21.10%,68,316,0,17.70%,82.30%,0.00%,108,108,367,29.40% +148486,393,3301,State-funded primary,233,112,121,48.10%,51.90%,5,2.10%,24,10.30%,31,202,0,13.30%,86.70%,0.00%,40,37,207,17.90% +148487,895,2216,State-funded primary,294,144,150,49.00%,51.00%,5,1.70%,16,5.40%,10,284,0,3.40%,96.60%,0.00%,40,39,261,14.90% +148488,877,2370,State-funded primary,112,43,69,38.40%,61.60%,0,0.00%,14,12.50%,2,110,0,1.80%,98.20%,0.00%,8,8,112,7.10% +148489,895,3141,State-funded primary,194,104,90,53.60%,46.40%,3,1.50%,18,9.30%,4,190,0,2.10%,97.90%,0.00%,27,27,194,13.90% +148490,878,3107,State-funded primary,270,118,152,43.70%,56.30%,11,4.10%,34,12.60%,5,264,1,1.90%,97.80%,0.40%,47,47,256,18.40% +148491,919,3318,State-funded primary,428,207,221,48.40%,51.60%,5,1.20%,32,7.50%,78,350,0,18.20%,81.80%,0.00%,21,21,398,5.30% +148492,919,3327,State-funded primary,205,123,82,60.00%,40.00%,8,3.90%,21,10.20%,41,164,0,20.00%,80.00%,0.00%,12,13,191,6.80% +148493,919,3341,State-funded primary,218,109,109,50.00%,50.00%,9,4.10%,23,10.60%,12,206,0,5.50%,94.50%,0.00%,14,14,200,7.00% +148494,919,3345,State-funded primary,235,116,119,49.40%,50.60%,3,1.30%,27,11.50%,40,195,0,17.00%,83.00%,0.00%,17,17,203,8.40% +148495,919,3367,State-funded primary,118,53,65,44.90%,55.10%,6,5.10%,12,10.20%,14,104,0,11.90%,88.10%,0.00%,12,12,104,11.50% +148496,919,3408,State-funded primary,209,101,108,48.30%,51.70%,3,1.40%,22,10.50%,31,178,0,14.80%,85.20%,0.00%,11,11,209,5.30% +148497,908,6012,Independent school,50,10,40,20.00%,80.00%,50,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148498,919,3424,State-funded primary,199,110,89,55.30%,44.70%,5,2.50%,28,14.10%,38,161,0,19.10%,80.90%,0.00%,21,22,199,11.10% +148499,919,5422,State-funded secondary,1158,576,582,49.70%,50.30%,10,0.90%,71,6.10%,250,906,2,21.60%,78.20%,0.20%,63,77,951,8.10% +148500,886,2259,State-funded primary,382,183,199,47.90%,52.10%,18,4.70%,23,6.00%,33,349,0,8.60%,91.40%,0.00%,101,107,382,28.00% +148501,886,2611,State-funded primary,269,123,146,45.70%,54.30%,1,0.40%,26,9.70%,77,190,2,28.60%,70.60%,0.70%,76,76,269,28.30% +148502,886,2626,State-funded primary,148,75,73,50.70%,49.30%,1,0.70%,20,13.50%,22,126,0,14.90%,85.10%,0.00%,34,35,148,23.60% +148503,929,3713,State-funded primary,231,107,124,46.30%,53.70%,4,1.70%,28,12.10%,8,223,0,3.50%,96.50%,0.00%,36,36,185,19.50% +148504,929,3726,State-funded primary,237,110,127,46.40%,53.60%,2,0.80%,27,11.40%,9,227,1,3.80%,95.80%,0.40%,38,38,212,17.90% +148505,893,3026,State-funded primary,92,44,48,47.80%,52.20%,4,4.30%,9,9.80%,1,91,0,1.10%,98.90%,0.00%,4,4,81,4.90% +148506,860,2150,State-funded primary,120,49,71,40.80%,59.20%,1,0.80%,9,7.50%,4,116,0,3.30%,96.70%,0.00%,3,4,120,3.30% +148507,860,2190,State-funded primary,464,223,241,48.10%,51.90%,9,1.90%,41,8.80%,2,462,0,0.40%,99.60%,0.00%,25,28,424,6.60% +148508,860,4072,State-funded secondary,768,398,370,51.80%,48.20%,14,1.80%,108,14.10%,12,756,0,1.60%,98.40%,0.00%,124,144,768,18.80% +148509,935,2045,State-funded primary,242,120,122,49.60%,50.40%,4,1.70%,28,11.60%,29,213,0,12.00%,88.00%,0.00%,54,56,242,23.10% +148510,936,3462,State-funded primary,212,107,105,50.50%,49.50%,5,2.40%,32,15.10%,26,186,0,12.30%,87.70%,0.00%,8,8,212,3.80% +148511,937,2055,State-funded primary,172,82,90,47.70%,52.30%,9,5.20%,19,11.00%,3,169,0,1.70%,98.30%,0.00%,29,28,130,21.50% +148512,937,3068,State-funded primary,136,82,54,60.30%,39.70%,2,1.50%,15,11.00%,3,133,0,2.20%,97.80%,0.00%,17,19,136,14.00% +148513,937,3073,State-funded primary,468,233,235,49.80%,50.20%,9,1.90%,57,12.20%,25,443,0,5.30%,94.70%,0.00%,86,86,417,20.60% +148514,937,3074,State-funded primary,90,44,46,48.90%,51.10%,1,1.10%,10,11.10%,2,88,0,2.20%,97.80%,0.00%,18,18,90,20.00% +148515,937,3210,State-funded primary,183,90,93,49.20%,50.80%,7,3.80%,20,10.90%,6,176,1,3.30%,96.20%,0.50%,24,24,183,13.10% +148516,800,3446,State-funded primary,217,100,117,46.10%,53.90%,20,9.20%,54,24.90%,9,208,0,4.10%,95.90%,0.00%,87,90,217,41.50% +148517,860,3499,State-funded primary,427,205,222,48.00%,52.00%,10,2.30%,44,10.30%,20,407,0,4.70%,95.30%,0.00%,61,62,372,16.70% +148518,891,3331,State-funded primary,234,125,109,53.40%,46.60%,5,2.10%,44,18.80%,8,226,0,3.40%,96.60%,0.00%,92,91,205,44.40% +148519,886,5229,State-funded primary,648,303,345,46.80%,53.20%,28,4.30%,75,11.60%,139,508,1,21.50%,78.40%,0.20%,86,88,648,13.60% +148521,330,4040,State-funded secondary,525,0,525,0.00%,100.00%,14,2.70%,44,8.40%,54,470,1,10.30%,89.50%,0.20%,221,278,525,53.00% +148522,342,4000,State-funded secondary,829,419,410,50.50%,49.50%,41,4.90%,168,20.30%,36,793,0,4.30%,95.70%,0.00%,288,311,829,37.50% +148526,359,4013,State-funded secondary,922,467,455,50.70%,49.30%,20,2.20%,176,19.10%,23,899,0,2.50%,97.50%,0.00%,271,298,922,32.30% +148527,383,4079,State-funded secondary,1010,518,492,51.30%,48.70%,10,1.00%,148,14.70%,42,968,0,4.20%,95.80%,0.00%,353,395,1010,39.10% +148528,851,2014,State-funded primary,298,161,137,54.00%,46.00%,3,1.00%,35,11.70%,150,147,1,50.30%,49.30%,0.30%,48,55,298,18.50% +148531,933,2052,State-funded primary,116,55,61,47.40%,52.60%,5,4.30%,6,5.20%,9,107,0,7.80%,92.20%,0.00%,62,62,116,53.40% +148532,805,4003,State-funded secondary,683,336,347,49.20%,50.80%,9,1.30%,157,23.00%,13,670,0,1.90%,98.10%,0.00%,365,380,683,55.60% +148533,331,2022,State-funded primary,351,183,168,52.10%,47.90%,5,1.40%,68,19.40%,104,247,0,29.60%,70.40%,0.00%,156,160,307,52.10% +148534,340,4002,State-funded secondary,685,350,335,51.10%,48.90%,11,1.60%,138,20.10%,51,633,1,7.40%,92.40%,0.10%,294,328,685,47.90% +148535,333,3303,State-funded primary,242,103,139,42.60%,57.40%,5,2.10%,24,9.90%,82,160,0,33.90%,66.10%,0.00%,45,45,213,21.10% +148537,381,6026,Independent school,19,6,13,31.60%,68.40%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148538,831,4011,State-funded secondary,871,449,422,51.50%,48.50%,11,1.30%,133,15.30%,318,552,1,36.50%,63.40%,0.10%,500,582,871,66.80% +148539,883,7000,State-funded special school,112,22,90,19.60%,80.40%,111,99.10%,1,0.90%,12,100,0,10.70%,89.30%,0.00%,37,41,112,36.60% +148540,860,2042,State-funded primary,53,27,26,50.90%,49.10%,2,3.80%,3,5.70%,0,53,0,0.00%,100.00%,0.00%,10,10,53,18.90% +148541,935,7017,State-funded special school,48,12,36,25.00%,75.00%,48,100.00%,0,0.00%,0,48,0,0.00%,100.00%,0.00%,23,24,48,50.00% +148542,352,6016,Independent school,1,0,1,0.00%,100.00%,0,0.00%,1,100.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148543,881,7005,State-funded special school,50,7,43,14.00%,86.00%,50,100.00%,0,0.00%,3,45,2,6.00%,90.00%,4.00%,9,10,45,22.20% +148544,352,4016,State-funded secondary,217,112,105,51.60%,48.40%,10,4.60%,37,17.10%,101,112,4,46.50%,51.60%,1.80%,115,131,217,60.40% +148545,380,4092,State-funded secondary,881,418,463,47.40%,52.60%,23,2.60%,176,20.00%,166,712,3,18.80%,80.80%,0.30%,251,302,881,34.30% +148546,856,4012,State-funded secondary,424,182,242,42.90%,57.10%,8,1.90%,60,14.20%,185,232,7,43.60%,54.70%,1.70%,123,131,424,30.90% +148547,372,4009,State-funded secondary,501,227,274,45.30%,54.70%,19,3.80%,120,24.00%,24,475,2,4.80%,94.80%,0.40%,267,287,501,57.30% +148548,892,4016,State-funded secondary,417,158,259,37.90%,62.10%,3,0.70%,61,14.60%,127,290,0,30.50%,69.50%,0.00%,185,199,417,47.70% +148549,855,4042,State-funded secondary,1623,845,778,52.10%,47.90%,25,1.50%,153,9.40%,50,1573,0,3.10%,96.90%,0.00%,182,160,1072,14.90% +148550,933,2053,State-funded primary,43,20,23,46.50%,53.50%,0,0.00%,2,4.70%,0,43,0,0.00%,100.00%,0.00%,7,8,43,18.60% +148551,826,6020,Independent school,47,0,47,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148552,845,6067,Independent school,27,3,24,11.10%,88.90%,27,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148553,330,4041,State-funded secondary,390,179,211,45.90%,54.10%,6,1.50%,58,14.90%,206,184,0,52.80%,47.20%,0.00%,123,186,390,47.70% +148554,937,7007,State-funded special school,30,6,24,20.00%,80.00%,29,96.70%,1,3.30%,2,27,1,6.70%,90.00%,3.30%,15,18,30,60.00% +148555,208,4008,State-funded secondary,285,139,146,48.80%,51.20%,4,1.40%,3,1.10%,94,191,0,33.00%,67.00%,0.00%,102,0,0,0.00% +148556,894,6013,Independent school,11,4,7,36.40%,63.60%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148557,886,6162,Independent school,4,1,3,25.00%,75.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148558,821,7000,State-funded special school,79,21,58,26.60%,73.40%,79,100.00%,0,0.00%,46,33,0,58.20%,41.80%,0.00%,36,37,79,46.80% +148560,383,4080,State-funded secondary,477,250,227,52.40%,47.60%,3,0.60%,65,13.60%,267,194,16,56.00%,40.70%,3.40%,255,287,477,60.20% +148561,370,4013,State-funded secondary,362,191,171,52.80%,47.20%,11,3.00%,42,11.60%,21,341,0,5.80%,94.20%,0.00%,107,116,362,32.00% +148562,207,7000,State-funded special school,76,17,59,22.40%,77.60%,75,98.70%,1,1.30%,37,39,0,48.70%,51.30%,0.00%,40,39,66,59.10% +148563,916,4022,State-funded secondary,244,124,120,50.80%,49.20%,10,4.10%,39,16.00%,11,233,0,4.50%,95.50%,0.00%,20,22,244,9.00% +148564,332,6011,Independent school,22,12,10,54.50%,45.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148566,877,6014,Independent school,13,4,9,30.80%,69.20%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148568,890,6010,Independent school,20,11,9,55.00%,45.00%,5,25.00%,3,15.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148569,941,2247,State-funded primary,104,55,49,52.90%,47.10%,2,1.90%,1,1.00%,5,97,2,4.80%,93.30%,1.90%,4,4,104,3.80% +148570,931,2038,State-funded primary,97,44,53,45.40%,54.60%,1,1.00%,8,8.20%,14,83,0,14.40%,85.60%,0.00%,17,11,59,18.60% +148571,941,2248,State-funded primary,64,34,30,53.10%,46.90%,0,0.00%,2,3.10%,4,60,0,6.30%,93.80%,0.00%,4,4,64,6.30% +148572,926,7005,State-funded special school,50,0,50,0.00%,100.00%,50,100.00%,0,0.00%,0,49,1,0.00%,98.00%,2.00%,44,45,50,90.00% +148573,391,4009,State-funded secondary,241,109,132,45.20%,54.80%,3,1.20%,28,11.60%,60,181,0,24.90%,75.10%,0.00%,127,136,241,56.40% +148574,210,2392,State-funded primary,411,191,220,46.50%,53.50%,13,3.20%,64,15.60%,84,327,0,20.40%,79.60%,0.00%,90,92,378,24.30% +148575,936,7006,State-funded special school,114,19,95,16.70%,83.30%,114,100.00%,0,0.00%,18,96,0,15.80%,84.20%,0.00%,38,42,106,39.60% +148576,825,2050,State-funded primary,150,69,81,46.00%,54.00%,6,4.00%,17,11.30%,32,118,0,21.30%,78.70%,0.00%,20,20,150,13.30% +148577,887,4004,State-funded secondary,405,182,223,44.90%,55.10%,6,1.50%,95,23.50%,16,384,5,4.00%,94.80%,1.20%,68,85,405,21.00% +148578,873,7012,State-funded special school,81,13,68,16.00%,84.00%,81,100.00%,0,0.00%,3,78,0,3.70%,96.30%,0.00%,20,20,81,24.70% +148580,908,2049,State-funded primary,38,18,20,47.40%,52.60%,2,5.30%,9,23.70%,5,33,0,13.20%,86.80%,0.00%,8,8,38,21.10% +148581,908,2050,State-funded primary,38,16,22,42.10%,57.90%,0,0.00%,3,7.90%,1,37,0,2.60%,97.40%,0.00%,0,0,38,0.00% +148582,303,7006,State-funded special school,51,12,39,23.50%,76.50%,51,100.00%,0,0.00%,2,49,0,3.90%,96.10%,0.00%,30,32,51,62.70% +148583,940,7007,State-funded special school,57,16,41,28.10%,71.90%,57,100.00%,0,0.00%,2,55,0,3.50%,96.50%,0.00%,23,24,52,46.20% +148584,830,2071,State-funded primary,45,20,25,44.40%,55.60%,4,8.90%,6,13.30%,5,38,2,11.10%,84.40%,4.40%,4,4,45,8.90% +148585,831,2027,State-funded primary,54,26,28,48.10%,51.90%,2,3.70%,18,33.30%,24,30,0,44.40%,55.60%,0.00%,12,8,35,22.90% +148587,885,6079,Independent school,8,3,5,37.50%,62.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148588,810,1105,State-funded AP school,49,4,45,8.20%,91.80%,49,100.00%,0,0.00%,4,45,0,8.20%,91.80%,0.00%,30,31,49,63.30% +148589,330,4042,State-funded secondary,362,176,186,48.60%,51.40%,8,2.20%,99,27.30%,31,331,0,8.60%,91.40%,0.00%,156,173,362,47.80% +148590,839,4009,State-funded secondary,375,172,203,45.90%,54.10%,8,2.10%,61,16.30%,172,201,2,45.90%,53.60%,0.50%,91,104,375,27.70% +148591,846,6030,Independent school,7,4,3,57.10%,42.90%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148593,316,6009,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148595,916,2115,State-funded primary,115,54,61,47.00%,53.00%,1,0.90%,6,5.20%,6,109,0,5.20%,94.80%,0.00%,15,15,49,30.60% +148596,354,4004,State-funded secondary,295,145,150,49.20%,50.80%,5,1.70%,43,14.60%,37,258,0,12.50%,87.50%,0.00%,109,128,295,43.40% +148598,860,6086,Independent school,25,9,16,36.00%,64.00%,6,24.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148599,852,6013,Independent school,68,31,37,45.60%,54.40%,68,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148600,313,6009,Independent school,21,3,18,14.30%,85.70%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148601,808,1101,State-funded AP school,59,16,43,27.10%,72.90%,5,8.50%,18,30.50%,3,56,0,5.10%,94.90%,0.00%,42,44,59,74.60% +148602,815,4010,State-funded secondary,860,428,432,49.80%,50.20%,15,1.70%,98,11.40%,10,850,0,1.20%,98.80%,0.00%,115,116,745,15.60% +148603,331,2000,State-funded primary,502,233,269,46.40%,53.60%,31,6.20%,99,19.70%,162,340,0,32.30%,67.70%,0.00%,225,228,474,48.10% +148604,390,3317,State-funded primary,182,95,87,52.20%,47.80%,1,0.50%,20,11.00%,71,111,0,39.00%,61.00%,0.00%,72,73,182,40.10% +148605,390,3336,State-funded primary,334,175,159,52.40%,47.60%,4,1.20%,45,13.50%,15,319,0,4.50%,95.50%,0.00%,100,101,298,33.90% +148606,393,3304,State-funded primary,233,99,134,42.50%,57.50%,5,2.10%,38,16.30%,26,207,0,11.20%,88.80%,0.00%,87,92,205,44.90% +148607,909,3115,State-funded primary,50,24,26,48.00%,52.00%,0,0.00%,6,12.00%,0,50,0,0.00%,100.00%,0.00%,9,8,42,19.00% +148608,830,2631,State-funded primary,348,174,174,50.00%,50.00%,7,2.00%,38,10.90%,3,343,2,0.90%,98.60%,0.60%,76,80,309,25.90% +148609,840,3382,State-funded primary,157,83,74,52.90%,47.10%,4,2.50%,11,7.00%,1,156,0,0.60%,99.40%,0.00%,34,35,157,22.30% +148610,840,3413,State-funded primary,195,95,100,48.70%,51.30%,1,0.50%,17,8.70%,4,191,0,2.10%,97.90%,0.00%,20,21,179,11.70% +148611,940,2215,State-funded primary,627,311,316,49.60%,50.40%,14,2.20%,35,5.60%,108,517,2,17.20%,82.50%,0.30%,67,68,627,10.80% +148614,203,2001,State-funded primary,368,176,192,47.80%,52.20%,10,2.70%,72,19.60%,213,154,1,57.90%,41.80%,0.30%,148,148,368,40.20% +148615,203,2851,State-funded primary,566,283,283,50.00%,50.00%,12,2.10%,63,11.10%,238,312,16,42.00%,55.10%,2.80%,95,94,518,18.10% +148616,383,4081,State-funded secondary,418,190,228,45.50%,54.50%,8,1.90%,55,13.20%,46,372,0,11.00%,89.00%,0.00%,176,200,418,47.80% +148617,390,4004,State-funded secondary,101,47,54,46.50%,53.50%,2,2.00%,19,18.80%,3,98,0,3.00%,97.00%,0.00%,26,32,101,31.70% +148618,926,7008,State-funded special school,36,14,22,38.90%,61.10%,36,100.00%,0,0.00%,6,30,0,16.70%,83.30%,0.00%,13,16,36,44.40% +148620,341,6022,Independent school,28,13,15,46.40%,53.60%,3,10.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148621,880,6008,Independent school,36,14,22,38.90%,61.10%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148623,316,2023,State-funded primary,51,32,19,62.70%,37.30%,1,2.00%,3,5.90%,9,42,0,17.60%,82.40%,0.00%,8,9,51,17.60% +148624,855,2041,State-funded primary,47,22,25,46.80%,53.20%,2,4.30%,3,6.40%,0,47,0,0.00%,100.00%,0.00%,5,5,47,10.60% +148625,931,6025,Independent school,8,2,6,25.00%,75.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148626,840,3300,State-funded primary,206,102,104,49.50%,50.50%,3,1.50%,33,16.00%,4,202,0,1.90%,98.10%,0.00%,40,41,206,19.90% +148627,840,3425,State-funded primary,121,68,53,56.20%,43.80%,3,2.50%,16,13.20%,10,111,0,8.30%,91.70%,0.00%,37,35,113,31.00% +148628,840,3444,State-funded primary,240,114,126,47.50%,52.50%,4,1.70%,26,10.80%,10,230,0,4.20%,95.80%,0.00%,33,33,210,15.70% +148629,840,3469,State-funded primary,120,57,63,47.50%,52.50%,5,4.20%,23,19.20%,9,111,0,7.50%,92.50%,0.00%,42,42,101,41.60% +148630,878,6087,Independent school,10,9,1,90.00%,10.00%,8,80.00%,2,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148631,936,6051,Independent school,34,8,26,23.50%,76.50%,34,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148632,886,6164,Independent school,17,14,3,82.40%,17.60%,0,0.00%,6,35.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148635,330,4043,State-funded secondary,200,116,84,58.00%,42.00%,4,2.00%,37,18.50%,9,190,1,4.50%,95.00%,0.50%,34,0,0,0.00% +148636,884,7000,State-funded special school,43,20,23,46.50%,53.50%,43,100.00%,0,0.00%,2,41,0,4.70%,95.30%,0.00%,13,0,0,0.00% +148637,802,2014,State-funded primary,76,40,36,52.60%,47.40%,2,2.60%,11,14.50%,9,67,0,11.80%,88.20%,0.00%,7,7,40,17.50% +148639,831,4012,State-funded secondary,1785,910,875,51.00%,49.00%,35,2.00%,186,10.40%,123,1657,5,6.90%,92.80%,0.30%,228,240,1475,16.30% +148640,823,2012,State-funded primary,159,87,72,54.70%,45.30%,8,5.00%,15,9.40%,3,156,0,1.90%,98.10%,0.00%,12,14,159,8.80% +148641,895,7004,State-funded special school,63,14,49,22.20%,77.80%,58,92.10%,5,7.90%,1,62,0,1.60%,98.40%,0.00%,38,38,56,67.90% +148642,332,6012,Independent school,29,4,25,13.80%,86.20%,21,72.40%,8,27.60%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148643,336,6008,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148644,330,6137,Independent school,9,2,7,22.20%,77.80%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148646,890,6011,Independent school,20,3,17,15.00%,85.00%,3,15.00%,16,80.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148651,390,6018,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148652,302,6020,Independent school,35,35,0,100.00%,0.00%,0,0.00%,5,14.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148653,330,2207,State-funded special school,173,36,137,20.80%,79.20%,173,100.00%,0,0.00%,60,110,3,34.70%,63.60%,1.70%,90,101,173,58.40% +148654,383,7008,State-funded special school,217,50,167,23.00%,77.00%,214,98.60%,3,1.40%,33,181,3,15.20%,83.40%,1.40%,103,94,190,49.50% +148655,341,4012,State-funded secondary,852,372,480,43.70%,56.30%,26,3.10%,155,18.20%,123,729,0,14.40%,85.60%,0.00%,394,451,852,52.90% +148657,381,3308,State-funded primary,302,149,153,49.30%,50.70%,14,4.60%,37,12.30%,157,145,0,52.00%,48.00%,0.00%,80,81,302,26.80% +148658,381,3327,State-funded primary,110,60,50,54.50%,45.50%,5,4.50%,17,15.50%,30,80,0,27.30%,72.70%,0.00%,23,23,101,22.80% +148659,382,3401,State-funded primary,417,218,199,52.30%,47.70%,6,1.40%,30,7.20%,50,364,3,12.00%,87.30%,0.70%,53,53,417,12.70% +148660,895,3114,State-funded primary,49,21,28,42.90%,57.10%,6,12.20%,5,10.20%,0,49,0,0.00%,100.00%,0.00%,7,7,44,15.90% +148662,916,6027,Independent school,31,7,24,22.60%,77.40%,31,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148668,926,2069,State-funded primary,52,23,29,44.20%,55.80%,1,1.90%,12,23.10%,0,52,0,0.00%,100.00%,0.00%,10,10,52,19.20% +148669,825,3361,State-funded primary,129,63,66,48.80%,51.20%,6,4.70%,14,10.90%,37,92,0,28.70%,71.30%,0.00%,9,9,129,7.00% +148670,825,3367,State-funded primary,256,128,128,50.00%,50.00%,11,4.30%,24,9.40%,108,147,1,42.20%,57.40%,0.40%,40,40,256,15.60% +148671,825,3371,State-funded primary,428,208,220,48.60%,51.40%,5,1.20%,46,10.70%,57,371,0,13.30%,86.70%,0.00%,60,61,387,15.80% +148672,825,3372,State-funded primary,229,113,116,49.30%,50.70%,4,1.70%,13,5.70%,111,118,0,48.50%,51.50%,0.00%,29,29,179,16.20% +148673,825,3375,State-funded primary,215,106,109,49.30%,50.70%,7,3.30%,19,8.80%,50,165,0,23.30%,76.70%,0.00%,23,24,215,11.20% +148674,825,3376,State-funded primary,456,226,230,49.60%,50.40%,8,1.80%,27,5.90%,164,290,2,36.00%,63.60%,0.40%,35,37,422,8.80% +148675,891,2685,State-funded primary,230,104,126,45.20%,54.80%,6,2.60%,22,9.60%,8,222,0,3.50%,96.50%,0.00%,55,52,199,26.10% +148676,937,3014,State-funded primary,99,54,45,54.50%,45.50%,3,3.00%,15,15.20%,3,96,0,3.00%,97.00%,0.00%,10,10,85,11.80% +148677,865,3405,State-funded primary,191,95,96,49.70%,50.30%,3,1.60%,31,16.20%,4,186,1,2.10%,97.40%,0.50%,13,13,191,6.80% +148678,865,5216,State-funded primary,62,30,32,48.40%,51.60%,2,3.20%,11,17.70%,3,59,0,4.80%,95.20%,0.00%,6,6,62,9.70% +148679,801,2019,State-funded primary,388,180,208,46.40%,53.60%,6,1.50%,56,14.40%,126,262,0,32.50%,67.50%,0.00%,135,136,388,35.10% +148680,865,2004,State-funded primary,430,215,215,50.00%,50.00%,27,6.30%,41,9.50%,34,395,1,7.90%,91.90%,0.20%,79,79,430,18.40% +148681,211,2147,State-funded primary,461,232,229,50.30%,49.70%,34,7.40%,50,10.80%,292,167,2,63.30%,36.20%,0.40%,133,136,410,33.20% +148682,306,2058,State-funded primary,196,97,99,49.50%,50.50%,2,1.00%,33,16.80%,26,170,0,13.30%,86.70%,0.00%,57,57,196,29.10% +148684,330,4187,State-funded secondary,749,749,0,100.00%,0.00%,16,2.10%,105,14.00%,69,680,0,9.20%,90.80%,0.00%,334,383,749,51.10% +148685,332,2118,State-funded primary,173,75,98,43.40%,56.60%,4,2.30%,46,26.60%,70,102,1,40.50%,59.00%,0.60%,77,78,173,45.10% +148689,371,2083,State-funded primary,287,149,138,51.90%,48.10%,3,1.00%,33,11.50%,29,258,0,10.10%,89.90%,0.00%,81,85,264,32.20% +148690,373,2327,State-funded primary,443,221,222,49.90%,50.10%,9,2.00%,93,21.00%,58,363,22,13.10%,81.90%,5.00%,265,258,414,62.30% +148692,821,5409,State-funded secondary,1048,524,524,50.00%,50.00%,23,2.20%,135,12.90%,393,647,8,37.50%,61.70%,0.80%,304,333,1048,31.80% +148693,895,4127,State-funded secondary,713,371,342,52.00%,48.00%,34,4.80%,129,18.10%,28,683,2,3.90%,95.80%,0.30%,142,162,713,22.70% +148694,807,1100,State-funded AP school,68,18,50,26.50%,73.50%,4,5.90%,28,41.20%,0,68,0,0.00%,100.00%,0.00%,55,59,68,86.80% +148695,908,3882,State-funded primary,85,49,36,57.60%,42.40%,0,0.00%,28,32.90%,3,82,0,3.50%,96.50%,0.00%,18,16,72,22.20% +148696,908,3884,State-funded primary,32,14,18,43.80%,56.30%,0,0.00%,11,34.40%,0,31,1,0.00%,96.90%,3.10%,5,4,27,14.80% +148697,909,3450,State-funded primary,173,93,80,53.80%,46.20%,5,2.90%,17,9.80%,15,141,17,8.70%,81.50%,9.80%,13,15,159,9.40% +148698,909,3453,State-funded primary,44,23,21,52.30%,47.70%,4,9.10%,10,22.70%,19,25,0,43.20%,56.80%,0.00%,11,11,39,28.20% +148699,909,3602,State-funded primary,210,105,105,50.00%,50.00%,12,5.70%,32,15.20%,2,208,0,1.00%,99.00%,0.00%,73,73,170,42.90% +148700,909,3653,State-funded primary,137,67,70,48.90%,51.10%,4,2.90%,14,10.20%,48,89,0,35.00%,65.00%,0.00%,47,47,123,38.20% +148701,909,3654,State-funded primary,215,106,109,49.30%,50.70%,5,2.30%,35,16.30%,27,188,0,12.60%,87.40%,0.00%,69,69,197,35.00% +148702,909,4634,State-funded secondary,690,309,381,44.80%,55.20%,33,4.80%,115,16.70%,36,654,0,5.20%,94.80%,0.00%,169,192,690,27.80% +148703,909,4810,State-funded secondary,565,301,264,53.30%,46.70%,15,2.70%,86,15.20%,22,543,0,3.90%,96.10%,0.00%,203,211,565,37.30% +148704,840,3489,State-funded primary,112,53,59,47.30%,52.70%,4,3.60%,18,16.10%,32,80,0,28.60%,71.40%,0.00%,35,35,110,31.80% +148705,840,3492,State-funded primary,89,37,52,41.60%,58.40%,1,1.10%,7,7.90%,9,80,0,10.10%,89.90%,0.00%,12,10,78,12.80% +148706,840,4162,State-funded secondary,675,359,316,53.20%,46.80%,19,2.80%,96,14.20%,7,667,1,1.00%,98.80%,0.10%,308,318,675,47.10% +148707,845,2135,State-funded primary,254,129,125,50.80%,49.20%,1,0.40%,25,9.80%,42,212,0,16.50%,83.50%,0.00%,57,57,254,22.40% +148708,881,7022,State-funded special school,55,2,53,3.60%,96.40%,55,100.00%,0,0.00%,0,55,0,0.00%,100.00%,0.00%,30,39,55,70.90% +148709,851,2689,State-funded primary,447,217,230,48.50%,51.50%,14,3.10%,91,20.40%,240,207,0,53.70%,46.30%,0.00%,204,204,401,50.90% +148710,919,2343,State-funded primary,208,98,110,47.10%,52.90%,11,5.30%,35,16.80%,8,200,0,3.80%,96.20%,0.00%,60,61,196,31.10% +148711,886,2296,State-funded primary,173,86,87,49.70%,50.30%,4,2.30%,32,18.50%,44,127,2,25.40%,73.40%,1.20%,97,99,173,57.20% +148712,886,4246,State-funded secondary,1267,567,700,44.80%,55.20%,56,4.40%,59,4.70%,182,1085,0,14.40%,85.60%,0.00%,371,382,1128,33.90% +148713,925,2244,State-funded primary,450,219,231,48.70%,51.30%,23,5.10%,76,16.90%,7,443,0,1.60%,98.40%,0.00%,142,148,426,34.70% +148714,815,2074,State-funded primary,223,117,106,52.50%,47.50%,4,1.80%,25,11.20%,27,196,0,12.10%,87.90%,0.00%,60,61,190,32.10% +148715,891,3040,State-funded primary,205,100,105,48.80%,51.20%,2,1.00%,37,18.00%,47,158,0,22.90%,77.10%,0.00%,62,70,190,36.80% +148716,894,3157,State-funded primary,411,216,195,52.60%,47.40%,3,0.70%,61,14.80%,31,377,3,7.50%,91.70%,0.70%,41,41,411,10.00% +148718,860,2415,State-funded primary,204,110,94,53.90%,46.10%,0,0.00%,10,4.90%,2,202,0,1.00%,99.00%,0.00%,27,29,204,14.20% +148719,938,2075,State-funded primary,239,135,104,56.50%,43.50%,8,3.30%,32,13.40%,11,228,0,4.60%,95.40%,0.00%,51,52,239,21.80% +148720,860,2000,State-funded primary,151,72,79,47.70%,52.30%,3,2.00%,20,13.20%,2,149,0,1.30%,98.70%,0.00%,19,20,136,14.70% +148722,330,7005,State-funded special school,81,0,81,0.00%,100.00%,81,100.00%,0,0.00%,1,80,0,1.20%,98.80%,0.00%,70,76,81,93.80% +148724,845,2027,State-funded primary,355,197,158,55.50%,44.50%,0,0.00%,46,13.00%,53,302,0,14.90%,85.10%,0.00%,86,87,355,24.50% +148727,895,2009,State-funded primary,89,38,51,42.70%,57.30%,7,7.90%,20,22.50%,30,59,0,33.70%,66.30%,0.00%,40,40,89,44.90% +148728,807,4016,State-funded secondary,860,435,425,50.60%,49.40%,18,2.10%,103,12.00%,21,836,3,2.40%,97.20%,0.30%,248,265,860,30.80% +148729,807,6005,Independent school,4,1,3,25.00%,75.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148732,937,6035,Independent school,48,13,35,27.10%,72.90%,13,27.10%,10,20.80%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148733,873,6057,Independent school,5,5,0,100.00%,0.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148734,860,6087,Independent school,6,2,4,33.30%,66.70%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148736,936,6055,Independent school,43,26,17,60.50%,39.50%,43,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148737,838,4024,State-funded secondary,1064,537,527,50.50%,49.50%,35,3.30%,194,18.20%,42,1016,6,3.90%,95.50%,0.60%,210,204,906,22.50% +148738,352,3503,State-funded primary,457,225,232,49.20%,50.80%,13,2.80%,49,10.70%,112,345,0,24.50%,75.50%,0.00%,164,161,418,38.50% +148739,383,3371,State-funded primary,228,118,110,51.80%,48.20%,2,0.90%,55,24.10%,154,74,0,67.50%,32.50%,0.00%,96,98,206,47.60% +148741,845,3035,State-funded primary,132,61,71,46.20%,53.80%,0,0.00%,12,9.10%,3,129,0,2.30%,97.70%,0.00%,16,19,104,18.30% +148742,845,3047,State-funded primary,140,59,81,42.10%,57.90%,3,2.10%,18,12.90%,4,136,0,2.90%,97.10%,0.00%,31,33,109,30.30% +148743,878,3462,State-funded primary,130,55,75,42.30%,57.70%,2,1.50%,8,6.20%,0,130,0,0.00%,100.00%,0.00%,20,17,102,16.70% +148744,850,2613,State-funded primary,189,90,99,47.60%,52.40%,4,2.10%,36,19.00%,11,178,0,5.80%,94.20%,0.00%,55,57,189,30.20% +148745,888,3811,State-funded primary,114,57,57,50.00%,50.00%,2,1.80%,13,11.40%,0,114,0,0.00%,100.00%,0.00%,35,33,92,35.90% +148746,925,2088,State-funded primary,69,37,32,53.60%,46.40%,4,5.80%,20,29.00%,3,66,0,4.30%,95.70%,0.00%,32,34,69,49.30% +148747,925,2105,State-funded primary,99,53,46,53.50%,46.50%,4,4.00%,11,11.10%,4,95,0,4.00%,96.00%,0.00%,24,25,99,25.30% +148748,860,3079,State-funded primary,425,200,225,47.10%,52.90%,4,0.90%,35,8.20%,22,403,0,5.20%,94.80%,0.00%,26,26,425,6.10% +148749,860,3080,State-funded primary,220,98,122,44.50%,55.50%,9,4.10%,23,10.50%,27,193,0,12.30%,87.70%,0.00%,53,55,220,25.00% +148750,935,2176,State-funded primary,610,321,289,52.60%,47.40%,15,2.50%,71,11.60%,197,413,0,32.30%,67.70%,0.00%,210,214,586,36.50% +148751,935,3020,State-funded primary,58,38,20,65.50%,34.50%,2,3.40%,9,15.50%,0,58,0,0.00%,100.00%,0.00%,10,10,58,17.20% +148752,935,3075,State-funded primary,33,15,18,45.50%,54.50%,6,18.20%,8,24.20%,0,33,0,0.00%,100.00%,0.00%,5,5,33,15.20% +148753,938,4610,State-funded secondary,1128,539,589,47.80%,52.20%,26,2.30%,152,13.50%,118,1010,0,10.50%,89.50%,0.00%,72,68,912,7.50% +148755,851,2006,State-funded primary,386,182,204,47.20%,52.80%,21,5.40%,95,24.60%,104,281,1,26.90%,72.80%,0.30%,146,149,386,38.60% +148756,940,6000,Independent school,14,1,13,7.10%,92.90%,4,28.60%,1,7.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148758,342,6006,Independent school,10,4,6,40.00%,60.00%,9,90.00%,1,10.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148759,383,6015,Independent school,30,7,23,23.30%,76.70%,1,3.30%,14,46.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148761,880,6009,Independent school,9,0,9,0.00%,100.00%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148763,929,2011,State-funded primary,217,118,99,54.40%,45.60%,3,1.40%,61,28.10%,5,212,0,2.30%,97.70%,0.00%,63,62,195,31.80% +148764,929,2012,State-funded primary,147,80,67,54.40%,45.60%,8,5.40%,47,32.00%,4,143,0,2.70%,97.30%,0.00%,74,76,117,65.00% +148765,929,2013,State-funded primary,449,225,224,50.10%,49.90%,16,3.60%,178,39.60%,5,444,0,1.10%,98.90%,0.00%,178,180,367,49.00% +148766,929,2014,State-funded primary,246,116,130,47.20%,52.80%,3,1.20%,97,39.40%,8,238,0,3.30%,96.70%,0.00%,120,121,203,59.60% +148767,811,6023,Independent school,7,1,6,14.30%,85.70%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148768,306,5950,State-funded special school,94,8,86,8.50%,91.50%,93,98.90%,1,1.10%,5,89,0,5.30%,94.70%,0.00%,69,72,91,79.10% +148770,888,2013,State-funded primary,172,91,81,52.90%,47.10%,5,2.90%,45,26.20%,26,146,0,15.10%,84.90%,0.00%,99,101,172,58.70% +148771,384,1103,State-funded AP school,46,8,38,17.40%,82.60%,2,4.30%,33,71.70%,1,43,2,2.20%,93.50%,4.30%,28,28,46,60.90% +148772,306,5951,State-funded special school,72,2,70,2.80%,97.20%,64,88.90%,8,11.10%,2,70,0,2.80%,97.20%,0.00%,36,34,43,79.10% +148774,312,2018,State-funded primary,352,169,183,48.00%,52.00%,9,2.60%,61,17.30%,129,223,0,36.60%,63.40%,0.00%,89,92,352,26.10% +148775,312,2061,State-funded primary,456,233,223,51.10%,48.90%,5,1.10%,32,7.00%,177,279,0,38.80%,61.20%,0.00%,105,98,414,23.70% +148776,319,2000,State-funded primary,458,191,267,41.70%,58.30%,13,2.80%,46,10.00%,200,253,5,43.70%,55.20%,1.10%,62,64,416,15.40% +148777,371,2104,State-funded primary,280,138,142,49.30%,50.70%,4,1.40%,57,20.40%,19,261,0,6.80%,93.20%,0.00%,67,63,251,25.10% +148778,393,3313,State-funded primary,201,90,111,44.80%,55.20%,2,1.00%,33,16.40%,3,198,0,1.50%,98.50%,0.00%,39,40,201,19.90% +148779,393,3315,State-funded primary,203,102,101,50.20%,49.80%,4,2.00%,15,7.40%,17,186,0,8.40%,91.60%,0.00%,61,62,186,33.30% +148780,394,2117,State-funded primary,206,113,93,54.90%,45.10%,0,0.00%,32,15.50%,3,203,0,1.50%,98.50%,0.00%,18,18,183,9.80% +148781,394,3306,State-funded primary,464,232,232,50.00%,50.00%,3,0.60%,69,14.90%,30,434,0,6.50%,93.50%,0.00%,36,37,421,8.80% +148782,394,3316,State-funded primary,205,94,111,45.90%,54.10%,3,1.50%,23,11.20%,13,192,0,6.30%,93.70%,0.00%,56,57,197,28.90% +148784,802,2283,State-funded primary,150,83,67,55.30%,44.70%,5,3.30%,8,5.30%,0,150,0,0.00%,100.00%,0.00%,17,17,150,11.30% +148785,802,2284,State-funded primary,212,102,110,48.10%,51.90%,1,0.50%,9,4.20%,3,209,0,1.40%,98.60%,0.00%,16,17,212,8.00% +148786,868,2176,State-funded primary,286,138,148,48.30%,51.70%,6,2.10%,30,10.50%,10,275,1,3.50%,96.20%,0.30%,28,28,286,9.80% +148787,830,2007,State-funded primary,229,99,130,43.20%,56.80%,6,2.60%,55,24.00%,14,215,0,6.10%,93.90%,0.00%,76,81,229,35.40% +148788,840,3504,State-funded primary,154,78,76,50.60%,49.40%,4,2.60%,33,21.40%,4,150,0,2.60%,97.40%,0.00%,43,43,154,27.90% +148789,840,3506,State-funded primary,71,39,32,54.90%,45.10%,6,8.50%,15,21.10%,1,70,0,1.40%,98.60%,0.00%,26,29,71,40.80% +148790,354,5402,State-funded secondary,1341,638,703,47.60%,52.40%,37,2.80%,168,12.50%,573,724,44,42.70%,54.00%,3.30%,599,654,1341,48.80% +148792,341,4013,State-funded secondary,1237,645,592,52.10%,47.90%,39,3.20%,174,14.10%,302,877,58,24.40%,70.90%,4.70%,566,570,933,61.10% +148793,383,4082,State-funded secondary,638,322,316,50.50%,49.50%,22,3.40%,116,18.20%,69,549,20,10.80%,86.10%,3.10%,300,327,638,51.30% +148796,909,6033,Independent school,6,2,4,33.30%,66.70%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148797,342,6007,Independent school,19,4,15,21.10%,78.90%,19,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148798,314,2037,State-funded primary,646,342,304,52.90%,47.10%,9,1.40%,77,11.90%,319,325,2,49.40%,50.30%,0.30%,80,80,620,12.90% +148799,936,2102,State-funded primary,366,170,196,46.40%,53.60%,28,7.70%,34,9.30%,29,337,0,7.90%,92.10%,0.00%,22,24,366,6.60% +148800,872,2105,State-funded primary,460,221,239,48.00%,52.00%,5,1.10%,65,14.10%,216,244,0,47.00%,53.00%,0.00%,82,81,420,19.30% +148802,341,6024,Independent school,17,11,6,64.70%,35.30%,4,23.50%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148804,807,6006,Independent school,6,3,3,50.00%,50.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148805,878,6088,Independent school,26,1,25,3.80%,96.20%,26,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148806,891,6046,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148807,307,6014,Independent school,30,5,25,16.70%,83.30%,28,93.30%,2,6.70%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148808,935,6030,Independent school,1,1,0,100.00%,0.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148809,390,3325,State-funded primary,77,32,45,41.60%,58.40%,2,2.60%,13,16.90%,15,62,0,19.50%,80.50%,0.00%,21,24,77,31.20% +148810,390,3330,State-funded primary,164,80,84,48.80%,51.20%,4,2.40%,27,16.50%,42,122,0,25.60%,74.40%,0.00%,38,43,164,26.20% +148811,391,3473,State-funded primary,210,103,107,49.00%,51.00%,4,1.90%,4,1.90%,27,183,0,12.90%,87.10%,0.00%,16,16,210,7.60% +148812,391,3781,State-funded primary,221,120,101,54.30%,45.70%,6,2.70%,31,14.00%,95,126,0,43.00%,57.00%,0.00%,101,95,205,46.30% +148813,391,3835,State-funded primary,209,109,100,52.20%,47.80%,3,1.40%,23,11.00%,39,170,0,18.70%,81.30%,0.00%,38,38,209,18.20% +148814,392,3318,State-funded primary,214,90,124,42.10%,57.90%,7,3.30%,25,11.70%,6,208,0,2.80%,97.20%,0.00%,71,71,194,36.60% +148815,392,3319,State-funded primary,310,141,169,45.50%,54.50%,9,2.90%,33,10.60%,13,297,0,4.20%,95.80%,0.00%,51,53,283,18.70% +148816,392,3320,State-funded primary,209,96,113,45.90%,54.10%,3,1.40%,26,12.40%,13,196,0,6.20%,93.80%,0.00%,39,39,184,21.20% +148817,805,3329,State-funded primary,250,124,126,49.60%,50.40%,4,1.60%,28,11.20%,11,239,0,4.40%,95.60%,0.00%,73,67,198,33.80% +148818,830,3008,State-funded primary,99,51,48,51.50%,48.50%,1,1.00%,14,14.10%,1,98,0,1.00%,99.00%,0.00%,14,15,99,15.20% +148819,840,3403,State-funded primary,88,48,40,54.50%,45.50%,8,9.10%,16,18.20%,12,76,0,13.60%,86.40%,0.00%,20,20,88,22.70% +148820,840,3409,State-funded primary,86,48,38,55.80%,44.20%,2,2.30%,24,27.90%,6,80,0,7.00%,93.00%,0.00%,28,29,86,33.70% +148821,926,3377,State-funded primary,39,22,17,56.40%,43.60%,5,12.80%,7,17.90%,4,35,0,10.30%,89.70%,0.00%,12,12,39,30.80% +148822,926,5217,State-funded primary,110,63,47,57.30%,42.70%,4,3.60%,6,5.50%,3,107,0,2.70%,97.30%,0.00%,16,16,105,15.20% +148823,816,2386,State-funded primary,126,58,68,46.00%,54.00%,3,2.40%,3,2.40%,3,123,0,2.40%,97.60%,0.00%,12,12,126,9.50% +148824,935,2108,State-funded primary,79,34,45,43.00%,57.00%,1,1.30%,14,17.70%,0,79,0,0.00%,100.00%,0.00%,12,12,79,15.20% +148825,882,3826,State-funded primary,395,189,206,47.80%,52.20%,7,1.80%,36,9.10%,10,383,2,2.50%,97.00%,0.50%,65,68,395,17.20% +148826,926,4033,State-funded secondary,1194,621,573,52.00%,48.00%,16,1.30%,118,9.90%,390,804,0,32.70%,67.30%,0.00%,258,251,981,25.60% +148827,925,6060,Independent school,3,0,3,0.00%,100.00%,2,66.70%,1,33.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148828,937,6036,Independent school,9,3,6,33.30%,66.70%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148829,861,6031,Independent school,15,2,13,13.30%,86.70%,6,40.00%,3,20.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148830,933,4009,State-funded secondary,734,359,375,48.90%,51.10%,9,1.20%,114,15.50%,128,606,0,17.40%,82.60%,0.00%,210,219,734,29.80% +148831,893,6044,Independent school,7,2,5,28.60%,71.40%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148835,826,4008,State-funded secondary,1489,736,753,49.40%,50.60%,28,1.90%,93,6.20%,369,1046,74,24.80%,70.20%,5.00%,467,552,1389,39.70% +148838,888,6127,Independent school,6,1,5,16.70%,83.30%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148839,831,6016,Independent school,12,7,5,58.30%,41.70%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148840,340,6006,Independent school,14,7,7,50.00%,50.00%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148841,801,2123,State-funded primary,147,70,77,47.60%,52.40%,3,2.00%,15,10.20%,96,50,1,65.30%,34.00%,0.70%,87,88,147,59.90% +148843,803,6011,Independent school,17,3,14,17.60%,82.40%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148844,390,3324,State-funded primary,97,44,53,45.40%,54.60%,1,1.00%,17,17.50%,13,84,0,13.40%,86.60%,0.00%,31,31,97,32.00% +148845,840,3384,State-funded primary,98,47,51,48.00%,52.00%,2,2.00%,14,14.30%,1,97,0,1.00%,99.00%,0.00%,34,34,98,34.70% +148846,935,3042,State-funded primary,30,7,23,23.30%,76.70%,2,6.70%,5,16.70%,2,28,0,6.70%,93.30%,0.00%,7,7,30,23.30% +148847,354,4005,State-funded secondary,1208,577,631,47.80%,52.20%,22,1.80%,124,10.30%,346,862,0,28.60%,71.40%,0.00%,347,393,1208,32.50% +148848,353,2044,State-funded primary,294,130,164,44.20%,55.80%,10,3.40%,52,17.70%,117,177,0,39.80%,60.20%,0.00%,144,151,269,56.10% +148849,382,3336,State-funded primary,210,96,114,45.70%,54.30%,8,3.80%,31,14.80%,20,190,0,9.50%,90.50%,0.00%,44,45,210,21.40% +148850,867,4058,State-funded secondary,1094,530,564,48.40%,51.60%,25,2.30%,146,13.30%,150,944,0,13.70%,86.30%,0.00%,136,153,1022,15.00% +148851,825,4067,State-funded secondary,989,498,491,50.40%,49.60%,30,3.00%,175,17.70%,305,684,0,30.80%,69.20%,0.00%,242,267,961,27.80% +148852,840,2318,State-funded primary,167,71,96,42.50%,57.50%,4,2.40%,46,27.50%,0,167,0,0.00%,100.00%,0.00%,43,43,167,25.70% +148853,840,3130,State-funded primary,92,53,39,57.60%,42.40%,2,2.20%,17,18.50%,1,91,0,1.10%,98.90%,0.00%,36,37,82,45.10% +148854,840,3441,State-funded primary,124,64,60,51.60%,48.40%,2,1.60%,23,18.50%,1,123,0,0.80%,99.20%,0.00%,11,13,108,12.00% +148855,815,4609,State-funded secondary,1398,711,687,50.90%,49.10%,18,1.30%,117,8.40%,82,1303,13,5.90%,93.20%,0.90%,105,98,1051,9.30% +148856,891,3793,State-funded primary,383,192,191,50.10%,49.90%,1,0.30%,46,12.00%,15,368,0,3.90%,96.10%,0.00%,110,103,318,32.40% +148857,891,3295,State-funded primary,170,83,87,48.80%,51.20%,1,0.60%,23,13.50%,14,156,0,8.20%,91.80%,0.00%,37,39,151,25.80% +148858,840,3525,State-funded primary,294,159,135,54.10%,45.90%,6,2.00%,63,21.40%,27,267,0,9.20%,90.80%,0.00%,135,121,265,45.70% +148859,926,7011,State-funded special school,75,14,61,18.70%,81.30%,73,97.30%,2,2.70%,5,70,0,6.70%,93.30%,0.00%,22,23,75,30.70% +148860,886,6168,Independent school,29,9,20,31.00%,69.00%,29,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148862,886,6169,Independent school,1,1,0,100.00%,0.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148863,382,3405,State-funded primary,252,119,133,47.20%,52.80%,2,0.80%,29,11.50%,24,228,0,9.50%,90.50%,0.00%,21,22,241,9.10% +148864,332,3007,State-funded primary,309,159,150,51.50%,48.50%,5,1.60%,19,6.10%,8,301,0,2.60%,97.40%,0.00%,19,20,309,6.50% +148866,351,4603,State-funded secondary,829,444,385,53.60%,46.40%,28,3.40%,98,11.80%,40,786,3,4.80%,94.80%,0.40%,119,132,829,15.90% +148867,351,5200,State-funded primary,153,86,67,56.20%,43.80%,3,2.00%,20,13.10%,16,137,0,10.50%,89.50%,0.00%,58,60,133,45.10% +148868,373,2358,State-funded primary,603,290,313,48.10%,51.90%,6,1.00%,86,14.30%,36,567,0,6.00%,94.00%,0.00%,103,97,521,18.60% +148869,380,2015,State-funded primary,200,97,103,48.50%,51.50%,6,3.00%,25,12.50%,28,172,0,14.00%,86.00%,0.00%,38,39,200,19.50% +148870,909,2124,State-funded primary,59,22,37,37.30%,62.70%,1,1.70%,13,22.00%,1,58,0,1.70%,98.30%,0.00%,14,14,36,38.90% +148871,878,2603,State-funded primary,115,54,61,47.00%,53.00%,3,2.60%,17,14.80%,1,114,0,0.90%,99.10%,0.00%,8,9,115,7.80% +148872,878,2610,State-funded primary,252,129,123,51.20%,48.80%,20,7.90%,40,15.90%,4,248,0,1.60%,98.40%,0.00%,50,46,219,21.00% +148873,878,2710,State-funded primary,119,66,53,55.50%,44.50%,2,1.70%,14,11.80%,0,119,0,0.00%,100.00%,0.00%,6,6,119,5.00% +148874,840,2729,State-funded primary,194,89,105,45.90%,54.10%,7,3.60%,30,15.50%,8,186,0,4.10%,95.90%,0.00%,65,71,145,49.00% +148875,919,2258,State-funded primary,243,122,121,50.20%,49.80%,2,0.80%,13,5.30%,45,198,0,18.50%,81.50%,0.00%,5,5,214,2.30% +148876,886,2133,State-funded primary,54,21,33,38.90%,61.10%,3,5.60%,4,7.40%,3,51,0,5.60%,94.40%,0.00%,14,14,54,25.90% +148879,815,3376,State-funded primary,123,64,59,52.00%,48.00%,3,2.40%,20,16.30%,0,123,0,0.00%,100.00%,0.00%,34,28,88,31.80% +148880,891,3530,State-funded primary,112,49,63,43.80%,56.30%,5,4.50%,10,8.90%,3,109,0,2.70%,97.30%,0.00%,17,17,106,16.00% +148882,936,2288,State-funded primary,259,136,123,52.50%,47.50%,6,2.30%,52,20.10%,32,225,2,12.40%,86.90%,0.80%,58,59,259,22.80% +148883,936,2408,State-funded primary,73,40,33,54.80%,45.20%,1,1.40%,8,11.00%,6,67,0,8.20%,91.80%,0.00%,1,1,73,1.40% +148884,866,2143,State-funded primary,216,111,105,51.40%,48.60%,1,0.50%,25,11.60%,9,207,0,4.20%,95.80%,0.00%,39,40,216,18.50% +148885,866,2156,State-funded primary,344,170,174,49.40%,50.60%,10,2.90%,36,10.50%,19,325,0,5.50%,94.50%,0.00%,76,79,344,23.00% +148886,895,1100,State-funded AP school,58,16,42,27.60%,72.40%,11,19.00%,13,22.40%,2,56,0,3.40%,96.60%,0.00%,37,41,58,70.70% +148887,330,2208,State-funded primary,210,116,94,55.20%,44.80%,1,0.50%,53,25.20%,75,135,0,35.70%,64.30%,0.00%,111,121,210,57.60% +148888,845,6069,Independent school,1,0,1,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148894,381,6027,Independent school,3,0,3,0.00%,100.00%,2,66.70%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148901,316,4016,State-funded secondary,765,0,765,0.00%,100.00%,5,0.70%,56,7.30%,586,179,0,76.60%,23.40%,0.00%,327,359,765,46.90% +148902,316,4025,State-funded secondary,1582,680,902,43.00%,57.00%,62,3.90%,115,7.30%,988,583,11,62.50%,36.90%,0.70%,636,741,1582,46.80% +148904,888,3636,State-funded primary,456,241,215,52.90%,47.10%,16,3.50%,52,11.40%,295,161,0,64.70%,35.30%,0.00%,130,131,413,31.70% +148905,856,3201,State-funded primary,202,104,98,51.50%,48.50%,3,1.50%,32,15.80%,89,113,0,44.10%,55.90%,0.00%,89,89,187,47.60% +148906,335,2225,State-funded primary,185,93,92,50.30%,49.70%,3,1.60%,38,20.50%,4,181,0,2.20%,97.80%,0.00%,91,92,160,57.50% +148907,390,3313,State-funded primary,218,106,112,48.60%,51.40%,5,2.30%,42,19.30%,130,88,0,59.60%,40.40%,0.00%,55,59,194,30.40% +148908,390,3319,State-funded primary,209,100,109,47.80%,52.20%,2,1.00%,11,5.30%,21,188,0,10.00%,90.00%,0.00%,9,9,209,4.30% +148910,390,3331,State-funded primary,208,108,100,51.90%,48.10%,6,2.90%,28,13.50%,8,200,0,3.80%,96.20%,0.00%,36,38,208,18.30% +148911,393,3305,State-funded primary,226,118,108,52.20%,47.80%,1,0.40%,31,13.70%,3,223,0,1.30%,98.70%,0.00%,65,65,198,32.80% +148912,394,3308,State-funded primary,247,124,123,50.20%,49.80%,1,0.40%,13,5.30%,113,129,5,45.70%,52.20%,2.00%,34,34,209,16.30% +148913,394,3313,State-funded primary,196,98,98,50.00%,50.00%,0,0.00%,33,16.80%,10,186,0,5.10%,94.90%,0.00%,75,76,171,44.40% +148914,840,3404,State-funded primary,407,203,204,49.90%,50.10%,3,0.70%,52,12.80%,18,389,0,4.40%,95.60%,0.00%,79,73,366,19.90% +148915,840,3462,State-funded primary,207,106,101,51.20%,48.80%,1,0.50%,40,19.30%,21,186,0,10.10%,89.90%,0.00%,93,89,194,45.90% +148916,840,3511,State-funded primary,68,38,30,55.90%,44.10%,0,0.00%,12,17.60%,0,68,0,0.00%,100.00%,0.00%,17,18,57,31.60% +148917,845,3019,State-funded primary,187,85,102,45.50%,54.50%,0,0.00%,20,10.70%,7,180,0,3.70%,96.30%,0.00%,3,5,158,3.20% +148918,886,2119,State-funded primary,342,179,163,52.30%,47.70%,5,1.50%,20,5.80%,56,286,0,16.40%,83.60%,0.00%,73,76,342,22.20% +148919,888,2096,State-funded primary,209,122,87,58.40%,41.60%,4,1.90%,22,10.50%,6,203,0,2.90%,97.10%,0.00%,77,78,198,39.40% +148920,888,2108,State-funded primary,206,105,101,51.00%,49.00%,2,1.00%,25,12.10%,0,206,0,0.00%,100.00%,0.00%,27,28,206,13.60% +148921,888,4026,State-funded secondary,612,308,304,50.30%,49.70%,6,1.00%,86,14.10%,133,476,3,21.70%,77.80%,0.50%,255,275,612,44.90% +148922,888,4195,State-funded secondary,808,388,420,48.00%,52.00%,17,2.10%,78,9.70%,147,644,17,18.20%,79.70%,2.10%,221,236,808,29.20% +148924,938,3060,State-funded primary,177,89,88,50.30%,49.70%,2,1.10%,25,14.10%,4,173,0,2.30%,97.70%,0.00%,22,23,177,13.00% +148925,866,2164,State-funded primary,219,122,97,55.70%,44.30%,9,4.10%,31,14.20%,41,178,0,18.70%,81.30%,0.00%,46,51,219,23.30% +148926,839,3614,State-funded primary,227,116,111,51.10%,48.90%,6,2.60%,30,13.20%,19,202,6,8.40%,89.00%,2.60%,93,97,227,42.70% +148927,845,2028,State-funded primary,619,330,289,53.30%,46.70%,11,1.80%,80,12.90%,79,540,0,12.80%,87.20%,0.00%,90,94,571,16.50% +148929,330,6139,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148930,936,6056,Independent school,17,2,15,11.80%,88.20%,17,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148931,343,6003,Independent school,22,7,15,31.80%,68.20%,7,31.80%,4,18.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148932,301,4008,State-funded secondary,160,27,133,16.90%,83.10%,1,0.60%,41,25.60%,52,108,0,32.50%,67.50%,0.00%,42,15,28,53.60% +148934,881,6080,Independent school,14,5,9,35.70%,64.30%,14,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148935,808,6009,Independent school,23,4,19,17.40%,82.60%,23,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148936,357,7000,State-funded special school,211,60,151,28.40%,71.60%,211,100.00%,0,0.00%,4,207,0,1.90%,98.10%,0.00%,91,110,211,52.10% +148938,332,3354,State-funded primary,222,122,100,55.00%,45.00%,5,2.30%,27,12.20%,3,219,0,1.40%,98.60%,0.00%,12,12,222,5.40% +148940,802,3114,State-funded primary,193,99,94,51.30%,48.70%,5,2.60%,9,4.70%,5,188,0,2.60%,97.40%,0.00%,30,30,193,15.50% +148941,802,3354,State-funded primary,194,98,96,50.50%,49.50%,3,1.50%,19,9.80%,85,109,0,43.80%,56.20%,0.00%,24,25,194,12.90% +148942,801,3403,State-funded primary,201,106,95,52.70%,47.30%,1,0.50%,28,13.90%,65,136,0,32.30%,67.70%,0.00%,39,40,201,19.90% +148944,830,2299,State-funded primary,174,95,79,54.60%,45.40%,4,2.30%,39,22.40%,18,156,0,10.30%,89.70%,0.00%,101,101,174,58.00% +148945,845,4038,State-funded secondary,809,364,445,45.00%,55.00%,16,2.00%,101,12.50%,21,788,0,2.60%,97.40%,0.00%,138,138,730,18.90% +148946,916,3034,State-funded primary,43,22,21,51.20%,48.80%,3,7.00%,5,11.60%,1,42,0,2.30%,97.70%,0.00%,7,7,43,16.30% +148947,855,2178,State-funded primary,329,169,160,51.40%,48.60%,0,0.00%,34,10.30%,23,306,0,7.00%,93.00%,0.00%,40,42,329,12.80% +148949,933,3361,State-funded primary,146,73,73,50.00%,50.00%,3,2.10%,13,8.90%,26,120,0,17.80%,82.20%,0.00%,11,12,146,8.20% +148950,933,3401,State-funded primary,205,104,101,50.70%,49.30%,7,3.40%,16,7.80%,40,141,24,19.50%,68.80%,11.70%,32,34,205,16.60% +148951,933,3402,State-funded primary,271,126,145,46.50%,53.50%,4,1.50%,11,4.10%,22,216,33,8.10%,79.70%,12.20%,41,42,240,17.50% +148952,933,3487,State-funded primary,203,101,102,49.80%,50.20%,4,2.00%,22,10.80%,150,53,0,73.90%,26.10%,0.00%,19,20,203,9.90% +148953,933,3488,State-funded primary,139,80,59,57.60%,42.40%,3,2.20%,16,11.50%,31,96,12,22.30%,69.10%,8.60%,19,23,139,16.50% +148954,936,2454,State-funded primary,188,91,97,48.40%,51.60%,12,6.40%,34,18.10%,3,185,0,1.60%,98.40%,0.00%,53,55,188,29.30% +148956,937,2640,State-funded primary,459,231,228,50.30%,49.70%,7,1.50%,107,23.30%,74,385,0,16.10%,83.90%,0.00%,248,239,408,58.60% +148960,869,6021,Independent school,8,4,4,50.00%,50.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +148961,845,2029,State-funded primary,379,202,177,53.30%,46.70%,7,1.80%,54,14.20%,48,331,0,12.70%,87.30%,0.00%,132,135,353,38.20% +148962,802,2015,State-funded primary,153,74,79,48.40%,51.60%,5,3.30%,19,12.40%,28,125,0,18.30%,81.70%,0.00%,6,6,153,3.90% +148965,352,4017,State-funded secondary,1030,499,531,48.40%,51.60%,22,2.10%,166,16.10%,120,908,2,11.70%,88.20%,0.20%,544,589,1030,57.20% +148969,840,2276,State-funded primary,131,61,70,46.60%,53.40%,3,2.30%,38,29.00%,15,116,0,11.50%,88.50%,0.00%,54,54,112,48.20% +148970,840,2453,State-funded primary,135,62,73,45.90%,54.10%,2,1.50%,21,15.60%,5,130,0,3.70%,96.30%,0.00%,53,53,110,48.20% +148971,306,2083,State-funded primary,198,87,111,43.90%,56.10%,7,3.50%,33,16.70%,32,166,0,16.20%,83.80%,0.00%,37,38,198,19.20% +148972,316,3508,State-funded primary,272,139,133,51.10%,48.90%,1,0.40%,48,17.60%,151,121,0,55.50%,44.50%,0.00%,75,85,250,34.00% +148973,330,3383,State-funded primary,211,106,105,50.20%,49.80%,4,1.90%,21,10.00%,136,75,0,64.50%,35.50%,0.00%,63,64,211,30.30% +148974,371,3316,State-funded primary,229,114,115,49.80%,50.20%,2,0.90%,78,34.10%,16,213,0,7.00%,93.00%,0.00%,94,85,196,43.40% +148977,391,3477,State-funded primary,459,233,226,50.80%,49.20%,9,2.00%,45,9.80%,33,426,0,7.20%,92.80%,0.00%,104,102,417,24.50% +148978,391,3765,State-funded primary,228,121,107,53.10%,46.90%,6,2.60%,32,14.00%,48,180,0,21.10%,78.90%,0.00%,73,70,208,33.70% +148979,391,3842,State-funded primary,210,93,117,44.30%,55.70%,8,3.80%,40,19.00%,73,137,0,34.80%,65.20%,0.00%,129,131,210,62.40% +148980,392,3315,State-funded primary,200,106,94,53.00%,47.00%,5,2.50%,26,13.00%,14,186,0,7.00%,93.00%,0.00%,26,27,200,13.50% +148981,392,3316,State-funded primary,226,112,114,49.60%,50.40%,9,4.00%,18,8.00%,31,195,0,13.70%,86.30%,0.00%,59,60,202,29.70% +148982,822,3300,State-funded primary,200,98,102,49.00%,51.00%,3,1.50%,16,8.00%,32,168,0,16.00%,84.00%,0.00%,30,30,200,15.00% +148983,873,2222,State-funded primary,88,43,45,48.90%,51.10%,8,9.10%,11,12.50%,4,84,0,4.50%,95.50%,0.00%,16,16,88,18.20% +148984,896,2239,State-funded primary,127,69,58,54.30%,45.70%,13,10.20%,32,25.20%,17,110,0,13.40%,86.60%,0.00%,73,73,127,57.50% +148985,895,2356,State-funded primary,209,98,111,46.90%,53.10%,13,6.20%,28,13.40%,10,199,0,4.80%,95.20%,0.00%,23,25,209,12.00% +148986,805,2211,State-funded primary,265,137,128,51.70%,48.30%,1,0.40%,61,23.00%,13,252,0,4.90%,95.10%,0.00%,127,130,217,59.90% +148987,878,2612,State-funded primary,177,86,91,48.60%,51.40%,3,1.70%,32,18.10%,0,177,0,0.00%,100.00%,0.00%,30,33,153,21.60% +148989,919,2140,State-funded primary,194,93,101,47.90%,52.10%,8,4.10%,41,21.10%,34,160,0,17.50%,82.50%,0.00%,71,72,194,37.10% +148990,919,3403,State-funded primary,162,84,78,51.90%,48.10%,7,4.30%,13,8.00%,49,113,0,30.20%,69.80%,0.00%,20,20,162,12.30% +148991,886,2272,State-funded primary,438,205,233,46.80%,53.20%,14,3.20%,49,11.20%,97,341,0,22.10%,77.90%,0.00%,157,158,406,38.90% +148992,886,2672,State-funded primary,424,206,218,48.60%,51.40%,14,3.30%,36,8.50%,22,402,0,5.20%,94.80%,0.00%,114,115,424,27.10% +148993,888,3435,State-funded primary,205,110,95,53.70%,46.30%,9,4.40%,41,20.00%,21,184,0,10.20%,89.80%,0.00%,42,42,205,20.50% +148994,926,3001,State-funded primary,102,45,57,44.10%,55.90%,0,0.00%,24,23.50%,0,102,0,0.00%,100.00%,0.00%,11,11,102,10.80% +148995,926,3083,State-funded primary,105,42,63,40.00%,60.00%,4,3.80%,15,14.30%,0,99,6,0.00%,94.30%,5.70%,15,15,105,14.30% +148996,926,3339,State-funded primary,134,67,67,50.00%,50.00%,8,6.00%,18,13.40%,3,131,0,2.20%,97.80%,0.00%,23,23,134,17.20% +148997,815,2364,State-funded primary,481,241,240,50.10%,49.90%,13,2.70%,63,13.10%,71,410,0,14.80%,85.20%,0.00%,137,129,438,29.50% +148998,929,3746,State-funded primary,81,44,37,54.30%,45.70%,1,1.20%,6,7.40%,27,54,0,33.30%,66.70%,0.00%,12,12,71,16.90% +148999,929,3888,State-funded primary,175,93,82,53.10%,46.90%,4,2.30%,15,8.60%,5,170,0,2.90%,97.10%,0.00%,12,11,148,7.40% +149000,860,2185,State-funded primary,204,92,112,45.10%,54.90%,8,3.90%,46,22.50%,10,194,0,4.90%,95.10%,0.00%,111,112,164,68.30% +149001,860,2424,State-funded primary,317,155,162,48.90%,51.10%,11,3.50%,62,19.60%,10,307,0,3.20%,96.80%,0.00%,143,144,317,45.40% +149002,860,7750,State-funded special school,31,16,15,51.60%,48.40%,27,87.10%,4,12.90%,1,30,0,3.20%,96.80%,0.00%,6,6,20,30.00% +149003,936,3019,State-funded primary,359,193,166,53.80%,46.20%,8,2.20%,33,9.20%,105,254,0,29.20%,70.80%,0.00%,24,27,359,7.50% +149004,936,3055,State-funded primary,268,127,141,47.40%,52.60%,6,2.20%,21,7.80%,85,183,0,31.70%,68.30%,0.00%,23,25,268,9.30% +149006,938,3343,State-funded primary,388,202,186,52.10%,47.90%,13,3.40%,43,11.10%,12,376,0,3.10%,96.90%,0.00%,42,42,388,10.80% +149007,808,2000,State-funded primary,280,136,144,48.60%,51.40%,6,2.10%,54,19.30%,11,269,0,3.90%,96.10%,0.00%,100,102,236,43.20% +149008,807,3397,State-funded primary,204,100,104,49.00%,51.00%,3,1.50%,40,19.60%,0,204,0,0.00%,100.00%,0.00%,65,68,168,40.50% +149009,887,1108,State-funded AP school,39,18,21,46.20%,53.80%,0,0.00%,6,15.40%,6,32,1,15.40%,82.10%,2.60%,15,26,39,66.70% +149010,879,3777,State-funded primary,359,178,181,49.60%,50.40%,5,1.40%,106,29.50%,15,344,0,4.20%,95.80%,0.00%,121,123,310,39.70% +149011,380,4093,State-funded secondary,1638,717,921,43.80%,56.20%,71,4.30%,78,4.80%,496,1111,31,30.30%,67.80%,1.90%,675,670,1392,48.10% +149017,890,6129,Independent school,39,15,24,38.50%,61.50%,1,2.60%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149018,211,6011,Independent school,18,6,12,33.30%,66.70%,18,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149019,865,6059,Independent school,36,5,31,13.90%,86.10%,36,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149020,354,6041,Independent school,11,3,8,27.30%,72.70%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149022,880,6011,Independent school,6,3,3,50.00%,50.00%,1,16.70%,5,83.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149024,860,6089,Independent school,20,7,13,35.00%,65.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149025,383,2035,State-funded primary,81,41,40,50.60%,49.40%,0,0.00%,19,23.50%,3,78,0,3.70%,96.30%,0.00%,29,33,66,50.00% +149026,865,6060,Independent school,12,3,9,25.00%,75.00%,12,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149027,873,6058,Independent school,20,7,13,35.00%,65.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149028,850,6106,Independent school,9,7,2,77.80%,22.20%,0,0.00%,1,11.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149029,343,2006,State-funded primary,181,83,98,45.90%,54.10%,1,0.60%,72,39.80%,7,174,0,3.90%,96.10%,0.00%,112,112,170,65.90% +149030,805,2342,State-funded primary,433,230,203,53.10%,46.90%,5,1.20%,89,20.60%,4,429,0,0.90%,99.10%,0.00%,198,203,344,59.00% +149031,342,4001,State-funded secondary,541,276,265,51.00%,49.00%,17,3.10%,96,17.70%,44,497,0,8.10%,91.90%,0.00%,232,260,541,48.10% +149032,876,4006,State-funded secondary,417,201,216,48.20%,51.80%,8,1.90%,86,20.60%,16,401,0,3.80%,96.20%,0.00%,208,213,417,51.10% +149033,312,1102,State-funded AP school,55,22,33,40.00%,60.00%,0,0.00%,17,30.90%,14,39,2,25.50%,70.90%,3.60%,15,30,55,54.50% +149034,393,3303,State-funded primary,210,106,104,50.50%,49.50%,2,1.00%,26,12.40%,2,208,0,1.00%,99.00%,0.00%,23,25,210,11.90% +149035,393,3311,State-funded primary,204,99,105,48.50%,51.50%,0,0.00%,32,15.70%,15,189,0,7.40%,92.60%,0.00%,28,29,204,14.20% +149036,394,3302,State-funded primary,237,129,108,54.40%,45.60%,2,0.80%,35,14.80%,6,231,0,2.50%,97.50%,0.00%,39,39,210,18.60% +149037,936,2061,State-funded primary,162,79,83,48.80%,51.20%,2,1.20%,20,12.30%,12,150,0,7.40%,92.60%,0.00%,6,6,162,3.70% +149038,866,2025,State-funded primary,47,23,24,48.90%,51.10%,0,0.00%,5,10.60%,5,42,0,10.60%,89.40%,0.00%,0,0,26,0.00% +149039,886,4028,State-funded secondary,149,78,71,52.30%,47.70%,7,4.70%,20,13.40%,29,120,0,19.50%,80.50%,0.00%,55,65,149,43.60% +149040,855,2047,State-funded primary,6,3,3,50.00%,50.00%,1,16.70%,1,16.70%,0,6,0,0.00%,100.00%,0.00%,1,1,6,16.70% +149041,878,7012,State-funded special school,34,12,22,35.30%,64.70%,34,100.00%,0,0.00%,1,33,0,2.90%,97.10%,0.00%,21,23,34,67.60% +149042,330,4044,State-funded secondary,121,36,85,29.80%,70.20%,2,1.70%,29,24.00%,13,108,0,10.70%,89.30%,0.00%,27,45,121,37.20% +149046,382,2079,State-funded primary,191,87,104,45.50%,54.50%,0,0.00%,39,20.40%,0,191,0,0.00%,100.00%,0.00%,19,19,168,11.30% +149047,343,4009,State-funded secondary,981,508,473,51.80%,48.20%,8,0.80%,101,10.30%,60,920,1,6.10%,93.80%,0.10%,244,239,845,28.30% +149048,303,3506,State-funded primary,240,143,97,59.60%,40.40%,9,3.80%,33,13.80%,32,208,0,13.30%,86.70%,0.00%,62,64,197,32.50% +149049,330,2025,State-funded primary,196,102,94,52.00%,48.00%,5,2.60%,38,19.40%,74,121,1,37.80%,61.70%,0.50%,78,67,162,41.40% +149050,351,2048,State-funded primary,241,125,116,51.90%,48.10%,7,2.90%,28,11.60%,27,214,0,11.20%,88.80%,0.00%,58,55,222,24.80% +149051,390,3326,State-funded primary,191,116,75,60.70%,39.30%,0,0.00%,10,5.20%,6,185,0,3.10%,96.90%,0.00%,10,11,191,5.80% +149052,390,3328,State-funded primary,239,114,125,47.70%,52.30%,1,0.40%,12,5.00%,9,230,0,3.80%,96.20%,0.00%,16,16,210,7.60% +149053,390,3333,State-funded primary,207,93,114,44.90%,55.10%,3,1.40%,10,4.80%,5,202,0,2.40%,97.60%,0.00%,10,11,207,5.30% +149054,390,3339,State-funded primary,144,80,64,55.60%,44.40%,3,2.10%,16,11.10%,62,82,0,43.10%,56.90%,0.00%,55,55,133,41.40% +149055,878,3004,State-funded primary,44,18,26,40.90%,59.10%,1,2.30%,4,9.10%,0,44,0,0.00%,100.00%,0.00%,11,11,44,25.00% +149056,878,3313,State-funded primary,84,34,50,40.50%,59.50%,0,0.00%,14,16.70%,0,84,0,0.00%,100.00%,0.00%,5,5,84,6.00% +149057,840,3421,State-funded primary,158,71,87,44.90%,55.10%,1,0.60%,19,12.00%,4,154,0,2.50%,97.50%,0.00%,52,53,146,36.30% +149058,840,3461,State-funded primary,100,49,51,49.00%,51.00%,0,0.00%,28,28.00%,5,95,0,5.00%,95.00%,0.00%,11,11,90,12.20% +149059,840,3470,State-funded primary,179,88,91,49.20%,50.80%,8,4.50%,24,13.40%,11,168,0,6.10%,93.90%,0.00%,59,61,179,34.10% +149060,840,3481,State-funded primary,80,42,38,52.50%,47.50%,0,0.00%,15,18.80%,11,69,0,13.80%,86.30%,0.00%,11,11,80,13.80% +149061,941,2025,State-funded primary,334,167,167,50.00%,50.00%,5,1.50%,25,7.50%,16,305,13,4.80%,91.30%,3.90%,36,37,334,11.10% +149062,334,1109,State-funded AP school,11,1,10,9.10%,90.90%,4,36.40%,7,63.60%,0,11,0,0.00%,100.00%,0.00%,7,8,11,72.70% +149063,355,6042,Independent school,18,0,18,0.00%,100.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149064,916,6029,Independent school,10,0,10,0.00%,100.00%,10,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149066,881,2188,State-funded primary,45,21,24,46.70%,53.30%,0,0.00%,12,26.70%,1,44,0,2.20%,97.80%,0.00%,8,10,45,22.20% +149067,935,2230,State-funded primary,24,16,8,66.70%,33.30%,0,0.00%,0,0.00%,4,20,0,16.70%,83.30%,0.00%,4,4,24,16.70% +149068,891,2042,State-funded primary,85,44,41,51.80%,48.20%,0,0.00%,8,9.40%,35,50,0,41.20%,58.80%,0.00%,10,12,72,16.70% +149069,887,2025,State-funded primary,26,10,16,38.50%,61.50%,0,0.00%,7,26.90%,5,21,0,19.20%,80.80%,0.00%,0,0,26,0.00% +149070,886,6170,Independent school,8,0,8,0.00%,100.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149071,933,6020,Independent school,35,19,16,54.30%,45.70%,35,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149072,935,7018,State-funded special school,19,3,16,15.80%,84.20%,19,100.00%,0,0.00%,1,18,0,5.30%,94.70%,0.00%,7,11,19,57.90% +149073,916,7007,State-funded special school,32,6,26,18.80%,81.30%,32,100.00%,0,0.00%,1,31,0,3.10%,96.90%,0.00%,16,20,32,62.50% +149074,940,2000,State-funded primary,27,11,16,40.70%,59.30%,1,3.70%,5,18.50%,7,20,0,25.90%,74.10%,0.00%,2,2,27,7.40% +149075,887,4005,State-funded secondary,142,65,77,45.80%,54.20%,1,0.70%,30,21.10%,22,115,5,15.50%,81.00%,3.50%,39,42,142,29.60% +149077,896,2011,State-funded primary,102,41,61,40.20%,59.80%,9,8.80%,17,16.70%,3,99,0,2.90%,97.10%,0.00%,45,42,88,47.70% +149078,919,4037,State-funded secondary,107,57,50,53.30%,46.70%,4,3.70%,15,14.00%,13,94,0,12.10%,87.90%,0.00%,13,20,107,18.70% +149079,860,2043,State-funded primary,14,7,7,50.00%,50.00%,0,0.00%,0,0.00%,1,13,0,7.10%,92.90%,0.00%,0,0,14,0.00% +149080,356,2025,State-funded primary,54,18,36,33.30%,66.70%,1,1.90%,4,7.40%,5,49,0,9.30%,90.70%,0.00%,0,0,27,0.00% +149081,860,2044,State-funded primary,53,31,22,58.50%,41.50%,0,0.00%,2,3.80%,5,48,0,9.40%,90.60%,0.00%,2,2,26,7.70% +149083,916,6041,Independent school,15,6,9,40.00%,60.00%,15,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149084,211,2010,State-funded primary,30,10,20,33.30%,66.70%,1,3.30%,0,0.00%,10,20,0,33.30%,66.70%,0.00%,1,1,30,3.30% +149086,893,7002,State-funded special school,38,10,28,26.30%,73.70%,38,100.00%,0,0.00%,0,38,0,0.00%,100.00%,0.00%,20,21,38,55.30% +149087,373,7000,State-funded special school,61,16,45,26.20%,73.80%,61,100.00%,0,0.00%,0,61,0,0.00%,100.00%,0.00%,35,36,61,59.00% +149089,896,2113,State-funded primary,76,38,38,50.00%,50.00%,0,0.00%,20,26.30%,0,76,0,0.00%,100.00%,0.00%,9,9,76,11.80% +149090,878,2206,State-funded primary,116,57,59,49.10%,50.90%,4,3.40%,11,9.50%,1,115,0,0.90%,99.10%,0.00%,15,14,93,15.10% +149091,885,7009,State-funded special school,153,44,109,28.80%,71.20%,153,100.00%,0,0.00%,23,130,0,15.00%,85.00%,0.00%,60,52,122,42.60% +149092,896,3803,State-funded primary,354,174,180,49.20%,50.80%,9,2.50%,75,21.20%,26,328,0,7.30%,92.70%,0.00%,150,150,297,50.50% +149093,380,2069,State-funded primary,176,92,84,52.30%,47.70%,5,2.80%,70,39.80%,19,157,0,10.80%,89.20%,0.00%,72,74,164,45.10% +149094,351,6020,Independent school,13,6,7,46.20%,53.80%,12,92.30%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149096,825,2052,State-funded primary,186,95,91,51.10%,48.90%,1,0.50%,39,21.00%,61,125,0,32.80%,67.20%,0.00%,80,80,154,51.90% +149097,825,2054,State-funded primary,200,92,108,46.00%,54.00%,9,4.50%,32,16.00%,48,152,0,24.00%,76.00%,0.00%,64,61,178,34.30% +149098,873,2099,State-funded primary,60,26,34,43.30%,56.70%,2,3.30%,8,13.30%,16,43,1,26.70%,71.70%,1.70%,7,8,44,18.20% +149099,888,4031,State-funded secondary,38,12,26,31.60%,68.40%,0,0.00%,4,10.50%,2,36,0,5.30%,94.70%,0.00%,1,0,0,0.00% +149100,308,7003,State-funded special school,32,7,24,21.90%,75.00%,32,100.00%,0,0.00%,7,25,0,21.90%,78.10%,0.00%,14,26,32,81.30% +149101,807,7001,State-funded special school,27,5,22,18.50%,81.50%,27,100.00%,0,0.00%,1,26,0,3.70%,96.30%,0.00%,22,23,27,85.20% +149102,825,4014,State-funded secondary,181,72,109,39.80%,60.20%,16,8.80%,29,16.00%,21,160,0,11.60%,88.40%,0.00%,35,38,181,21.00% +149103,874,2017,State-funded primary,49,31,18,63.30%,36.70%,0,0.00%,2,4.10%,15,34,0,30.60%,69.40%,0.00%,13,13,35,37.10% +149104,874,4007,State-funded secondary,119,68,51,57.10%,42.90%,4,3.40%,19,16.00%,27,92,0,22.70%,77.30%,0.00%,38,40,119,33.60% +149105,891,2043,State-funded primary,54,23,31,42.60%,57.40%,0,0.00%,5,9.30%,1,51,2,1.90%,94.40%,3.70%,8,11,54,20.40% +149106,826,4009,State-funded secondary,233,109,124,46.80%,53.20%,2,0.90%,20,8.60%,29,197,7,12.40%,84.50%,3.00%,42,44,201,21.90% +149107,823,4013,State-funded secondary,285,152,133,53.30%,46.70%,11,3.90%,31,10.90%,96,188,1,33.70%,66.00%,0.40%,79,87,285,30.50% +149108,935,7019,State-funded special school,35,6,29,17.10%,82.90%,30,85.70%,5,14.30%,0,35,0,0.00%,100.00%,0.00%,25,27,35,77.10% +149109,806,6005,Independent school,33,24,9,72.70%,27.30%,24,72.70%,9,27.30%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149112,882,6085,Independent school,5,2,3,40.00%,60.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149113,306,3006,State-funded primary,395,188,207,47.60%,52.40%,15,3.80%,74,18.70%,184,211,0,46.60%,53.40%,0.00%,184,191,395,48.40% +149114,306,3007,State-funded primary,263,125,138,47.50%,52.50%,1,0.40%,39,14.80%,190,73,0,72.20%,27.80%,0.00%,84,78,227,34.40% +149115,936,2959,State-funded primary,217,126,91,58.10%,41.90%,9,4.10%,35,16.10%,22,194,1,10.10%,89.40%,0.50%,48,49,217,22.60% +149116,825,2056,State-funded primary,232,105,127,45.30%,54.70%,4,1.70%,40,17.20%,20,212,0,8.60%,91.40%,0.00%,33,37,232,15.90% +149117,865,2057,State-funded primary,61,32,29,52.50%,47.50%,1,1.60%,9,14.80%,1,60,0,1.60%,98.40%,0.00%,2,2,61,3.30% +149118,372,2120,State-funded primary,95,39,56,41.10%,58.90%,6,6.30%,22,23.20%,6,89,0,6.30%,93.70%,0.00%,51,51,90,56.70% +149119,373,2302,State-funded primary,256,128,128,50.00%,50.00%,6,2.30%,24,9.40%,3,253,0,1.20%,98.80%,0.00%,69,58,202,28.70% +149120,380,3000,State-funded primary,662,341,321,51.50%,48.50%,8,1.20%,97,14.70%,527,135,0,79.60%,20.40%,0.00%,263,264,599,44.10% +149121,801,2139,State-funded primary,190,95,95,50.00%,50.00%,4,2.10%,36,18.90%,153,37,0,80.50%,19.50%,0.00%,87,90,190,47.40% +149122,840,2261,State-funded primary,98,48,50,49.00%,51.00%,3,3.10%,20,20.40%,2,96,0,2.00%,98.00%,0.00%,44,42,89,47.20% +149123,886,3020,State-funded primary,99,42,57,42.40%,57.60%,1,1.00%,5,5.10%,5,94,0,5.10%,94.90%,0.00%,9,11,99,11.10% +149124,888,3434,State-funded primary,211,106,105,50.20%,49.80%,3,1.40%,31,14.70%,27,184,0,12.80%,87.20%,0.00%,34,35,211,16.60% +149126,888,3755,State-funded primary,220,96,124,43.60%,56.40%,7,3.20%,11,5.00%,22,198,0,10.00%,90.00%,0.00%,22,23,220,10.50% +149127,940,2099,State-funded primary,241,122,119,50.60%,49.40%,1,0.40%,33,13.70%,100,141,0,41.50%,58.50%,0.00%,53,58,241,24.10% +149128,860,2418,State-funded primary,406,198,208,48.80%,51.20%,9,2.20%,51,12.60%,6,400,0,1.50%,98.50%,0.00%,75,75,406,18.50% +149129,938,3352,State-funded primary,402,195,207,48.50%,51.50%,7,1.70%,64,15.90%,46,355,1,11.40%,88.30%,0.20%,53,55,402,13.70% +149130,866,2211,State-funded primary,418,205,213,49.00%,51.00%,23,5.50%,27,6.50%,148,270,0,35.40%,64.60%,0.00%,69,73,418,17.50% +149131,330,2209,State-funded primary,409,187,222,45.70%,54.30%,6,1.50%,70,17.10%,43,365,1,10.50%,89.20%,0.20%,135,136,409,33.30% +149132,341,2044,State-funded primary,194,98,96,50.50%,49.50%,4,2.10%,30,15.50%,144,50,0,74.20%,25.80%,0.00%,51,51,180,28.30% +149133,341,2049,State-funded primary,226,113,113,50.00%,50.00%,5,2.20%,42,18.60%,24,202,0,10.60%,89.40%,0.00%,145,146,205,71.20% +149134,341,2053,State-funded primary,315,137,178,43.50%,56.50%,4,1.30%,42,13.30%,72,243,0,22.90%,77.10%,0.00%,161,165,288,57.30% +149135,908,2051,State-funded primary,23,8,15,34.80%,65.20%,0,0.00%,2,8.70%,1,22,0,4.30%,95.70%,0.00%,3,3,13,23.10% +149136,891,2044,State-funded primary,107,56,51,52.30%,47.70%,1,0.90%,17,15.90%,26,81,0,24.30%,75.70%,0.00%,24,21,78,26.90% +149137,353,4012,State-funded secondary,241,126,115,52.30%,47.70%,5,2.10%,38,15.80%,45,194,2,18.70%,80.50%,0.80%,77,85,241,35.30% +149138,845,7005,State-funded special school,67,25,42,37.30%,62.70%,67,100.00%,0,0.00%,2,65,0,3.00%,97.00%,0.00%,22,23,67,34.30% +149140,850,6107,Independent school,25,12,13,48.00%,52.00%,25,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149142,916,2121,State-funded primary,213,103,110,48.40%,51.60%,8,3.80%,46,21.60%,11,202,0,5.20%,94.80%,0.00%,35,35,187,18.70% +149143,838,2014,State-funded primary,70,34,36,48.60%,51.40%,0,0.00%,9,12.90%,9,61,0,12.90%,87.10%,0.00%,11,12,62,19.40% +149144,855,3345,State-funded primary,256,114,142,44.50%,55.50%,3,1.20%,39,15.20%,28,228,0,10.90%,89.10%,0.00%,31,32,256,12.50% +149145,310,6016,Independent school,8,1,7,12.50%,87.50%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149146,886,6174,Independent school,8,4,4,50.00%,50.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149148,316,6012,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149149,802,7000,State-funded special school,22,0,22,0.00%,100.00%,22,100.00%,0,0.00%,0,22,0,0.00%,100.00%,0.00%,11,14,22,63.60% +149150,359,6006,Independent school,6,2,4,33.30%,66.70%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149151,935,7020,State-funded special school,41,7,34,17.10%,82.90%,41,100.00%,0,0.00%,0,41,0,0.00%,100.00%,0.00%,31,34,41,82.90% +149152,371,6015,Independent school,13,3,10,23.10%,76.90%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149155,330,4045,State-funded secondary,549,269,280,49.00%,51.00%,5,0.90%,86,15.70%,218,330,1,39.70%,60.10%,0.20%,274,321,549,58.50% +149156,333,7006,State-funded special school,15,10,5,66.70%,33.30%,15,100.00%,0,0.00%,1,14,0,6.70%,93.30%,0.00%,7,7,15,46.70% +149157,303,6004,Independent school,5,2,3,40.00%,60.00%,5,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149158,202,6006,Independent school,144,107,37,74.30%,25.70%,0,0.00%,5,3.50%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149159,874,2018,State-funded primary,88,53,35,60.20%,39.80%,0,0.00%,14,15.90%,20,59,9,22.70%,67.00%,10.20%,12,12,88,13.60% +149161,380,3360,State-funded primary,451,201,250,44.60%,55.40%,8,1.80%,56,12.40%,11,440,0,2.40%,97.60%,0.00%,27,28,417,6.70% +149162,382,4500,State-funded secondary,1237,593,644,47.90%,52.10%,20,1.60%,57,4.60%,57,1157,23,4.60%,93.50%,1.90%,311,328,1237,26.50% +149164,838,3652,State-funded primary,209,112,97,53.60%,46.40%,6,2.90%,33,15.80%,9,200,0,4.30%,95.70%,0.00%,38,38,209,18.20% +149165,840,3301,State-funded primary,304,155,149,51.00%,49.00%,9,3.00%,22,7.20%,5,299,0,1.60%,98.40%,0.00%,41,42,304,13.80% +149166,860,2198,State-funded primary,80,34,46,42.50%,57.50%,2,2.50%,8,10.00%,3,77,0,3.80%,96.30%,0.00%,8,8,80,10.00% +149167,937,3308,State-funded primary,195,95,100,48.70%,51.30%,4,2.10%,16,8.20%,13,182,0,6.70%,93.30%,0.00%,30,30,195,15.40% +149168,878,2717,State-funded primary,110,56,54,50.90%,49.10%,1,0.90%,10,9.10%,4,106,0,3.60%,96.40%,0.00%,8,9,110,8.20% +149185,208,6006,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149186,873,6060,Independent school,20,7,13,35.00%,65.00%,20,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149188,372,7004,State-funded special school,131,19,112,14.50%,85.50%,128,97.70%,3,2.30%,3,128,0,2.30%,97.70%,0.00%,84,96,131,73.30% +149189,356,6014,Independent school,6,3,3,50.00%,50.00%,6,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149190,359,2011,State-funded primary,197,93,104,47.20%,52.80%,3,1.50%,34,17.30%,17,180,0,8.60%,91.40%,0.00%,71,68,163,41.70% +149191,878,2625,State-funded primary,210,108,102,51.40%,48.60%,4,1.90%,23,11.00%,9,201,0,4.30%,95.70%,0.00%,29,29,210,13.80% +149192,879,3757,State-funded primary,138,69,69,50.00%,50.00%,4,2.90%,29,21.00%,5,133,0,3.60%,96.40%,0.00%,42,46,138,33.30% +149193,866,2011,State-funded primary,227,112,115,49.30%,50.70%,7,3.10%,29,12.80%,40,187,0,17.60%,82.40%,0.00%,29,31,207,15.00% +149194,893,6045,Independent school,51,15,36,29.40%,70.60%,49,96.10%,2,3.90%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149196,893,6046,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149197,926,4034,State-funded secondary,924,450,474,48.70%,51.30%,35,3.80%,146,15.80%,37,887,0,4.00%,96.00%,0.00%,162,180,884,20.40% +149198,372,2044,State-funded primary,112,60,52,53.60%,46.40%,5,4.50%,36,32.10%,7,105,0,6.30%,93.80%,0.00%,61,64,105,61.00% +149200,855,6057,Independent school,4,0,4,0.00%,100.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149201,352,6020,Independent school,13,2,11,15.40%,84.60%,13,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149202,886,6175,Independent school,11,2,9,18.20%,81.80%,11,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149204,825,4015,State-funded secondary,522,229,293,43.90%,56.10%,9,1.70%,43,8.20%,333,186,3,63.80%,35.60%,0.60%,53,67,480,14.00% +149205,815,4011,State-funded secondary,440,221,219,50.20%,49.80%,22,5.00%,79,18.00%,14,425,1,3.20%,96.60%,0.20%,163,181,440,41.10% +149206,919,2365,State-funded primary,470,223,247,47.40%,52.60%,16,3.40%,44,9.40%,51,419,0,10.90%,89.10%,0.00%,30,33,415,8.00% +149207,865,3464,State-funded primary,331,166,165,50.20%,49.80%,6,1.80%,57,17.20%,26,305,0,7.90%,92.10%,0.00%,84,85,331,25.70% +149209,891,2045,State-funded primary,323,144,179,44.60%,55.40%,5,1.50%,53,16.40%,36,287,0,11.10%,88.90%,0.00%,146,144,300,48.00% +149211,381,2037,State-funded primary,158,79,79,50.00%,50.00%,6,3.80%,20,12.70%,91,49,18,57.60%,31.00%,11.40%,69,73,158,46.20% +149212,881,6090,Independent school,7,2,5,28.60%,71.40%,7,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149213,358,6010,Independent school,4,2,2,50.00%,50.00%,4,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149217,938,6012,Independent school,11,6,5,54.50%,45.50%,10,90.90%,1,9.10%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149219,886,6177,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149220,933,6027,Independent school,21,6,15,28.60%,71.40%,21,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149221,332,2015,State-funded primary,638,303,335,47.50%,52.50%,18,2.80%,105,16.50%,157,481,0,24.60%,75.40%,0.00%,182,185,590,31.40% +149222,880,2006,State-funded primary,492,243,249,49.40%,50.60%,17,3.50%,68,13.80%,77,415,0,15.70%,84.30%,0.00%,196,200,492,40.70% +149225,840,2593,State-funded primary,260,131,129,50.40%,49.60%,9,3.50%,49,18.80%,1,259,0,0.40%,99.60%,0.00%,37,35,216,16.20% +149226,815,2060,State-funded primary,39,13,26,33.30%,66.70%,0,0.00%,5,12.80%,0,39,0,0.00%,100.00%,0.00%,5,6,33,18.20% +149228,336,7012,State-funded special school,116,47,69,40.50%,59.50%,116,100.00%,0,0.00%,22,94,0,19.00%,81.00%,0.00%,68,65,105,61.90% +149232,380,2075,State-funded primary,673,335,338,49.80%,50.20%,11,1.60%,166,24.70%,463,210,0,68.80%,31.20%,0.00%,303,313,612,51.10% +149233,380,2185,State-funded primary,404,197,207,48.80%,51.20%,25,6.20%,12,3.00%,319,85,0,79.00%,21.00%,0.00%,120,122,357,34.20% +149235,394,4059,State-funded secondary,634,324,310,51.10%,48.90%,16,2.50%,84,13.20%,13,621,0,2.10%,97.90%,0.00%,268,285,634,45.00% +149243,805,7027,State-funded special school,93,29,64,31.20%,68.80%,93,100.00%,0,0.00%,3,90,0,3.20%,96.80%,0.00%,48,50,93,53.80% +149244,909,2513,State-funded primary,189,79,110,41.80%,58.20%,16,8.50%,14,7.40%,0,189,0,0.00%,100.00%,0.00%,39,42,176,23.90% +149245,909,3410,State-funded primary,212,110,102,51.90%,48.10%,10,4.70%,26,12.30%,23,189,0,10.80%,89.20%,0.00%,72,75,175,42.90% +149246,909,3415,State-funded primary,206,100,106,48.50%,51.50%,10,4.90%,29,14.10%,3,203,0,1.50%,98.50%,0.00%,79,81,179,45.30% +149247,878,4109,State-funded secondary,922,489,433,53.00%,47.00%,39,4.20%,111,12.00%,23,898,1,2.50%,97.40%,0.10%,177,212,747,28.40% +149251,840,4192,State-funded secondary,361,180,181,49.90%,50.10%,18,5.00%,74,20.50%,16,345,0,4.40%,95.60%,0.00%,206,217,361,60.10% +149252,845,2094,State-funded primary,375,175,200,46.70%,53.30%,6,1.60%,53,14.10%,24,351,0,6.40%,93.60%,0.00%,108,109,375,29.10% +149253,881,2998,State-funded primary,284,138,146,48.60%,51.40%,18,6.30%,30,10.60%,17,266,1,6.00%,93.70%,0.40%,104,118,275,42.90% +149254,916,3017,State-funded primary,63,38,25,60.30%,39.70%,0,0.00%,9,14.30%,3,60,0,4.80%,95.20%,0.00%,2,2,63,3.20% +149255,916,3045,State-funded primary,83,30,53,36.10%,63.90%,1,1.20%,16,19.30%,2,81,0,2.40%,97.60%,0.00%,13,13,65,20.00% +149256,916,3071,State-funded primary,29,19,10,65.50%,34.50%,2,6.90%,6,20.70%,1,28,0,3.40%,96.60%,0.00%,7,7,29,24.10% +149257,916,3364,State-funded primary,159,68,91,42.80%,57.20%,3,1.90%,28,17.60%,4,155,0,2.50%,97.50%,0.00%,24,26,135,19.30% +149258,884,2024,State-funded primary,219,125,94,57.10%,42.90%,2,0.90%,38,17.40%,43,175,1,19.60%,79.90%,0.50%,46,46,191,24.10% +149259,811,2706,State-funded primary,236,119,117,50.40%,49.60%,8,3.40%,29,12.30%,0,236,0,0.00%,100.00%,0.00%,31,32,209,15.30% +149260,811,2734,State-funded primary,216,103,113,47.70%,52.30%,5,2.30%,30,13.90%,8,208,0,3.70%,96.30%,0.00%,34,37,216,17.10% +149261,886,3718,State-funded primary,203,92,111,45.30%,54.70%,0,0.00%,15,7.40%,22,181,0,10.80%,89.20%,0.00%,28,29,203,14.30% +149262,890,3626,State-funded primary,210,112,98,53.30%,46.70%,5,2.40%,24,11.40%,59,150,1,28.10%,71.40%,0.50%,47,49,210,23.30% +149263,888,3711,State-funded primary,224,120,104,53.60%,46.40%,5,2.20%,47,21.00%,2,222,0,0.90%,99.10%,0.00%,65,64,208,30.80% +149264,888,3712,State-funded primary,53,29,24,54.70%,45.30%,1,1.90%,7,13.20%,2,51,0,3.80%,96.20%,0.00%,13,14,53,26.40% +149265,888,3720,State-funded primary,190,101,89,53.20%,46.80%,2,1.10%,28,14.70%,4,186,0,2.10%,97.90%,0.00%,26,28,190,14.70% +149266,890,3813,State-funded primary,223,102,121,45.70%,54.30%,3,1.30%,37,16.60%,8,214,1,3.60%,96.00%,0.40%,50,50,201,24.90% +149267,855,2032,State-funded primary,401,199,202,49.60%,50.40%,10,2.50%,31,7.70%,9,392,0,2.20%,97.80%,0.00%,45,48,401,12.00% +149268,893,6047,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149269,855,2082,State-funded primary,204,107,97,52.50%,47.50%,0,0.00%,34,16.70%,6,198,0,2.90%,97.10%,0.00%,29,31,204,15.20% +149270,855,2334,State-funded primary,139,67,72,48.20%,51.80%,4,2.90%,15,10.80%,1,138,0,0.70%,99.30%,0.00%,38,39,139,28.10% +149271,855,4056,State-funded secondary,943,486,457,51.50%,48.50%,34,3.60%,144,15.30%,30,913,0,3.20%,96.80%,0.00%,159,172,852,20.20% +149272,925,3319,State-funded primary,50,20,30,40.00%,60.00%,0,0.00%,9,18.00%,0,50,0,0.00%,100.00%,0.00%,18,18,50,36.00% +149274,815,3243,State-funded primary,83,42,41,50.60%,49.40%,0,0.00%,10,12.00%,1,82,0,1.20%,98.80%,0.00%,7,7,78,9.00% +149275,815,3263,State-funded primary,241,105,136,43.60%,56.40%,5,2.10%,49,20.30%,43,198,0,17.80%,82.20%,0.00%,51,53,241,22.00% +149276,815,3264,State-funded primary,84,44,40,52.40%,47.60%,1,1.20%,15,17.90%,5,79,0,6.00%,94.00%,0.00%,2,2,71,2.80% +149277,815,3284,State-funded primary,174,91,83,52.30%,47.70%,1,0.60%,26,14.90%,18,156,0,10.30%,89.70%,0.00%,15,15,154,9.70% +149278,815,3357,State-funded primary,80,36,44,45.00%,55.00%,2,2.50%,3,3.80%,0,80,0,0.00%,100.00%,0.00%,3,4,80,5.00% +149279,815,3266,State-funded primary,74,25,49,33.80%,66.20%,1,1.40%,11,14.90%,2,72,0,2.70%,97.30%,0.00%,6,6,74,8.10% +149280,941,2015,State-funded primary,211,92,119,43.60%,56.40%,0,0.00%,29,13.70%,12,199,0,5.70%,94.30%,0.00%,10,14,199,7.00% +149281,941,3050,State-funded primary,75,43,32,57.30%,42.70%,0,0.00%,16,21.30%,3,72,0,4.00%,96.00%,0.00%,11,12,75,16.00% +149282,941,3203,State-funded primary,84,46,38,54.80%,45.20%,1,1.20%,6,7.10%,4,80,0,4.80%,95.20%,0.00%,5,6,84,7.10% +149284,860,2395,State-funded primary,362,172,190,47.50%,52.50%,7,1.90%,51,14.10%,8,354,0,2.20%,97.80%,0.00%,107,111,311,35.70% +149285,935,4600,State-funded secondary,950,506,444,53.30%,46.70%,21,2.20%,110,11.60%,202,748,0,21.30%,78.70%,0.00%,124,121,812,14.90% +149287,936,3459,State-funded primary,414,207,207,50.00%,50.00%,9,2.20%,47,11.40%,143,271,0,34.50%,65.50%,0.00%,69,70,414,16.90% +149288,936,3461,State-funded primary,238,119,119,50.00%,50.00%,5,2.10%,24,10.10%,90,147,1,37.80%,61.80%,0.40%,15,16,209,7.70% +149289,936,3915,State-funded primary,468,248,220,53.00%,47.00%,7,1.50%,48,10.30%,125,342,1,26.70%,73.10%,0.20%,47,48,417,11.50% +149290,936,5411,State-funded secondary,1304,595,709,45.60%,54.40%,22,1.70%,134,10.30%,308,992,4,23.60%,76.10%,0.30%,125,136,1056,12.90% +149291,937,3032,State-funded primary,217,111,106,51.20%,48.80%,5,2.30%,25,11.50%,3,214,0,1.40%,98.60%,0.00%,31,31,217,14.30% +149292,938,3327,State-funded primary,179,88,91,49.20%,50.80%,3,1.70%,18,10.10%,3,176,0,1.70%,98.30%,0.00%,24,27,179,15.10% +149293,938,3333,State-funded primary,193,87,106,45.10%,54.90%,6,3.10%,35,18.10%,18,175,0,9.30%,90.70%,0.00%,16,16,193,8.30% +149294,938,3338,State-funded primary,418,189,229,45.20%,54.80%,8,1.90%,41,9.80%,226,192,0,54.10%,45.90%,0.00%,54,56,418,13.40% +149295,909,2715,State-funded primary,197,88,109,44.70%,55.30%,19,9.60%,54,27.40%,3,194,0,1.50%,98.50%,0.00%,109,109,179,60.90% +149296,801,3437,State-funded primary,629,286,343,45.50%,54.50%,18,2.90%,112,17.80%,18,611,0,2.90%,97.10%,0.00%,113,115,629,18.30% +149297,318,4000,State-funded secondary,1086,461,625,42.40%,57.60%,34,3.10%,72,6.60%,297,784,5,27.30%,72.20%,0.50%,84,77,837,9.20% +149298,318,2000,State-funded primary,210,113,97,53.80%,46.20%,1,0.50%,12,5.70%,83,127,0,39.50%,60.50%,0.00%,9,9,210,4.30% +149299,380,4094,State-funded secondary,862,428,434,49.70%,50.30%,34,3.90%,144,16.70%,388,474,0,45.00%,55.00%,0.00%,252,265,736,36.00% +149303,937,3564,State-funded primary,208,113,95,54.30%,45.70%,5,2.40%,30,14.40%,69,139,0,33.20%,66.80%,0.00%,33,36,208,17.30% +149304,885,3010,State-funded primary,104,51,53,49.00%,51.00%,0,0.00%,16,15.40%,0,104,0,0.00%,100.00%,0.00%,15,15,104,14.40% +149306,937,3214,State-funded primary,74,52,22,70.30%,29.70%,3,4.10%,17,23.00%,3,71,0,4.10%,95.90%,0.00%,27,27,74,36.50% +149307,888,3601,State-funded primary,214,111,103,51.90%,48.10%,7,3.30%,8,3.70%,14,200,0,6.50%,93.50%,0.00%,14,15,214,7.00% +149308,937,3546,State-funded primary,146,75,71,51.40%,48.60%,4,2.70%,12,8.20%,22,124,0,15.10%,84.90%,0.00%,50,50,146,34.20% +149309,894,2128,State-funded primary,128,62,66,48.40%,51.60%,0,0.00%,27,21.10%,18,110,0,14.10%,85.90%,0.00%,53,55,116,47.40% +149310,937,3541,State-funded primary,197,84,113,42.60%,57.40%,3,1.50%,20,10.20%,26,171,0,13.20%,86.80%,0.00%,11,12,197,6.10% +149311,888,3643,State-funded primary,275,121,154,44.00%,56.00%,5,1.80%,50,18.20%,100,175,0,36.40%,63.60%,0.00%,82,85,275,30.90% +149312,888,3352,State-funded primary,239,109,130,45.60%,54.40%,4,1.70%,21,8.80%,28,211,0,11.70%,88.30%,0.00%,45,45,215,20.90% +149313,888,3611,State-funded primary,280,139,141,49.60%,50.40%,3,1.10%,4,1.40%,61,219,0,21.80%,78.20%,0.00%,13,13,255,5.10% +149314,888,3322,State-funded primary,355,189,166,53.20%,46.80%,7,2.00%,45,12.70%,140,215,0,39.40%,60.60%,0.00%,127,127,312,40.70% +149315,937,3598,State-funded primary,422,224,198,53.10%,46.90%,5,1.20%,34,8.10%,196,226,0,46.40%,53.60%,0.00%,88,92,391,23.50% +149316,937,3507,State-funded primary,224,102,122,45.50%,54.50%,5,2.20%,20,8.90%,27,197,0,12.10%,87.90%,0.00%,26,26,224,11.60% +149317,888,3954,State-funded primary,188,101,87,53.70%,46.30%,4,2.10%,15,8.00%,74,114,0,39.40%,60.60%,0.00%,96,97,177,54.80% +149319,886,4029,State-funded secondary,873,420,453,48.10%,51.90%,10,1.10%,168,19.20%,44,828,1,5.00%,94.80%,0.10%,177,195,788,24.70% +149321,393,2004,State-funded primary,422,185,237,43.80%,56.20%,4,0.90%,112,26.50%,26,396,0,6.20%,93.80%,0.00%,153,157,393,39.90% +149322,931,7008,State-funded special school,70,18,52,25.70%,74.30%,70,100.00%,0,0.00%,15,55,0,21.40%,78.60%,0.00%,28,29,70,41.40% +149323,884,2006,State-funded primary,39,19,20,48.70%,51.30%,3,7.70%,15,38.50%,3,36,0,7.70%,92.30%,0.00%,7,7,39,17.90% +149324,823,2013,State-funded primary,165,91,74,55.20%,44.80%,2,1.20%,20,12.10%,2,163,0,1.20%,98.80%,0.00%,4,4,136,2.90% +149326,908,2052,State-funded primary,126,58,68,46.00%,54.00%,0,0.00%,12,9.50%,0,126,0,0.00%,100.00%,0.00%,10,12,103,11.70% +149328,860,4020,State-funded secondary,655,335,320,51.10%,48.90%,7,1.10%,108,16.50%,47,605,3,7.20%,92.40%,0.50%,169,185,605,30.60% +149329,382,2072,State-funded primary,282,130,152,46.10%,53.90%,4,1.40%,81,28.70%,213,63,6,75.50%,22.30%,2.10%,41,42,206,20.40% +149330,919,2113,State-funded primary,661,337,324,51.00%,49.00%,6,0.90%,72,10.90%,58,603,0,8.80%,91.20%,0.00%,86,92,563,16.30% +149332,384,2042,State-funded primary,235,117,118,49.80%,50.20%,6,2.60%,22,9.40%,170,65,0,72.30%,27.70%,0.00%,44,46,209,22.00% +149333,919,2118,State-funded primary,220,110,110,50.00%,50.00%,5,2.30%,40,18.20%,32,188,0,14.50%,85.50%,0.00%,62,64,196,32.70% +149335,881,7006,State-funded special school,14,3,11,21.40%,78.60%,14,100.00%,0,0.00%,0,14,0,0.00%,100.00%,0.00%,2,2,14,14.30% +149340,865,6062,Independent school,9,1,8,11.10%,88.90%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149343,830,6054,Independent school,5,5,0,100.00%,0.00%,1,20.00%,4,80.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149346,210,3475,State-funded primary,330,153,177,46.40%,53.60%,4,1.20%,22,6.70%,43,287,0,13.00%,87.00%,0.00%,91,95,304,31.30% +149347,306,5405,State-funded secondary,1072,1072,0,100.00%,0.00%,11,1.00%,146,13.60%,161,910,1,15.00%,84.90%,0.10%,153,143,777,18.40% +149348,371,3300,State-funded primary,206,94,112,45.60%,54.40%,4,1.90%,17,8.30%,51,155,0,24.80%,75.20%,0.00%,29,30,206,14.60% +149349,357,2021,State-funded primary,252,124,128,49.20%,50.80%,6,2.40%,63,25.00%,1,251,0,0.40%,99.60%,0.00%,46,47,252,18.70% +149350,371,3301,State-funded primary,206,92,114,44.70%,55.30%,1,0.50%,8,3.90%,78,128,0,37.90%,62.10%,0.00%,21,23,206,11.20% +149351,909,2406,State-funded primary,83,39,44,47.00%,53.00%,3,3.60%,20,24.10%,1,82,0,1.20%,98.80%,0.00%,9,10,71,14.10% +149352,872,3372,State-funded primary,293,144,149,49.10%,50.90%,10,3.40%,51,17.40%,114,179,0,38.90%,61.10%,0.00%,57,57,262,21.80% +149354,936,6060,Independent school,9,6,3,66.70%,33.30%,9,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149357,881,6091,Independent school,8,2,6,25.00%,75.00%,8,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149360,319,2024,State-funded primary,771,362,409,47.00%,53.00%,57,7.40%,77,10.00%,306,463,2,39.70%,60.10%,0.30%,139,143,771,18.50% +149361,350,6013,Independent school,303,156,147,51.50%,48.50%,1,0.30%,49,16.20%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149362,889,6018,Independent school,94,94,0,100.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149363,815,2024,State-funded primary,168,83,85,49.40%,50.60%,5,3.00%,34,20.20%,10,158,0,6.00%,94.00%,0.00%,18,19,168,11.30% +149364,830,4089,State-funded secondary,681,324,357,47.60%,52.40%,48,7.00%,78,11.50%,20,661,0,2.90%,97.10%,0.00%,260,226,588,38.40% +149365,867,4061,State-funded secondary,937,474,463,50.60%,49.40%,32,3.40%,151,16.10%,109,828,0,11.60%,88.40%,0.00%,210,228,852,26.80% +149366,330,2313,State-funded primary,358,167,191,46.60%,53.40%,7,2.00%,50,14.00%,280,78,0,78.20%,21.80%,0.00%,154,178,358,49.70% +149369,210,5404,State-funded secondary,521,521,0,100.00%,0.00%,19,3.60%,76,14.60%,90,431,0,17.30%,82.70%,0.00%,185,236,521,45.30% +149371,855,2375,State-funded primary,428,208,220,48.60%,51.40%,12,2.80%,46,10.70%,145,282,1,33.90%,65.90%,0.20%,79,84,428,19.60% +149372,881,5255,State-funded primary,287,137,150,47.70%,52.30%,4,1.40%,46,16.00%,58,229,0,20.20%,79.80%,0.00%,38,40,287,13.90% +149373,303,3504,State-funded primary,419,211,208,50.40%,49.60%,14,3.30%,45,10.70%,111,308,0,26.50%,73.50%,0.00%,40,46,419,11.00% +149377,341,6026,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149379,933,2054,State-funded primary,47,28,19,59.60%,40.40%,3,6.40%,2,4.30%,0,47,0,0.00%,100.00%,0.00%,2,2,47,4.30% +149380,830,4015,State-funded secondary,588,281,307,47.80%,52.20%,15,2.60%,105,17.90%,11,576,1,1.90%,98.00%,0.20%,207,228,588,38.80% +149382,891,6049,Independent school,2,2,0,100.00%,0.00%,2,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149383,806,6006,Independent school,8,2,6,25.00%,75.00%,2,25.00%,4,50.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149386,867,2814,State-funded primary,475,219,256,46.10%,53.90%,14,2.90%,70,14.70%,176,299,0,37.10%,62.90%,0.00%,60,60,434,13.80% +149388,936,3923,State-funded primary,62,33,29,53.20%,46.80%,2,3.20%,6,9.70%,11,51,0,17.70%,82.30%,0.00%,14,14,62,22.60% +149396,916,7026,State-funded special school,60,4,56,6.70%,93.30%,60,100.00%,0,0.00%,0,60,0,0.00%,100.00%,0.00%,37,38,60,63.30% +149397,908,2053,State-funded primary,102,59,43,57.80%,42.20%,3,2.90%,13,12.70%,0,102,0,0.00%,100.00%,0.00%,9,9,102,8.80% +149399,383,6017,Independent school,1,1,0,100.00%,0.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149400,813,6014,Independent school,1,0,1,0.00%,100.00%,1,100.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149403,878,3323,State-funded primary,218,108,110,49.50%,50.50%,11,5.00%,21,9.60%,118,100,0,54.10%,45.90%,0.00%,19,19,194,9.80% +149404,826,1107,State-funded AP school,6,0,6,0.00%,100.00%,2,33.30%,2,33.30%,0,6,0,0.00%,100.00%,0.00%,1,4,6,66.70% +149405,931,2039,State-funded primary,94,44,50,46.80%,53.20%,2,2.10%,11,11.70%,5,89,0,5.30%,94.70%,0.00%,7,7,94,7.40% +149406,341,2060,State-funded primary,205,114,91,55.60%,44.40%,6,2.90%,55,26.80%,76,129,0,37.10%,62.90%,0.00%,100,105,188,55.90% +149407,333,2134,State-funded primary,480,233,247,48.50%,51.50%,17,3.50%,58,12.10%,86,394,0,17.90%,82.10%,0.00%,148,159,480,33.10% +149409,868,2107,State-funded primary,176,93,83,52.80%,47.20%,7,4.00%,34,19.30%,26,150,0,14.80%,85.20%,0.00%,71,71,157,45.20% +149410,909,2610,State-funded primary,170,86,84,50.60%,49.40%,11,6.50%,11,6.50%,29,141,0,17.10%,82.90%,0.00%,79,82,131,62.60% +149412,880,2407,State-funded primary,278,141,137,50.70%,49.30%,6,2.20%,35,12.60%,12,266,0,4.30%,95.70%,0.00%,79,80,250,32.00% +149413,838,2017,State-funded primary,269,124,145,46.10%,53.90%,24,8.90%,34,12.60%,32,237,0,11.90%,88.10%,0.00%,77,78,269,29.00% +149414,888,3638,State-funded primary,382,182,200,47.60%,52.40%,8,2.10%,67,17.50%,89,293,0,23.30%,76.70%,0.00%,148,149,356,41.90% +149415,926,3145,State-funded primary,100,42,58,42.00%,58.00%,3,3.00%,13,13.00%,8,92,0,8.00%,92.00%,0.00%,9,9,100,9.00% +149417,891,3031,State-funded primary,85,38,47,44.70%,55.30%,0,0.00%,12,14.10%,4,81,0,4.70%,95.30%,0.00%,14,13,56,23.20% +149418,891,3774,State-funded primary,118,58,60,49.20%,50.80%,1,0.80%,24,20.30%,9,109,0,7.60%,92.40%,0.00%,23,24,79,30.40% +149421,860,2309,State-funded primary,307,147,160,47.90%,52.10%,9,2.90%,40,13.00%,6,301,0,2.00%,98.00%,0.00%,20,22,307,7.20% +149422,860,2416,State-funded primary,277,135,142,48.70%,51.30%,4,1.40%,37,13.40%,8,269,0,2.90%,97.10%,0.00%,43,45,277,16.20% +149423,935,3105,State-funded primary,54,23,31,42.60%,57.40%,2,3.70%,16,29.60%,2,52,0,3.70%,96.30%,0.00%,15,15,54,27.80% +149424,331,7022,State-funded special school,138,26,112,18.80%,81.20%,138,100.00%,0,0.00%,9,129,0,6.50%,93.50%,0.00%,62,63,124,50.80% +149425,850,2065,State-funded primary,111,52,59,46.80%,53.20%,4,3.60%,24,21.60%,1,110,0,0.90%,99.10%,0.00%,11,11,111,9.90% +149426,936,2062,State-funded primary,322,159,163,49.40%,50.60%,5,1.60%,44,13.70%,38,284,0,11.80%,88.20%,0.00%,12,12,256,4.70% +149427,373,5950,State-funded special school,128,51,77,39.80%,60.20%,120,93.80%,8,6.30%,4,124,0,3.10%,96.90%,0.00%,53,46,106,43.40% +149429,891,4027,State-funded secondary,487,227,260,46.60%,53.40%,14,2.90%,148,30.40%,17,470,0,3.50%,96.50%,0.00%,233,249,487,51.10% +149430,891,7004,State-funded special school,73,32,41,43.80%,56.20%,73,100.00%,0,0.00%,4,69,0,5.50%,94.50%,0.00%,37,29,60,48.30% +149431,316,4017,State-funded secondary,554,237,317,42.80%,57.20%,12,2.20%,60,10.80%,258,293,3,46.60%,52.90%,0.50%,161,214,480,44.60% +149432,941,1101,State-funded AP school,86,19,67,22.10%,77.90%,7,8.10%,79,91.90%,5,81,0,5.80%,94.20%,0.00%,55,61,86,70.90% +149433,940,4000,State-funded secondary,879,426,453,48.50%,51.50%,16,1.80%,94,10.70%,59,820,0,6.70%,93.30%,0.00%,173,190,795,23.90% +149434,908,2054,State-funded primary,99,48,51,48.50%,51.50%,2,2.00%,16,16.20%,0,99,0,0.00%,100.00%,0.00%,18,18,99,18.20% +149435,869,4003,State-funded secondary,1074,503,571,46.80%,53.20%,21,2.00%,140,13.00%,89,979,6,8.30%,91.20%,0.60%,133,146,958,15.20% +149436,925,4057,State-funded secondary,614,288,326,46.90%,53.10%,24,3.90%,160,26.10%,31,583,0,5.00%,95.00%,0.00%,167,187,614,30.50% +149437,885,4020,State-funded secondary,316,151,165,47.80%,52.20%,4,1.30%,51,16.10%,20,296,0,6.30%,93.70%,0.00%,63,72,316,22.80% +149442,935,6031,Independent school,0,0,0,0.00%,0.00%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149450,208,1108,State-funded AP school,59,12,47,20.30%,79.70%,24,40.70%,13,22.00%,0,59,0,0.00%,100.00%,0.00%,27,49,59,83.10% +149451,311,2006,State-funded primary,361,176,185,48.80%,51.20%,8,2.20%,25,6.90%,77,283,1,21.30%,78.40%,0.30%,50,52,361,14.40% +149452,311,2007,State-funded primary,266,137,129,51.50%,48.50%,8,3.00%,13,4.90%,45,218,3,16.90%,82.00%,1.10%,15,15,266,5.60% +149453,352,5200,State-funded primary,455,220,235,48.40%,51.60%,5,1.10%,56,12.30%,144,311,0,31.60%,68.40%,0.00%,204,188,398,47.20% +149454,353,3400,State-funded primary,209,109,100,52.20%,47.80%,8,3.80%,42,20.10%,41,168,0,19.60%,80.40%,0.00%,93,89,187,47.60% +149456,838,3319,State-funded primary,136,69,67,50.70%,49.30%,5,3.70%,12,8.80%,2,134,0,1.50%,98.50%,0.00%,18,18,120,15.00% +149457,888,4725,State-funded secondary,1107,557,550,50.30%,49.70%,34,3.10%,53,4.80%,29,1070,8,2.60%,96.70%,0.70%,135,150,1107,13.60% +149460,826,3392,State-funded primary,666,341,325,51.20%,48.80%,10,1.50%,83,12.50%,281,385,0,42.20%,57.80%,0.00%,37,41,627,6.50% +149466,871,6008,Independent school,11,5,6,45.50%,54.50%,0,0.00%,0,0.00%,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +149473,865,2058,State-funded primary,261,136,125,52.10%,47.90%,7,2.70%,48,18.40%,3,258,0,1.10%,98.90%,0.00%,56,60,261,23.00% +149476,885,2044,State-funded primary,163,85,78,52.10%,47.90%,5,3.10%,18,11.00%,3,160,0,1.80%,98.20%,0.00%,21,21,163,12.90% +149483,330,2210,State-funded primary,177,82,95,46.30%,53.70%,5,2.80%,32,18.10%,39,138,0,22.00%,78.00%,0.00%,99,117,177,66.10% +149484,838,2025,State-funded primary,414,207,207,50.00%,50.00%,7,1.70%,48,11.60%,42,365,7,10.10%,88.20%,1.70%,68,68,371,18.30% +149486,343,4010,State-funded secondary,495,260,235,52.50%,47.50%,7,1.40%,82,16.60%,69,426,0,13.90%,86.10%,0.00%,252,272,495,54.90% +149487,933,2055,State-funded primary,108,54,54,50.00%,50.00%,11,10.20%,25,23.10%,1,107,0,0.90%,99.10%,0.00%,56,56,108,51.90% +149493,344,2238,State-funded primary,215,103,112,47.90%,52.10%,6,2.80%,18,8.40%,6,209,0,2.80%,97.20%,0.00%,6,7,215,3.30% +149495,802,3119,State-funded primary,209,104,105,49.80%,50.20%,0,0.00%,16,7.70%,3,206,0,1.40%,98.60%,0.00%,13,16,209,7.70% +149496,802,3351,State-funded primary,93,44,49,47.30%,52.70%,1,1.10%,9,9.70%,2,91,0,2.20%,97.80%,0.00%,5,6,76,7.90% +149497,908,3184,State-funded primary,72,34,38,47.20%,52.80%,0,0.00%,12,16.70%,1,67,4,1.40%,93.10%,5.60%,14,14,72,19.40% +149498,909,3606,State-funded primary,220,106,114,48.20%,51.80%,14,6.40%,18,8.20%,7,213,0,3.20%,96.80%,0.00%,76,78,192,40.60% +149499,840,2328,State-funded primary,101,52,49,51.50%,48.50%,0,0.00%,4,4.00%,0,101,0,0.00%,100.00%,0.00%,8,8,101,7.90% +149501,925,5215,State-funded primary,188,98,90,52.10%,47.90%,3,1.60%,47,25.00%,28,160,0,14.90%,85.10%,0.00%,65,68,169,40.20% +149502,926,3068,State-funded primary,61,34,27,55.70%,44.30%,0,0.00%,13,21.30%,0,61,0,0.00%,100.00%,0.00%,12,14,61,23.00% +149505,840,2001,State-funded primary,264,142,122,53.80%,46.20%,7,2.70%,38,14.40%,3,261,0,1.10%,98.90%,0.00%,89,84,240,35.00% +149507,805,3006,State-funded primary,104,49,55,47.10%,52.90%,1,1.00%,19,18.30%,1,103,0,1.00%,99.00%,0.00%,22,25,88,28.40% +149513,909,3551,State-funded primary,91,40,51,44.00%,56.00%,6,6.60%,9,9.90%,2,89,0,2.20%,97.80%,0.00%,15,17,76,22.40% +149515,885,2914,State-funded primary,191,94,97,49.20%,50.80%,3,1.60%,22,11.50%,0,189,2,0.00%,99.00%,1.00%,25,25,191,13.10% +149520,317,2015,State-funded primary,588,274,314,46.60%,53.40%,9,1.50%,50,8.50%,561,8,19,95.40%,1.40%,3.20%,101,103,519,19.80% +149521,872,2167,State-funded primary,426,206,220,48.40%,51.60%,7,1.60%,33,7.70%,71,355,0,16.70%,83.30%,0.00%,31,33,426,7.70% +149524,394,2006,State-funded primary,517,251,266,48.50%,51.50%,10,1.90%,119,23.00%,8,509,0,1.50%,98.50%,0.00%,262,262,517,50.70% +149530,341,4014,State-funded secondary,344,0,344,0.00%,100.00%,3,0.90%,79,23.00%,51,292,1,14.80%,84.90%,0.30%,193,219,344,63.70% +149531,381,4008,State-funded secondary,1632,805,827,49.30%,50.70%,45,2.80%,113,6.90%,61,1570,1,3.70%,96.20%,0.10%,384,362,1425,25.40% +149532,908,2055,State-funded primary,63,36,27,57.10%,42.90%,0,0.00%,7,11.10%,2,58,3,3.20%,92.10%,4.80%,17,16,59,27.10% +149534,305,2041,State-funded primary,66,31,35,47.00%,53.00%,4,6.10%,14,21.20%,5,61,0,7.60%,92.40%,0.00%,6,7,66,10.60% +149535,868,2002,State-funded primary,220,102,118,46.40%,53.60%,4,1.80%,19,8.60%,82,135,3,37.30%,61.40%,1.40%,39,40,220,18.20% +149538,344,2225,State-funded primary,246,122,124,49.60%,50.40%,5,2.00%,27,11.00%,3,243,0,1.20%,98.80%,0.00%,23,23,246,9.30% +149541,909,3552,State-funded primary,133,57,76,42.90%,57.10%,4,3.00%,13,9.80%,5,128,0,3.80%,96.20%,0.00%,12,13,118,11.00% +149545,381,2010,State-funded primary,333,152,181,45.60%,54.40%,10,3.00%,64,19.20%,37,295,1,11.10%,88.60%,0.30%,144,148,310,47.70% +149555,872,2010,State-funded primary,12,7,5,58.30%,41.70%,0,0.00%,1,8.30%,9,3,0,75.00%,25.00%,0.00%,0,0,12,0.00% +149557,865,3396,State-funded primary,41,23,18,56.10%,43.90%,3,7.30%,2,4.90%,3,38,0,7.30%,92.70%,0.00%,3,3,41,7.30% +149632,207,4001,State-funded secondary,1291,617,674,47.80%,52.20%,58,4.50%,136,10.50%,522,724,45,40.40%,56.10%,3.50%,344,326,1129,28.90% +149633,908,2056,State-funded primary,86,46,40,53.50%,46.50%,0,0.00%,7,8.10%,0,86,0,0.00%,100.00%,0.00%,8,8,72,11.10% +149635,336,4011,State-funded secondary,654,351,303,53.70%,46.30%,10,1.50%,30,4.60%,259,393,2,39.60%,60.10%,0.30%,291,288,594,48.50% +149636,926,2243,State-funded primary,186,86,100,46.20%,53.80%,8,4.30%,76,40.90%,69,117,0,37.10%,62.90%,0.00%,89,93,186,50.00% +NAT,,PRI,State-funded primary,4647851,2282391,2365456,49.10%,50.90%,117757,2.50%,629184,13.50%,1022969,3611560,13322,22.00%,77.70%,0.30%,1115284,1131847,4376957,25.90% +NAT,,SEC,State-funded secondary,3630171,1802999,1827130,49.70%,50.30%,87219,2.40%,448967,12.40%,658504,2947993,23674,18.10%,81.20%,0.70%,823749,866486,3193601,27.10% +NAT,,SPE,Special school,152578,41859,110714,27.40%,72.60%,151325,99.20%,1184,0.80%,21978,130107,493,14.40%,85.30%,0.30%,69633,66893,133496,50.10% diff --git a/TramsDataApi/Gateways/CensusDataGateway.cs b/TramsDataApi/Gateways/CensusDataGateway.cs index 63a83db75..72bcd0fa4 100644 --- a/TramsDataApi/Gateways/CensusDataGateway.cs +++ b/TramsDataApi/Gateways/CensusDataGateway.cs @@ -13,7 +13,7 @@ public class CensusDataGateway : ICensusDataGateway public CensusDataModel GetCensusDataByURN(string urn) { - using (var reader = new StreamReader("CensusData/2018-2019_england_census.csv")) + using (var reader = new StreamReader("CensusData/2022-2023_england_census.csv")) using (var csv = new CsvReader(reader, CultureInfo.InvariantCulture)) { var records = csv.GetRecords(); diff --git a/TramsDataApi/TramsDataApi.csproj b/TramsDataApi/TramsDataApi.csproj index 5b46843ce..56090cd49 100644 --- a/TramsDataApi/TramsDataApi.csproj +++ b/TramsDataApi/TramsDataApi.csproj @@ -6,7 +6,7 @@ - + @@ -56,4 +56,10 @@ + + + + Always + + From 123988fa446e1704824c8c0b979eb2a154be4e79 Mon Sep 17 00:00:00 2001 From: plockwood Date: Wed, 22 Nov 2023 16:02:13 +0000 Subject: [PATCH 2/2] Last few code fields added --- Dfe.Academies.Api.Infrastructure/MstrContext.cs | 2 ++ Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs | 4 ++-- Dfe.Academies.Domain/Establishment/Establishment.cs | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Dfe.Academies.Api.Infrastructure/MstrContext.cs b/Dfe.Academies.Api.Infrastructure/MstrContext.cs index 7e6beee69..0f4bc8aa2 100644 --- a/Dfe.Academies.Api.Infrastructure/MstrContext.cs +++ b/Dfe.Academies.Api.Infrastructure/MstrContext.cs @@ -130,6 +130,8 @@ private void ConfigureEstablishment(EntityTypeBuilder establishme establishmentConfiguration.Property(e => e.DioceseCode).HasColumnName("Diocese(code)"); establishmentConfiguration.Property(e => e.GORregionCode).HasColumnName("GORregion(code)"); establishmentConfiguration.Property(e => e.ReligiousCharacterCode).HasColumnName("ReligiousCharacter(code)"); + establishmentConfiguration.Property(e => e.PhaseOfEducationCode).HasColumnName("PhaseOfEducation(code)"); + establishmentConfiguration.Property(e => e.ParliamentaryConstituencyCode).HasColumnName("ParliamentaryConstituency(code)"); establishmentConfiguration .HasOne(x => x.EstablishmentType) diff --git a/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs b/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs index 96b9b11f3..4c8c33796 100644 --- a/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs +++ b/Dfe.Academies.Application/Builders/EstablishmentDtoBuilder.cs @@ -80,7 +80,7 @@ public EstablishmentDtoBuilder WithPhaseOfEducation(Domain.Establishment.Establi _dto.PhaseOfEducation = new NameAndCodeDto { Name = establishment?.PhaseOfEducation, - Code = establishment?.PhaseOfEducation // no code + Code = establishment?.PhaseOfEducationCode }; return this; @@ -101,7 +101,7 @@ public EstablishmentDtoBuilder WithParliamentaryConstituency(Domain.Establishmen _dto.ParliamentaryConstituency = new NameAndCodeDto { Name = establishment.ParliamentaryConstituency, - Code = establishment.ParliamentaryConstituency // No Code + Code = establishment.ParliamentaryConstituencyCode }; return this; diff --git a/Dfe.Academies.Domain/Establishment/Establishment.cs b/Dfe.Academies.Domain/Establishment/Establishment.cs index 912e697c8..f42b35a11 100644 --- a/Dfe.Academies.Domain/Establishment/Establishment.cs +++ b/Dfe.Academies.Domain/Establishment/Establishment.cs @@ -94,6 +94,8 @@ public class Establishment public string? DioceseCode { get; set; } public string? GORregionCode { get; set; } public string? ReligiousCharacterCode { get; set; } + public string? ParliamentaryConstituencyCode { get; set; } + public string? PhaseOfEducationCode { get; set; } public int? SenUnitCapacity { get; set; } public int? SenUnitOnRoll { get; set; }