Skip to contents

This function is mostly designed for exploring the API, and is unlikely to be suitable for long term production use.

You can set the number of rows to preview using the n_max parameter. This uses the n_max from readr::read_csv() under the hood.

As there are no IDs involved, this is brittle and code relying on this function will likely break whenever there is renaming of variables or items in the data.

It is recommended to take the time to set up custom queries using the query_dataset() function instead.

If you are using this function for more than exploratory purposes, make sure you subscribe to the data set you're downloading and then keep track of any updates to the data.

Usage

preview_dataset(
  dataset_id,
  dataset_version = NULL,
  api_version = NULL,
  ees_environment = default_ees_environment(),
  n_max = 10,
  verbose = FALSE
)

Arguments

dataset_id

ID of data set

dataset_version

Version number of data set

api_version

EES API version

ees_environment

EES ees_environment to connect to: "dev", "test", "preprod" or "prod"

n_max

maximum number of rows to preview, 10 by default, Inf will get all available rows

verbose

Run with additional contextual messaging, logical, default = FALSE

Value

data.frame

Details

This gives a super quick way to just fetch the file in a human readable format.

Examples

# Preview first 10 rows
preview_dataset(example_id("dataset"))
#>    time_period time_identifier   time_frame geographic_level country_code
#> 1         2025         Week 21 Year to date         National    E92000001
#> 2         2025         Week 21 Year to date         National    E92000001
#> 3         2025         Week 21 Year to date         National    E92000001
#> 4         2025         Week 21 Year to date         National    E92000001
#> 5         2025         Week 21 Year to date         Regional    E92000001
#> 6         2025         Week 21 Year to date         Regional    E92000001
#> 7         2025         Week 21 Year to date         Regional    E92000001
#> 8         2025         Week 21 Year to date         Regional    E92000001
#> 9         2025         Week 21 Year to date  Local authority    E92000001
#> 10        2025         Week 21 Year to date  Local authority    E92000001
#>    country_name region_code region_name new_la_code    la_name old_la_code
#> 1       England        <NA>        <NA>        <NA>       <NA>          NA
#> 2       England        <NA>        <NA>        <NA>       <NA>          NA
#> 3       England        <NA>        <NA>        <NA>       <NA>          NA
#> 4       England        <NA>        <NA>        <NA>       <NA>          NA
#> 5       England   E12000001  North East        <NA>       <NA>          NA
#> 6       England   E12000001  North East        <NA>       <NA>          NA
#> 7       England   E12000001  North East        <NA>       <NA>          NA
#> 8       England   E12000001  North East        <NA>       <NA>          NA
#> 9       England   E12000001  North East   E06000001 Hartlepool         805
#> 10      England   E12000001  North East   E06000001 Hartlepool         805
#>    education_phase persistent_absence_percent
#> 1      All schools                      18.16
#> 2          Primary                      13.42
#> 3        Secondary                      23.25
#> 4          Special                      35.38
#> 5      All schools                      18.55
#> 6          Primary                      12.98
#> 7        Secondary                      24.76
#> 8          Special                      31.44
#> 9          Primary                      13.82
#> 10       Secondary                      25.47

# Get 2 rows
preview_dataset(example_id("dataset"), n_max = 2)
#>   time_period time_identifier   time_frame geographic_level country_code
#> 1        2025         Week 21 Year to date         National    E92000001
#> 2        2025         Week 21 Year to date         National    E92000001
#>   country_name region_code region_name new_la_code la_name old_la_code
#> 1      England          NA          NA          NA      NA          NA
#> 2      England          NA          NA          NA      NA          NA
#>   education_phase persistent_absence_percent
#> 1     All schools                      18.16
#> 2         Primary                      13.42

# Get all rows
preview_dataset(example_id("dataset"), n_max = Inf)
#>      time_period time_identifier   time_frame geographic_level country_code
#> 1           2025         Week 21 Year to date         National    E92000001
#> 2           2025         Week 21 Year to date         National    E92000001
#> 3           2025         Week 21 Year to date         National    E92000001
#> 4           2025         Week 21 Year to date         National    E92000001
#> 5           2025         Week 21 Year to date         Regional    E92000001
#> 6           2025         Week 21 Year to date         Regional    E92000001
#> 7           2025         Week 21 Year to date         Regional    E92000001
#> 8           2025         Week 21 Year to date         Regional    E92000001
#> 9           2025         Week 21 Year to date  Local authority    E92000001
#> 10          2025         Week 21 Year to date  Local authority    E92000001
#> 11          2025         Week 21 Year to date  Local authority    E92000001
#> 12          2025         Week 21 Year to date  Local authority    E92000001
#> 13          2025         Week 21 Year to date  Local authority    E92000001
#> 14          2025         Week 21 Year to date  Local authority    E92000001
#> 15          2025         Week 21 Year to date  Local authority    E92000001
#> 16          2025         Week 21 Year to date  Local authority    E92000001
#> 17          2025         Week 21 Year to date  Local authority    E92000001
#> 18          2025         Week 21 Year to date  Local authority    E92000001
#> 19          2025         Week 21 Year to date  Local authority    E92000001
#> 20          2025         Week 21 Year to date  Local authority    E92000001
#> 21          2025         Week 21 Year to date  Local authority    E92000001
#> 22          2025         Week 21 Year to date  Local authority    E92000001
#> 23          2025         Week 21 Year to date  Local authority    E92000001
#> 24          2025         Week 21 Year to date  Local authority    E92000001
#> 25          2025         Week 21 Year to date  Local authority    E92000001
#> 26          2025         Week 21 Year to date  Local authority    E92000001
#> 27          2025         Week 21 Year to date  Local authority    E92000001
#> 28          2025         Week 21 Year to date  Local authority    E92000001
#> 29          2025         Week 21 Year to date  Local authority    E92000001
#> 30          2025         Week 21 Year to date  Local authority    E92000001
#> 31          2025         Week 21 Year to date  Local authority    E92000001
#> 32          2025         Week 21 Year to date  Local authority    E92000001
#> 33          2025         Week 21 Year to date  Local authority    E92000001
#> 34          2025         Week 21 Year to date  Local authority    E92000001
#> 35          2025         Week 21 Year to date  Local authority    E92000001
#> 36          2025         Week 21 Year to date  Local authority    E92000001
#> 37          2025         Week 21 Year to date  Local authority    E92000001
#> 38          2025         Week 21 Year to date  Local authority    E92000001
#> 39          2025         Week 21 Year to date  Local authority    E92000001
#> 40          2025         Week 21 Year to date  Local authority    E92000001
#> 41          2025         Week 21 Year to date  Local authority    E92000001
#> 42          2025         Week 21 Year to date  Local authority    E92000001
#> 43          2025         Week 21 Year to date  Local authority    E92000001
#> 44          2025         Week 21 Year to date  Local authority    E92000001
#> 45          2025         Week 21 Year to date         Regional    E92000001
#> 46          2025         Week 21 Year to date         Regional    E92000001
#> 47          2025         Week 21 Year to date         Regional    E92000001
#> 48          2025         Week 21 Year to date         Regional    E92000001
#> 49          2025         Week 21 Year to date  Local authority    E92000001
#> 50          2025         Week 21 Year to date  Local authority    E92000001
#> 51          2025         Week 21 Year to date  Local authority    E92000001
#> 52          2025         Week 21 Year to date  Local authority    E92000001
#> 53          2025         Week 21 Year to date  Local authority    E92000001
#> 54          2025         Week 21 Year to date  Local authority    E92000001
#> 55          2025         Week 21 Year to date  Local authority    E92000001
#> 56          2025         Week 21 Year to date  Local authority    E92000001
#> 57          2025         Week 21 Year to date  Local authority    E92000001
#> 58          2025         Week 21 Year to date  Local authority    E92000001
#> 59          2025         Week 21 Year to date  Local authority    E92000001
#> 60          2025         Week 21 Year to date  Local authority    E92000001
#> 61          2025         Week 21 Year to date  Local authority    E92000001
#> 62          2025         Week 21 Year to date  Local authority    E92000001
#> 63          2025         Week 21 Year to date  Local authority    E92000001
#> 64          2025         Week 21 Year to date  Local authority    E92000001
#> 65          2025         Week 21 Year to date  Local authority    E92000001
#> 66          2025         Week 21 Year to date  Local authority    E92000001
#> 67          2025         Week 21 Year to date  Local authority    E92000001
#> 68          2025         Week 21 Year to date  Local authority    E92000001
#> 69          2025         Week 21 Year to date  Local authority    E92000001
#> 70          2025         Week 21 Year to date  Local authority    E92000001
#> 71          2025         Week 21 Year to date  Local authority    E92000001
#> 72          2025         Week 21 Year to date  Local authority    E92000001
#> 73          2025         Week 21 Year to date  Local authority    E92000001
#> 74          2025         Week 21 Year to date  Local authority    E92000001
#> 75          2025         Week 21 Year to date  Local authority    E92000001
#> 76          2025         Week 21 Year to date  Local authority    E92000001
#> 77          2025         Week 21 Year to date  Local authority    E92000001
#> 78          2025         Week 21 Year to date  Local authority    E92000001
#> 79          2025         Week 21 Year to date  Local authority    E92000001
#> 80          2025         Week 21 Year to date  Local authority    E92000001
#> 81          2025         Week 21 Year to date  Local authority    E92000001
#> 82          2025         Week 21 Year to date  Local authority    E92000001
#> 83          2025         Week 21 Year to date  Local authority    E92000001
#> 84          2025         Week 21 Year to date  Local authority    E92000001
#> 85          2025         Week 21 Year to date  Local authority    E92000001
#> 86          2025         Week 21 Year to date  Local authority    E92000001
#> 87          2025         Week 21 Year to date  Local authority    E92000001
#> 88          2025         Week 21 Year to date  Local authority    E92000001
#> 89          2025         Week 21 Year to date  Local authority    E92000001
#> 90          2025         Week 21 Year to date  Local authority    E92000001
#> 91          2025         Week 21 Year to date  Local authority    E92000001
#> 92          2025         Week 21 Year to date  Local authority    E92000001
#> 93          2025         Week 21 Year to date  Local authority    E92000001
#> 94          2025         Week 21 Year to date  Local authority    E92000001
#> 95          2025         Week 21 Year to date  Local authority    E92000001
#> 96          2025         Week 21 Year to date  Local authority    E92000001
#> 97          2025         Week 21 Year to date  Local authority    E92000001
#> 98          2025         Week 21 Year to date  Local authority    E92000001
#> 99          2025         Week 21 Year to date  Local authority    E92000001
#> 100         2025         Week 21 Year to date  Local authority    E92000001
#> 101         2025         Week 21 Year to date  Local authority    E92000001
#> 102         2025         Week 21 Year to date  Local authority    E92000001
#> 103         2025         Week 21 Year to date  Local authority    E92000001
#> 104         2025         Week 21 Year to date  Local authority    E92000001
#> 105         2025         Week 21 Year to date  Local authority    E92000001
#> 106         2025         Week 21 Year to date  Local authority    E92000001
#> 107         2025         Week 21 Year to date  Local authority    E92000001
#> 108         2025         Week 21 Year to date  Local authority    E92000001
#> 109         2025         Week 21 Year to date  Local authority    E92000001
#> 110         2025         Week 21 Year to date  Local authority    E92000001
#> 111         2025         Week 21 Year to date  Local authority    E92000001
#> 112         2025         Week 21 Year to date  Local authority    E92000001
#> 113         2025         Week 21 Year to date  Local authority    E92000001
#> 114         2025         Week 21 Year to date  Local authority    E92000001
#> 115         2025         Week 21 Year to date  Local authority    E92000001
#> 116         2025         Week 21 Year to date  Local authority    E92000001
#> 117         2025         Week 21 Year to date  Local authority    E92000001
#> 118         2025         Week 21 Year to date  Local authority    E92000001
#> 119         2025         Week 21 Year to date  Local authority    E92000001
#> 120         2025         Week 21 Year to date  Local authority    E92000001
#> 121         2025         Week 21 Year to date         Regional    E92000001
#> 122         2025         Week 21 Year to date         Regional    E92000001
#> 123         2025         Week 21 Year to date         Regional    E92000001
#> 124         2025         Week 21 Year to date         Regional    E92000001
#> 125         2025         Week 21 Year to date  Local authority    E92000001
#> 126         2025         Week 21 Year to date  Local authority    E92000001
#> 127         2025         Week 21 Year to date  Local authority    E92000001
#> 128         2025         Week 21 Year to date  Local authority    E92000001
#> 129         2025         Week 21 Year to date  Local authority    E92000001
#> 130         2025         Week 21 Year to date  Local authority    E92000001
#> 131         2025         Week 21 Year to date  Local authority    E92000001
#> 132         2025         Week 21 Year to date  Local authority    E92000001
#> 133         2025         Week 21 Year to date  Local authority    E92000001
#> 134         2025         Week 21 Year to date  Local authority    E92000001
#> 135         2025         Week 21 Year to date  Local authority    E92000001
#> 136         2025         Week 21 Year to date  Local authority    E92000001
#> 137         2025         Week 21 Year to date  Local authority    E92000001
#> 138         2025         Week 21 Year to date  Local authority    E92000001
#> 139         2025         Week 21 Year to date  Local authority    E92000001
#> 140         2025         Week 21 Year to date  Local authority    E92000001
#> 141         2025         Week 21 Year to date  Local authority    E92000001
#> 142         2025         Week 21 Year to date  Local authority    E92000001
#> 143         2025         Week 21 Year to date  Local authority    E92000001
#> 144         2025         Week 21 Year to date  Local authority    E92000001
#> 145         2025         Week 21 Year to date  Local authority    E92000001
#> 146         2025         Week 21 Year to date  Local authority    E92000001
#> 147         2025         Week 21 Year to date  Local authority    E92000001
#> 148         2025         Week 21 Year to date  Local authority    E92000001
#> 149         2025         Week 21 Year to date  Local authority    E92000001
#> 150         2025         Week 21 Year to date  Local authority    E92000001
#> 151         2025         Week 21 Year to date  Local authority    E92000001
#> 152         2025         Week 21 Year to date  Local authority    E92000001
#> 153         2025         Week 21 Year to date  Local authority    E92000001
#> 154         2025         Week 21 Year to date  Local authority    E92000001
#> 155         2025         Week 21 Year to date  Local authority    E92000001
#> 156         2025         Week 21 Year to date  Local authority    E92000001
#> 157         2025         Week 21 Year to date  Local authority    E92000001
#> 158         2025         Week 21 Year to date  Local authority    E92000001
#> 159         2025         Week 21 Year to date  Local authority    E92000001
#> 160         2025         Week 21 Year to date  Local authority    E92000001
#> 161         2025         Week 21 Year to date  Local authority    E92000001
#> 162         2025         Week 21 Year to date  Local authority    E92000001
#> 163         2025         Week 21 Year to date  Local authority    E92000001
#> 164         2025         Week 21 Year to date  Local authority    E92000001
#> 165         2025         Week 21 Year to date  Local authority    E92000001
#> 166         2025         Week 21 Year to date  Local authority    E92000001
#> 167         2025         Week 21 Year to date  Local authority    E92000001
#> 168         2025         Week 21 Year to date  Local authority    E92000001
#> 169         2025         Week 21 Year to date  Local authority    E92000001
#> 170         2025         Week 21 Year to date         Regional    E92000001
#> 171         2025         Week 21 Year to date         Regional    E92000001
#> 172         2025         Week 21 Year to date         Regional    E92000001
#> 173         2025         Week 21 Year to date         Regional    E92000001
#> 174         2025         Week 21 Year to date  Local authority    E92000001
#> 175         2025         Week 21 Year to date  Local authority    E92000001
#> 176         2025         Week 21 Year to date  Local authority    E92000001
#> 177         2025         Week 21 Year to date  Local authority    E92000001
#> 178         2025         Week 21 Year to date  Local authority    E92000001
#> 179         2025         Week 21 Year to date  Local authority    E92000001
#> 180         2025         Week 21 Year to date  Local authority    E92000001
#> 181         2025         Week 21 Year to date  Local authority    E92000001
#> 182         2025         Week 21 Year to date  Local authority    E92000001
#> 183         2025         Week 21 Year to date  Local authority    E92000001
#> 184         2025         Week 21 Year to date  Local authority    E92000001
#> 185         2025         Week 21 Year to date  Local authority    E92000001
#> 186         2025         Week 21 Year to date  Local authority    E92000001
#> 187         2025         Week 21 Year to date  Local authority    E92000001
#> 188         2025         Week 21 Year to date  Local authority    E92000001
#> 189         2025         Week 21 Year to date  Local authority    E92000001
#> 190         2025         Week 21 Year to date  Local authority    E92000001
#> 191         2025         Week 21 Year to date  Local authority    E92000001
#> 192         2025         Week 21 Year to date  Local authority    E92000001
#> 193         2025         Week 21 Year to date  Local authority    E92000001
#> 194         2025         Week 21 Year to date  Local authority    E92000001
#> 195         2025         Week 21 Year to date  Local authority    E92000001
#> 196         2025         Week 21 Year to date  Local authority    E92000001
#> 197         2025         Week 21 Year to date  Local authority    E92000001
#> 198         2025         Week 21 Year to date  Local authority    E92000001
#> 199         2025         Week 21 Year to date  Local authority    E92000001
#> 200         2025         Week 21 Year to date  Local authority    E92000001
#> 201         2025         Week 21 Year to date  Local authority    E92000001
#> 202         2025         Week 21 Year to date  Local authority    E92000001
#> 203         2025         Week 21 Year to date         Regional    E92000001
#> 204         2025         Week 21 Year to date         Regional    E92000001
#> 205         2025         Week 21 Year to date         Regional    E92000001
#> 206         2025         Week 21 Year to date         Regional    E92000001
#> 207         2025         Week 21 Year to date  Local authority    E92000001
#> 208         2025         Week 21 Year to date  Local authority    E92000001
#> 209         2025         Week 21 Year to date  Local authority    E92000001
#> 210         2025         Week 21 Year to date  Local authority    E92000001
#> 211         2025         Week 21 Year to date  Local authority    E92000001
#> 212         2025         Week 21 Year to date  Local authority    E92000001
#> 213         2025         Week 21 Year to date  Local authority    E92000001
#> 214         2025         Week 21 Year to date  Local authority    E92000001
#> 215         2025         Week 21 Year to date  Local authority    E92000001
#> 216         2025         Week 21 Year to date  Local authority    E92000001
#> 217         2025         Week 21 Year to date  Local authority    E92000001
#> 218         2025         Week 21 Year to date  Local authority    E92000001
#> 219         2025         Week 21 Year to date  Local authority    E92000001
#> 220         2025         Week 21 Year to date  Local authority    E92000001
#> 221         2025         Week 21 Year to date  Local authority    E92000001
#> 222         2025         Week 21 Year to date  Local authority    E92000001
#> 223         2025         Week 21 Year to date  Local authority    E92000001
#> 224         2025         Week 21 Year to date  Local authority    E92000001
#> 225         2025         Week 21 Year to date  Local authority    E92000001
#> 226         2025         Week 21 Year to date  Local authority    E92000001
#> 227         2025         Week 21 Year to date  Local authority    E92000001
#> 228         2025         Week 21 Year to date  Local authority    E92000001
#> 229         2025         Week 21 Year to date  Local authority    E92000001
#> 230         2025         Week 21 Year to date  Local authority    E92000001
#> 231         2025         Week 21 Year to date  Local authority    E92000001
#> 232         2025         Week 21 Year to date  Local authority    E92000001
#> 233         2025         Week 21 Year to date  Local authority    E92000001
#> 234         2025         Week 21 Year to date  Local authority    E92000001
#> 235         2025         Week 21 Year to date  Local authority    E92000001
#> 236         2025         Week 21 Year to date  Local authority    E92000001
#> 237         2025         Week 21 Year to date  Local authority    E92000001
#> 238         2025         Week 21 Year to date  Local authority    E92000001
#> 239         2025         Week 21 Year to date  Local authority    E92000001
#> 240         2025         Week 21 Year to date  Local authority    E92000001
#> 241         2025         Week 21 Year to date  Local authority    E92000001
#> 242         2025         Week 21 Year to date  Local authority    E92000001
#> 243         2025         Week 21 Year to date  Local authority    E92000001
#> 244         2025         Week 21 Year to date  Local authority    E92000001
#> 245         2025         Week 21 Year to date  Local authority    E92000001
#> 246         2025         Week 21 Year to date  Local authority    E92000001
#> 247         2025         Week 21 Year to date  Local authority    E92000001
#> 248         2025         Week 21 Year to date  Local authority    E92000001
#> 249         2025         Week 21 Year to date         Regional    E92000001
#> 250         2025         Week 21 Year to date         Regional    E92000001
#> 251         2025         Week 21 Year to date         Regional    E92000001
#> 252         2025         Week 21 Year to date         Regional    E92000001
#> 253         2025         Week 21 Year to date  Local authority    E92000001
#> 254         2025         Week 21 Year to date  Local authority    E92000001
#> 255         2025         Week 21 Year to date  Local authority    E92000001
#> 256         2025         Week 21 Year to date  Local authority    E92000001
#> 257         2025         Week 21 Year to date  Local authority    E92000001
#> 258         2025         Week 21 Year to date  Local authority    E92000001
#> 259         2025         Week 21 Year to date  Local authority    E92000001
#> 260         2025         Week 21 Year to date  Local authority    E92000001
#> 261         2025         Week 21 Year to date  Local authority    E92000001
#> 262         2025         Week 21 Year to date  Local authority    E92000001
#> 263         2025         Week 21 Year to date  Local authority    E92000001
#> 264         2025         Week 21 Year to date  Local authority    E92000001
#> 265         2025         Week 21 Year to date  Local authority    E92000001
#> 266         2025         Week 21 Year to date  Local authority    E92000001
#> 267         2025         Week 21 Year to date  Local authority    E92000001
#> 268         2025         Week 21 Year to date  Local authority    E92000001
#> 269         2025         Week 21 Year to date  Local authority    E92000001
#> 270         2025         Week 21 Year to date  Local authority    E92000001
#> 271         2025         Week 21 Year to date  Local authority    E92000001
#> 272         2025         Week 21 Year to date  Local authority    E92000001
#> 273         2025         Week 21 Year to date  Local authority    E92000001
#> 274         2025         Week 21 Year to date  Local authority    E92000001
#> 275         2025         Week 21 Year to date  Local authority    E92000001
#> 276         2025         Week 21 Year to date  Local authority    E92000001
#> 277         2025         Week 21 Year to date  Local authority    E92000001
#> 278         2025         Week 21 Year to date  Local authority    E92000001
#> 279         2025         Week 21 Year to date  Local authority    E92000001
#> 280         2025         Week 21 Year to date  Local authority    E92000001
#> 281         2025         Week 21 Year to date  Local authority    E92000001
#> 282         2025         Week 21 Year to date  Local authority    E92000001
#> 283         2025         Week 21 Year to date  Local authority    E92000001
#> 284         2025         Week 21 Year to date  Local authority    E92000001
#> 285         2025         Week 21 Year to date  Local authority    E92000001
#> 286         2025         Week 21 Year to date         Regional    E92000001
#> 287         2025         Week 21 Year to date         Regional    E92000001
#> 288         2025         Week 21 Year to date         Regional    E92000001
#> 289         2025         Week 21 Year to date         Regional    E92000001
#> 290         2025         Week 21 Year to date  Local authority    E92000001
#> 291         2025         Week 21 Year to date  Local authority    E92000001
#> 292         2025         Week 21 Year to date  Local authority    E92000001
#> 293         2025         Week 21 Year to date  Local authority    E92000001
#> 294         2025         Week 21 Year to date  Local authority    E92000001
#> 295         2025         Week 21 Year to date  Local authority    E92000001
#> 296         2025         Week 21 Year to date  Local authority    E92000001
#> 297         2025         Week 21 Year to date  Local authority    E92000001
#> 298         2025         Week 21 Year to date  Local authority    E92000001
#> 299         2025         Week 21 Year to date  Local authority    E92000001
#> 300         2025         Week 21 Year to date  Local authority    E92000001
#> 301         2025         Week 21 Year to date  Local authority    E92000001
#> 302         2025         Week 21 Year to date  Local authority    E92000001
#> 303         2025         Week 21 Year to date  Local authority    E92000001
#> 304         2025         Week 21 Year to date  Local authority    E92000001
#> 305         2025         Week 21 Year to date  Local authority    E92000001
#> 306         2025         Week 21 Year to date  Local authority    E92000001
#> 307         2025         Week 21 Year to date  Local authority    E92000001
#> 308         2025         Week 21 Year to date  Local authority    E92000001
#> 309         2025         Week 21 Year to date  Local authority    E92000001
#> 310         2025         Week 21 Year to date  Local authority    E92000001
#> 311         2025         Week 21 Year to date  Local authority    E92000001
#> 312         2025         Week 21 Year to date  Local authority    E92000001
#> 313         2025         Week 21 Year to date  Local authority    E92000001
#> 314         2025         Week 21 Year to date  Local authority    E92000001
#> 315         2025         Week 21 Year to date  Local authority    E92000001
#> 316         2025         Week 21 Year to date  Local authority    E92000001
#> 317         2025         Week 21 Year to date  Local authority    E92000001
#> 318         2025         Week 21 Year to date  Local authority    E92000001
#> 319         2025         Week 21 Year to date  Local authority    E92000001
#> 320         2025         Week 21 Year to date  Local authority    E92000001
#> 321         2025         Week 21 Year to date  Local authority    E92000001
#> 322         2025         Week 21 Year to date  Local authority    E92000001
#> 323         2025         Week 21 Year to date  Local authority    E92000001
#> 324         2025         Week 21 Year to date  Local authority    E92000001
#> 325         2025         Week 21 Year to date  Local authority    E92000001
#> 326         2025         Week 21 Year to date  Local authority    E92000001
#> 327         2025         Week 21 Year to date  Local authority    E92000001
#> 328         2025         Week 21 Year to date  Local authority    E92000001
#> 329         2025         Week 21 Year to date  Local authority    E92000001
#> 330         2025         Week 21 Year to date  Local authority    E92000001
#> 331         2025         Week 21 Year to date  Local authority    E92000001
#> 332         2025         Week 21 Year to date  Local authority    E92000001
#> 333         2025         Week 21 Year to date  Local authority    E92000001
#> 334         2025         Week 21 Year to date  Local authority    E92000001
#> 335         2025         Week 21 Year to date  Local authority    E92000001
#> 336         2025         Week 21 Year to date  Local authority    E92000001
#> 337         2025         Week 21 Year to date  Local authority    E92000001
#> 338         2025         Week 21 Year to date  Local authority    E92000001
#> 339         2025         Week 21 Year to date  Local authority    E92000001
#> 340         2025         Week 21 Year to date  Local authority    E92000001
#> 341         2025         Week 21 Year to date  Local authority    E92000001
#> 342         2025         Week 21 Year to date  Local authority    E92000001
#> 343         2025         Week 21 Year to date  Local authority    E92000001
#> 344         2025         Week 21 Year to date  Local authority    E92000001
#> 345         2025         Week 21 Year to date  Local authority    E92000001
#> 346         2025         Week 21 Year to date  Local authority    E92000001
#> 347         2025         Week 21 Year to date  Local authority    E92000001
#> 348         2025         Week 21 Year to date  Local authority    E92000001
#> 349         2025         Week 21 Year to date  Local authority    E92000001
#> 350         2025         Week 21 Year to date  Local authority    E92000001
#> 351         2025         Week 21 Year to date  Local authority    E92000001
#> 352         2025         Week 21 Year to date  Local authority    E92000001
#> 353         2025         Week 21 Year to date  Local authority    E92000001
#> 354         2025         Week 21 Year to date  Local authority    E92000001
#> 355         2025         Week 21 Year to date  Local authority    E92000001
#> 356         2025         Week 21 Year to date  Local authority    E92000001
#> 357         2025         Week 21 Year to date  Local authority    E92000001
#> 358         2025         Week 21 Year to date  Local authority    E92000001
#> 359         2025         Week 21 Year to date  Local authority    E92000001
#> 360         2025         Week 21 Year to date  Local authority    E92000001
#> 361         2025         Week 21 Year to date  Local authority    E92000001
#> 362         2025         Week 21 Year to date  Local authority    E92000001
#> 363         2025         Week 21 Year to date  Local authority    E92000001
#> 364         2025         Week 21 Year to date  Local authority    E92000001
#> 365         2025         Week 21 Year to date  Local authority    E92000001
#> 366         2025         Week 21 Year to date  Local authority    E92000001
#> 367         2025         Week 21 Year to date  Local authority    E92000001
#> 368         2025         Week 21 Year to date  Local authority    E92000001
#> 369         2025         Week 21 Year to date  Local authority    E92000001
#> 370         2025         Week 21 Year to date  Local authority    E92000001
#> 371         2025         Week 21 Year to date  Local authority    E92000001
#> 372         2025         Week 21 Year to date  Local authority    E92000001
#> 373         2025         Week 21 Year to date  Local authority    E92000001
#> 374         2025         Week 21 Year to date  Local authority    E92000001
#> 375         2025         Week 21 Year to date  Local authority    E92000001
#> 376         2025         Week 21 Year to date  Local authority    E92000001
#> 377         2025         Week 21 Year to date  Local authority    E92000001
#> 378         2025         Week 21 Year to date  Local authority    E92000001
#> 379         2025         Week 21 Year to date  Local authority    E92000001
#> 380         2025         Week 21 Year to date  Local authority    E92000001
#> 381         2025         Week 21 Year to date  Local authority    E92000001
#> 382         2025         Week 21 Year to date  Local authority    E92000001
#> 383         2025         Week 21 Year to date  Local authority    E92000001
#> 384         2025         Week 21 Year to date  Local authority    E92000001
#> 385         2025         Week 21 Year to date  Local authority    E92000001
#> 386         2025         Week 21 Year to date  Local authority    E92000001
#> 387         2025         Week 21 Year to date         Regional    E92000001
#> 388         2025         Week 21 Year to date         Regional    E92000001
#> 389         2025         Week 21 Year to date         Regional    E92000001
#> 390         2025         Week 21 Year to date         Regional    E92000001
#> 391         2025         Week 21 Year to date  Local authority    E92000001
#> 392         2025         Week 21 Year to date  Local authority    E92000001
#> 393         2025         Week 21 Year to date  Local authority    E92000001
#> 394         2025         Week 21 Year to date  Local authority    E92000001
#> 395         2025         Week 21 Year to date  Local authority    E92000001
#> 396         2025         Week 21 Year to date  Local authority    E92000001
#> 397         2025         Week 21 Year to date  Local authority    E92000001
#> 398         2025         Week 21 Year to date  Local authority    E92000001
#> 399         2025         Week 21 Year to date  Local authority    E92000001
#> 400         2025         Week 21 Year to date  Local authority    E92000001
#> 401         2025         Week 21 Year to date  Local authority    E92000001
#> 402         2025         Week 21 Year to date  Local authority    E92000001
#> 403         2025         Week 21 Year to date  Local authority    E92000001
#> 404         2025         Week 21 Year to date  Local authority    E92000001
#> 405         2025         Week 21 Year to date  Local authority    E92000001
#> 406         2025         Week 21 Year to date  Local authority    E92000001
#> 407         2025         Week 21 Year to date  Local authority    E92000001
#> 408         2025         Week 21 Year to date  Local authority    E92000001
#> 409         2025         Week 21 Year to date  Local authority    E92000001
#> 410         2025         Week 21 Year to date  Local authority    E92000001
#> 411         2025         Week 21 Year to date  Local authority    E92000001
#> 412         2025         Week 21 Year to date  Local authority    E92000001
#> 413         2025         Week 21 Year to date  Local authority    E92000001
#> 414         2025         Week 21 Year to date  Local authority    E92000001
#> 415         2025         Week 21 Year to date  Local authority    E92000001
#> 416         2025         Week 21 Year to date  Local authority    E92000001
#> 417         2025         Week 21 Year to date  Local authority    E92000001
#> 418         2025         Week 21 Year to date  Local authority    E92000001
#> 419         2025         Week 21 Year to date  Local authority    E92000001
#> 420         2025         Week 21 Year to date  Local authority    E92000001
#> 421         2025         Week 21 Year to date  Local authority    E92000001
#> 422         2025         Week 21 Year to date  Local authority    E92000001
#> 423         2025         Week 21 Year to date  Local authority    E92000001
#> 424         2025         Week 21 Year to date  Local authority    E92000001
#> 425         2025         Week 21 Year to date  Local authority    E92000001
#> 426         2025         Week 21 Year to date  Local authority    E92000001
#> 427         2025         Week 21 Year to date  Local authority    E92000001
#> 428         2025         Week 21 Year to date  Local authority    E92000001
#> 429         2025         Week 21 Year to date  Local authority    E92000001
#> 430         2025         Week 21 Year to date  Local authority    E92000001
#> 431         2025         Week 21 Year to date  Local authority    E92000001
#> 432         2025         Week 21 Year to date  Local authority    E92000001
#> 433         2025         Week 21 Year to date  Local authority    E92000001
#> 434         2025         Week 21 Year to date  Local authority    E92000001
#> 435         2025         Week 21 Year to date  Local authority    E92000001
#> 436         2025         Week 21 Year to date  Local authority    E92000001
#> 437         2025         Week 21 Year to date  Local authority    E92000001
#> 438         2025         Week 21 Year to date  Local authority    E92000001
#> 439         2025         Week 21 Year to date  Local authority    E92000001
#> 440         2025         Week 21 Year to date  Local authority    E92000001
#> 441         2025         Week 21 Year to date  Local authority    E92000001
#> 442         2025         Week 21 Year to date  Local authority    E92000001
#> 443         2025         Week 21 Year to date  Local authority    E92000001
#> 444         2025         Week 21 Year to date  Local authority    E92000001
#> 445         2025         Week 21 Year to date  Local authority    E92000001
#> 446         2025         Week 21 Year to date  Local authority    E92000001
#> 447         2025         Week 21 Year to date  Local authority    E92000001
#> 448         2025         Week 21 Year to date         Regional    E92000001
#> 449         2025         Week 21 Year to date         Regional    E92000001
#> 450         2025         Week 21 Year to date         Regional    E92000001
#> 451         2025         Week 21 Year to date         Regional    E92000001
#> 452         2025         Week 21 Year to date  Local authority    E92000001
#> 453         2025         Week 21 Year to date  Local authority    E92000001
#> 454         2025         Week 21 Year to date  Local authority    E92000001
#> 455         2025         Week 21 Year to date  Local authority    E92000001
#> 456         2025         Week 21 Year to date  Local authority    E92000001
#> 457         2025         Week 21 Year to date  Local authority    E92000001
#> 458         2025         Week 21 Year to date  Local authority    E92000001
#> 459         2025         Week 21 Year to date  Local authority    E92000001
#> 460         2025         Week 21 Year to date  Local authority    E92000001
#> 461         2025         Week 21 Year to date  Local authority    E92000001
#> 462         2025         Week 21 Year to date  Local authority    E92000001
#> 463         2025         Week 21 Year to date  Local authority    E92000001
#> 464         2025         Week 21 Year to date  Local authority    E92000001
#> 465         2025         Week 21 Year to date  Local authority    E92000001
#> 466         2025         Week 21 Year to date  Local authority    E92000001
#> 467         2025         Week 21 Year to date  Local authority    E92000001
#> 468         2025         Week 21 Year to date  Local authority    E92000001
#> 469         2025         Week 21 Year to date  Local authority    E92000001
#> 470         2025         Week 21 Year to date  Local authority    E92000001
#> 471         2025         Week 21 Year to date  Local authority    E92000001
#> 472         2025         Week 21 Year to date  Local authority    E92000001
#> 473         2025         Week 21 Year to date  Local authority    E92000001
#> 474         2025         Week 21 Year to date  Local authority    E92000001
#> 475         2025         Week 21 Year to date  Local authority    E92000001
#> 476         2025         Week 21 Year to date  Local authority    E92000001
#> 477         2025         Week 21 Year to date  Local authority    E92000001
#> 478         2025         Week 21 Year to date  Local authority    E92000001
#> 479         2025         Week 21 Year to date  Local authority    E92000001
#> 480         2025         Week 21 Year to date  Local authority    E92000001
#> 481         2025         Week 21 Year to date  Local authority    E92000001
#> 482         2025         Week 21 Year to date  Local authority    E92000001
#> 483         2025         Week 21 Year to date  Local authority    E92000001
#> 484         2025         Week 21 Year to date  Local authority    E92000001
#> 485         2025         Week 21 Year to date  Local authority    E92000001
#> 486         2025         Week 21 Year to date  Local authority    E92000001
#> 487         2025         Week 21 Year to date  Local authority    E92000001
#> 488         2025         Week 21 Year to date  Local authority    E92000001
#> 489         2025         Week 21 Year to date  Local authority    E92000001
#> 490         2025         Week 21 Year to date  Local authority    E92000001
#> 491         2025         Week 21 Year to date  Local authority    E92000001
#> 492         2025         Week 21 Year to date  Local authority    E92000001
#> 493         2025         Week 21 Year to date  Local authority    E92000001
#> 494         2025         Week 21 Year to date  Local authority    E92000001
#> 495         2025         Week 20 Year to date         National    E92000001
#> 496         2025         Week 20 Year to date         National    E92000001
#> 497         2025         Week 20 Year to date         National    E92000001
#> 498         2025         Week 20 Year to date         National    E92000001
#> 499         2025         Week 20 Year to date         Regional    E92000001
#> 500         2025         Week 20 Year to date         Regional    E92000001
#> 501         2025         Week 20 Year to date         Regional    E92000001
#> 502         2025         Week 20 Year to date         Regional    E92000001
#> 503         2025         Week 20 Year to date  Local authority    E92000001
#> 504         2025         Week 20 Year to date  Local authority    E92000001
#> 505         2025         Week 20 Year to date  Local authority    E92000001
#> 506         2025         Week 20 Year to date  Local authority    E92000001
#> 507         2025         Week 20 Year to date  Local authority    E92000001
#> 508         2025         Week 20 Year to date  Local authority    E92000001
#> 509         2025         Week 20 Year to date  Local authority    E92000001
#> 510         2025         Week 20 Year to date  Local authority    E92000001
#> 511         2025         Week 20 Year to date  Local authority    E92000001
#> 512         2025         Week 20 Year to date  Local authority    E92000001
#> 513         2025         Week 20 Year to date  Local authority    E92000001
#> 514         2025         Week 20 Year to date  Local authority    E92000001
#> 515         2025         Week 20 Year to date  Local authority    E92000001
#> 516         2025         Week 20 Year to date  Local authority    E92000001
#> 517         2025         Week 20 Year to date  Local authority    E92000001
#> 518         2025         Week 20 Year to date  Local authority    E92000001
#> 519         2025         Week 20 Year to date  Local authority    E92000001
#> 520         2025         Week 20 Year to date  Local authority    E92000001
#> 521         2025         Week 20 Year to date  Local authority    E92000001
#> 522         2025         Week 20 Year to date  Local authority    E92000001
#> 523         2025         Week 20 Year to date  Local authority    E92000001
#> 524         2025         Week 20 Year to date  Local authority    E92000001
#> 525         2025         Week 20 Year to date  Local authority    E92000001
#> 526         2025         Week 20 Year to date  Local authority    E92000001
#> 527         2025         Week 20 Year to date  Local authority    E92000001
#> 528         2025         Week 20 Year to date  Local authority    E92000001
#> 529         2025         Week 20 Year to date  Local authority    E92000001
#> 530         2025         Week 20 Year to date  Local authority    E92000001
#> 531         2025         Week 20 Year to date  Local authority    E92000001
#> 532         2025         Week 20 Year to date  Local authority    E92000001
#> 533         2025         Week 20 Year to date  Local authority    E92000001
#> 534         2025         Week 20 Year to date  Local authority    E92000001
#> 535         2025         Week 20 Year to date  Local authority    E92000001
#> 536         2025         Week 20 Year to date  Local authority    E92000001
#> 537         2025         Week 20 Year to date  Local authority    E92000001
#> 538         2025         Week 20 Year to date  Local authority    E92000001
#> 539         2025         Week 20 Year to date         Regional    E92000001
#> 540         2025         Week 20 Year to date         Regional    E92000001
#> 541         2025         Week 20 Year to date         Regional    E92000001
#> 542         2025         Week 20 Year to date         Regional    E92000001
#> 543         2025         Week 20 Year to date  Local authority    E92000001
#> 544         2025         Week 20 Year to date  Local authority    E92000001
#> 545         2025         Week 20 Year to date  Local authority    E92000001
#> 546         2025         Week 20 Year to date  Local authority    E92000001
#> 547         2025         Week 20 Year to date  Local authority    E92000001
#> 548         2025         Week 20 Year to date  Local authority    E92000001
#> 549         2025         Week 20 Year to date  Local authority    E92000001
#> 550         2025         Week 20 Year to date  Local authority    E92000001
#> 551         2025         Week 20 Year to date  Local authority    E92000001
#> 552         2025         Week 20 Year to date  Local authority    E92000001
#> 553         2025         Week 20 Year to date  Local authority    E92000001
#> 554         2025         Week 20 Year to date  Local authority    E92000001
#> 555         2025         Week 20 Year to date  Local authority    E92000001
#> 556         2025         Week 20 Year to date  Local authority    E92000001
#> 557         2025         Week 20 Year to date  Local authority    E92000001
#> 558         2025         Week 20 Year to date  Local authority    E92000001
#> 559         2025         Week 20 Year to date  Local authority    E92000001
#> 560         2025         Week 20 Year to date  Local authority    E92000001
#> 561         2025         Week 20 Year to date  Local authority    E92000001
#> 562         2025         Week 20 Year to date  Local authority    E92000001
#> 563         2025         Week 20 Year to date  Local authority    E92000001
#> 564         2025         Week 20 Year to date  Local authority    E92000001
#> 565         2025         Week 20 Year to date  Local authority    E92000001
#> 566         2025         Week 20 Year to date  Local authority    E92000001
#> 567         2025         Week 20 Year to date  Local authority    E92000001
#> 568         2025         Week 20 Year to date  Local authority    E92000001
#> 569         2025         Week 20 Year to date  Local authority    E92000001
#> 570         2025         Week 20 Year to date  Local authority    E92000001
#> 571         2025         Week 20 Year to date  Local authority    E92000001
#> 572         2025         Week 20 Year to date  Local authority    E92000001
#> 573         2025         Week 20 Year to date  Local authority    E92000001
#> 574         2025         Week 20 Year to date  Local authority    E92000001
#> 575         2025         Week 20 Year to date  Local authority    E92000001
#> 576         2025         Week 20 Year to date  Local authority    E92000001
#> 577         2025         Week 20 Year to date  Local authority    E92000001
#> 578         2025         Week 20 Year to date  Local authority    E92000001
#> 579         2025         Week 20 Year to date  Local authority    E92000001
#> 580         2025         Week 20 Year to date  Local authority    E92000001
#> 581         2025         Week 20 Year to date  Local authority    E92000001
#> 582         2025         Week 20 Year to date  Local authority    E92000001
#> 583         2025         Week 20 Year to date  Local authority    E92000001
#> 584         2025         Week 20 Year to date  Local authority    E92000001
#> 585         2025         Week 20 Year to date  Local authority    E92000001
#> 586         2025         Week 20 Year to date  Local authority    E92000001
#> 587         2025         Week 20 Year to date  Local authority    E92000001
#> 588         2025         Week 20 Year to date  Local authority    E92000001
#> 589         2025         Week 20 Year to date  Local authority    E92000001
#> 590         2025         Week 20 Year to date  Local authority    E92000001
#> 591         2025         Week 20 Year to date  Local authority    E92000001
#> 592         2025         Week 20 Year to date  Local authority    E92000001
#> 593         2025         Week 20 Year to date  Local authority    E92000001
#> 594         2025         Week 20 Year to date  Local authority    E92000001
#> 595         2025         Week 20 Year to date  Local authority    E92000001
#> 596         2025         Week 20 Year to date  Local authority    E92000001
#> 597         2025         Week 20 Year to date  Local authority    E92000001
#> 598         2025         Week 20 Year to date  Local authority    E92000001
#> 599         2025         Week 20 Year to date  Local authority    E92000001
#> 600         2025         Week 20 Year to date  Local authority    E92000001
#> 601         2025         Week 20 Year to date  Local authority    E92000001
#> 602         2025         Week 20 Year to date  Local authority    E92000001
#> 603         2025         Week 20 Year to date  Local authority    E92000001
#> 604         2025         Week 20 Year to date  Local authority    E92000001
#> 605         2025         Week 20 Year to date  Local authority    E92000001
#> 606         2025         Week 20 Year to date  Local authority    E92000001
#> 607         2025         Week 20 Year to date  Local authority    E92000001
#> 608         2025         Week 20 Year to date  Local authority    E92000001
#> 609         2025         Week 20 Year to date  Local authority    E92000001
#> 610         2025         Week 20 Year to date  Local authority    E92000001
#> 611         2025         Week 20 Year to date  Local authority    E92000001
#> 612         2025         Week 20 Year to date  Local authority    E92000001
#> 613         2025         Week 20 Year to date  Local authority    E92000001
#> 614         2025         Week 20 Year to date  Local authority    E92000001
#> 615         2025         Week 20 Year to date         Regional    E92000001
#> 616         2025         Week 20 Year to date         Regional    E92000001
#> 617         2025         Week 20 Year to date         Regional    E92000001
#> 618         2025         Week 20 Year to date         Regional    E92000001
#> 619         2025         Week 20 Year to date  Local authority    E92000001
#> 620         2025         Week 20 Year to date  Local authority    E92000001
#> 621         2025         Week 20 Year to date  Local authority    E92000001
#> 622         2025         Week 20 Year to date  Local authority    E92000001
#> 623         2025         Week 20 Year to date  Local authority    E92000001
#> 624         2025         Week 20 Year to date  Local authority    E92000001
#> 625         2025         Week 20 Year to date  Local authority    E92000001
#> 626         2025         Week 20 Year to date  Local authority    E92000001
#> 627         2025         Week 20 Year to date  Local authority    E92000001
#> 628         2025         Week 20 Year to date  Local authority    E92000001
#> 629         2025         Week 20 Year to date  Local authority    E92000001
#> 630         2025         Week 20 Year to date  Local authority    E92000001
#> 631         2025         Week 20 Year to date  Local authority    E92000001
#> 632         2025         Week 20 Year to date  Local authority    E92000001
#> 633         2025         Week 20 Year to date  Local authority    E92000001
#> 634         2025         Week 20 Year to date  Local authority    E92000001
#> 635         2025         Week 20 Year to date  Local authority    E92000001
#> 636         2025         Week 20 Year to date  Local authority    E92000001
#> 637         2025         Week 20 Year to date  Local authority    E92000001
#> 638         2025         Week 20 Year to date  Local authority    E92000001
#> 639         2025         Week 20 Year to date  Local authority    E92000001
#> 640         2025         Week 20 Year to date  Local authority    E92000001
#> 641         2025         Week 20 Year to date  Local authority    E92000001
#> 642         2025         Week 20 Year to date  Local authority    E92000001
#> 643         2025         Week 20 Year to date  Local authority    E92000001
#> 644         2025         Week 20 Year to date  Local authority    E92000001
#> 645         2025         Week 20 Year to date  Local authority    E92000001
#> 646         2025         Week 20 Year to date  Local authority    E92000001
#> 647         2025         Week 20 Year to date  Local authority    E92000001
#> 648         2025         Week 20 Year to date  Local authority    E92000001
#> 649         2025         Week 20 Year to date  Local authority    E92000001
#> 650         2025         Week 20 Year to date  Local authority    E92000001
#> 651         2025         Week 20 Year to date  Local authority    E92000001
#> 652         2025         Week 20 Year to date  Local authority    E92000001
#> 653         2025         Week 20 Year to date  Local authority    E92000001
#> 654         2025         Week 20 Year to date  Local authority    E92000001
#> 655         2025         Week 20 Year to date  Local authority    E92000001
#> 656         2025         Week 20 Year to date  Local authority    E92000001
#> 657         2025         Week 20 Year to date  Local authority    E92000001
#> 658         2025         Week 20 Year to date  Local authority    E92000001
#> 659         2025         Week 20 Year to date  Local authority    E92000001
#> 660         2025         Week 20 Year to date  Local authority    E92000001
#> 661         2025         Week 20 Year to date  Local authority    E92000001
#> 662         2025         Week 20 Year to date  Local authority    E92000001
#> 663         2025         Week 20 Year to date  Local authority    E92000001
#> 664         2025         Week 20 Year to date         Regional    E92000001
#> 665         2025         Week 20 Year to date         Regional    E92000001
#> 666         2025         Week 20 Year to date         Regional    E92000001
#> 667         2025         Week 20 Year to date         Regional    E92000001
#> 668         2025         Week 20 Year to date  Local authority    E92000001
#> 669         2025         Week 20 Year to date  Local authority    E92000001
#> 670         2025         Week 20 Year to date  Local authority    E92000001
#> 671         2025         Week 20 Year to date  Local authority    E92000001
#> 672         2025         Week 20 Year to date  Local authority    E92000001
#> 673         2025         Week 20 Year to date  Local authority    E92000001
#> 674         2025         Week 20 Year to date  Local authority    E92000001
#> 675         2025         Week 20 Year to date  Local authority    E92000001
#> 676         2025         Week 20 Year to date  Local authority    E92000001
#> 677         2025         Week 20 Year to date  Local authority    E92000001
#> 678         2025         Week 20 Year to date  Local authority    E92000001
#> 679         2025         Week 20 Year to date  Local authority    E92000001
#> 680         2025         Week 20 Year to date  Local authority    E92000001
#> 681         2025         Week 20 Year to date  Local authority    E92000001
#> 682         2025         Week 20 Year to date  Local authority    E92000001
#> 683         2025         Week 20 Year to date  Local authority    E92000001
#> 684         2025         Week 20 Year to date  Local authority    E92000001
#> 685         2025         Week 20 Year to date  Local authority    E92000001
#> 686         2025         Week 20 Year to date  Local authority    E92000001
#> 687         2025         Week 20 Year to date  Local authority    E92000001
#> 688         2025         Week 20 Year to date  Local authority    E92000001
#> 689         2025         Week 20 Year to date  Local authority    E92000001
#> 690         2025         Week 20 Year to date  Local authority    E92000001
#> 691         2025         Week 20 Year to date  Local authority    E92000001
#> 692         2025         Week 20 Year to date  Local authority    E92000001
#> 693         2025         Week 20 Year to date  Local authority    E92000001
#> 694         2025         Week 20 Year to date  Local authority    E92000001
#> 695         2025         Week 20 Year to date  Local authority    E92000001
#> 696         2025         Week 20 Year to date  Local authority    E92000001
#> 697         2025         Week 20 Year to date         Regional    E92000001
#> 698         2025         Week 20 Year to date         Regional    E92000001
#> 699         2025         Week 20 Year to date         Regional    E92000001
#> 700         2025         Week 20 Year to date         Regional    E92000001
#> 701         2025         Week 20 Year to date  Local authority    E92000001
#> 702         2025         Week 20 Year to date  Local authority    E92000001
#> 703         2025         Week 20 Year to date  Local authority    E92000001
#> 704         2025         Week 20 Year to date  Local authority    E92000001
#> 705         2025         Week 20 Year to date  Local authority    E92000001
#> 706         2025         Week 20 Year to date  Local authority    E92000001
#> 707         2025         Week 20 Year to date  Local authority    E92000001
#> 708         2025         Week 20 Year to date  Local authority    E92000001
#> 709         2025         Week 20 Year to date  Local authority    E92000001
#> 710         2025         Week 20 Year to date  Local authority    E92000001
#> 711         2025         Week 20 Year to date  Local authority    E92000001
#> 712         2025         Week 20 Year to date  Local authority    E92000001
#> 713         2025         Week 20 Year to date  Local authority    E92000001
#> 714         2025         Week 20 Year to date  Local authority    E92000001
#> 715         2025         Week 20 Year to date  Local authority    E92000001
#> 716         2025         Week 20 Year to date  Local authority    E92000001
#> 717         2025         Week 20 Year to date  Local authority    E92000001
#> 718         2025         Week 20 Year to date  Local authority    E92000001
#> 719         2025         Week 20 Year to date  Local authority    E92000001
#> 720         2025         Week 20 Year to date  Local authority    E92000001
#> 721         2025         Week 20 Year to date  Local authority    E92000001
#> 722         2025         Week 20 Year to date  Local authority    E92000001
#> 723         2025         Week 20 Year to date  Local authority    E92000001
#> 724         2025         Week 20 Year to date  Local authority    E92000001
#> 725         2025         Week 20 Year to date  Local authority    E92000001
#> 726         2025         Week 20 Year to date  Local authority    E92000001
#> 727         2025         Week 20 Year to date  Local authority    E92000001
#> 728         2025         Week 20 Year to date  Local authority    E92000001
#> 729         2025         Week 20 Year to date  Local authority    E92000001
#> 730         2025         Week 20 Year to date  Local authority    E92000001
#> 731         2025         Week 20 Year to date  Local authority    E92000001
#> 732         2025         Week 20 Year to date  Local authority    E92000001
#> 733         2025         Week 20 Year to date  Local authority    E92000001
#> 734         2025         Week 20 Year to date  Local authority    E92000001
#> 735         2025         Week 20 Year to date  Local authority    E92000001
#> 736         2025         Week 20 Year to date  Local authority    E92000001
#> 737         2025         Week 20 Year to date  Local authority    E92000001
#> 738         2025         Week 20 Year to date  Local authority    E92000001
#> 739         2025         Week 20 Year to date  Local authority    E92000001
#> 740         2025         Week 20 Year to date  Local authority    E92000001
#> 741         2025         Week 20 Year to date  Local authority    E92000001
#> 742         2025         Week 20 Year to date  Local authority    E92000001
#> 743         2025         Week 20 Year to date         Regional    E92000001
#> 744         2025         Week 20 Year to date         Regional    E92000001
#> 745         2025         Week 20 Year to date         Regional    E92000001
#> 746         2025         Week 20 Year to date         Regional    E92000001
#> 747         2025         Week 20 Year to date  Local authority    E92000001
#> 748         2025         Week 20 Year to date  Local authority    E92000001
#> 749         2025         Week 20 Year to date  Local authority    E92000001
#> 750         2025         Week 20 Year to date  Local authority    E92000001
#> 751         2025         Week 20 Year to date  Local authority    E92000001
#> 752         2025         Week 20 Year to date  Local authority    E92000001
#> 753         2025         Week 20 Year to date  Local authority    E92000001
#> 754         2025         Week 20 Year to date  Local authority    E92000001
#> 755         2025         Week 20 Year to date  Local authority    E92000001
#> 756         2025         Week 20 Year to date  Local authority    E92000001
#> 757         2025         Week 20 Year to date  Local authority    E92000001
#> 758         2025         Week 20 Year to date  Local authority    E92000001
#> 759         2025         Week 20 Year to date  Local authority    E92000001
#> 760         2025         Week 20 Year to date  Local authority    E92000001
#> 761         2025         Week 20 Year to date  Local authority    E92000001
#> 762         2025         Week 20 Year to date  Local authority    E92000001
#> 763         2025         Week 20 Year to date  Local authority    E92000001
#> 764         2025         Week 20 Year to date  Local authority    E92000001
#> 765         2025         Week 20 Year to date  Local authority    E92000001
#> 766         2025         Week 20 Year to date  Local authority    E92000001
#> 767         2025         Week 20 Year to date  Local authority    E92000001
#> 768         2025         Week 20 Year to date  Local authority    E92000001
#> 769         2025         Week 20 Year to date  Local authority    E92000001
#> 770         2025         Week 20 Year to date  Local authority    E92000001
#> 771         2025         Week 20 Year to date  Local authority    E92000001
#> 772         2025         Week 20 Year to date  Local authority    E92000001
#> 773         2025         Week 20 Year to date  Local authority    E92000001
#> 774         2025         Week 20 Year to date  Local authority    E92000001
#> 775         2025         Week 20 Year to date  Local authority    E92000001
#> 776         2025         Week 20 Year to date  Local authority    E92000001
#> 777         2025         Week 20 Year to date  Local authority    E92000001
#> 778         2025         Week 20 Year to date  Local authority    E92000001
#> 779         2025         Week 20 Year to date  Local authority    E92000001
#> 780         2025         Week 20 Year to date         Regional    E92000001
#> 781         2025         Week 20 Year to date         Regional    E92000001
#> 782         2025         Week 20 Year to date         Regional    E92000001
#> 783         2025         Week 20 Year to date         Regional    E92000001
#> 784         2025         Week 20 Year to date  Local authority    E92000001
#> 785         2025         Week 20 Year to date  Local authority    E92000001
#> 786         2025         Week 20 Year to date  Local authority    E92000001
#> 787         2025         Week 20 Year to date  Local authority    E92000001
#> 788         2025         Week 20 Year to date  Local authority    E92000001
#> 789         2025         Week 20 Year to date  Local authority    E92000001
#> 790         2025         Week 20 Year to date  Local authority    E92000001
#> 791         2025         Week 20 Year to date  Local authority    E92000001
#> 792         2025         Week 20 Year to date  Local authority    E92000001
#> 793         2025         Week 20 Year to date  Local authority    E92000001
#> 794         2025         Week 20 Year to date  Local authority    E92000001
#> 795         2025         Week 20 Year to date  Local authority    E92000001
#> 796         2025         Week 20 Year to date  Local authority    E92000001
#> 797         2025         Week 20 Year to date  Local authority    E92000001
#> 798         2025         Week 20 Year to date  Local authority    E92000001
#> 799         2025         Week 20 Year to date  Local authority    E92000001
#> 800         2025         Week 20 Year to date  Local authority    E92000001
#> 801         2025         Week 20 Year to date  Local authority    E92000001
#> 802         2025         Week 20 Year to date  Local authority    E92000001
#> 803         2025         Week 20 Year to date  Local authority    E92000001
#> 804         2025         Week 20 Year to date  Local authority    E92000001
#> 805         2025         Week 20 Year to date  Local authority    E92000001
#> 806         2025         Week 20 Year to date  Local authority    E92000001
#> 807         2025         Week 20 Year to date  Local authority    E92000001
#> 808         2025         Week 20 Year to date  Local authority    E92000001
#> 809         2025         Week 20 Year to date  Local authority    E92000001
#> 810         2025         Week 20 Year to date  Local authority    E92000001
#> 811         2025         Week 20 Year to date  Local authority    E92000001
#> 812         2025         Week 20 Year to date  Local authority    E92000001
#> 813         2025         Week 20 Year to date  Local authority    E92000001
#> 814         2025         Week 20 Year to date  Local authority    E92000001
#> 815         2025         Week 20 Year to date  Local authority    E92000001
#> 816         2025         Week 20 Year to date  Local authority    E92000001
#> 817         2025         Week 20 Year to date  Local authority    E92000001
#> 818         2025         Week 20 Year to date  Local authority    E92000001
#> 819         2025         Week 20 Year to date  Local authority    E92000001
#> 820         2025         Week 20 Year to date  Local authority    E92000001
#> 821         2025         Week 20 Year to date  Local authority    E92000001
#> 822         2025         Week 20 Year to date  Local authority    E92000001
#> 823         2025         Week 20 Year to date  Local authority    E92000001
#> 824         2025         Week 20 Year to date  Local authority    E92000001
#> 825         2025         Week 20 Year to date  Local authority    E92000001
#> 826         2025         Week 20 Year to date  Local authority    E92000001
#> 827         2025         Week 20 Year to date  Local authority    E92000001
#> 828         2025         Week 20 Year to date  Local authority    E92000001
#> 829         2025         Week 20 Year to date  Local authority    E92000001
#> 830         2025         Week 20 Year to date  Local authority    E92000001
#> 831         2025         Week 20 Year to date  Local authority    E92000001
#> 832         2025         Week 20 Year to date  Local authority    E92000001
#> 833         2025         Week 20 Year to date  Local authority    E92000001
#> 834         2025         Week 20 Year to date  Local authority    E92000001
#> 835         2025         Week 20 Year to date  Local authority    E92000001
#> 836         2025         Week 20 Year to date  Local authority    E92000001
#> 837         2025         Week 20 Year to date  Local authority    E92000001
#> 838         2025         Week 20 Year to date  Local authority    E92000001
#> 839         2025         Week 20 Year to date  Local authority    E92000001
#> 840         2025         Week 20 Year to date  Local authority    E92000001
#> 841         2025         Week 20 Year to date  Local authority    E92000001
#> 842         2025         Week 20 Year to date  Local authority    E92000001
#> 843         2025         Week 20 Year to date  Local authority    E92000001
#> 844         2025         Week 20 Year to date  Local authority    E92000001
#> 845         2025         Week 20 Year to date  Local authority    E92000001
#> 846         2025         Week 20 Year to date  Local authority    E92000001
#> 847         2025         Week 20 Year to date  Local authority    E92000001
#> 848         2025         Week 20 Year to date  Local authority    E92000001
#> 849         2025         Week 20 Year to date  Local authority    E92000001
#> 850         2025         Week 20 Year to date  Local authority    E92000001
#> 851         2025         Week 20 Year to date  Local authority    E92000001
#> 852         2025         Week 20 Year to date  Local authority    E92000001
#> 853         2025         Week 20 Year to date  Local authority    E92000001
#> 854         2025         Week 20 Year to date  Local authority    E92000001
#> 855         2025         Week 20 Year to date  Local authority    E92000001
#> 856         2025         Week 20 Year to date  Local authority    E92000001
#> 857         2025         Week 20 Year to date  Local authority    E92000001
#> 858         2025         Week 20 Year to date  Local authority    E92000001
#> 859         2025         Week 20 Year to date  Local authority    E92000001
#> 860         2025         Week 20 Year to date  Local authority    E92000001
#> 861         2025         Week 20 Year to date  Local authority    E92000001
#> 862         2025         Week 20 Year to date  Local authority    E92000001
#> 863         2025         Week 20 Year to date  Local authority    E92000001
#> 864         2025         Week 20 Year to date  Local authority    E92000001
#> 865         2025         Week 20 Year to date  Local authority    E92000001
#> 866         2025         Week 20 Year to date  Local authority    E92000001
#> 867         2025         Week 20 Year to date  Local authority    E92000001
#> 868         2025         Week 20 Year to date  Local authority    E92000001
#> 869         2025         Week 20 Year to date  Local authority    E92000001
#> 870         2025         Week 20 Year to date  Local authority    E92000001
#> 871         2025         Week 20 Year to date  Local authority    E92000001
#> 872         2025         Week 20 Year to date  Local authority    E92000001
#> 873         2025         Week 20 Year to date  Local authority    E92000001
#> 874         2025         Week 20 Year to date  Local authority    E92000001
#> 875         2025         Week 20 Year to date  Local authority    E92000001
#> 876         2025         Week 20 Year to date  Local authority    E92000001
#> 877         2025         Week 20 Year to date  Local authority    E92000001
#> 878         2025         Week 20 Year to date  Local authority    E92000001
#> 879         2025         Week 20 Year to date  Local authority    E92000001
#> 880         2025         Week 20 Year to date  Local authority    E92000001
#> 881         2025         Week 20 Year to date         Regional    E92000001
#> 882         2025         Week 20 Year to date         Regional    E92000001
#> 883         2025         Week 20 Year to date         Regional    E92000001
#> 884         2025         Week 20 Year to date         Regional    E92000001
#> 885         2025         Week 20 Year to date  Local authority    E92000001
#> 886         2025         Week 20 Year to date  Local authority    E92000001
#> 887         2025         Week 20 Year to date  Local authority    E92000001
#> 888         2025         Week 20 Year to date  Local authority    E92000001
#> 889         2025         Week 20 Year to date  Local authority    E92000001
#> 890         2025         Week 20 Year to date  Local authority    E92000001
#> 891         2025         Week 20 Year to date  Local authority    E92000001
#> 892         2025         Week 20 Year to date  Local authority    E92000001
#> 893         2025         Week 20 Year to date  Local authority    E92000001
#> 894         2025         Week 20 Year to date  Local authority    E92000001
#> 895         2025         Week 20 Year to date  Local authority    E92000001
#> 896         2025         Week 20 Year to date  Local authority    E92000001
#> 897         2025         Week 20 Year to date  Local authority    E92000001
#> 898         2025         Week 20 Year to date  Local authority    E92000001
#> 899         2025         Week 20 Year to date  Local authority    E92000001
#> 900         2025         Week 20 Year to date  Local authority    E92000001
#> 901         2025         Week 20 Year to date  Local authority    E92000001
#> 902         2025         Week 20 Year to date  Local authority    E92000001
#> 903         2025         Week 20 Year to date  Local authority    E92000001
#> 904         2025         Week 20 Year to date  Local authority    E92000001
#> 905         2025         Week 20 Year to date  Local authority    E92000001
#> 906         2025         Week 20 Year to date  Local authority    E92000001
#> 907         2025         Week 20 Year to date  Local authority    E92000001
#> 908         2025         Week 20 Year to date  Local authority    E92000001
#> 909         2025         Week 20 Year to date  Local authority    E92000001
#> 910         2025         Week 20 Year to date  Local authority    E92000001
#> 911         2025         Week 20 Year to date  Local authority    E92000001
#> 912         2025         Week 20 Year to date  Local authority    E92000001
#> 913         2025         Week 20 Year to date  Local authority    E92000001
#> 914         2025         Week 20 Year to date  Local authority    E92000001
#> 915         2025         Week 20 Year to date  Local authority    E92000001
#> 916         2025         Week 20 Year to date  Local authority    E92000001
#> 917         2025         Week 20 Year to date  Local authority    E92000001
#> 918         2025         Week 20 Year to date  Local authority    E92000001
#> 919         2025         Week 20 Year to date  Local authority    E92000001
#> 920         2025         Week 20 Year to date  Local authority    E92000001
#> 921         2025         Week 20 Year to date  Local authority    E92000001
#> 922         2025         Week 20 Year to date  Local authority    E92000001
#> 923         2025         Week 20 Year to date  Local authority    E92000001
#> 924         2025         Week 20 Year to date  Local authority    E92000001
#> 925         2025         Week 20 Year to date  Local authority    E92000001
#> 926         2025         Week 20 Year to date  Local authority    E92000001
#> 927         2025         Week 20 Year to date  Local authority    E92000001
#> 928         2025         Week 20 Year to date  Local authority    E92000001
#> 929         2025         Week 20 Year to date  Local authority    E92000001
#> 930         2025         Week 20 Year to date  Local authority    E92000001
#> 931         2025         Week 20 Year to date  Local authority    E92000001
#> 932         2025         Week 20 Year to date  Local authority    E92000001
#> 933         2025         Week 20 Year to date  Local authority    E92000001
#> 934         2025         Week 20 Year to date  Local authority    E92000001
#> 935         2025         Week 20 Year to date  Local authority    E92000001
#> 936         2025         Week 20 Year to date  Local authority    E92000001
#> 937         2025         Week 20 Year to date  Local authority    E92000001
#> 938         2025         Week 20 Year to date  Local authority    E92000001
#> 939         2025         Week 20 Year to date  Local authority    E92000001
#> 940         2025         Week 20 Year to date  Local authority    E92000001
#> 941         2025         Week 20 Year to date  Local authority    E92000001
#> 942         2025         Week 20 Year to date         Regional    E92000001
#> 943         2025         Week 20 Year to date         Regional    E92000001
#> 944         2025         Week 20 Year to date         Regional    E92000001
#> 945         2025         Week 20 Year to date         Regional    E92000001
#> 946         2025         Week 20 Year to date  Local authority    E92000001
#> 947         2025         Week 20 Year to date  Local authority    E92000001
#> 948         2025         Week 20 Year to date  Local authority    E92000001
#> 949         2025         Week 20 Year to date  Local authority    E92000001
#> 950         2025         Week 20 Year to date  Local authority    E92000001
#> 951         2025         Week 20 Year to date  Local authority    E92000001
#> 952         2025         Week 20 Year to date  Local authority    E92000001
#> 953         2025         Week 20 Year to date  Local authority    E92000001
#> 954         2025         Week 20 Year to date  Local authority    E92000001
#> 955         2025         Week 20 Year to date  Local authority    E92000001
#> 956         2025         Week 20 Year to date  Local authority    E92000001
#> 957         2025         Week 20 Year to date  Local authority    E92000001
#> 958         2025         Week 20 Year to date  Local authority    E92000001
#> 959         2025         Week 20 Year to date  Local authority    E92000001
#> 960         2025         Week 20 Year to date  Local authority    E92000001
#> 961         2025         Week 20 Year to date  Local authority    E92000001
#> 962         2025         Week 20 Year to date  Local authority    E92000001
#> 963         2025         Week 20 Year to date  Local authority    E92000001
#> 964         2025         Week 20 Year to date  Local authority    E92000001
#> 965         2025         Week 20 Year to date  Local authority    E92000001
#> 966         2025         Week 20 Year to date  Local authority    E92000001
#> 967         2025         Week 20 Year to date  Local authority    E92000001
#> 968         2025         Week 20 Year to date  Local authority    E92000001
#> 969         2025         Week 20 Year to date  Local authority    E92000001
#> 970         2025         Week 20 Year to date  Local authority    E92000001
#> 971         2025         Week 20 Year to date  Local authority    E92000001
#> 972         2025         Week 20 Year to date  Local authority    E92000001
#> 973         2025         Week 20 Year to date  Local authority    E92000001
#> 974         2025         Week 20 Year to date  Local authority    E92000001
#> 975         2025         Week 20 Year to date  Local authority    E92000001
#> 976         2025         Week 20 Year to date  Local authority    E92000001
#> 977         2025         Week 20 Year to date  Local authority    E92000001
#> 978         2025         Week 20 Year to date  Local authority    E92000001
#> 979         2025         Week 20 Year to date  Local authority    E92000001
#> 980         2025         Week 20 Year to date  Local authority    E92000001
#> 981         2025         Week 20 Year to date  Local authority    E92000001
#> 982         2025         Week 20 Year to date  Local authority    E92000001
#> 983         2025         Week 20 Year to date  Local authority    E92000001
#> 984         2025         Week 20 Year to date  Local authority    E92000001
#> 985         2025         Week 20 Year to date  Local authority    E92000001
#> 986         2025         Week 20 Year to date  Local authority    E92000001
#> 987         2025         Week 20 Year to date  Local authority    E92000001
#> 988         2025         Week 20 Year to date  Local authority    E92000001
#> 989         2025         Week 18 Year to date         National    E92000001
#> 990         2025         Week 18 Year to date         National    E92000001
#> 991         2025         Week 18 Year to date         National    E92000001
#> 992         2025         Week 18 Year to date         National    E92000001
#> 993         2025         Week 18 Year to date         Regional    E92000001
#> 994         2025         Week 18 Year to date         Regional    E92000001
#> 995         2025         Week 18 Year to date         Regional    E92000001
#> 996         2025         Week 18 Year to date         Regional    E92000001
#> 997         2025         Week 18 Year to date  Local authority    E92000001
#> 998         2025         Week 18 Year to date  Local authority    E92000001
#> 999         2025         Week 18 Year to date  Local authority    E92000001
#> 1000        2025         Week 18 Year to date  Local authority    E92000001
#> 1001        2025         Week 18 Year to date  Local authority    E92000001
#> 1002        2025         Week 18 Year to date  Local authority    E92000001
#> 1003        2025         Week 18 Year to date  Local authority    E92000001
#> 1004        2025         Week 18 Year to date  Local authority    E92000001
#> 1005        2025         Week 18 Year to date  Local authority    E92000001
#> 1006        2025         Week 18 Year to date  Local authority    E92000001
#> 1007        2025         Week 18 Year to date  Local authority    E92000001
#> 1008        2025         Week 18 Year to date  Local authority    E92000001
#> 1009        2025         Week 18 Year to date  Local authority    E92000001
#> 1010        2025         Week 18 Year to date  Local authority    E92000001
#> 1011        2025         Week 18 Year to date  Local authority    E92000001
#> 1012        2025         Week 18 Year to date  Local authority    E92000001
#> 1013        2025         Week 18 Year to date  Local authority    E92000001
#> 1014        2025         Week 18 Year to date  Local authority    E92000001
#> 1015        2025         Week 18 Year to date  Local authority    E92000001
#> 1016        2025         Week 18 Year to date  Local authority    E92000001
#> 1017        2025         Week 18 Year to date  Local authority    E92000001
#> 1018        2025         Week 18 Year to date  Local authority    E92000001
#> 1019        2025         Week 18 Year to date  Local authority    E92000001
#> 1020        2025         Week 18 Year to date  Local authority    E92000001
#> 1021        2025         Week 18 Year to date  Local authority    E92000001
#> 1022        2025         Week 18 Year to date  Local authority    E92000001
#> 1023        2025         Week 18 Year to date  Local authority    E92000001
#> 1024        2025         Week 18 Year to date  Local authority    E92000001
#> 1025        2025         Week 18 Year to date  Local authority    E92000001
#> 1026        2025         Week 18 Year to date  Local authority    E92000001
#> 1027        2025         Week 18 Year to date  Local authority    E92000001
#> 1028        2025         Week 18 Year to date  Local authority    E92000001
#> 1029        2025         Week 18 Year to date  Local authority    E92000001
#> 1030        2025         Week 18 Year to date  Local authority    E92000001
#> 1031        2025         Week 18 Year to date  Local authority    E92000001
#> 1032        2025         Week 18 Year to date  Local authority    E92000001
#> 1033        2025         Week 18 Year to date         Regional    E92000001
#> 1034        2025         Week 18 Year to date         Regional    E92000001
#> 1035        2025         Week 18 Year to date         Regional    E92000001
#> 1036        2025         Week 18 Year to date         Regional    E92000001
#> 1037        2025         Week 18 Year to date  Local authority    E92000001
#> 1038        2025         Week 18 Year to date  Local authority    E92000001
#> 1039        2025         Week 18 Year to date  Local authority    E92000001
#> 1040        2025         Week 18 Year to date  Local authority    E92000001
#> 1041        2025         Week 18 Year to date  Local authority    E92000001
#> 1042        2025         Week 18 Year to date  Local authority    E92000001
#> 1043        2025         Week 18 Year to date  Local authority    E92000001
#> 1044        2025         Week 18 Year to date  Local authority    E92000001
#> 1045        2025         Week 18 Year to date  Local authority    E92000001
#> 1046        2025         Week 18 Year to date  Local authority    E92000001
#> 1047        2025         Week 18 Year to date  Local authority    E92000001
#> 1048        2025         Week 18 Year to date  Local authority    E92000001
#> 1049        2025         Week 18 Year to date  Local authority    E92000001
#> 1050        2025         Week 18 Year to date  Local authority    E92000001
#> 1051        2025         Week 18 Year to date  Local authority    E92000001
#> 1052        2025         Week 18 Year to date  Local authority    E92000001
#> 1053        2025         Week 18 Year to date  Local authority    E92000001
#> 1054        2025         Week 18 Year to date  Local authority    E92000001
#> 1055        2025         Week 18 Year to date  Local authority    E92000001
#> 1056        2025         Week 18 Year to date  Local authority    E92000001
#> 1057        2025         Week 18 Year to date  Local authority    E92000001
#> 1058        2025         Week 18 Year to date  Local authority    E92000001
#> 1059        2025         Week 18 Year to date  Local authority    E92000001
#> 1060        2025         Week 18 Year to date  Local authority    E92000001
#> 1061        2025         Week 18 Year to date  Local authority    E92000001
#> 1062        2025         Week 18 Year to date  Local authority    E92000001
#> 1063        2025         Week 18 Year to date  Local authority    E92000001
#> 1064        2025         Week 18 Year to date  Local authority    E92000001
#> 1065        2025         Week 18 Year to date  Local authority    E92000001
#> 1066        2025         Week 18 Year to date  Local authority    E92000001
#> 1067        2025         Week 18 Year to date  Local authority    E92000001
#> 1068        2025         Week 18 Year to date  Local authority    E92000001
#> 1069        2025         Week 18 Year to date  Local authority    E92000001
#> 1070        2025         Week 18 Year to date  Local authority    E92000001
#> 1071        2025         Week 18 Year to date  Local authority    E92000001
#> 1072        2025         Week 18 Year to date  Local authority    E92000001
#> 1073        2025         Week 18 Year to date  Local authority    E92000001
#> 1074        2025         Week 18 Year to date  Local authority    E92000001
#> 1075        2025         Week 18 Year to date  Local authority    E92000001
#> 1076        2025         Week 18 Year to date  Local authority    E92000001
#> 1077        2025         Week 18 Year to date  Local authority    E92000001
#> 1078        2025         Week 18 Year to date  Local authority    E92000001
#> 1079        2025         Week 18 Year to date  Local authority    E92000001
#> 1080        2025         Week 18 Year to date  Local authority    E92000001
#> 1081        2025         Week 18 Year to date  Local authority    E92000001
#> 1082        2025         Week 18 Year to date  Local authority    E92000001
#> 1083        2025         Week 18 Year to date  Local authority    E92000001
#> 1084        2025         Week 18 Year to date  Local authority    E92000001
#> 1085        2025         Week 18 Year to date  Local authority    E92000001
#> 1086        2025         Week 18 Year to date  Local authority    E92000001
#> 1087        2025         Week 18 Year to date  Local authority    E92000001
#> 1088        2025         Week 18 Year to date  Local authority    E92000001
#> 1089        2025         Week 18 Year to date  Local authority    E92000001
#> 1090        2025         Week 18 Year to date  Local authority    E92000001
#> 1091        2025         Week 18 Year to date  Local authority    E92000001
#> 1092        2025         Week 18 Year to date  Local authority    E92000001
#> 1093        2025         Week 18 Year to date  Local authority    E92000001
#> 1094        2025         Week 18 Year to date  Local authority    E92000001
#> 1095        2025         Week 18 Year to date  Local authority    E92000001
#> 1096        2025         Week 18 Year to date  Local authority    E92000001
#> 1097        2025         Week 18 Year to date  Local authority    E92000001
#> 1098        2025         Week 18 Year to date  Local authority    E92000001
#> 1099        2025         Week 18 Year to date  Local authority    E92000001
#> 1100        2025         Week 18 Year to date  Local authority    E92000001
#> 1101        2025         Week 18 Year to date  Local authority    E92000001
#> 1102        2025         Week 18 Year to date  Local authority    E92000001
#> 1103        2025         Week 18 Year to date  Local authority    E92000001
#> 1104        2025         Week 18 Year to date  Local authority    E92000001
#> 1105        2025         Week 18 Year to date  Local authority    E92000001
#> 1106        2025         Week 18 Year to date  Local authority    E92000001
#> 1107        2025         Week 18 Year to date  Local authority    E92000001
#> 1108        2025         Week 18 Year to date  Local authority    E92000001
#> 1109        2025         Week 18 Year to date         Regional    E92000001
#> 1110        2025         Week 18 Year to date         Regional    E92000001
#> 1111        2025         Week 18 Year to date         Regional    E92000001
#> 1112        2025         Week 18 Year to date         Regional    E92000001
#> 1113        2025         Week 18 Year to date  Local authority    E92000001
#> 1114        2025         Week 18 Year to date  Local authority    E92000001
#> 1115        2025         Week 18 Year to date  Local authority    E92000001
#> 1116        2025         Week 18 Year to date  Local authority    E92000001
#> 1117        2025         Week 18 Year to date  Local authority    E92000001
#> 1118        2025         Week 18 Year to date  Local authority    E92000001
#> 1119        2025         Week 18 Year to date  Local authority    E92000001
#> 1120        2025         Week 18 Year to date  Local authority    E92000001
#> 1121        2025         Week 18 Year to date  Local authority    E92000001
#> 1122        2025         Week 18 Year to date  Local authority    E92000001
#> 1123        2025         Week 18 Year to date  Local authority    E92000001
#> 1124        2025         Week 18 Year to date  Local authority    E92000001
#> 1125        2025         Week 18 Year to date  Local authority    E92000001
#> 1126        2025         Week 18 Year to date  Local authority    E92000001
#> 1127        2025         Week 18 Year to date  Local authority    E92000001
#> 1128        2025         Week 18 Year to date  Local authority    E92000001
#> 1129        2025         Week 18 Year to date  Local authority    E92000001
#> 1130        2025         Week 18 Year to date  Local authority    E92000001
#> 1131        2025         Week 18 Year to date  Local authority    E92000001
#> 1132        2025         Week 18 Year to date  Local authority    E92000001
#> 1133        2025         Week 18 Year to date  Local authority    E92000001
#> 1134        2025         Week 18 Year to date  Local authority    E92000001
#> 1135        2025         Week 18 Year to date  Local authority    E92000001
#> 1136        2025         Week 18 Year to date  Local authority    E92000001
#> 1137        2025         Week 18 Year to date  Local authority    E92000001
#> 1138        2025         Week 18 Year to date  Local authority    E92000001
#> 1139        2025         Week 18 Year to date  Local authority    E92000001
#> 1140        2025         Week 18 Year to date  Local authority    E92000001
#> 1141        2025         Week 18 Year to date  Local authority    E92000001
#> 1142        2025         Week 18 Year to date  Local authority    E92000001
#> 1143        2025         Week 18 Year to date  Local authority    E92000001
#> 1144        2025         Week 18 Year to date  Local authority    E92000001
#> 1145        2025         Week 18 Year to date  Local authority    E92000001
#> 1146        2025         Week 18 Year to date  Local authority    E92000001
#> 1147        2025         Week 18 Year to date  Local authority    E92000001
#> 1148        2025         Week 18 Year to date  Local authority    E92000001
#> 1149        2025         Week 18 Year to date  Local authority    E92000001
#> 1150        2025         Week 18 Year to date  Local authority    E92000001
#> 1151        2025         Week 18 Year to date  Local authority    E92000001
#> 1152        2025         Week 18 Year to date  Local authority    E92000001
#> 1153        2025         Week 18 Year to date  Local authority    E92000001
#> 1154        2025         Week 18 Year to date  Local authority    E92000001
#> 1155        2025         Week 18 Year to date  Local authority    E92000001
#> 1156        2025         Week 18 Year to date  Local authority    E92000001
#> 1157        2025         Week 18 Year to date  Local authority    E92000001
#> 1158        2025         Week 18 Year to date         Regional    E92000001
#> 1159        2025         Week 18 Year to date         Regional    E92000001
#> 1160        2025         Week 18 Year to date         Regional    E92000001
#> 1161        2025         Week 18 Year to date         Regional    E92000001
#> 1162        2025         Week 18 Year to date  Local authority    E92000001
#> 1163        2025         Week 18 Year to date  Local authority    E92000001
#> 1164        2025         Week 18 Year to date  Local authority    E92000001
#> 1165        2025         Week 18 Year to date  Local authority    E92000001
#> 1166        2025         Week 18 Year to date  Local authority    E92000001
#> 1167        2025         Week 18 Year to date  Local authority    E92000001
#> 1168        2025         Week 18 Year to date  Local authority    E92000001
#> 1169        2025         Week 18 Year to date  Local authority    E92000001
#> 1170        2025         Week 18 Year to date  Local authority    E92000001
#> 1171        2025         Week 18 Year to date  Local authority    E92000001
#> 1172        2025         Week 18 Year to date  Local authority    E92000001
#> 1173        2025         Week 18 Year to date  Local authority    E92000001
#> 1174        2025         Week 18 Year to date  Local authority    E92000001
#> 1175        2025         Week 18 Year to date  Local authority    E92000001
#> 1176        2025         Week 18 Year to date  Local authority    E92000001
#> 1177        2025         Week 18 Year to date  Local authority    E92000001
#> 1178        2025         Week 18 Year to date  Local authority    E92000001
#> 1179        2025         Week 18 Year to date  Local authority    E92000001
#> 1180        2025         Week 18 Year to date  Local authority    E92000001
#> 1181        2025         Week 18 Year to date  Local authority    E92000001
#> 1182        2025         Week 18 Year to date  Local authority    E92000001
#> 1183        2025         Week 18 Year to date  Local authority    E92000001
#> 1184        2025         Week 18 Year to date  Local authority    E92000001
#> 1185        2025         Week 18 Year to date  Local authority    E92000001
#> 1186        2025         Week 18 Year to date  Local authority    E92000001
#> 1187        2025         Week 18 Year to date  Local authority    E92000001
#> 1188        2025         Week 18 Year to date  Local authority    E92000001
#> 1189        2025         Week 18 Year to date  Local authority    E92000001
#> 1190        2025         Week 18 Year to date  Local authority    E92000001
#> 1191        2025         Week 18 Year to date         Regional    E92000001
#> 1192        2025         Week 18 Year to date         Regional    E92000001
#> 1193        2025         Week 18 Year to date         Regional    E92000001
#> 1194        2025         Week 18 Year to date         Regional    E92000001
#> 1195        2025         Week 18 Year to date  Local authority    E92000001
#> 1196        2025         Week 18 Year to date  Local authority    E92000001
#> 1197        2025         Week 18 Year to date  Local authority    E92000001
#> 1198        2025         Week 18 Year to date  Local authority    E92000001
#> 1199        2025         Week 18 Year to date  Local authority    E92000001
#> 1200        2025         Week 18 Year to date  Local authority    E92000001
#> 1201        2025         Week 18 Year to date  Local authority    E92000001
#> 1202        2025         Week 18 Year to date  Local authority    E92000001
#> 1203        2025         Week 18 Year to date  Local authority    E92000001
#> 1204        2025         Week 18 Year to date  Local authority    E92000001
#> 1205        2025         Week 18 Year to date  Local authority    E92000001
#> 1206        2025         Week 18 Year to date  Local authority    E92000001
#> 1207        2025         Week 18 Year to date  Local authority    E92000001
#> 1208        2025         Week 18 Year to date  Local authority    E92000001
#> 1209        2025         Week 18 Year to date  Local authority    E92000001
#> 1210        2025         Week 18 Year to date  Local authority    E92000001
#> 1211        2025         Week 18 Year to date  Local authority    E92000001
#> 1212        2025         Week 18 Year to date  Local authority    E92000001
#> 1213        2025         Week 18 Year to date  Local authority    E92000001
#> 1214        2025         Week 18 Year to date  Local authority    E92000001
#> 1215        2025         Week 18 Year to date  Local authority    E92000001
#> 1216        2025         Week 18 Year to date  Local authority    E92000001
#> 1217        2025         Week 18 Year to date  Local authority    E92000001
#> 1218        2025         Week 18 Year to date  Local authority    E92000001
#> 1219        2025         Week 18 Year to date  Local authority    E92000001
#> 1220        2025         Week 18 Year to date  Local authority    E92000001
#> 1221        2025         Week 18 Year to date  Local authority    E92000001
#> 1222        2025         Week 18 Year to date  Local authority    E92000001
#> 1223        2025         Week 18 Year to date  Local authority    E92000001
#> 1224        2025         Week 18 Year to date  Local authority    E92000001
#> 1225        2025         Week 18 Year to date  Local authority    E92000001
#> 1226        2025         Week 18 Year to date  Local authority    E92000001
#> 1227        2025         Week 18 Year to date  Local authority    E92000001
#> 1228        2025         Week 18 Year to date  Local authority    E92000001
#> 1229        2025         Week 18 Year to date  Local authority    E92000001
#> 1230        2025         Week 18 Year to date  Local authority    E92000001
#> 1231        2025         Week 18 Year to date  Local authority    E92000001
#> 1232        2025         Week 18 Year to date  Local authority    E92000001
#> 1233        2025         Week 18 Year to date  Local authority    E92000001
#> 1234        2025         Week 18 Year to date  Local authority    E92000001
#> 1235        2025         Week 18 Year to date  Local authority    E92000001
#> 1236        2025         Week 18 Year to date  Local authority    E92000001
#> 1237        2025         Week 18 Year to date         Regional    E92000001
#> 1238        2025         Week 18 Year to date         Regional    E92000001
#> 1239        2025         Week 18 Year to date         Regional    E92000001
#> 1240        2025         Week 18 Year to date         Regional    E92000001
#> 1241        2025         Week 18 Year to date  Local authority    E92000001
#> 1242        2025         Week 18 Year to date  Local authority    E92000001
#> 1243        2025         Week 18 Year to date  Local authority    E92000001
#> 1244        2025         Week 18 Year to date  Local authority    E92000001
#> 1245        2025         Week 18 Year to date  Local authority    E92000001
#> 1246        2025         Week 18 Year to date  Local authority    E92000001
#> 1247        2025         Week 18 Year to date  Local authority    E92000001
#> 1248        2025         Week 18 Year to date  Local authority    E92000001
#> 1249        2025         Week 18 Year to date  Local authority    E92000001
#> 1250        2025         Week 18 Year to date  Local authority    E92000001
#> 1251        2025         Week 18 Year to date  Local authority    E92000001
#> 1252        2025         Week 18 Year to date  Local authority    E92000001
#> 1253        2025         Week 18 Year to date  Local authority    E92000001
#> 1254        2025         Week 18 Year to date  Local authority    E92000001
#> 1255        2025         Week 18 Year to date  Local authority    E92000001
#> 1256        2025         Week 18 Year to date  Local authority    E92000001
#> 1257        2025         Week 18 Year to date  Local authority    E92000001
#> 1258        2025         Week 18 Year to date  Local authority    E92000001
#> 1259        2025         Week 18 Year to date  Local authority    E92000001
#> 1260        2025         Week 18 Year to date  Local authority    E92000001
#> 1261        2025         Week 18 Year to date  Local authority    E92000001
#> 1262        2025         Week 18 Year to date  Local authority    E92000001
#> 1263        2025         Week 18 Year to date  Local authority    E92000001
#> 1264        2025         Week 18 Year to date  Local authority    E92000001
#> 1265        2025         Week 18 Year to date  Local authority    E92000001
#> 1266        2025         Week 18 Year to date  Local authority    E92000001
#> 1267        2025         Week 18 Year to date  Local authority    E92000001
#> 1268        2025         Week 18 Year to date  Local authority    E92000001
#> 1269        2025         Week 18 Year to date  Local authority    E92000001
#> 1270        2025         Week 18 Year to date  Local authority    E92000001
#> 1271        2025         Week 18 Year to date  Local authority    E92000001
#> 1272        2025         Week 18 Year to date  Local authority    E92000001
#> 1273        2025         Week 18 Year to date  Local authority    E92000001
#> 1274        2025         Week 18 Year to date         Regional    E92000001
#> 1275        2025         Week 18 Year to date         Regional    E92000001
#> 1276        2025         Week 18 Year to date         Regional    E92000001
#> 1277        2025         Week 18 Year to date         Regional    E92000001
#> 1278        2025         Week 18 Year to date  Local authority    E92000001
#> 1279        2025         Week 18 Year to date  Local authority    E92000001
#> 1280        2025         Week 18 Year to date  Local authority    E92000001
#> 1281        2025         Week 18 Year to date  Local authority    E92000001
#> 1282        2025         Week 18 Year to date  Local authority    E92000001
#> 1283        2025         Week 18 Year to date  Local authority    E92000001
#> 1284        2025         Week 18 Year to date  Local authority    E92000001
#> 1285        2025         Week 18 Year to date  Local authority    E92000001
#> 1286        2025         Week 18 Year to date  Local authority    E92000001
#> 1287        2025         Week 18 Year to date  Local authority    E92000001
#> 1288        2025         Week 18 Year to date  Local authority    E92000001
#> 1289        2025         Week 18 Year to date  Local authority    E92000001
#> 1290        2025         Week 18 Year to date  Local authority    E92000001
#> 1291        2025         Week 18 Year to date  Local authority    E92000001
#> 1292        2025         Week 18 Year to date  Local authority    E92000001
#> 1293        2025         Week 18 Year to date  Local authority    E92000001
#> 1294        2025         Week 18 Year to date  Local authority    E92000001
#> 1295        2025         Week 18 Year to date  Local authority    E92000001
#> 1296        2025         Week 18 Year to date  Local authority    E92000001
#> 1297        2025         Week 18 Year to date  Local authority    E92000001
#> 1298        2025         Week 18 Year to date  Local authority    E92000001
#> 1299        2025         Week 18 Year to date  Local authority    E92000001
#> 1300        2025         Week 18 Year to date  Local authority    E92000001
#> 1301        2025         Week 18 Year to date  Local authority    E92000001
#> 1302        2025         Week 18 Year to date  Local authority    E92000001
#> 1303        2025         Week 18 Year to date  Local authority    E92000001
#> 1304        2025         Week 18 Year to date  Local authority    E92000001
#> 1305        2025         Week 18 Year to date  Local authority    E92000001
#> 1306        2025         Week 18 Year to date  Local authority    E92000001
#> 1307        2025         Week 18 Year to date  Local authority    E92000001
#> 1308        2025         Week 18 Year to date  Local authority    E92000001
#> 1309        2025         Week 18 Year to date  Local authority    E92000001
#> 1310        2025         Week 18 Year to date  Local authority    E92000001
#> 1311        2025         Week 18 Year to date  Local authority    E92000001
#> 1312        2025         Week 18 Year to date  Local authority    E92000001
#> 1313        2025         Week 18 Year to date  Local authority    E92000001
#> 1314        2025         Week 18 Year to date  Local authority    E92000001
#> 1315        2025         Week 18 Year to date  Local authority    E92000001
#> 1316        2025         Week 18 Year to date  Local authority    E92000001
#> 1317        2025         Week 18 Year to date  Local authority    E92000001
#> 1318        2025         Week 18 Year to date  Local authority    E92000001
#> 1319        2025         Week 18 Year to date  Local authority    E92000001
#> 1320        2025         Week 18 Year to date  Local authority    E92000001
#> 1321        2025         Week 18 Year to date  Local authority    E92000001
#> 1322        2025         Week 18 Year to date  Local authority    E92000001
#> 1323        2025         Week 18 Year to date  Local authority    E92000001
#> 1324        2025         Week 18 Year to date  Local authority    E92000001
#> 1325        2025         Week 18 Year to date  Local authority    E92000001
#> 1326        2025         Week 18 Year to date  Local authority    E92000001
#> 1327        2025         Week 18 Year to date  Local authority    E92000001
#> 1328        2025         Week 18 Year to date  Local authority    E92000001
#> 1329        2025         Week 18 Year to date  Local authority    E92000001
#> 1330        2025         Week 18 Year to date  Local authority    E92000001
#> 1331        2025         Week 18 Year to date  Local authority    E92000001
#> 1332        2025         Week 18 Year to date  Local authority    E92000001
#> 1333        2025         Week 18 Year to date  Local authority    E92000001
#> 1334        2025         Week 18 Year to date  Local authority    E92000001
#> 1335        2025         Week 18 Year to date  Local authority    E92000001
#> 1336        2025         Week 18 Year to date  Local authority    E92000001
#> 1337        2025         Week 18 Year to date  Local authority    E92000001
#> 1338        2025         Week 18 Year to date  Local authority    E92000001
#> 1339        2025         Week 18 Year to date  Local authority    E92000001
#> 1340        2025         Week 18 Year to date  Local authority    E92000001
#> 1341        2025         Week 18 Year to date  Local authority    E92000001
#> 1342        2025         Week 18 Year to date  Local authority    E92000001
#> 1343        2025         Week 18 Year to date  Local authority    E92000001
#> 1344        2025         Week 18 Year to date  Local authority    E92000001
#> 1345        2025         Week 18 Year to date  Local authority    E92000001
#> 1346        2025         Week 18 Year to date  Local authority    E92000001
#> 1347        2025         Week 18 Year to date  Local authority    E92000001
#> 1348        2025         Week 18 Year to date  Local authority    E92000001
#> 1349        2025         Week 18 Year to date  Local authority    E92000001
#> 1350        2025         Week 18 Year to date  Local authority    E92000001
#> 1351        2025         Week 18 Year to date  Local authority    E92000001
#> 1352        2025         Week 18 Year to date  Local authority    E92000001
#> 1353        2025         Week 18 Year to date  Local authority    E92000001
#> 1354        2025         Week 18 Year to date  Local authority    E92000001
#> 1355        2025         Week 18 Year to date  Local authority    E92000001
#> 1356        2025         Week 18 Year to date  Local authority    E92000001
#> 1357        2025         Week 18 Year to date  Local authority    E92000001
#> 1358        2025         Week 18 Year to date  Local authority    E92000001
#> 1359        2025         Week 18 Year to date  Local authority    E92000001
#> 1360        2025         Week 18 Year to date  Local authority    E92000001
#> 1361        2025         Week 18 Year to date  Local authority    E92000001
#> 1362        2025         Week 18 Year to date  Local authority    E92000001
#> 1363        2025         Week 18 Year to date  Local authority    E92000001
#> 1364        2025         Week 18 Year to date  Local authority    E92000001
#> 1365        2025         Week 18 Year to date  Local authority    E92000001
#> 1366        2025         Week 18 Year to date  Local authority    E92000001
#> 1367        2025         Week 18 Year to date  Local authority    E92000001
#> 1368        2025         Week 18 Year to date  Local authority    E92000001
#> 1369        2025         Week 18 Year to date  Local authority    E92000001
#> 1370        2025         Week 18 Year to date  Local authority    E92000001
#> 1371        2025         Week 18 Year to date  Local authority    E92000001
#> 1372        2025         Week 18 Year to date  Local authority    E92000001
#> 1373        2025         Week 18 Year to date  Local authority    E92000001
#> 1374        2025         Week 18 Year to date  Local authority    E92000001
#> 1375        2025         Week 18 Year to date         Regional    E92000001
#> 1376        2025         Week 18 Year to date         Regional    E92000001
#> 1377        2025         Week 18 Year to date         Regional    E92000001
#> 1378        2025         Week 18 Year to date         Regional    E92000001
#> 1379        2025         Week 18 Year to date  Local authority    E92000001
#> 1380        2025         Week 18 Year to date  Local authority    E92000001
#> 1381        2025         Week 18 Year to date  Local authority    E92000001
#> 1382        2025         Week 18 Year to date  Local authority    E92000001
#> 1383        2025         Week 18 Year to date  Local authority    E92000001
#> 1384        2025         Week 18 Year to date  Local authority    E92000001
#> 1385        2025         Week 18 Year to date  Local authority    E92000001
#> 1386        2025         Week 18 Year to date  Local authority    E92000001
#> 1387        2025         Week 18 Year to date  Local authority    E92000001
#> 1388        2025         Week 18 Year to date  Local authority    E92000001
#> 1389        2025         Week 18 Year to date  Local authority    E92000001
#> 1390        2025         Week 18 Year to date  Local authority    E92000001
#> 1391        2025         Week 18 Year to date  Local authority    E92000001
#> 1392        2025         Week 18 Year to date  Local authority    E92000001
#> 1393        2025         Week 18 Year to date  Local authority    E92000001
#> 1394        2025         Week 18 Year to date  Local authority    E92000001
#> 1395        2025         Week 18 Year to date  Local authority    E92000001
#> 1396        2025         Week 18 Year to date  Local authority    E92000001
#> 1397        2025         Week 18 Year to date  Local authority    E92000001
#> 1398        2025         Week 18 Year to date  Local authority    E92000001
#> 1399        2025         Week 18 Year to date  Local authority    E92000001
#> 1400        2025         Week 18 Year to date  Local authority    E92000001
#> 1401        2025         Week 18 Year to date  Local authority    E92000001
#> 1402        2025         Week 18 Year to date  Local authority    E92000001
#> 1403        2025         Week 18 Year to date  Local authority    E92000001
#> 1404        2025         Week 18 Year to date  Local authority    E92000001
#> 1405        2025         Week 18 Year to date  Local authority    E92000001
#> 1406        2025         Week 18 Year to date  Local authority    E92000001
#> 1407        2025         Week 18 Year to date  Local authority    E92000001
#> 1408        2025         Week 18 Year to date  Local authority    E92000001
#> 1409        2025         Week 18 Year to date  Local authority    E92000001
#> 1410        2025         Week 18 Year to date  Local authority    E92000001
#> 1411        2025         Week 18 Year to date  Local authority    E92000001
#> 1412        2025         Week 18 Year to date  Local authority    E92000001
#> 1413        2025         Week 18 Year to date  Local authority    E92000001
#> 1414        2025         Week 18 Year to date  Local authority    E92000001
#> 1415        2025         Week 18 Year to date  Local authority    E92000001
#> 1416        2025         Week 18 Year to date  Local authority    E92000001
#> 1417        2025         Week 18 Year to date  Local authority    E92000001
#> 1418        2025         Week 18 Year to date  Local authority    E92000001
#> 1419        2025         Week 18 Year to date  Local authority    E92000001
#> 1420        2025         Week 18 Year to date  Local authority    E92000001
#> 1421        2025         Week 18 Year to date  Local authority    E92000001
#> 1422        2025         Week 18 Year to date  Local authority    E92000001
#> 1423        2025         Week 18 Year to date  Local authority    E92000001
#> 1424        2025         Week 18 Year to date  Local authority    E92000001
#> 1425        2025         Week 18 Year to date  Local authority    E92000001
#> 1426        2025         Week 18 Year to date  Local authority    E92000001
#> 1427        2025         Week 18 Year to date  Local authority    E92000001
#> 1428        2025         Week 18 Year to date  Local authority    E92000001
#> 1429        2025         Week 18 Year to date  Local authority    E92000001
#> 1430        2025         Week 18 Year to date  Local authority    E92000001
#> 1431        2025         Week 18 Year to date  Local authority    E92000001
#> 1432        2025         Week 18 Year to date  Local authority    E92000001
#> 1433        2025         Week 18 Year to date  Local authority    E92000001
#> 1434        2025         Week 18 Year to date  Local authority    E92000001
#> 1435        2025         Week 18 Year to date  Local authority    E92000001
#> 1436        2025         Week 18 Year to date         Regional    E92000001
#> 1437        2025         Week 18 Year to date         Regional    E92000001
#> 1438        2025         Week 18 Year to date         Regional    E92000001
#> 1439        2025         Week 18 Year to date         Regional    E92000001
#> 1440        2025         Week 18 Year to date  Local authority    E92000001
#> 1441        2025         Week 18 Year to date  Local authority    E92000001
#> 1442        2025         Week 18 Year to date  Local authority    E92000001
#> 1443        2025         Week 18 Year to date  Local authority    E92000001
#> 1444        2025         Week 18 Year to date  Local authority    E92000001
#> 1445        2025         Week 18 Year to date  Local authority    E92000001
#> 1446        2025         Week 18 Year to date  Local authority    E92000001
#> 1447        2025         Week 18 Year to date  Local authority    E92000001
#> 1448        2025         Week 18 Year to date  Local authority    E92000001
#> 1449        2025         Week 18 Year to date  Local authority    E92000001
#> 1450        2025         Week 18 Year to date  Local authority    E92000001
#> 1451        2025         Week 18 Year to date  Local authority    E92000001
#> 1452        2025         Week 18 Year to date  Local authority    E92000001
#> 1453        2025         Week 18 Year to date  Local authority    E92000001
#> 1454        2025         Week 18 Year to date  Local authority    E92000001
#> 1455        2025         Week 18 Year to date  Local authority    E92000001
#> 1456        2025         Week 18 Year to date  Local authority    E92000001
#> 1457        2025         Week 18 Year to date  Local authority    E92000001
#> 1458        2025         Week 18 Year to date  Local authority    E92000001
#> 1459        2025         Week 18 Year to date  Local authority    E92000001
#> 1460        2025         Week 18 Year to date  Local authority    E92000001
#> 1461        2025         Week 18 Year to date  Local authority    E92000001
#> 1462        2025         Week 18 Year to date  Local authority    E92000001
#> 1463        2025         Week 18 Year to date  Local authority    E92000001
#> 1464        2025         Week 18 Year to date  Local authority    E92000001
#> 1465        2025         Week 18 Year to date  Local authority    E92000001
#> 1466        2025         Week 18 Year to date  Local authority    E92000001
#> 1467        2025         Week 18 Year to date  Local authority    E92000001
#> 1468        2025         Week 18 Year to date  Local authority    E92000001
#> 1469        2025         Week 18 Year to date  Local authority    E92000001
#> 1470        2025         Week 18 Year to date  Local authority    E92000001
#> 1471        2025         Week 18 Year to date  Local authority    E92000001
#> 1472        2025         Week 18 Year to date  Local authority    E92000001
#> 1473        2025         Week 18 Year to date  Local authority    E92000001
#> 1474        2025         Week 18 Year to date  Local authority    E92000001
#> 1475        2025         Week 18 Year to date  Local authority    E92000001
#> 1476        2025         Week 18 Year to date  Local authority    E92000001
#> 1477        2025         Week 18 Year to date  Local authority    E92000001
#> 1478        2025         Week 18 Year to date  Local authority    E92000001
#> 1479        2025         Week 18 Year to date  Local authority    E92000001
#> 1480        2025         Week 18 Year to date  Local authority    E92000001
#> 1481        2025         Week 18 Year to date  Local authority    E92000001
#> 1482        2025         Week 18 Year to date  Local authority    E92000001
#> 1483        2025         Week 15 Year to date         National    E92000001
#> 1484        2025         Week 15 Year to date         National    E92000001
#> 1485        2025         Week 15 Year to date         National    E92000001
#> 1486        2025         Week 15 Year to date         National    E92000001
#> 1487        2025         Week 15 Year to date         Regional    E92000001
#> 1488        2025         Week 15 Year to date         Regional    E92000001
#> 1489        2025         Week 15 Year to date         Regional    E92000001
#> 1490        2025         Week 15 Year to date         Regional    E92000001
#> 1491        2025         Week 15 Year to date  Local authority    E92000001
#> 1492        2025         Week 15 Year to date  Local authority    E92000001
#> 1493        2025         Week 15 Year to date  Local authority    E92000001
#> 1494        2025         Week 15 Year to date  Local authority    E92000001
#> 1495        2025         Week 15 Year to date  Local authority    E92000001
#> 1496        2025         Week 15 Year to date  Local authority    E92000001
#> 1497        2025         Week 15 Year to date  Local authority    E92000001
#> 1498        2025         Week 15 Year to date  Local authority    E92000001
#> 1499        2025         Week 15 Year to date  Local authority    E92000001
#> 1500        2025         Week 15 Year to date  Local authority    E92000001
#> 1501        2025         Week 15 Year to date  Local authority    E92000001
#> 1502        2025         Week 15 Year to date  Local authority    E92000001
#> 1503        2025         Week 15 Year to date  Local authority    E92000001
#> 1504        2025         Week 15 Year to date  Local authority    E92000001
#> 1505        2025         Week 15 Year to date  Local authority    E92000001
#> 1506        2025         Week 15 Year to date  Local authority    E92000001
#> 1507        2025         Week 15 Year to date  Local authority    E92000001
#> 1508        2025         Week 15 Year to date  Local authority    E92000001
#> 1509        2025         Week 15 Year to date  Local authority    E92000001
#> 1510        2025         Week 15 Year to date  Local authority    E92000001
#> 1511        2025         Week 15 Year to date  Local authority    E92000001
#> 1512        2025         Week 15 Year to date  Local authority    E92000001
#> 1513        2025         Week 15 Year to date  Local authority    E92000001
#> 1514        2025         Week 15 Year to date  Local authority    E92000001
#> 1515        2025         Week 15 Year to date  Local authority    E92000001
#> 1516        2025         Week 15 Year to date  Local authority    E92000001
#> 1517        2025         Week 15 Year to date  Local authority    E92000001
#> 1518        2025         Week 15 Year to date  Local authority    E92000001
#> 1519        2025         Week 15 Year to date  Local authority    E92000001
#> 1520        2025         Week 15 Year to date  Local authority    E92000001
#> 1521        2025         Week 15 Year to date  Local authority    E92000001
#> 1522        2025         Week 15 Year to date  Local authority    E92000001
#> 1523        2025         Week 15 Year to date  Local authority    E92000001
#> 1524        2025         Week 15 Year to date  Local authority    E92000001
#> 1525        2025         Week 15 Year to date  Local authority    E92000001
#> 1526        2025         Week 15 Year to date  Local authority    E92000001
#> 1527        2025         Week 15 Year to date         Regional    E92000001
#> 1528        2025         Week 15 Year to date         Regional    E92000001
#> 1529        2025         Week 15 Year to date         Regional    E92000001
#> 1530        2025         Week 15 Year to date         Regional    E92000001
#> 1531        2025         Week 15 Year to date  Local authority    E92000001
#> 1532        2025         Week 15 Year to date  Local authority    E92000001
#> 1533        2025         Week 15 Year to date  Local authority    E92000001
#> 1534        2025         Week 15 Year to date  Local authority    E92000001
#> 1535        2025         Week 15 Year to date  Local authority    E92000001
#> 1536        2025         Week 15 Year to date  Local authority    E92000001
#> 1537        2025         Week 15 Year to date  Local authority    E92000001
#> 1538        2025         Week 15 Year to date  Local authority    E92000001
#> 1539        2025         Week 15 Year to date  Local authority    E92000001
#> 1540        2025         Week 15 Year to date  Local authority    E92000001
#> 1541        2025         Week 15 Year to date  Local authority    E92000001
#> 1542        2025         Week 15 Year to date  Local authority    E92000001
#> 1543        2025         Week 15 Year to date  Local authority    E92000001
#> 1544        2025         Week 15 Year to date  Local authority    E92000001
#> 1545        2025         Week 15 Year to date  Local authority    E92000001
#> 1546        2025         Week 15 Year to date  Local authority    E92000001
#> 1547        2025         Week 15 Year to date  Local authority    E92000001
#> 1548        2025         Week 15 Year to date  Local authority    E92000001
#> 1549        2025         Week 15 Year to date  Local authority    E92000001
#> 1550        2025         Week 15 Year to date  Local authority    E92000001
#> 1551        2025         Week 15 Year to date  Local authority    E92000001
#> 1552        2025         Week 15 Year to date  Local authority    E92000001
#> 1553        2025         Week 15 Year to date  Local authority    E92000001
#> 1554        2025         Week 15 Year to date  Local authority    E92000001
#> 1555        2025         Week 15 Year to date  Local authority    E92000001
#> 1556        2025         Week 15 Year to date  Local authority    E92000001
#> 1557        2025         Week 15 Year to date  Local authority    E92000001
#> 1558        2025         Week 15 Year to date  Local authority    E92000001
#> 1559        2025         Week 15 Year to date  Local authority    E92000001
#> 1560        2025         Week 15 Year to date  Local authority    E92000001
#> 1561        2025         Week 15 Year to date  Local authority    E92000001
#> 1562        2025         Week 15 Year to date  Local authority    E92000001
#> 1563        2025         Week 15 Year to date  Local authority    E92000001
#> 1564        2025         Week 15 Year to date  Local authority    E92000001
#> 1565        2025         Week 15 Year to date  Local authority    E92000001
#> 1566        2025         Week 15 Year to date  Local authority    E92000001
#> 1567        2025         Week 15 Year to date  Local authority    E92000001
#> 1568        2025         Week 15 Year to date  Local authority    E92000001
#> 1569        2025         Week 15 Year to date  Local authority    E92000001
#> 1570        2025         Week 15 Year to date  Local authority    E92000001
#> 1571        2025         Week 15 Year to date  Local authority    E92000001
#> 1572        2025         Week 15 Year to date  Local authority    E92000001
#> 1573        2025         Week 15 Year to date  Local authority    E92000001
#> 1574        2025         Week 15 Year to date  Local authority    E92000001
#> 1575        2025         Week 15 Year to date  Local authority    E92000001
#> 1576        2025         Week 15 Year to date  Local authority    E92000001
#> 1577        2025         Week 15 Year to date  Local authority    E92000001
#> 1578        2025         Week 15 Year to date  Local authority    E92000001
#> 1579        2025         Week 15 Year to date  Local authority    E92000001
#> 1580        2025         Week 15 Year to date  Local authority    E92000001
#> 1581        2025         Week 15 Year to date  Local authority    E92000001
#> 1582        2025         Week 15 Year to date  Local authority    E92000001
#> 1583        2025         Week 15 Year to date  Local authority    E92000001
#> 1584        2025         Week 15 Year to date  Local authority    E92000001
#> 1585        2025         Week 15 Year to date  Local authority    E92000001
#> 1586        2025         Week 15 Year to date  Local authority    E92000001
#> 1587        2025         Week 15 Year to date  Local authority    E92000001
#> 1588        2025         Week 15 Year to date  Local authority    E92000001
#> 1589        2025         Week 15 Year to date  Local authority    E92000001
#> 1590        2025         Week 15 Year to date  Local authority    E92000001
#> 1591        2025         Week 15 Year to date  Local authority    E92000001
#> 1592        2025         Week 15 Year to date  Local authority    E92000001
#> 1593        2025         Week 15 Year to date  Local authority    E92000001
#> 1594        2025         Week 15 Year to date  Local authority    E92000001
#> 1595        2025         Week 15 Year to date  Local authority    E92000001
#> 1596        2025         Week 15 Year to date  Local authority    E92000001
#> 1597        2025         Week 15 Year to date  Local authority    E92000001
#> 1598        2025         Week 15 Year to date  Local authority    E92000001
#> 1599        2025         Week 15 Year to date  Local authority    E92000001
#> 1600        2025         Week 15 Year to date  Local authority    E92000001
#> 1601        2025         Week 15 Year to date  Local authority    E92000001
#> 1602        2025         Week 15 Year to date  Local authority    E92000001
#> 1603        2025         Week 15 Year to date         Regional    E92000001
#> 1604        2025         Week 15 Year to date         Regional    E92000001
#> 1605        2025         Week 15 Year to date         Regional    E92000001
#> 1606        2025         Week 15 Year to date         Regional    E92000001
#> 1607        2025         Week 15 Year to date  Local authority    E92000001
#> 1608        2025         Week 15 Year to date  Local authority    E92000001
#> 1609        2025         Week 15 Year to date  Local authority    E92000001
#> 1610        2025         Week 15 Year to date  Local authority    E92000001
#> 1611        2025         Week 15 Year to date  Local authority    E92000001
#> 1612        2025         Week 15 Year to date  Local authority    E92000001
#> 1613        2025         Week 15 Year to date  Local authority    E92000001
#> 1614        2025         Week 15 Year to date  Local authority    E92000001
#> 1615        2025         Week 15 Year to date  Local authority    E92000001
#> 1616        2025         Week 15 Year to date  Local authority    E92000001
#> 1617        2025         Week 15 Year to date  Local authority    E92000001
#> 1618        2025         Week 15 Year to date  Local authority    E92000001
#> 1619        2025         Week 15 Year to date  Local authority    E92000001
#> 1620        2025         Week 15 Year to date  Local authority    E92000001
#> 1621        2025         Week 15 Year to date  Local authority    E92000001
#> 1622        2025         Week 15 Year to date  Local authority    E92000001
#> 1623        2025         Week 15 Year to date  Local authority    E92000001
#> 1624        2025         Week 15 Year to date  Local authority    E92000001
#> 1625        2025         Week 15 Year to date  Local authority    E92000001
#> 1626        2025         Week 15 Year to date  Local authority    E92000001
#> 1627        2025         Week 15 Year to date  Local authority    E92000001
#> 1628        2025         Week 15 Year to date  Local authority    E92000001
#> 1629        2025         Week 15 Year to date  Local authority    E92000001
#> 1630        2025         Week 15 Year to date  Local authority    E92000001
#> 1631        2025         Week 15 Year to date  Local authority    E92000001
#> 1632        2025         Week 15 Year to date  Local authority    E92000001
#> 1633        2025         Week 15 Year to date  Local authority    E92000001
#> 1634        2025         Week 15 Year to date  Local authority    E92000001
#> 1635        2025         Week 15 Year to date  Local authority    E92000001
#> 1636        2025         Week 15 Year to date  Local authority    E92000001
#> 1637        2025         Week 15 Year to date  Local authority    E92000001
#> 1638        2025         Week 15 Year to date  Local authority    E92000001
#> 1639        2025         Week 15 Year to date  Local authority    E92000001
#> 1640        2025         Week 15 Year to date  Local authority    E92000001
#> 1641        2025         Week 15 Year to date  Local authority    E92000001
#> 1642        2025         Week 15 Year to date  Local authority    E92000001
#> 1643        2025         Week 15 Year to date  Local authority    E92000001
#> 1644        2025         Week 15 Year to date  Local authority    E92000001
#> 1645        2025         Week 15 Year to date  Local authority    E92000001
#> 1646        2025         Week 15 Year to date  Local authority    E92000001
#> 1647        2025         Week 15 Year to date  Local authority    E92000001
#> 1648        2025         Week 15 Year to date  Local authority    E92000001
#> 1649        2025         Week 15 Year to date  Local authority    E92000001
#> 1650        2025         Week 15 Year to date  Local authority    E92000001
#> 1651        2025         Week 15 Year to date  Local authority    E92000001
#> 1652        2025         Week 15 Year to date         Regional    E92000001
#> 1653        2025         Week 15 Year to date         Regional    E92000001
#> 1654        2025         Week 15 Year to date         Regional    E92000001
#> 1655        2025         Week 15 Year to date         Regional    E92000001
#> 1656        2025         Week 15 Year to date  Local authority    E92000001
#> 1657        2025         Week 15 Year to date  Local authority    E92000001
#> 1658        2025         Week 15 Year to date  Local authority    E92000001
#> 1659        2025         Week 15 Year to date  Local authority    E92000001
#> 1660        2025         Week 15 Year to date  Local authority    E92000001
#> 1661        2025         Week 15 Year to date  Local authority    E92000001
#> 1662        2025         Week 15 Year to date  Local authority    E92000001
#> 1663        2025         Week 15 Year to date  Local authority    E92000001
#> 1664        2025         Week 15 Year to date  Local authority    E92000001
#> 1665        2025         Week 15 Year to date  Local authority    E92000001
#> 1666        2025         Week 15 Year to date  Local authority    E92000001
#> 1667        2025         Week 15 Year to date  Local authority    E92000001
#> 1668        2025         Week 15 Year to date  Local authority    E92000001
#> 1669        2025         Week 15 Year to date  Local authority    E92000001
#> 1670        2025         Week 15 Year to date  Local authority    E92000001
#> 1671        2025         Week 15 Year to date  Local authority    E92000001
#> 1672        2025         Week 15 Year to date  Local authority    E92000001
#> 1673        2025         Week 15 Year to date  Local authority    E92000001
#> 1674        2025         Week 15 Year to date  Local authority    E92000001
#> 1675        2025         Week 15 Year to date  Local authority    E92000001
#> 1676        2025         Week 15 Year to date  Local authority    E92000001
#> 1677        2025         Week 15 Year to date  Local authority    E92000001
#> 1678        2025         Week 15 Year to date  Local authority    E92000001
#> 1679        2025         Week 15 Year to date  Local authority    E92000001
#> 1680        2025         Week 15 Year to date  Local authority    E92000001
#> 1681        2025         Week 15 Year to date  Local authority    E92000001
#> 1682        2025         Week 15 Year to date  Local authority    E92000001
#> 1683        2025         Week 15 Year to date  Local authority    E92000001
#> 1684        2025         Week 15 Year to date  Local authority    E92000001
#> 1685        2025         Week 15 Year to date         Regional    E92000001
#> 1686        2025         Week 15 Year to date         Regional    E92000001
#> 1687        2025         Week 15 Year to date         Regional    E92000001
#> 1688        2025         Week 15 Year to date         Regional    E92000001
#> 1689        2025         Week 15 Year to date  Local authority    E92000001
#> 1690        2025         Week 15 Year to date  Local authority    E92000001
#> 1691        2025         Week 15 Year to date  Local authority    E92000001
#> 1692        2025         Week 15 Year to date  Local authority    E92000001
#> 1693        2025         Week 15 Year to date  Local authority    E92000001
#> 1694        2025         Week 15 Year to date  Local authority    E92000001
#> 1695        2025         Week 15 Year to date  Local authority    E92000001
#> 1696        2025         Week 15 Year to date  Local authority    E92000001
#> 1697        2025         Week 15 Year to date  Local authority    E92000001
#> 1698        2025         Week 15 Year to date  Local authority    E92000001
#> 1699        2025         Week 15 Year to date  Local authority    E92000001
#> 1700        2025         Week 15 Year to date  Local authority    E92000001
#> 1701        2025         Week 15 Year to date  Local authority    E92000001
#> 1702        2025         Week 15 Year to date  Local authority    E92000001
#> 1703        2025         Week 15 Year to date  Local authority    E92000001
#> 1704        2025         Week 15 Year to date  Local authority    E92000001
#> 1705        2025         Week 15 Year to date  Local authority    E92000001
#> 1706        2025         Week 15 Year to date  Local authority    E92000001
#> 1707        2025         Week 15 Year to date  Local authority    E92000001
#> 1708        2025         Week 15 Year to date  Local authority    E92000001
#> 1709        2025         Week 15 Year to date  Local authority    E92000001
#> 1710        2025         Week 15 Year to date  Local authority    E92000001
#> 1711        2025         Week 15 Year to date  Local authority    E92000001
#> 1712        2025         Week 15 Year to date  Local authority    E92000001
#> 1713        2025         Week 15 Year to date  Local authority    E92000001
#> 1714        2025         Week 15 Year to date  Local authority    E92000001
#> 1715        2025         Week 15 Year to date  Local authority    E92000001
#> 1716        2025         Week 15 Year to date  Local authority    E92000001
#> 1717        2025         Week 15 Year to date  Local authority    E92000001
#> 1718        2025         Week 15 Year to date  Local authority    E92000001
#> 1719        2025         Week 15 Year to date  Local authority    E92000001
#> 1720        2025         Week 15 Year to date  Local authority    E92000001
#> 1721        2025         Week 15 Year to date  Local authority    E92000001
#> 1722        2025         Week 15 Year to date  Local authority    E92000001
#> 1723        2025         Week 15 Year to date  Local authority    E92000001
#> 1724        2025         Week 15 Year to date  Local authority    E92000001
#> 1725        2025         Week 15 Year to date  Local authority    E92000001
#> 1726        2025         Week 15 Year to date  Local authority    E92000001
#> 1727        2025         Week 15 Year to date  Local authority    E92000001
#> 1728        2025         Week 15 Year to date  Local authority    E92000001
#> 1729        2025         Week 15 Year to date  Local authority    E92000001
#> 1730        2025         Week 15 Year to date  Local authority    E92000001
#> 1731        2025         Week 15 Year to date         Regional    E92000001
#> 1732        2025         Week 15 Year to date         Regional    E92000001
#> 1733        2025         Week 15 Year to date         Regional    E92000001
#> 1734        2025         Week 15 Year to date         Regional    E92000001
#> 1735        2025         Week 15 Year to date  Local authority    E92000001
#> 1736        2025         Week 15 Year to date  Local authority    E92000001
#> 1737        2025         Week 15 Year to date  Local authority    E92000001
#> 1738        2025         Week 15 Year to date  Local authority    E92000001
#> 1739        2025         Week 15 Year to date  Local authority    E92000001
#> 1740        2025         Week 15 Year to date  Local authority    E92000001
#> 1741        2025         Week 15 Year to date  Local authority    E92000001
#> 1742        2025         Week 15 Year to date  Local authority    E92000001
#> 1743        2025         Week 15 Year to date  Local authority    E92000001
#> 1744        2025         Week 15 Year to date  Local authority    E92000001
#> 1745        2025         Week 15 Year to date  Local authority    E92000001
#> 1746        2025         Week 15 Year to date  Local authority    E92000001
#> 1747        2025         Week 15 Year to date  Local authority    E92000001
#> 1748        2025         Week 15 Year to date  Local authority    E92000001
#> 1749        2025         Week 15 Year to date  Local authority    E92000001
#> 1750        2025         Week 15 Year to date  Local authority    E92000001
#> 1751        2025         Week 15 Year to date  Local authority    E92000001
#> 1752        2025         Week 15 Year to date  Local authority    E92000001
#> 1753        2025         Week 15 Year to date  Local authority    E92000001
#> 1754        2025         Week 15 Year to date  Local authority    E92000001
#> 1755        2025         Week 15 Year to date  Local authority    E92000001
#> 1756        2025         Week 15 Year to date  Local authority    E92000001
#> 1757        2025         Week 15 Year to date  Local authority    E92000001
#> 1758        2025         Week 15 Year to date  Local authority    E92000001
#> 1759        2025         Week 15 Year to date  Local authority    E92000001
#> 1760        2025         Week 15 Year to date  Local authority    E92000001
#> 1761        2025         Week 15 Year to date  Local authority    E92000001
#> 1762        2025         Week 15 Year to date  Local authority    E92000001
#> 1763        2025         Week 15 Year to date  Local authority    E92000001
#> 1764        2025         Week 15 Year to date  Local authority    E92000001
#> 1765        2025         Week 15 Year to date  Local authority    E92000001
#> 1766        2025         Week 15 Year to date  Local authority    E92000001
#> 1767        2025         Week 15 Year to date  Local authority    E92000001
#> 1768        2025         Week 15 Year to date         Regional    E92000001
#> 1769        2025         Week 15 Year to date         Regional    E92000001
#> 1770        2025         Week 15 Year to date         Regional    E92000001
#> 1771        2025         Week 15 Year to date         Regional    E92000001
#> 1772        2025         Week 15 Year to date  Local authority    E92000001
#> 1773        2025         Week 15 Year to date  Local authority    E92000001
#> 1774        2025         Week 15 Year to date  Local authority    E92000001
#> 1775        2025         Week 15 Year to date  Local authority    E92000001
#> 1776        2025         Week 15 Year to date  Local authority    E92000001
#> 1777        2025         Week 15 Year to date  Local authority    E92000001
#> 1778        2025         Week 15 Year to date  Local authority    E92000001
#> 1779        2025         Week 15 Year to date  Local authority    E92000001
#> 1780        2025         Week 15 Year to date  Local authority    E92000001
#> 1781        2025         Week 15 Year to date  Local authority    E92000001
#> 1782        2025         Week 15 Year to date  Local authority    E92000001
#> 1783        2025         Week 15 Year to date  Local authority    E92000001
#> 1784        2025         Week 15 Year to date  Local authority    E92000001
#> 1785        2025         Week 15 Year to date  Local authority    E92000001
#> 1786        2025         Week 15 Year to date  Local authority    E92000001
#> 1787        2025         Week 15 Year to date  Local authority    E92000001
#> 1788        2025         Week 15 Year to date  Local authority    E92000001
#> 1789        2025         Week 15 Year to date  Local authority    E92000001
#> 1790        2025         Week 15 Year to date  Local authority    E92000001
#> 1791        2025         Week 15 Year to date  Local authority    E92000001
#> 1792        2025         Week 15 Year to date  Local authority    E92000001
#> 1793        2025         Week 15 Year to date  Local authority    E92000001
#> 1794        2025         Week 15 Year to date  Local authority    E92000001
#> 1795        2025         Week 15 Year to date  Local authority    E92000001
#> 1796        2025         Week 15 Year to date  Local authority    E92000001
#> 1797        2025         Week 15 Year to date  Local authority    E92000001
#> 1798        2025         Week 15 Year to date  Local authority    E92000001
#> 1799        2025         Week 15 Year to date  Local authority    E92000001
#> 1800        2025         Week 15 Year to date  Local authority    E92000001
#> 1801        2025         Week 15 Year to date  Local authority    E92000001
#> 1802        2025         Week 15 Year to date  Local authority    E92000001
#> 1803        2025         Week 15 Year to date  Local authority    E92000001
#> 1804        2025         Week 15 Year to date  Local authority    E92000001
#> 1805        2025         Week 15 Year to date  Local authority    E92000001
#> 1806        2025         Week 15 Year to date  Local authority    E92000001
#> 1807        2025         Week 15 Year to date  Local authority    E92000001
#> 1808        2025         Week 15 Year to date  Local authority    E92000001
#> 1809        2025         Week 15 Year to date  Local authority    E92000001
#> 1810        2025         Week 15 Year to date  Local authority    E92000001
#> 1811        2025         Week 15 Year to date  Local authority    E92000001
#> 1812        2025         Week 15 Year to date  Local authority    E92000001
#> 1813        2025         Week 15 Year to date  Local authority    E92000001
#> 1814        2025         Week 15 Year to date  Local authority    E92000001
#> 1815        2025         Week 15 Year to date  Local authority    E92000001
#> 1816        2025         Week 15 Year to date  Local authority    E92000001
#> 1817        2025         Week 15 Year to date  Local authority    E92000001
#> 1818        2025         Week 15 Year to date  Local authority    E92000001
#> 1819        2025         Week 15 Year to date  Local authority    E92000001
#> 1820        2025         Week 15 Year to date  Local authority    E92000001
#> 1821        2025         Week 15 Year to date  Local authority    E92000001
#> 1822        2025         Week 15 Year to date  Local authority    E92000001
#> 1823        2025         Week 15 Year to date  Local authority    E92000001
#> 1824        2025         Week 15 Year to date  Local authority    E92000001
#> 1825        2025         Week 15 Year to date  Local authority    E92000001
#> 1826        2025         Week 15 Year to date  Local authority    E92000001
#> 1827        2025         Week 15 Year to date  Local authority    E92000001
#> 1828        2025         Week 15 Year to date  Local authority    E92000001
#> 1829        2025         Week 15 Year to date  Local authority    E92000001
#> 1830        2025         Week 15 Year to date  Local authority    E92000001
#> 1831        2025         Week 15 Year to date  Local authority    E92000001
#> 1832        2025         Week 15 Year to date  Local authority    E92000001
#> 1833        2025         Week 15 Year to date  Local authority    E92000001
#> 1834        2025         Week 15 Year to date  Local authority    E92000001
#> 1835        2025         Week 15 Year to date  Local authority    E92000001
#> 1836        2025         Week 15 Year to date  Local authority    E92000001
#> 1837        2025         Week 15 Year to date  Local authority    E92000001
#> 1838        2025         Week 15 Year to date  Local authority    E92000001
#> 1839        2025         Week 15 Year to date  Local authority    E92000001
#> 1840        2025         Week 15 Year to date  Local authority    E92000001
#> 1841        2025         Week 15 Year to date  Local authority    E92000001
#> 1842        2025         Week 15 Year to date  Local authority    E92000001
#> 1843        2025         Week 15 Year to date  Local authority    E92000001
#> 1844        2025         Week 15 Year to date  Local authority    E92000001
#> 1845        2025         Week 15 Year to date  Local authority    E92000001
#> 1846        2025         Week 15 Year to date  Local authority    E92000001
#> 1847        2025         Week 15 Year to date  Local authority    E92000001
#> 1848        2025         Week 15 Year to date  Local authority    E92000001
#> 1849        2025         Week 15 Year to date  Local authority    E92000001
#> 1850        2025         Week 15 Year to date  Local authority    E92000001
#> 1851        2025         Week 15 Year to date  Local authority    E92000001
#> 1852        2025         Week 15 Year to date  Local authority    E92000001
#> 1853        2025         Week 15 Year to date  Local authority    E92000001
#> 1854        2025         Week 15 Year to date  Local authority    E92000001
#> 1855        2025         Week 15 Year to date  Local authority    E92000001
#> 1856        2025         Week 15 Year to date  Local authority    E92000001
#> 1857        2025         Week 15 Year to date  Local authority    E92000001
#> 1858        2025         Week 15 Year to date  Local authority    E92000001
#> 1859        2025         Week 15 Year to date  Local authority    E92000001
#> 1860        2025         Week 15 Year to date  Local authority    E92000001
#> 1861        2025         Week 15 Year to date  Local authority    E92000001
#> 1862        2025         Week 15 Year to date  Local authority    E92000001
#> 1863        2025         Week 15 Year to date  Local authority    E92000001
#> 1864        2025         Week 15 Year to date  Local authority    E92000001
#> 1865        2025         Week 15 Year to date  Local authority    E92000001
#> 1866        2025         Week 15 Year to date  Local authority    E92000001
#> 1867        2025         Week 15 Year to date  Local authority    E92000001
#> 1868        2025         Week 15 Year to date  Local authority    E92000001
#> 1869        2025         Week 15 Year to date         Regional    E92000001
#> 1870        2025         Week 15 Year to date         Regional    E92000001
#> 1871        2025         Week 15 Year to date         Regional    E92000001
#> 1872        2025         Week 15 Year to date         Regional    E92000001
#> 1873        2025         Week 15 Year to date  Local authority    E92000001
#> 1874        2025         Week 15 Year to date  Local authority    E92000001
#> 1875        2025         Week 15 Year to date  Local authority    E92000001
#> 1876        2025         Week 15 Year to date  Local authority    E92000001
#> 1877        2025         Week 15 Year to date  Local authority    E92000001
#> 1878        2025         Week 15 Year to date  Local authority    E92000001
#> 1879        2025         Week 15 Year to date  Local authority    E92000001
#> 1880        2025         Week 15 Year to date  Local authority    E92000001
#> 1881        2025         Week 15 Year to date  Local authority    E92000001
#> 1882        2025         Week 15 Year to date  Local authority    E92000001
#> 1883        2025         Week 15 Year to date  Local authority    E92000001
#> 1884        2025         Week 15 Year to date  Local authority    E92000001
#> 1885        2025         Week 15 Year to date  Local authority    E92000001
#> 1886        2025         Week 15 Year to date  Local authority    E92000001
#> 1887        2025         Week 15 Year to date  Local authority    E92000001
#> 1888        2025         Week 15 Year to date  Local authority    E92000001
#> 1889        2025         Week 15 Year to date  Local authority    E92000001
#> 1890        2025         Week 15 Year to date  Local authority    E92000001
#> 1891        2025         Week 15 Year to date  Local authority    E92000001
#> 1892        2025         Week 15 Year to date  Local authority    E92000001
#> 1893        2025         Week 15 Year to date  Local authority    E92000001
#> 1894        2025         Week 15 Year to date  Local authority    E92000001
#> 1895        2025         Week 15 Year to date  Local authority    E92000001
#> 1896        2025         Week 15 Year to date  Local authority    E92000001
#> 1897        2025         Week 15 Year to date  Local authority    E92000001
#> 1898        2025         Week 15 Year to date  Local authority    E92000001
#> 1899        2025         Week 15 Year to date  Local authority    E92000001
#> 1900        2025         Week 15 Year to date  Local authority    E92000001
#> 1901        2025         Week 15 Year to date  Local authority    E92000001
#> 1902        2025         Week 15 Year to date  Local authority    E92000001
#> 1903        2025         Week 15 Year to date  Local authority    E92000001
#> 1904        2025         Week 15 Year to date  Local authority    E92000001
#> 1905        2025         Week 15 Year to date  Local authority    E92000001
#> 1906        2025         Week 15 Year to date  Local authority    E92000001
#> 1907        2025         Week 15 Year to date  Local authority    E92000001
#> 1908        2025         Week 15 Year to date  Local authority    E92000001
#> 1909        2025         Week 15 Year to date  Local authority    E92000001
#> 1910        2025         Week 15 Year to date  Local authority    E92000001
#> 1911        2025         Week 15 Year to date  Local authority    E92000001
#> 1912        2025         Week 15 Year to date  Local authority    E92000001
#> 1913        2025         Week 15 Year to date  Local authority    E92000001
#> 1914        2025         Week 15 Year to date  Local authority    E92000001
#> 1915        2025         Week 15 Year to date  Local authority    E92000001
#> 1916        2025         Week 15 Year to date  Local authority    E92000001
#> 1917        2025         Week 15 Year to date  Local authority    E92000001
#> 1918        2025         Week 15 Year to date  Local authority    E92000001
#> 1919        2025         Week 15 Year to date  Local authority    E92000001
#> 1920        2025         Week 15 Year to date  Local authority    E92000001
#> 1921        2025         Week 15 Year to date  Local authority    E92000001
#> 1922        2025         Week 15 Year to date  Local authority    E92000001
#> 1923        2025         Week 15 Year to date  Local authority    E92000001
#> 1924        2025         Week 15 Year to date  Local authority    E92000001
#> 1925        2025         Week 15 Year to date  Local authority    E92000001
#> 1926        2025         Week 15 Year to date  Local authority    E92000001
#> 1927        2025         Week 15 Year to date  Local authority    E92000001
#> 1928        2025         Week 15 Year to date  Local authority    E92000001
#> 1929        2025         Week 15 Year to date  Local authority    E92000001
#> 1930        2025         Week 15 Year to date         Regional    E92000001
#> 1931        2025         Week 15 Year to date         Regional    E92000001
#> 1932        2025         Week 15 Year to date         Regional    E92000001
#> 1933        2025         Week 15 Year to date         Regional    E92000001
#> 1934        2025         Week 15 Year to date  Local authority    E92000001
#> 1935        2025         Week 15 Year to date  Local authority    E92000001
#> 1936        2025         Week 15 Year to date  Local authority    E92000001
#> 1937        2025         Week 15 Year to date  Local authority    E92000001
#> 1938        2025         Week 15 Year to date  Local authority    E92000001
#> 1939        2025         Week 15 Year to date  Local authority    E92000001
#> 1940        2025         Week 15 Year to date  Local authority    E92000001
#> 1941        2025         Week 15 Year to date  Local authority    E92000001
#> 1942        2025         Week 15 Year to date  Local authority    E92000001
#> 1943        2025         Week 15 Year to date  Local authority    E92000001
#> 1944        2025         Week 15 Year to date  Local authority    E92000001
#> 1945        2025         Week 15 Year to date  Local authority    E92000001
#> 1946        2025         Week 15 Year to date  Local authority    E92000001
#> 1947        2025         Week 15 Year to date  Local authority    E92000001
#> 1948        2025         Week 15 Year to date  Local authority    E92000001
#> 1949        2025         Week 15 Year to date  Local authority    E92000001
#> 1950        2025         Week 15 Year to date  Local authority    E92000001
#> 1951        2025         Week 15 Year to date  Local authority    E92000001
#> 1952        2025         Week 15 Year to date  Local authority    E92000001
#> 1953        2025         Week 15 Year to date  Local authority    E92000001
#> 1954        2025         Week 15 Year to date  Local authority    E92000001
#> 1955        2025         Week 15 Year to date  Local authority    E92000001
#> 1956        2025         Week 15 Year to date  Local authority    E92000001
#> 1957        2025         Week 15 Year to date  Local authority    E92000001
#> 1958        2025         Week 15 Year to date  Local authority    E92000001
#> 1959        2025         Week 15 Year to date  Local authority    E92000001
#> 1960        2025         Week 15 Year to date  Local authority    E92000001
#> 1961        2025         Week 15 Year to date  Local authority    E92000001
#> 1962        2025         Week 15 Year to date  Local authority    E92000001
#> 1963        2025         Week 15 Year to date  Local authority    E92000001
#> 1964        2025         Week 15 Year to date  Local authority    E92000001
#> 1965        2025         Week 15 Year to date  Local authority    E92000001
#> 1966        2025         Week 15 Year to date  Local authority    E92000001
#> 1967        2025         Week 15 Year to date  Local authority    E92000001
#> 1968        2025         Week 15 Year to date  Local authority    E92000001
#> 1969        2025         Week 15 Year to date  Local authority    E92000001
#> 1970        2025         Week 15 Year to date  Local authority    E92000001
#> 1971        2025         Week 15 Year to date  Local authority    E92000001
#> 1972        2025         Week 15 Year to date  Local authority    E92000001
#> 1973        2025         Week 15 Year to date  Local authority    E92000001
#> 1974        2025         Week 15 Year to date  Local authority    E92000001
#> 1975        2025         Week 15 Year to date  Local authority    E92000001
#> 1976        2025         Week 15 Year to date  Local authority    E92000001
#> 1977        2025         Week 14 Year to date         National    E92000001
#> 1978        2025         Week 14 Year to date         National    E92000001
#> 1979        2025         Week 14 Year to date         National    E92000001
#> 1980        2025         Week 14 Year to date         National    E92000001
#> 1981        2025         Week 14 Year to date         Regional    E92000001
#> 1982        2025         Week 14 Year to date         Regional    E92000001
#> 1983        2025         Week 14 Year to date         Regional    E92000001
#> 1984        2025         Week 14 Year to date         Regional    E92000001
#> 1985        2025         Week 14 Year to date  Local authority    E92000001
#> 1986        2025         Week 14 Year to date  Local authority    E92000001
#> 1987        2025         Week 14 Year to date  Local authority    E92000001
#> 1988        2025         Week 14 Year to date  Local authority    E92000001
#> 1989        2025         Week 14 Year to date  Local authority    E92000001
#> 1990        2025         Week 14 Year to date  Local authority    E92000001
#> 1991        2025         Week 14 Year to date  Local authority    E92000001
#> 1992        2025         Week 14 Year to date  Local authority    E92000001
#> 1993        2025         Week 14 Year to date  Local authority    E92000001
#> 1994        2025         Week 14 Year to date  Local authority    E92000001
#> 1995        2025         Week 14 Year to date  Local authority    E92000001
#> 1996        2025         Week 14 Year to date  Local authority    E92000001
#> 1997        2025         Week 14 Year to date  Local authority    E92000001
#> 1998        2025         Week 14 Year to date  Local authority    E92000001
#> 1999        2025         Week 14 Year to date  Local authority    E92000001
#> 2000        2025         Week 14 Year to date  Local authority    E92000001
#> 2001        2025         Week 14 Year to date  Local authority    E92000001
#> 2002        2025         Week 14 Year to date  Local authority    E92000001
#> 2003        2025         Week 14 Year to date  Local authority    E92000001
#> 2004        2025         Week 14 Year to date  Local authority    E92000001
#> 2005        2025         Week 14 Year to date  Local authority    E92000001
#> 2006        2025         Week 14 Year to date  Local authority    E92000001
#> 2007        2025         Week 14 Year to date  Local authority    E92000001
#> 2008        2025         Week 14 Year to date  Local authority    E92000001
#> 2009        2025         Week 14 Year to date  Local authority    E92000001
#> 2010        2025         Week 14 Year to date  Local authority    E92000001
#> 2011        2025         Week 14 Year to date  Local authority    E92000001
#> 2012        2025         Week 14 Year to date  Local authority    E92000001
#> 2013        2025         Week 14 Year to date  Local authority    E92000001
#> 2014        2025         Week 14 Year to date  Local authority    E92000001
#> 2015        2025         Week 14 Year to date  Local authority    E92000001
#> 2016        2025         Week 14 Year to date  Local authority    E92000001
#> 2017        2025         Week 14 Year to date  Local authority    E92000001
#> 2018        2025         Week 14 Year to date  Local authority    E92000001
#> 2019        2025         Week 14 Year to date  Local authority    E92000001
#> 2020        2025         Week 14 Year to date  Local authority    E92000001
#> 2021        2025         Week 14 Year to date         Regional    E92000001
#> 2022        2025         Week 14 Year to date         Regional    E92000001
#> 2023        2025         Week 14 Year to date         Regional    E92000001
#> 2024        2025         Week 14 Year to date         Regional    E92000001
#> 2025        2025         Week 14 Year to date  Local authority    E92000001
#> 2026        2025         Week 14 Year to date  Local authority    E92000001
#> 2027        2025         Week 14 Year to date  Local authority    E92000001
#> 2028        2025         Week 14 Year to date  Local authority    E92000001
#> 2029        2025         Week 14 Year to date  Local authority    E92000001
#> 2030        2025         Week 14 Year to date  Local authority    E92000001
#> 2031        2025         Week 14 Year to date  Local authority    E92000001
#> 2032        2025         Week 14 Year to date  Local authority    E92000001
#> 2033        2025         Week 14 Year to date  Local authority    E92000001
#> 2034        2025         Week 14 Year to date  Local authority    E92000001
#> 2035        2025         Week 14 Year to date  Local authority    E92000001
#> 2036        2025         Week 14 Year to date  Local authority    E92000001
#> 2037        2025         Week 14 Year to date  Local authority    E92000001
#> 2038        2025         Week 14 Year to date  Local authority    E92000001
#> 2039        2025         Week 14 Year to date  Local authority    E92000001
#> 2040        2025         Week 14 Year to date  Local authority    E92000001
#> 2041        2025         Week 14 Year to date  Local authority    E92000001
#> 2042        2025         Week 14 Year to date  Local authority    E92000001
#> 2043        2025         Week 14 Year to date  Local authority    E92000001
#> 2044        2025         Week 14 Year to date  Local authority    E92000001
#> 2045        2025         Week 14 Year to date  Local authority    E92000001
#> 2046        2025         Week 14 Year to date  Local authority    E92000001
#> 2047        2025         Week 14 Year to date  Local authority    E92000001
#> 2048        2025         Week 14 Year to date  Local authority    E92000001
#> 2049        2025         Week 14 Year to date  Local authority    E92000001
#> 2050        2025         Week 14 Year to date  Local authority    E92000001
#> 2051        2025         Week 14 Year to date  Local authority    E92000001
#> 2052        2025         Week 14 Year to date  Local authority    E92000001
#> 2053        2025         Week 14 Year to date  Local authority    E92000001
#> 2054        2025         Week 14 Year to date  Local authority    E92000001
#> 2055        2025         Week 14 Year to date  Local authority    E92000001
#> 2056        2025         Week 14 Year to date  Local authority    E92000001
#> 2057        2025         Week 14 Year to date  Local authority    E92000001
#> 2058        2025         Week 14 Year to date  Local authority    E92000001
#> 2059        2025         Week 14 Year to date  Local authority    E92000001
#> 2060        2025         Week 14 Year to date  Local authority    E92000001
#> 2061        2025         Week 14 Year to date  Local authority    E92000001
#> 2062        2025         Week 14 Year to date  Local authority    E92000001
#> 2063        2025         Week 14 Year to date  Local authority    E92000001
#> 2064        2025         Week 14 Year to date  Local authority    E92000001
#> 2065        2025         Week 14 Year to date  Local authority    E92000001
#> 2066        2025         Week 14 Year to date  Local authority    E92000001
#> 2067        2025         Week 14 Year to date  Local authority    E92000001
#> 2068        2025         Week 14 Year to date  Local authority    E92000001
#> 2069        2025         Week 14 Year to date  Local authority    E92000001
#> 2070        2025         Week 14 Year to date  Local authority    E92000001
#> 2071        2025         Week 14 Year to date  Local authority    E92000001
#> 2072        2025         Week 14 Year to date  Local authority    E92000001
#> 2073        2025         Week 14 Year to date  Local authority    E92000001
#> 2074        2025         Week 14 Year to date  Local authority    E92000001
#> 2075        2025         Week 14 Year to date  Local authority    E92000001
#> 2076        2025         Week 14 Year to date  Local authority    E92000001
#> 2077        2025         Week 14 Year to date  Local authority    E92000001
#> 2078        2025         Week 14 Year to date  Local authority    E92000001
#> 2079        2025         Week 14 Year to date  Local authority    E92000001
#> 2080        2025         Week 14 Year to date  Local authority    E92000001
#> 2081        2025         Week 14 Year to date  Local authority    E92000001
#> 2082        2025         Week 14 Year to date  Local authority    E92000001
#> 2083        2025         Week 14 Year to date  Local authority    E92000001
#> 2084        2025         Week 14 Year to date  Local authority    E92000001
#> 2085        2025         Week 14 Year to date  Local authority    E92000001
#> 2086        2025         Week 14 Year to date  Local authority    E92000001
#> 2087        2025         Week 14 Year to date  Local authority    E92000001
#> 2088        2025         Week 14 Year to date  Local authority    E92000001
#> 2089        2025         Week 14 Year to date  Local authority    E92000001
#> 2090        2025         Week 14 Year to date  Local authority    E92000001
#> 2091        2025         Week 14 Year to date  Local authority    E92000001
#> 2092        2025         Week 14 Year to date  Local authority    E92000001
#> 2093        2025         Week 14 Year to date  Local authority    E92000001
#> 2094        2025         Week 14 Year to date  Local authority    E92000001
#> 2095        2025         Week 14 Year to date  Local authority    E92000001
#> 2096        2025         Week 14 Year to date  Local authority    E92000001
#> 2097        2025         Week 14 Year to date         Regional    E92000001
#> 2098        2025         Week 14 Year to date         Regional    E92000001
#> 2099        2025         Week 14 Year to date         Regional    E92000001
#> 2100        2025         Week 14 Year to date         Regional    E92000001
#> 2101        2025         Week 14 Year to date  Local authority    E92000001
#> 2102        2025         Week 14 Year to date  Local authority    E92000001
#> 2103        2025         Week 14 Year to date  Local authority    E92000001
#> 2104        2025         Week 14 Year to date  Local authority    E92000001
#> 2105        2025         Week 14 Year to date  Local authority    E92000001
#> 2106        2025         Week 14 Year to date  Local authority    E92000001
#> 2107        2025         Week 14 Year to date  Local authority    E92000001
#> 2108        2025         Week 14 Year to date  Local authority    E92000001
#> 2109        2025         Week 14 Year to date  Local authority    E92000001
#> 2110        2025         Week 14 Year to date  Local authority    E92000001
#> 2111        2025         Week 14 Year to date  Local authority    E92000001
#> 2112        2025         Week 14 Year to date  Local authority    E92000001
#> 2113        2025         Week 14 Year to date  Local authority    E92000001
#> 2114        2025         Week 14 Year to date  Local authority    E92000001
#> 2115        2025         Week 14 Year to date  Local authority    E92000001
#> 2116        2025         Week 14 Year to date  Local authority    E92000001
#> 2117        2025         Week 14 Year to date  Local authority    E92000001
#> 2118        2025         Week 14 Year to date  Local authority    E92000001
#> 2119        2025         Week 14 Year to date  Local authority    E92000001
#> 2120        2025         Week 14 Year to date  Local authority    E92000001
#> 2121        2025         Week 14 Year to date  Local authority    E92000001
#> 2122        2025         Week 14 Year to date  Local authority    E92000001
#> 2123        2025         Week 14 Year to date  Local authority    E92000001
#> 2124        2025         Week 14 Year to date  Local authority    E92000001
#> 2125        2025         Week 14 Year to date  Local authority    E92000001
#> 2126        2025         Week 14 Year to date  Local authority    E92000001
#> 2127        2025         Week 14 Year to date  Local authority    E92000001
#> 2128        2025         Week 14 Year to date  Local authority    E92000001
#> 2129        2025         Week 14 Year to date  Local authority    E92000001
#> 2130        2025         Week 14 Year to date  Local authority    E92000001
#> 2131        2025         Week 14 Year to date  Local authority    E92000001
#> 2132        2025         Week 14 Year to date  Local authority    E92000001
#> 2133        2025         Week 14 Year to date  Local authority    E92000001
#> 2134        2025         Week 14 Year to date  Local authority    E92000001
#> 2135        2025         Week 14 Year to date  Local authority    E92000001
#> 2136        2025         Week 14 Year to date  Local authority    E92000001
#> 2137        2025         Week 14 Year to date  Local authority    E92000001
#> 2138        2025         Week 14 Year to date  Local authority    E92000001
#> 2139        2025         Week 14 Year to date  Local authority    E92000001
#> 2140        2025         Week 14 Year to date  Local authority    E92000001
#> 2141        2025         Week 14 Year to date  Local authority    E92000001
#> 2142        2025         Week 14 Year to date  Local authority    E92000001
#> 2143        2025         Week 14 Year to date  Local authority    E92000001
#> 2144        2025         Week 14 Year to date  Local authority    E92000001
#> 2145        2025         Week 14 Year to date  Local authority    E92000001
#> 2146        2025         Week 14 Year to date         Regional    E92000001
#> 2147        2025         Week 14 Year to date         Regional    E92000001
#> 2148        2025         Week 14 Year to date         Regional    E92000001
#> 2149        2025         Week 14 Year to date         Regional    E92000001
#> 2150        2025         Week 14 Year to date  Local authority    E92000001
#> 2151        2025         Week 14 Year to date  Local authority    E92000001
#> 2152        2025         Week 14 Year to date  Local authority    E92000001
#> 2153        2025         Week 14 Year to date  Local authority    E92000001
#> 2154        2025         Week 14 Year to date  Local authority    E92000001
#> 2155        2025         Week 14 Year to date  Local authority    E92000001
#> 2156        2025         Week 14 Year to date  Local authority    E92000001
#> 2157        2025         Week 14 Year to date  Local authority    E92000001
#> 2158        2025         Week 14 Year to date  Local authority    E92000001
#> 2159        2025         Week 14 Year to date  Local authority    E92000001
#> 2160        2025         Week 14 Year to date  Local authority    E92000001
#> 2161        2025         Week 14 Year to date  Local authority    E92000001
#> 2162        2025         Week 14 Year to date  Local authority    E92000001
#> 2163        2025         Week 14 Year to date  Local authority    E92000001
#> 2164        2025         Week 14 Year to date  Local authority    E92000001
#> 2165        2025         Week 14 Year to date  Local authority    E92000001
#> 2166        2025         Week 14 Year to date  Local authority    E92000001
#> 2167        2025         Week 14 Year to date  Local authority    E92000001
#> 2168        2025         Week 14 Year to date  Local authority    E92000001
#> 2169        2025         Week 14 Year to date  Local authority    E92000001
#> 2170        2025         Week 14 Year to date  Local authority    E92000001
#> 2171        2025         Week 14 Year to date  Local authority    E92000001
#> 2172        2025         Week 14 Year to date  Local authority    E92000001
#> 2173        2025         Week 14 Year to date  Local authority    E92000001
#> 2174        2025         Week 14 Year to date  Local authority    E92000001
#> 2175        2025         Week 14 Year to date  Local authority    E92000001
#> 2176        2025         Week 14 Year to date  Local authority    E92000001
#> 2177        2025         Week 14 Year to date  Local authority    E92000001
#> 2178        2025         Week 14 Year to date  Local authority    E92000001
#> 2179        2025         Week 14 Year to date         Regional    E92000001
#> 2180        2025         Week 14 Year to date         Regional    E92000001
#> 2181        2025         Week 14 Year to date         Regional    E92000001
#> 2182        2025         Week 14 Year to date         Regional    E92000001
#> 2183        2025         Week 14 Year to date  Local authority    E92000001
#> 2184        2025         Week 14 Year to date  Local authority    E92000001
#> 2185        2025         Week 14 Year to date  Local authority    E92000001
#> 2186        2025         Week 14 Year to date  Local authority    E92000001
#> 2187        2025         Week 14 Year to date  Local authority    E92000001
#> 2188        2025         Week 14 Year to date  Local authority    E92000001
#> 2189        2025         Week 14 Year to date  Local authority    E92000001
#> 2190        2025         Week 14 Year to date  Local authority    E92000001
#> 2191        2025         Week 14 Year to date  Local authority    E92000001
#> 2192        2025         Week 14 Year to date  Local authority    E92000001
#> 2193        2025         Week 14 Year to date  Local authority    E92000001
#> 2194        2025         Week 14 Year to date  Local authority    E92000001
#> 2195        2025         Week 14 Year to date  Local authority    E92000001
#> 2196        2025         Week 14 Year to date  Local authority    E92000001
#> 2197        2025         Week 14 Year to date  Local authority    E92000001
#> 2198        2025         Week 14 Year to date  Local authority    E92000001
#> 2199        2025         Week 14 Year to date  Local authority    E92000001
#> 2200        2025         Week 14 Year to date  Local authority    E92000001
#> 2201        2025         Week 14 Year to date  Local authority    E92000001
#> 2202        2025         Week 14 Year to date  Local authority    E92000001
#> 2203        2025         Week 14 Year to date  Local authority    E92000001
#> 2204        2025         Week 14 Year to date  Local authority    E92000001
#> 2205        2025         Week 14 Year to date  Local authority    E92000001
#> 2206        2025         Week 14 Year to date  Local authority    E92000001
#> 2207        2025         Week 14 Year to date  Local authority    E92000001
#> 2208        2025         Week 14 Year to date  Local authority    E92000001
#> 2209        2025         Week 14 Year to date  Local authority    E92000001
#> 2210        2025         Week 14 Year to date  Local authority    E92000001
#> 2211        2025         Week 14 Year to date  Local authority    E92000001
#> 2212        2025         Week 14 Year to date  Local authority    E92000001
#> 2213        2025         Week 14 Year to date  Local authority    E92000001
#> 2214        2025         Week 14 Year to date  Local authority    E92000001
#> 2215        2025         Week 14 Year to date  Local authority    E92000001
#> 2216        2025         Week 14 Year to date  Local authority    E92000001
#> 2217        2025         Week 14 Year to date  Local authority    E92000001
#> 2218        2025         Week 14 Year to date  Local authority    E92000001
#> 2219        2025         Week 14 Year to date  Local authority    E92000001
#> 2220        2025         Week 14 Year to date  Local authority    E92000001
#> 2221        2025         Week 14 Year to date  Local authority    E92000001
#> 2222        2025         Week 14 Year to date  Local authority    E92000001
#> 2223        2025         Week 14 Year to date  Local authority    E92000001
#> 2224        2025         Week 14 Year to date  Local authority    E92000001
#> 2225        2025         Week 14 Year to date         Regional    E92000001
#> 2226        2025         Week 14 Year to date         Regional    E92000001
#> 2227        2025         Week 14 Year to date         Regional    E92000001
#> 2228        2025         Week 14 Year to date         Regional    E92000001
#> 2229        2025         Week 14 Year to date  Local authority    E92000001
#> 2230        2025         Week 14 Year to date  Local authority    E92000001
#> 2231        2025         Week 14 Year to date  Local authority    E92000001
#> 2232        2025         Week 14 Year to date  Local authority    E92000001
#> 2233        2025         Week 14 Year to date  Local authority    E92000001
#> 2234        2025         Week 14 Year to date  Local authority    E92000001
#> 2235        2025         Week 14 Year to date  Local authority    E92000001
#> 2236        2025         Week 14 Year to date  Local authority    E92000001
#> 2237        2025         Week 14 Year to date  Local authority    E92000001
#> 2238        2025         Week 14 Year to date  Local authority    E92000001
#> 2239        2025         Week 14 Year to date  Local authority    E92000001
#> 2240        2025         Week 14 Year to date  Local authority    E92000001
#> 2241        2025         Week 14 Year to date  Local authority    E92000001
#> 2242        2025         Week 14 Year to date  Local authority    E92000001
#> 2243        2025         Week 14 Year to date  Local authority    E92000001
#> 2244        2025         Week 14 Year to date  Local authority    E92000001
#> 2245        2025         Week 14 Year to date  Local authority    E92000001
#> 2246        2025         Week 14 Year to date  Local authority    E92000001
#> 2247        2025         Week 14 Year to date  Local authority    E92000001
#> 2248        2025         Week 14 Year to date  Local authority    E92000001
#> 2249        2025         Week 14 Year to date  Local authority    E92000001
#> 2250        2025         Week 14 Year to date  Local authority    E92000001
#> 2251        2025         Week 14 Year to date  Local authority    E92000001
#> 2252        2025         Week 14 Year to date  Local authority    E92000001
#> 2253        2025         Week 14 Year to date  Local authority    E92000001
#> 2254        2025         Week 14 Year to date  Local authority    E92000001
#> 2255        2025         Week 14 Year to date  Local authority    E92000001
#> 2256        2025         Week 14 Year to date  Local authority    E92000001
#> 2257        2025         Week 14 Year to date  Local authority    E92000001
#> 2258        2025         Week 14 Year to date  Local authority    E92000001
#> 2259        2025         Week 14 Year to date  Local authority    E92000001
#> 2260        2025         Week 14 Year to date  Local authority    E92000001
#> 2261        2025         Week 14 Year to date  Local authority    E92000001
#> 2262        2025         Week 14 Year to date         Regional    E92000001
#> 2263        2025         Week 14 Year to date         Regional    E92000001
#> 2264        2025         Week 14 Year to date         Regional    E92000001
#> 2265        2025         Week 14 Year to date         Regional    E92000001
#> 2266        2025         Week 14 Year to date  Local authority    E92000001
#> 2267        2025         Week 14 Year to date  Local authority    E92000001
#> 2268        2025         Week 14 Year to date  Local authority    E92000001
#> 2269        2025         Week 14 Year to date  Local authority    E92000001
#> 2270        2025         Week 14 Year to date  Local authority    E92000001
#> 2271        2025         Week 14 Year to date  Local authority    E92000001
#> 2272        2025         Week 14 Year to date  Local authority    E92000001
#> 2273        2025         Week 14 Year to date  Local authority    E92000001
#> 2274        2025         Week 14 Year to date  Local authority    E92000001
#> 2275        2025         Week 14 Year to date  Local authority    E92000001
#> 2276        2025         Week 14 Year to date  Local authority    E92000001
#> 2277        2025         Week 14 Year to date  Local authority    E92000001
#> 2278        2025         Week 14 Year to date  Local authority    E92000001
#> 2279        2025         Week 14 Year to date  Local authority    E92000001
#> 2280        2025         Week 14 Year to date  Local authority    E92000001
#> 2281        2025         Week 14 Year to date  Local authority    E92000001
#> 2282        2025         Week 14 Year to date  Local authority    E92000001
#> 2283        2025         Week 14 Year to date  Local authority    E92000001
#> 2284        2025         Week 14 Year to date  Local authority    E92000001
#> 2285        2025         Week 14 Year to date  Local authority    E92000001
#> 2286        2025         Week 14 Year to date  Local authority    E92000001
#> 2287        2025         Week 14 Year to date  Local authority    E92000001
#> 2288        2025         Week 14 Year to date  Local authority    E92000001
#> 2289        2025         Week 14 Year to date  Local authority    E92000001
#> 2290        2025         Week 14 Year to date  Local authority    E92000001
#> 2291        2025         Week 14 Year to date  Local authority    E92000001
#> 2292        2025         Week 14 Year to date  Local authority    E92000001
#> 2293        2025         Week 14 Year to date  Local authority    E92000001
#> 2294        2025         Week 14 Year to date  Local authority    E92000001
#> 2295        2025         Week 14 Year to date  Local authority    E92000001
#> 2296        2025         Week 14 Year to date  Local authority    E92000001
#> 2297        2025         Week 14 Year to date  Local authority    E92000001
#> 2298        2025         Week 14 Year to date  Local authority    E92000001
#> 2299        2025         Week 14 Year to date  Local authority    E92000001
#> 2300        2025         Week 14 Year to date  Local authority    E92000001
#> 2301        2025         Week 14 Year to date  Local authority    E92000001
#> 2302        2025         Week 14 Year to date  Local authority    E92000001
#> 2303        2025         Week 14 Year to date  Local authority    E92000001
#> 2304        2025         Week 14 Year to date  Local authority    E92000001
#> 2305        2025         Week 14 Year to date  Local authority    E92000001
#> 2306        2025         Week 14 Year to date  Local authority    E92000001
#> 2307        2025         Week 14 Year to date  Local authority    E92000001
#> 2308        2025         Week 14 Year to date  Local authority    E92000001
#> 2309        2025         Week 14 Year to date  Local authority    E92000001
#> 2310        2025         Week 14 Year to date  Local authority    E92000001
#> 2311        2025         Week 14 Year to date  Local authority    E92000001
#> 2312        2025         Week 14 Year to date  Local authority    E92000001
#> 2313        2025         Week 14 Year to date  Local authority    E92000001
#> 2314        2025         Week 14 Year to date  Local authority    E92000001
#> 2315        2025         Week 14 Year to date  Local authority    E92000001
#> 2316        2025         Week 14 Year to date  Local authority    E92000001
#> 2317        2025         Week 14 Year to date  Local authority    E92000001
#> 2318        2025         Week 14 Year to date  Local authority    E92000001
#> 2319        2025         Week 14 Year to date  Local authority    E92000001
#> 2320        2025         Week 14 Year to date  Local authority    E92000001
#> 2321        2025         Week 14 Year to date  Local authority    E92000001
#> 2322        2025         Week 14 Year to date  Local authority    E92000001
#> 2323        2025         Week 14 Year to date  Local authority    E92000001
#> 2324        2025         Week 14 Year to date  Local authority    E92000001
#> 2325        2025         Week 14 Year to date  Local authority    E92000001
#> 2326        2025         Week 14 Year to date  Local authority    E92000001
#> 2327        2025         Week 14 Year to date  Local authority    E92000001
#> 2328        2025         Week 14 Year to date  Local authority    E92000001
#> 2329        2025         Week 14 Year to date  Local authority    E92000001
#> 2330        2025         Week 14 Year to date  Local authority    E92000001
#> 2331        2025         Week 14 Year to date  Local authority    E92000001
#> 2332        2025         Week 14 Year to date  Local authority    E92000001
#> 2333        2025         Week 14 Year to date  Local authority    E92000001
#> 2334        2025         Week 14 Year to date  Local authority    E92000001
#> 2335        2025         Week 14 Year to date  Local authority    E92000001
#> 2336        2025         Week 14 Year to date  Local authority    E92000001
#> 2337        2025         Week 14 Year to date  Local authority    E92000001
#> 2338        2025         Week 14 Year to date  Local authority    E92000001
#> 2339        2025         Week 14 Year to date  Local authority    E92000001
#> 2340        2025         Week 14 Year to date  Local authority    E92000001
#> 2341        2025         Week 14 Year to date  Local authority    E92000001
#> 2342        2025         Week 14 Year to date  Local authority    E92000001
#> 2343        2025         Week 14 Year to date  Local authority    E92000001
#> 2344        2025         Week 14 Year to date  Local authority    E92000001
#> 2345        2025         Week 14 Year to date  Local authority    E92000001
#> 2346        2025         Week 14 Year to date  Local authority    E92000001
#> 2347        2025         Week 14 Year to date  Local authority    E92000001
#> 2348        2025         Week 14 Year to date  Local authority    E92000001
#> 2349        2025         Week 14 Year to date  Local authority    E92000001
#> 2350        2025         Week 14 Year to date  Local authority    E92000001
#> 2351        2025         Week 14 Year to date  Local authority    E92000001
#> 2352        2025         Week 14 Year to date  Local authority    E92000001
#> 2353        2025         Week 14 Year to date  Local authority    E92000001
#> 2354        2025         Week 14 Year to date  Local authority    E92000001
#> 2355        2025         Week 14 Year to date  Local authority    E92000001
#> 2356        2025         Week 14 Year to date  Local authority    E92000001
#> 2357        2025         Week 14 Year to date  Local authority    E92000001
#> 2358        2025         Week 14 Year to date  Local authority    E92000001
#> 2359        2025         Week 14 Year to date  Local authority    E92000001
#> 2360        2025         Week 14 Year to date  Local authority    E92000001
#> 2361        2025         Week 14 Year to date  Local authority    E92000001
#> 2362        2025         Week 14 Year to date  Local authority    E92000001
#> 2363        2025         Week 14 Year to date         Regional    E92000001
#> 2364        2025         Week 14 Year to date         Regional    E92000001
#> 2365        2025         Week 14 Year to date         Regional    E92000001
#> 2366        2025         Week 14 Year to date         Regional    E92000001
#> 2367        2025         Week 14 Year to date  Local authority    E92000001
#> 2368        2025         Week 14 Year to date  Local authority    E92000001
#> 2369        2025         Week 14 Year to date  Local authority    E92000001
#> 2370        2025         Week 14 Year to date  Local authority    E92000001
#> 2371        2025         Week 14 Year to date  Local authority    E92000001
#> 2372        2025         Week 14 Year to date  Local authority    E92000001
#> 2373        2025         Week 14 Year to date  Local authority    E92000001
#> 2374        2025         Week 14 Year to date  Local authority    E92000001
#> 2375        2025         Week 14 Year to date  Local authority    E92000001
#> 2376        2025         Week 14 Year to date  Local authority    E92000001
#> 2377        2025         Week 14 Year to date  Local authority    E92000001
#> 2378        2025         Week 14 Year to date  Local authority    E92000001
#> 2379        2025         Week 14 Year to date  Local authority    E92000001
#> 2380        2025         Week 14 Year to date  Local authority    E92000001
#> 2381        2025         Week 14 Year to date  Local authority    E92000001
#> 2382        2025         Week 14 Year to date  Local authority    E92000001
#> 2383        2025         Week 14 Year to date  Local authority    E92000001
#> 2384        2025         Week 14 Year to date  Local authority    E92000001
#> 2385        2025         Week 14 Year to date  Local authority    E92000001
#> 2386        2025         Week 14 Year to date  Local authority    E92000001
#> 2387        2025         Week 14 Year to date  Local authority    E92000001
#> 2388        2025         Week 14 Year to date  Local authority    E92000001
#> 2389        2025         Week 14 Year to date  Local authority    E92000001
#> 2390        2025         Week 14 Year to date  Local authority    E92000001
#> 2391        2025         Week 14 Year to date  Local authority    E92000001
#> 2392        2025         Week 14 Year to date  Local authority    E92000001
#> 2393        2025         Week 14 Year to date  Local authority    E92000001
#> 2394        2025         Week 14 Year to date  Local authority    E92000001
#> 2395        2025         Week 14 Year to date  Local authority    E92000001
#> 2396        2025         Week 14 Year to date  Local authority    E92000001
#> 2397        2025         Week 14 Year to date  Local authority    E92000001
#> 2398        2025         Week 14 Year to date  Local authority    E92000001
#> 2399        2025         Week 14 Year to date  Local authority    E92000001
#> 2400        2025         Week 14 Year to date  Local authority    E92000001
#> 2401        2025         Week 14 Year to date  Local authority    E92000001
#> 2402        2025         Week 14 Year to date  Local authority    E92000001
#> 2403        2025         Week 14 Year to date  Local authority    E92000001
#> 2404        2025         Week 14 Year to date  Local authority    E92000001
#> 2405        2025         Week 14 Year to date  Local authority    E92000001
#> 2406        2025         Week 14 Year to date  Local authority    E92000001
#> 2407        2025         Week 14 Year to date  Local authority    E92000001
#> 2408        2025         Week 14 Year to date  Local authority    E92000001
#> 2409        2025         Week 14 Year to date  Local authority    E92000001
#> 2410        2025         Week 14 Year to date  Local authority    E92000001
#> 2411        2025         Week 14 Year to date  Local authority    E92000001
#> 2412        2025         Week 14 Year to date  Local authority    E92000001
#> 2413        2025         Week 14 Year to date  Local authority    E92000001
#> 2414        2025         Week 14 Year to date  Local authority    E92000001
#> 2415        2025         Week 14 Year to date  Local authority    E92000001
#> 2416        2025         Week 14 Year to date  Local authority    E92000001
#> 2417        2025         Week 14 Year to date  Local authority    E92000001
#> 2418        2025         Week 14 Year to date  Local authority    E92000001
#> 2419        2025         Week 14 Year to date  Local authority    E92000001
#> 2420        2025         Week 14 Year to date  Local authority    E92000001
#> 2421        2025         Week 14 Year to date  Local authority    E92000001
#> 2422        2025         Week 14 Year to date  Local authority    E92000001
#> 2423        2025         Week 14 Year to date  Local authority    E92000001
#> 2424        2025         Week 14 Year to date         Regional    E92000001
#> 2425        2025         Week 14 Year to date         Regional    E92000001
#> 2426        2025         Week 14 Year to date         Regional    E92000001
#> 2427        2025         Week 14 Year to date         Regional    E92000001
#> 2428        2025         Week 14 Year to date  Local authority    E92000001
#> 2429        2025         Week 14 Year to date  Local authority    E92000001
#> 2430        2025         Week 14 Year to date  Local authority    E92000001
#> 2431        2025         Week 14 Year to date  Local authority    E92000001
#> 2432        2025         Week 14 Year to date  Local authority    E92000001
#> 2433        2025         Week 14 Year to date  Local authority    E92000001
#> 2434        2025         Week 14 Year to date  Local authority    E92000001
#> 2435        2025         Week 14 Year to date  Local authority    E92000001
#> 2436        2025         Week 14 Year to date  Local authority    E92000001
#> 2437        2025         Week 14 Year to date  Local authority    E92000001
#> 2438        2025         Week 14 Year to date  Local authority    E92000001
#> 2439        2025         Week 14 Year to date  Local authority    E92000001
#> 2440        2025         Week 14 Year to date  Local authority    E92000001
#> 2441        2025         Week 14 Year to date  Local authority    E92000001
#> 2442        2025         Week 14 Year to date  Local authority    E92000001
#> 2443        2025         Week 14 Year to date  Local authority    E92000001
#> 2444        2025         Week 14 Year to date  Local authority    E92000001
#> 2445        2025         Week 14 Year to date  Local authority    E92000001
#> 2446        2025         Week 14 Year to date  Local authority    E92000001
#> 2447        2025         Week 14 Year to date  Local authority    E92000001
#> 2448        2025         Week 14 Year to date  Local authority    E92000001
#> 2449        2025         Week 14 Year to date  Local authority    E92000001
#> 2450        2025         Week 14 Year to date  Local authority    E92000001
#> 2451        2025         Week 14 Year to date  Local authority    E92000001
#> 2452        2025         Week 14 Year to date  Local authority    E92000001
#> 2453        2025         Week 14 Year to date  Local authority    E92000001
#> 2454        2025         Week 14 Year to date  Local authority    E92000001
#> 2455        2025         Week 14 Year to date  Local authority    E92000001
#> 2456        2025         Week 14 Year to date  Local authority    E92000001
#> 2457        2025         Week 14 Year to date  Local authority    E92000001
#> 2458        2025         Week 14 Year to date  Local authority    E92000001
#> 2459        2025         Week 14 Year to date  Local authority    E92000001
#> 2460        2025         Week 14 Year to date  Local authority    E92000001
#> 2461        2025         Week 14 Year to date  Local authority    E92000001
#> 2462        2025         Week 14 Year to date  Local authority    E92000001
#> 2463        2025         Week 14 Year to date  Local authority    E92000001
#> 2464        2025         Week 14 Year to date  Local authority    E92000001
#> 2465        2025         Week 14 Year to date  Local authority    E92000001
#> 2466        2025         Week 14 Year to date  Local authority    E92000001
#> 2467        2025         Week 14 Year to date  Local authority    E92000001
#> 2468        2025         Week 14 Year to date  Local authority    E92000001
#> 2469        2025         Week 14 Year to date  Local authority    E92000001
#> 2470        2025         Week 14 Year to date  Local authority    E92000001
#> 2471        2025         Week 12 Year to date         National    E92000001
#> 2472        2025         Week 12 Year to date         National    E92000001
#> 2473        2025         Week 12 Year to date         National    E92000001
#> 2474        2025         Week 12 Year to date         National    E92000001
#> 2475        2025         Week 12 Year to date         Regional    E92000001
#> 2476        2025         Week 12 Year to date         Regional    E92000001
#> 2477        2025         Week 12 Year to date         Regional    E92000001
#> 2478        2025         Week 12 Year to date         Regional    E92000001
#> 2479        2025         Week 12 Year to date  Local authority    E92000001
#> 2480        2025         Week 12 Year to date  Local authority    E92000001
#> 2481        2025         Week 12 Year to date  Local authority    E92000001
#> 2482        2025         Week 12 Year to date  Local authority    E92000001
#> 2483        2025         Week 12 Year to date  Local authority    E92000001
#> 2484        2025         Week 12 Year to date  Local authority    E92000001
#> 2485        2025         Week 12 Year to date  Local authority    E92000001
#> 2486        2025         Week 12 Year to date  Local authority    E92000001
#> 2487        2025         Week 12 Year to date  Local authority    E92000001
#> 2488        2025         Week 12 Year to date  Local authority    E92000001
#> 2489        2025         Week 12 Year to date  Local authority    E92000001
#> 2490        2025         Week 12 Year to date  Local authority    E92000001
#> 2491        2025         Week 12 Year to date  Local authority    E92000001
#> 2492        2025         Week 12 Year to date  Local authority    E92000001
#> 2493        2025         Week 12 Year to date  Local authority    E92000001
#> 2494        2025         Week 12 Year to date  Local authority    E92000001
#> 2495        2025         Week 12 Year to date  Local authority    E92000001
#> 2496        2025         Week 12 Year to date  Local authority    E92000001
#> 2497        2025         Week 12 Year to date  Local authority    E92000001
#> 2498        2025         Week 12 Year to date  Local authority    E92000001
#> 2499        2025         Week 12 Year to date  Local authority    E92000001
#> 2500        2025         Week 12 Year to date  Local authority    E92000001
#> 2501        2025         Week 12 Year to date  Local authority    E92000001
#> 2502        2025         Week 12 Year to date  Local authority    E92000001
#> 2503        2025         Week 12 Year to date  Local authority    E92000001
#> 2504        2025         Week 12 Year to date  Local authority    E92000001
#> 2505        2025         Week 12 Year to date  Local authority    E92000001
#> 2506        2025         Week 12 Year to date  Local authority    E92000001
#> 2507        2025         Week 12 Year to date  Local authority    E92000001
#> 2508        2025         Week 12 Year to date  Local authority    E92000001
#> 2509        2025         Week 12 Year to date  Local authority    E92000001
#> 2510        2025         Week 12 Year to date  Local authority    E92000001
#> 2511        2025         Week 12 Year to date  Local authority    E92000001
#> 2512        2025         Week 12 Year to date  Local authority    E92000001
#> 2513        2025         Week 12 Year to date  Local authority    E92000001
#> 2514        2025         Week 12 Year to date  Local authority    E92000001
#> 2515        2025         Week 12 Year to date         Regional    E92000001
#> 2516        2025         Week 12 Year to date         Regional    E92000001
#> 2517        2025         Week 12 Year to date         Regional    E92000001
#> 2518        2025         Week 12 Year to date         Regional    E92000001
#> 2519        2025         Week 12 Year to date  Local authority    E92000001
#> 2520        2025         Week 12 Year to date  Local authority    E92000001
#> 2521        2025         Week 12 Year to date  Local authority    E92000001
#> 2522        2025         Week 12 Year to date  Local authority    E92000001
#> 2523        2025         Week 12 Year to date  Local authority    E92000001
#> 2524        2025         Week 12 Year to date  Local authority    E92000001
#> 2525        2025         Week 12 Year to date  Local authority    E92000001
#> 2526        2025         Week 12 Year to date  Local authority    E92000001
#> 2527        2025         Week 12 Year to date  Local authority    E92000001
#> 2528        2025         Week 12 Year to date  Local authority    E92000001
#> 2529        2025         Week 12 Year to date  Local authority    E92000001
#> 2530        2025         Week 12 Year to date  Local authority    E92000001
#> 2531        2025         Week 12 Year to date  Local authority    E92000001
#> 2532        2025         Week 12 Year to date  Local authority    E92000001
#> 2533        2025         Week 12 Year to date  Local authority    E92000001
#> 2534        2025         Week 12 Year to date  Local authority    E92000001
#> 2535        2025         Week 12 Year to date  Local authority    E92000001
#> 2536        2025         Week 12 Year to date  Local authority    E92000001
#> 2537        2025         Week 12 Year to date  Local authority    E92000001
#> 2538        2025         Week 12 Year to date  Local authority    E92000001
#> 2539        2025         Week 12 Year to date  Local authority    E92000001
#> 2540        2025         Week 12 Year to date  Local authority    E92000001
#> 2541        2025         Week 12 Year to date  Local authority    E92000001
#> 2542        2025         Week 12 Year to date  Local authority    E92000001
#> 2543        2025         Week 12 Year to date  Local authority    E92000001
#> 2544        2025         Week 12 Year to date  Local authority    E92000001
#> 2545        2025         Week 12 Year to date  Local authority    E92000001
#> 2546        2025         Week 12 Year to date  Local authority    E92000001
#> 2547        2025         Week 12 Year to date  Local authority    E92000001
#> 2548        2025         Week 12 Year to date  Local authority    E92000001
#> 2549        2025         Week 12 Year to date  Local authority    E92000001
#> 2550        2025         Week 12 Year to date  Local authority    E92000001
#> 2551        2025         Week 12 Year to date  Local authority    E92000001
#> 2552        2025         Week 12 Year to date  Local authority    E92000001
#> 2553        2025         Week 12 Year to date  Local authority    E92000001
#> 2554        2025         Week 12 Year to date  Local authority    E92000001
#> 2555        2025         Week 12 Year to date  Local authority    E92000001
#> 2556        2025         Week 12 Year to date  Local authority    E92000001
#> 2557        2025         Week 12 Year to date  Local authority    E92000001
#> 2558        2025         Week 12 Year to date  Local authority    E92000001
#> 2559        2025         Week 12 Year to date  Local authority    E92000001
#> 2560        2025         Week 12 Year to date  Local authority    E92000001
#> 2561        2025         Week 12 Year to date  Local authority    E92000001
#> 2562        2025         Week 12 Year to date  Local authority    E92000001
#> 2563        2025         Week 12 Year to date  Local authority    E92000001
#> 2564        2025         Week 12 Year to date  Local authority    E92000001
#> 2565        2025         Week 12 Year to date  Local authority    E92000001
#> 2566        2025         Week 12 Year to date  Local authority    E92000001
#> 2567        2025         Week 12 Year to date  Local authority    E92000001
#> 2568        2025         Week 12 Year to date  Local authority    E92000001
#> 2569        2025         Week 12 Year to date  Local authority    E92000001
#> 2570        2025         Week 12 Year to date  Local authority    E92000001
#> 2571        2025         Week 12 Year to date  Local authority    E92000001
#> 2572        2025         Week 12 Year to date  Local authority    E92000001
#> 2573        2025         Week 12 Year to date  Local authority    E92000001
#> 2574        2025         Week 12 Year to date  Local authority    E92000001
#> 2575        2025         Week 12 Year to date  Local authority    E92000001
#> 2576        2025         Week 12 Year to date  Local authority    E92000001
#> 2577        2025         Week 12 Year to date  Local authority    E92000001
#> 2578        2025         Week 12 Year to date  Local authority    E92000001
#> 2579        2025         Week 12 Year to date  Local authority    E92000001
#> 2580        2025         Week 12 Year to date  Local authority    E92000001
#> 2581        2025         Week 12 Year to date  Local authority    E92000001
#> 2582        2025         Week 12 Year to date  Local authority    E92000001
#> 2583        2025         Week 12 Year to date  Local authority    E92000001
#> 2584        2025         Week 12 Year to date  Local authority    E92000001
#> 2585        2025         Week 12 Year to date  Local authority    E92000001
#> 2586        2025         Week 12 Year to date  Local authority    E92000001
#> 2587        2025         Week 12 Year to date  Local authority    E92000001
#> 2588        2025         Week 12 Year to date  Local authority    E92000001
#> 2589        2025         Week 12 Year to date  Local authority    E92000001
#> 2590        2025         Week 12 Year to date  Local authority    E92000001
#> 2591        2025         Week 12 Year to date         Regional    E92000001
#> 2592        2025         Week 12 Year to date         Regional    E92000001
#> 2593        2025         Week 12 Year to date         Regional    E92000001
#> 2594        2025         Week 12 Year to date         Regional    E92000001
#> 2595        2025         Week 12 Year to date  Local authority    E92000001
#> 2596        2025         Week 12 Year to date  Local authority    E92000001
#> 2597        2025         Week 12 Year to date  Local authority    E92000001
#> 2598        2025         Week 12 Year to date  Local authority    E92000001
#> 2599        2025         Week 12 Year to date  Local authority    E92000001
#> 2600        2025         Week 12 Year to date  Local authority    E92000001
#> 2601        2025         Week 12 Year to date  Local authority    E92000001
#> 2602        2025         Week 12 Year to date  Local authority    E92000001
#> 2603        2025         Week 12 Year to date  Local authority    E92000001
#> 2604        2025         Week 12 Year to date  Local authority    E92000001
#> 2605        2025         Week 12 Year to date  Local authority    E92000001
#> 2606        2025         Week 12 Year to date  Local authority    E92000001
#> 2607        2025         Week 12 Year to date  Local authority    E92000001
#> 2608        2025         Week 12 Year to date  Local authority    E92000001
#> 2609        2025         Week 12 Year to date  Local authority    E92000001
#> 2610        2025         Week 12 Year to date  Local authority    E92000001
#> 2611        2025         Week 12 Year to date  Local authority    E92000001
#> 2612        2025         Week 12 Year to date  Local authority    E92000001
#> 2613        2025         Week 12 Year to date  Local authority    E92000001
#> 2614        2025         Week 12 Year to date  Local authority    E92000001
#> 2615        2025         Week 12 Year to date  Local authority    E92000001
#> 2616        2025         Week 12 Year to date  Local authority    E92000001
#> 2617        2025         Week 12 Year to date  Local authority    E92000001
#> 2618        2025         Week 12 Year to date  Local authority    E92000001
#> 2619        2025         Week 12 Year to date  Local authority    E92000001
#> 2620        2025         Week 12 Year to date  Local authority    E92000001
#> 2621        2025         Week 12 Year to date  Local authority    E92000001
#> 2622        2025         Week 12 Year to date  Local authority    E92000001
#> 2623        2025         Week 12 Year to date  Local authority    E92000001
#> 2624        2025         Week 12 Year to date  Local authority    E92000001
#> 2625        2025         Week 12 Year to date  Local authority    E92000001
#> 2626        2025         Week 12 Year to date  Local authority    E92000001
#> 2627        2025         Week 12 Year to date  Local authority    E92000001
#> 2628        2025         Week 12 Year to date  Local authority    E92000001
#> 2629        2025         Week 12 Year to date  Local authority    E92000001
#> 2630        2025         Week 12 Year to date  Local authority    E92000001
#> 2631        2025         Week 12 Year to date  Local authority    E92000001
#> 2632        2025         Week 12 Year to date  Local authority    E92000001
#> 2633        2025         Week 12 Year to date  Local authority    E92000001
#> 2634        2025         Week 12 Year to date  Local authority    E92000001
#> 2635        2025         Week 12 Year to date  Local authority    E92000001
#> 2636        2025         Week 12 Year to date  Local authority    E92000001
#> 2637        2025         Week 12 Year to date  Local authority    E92000001
#> 2638        2025         Week 12 Year to date  Local authority    E92000001
#> 2639        2025         Week 12 Year to date  Local authority    E92000001
#> 2640        2025         Week 12 Year to date         Regional    E92000001
#> 2641        2025         Week 12 Year to date         Regional    E92000001
#> 2642        2025         Week 12 Year to date         Regional    E92000001
#> 2643        2025         Week 12 Year to date         Regional    E92000001
#> 2644        2025         Week 12 Year to date  Local authority    E92000001
#> 2645        2025         Week 12 Year to date  Local authority    E92000001
#> 2646        2025         Week 12 Year to date  Local authority    E92000001
#> 2647        2025         Week 12 Year to date  Local authority    E92000001
#> 2648        2025         Week 12 Year to date  Local authority    E92000001
#> 2649        2025         Week 12 Year to date  Local authority    E92000001
#> 2650        2025         Week 12 Year to date  Local authority    E92000001
#> 2651        2025         Week 12 Year to date  Local authority    E92000001
#> 2652        2025         Week 12 Year to date  Local authority    E92000001
#> 2653        2025         Week 12 Year to date  Local authority    E92000001
#> 2654        2025         Week 12 Year to date  Local authority    E92000001
#> 2655        2025         Week 12 Year to date  Local authority    E92000001
#> 2656        2025         Week 12 Year to date  Local authority    E92000001
#> 2657        2025         Week 12 Year to date  Local authority    E92000001
#> 2658        2025         Week 12 Year to date  Local authority    E92000001
#> 2659        2025         Week 12 Year to date  Local authority    E92000001
#> 2660        2025         Week 12 Year to date  Local authority    E92000001
#> 2661        2025         Week 12 Year to date  Local authority    E92000001
#> 2662        2025         Week 12 Year to date  Local authority    E92000001
#> 2663        2025         Week 12 Year to date  Local authority    E92000001
#> 2664        2025         Week 12 Year to date  Local authority    E92000001
#> 2665        2025         Week 12 Year to date  Local authority    E92000001
#> 2666        2025         Week 12 Year to date  Local authority    E92000001
#> 2667        2025         Week 12 Year to date  Local authority    E92000001
#> 2668        2025         Week 12 Year to date  Local authority    E92000001
#> 2669        2025         Week 12 Year to date  Local authority    E92000001
#> 2670        2025         Week 12 Year to date  Local authority    E92000001
#> 2671        2025         Week 12 Year to date  Local authority    E92000001
#> 2672        2025         Week 12 Year to date  Local authority    E92000001
#> 2673        2025         Week 12 Year to date         Regional    E92000001
#> 2674        2025         Week 12 Year to date         Regional    E92000001
#> 2675        2025         Week 12 Year to date         Regional    E92000001
#> 2676        2025         Week 12 Year to date         Regional    E92000001
#> 2677        2025         Week 12 Year to date  Local authority    E92000001
#> 2678        2025         Week 12 Year to date  Local authority    E92000001
#> 2679        2025         Week 12 Year to date  Local authority    E92000001
#> 2680        2025         Week 12 Year to date  Local authority    E92000001
#> 2681        2025         Week 12 Year to date  Local authority    E92000001
#> 2682        2025         Week 12 Year to date  Local authority    E92000001
#> 2683        2025         Week 12 Year to date  Local authority    E92000001
#> 2684        2025         Week 12 Year to date  Local authority    E92000001
#> 2685        2025         Week 12 Year to date  Local authority    E92000001
#> 2686        2025         Week 12 Year to date  Local authority    E92000001
#> 2687        2025         Week 12 Year to date  Local authority    E92000001
#> 2688        2025         Week 12 Year to date  Local authority    E92000001
#> 2689        2025         Week 12 Year to date  Local authority    E92000001
#> 2690        2025         Week 12 Year to date  Local authority    E92000001
#> 2691        2025         Week 12 Year to date  Local authority    E92000001
#> 2692        2025         Week 12 Year to date  Local authority    E92000001
#> 2693        2025         Week 12 Year to date  Local authority    E92000001
#> 2694        2025         Week 12 Year to date  Local authority    E92000001
#> 2695        2025         Week 12 Year to date  Local authority    E92000001
#> 2696        2025         Week 12 Year to date  Local authority    E92000001
#> 2697        2025         Week 12 Year to date  Local authority    E92000001
#> 2698        2025         Week 12 Year to date  Local authority    E92000001
#> 2699        2025         Week 12 Year to date  Local authority    E92000001
#> 2700        2025         Week 12 Year to date  Local authority    E92000001
#> 2701        2025         Week 12 Year to date  Local authority    E92000001
#> 2702        2025         Week 12 Year to date  Local authority    E92000001
#> 2703        2025         Week 12 Year to date  Local authority    E92000001
#> 2704        2025         Week 12 Year to date  Local authority    E92000001
#> 2705        2025         Week 12 Year to date  Local authority    E92000001
#> 2706        2025         Week 12 Year to date  Local authority    E92000001
#> 2707        2025         Week 12 Year to date  Local authority    E92000001
#> 2708        2025         Week 12 Year to date  Local authority    E92000001
#> 2709        2025         Week 12 Year to date  Local authority    E92000001
#> 2710        2025         Week 12 Year to date  Local authority    E92000001
#> 2711        2025         Week 12 Year to date  Local authority    E92000001
#> 2712        2025         Week 12 Year to date  Local authority    E92000001
#> 2713        2025         Week 12 Year to date  Local authority    E92000001
#> 2714        2025         Week 12 Year to date  Local authority    E92000001
#> 2715        2025         Week 12 Year to date  Local authority    E92000001
#> 2716        2025         Week 12 Year to date  Local authority    E92000001
#> 2717        2025         Week 12 Year to date  Local authority    E92000001
#> 2718        2025         Week 12 Year to date  Local authority    E92000001
#> 2719        2025         Week 12 Year to date         Regional    E92000001
#> 2720        2025         Week 12 Year to date         Regional    E92000001
#> 2721        2025         Week 12 Year to date         Regional    E92000001
#> 2722        2025         Week 12 Year to date         Regional    E92000001
#> 2723        2025         Week 12 Year to date  Local authority    E92000001
#> 2724        2025         Week 12 Year to date  Local authority    E92000001
#> 2725        2025         Week 12 Year to date  Local authority    E92000001
#> 2726        2025         Week 12 Year to date  Local authority    E92000001
#> 2727        2025         Week 12 Year to date  Local authority    E92000001
#> 2728        2025         Week 12 Year to date  Local authority    E92000001
#> 2729        2025         Week 12 Year to date  Local authority    E92000001
#> 2730        2025         Week 12 Year to date  Local authority    E92000001
#> 2731        2025         Week 12 Year to date  Local authority    E92000001
#> 2732        2025         Week 12 Year to date  Local authority    E92000001
#> 2733        2025         Week 12 Year to date  Local authority    E92000001
#> 2734        2025         Week 12 Year to date  Local authority    E92000001
#> 2735        2025         Week 12 Year to date  Local authority    E92000001
#> 2736        2025         Week 12 Year to date  Local authority    E92000001
#> 2737        2025         Week 12 Year to date  Local authority    E92000001
#> 2738        2025         Week 12 Year to date  Local authority    E92000001
#> 2739        2025         Week 12 Year to date  Local authority    E92000001
#> 2740        2025         Week 12 Year to date  Local authority    E92000001
#> 2741        2025         Week 12 Year to date  Local authority    E92000001
#> 2742        2025         Week 12 Year to date  Local authority    E92000001
#> 2743        2025         Week 12 Year to date  Local authority    E92000001
#> 2744        2025         Week 12 Year to date  Local authority    E92000001
#> 2745        2025         Week 12 Year to date  Local authority    E92000001
#> 2746        2025         Week 12 Year to date  Local authority    E92000001
#> 2747        2025         Week 12 Year to date  Local authority    E92000001
#> 2748        2025         Week 12 Year to date  Local authority    E92000001
#> 2749        2025         Week 12 Year to date  Local authority    E92000001
#> 2750        2025         Week 12 Year to date  Local authority    E92000001
#> 2751        2025         Week 12 Year to date  Local authority    E92000001
#> 2752        2025         Week 12 Year to date  Local authority    E92000001
#> 2753        2025         Week 12 Year to date  Local authority    E92000001
#> 2754        2025         Week 12 Year to date  Local authority    E92000001
#> 2755        2025         Week 12 Year to date  Local authority    E92000001
#> 2756        2025         Week 12 Year to date         Regional    E92000001
#> 2757        2025         Week 12 Year to date         Regional    E92000001
#> 2758        2025         Week 12 Year to date         Regional    E92000001
#> 2759        2025         Week 12 Year to date         Regional    E92000001
#> 2760        2025         Week 12 Year to date  Local authority    E92000001
#> 2761        2025         Week 12 Year to date  Local authority    E92000001
#> 2762        2025         Week 12 Year to date  Local authority    E92000001
#> 2763        2025         Week 12 Year to date  Local authority    E92000001
#> 2764        2025         Week 12 Year to date  Local authority    E92000001
#> 2765        2025         Week 12 Year to date  Local authority    E92000001
#> 2766        2025         Week 12 Year to date  Local authority    E92000001
#> 2767        2025         Week 12 Year to date  Local authority    E92000001
#> 2768        2025         Week 12 Year to date  Local authority    E92000001
#> 2769        2025         Week 12 Year to date  Local authority    E92000001
#> 2770        2025         Week 12 Year to date  Local authority    E92000001
#> 2771        2025         Week 12 Year to date  Local authority    E92000001
#> 2772        2025         Week 12 Year to date  Local authority    E92000001
#> 2773        2025         Week 12 Year to date  Local authority    E92000001
#> 2774        2025         Week 12 Year to date  Local authority    E92000001
#> 2775        2025         Week 12 Year to date  Local authority    E92000001
#> 2776        2025         Week 12 Year to date  Local authority    E92000001
#> 2777        2025         Week 12 Year to date  Local authority    E92000001
#> 2778        2025         Week 12 Year to date  Local authority    E92000001
#> 2779        2025         Week 12 Year to date  Local authority    E92000001
#> 2780        2025         Week 12 Year to date  Local authority    E92000001
#> 2781        2025         Week 12 Year to date  Local authority    E92000001
#> 2782        2025         Week 12 Year to date  Local authority    E92000001
#> 2783        2025         Week 12 Year to date  Local authority    E92000001
#> 2784        2025         Week 12 Year to date  Local authority    E92000001
#> 2785        2025         Week 12 Year to date  Local authority    E92000001
#> 2786        2025         Week 12 Year to date  Local authority    E92000001
#> 2787        2025         Week 12 Year to date  Local authority    E92000001
#> 2788        2025         Week 12 Year to date  Local authority    E92000001
#> 2789        2025         Week 12 Year to date  Local authority    E92000001
#> 2790        2025         Week 12 Year to date  Local authority    E92000001
#> 2791        2025         Week 12 Year to date  Local authority    E92000001
#> 2792        2025         Week 12 Year to date  Local authority    E92000001
#> 2793        2025         Week 12 Year to date  Local authority    E92000001
#> 2794        2025         Week 12 Year to date  Local authority    E92000001
#> 2795        2025         Week 12 Year to date  Local authority    E92000001
#> 2796        2025         Week 12 Year to date  Local authority    E92000001
#> 2797        2025         Week 12 Year to date  Local authority    E92000001
#> 2798        2025         Week 12 Year to date  Local authority    E92000001
#> 2799        2025         Week 12 Year to date  Local authority    E92000001
#> 2800        2025         Week 12 Year to date  Local authority    E92000001
#> 2801        2025         Week 12 Year to date  Local authority    E92000001
#> 2802        2025         Week 12 Year to date  Local authority    E92000001
#> 2803        2025         Week 12 Year to date  Local authority    E92000001
#> 2804        2025         Week 12 Year to date  Local authority    E92000001
#> 2805        2025         Week 12 Year to date  Local authority    E92000001
#> 2806        2025         Week 12 Year to date  Local authority    E92000001
#> 2807        2025         Week 12 Year to date  Local authority    E92000001
#> 2808        2025         Week 12 Year to date  Local authority    E92000001
#> 2809        2025         Week 12 Year to date  Local authority    E92000001
#> 2810        2025         Week 12 Year to date  Local authority    E92000001
#> 2811        2025         Week 12 Year to date  Local authority    E92000001
#> 2812        2025         Week 12 Year to date  Local authority    E92000001
#> 2813        2025         Week 12 Year to date  Local authority    E92000001
#> 2814        2025         Week 12 Year to date  Local authority    E92000001
#> 2815        2025         Week 12 Year to date  Local authority    E92000001
#> 2816        2025         Week 12 Year to date  Local authority    E92000001
#> 2817        2025         Week 12 Year to date  Local authority    E92000001
#> 2818        2025         Week 12 Year to date  Local authority    E92000001
#> 2819        2025         Week 12 Year to date  Local authority    E92000001
#> 2820        2025         Week 12 Year to date  Local authority    E92000001
#> 2821        2025         Week 12 Year to date  Local authority    E92000001
#> 2822        2025         Week 12 Year to date  Local authority    E92000001
#> 2823        2025         Week 12 Year to date  Local authority    E92000001
#> 2824        2025         Week 12 Year to date  Local authority    E92000001
#> 2825        2025         Week 12 Year to date  Local authority    E92000001
#> 2826        2025         Week 12 Year to date  Local authority    E92000001
#> 2827        2025         Week 12 Year to date  Local authority    E92000001
#> 2828        2025         Week 12 Year to date  Local authority    E92000001
#> 2829        2025         Week 12 Year to date  Local authority    E92000001
#> 2830        2025         Week 12 Year to date  Local authority    E92000001
#> 2831        2025         Week 12 Year to date  Local authority    E92000001
#> 2832        2025         Week 12 Year to date  Local authority    E92000001
#> 2833        2025         Week 12 Year to date  Local authority    E92000001
#> 2834        2025         Week 12 Year to date  Local authority    E92000001
#> 2835        2025         Week 12 Year to date  Local authority    E92000001
#> 2836        2025         Week 12 Year to date  Local authority    E92000001
#> 2837        2025         Week 12 Year to date  Local authority    E92000001
#> 2838        2025         Week 12 Year to date  Local authority    E92000001
#> 2839        2025         Week 12 Year to date  Local authority    E92000001
#> 2840        2025         Week 12 Year to date  Local authority    E92000001
#> 2841        2025         Week 12 Year to date  Local authority    E92000001
#> 2842        2025         Week 12 Year to date  Local authority    E92000001
#> 2843        2025         Week 12 Year to date  Local authority    E92000001
#> 2844        2025         Week 12 Year to date  Local authority    E92000001
#> 2845        2025         Week 12 Year to date  Local authority    E92000001
#> 2846        2025         Week 12 Year to date  Local authority    E92000001
#> 2847        2025         Week 12 Year to date  Local authority    E92000001
#> 2848        2025         Week 12 Year to date  Local authority    E92000001
#> 2849        2025         Week 12 Year to date  Local authority    E92000001
#> 2850        2025         Week 12 Year to date  Local authority    E92000001
#> 2851        2025         Week 12 Year to date  Local authority    E92000001
#> 2852        2025         Week 12 Year to date  Local authority    E92000001
#> 2853        2025         Week 12 Year to date  Local authority    E92000001
#> 2854        2025         Week 12 Year to date  Local authority    E92000001
#> 2855        2025         Week 12 Year to date  Local authority    E92000001
#> 2856        2025         Week 12 Year to date  Local authority    E92000001
#> 2857        2025         Week 12 Year to date         Regional    E92000001
#> 2858        2025         Week 12 Year to date         Regional    E92000001
#> 2859        2025         Week 12 Year to date         Regional    E92000001
#> 2860        2025         Week 12 Year to date         Regional    E92000001
#> 2861        2025         Week 12 Year to date  Local authority    E92000001
#> 2862        2025         Week 12 Year to date  Local authority    E92000001
#> 2863        2025         Week 12 Year to date  Local authority    E92000001
#> 2864        2025         Week 12 Year to date  Local authority    E92000001
#> 2865        2025         Week 12 Year to date  Local authority    E92000001
#> 2866        2025         Week 12 Year to date  Local authority    E92000001
#> 2867        2025         Week 12 Year to date  Local authority    E92000001
#> 2868        2025         Week 12 Year to date  Local authority    E92000001
#> 2869        2025         Week 12 Year to date  Local authority    E92000001
#> 2870        2025         Week 12 Year to date  Local authority    E92000001
#> 2871        2025         Week 12 Year to date  Local authority    E92000001
#> 2872        2025         Week 12 Year to date  Local authority    E92000001
#> 2873        2025         Week 12 Year to date  Local authority    E92000001
#> 2874        2025         Week 12 Year to date  Local authority    E92000001
#> 2875        2025         Week 12 Year to date  Local authority    E92000001
#> 2876        2025         Week 12 Year to date  Local authority    E92000001
#> 2877        2025         Week 12 Year to date  Local authority    E92000001
#> 2878        2025         Week 12 Year to date  Local authority    E92000001
#> 2879        2025         Week 12 Year to date  Local authority    E92000001
#> 2880        2025         Week 12 Year to date  Local authority    E92000001
#> 2881        2025         Week 12 Year to date  Local authority    E92000001
#> 2882        2025         Week 12 Year to date  Local authority    E92000001
#> 2883        2025         Week 12 Year to date  Local authority    E92000001
#> 2884        2025         Week 12 Year to date  Local authority    E92000001
#> 2885        2025         Week 12 Year to date  Local authority    E92000001
#> 2886        2025         Week 12 Year to date  Local authority    E92000001
#> 2887        2025         Week 12 Year to date  Local authority    E92000001
#> 2888        2025         Week 12 Year to date  Local authority    E92000001
#> 2889        2025         Week 12 Year to date  Local authority    E92000001
#> 2890        2025         Week 12 Year to date  Local authority    E92000001
#> 2891        2025         Week 12 Year to date  Local authority    E92000001
#> 2892        2025         Week 12 Year to date  Local authority    E92000001
#> 2893        2025         Week 12 Year to date  Local authority    E92000001
#> 2894        2025         Week 12 Year to date  Local authority    E92000001
#> 2895        2025         Week 12 Year to date  Local authority    E92000001
#> 2896        2025         Week 12 Year to date  Local authority    E92000001
#> 2897        2025         Week 12 Year to date  Local authority    E92000001
#> 2898        2025         Week 12 Year to date  Local authority    E92000001
#> 2899        2025         Week 12 Year to date  Local authority    E92000001
#> 2900        2025         Week 12 Year to date  Local authority    E92000001
#> 2901        2025         Week 12 Year to date  Local authority    E92000001
#> 2902        2025         Week 12 Year to date  Local authority    E92000001
#> 2903        2025         Week 12 Year to date  Local authority    E92000001
#> 2904        2025         Week 12 Year to date  Local authority    E92000001
#> 2905        2025         Week 12 Year to date  Local authority    E92000001
#> 2906        2025         Week 12 Year to date  Local authority    E92000001
#> 2907        2025         Week 12 Year to date  Local authority    E92000001
#> 2908        2025         Week 12 Year to date  Local authority    E92000001
#> 2909        2025         Week 12 Year to date  Local authority    E92000001
#> 2910        2025         Week 12 Year to date  Local authority    E92000001
#> 2911        2025         Week 12 Year to date  Local authority    E92000001
#> 2912        2025         Week 12 Year to date  Local authority    E92000001
#> 2913        2025         Week 12 Year to date  Local authority    E92000001
#> 2914        2025         Week 12 Year to date  Local authority    E92000001
#> 2915        2025         Week 12 Year to date  Local authority    E92000001
#> 2916        2025         Week 12 Year to date  Local authority    E92000001
#> 2917        2025         Week 12 Year to date  Local authority    E92000001
#> 2918        2025         Week 12 Year to date         Regional    E92000001
#> 2919        2025         Week 12 Year to date         Regional    E92000001
#> 2920        2025         Week 12 Year to date         Regional    E92000001
#> 2921        2025         Week 12 Year to date         Regional    E92000001
#> 2922        2025         Week 12 Year to date  Local authority    E92000001
#> 2923        2025         Week 12 Year to date  Local authority    E92000001
#> 2924        2025         Week 12 Year to date  Local authority    E92000001
#> 2925        2025         Week 12 Year to date  Local authority    E92000001
#> 2926        2025         Week 12 Year to date  Local authority    E92000001
#> 2927        2025         Week 12 Year to date  Local authority    E92000001
#> 2928        2025         Week 12 Year to date  Local authority    E92000001
#> 2929        2025         Week 12 Year to date  Local authority    E92000001
#> 2930        2025         Week 12 Year to date  Local authority    E92000001
#> 2931        2025         Week 12 Year to date  Local authority    E92000001
#> 2932        2025         Week 12 Year to date  Local authority    E92000001
#> 2933        2025         Week 12 Year to date  Local authority    E92000001
#> 2934        2025         Week 12 Year to date  Local authority    E92000001
#> 2935        2025         Week 12 Year to date  Local authority    E92000001
#> 2936        2025         Week 12 Year to date  Local authority    E92000001
#> 2937        2025         Week 12 Year to date  Local authority    E92000001
#> 2938        2025         Week 12 Year to date  Local authority    E92000001
#> 2939        2025         Week 12 Year to date  Local authority    E92000001
#> 2940        2025         Week 12 Year to date  Local authority    E92000001
#> 2941        2025         Week 12 Year to date  Local authority    E92000001
#> 2942        2025         Week 12 Year to date  Local authority    E92000001
#> 2943        2025         Week 12 Year to date  Local authority    E92000001
#> 2944        2025         Week 12 Year to date  Local authority    E92000001
#> 2945        2025         Week 12 Year to date  Local authority    E92000001
#> 2946        2025         Week 12 Year to date  Local authority    E92000001
#> 2947        2025         Week 12 Year to date  Local authority    E92000001
#> 2948        2025         Week 12 Year to date  Local authority    E92000001
#> 2949        2025         Week 12 Year to date  Local authority    E92000001
#> 2950        2025         Week 12 Year to date  Local authority    E92000001
#> 2951        2025         Week 12 Year to date  Local authority    E92000001
#> 2952        2025         Week 12 Year to date  Local authority    E92000001
#> 2953        2025         Week 12 Year to date  Local authority    E92000001
#> 2954        2025         Week 12 Year to date  Local authority    E92000001
#> 2955        2025         Week 12 Year to date  Local authority    E92000001
#> 2956        2025         Week 12 Year to date  Local authority    E92000001
#> 2957        2025         Week 12 Year to date  Local authority    E92000001
#> 2958        2025         Week 12 Year to date  Local authority    E92000001
#> 2959        2025         Week 12 Year to date  Local authority    E92000001
#> 2960        2025         Week 12 Year to date  Local authority    E92000001
#> 2961        2025         Week 12 Year to date  Local authority    E92000001
#> 2962        2025         Week 12 Year to date  Local authority    E92000001
#> 2963        2025         Week 12 Year to date  Local authority    E92000001
#> 2964        2025         Week 12 Year to date  Local authority    E92000001
#> 2965        2025         Week 10 Year to date         National    E92000001
#> 2966        2025         Week 10 Year to date         National    E92000001
#> 2967        2025         Week 10 Year to date         National    E92000001
#> 2968        2025         Week 10 Year to date         National    E92000001
#> 2969        2025         Week 10 Year to date         Regional    E92000001
#> 2970        2025         Week 10 Year to date         Regional    E92000001
#> 2971        2025         Week 10 Year to date         Regional    E92000001
#> 2972        2025         Week 10 Year to date         Regional    E92000001
#> 2973        2025         Week 10 Year to date  Local authority    E92000001
#> 2974        2025         Week 10 Year to date  Local authority    E92000001
#> 2975        2025         Week 10 Year to date  Local authority    E92000001
#> 2976        2025         Week 10 Year to date  Local authority    E92000001
#> 2977        2025         Week 10 Year to date  Local authority    E92000001
#> 2978        2025         Week 10 Year to date  Local authority    E92000001
#> 2979        2025         Week 10 Year to date  Local authority    E92000001
#> 2980        2025         Week 10 Year to date  Local authority    E92000001
#> 2981        2025         Week 10 Year to date  Local authority    E92000001
#> 2982        2025         Week 10 Year to date  Local authority    E92000001
#> 2983        2025         Week 10 Year to date  Local authority    E92000001
#> 2984        2025         Week 10 Year to date  Local authority    E92000001
#> 2985        2025         Week 10 Year to date  Local authority    E92000001
#> 2986        2025         Week 10 Year to date  Local authority    E92000001
#> 2987        2025         Week 10 Year to date  Local authority    E92000001
#> 2988        2025         Week 10 Year to date  Local authority    E92000001
#> 2989        2025         Week 10 Year to date  Local authority    E92000001
#> 2990        2025         Week 10 Year to date  Local authority    E92000001
#> 2991        2025         Week 10 Year to date  Local authority    E92000001
#> 2992        2025         Week 10 Year to date  Local authority    E92000001
#> 2993        2025         Week 10 Year to date  Local authority    E92000001
#> 2994        2025         Week 10 Year to date  Local authority    E92000001
#> 2995        2025         Week 10 Year to date  Local authority    E92000001
#> 2996        2025         Week 10 Year to date  Local authority    E92000001
#> 2997        2025         Week 10 Year to date  Local authority    E92000001
#> 2998        2025         Week 10 Year to date  Local authority    E92000001
#> 2999        2025         Week 10 Year to date  Local authority    E92000001
#> 3000        2025         Week 10 Year to date  Local authority    E92000001
#> 3001        2025         Week 10 Year to date  Local authority    E92000001
#> 3002        2025         Week 10 Year to date  Local authority    E92000001
#> 3003        2025         Week 10 Year to date  Local authority    E92000001
#> 3004        2025         Week 10 Year to date  Local authority    E92000001
#> 3005        2025         Week 10 Year to date  Local authority    E92000001
#> 3006        2025         Week 10 Year to date  Local authority    E92000001
#> 3007        2025         Week 10 Year to date  Local authority    E92000001
#> 3008        2025         Week 10 Year to date  Local authority    E92000001
#> 3009        2025         Week 10 Year to date         Regional    E92000001
#> 3010        2025         Week 10 Year to date         Regional    E92000001
#> 3011        2025         Week 10 Year to date         Regional    E92000001
#> 3012        2025         Week 10 Year to date         Regional    E92000001
#> 3013        2025         Week 10 Year to date  Local authority    E92000001
#> 3014        2025         Week 10 Year to date  Local authority    E92000001
#> 3015        2025         Week 10 Year to date  Local authority    E92000001
#> 3016        2025         Week 10 Year to date  Local authority    E92000001
#> 3017        2025         Week 10 Year to date  Local authority    E92000001
#> 3018        2025         Week 10 Year to date  Local authority    E92000001
#> 3019        2025         Week 10 Year to date  Local authority    E92000001
#> 3020        2025         Week 10 Year to date  Local authority    E92000001
#> 3021        2025         Week 10 Year to date  Local authority    E92000001
#> 3022        2025         Week 10 Year to date  Local authority    E92000001
#> 3023        2025         Week 10 Year to date  Local authority    E92000001
#> 3024        2025         Week 10 Year to date  Local authority    E92000001
#> 3025        2025         Week 10 Year to date  Local authority    E92000001
#> 3026        2025         Week 10 Year to date  Local authority    E92000001
#> 3027        2025         Week 10 Year to date  Local authority    E92000001
#> 3028        2025         Week 10 Year to date  Local authority    E92000001
#> 3029        2025         Week 10 Year to date  Local authority    E92000001
#> 3030        2025         Week 10 Year to date  Local authority    E92000001
#> 3031        2025         Week 10 Year to date  Local authority    E92000001
#> 3032        2025         Week 10 Year to date  Local authority    E92000001
#> 3033        2025         Week 10 Year to date  Local authority    E92000001
#> 3034        2025         Week 10 Year to date  Local authority    E92000001
#> 3035        2025         Week 10 Year to date  Local authority    E92000001
#> 3036        2025         Week 10 Year to date  Local authority    E92000001
#> 3037        2025         Week 10 Year to date  Local authority    E92000001
#> 3038        2025         Week 10 Year to date  Local authority    E92000001
#> 3039        2025         Week 10 Year to date  Local authority    E92000001
#> 3040        2025         Week 10 Year to date  Local authority    E92000001
#> 3041        2025         Week 10 Year to date  Local authority    E92000001
#> 3042        2025         Week 10 Year to date  Local authority    E92000001
#> 3043        2025         Week 10 Year to date  Local authority    E92000001
#> 3044        2025         Week 10 Year to date  Local authority    E92000001
#> 3045        2025         Week 10 Year to date  Local authority    E92000001
#> 3046        2025         Week 10 Year to date  Local authority    E92000001
#> 3047        2025         Week 10 Year to date  Local authority    E92000001
#> 3048        2025         Week 10 Year to date  Local authority    E92000001
#> 3049        2025         Week 10 Year to date  Local authority    E92000001
#> 3050        2025         Week 10 Year to date  Local authority    E92000001
#> 3051        2025         Week 10 Year to date  Local authority    E92000001
#> 3052        2025         Week 10 Year to date  Local authority    E92000001
#> 3053        2025         Week 10 Year to date  Local authority    E92000001
#> 3054        2025         Week 10 Year to date  Local authority    E92000001
#> 3055        2025         Week 10 Year to date  Local authority    E92000001
#> 3056        2025         Week 10 Year to date  Local authority    E92000001
#> 3057        2025         Week 10 Year to date  Local authority    E92000001
#> 3058        2025         Week 10 Year to date  Local authority    E92000001
#> 3059        2025         Week 10 Year to date  Local authority    E92000001
#> 3060        2025         Week 10 Year to date  Local authority    E92000001
#> 3061        2025         Week 10 Year to date  Local authority    E92000001
#> 3062        2025         Week 10 Year to date  Local authority    E92000001
#> 3063        2025         Week 10 Year to date  Local authority    E92000001
#> 3064        2025         Week 10 Year to date  Local authority    E92000001
#> 3065        2025         Week 10 Year to date  Local authority    E92000001
#> 3066        2025         Week 10 Year to date  Local authority    E92000001
#> 3067        2025         Week 10 Year to date  Local authority    E92000001
#> 3068        2025         Week 10 Year to date  Local authority    E92000001
#> 3069        2025         Week 10 Year to date  Local authority    E92000001
#> 3070        2025         Week 10 Year to date  Local authority    E92000001
#> 3071        2025         Week 10 Year to date  Local authority    E92000001
#> 3072        2025         Week 10 Year to date  Local authority    E92000001
#> 3073        2025         Week 10 Year to date  Local authority    E92000001
#> 3074        2025         Week 10 Year to date  Local authority    E92000001
#> 3075        2025         Week 10 Year to date  Local authority    E92000001
#> 3076        2025         Week 10 Year to date  Local authority    E92000001
#> 3077        2025         Week 10 Year to date  Local authority    E92000001
#> 3078        2025         Week 10 Year to date  Local authority    E92000001
#> 3079        2025         Week 10 Year to date  Local authority    E92000001
#> 3080        2025         Week 10 Year to date  Local authority    E92000001
#> 3081        2025         Week 10 Year to date  Local authority    E92000001
#> 3082        2025         Week 10 Year to date  Local authority    E92000001
#> 3083        2025         Week 10 Year to date  Local authority    E92000001
#> 3084        2025         Week 10 Year to date  Local authority    E92000001
#> 3085        2025         Week 10 Year to date         Regional    E92000001
#> 3086        2025         Week 10 Year to date         Regional    E92000001
#> 3087        2025         Week 10 Year to date         Regional    E92000001
#> 3088        2025         Week 10 Year to date         Regional    E92000001
#> 3089        2025         Week 10 Year to date  Local authority    E92000001
#> 3090        2025         Week 10 Year to date  Local authority    E92000001
#> 3091        2025         Week 10 Year to date  Local authority    E92000001
#> 3092        2025         Week 10 Year to date  Local authority    E92000001
#> 3093        2025         Week 10 Year to date  Local authority    E92000001
#> 3094        2025         Week 10 Year to date  Local authority    E92000001
#> 3095        2025         Week 10 Year to date  Local authority    E92000001
#> 3096        2025         Week 10 Year to date  Local authority    E92000001
#> 3097        2025         Week 10 Year to date  Local authority    E92000001
#> 3098        2025         Week 10 Year to date  Local authority    E92000001
#> 3099        2025         Week 10 Year to date  Local authority    E92000001
#> 3100        2025         Week 10 Year to date  Local authority    E92000001
#> 3101        2025         Week 10 Year to date  Local authority    E92000001
#> 3102        2025         Week 10 Year to date  Local authority    E92000001
#> 3103        2025         Week 10 Year to date  Local authority    E92000001
#> 3104        2025         Week 10 Year to date  Local authority    E92000001
#> 3105        2025         Week 10 Year to date  Local authority    E92000001
#> 3106        2025         Week 10 Year to date  Local authority    E92000001
#> 3107        2025         Week 10 Year to date  Local authority    E92000001
#> 3108        2025         Week 10 Year to date  Local authority    E92000001
#> 3109        2025         Week 10 Year to date  Local authority    E92000001
#> 3110        2025         Week 10 Year to date  Local authority    E92000001
#> 3111        2025         Week 10 Year to date  Local authority    E92000001
#> 3112        2025         Week 10 Year to date  Local authority    E92000001
#> 3113        2025         Week 10 Year to date  Local authority    E92000001
#> 3114        2025         Week 10 Year to date  Local authority    E92000001
#> 3115        2025         Week 10 Year to date  Local authority    E92000001
#> 3116        2025         Week 10 Year to date  Local authority    E92000001
#> 3117        2025         Week 10 Year to date  Local authority    E92000001
#> 3118        2025         Week 10 Year to date  Local authority    E92000001
#> 3119        2025         Week 10 Year to date  Local authority    E92000001
#> 3120        2025         Week 10 Year to date  Local authority    E92000001
#> 3121        2025         Week 10 Year to date  Local authority    E92000001
#> 3122        2025         Week 10 Year to date  Local authority    E92000001
#> 3123        2025         Week 10 Year to date  Local authority    E92000001
#> 3124        2025         Week 10 Year to date  Local authority    E92000001
#> 3125        2025         Week 10 Year to date  Local authority    E92000001
#> 3126        2025         Week 10 Year to date  Local authority    E92000001
#> 3127        2025         Week 10 Year to date  Local authority    E92000001
#> 3128        2025         Week 10 Year to date  Local authority    E92000001
#> 3129        2025         Week 10 Year to date  Local authority    E92000001
#> 3130        2025         Week 10 Year to date  Local authority    E92000001
#> 3131        2025         Week 10 Year to date  Local authority    E92000001
#> 3132        2025         Week 10 Year to date  Local authority    E92000001
#> 3133        2025         Week 10 Year to date  Local authority    E92000001
#> 3134        2025         Week 10 Year to date         Regional    E92000001
#> 3135        2025         Week 10 Year to date         Regional    E92000001
#> 3136        2025         Week 10 Year to date         Regional    E92000001
#> 3137        2025         Week 10 Year to date         Regional    E92000001
#> 3138        2025         Week 10 Year to date  Local authority    E92000001
#> 3139        2025         Week 10 Year to date  Local authority    E92000001
#> 3140        2025         Week 10 Year to date  Local authority    E92000001
#> 3141        2025         Week 10 Year to date  Local authority    E92000001
#> 3142        2025         Week 10 Year to date  Local authority    E92000001
#> 3143        2025         Week 10 Year to date  Local authority    E92000001
#> 3144        2025         Week 10 Year to date  Local authority    E92000001
#> 3145        2025         Week 10 Year to date  Local authority    E92000001
#> 3146        2025         Week 10 Year to date  Local authority    E92000001
#> 3147        2025         Week 10 Year to date  Local authority    E92000001
#> 3148        2025         Week 10 Year to date  Local authority    E92000001
#> 3149        2025         Week 10 Year to date  Local authority    E92000001
#> 3150        2025         Week 10 Year to date  Local authority    E92000001
#> 3151        2025         Week 10 Year to date  Local authority    E92000001
#> 3152        2025         Week 10 Year to date  Local authority    E92000001
#> 3153        2025         Week 10 Year to date  Local authority    E92000001
#> 3154        2025         Week 10 Year to date  Local authority    E92000001
#> 3155        2025         Week 10 Year to date  Local authority    E92000001
#> 3156        2025         Week 10 Year to date  Local authority    E92000001
#> 3157        2025         Week 10 Year to date  Local authority    E92000001
#> 3158        2025         Week 10 Year to date  Local authority    E92000001
#> 3159        2025         Week 10 Year to date  Local authority    E92000001
#> 3160        2025         Week 10 Year to date  Local authority    E92000001
#> 3161        2025         Week 10 Year to date  Local authority    E92000001
#> 3162        2025         Week 10 Year to date  Local authority    E92000001
#> 3163        2025         Week 10 Year to date  Local authority    E92000001
#> 3164        2025         Week 10 Year to date  Local authority    E92000001
#> 3165        2025         Week 10 Year to date  Local authority    E92000001
#> 3166        2025         Week 10 Year to date  Local authority    E92000001
#> 3167        2025         Week 10 Year to date         Regional    E92000001
#> 3168        2025         Week 10 Year to date         Regional    E92000001
#> 3169        2025         Week 10 Year to date         Regional    E92000001
#> 3170        2025         Week 10 Year to date         Regional    E92000001
#> 3171        2025         Week 10 Year to date  Local authority    E92000001
#> 3172        2025         Week 10 Year to date  Local authority    E92000001
#> 3173        2025         Week 10 Year to date  Local authority    E92000001
#> 3174        2025         Week 10 Year to date  Local authority    E92000001
#> 3175        2025         Week 10 Year to date  Local authority    E92000001
#> 3176        2025         Week 10 Year to date  Local authority    E92000001
#> 3177        2025         Week 10 Year to date  Local authority    E92000001
#> 3178        2025         Week 10 Year to date  Local authority    E92000001
#> 3179        2025         Week 10 Year to date  Local authority    E92000001
#> 3180        2025         Week 10 Year to date  Local authority    E92000001
#> 3181        2025         Week 10 Year to date  Local authority    E92000001
#> 3182        2025         Week 10 Year to date  Local authority    E92000001
#> 3183        2025         Week 10 Year to date  Local authority    E92000001
#> 3184        2025         Week 10 Year to date  Local authority    E92000001
#> 3185        2025         Week 10 Year to date  Local authority    E92000001
#> 3186        2025         Week 10 Year to date  Local authority    E92000001
#> 3187        2025         Week 10 Year to date  Local authority    E92000001
#> 3188        2025         Week 10 Year to date  Local authority    E92000001
#> 3189        2025         Week 10 Year to date  Local authority    E92000001
#> 3190        2025         Week 10 Year to date  Local authority    E92000001
#> 3191        2025         Week 10 Year to date  Local authority    E92000001
#> 3192        2025         Week 10 Year to date  Local authority    E92000001
#> 3193        2025         Week 10 Year to date  Local authority    E92000001
#> 3194        2025         Week 10 Year to date  Local authority    E92000001
#> 3195        2025         Week 10 Year to date  Local authority    E92000001
#> 3196        2025         Week 10 Year to date  Local authority    E92000001
#> 3197        2025         Week 10 Year to date  Local authority    E92000001
#> 3198        2025         Week 10 Year to date  Local authority    E92000001
#> 3199        2025         Week 10 Year to date  Local authority    E92000001
#> 3200        2025         Week 10 Year to date  Local authority    E92000001
#> 3201        2025         Week 10 Year to date  Local authority    E92000001
#> 3202        2025         Week 10 Year to date  Local authority    E92000001
#> 3203        2025         Week 10 Year to date  Local authority    E92000001
#> 3204        2025         Week 10 Year to date  Local authority    E92000001
#> 3205        2025         Week 10 Year to date  Local authority    E92000001
#> 3206        2025         Week 10 Year to date  Local authority    E92000001
#> 3207        2025         Week 10 Year to date  Local authority    E92000001
#> 3208        2025         Week 10 Year to date  Local authority    E92000001
#> 3209        2025         Week 10 Year to date  Local authority    E92000001
#> 3210        2025         Week 10 Year to date  Local authority    E92000001
#> 3211        2025         Week 10 Year to date  Local authority    E92000001
#> 3212        2025         Week 10 Year to date  Local authority    E92000001
#> 3213        2025         Week 10 Year to date         Regional    E92000001
#> 3214        2025         Week 10 Year to date         Regional    E92000001
#> 3215        2025         Week 10 Year to date         Regional    E92000001
#> 3216        2025         Week 10 Year to date         Regional    E92000001
#> 3217        2025         Week 10 Year to date  Local authority    E92000001
#> 3218        2025         Week 10 Year to date  Local authority    E92000001
#> 3219        2025         Week 10 Year to date  Local authority    E92000001
#> 3220        2025         Week 10 Year to date  Local authority    E92000001
#> 3221        2025         Week 10 Year to date  Local authority    E92000001
#> 3222        2025         Week 10 Year to date  Local authority    E92000001
#> 3223        2025         Week 10 Year to date  Local authority    E92000001
#> 3224        2025         Week 10 Year to date  Local authority    E92000001
#> 3225        2025         Week 10 Year to date  Local authority    E92000001
#> 3226        2025         Week 10 Year to date  Local authority    E92000001
#> 3227        2025         Week 10 Year to date  Local authority    E92000001
#> 3228        2025         Week 10 Year to date  Local authority    E92000001
#> 3229        2025         Week 10 Year to date  Local authority    E92000001
#> 3230        2025         Week 10 Year to date  Local authority    E92000001
#> 3231        2025         Week 10 Year to date  Local authority    E92000001
#> 3232        2025         Week 10 Year to date  Local authority    E92000001
#> 3233        2025         Week 10 Year to date  Local authority    E92000001
#> 3234        2025         Week 10 Year to date  Local authority    E92000001
#> 3235        2025         Week 10 Year to date  Local authority    E92000001
#> 3236        2025         Week 10 Year to date  Local authority    E92000001
#> 3237        2025         Week 10 Year to date  Local authority    E92000001
#> 3238        2025         Week 10 Year to date  Local authority    E92000001
#> 3239        2025         Week 10 Year to date  Local authority    E92000001
#> 3240        2025         Week 10 Year to date  Local authority    E92000001
#> 3241        2025         Week 10 Year to date  Local authority    E92000001
#> 3242        2025         Week 10 Year to date  Local authority    E92000001
#> 3243        2025         Week 10 Year to date  Local authority    E92000001
#> 3244        2025         Week 10 Year to date  Local authority    E92000001
#> 3245        2025         Week 10 Year to date  Local authority    E92000001
#> 3246        2025         Week 10 Year to date  Local authority    E92000001
#> 3247        2025         Week 10 Year to date  Local authority    E92000001
#> 3248        2025         Week 10 Year to date  Local authority    E92000001
#> 3249        2025         Week 10 Year to date  Local authority    E92000001
#> 3250        2025         Week 10 Year to date         Regional    E92000001
#> 3251        2025         Week 10 Year to date         Regional    E92000001
#> 3252        2025         Week 10 Year to date         Regional    E92000001
#> 3253        2025         Week 10 Year to date         Regional    E92000001
#> 3254        2025         Week 10 Year to date  Local authority    E92000001
#> 3255        2025         Week 10 Year to date  Local authority    E92000001
#> 3256        2025         Week 10 Year to date  Local authority    E92000001
#> 3257        2025         Week 10 Year to date  Local authority    E92000001
#> 3258        2025         Week 10 Year to date  Local authority    E92000001
#> 3259        2025         Week 10 Year to date  Local authority    E92000001
#> 3260        2025         Week 10 Year to date  Local authority    E92000001
#> 3261        2025         Week 10 Year to date  Local authority    E92000001
#> 3262        2025         Week 10 Year to date  Local authority    E92000001
#> 3263        2025         Week 10 Year to date  Local authority    E92000001
#> 3264        2025         Week 10 Year to date  Local authority    E92000001
#> 3265        2025         Week 10 Year to date  Local authority    E92000001
#> 3266        2025         Week 10 Year to date  Local authority    E92000001
#> 3267        2025         Week 10 Year to date  Local authority    E92000001
#> 3268        2025         Week 10 Year to date  Local authority    E92000001
#> 3269        2025         Week 10 Year to date  Local authority    E92000001
#> 3270        2025         Week 10 Year to date  Local authority    E92000001
#> 3271        2025         Week 10 Year to date  Local authority    E92000001
#> 3272        2025         Week 10 Year to date  Local authority    E92000001
#> 3273        2025         Week 10 Year to date  Local authority    E92000001
#> 3274        2025         Week 10 Year to date  Local authority    E92000001
#> 3275        2025         Week 10 Year to date  Local authority    E92000001
#> 3276        2025         Week 10 Year to date  Local authority    E92000001
#> 3277        2025         Week 10 Year to date  Local authority    E92000001
#> 3278        2025         Week 10 Year to date  Local authority    E92000001
#> 3279        2025         Week 10 Year to date  Local authority    E92000001
#> 3280        2025         Week 10 Year to date  Local authority    E92000001
#> 3281        2025         Week 10 Year to date  Local authority    E92000001
#> 3282        2025         Week 10 Year to date  Local authority    E92000001
#> 3283        2025         Week 10 Year to date  Local authority    E92000001
#> 3284        2025         Week 10 Year to date  Local authority    E92000001
#> 3285        2025         Week 10 Year to date  Local authority    E92000001
#> 3286        2025         Week 10 Year to date  Local authority    E92000001
#> 3287        2025         Week 10 Year to date  Local authority    E92000001
#> 3288        2025         Week 10 Year to date  Local authority    E92000001
#> 3289        2025         Week 10 Year to date  Local authority    E92000001
#> 3290        2025         Week 10 Year to date  Local authority    E92000001
#> 3291        2025         Week 10 Year to date  Local authority    E92000001
#> 3292        2025         Week 10 Year to date  Local authority    E92000001
#> 3293        2025         Week 10 Year to date  Local authority    E92000001
#> 3294        2025         Week 10 Year to date  Local authority    E92000001
#> 3295        2025         Week 10 Year to date  Local authority    E92000001
#> 3296        2025         Week 10 Year to date  Local authority    E92000001
#> 3297        2025         Week 10 Year to date  Local authority    E92000001
#> 3298        2025         Week 10 Year to date  Local authority    E92000001
#> 3299        2025         Week 10 Year to date  Local authority    E92000001
#> 3300        2025         Week 10 Year to date  Local authority    E92000001
#> 3301        2025         Week 10 Year to date  Local authority    E92000001
#> 3302        2025         Week 10 Year to date  Local authority    E92000001
#> 3303        2025         Week 10 Year to date  Local authority    E92000001
#> 3304        2025         Week 10 Year to date  Local authority    E92000001
#> 3305        2025         Week 10 Year to date  Local authority    E92000001
#> 3306        2025         Week 10 Year to date  Local authority    E92000001
#> 3307        2025         Week 10 Year to date  Local authority    E92000001
#> 3308        2025         Week 10 Year to date  Local authority    E92000001
#> 3309        2025         Week 10 Year to date  Local authority    E92000001
#> 3310        2025         Week 10 Year to date  Local authority    E92000001
#> 3311        2025         Week 10 Year to date  Local authority    E92000001
#> 3312        2025         Week 10 Year to date  Local authority    E92000001
#> 3313        2025         Week 10 Year to date  Local authority    E92000001
#> 3314        2025         Week 10 Year to date  Local authority    E92000001
#> 3315        2025         Week 10 Year to date  Local authority    E92000001
#> 3316        2025         Week 10 Year to date  Local authority    E92000001
#> 3317        2025         Week 10 Year to date  Local authority    E92000001
#> 3318        2025         Week 10 Year to date  Local authority    E92000001
#> 3319        2025         Week 10 Year to date  Local authority    E92000001
#> 3320        2025         Week 10 Year to date  Local authority    E92000001
#> 3321        2025         Week 10 Year to date  Local authority    E92000001
#> 3322        2025         Week 10 Year to date  Local authority    E92000001
#> 3323        2025         Week 10 Year to date  Local authority    E92000001
#> 3324        2025         Week 10 Year to date  Local authority    E92000001
#> 3325        2025         Week 10 Year to date  Local authority    E92000001
#> 3326        2025         Week 10 Year to date  Local authority    E92000001
#> 3327        2025         Week 10 Year to date  Local authority    E92000001
#> 3328        2025         Week 10 Year to date  Local authority    E92000001
#> 3329        2025         Week 10 Year to date  Local authority    E92000001
#> 3330        2025         Week 10 Year to date  Local authority    E92000001
#> 3331        2025         Week 10 Year to date  Local authority    E92000001
#> 3332        2025         Week 10 Year to date  Local authority    E92000001
#> 3333        2025         Week 10 Year to date  Local authority    E92000001
#> 3334        2025         Week 10 Year to date  Local authority    E92000001
#> 3335        2025         Week 10 Year to date  Local authority    E92000001
#> 3336        2025         Week 10 Year to date  Local authority    E92000001
#> 3337        2025         Week 10 Year to date  Local authority    E92000001
#> 3338        2025         Week 10 Year to date  Local authority    E92000001
#> 3339        2025         Week 10 Year to date  Local authority    E92000001
#> 3340        2025         Week 10 Year to date  Local authority    E92000001
#> 3341        2025         Week 10 Year to date  Local authority    E92000001
#> 3342        2025         Week 10 Year to date  Local authority    E92000001
#> 3343        2025         Week 10 Year to date  Local authority    E92000001
#> 3344        2025         Week 10 Year to date  Local authority    E92000001
#> 3345        2025         Week 10 Year to date  Local authority    E92000001
#> 3346        2025         Week 10 Year to date  Local authority    E92000001
#> 3347        2025         Week 10 Year to date  Local authority    E92000001
#> 3348        2025         Week 10 Year to date  Local authority    E92000001
#> 3349        2025         Week 10 Year to date  Local authority    E92000001
#> 3350        2025         Week 10 Year to date  Local authority    E92000001
#> 3351        2025         Week 10 Year to date         Regional    E92000001
#> 3352        2025         Week 10 Year to date         Regional    E92000001
#> 3353        2025         Week 10 Year to date         Regional    E92000001
#> 3354        2025         Week 10 Year to date         Regional    E92000001
#> 3355        2025         Week 10 Year to date  Local authority    E92000001
#> 3356        2025         Week 10 Year to date  Local authority    E92000001
#> 3357        2025         Week 10 Year to date  Local authority    E92000001
#> 3358        2025         Week 10 Year to date  Local authority    E92000001
#> 3359        2025         Week 10 Year to date  Local authority    E92000001
#> 3360        2025         Week 10 Year to date  Local authority    E92000001
#> 3361        2025         Week 10 Year to date  Local authority    E92000001
#> 3362        2025         Week 10 Year to date  Local authority    E92000001
#> 3363        2025         Week 10 Year to date  Local authority    E92000001
#> 3364        2025         Week 10 Year to date  Local authority    E92000001
#> 3365        2025         Week 10 Year to date  Local authority    E92000001
#> 3366        2025         Week 10 Year to date  Local authority    E92000001
#> 3367        2025         Week 10 Year to date  Local authority    E92000001
#> 3368        2025         Week 10 Year to date  Local authority    E92000001
#> 3369        2025         Week 10 Year to date  Local authority    E92000001
#> 3370        2025         Week 10 Year to date  Local authority    E92000001
#> 3371        2025         Week 10 Year to date  Local authority    E92000001
#> 3372        2025         Week 10 Year to date  Local authority    E92000001
#> 3373        2025         Week 10 Year to date  Local authority    E92000001
#> 3374        2025         Week 10 Year to date  Local authority    E92000001
#> 3375        2025         Week 10 Year to date  Local authority    E92000001
#> 3376        2025         Week 10 Year to date  Local authority    E92000001
#> 3377        2025         Week 10 Year to date  Local authority    E92000001
#> 3378        2025         Week 10 Year to date  Local authority    E92000001
#> 3379        2025         Week 10 Year to date  Local authority    E92000001
#> 3380        2025         Week 10 Year to date  Local authority    E92000001
#> 3381        2025         Week 10 Year to date  Local authority    E92000001
#> 3382        2025         Week 10 Year to date  Local authority    E92000001
#> 3383        2025         Week 10 Year to date  Local authority    E92000001
#> 3384        2025         Week 10 Year to date  Local authority    E92000001
#> 3385        2025         Week 10 Year to date  Local authority    E92000001
#> 3386        2025         Week 10 Year to date  Local authority    E92000001
#> 3387        2025         Week 10 Year to date  Local authority    E92000001
#> 3388        2025         Week 10 Year to date  Local authority    E92000001
#> 3389        2025         Week 10 Year to date  Local authority    E92000001
#> 3390        2025         Week 10 Year to date  Local authority    E92000001
#> 3391        2025         Week 10 Year to date  Local authority    E92000001
#> 3392        2025         Week 10 Year to date  Local authority    E92000001
#> 3393        2025         Week 10 Year to date  Local authority    E92000001
#> 3394        2025         Week 10 Year to date  Local authority    E92000001
#> 3395        2025         Week 10 Year to date  Local authority    E92000001
#> 3396        2025         Week 10 Year to date  Local authority    E92000001
#> 3397        2025         Week 10 Year to date  Local authority    E92000001
#> 3398        2025         Week 10 Year to date  Local authority    E92000001
#> 3399        2025         Week 10 Year to date  Local authority    E92000001
#> 3400        2025         Week 10 Year to date  Local authority    E92000001
#> 3401        2025         Week 10 Year to date  Local authority    E92000001
#> 3402        2025         Week 10 Year to date  Local authority    E92000001
#> 3403        2025         Week 10 Year to date  Local authority    E92000001
#> 3404        2025         Week 10 Year to date  Local authority    E92000001
#> 3405        2025         Week 10 Year to date  Local authority    E92000001
#> 3406        2025         Week 10 Year to date  Local authority    E92000001
#> 3407        2025         Week 10 Year to date  Local authority    E92000001
#> 3408        2025         Week 10 Year to date  Local authority    E92000001
#> 3409        2025         Week 10 Year to date  Local authority    E92000001
#> 3410        2025         Week 10 Year to date  Local authority    E92000001
#> 3411        2025         Week 10 Year to date  Local authority    E92000001
#> 3412        2025         Week 10 Year to date         Regional    E92000001
#> 3413        2025         Week 10 Year to date         Regional    E92000001
#> 3414        2025         Week 10 Year to date         Regional    E92000001
#> 3415        2025         Week 10 Year to date         Regional    E92000001
#> 3416        2025         Week 10 Year to date  Local authority    E92000001
#> 3417        2025         Week 10 Year to date  Local authority    E92000001
#> 3418        2025         Week 10 Year to date  Local authority    E92000001
#> 3419        2025         Week 10 Year to date  Local authority    E92000001
#> 3420        2025         Week 10 Year to date  Local authority    E92000001
#> 3421        2025         Week 10 Year to date  Local authority    E92000001
#> 3422        2025         Week 10 Year to date  Local authority    E92000001
#> 3423        2025         Week 10 Year to date  Local authority    E92000001
#> 3424        2025         Week 10 Year to date  Local authority    E92000001
#> 3425        2025         Week 10 Year to date  Local authority    E92000001
#> 3426        2025         Week 10 Year to date  Local authority    E92000001
#> 3427        2025         Week 10 Year to date  Local authority    E92000001
#> 3428        2025         Week 10 Year to date  Local authority    E92000001
#> 3429        2025         Week 10 Year to date  Local authority    E92000001
#> 3430        2025         Week 10 Year to date  Local authority    E92000001
#> 3431        2025         Week 10 Year to date  Local authority    E92000001
#> 3432        2025         Week 10 Year to date  Local authority    E92000001
#> 3433        2025         Week 10 Year to date  Local authority    E92000001
#> 3434        2025         Week 10 Year to date  Local authority    E92000001
#> 3435        2025         Week 10 Year to date  Local authority    E92000001
#> 3436        2025         Week 10 Year to date  Local authority    E92000001
#> 3437        2025         Week 10 Year to date  Local authority    E92000001
#> 3438        2025         Week 10 Year to date  Local authority    E92000001
#> 3439        2025         Week 10 Year to date  Local authority    E92000001
#> 3440        2025         Week 10 Year to date  Local authority    E92000001
#> 3441        2025         Week 10 Year to date  Local authority    E92000001
#> 3442        2025         Week 10 Year to date  Local authority    E92000001
#> 3443        2025         Week 10 Year to date  Local authority    E92000001
#> 3444        2025         Week 10 Year to date  Local authority    E92000001
#> 3445        2025         Week 10 Year to date  Local authority    E92000001
#> 3446        2025         Week 10 Year to date  Local authority    E92000001
#> 3447        2025         Week 10 Year to date  Local authority    E92000001
#> 3448        2025         Week 10 Year to date  Local authority    E92000001
#> 3449        2025         Week 10 Year to date  Local authority    E92000001
#> 3450        2025         Week 10 Year to date  Local authority    E92000001
#> 3451        2025         Week 10 Year to date  Local authority    E92000001
#> 3452        2025         Week 10 Year to date  Local authority    E92000001
#> 3453        2025         Week 10 Year to date  Local authority    E92000001
#> 3454        2025         Week 10 Year to date  Local authority    E92000001
#> 3455        2025         Week 10 Year to date  Local authority    E92000001
#> 3456        2025         Week 10 Year to date  Local authority    E92000001
#> 3457        2025         Week 10 Year to date  Local authority    E92000001
#> 3458        2025         Week 10 Year to date  Local authority    E92000001
#> 3459        2025          Week 8 Year to date         National    E92000001
#> 3460        2025          Week 8 Year to date         National    E92000001
#> 3461        2025          Week 8 Year to date         National    E92000001
#> 3462        2025          Week 8 Year to date         National    E92000001
#> 3463        2025          Week 8 Year to date         Regional    E92000001
#> 3464        2025          Week 8 Year to date         Regional    E92000001
#> 3465        2025          Week 8 Year to date         Regional    E92000001
#> 3466        2025          Week 8 Year to date         Regional    E92000001
#> 3467        2025          Week 8 Year to date  Local authority    E92000001
#> 3468        2025          Week 8 Year to date  Local authority    E92000001
#> 3469        2025          Week 8 Year to date  Local authority    E92000001
#> 3470        2025          Week 8 Year to date  Local authority    E92000001
#> 3471        2025          Week 8 Year to date  Local authority    E92000001
#> 3472        2025          Week 8 Year to date  Local authority    E92000001
#> 3473        2025          Week 8 Year to date  Local authority    E92000001
#> 3474        2025          Week 8 Year to date  Local authority    E92000001
#> 3475        2025          Week 8 Year to date  Local authority    E92000001
#> 3476        2025          Week 8 Year to date  Local authority    E92000001
#> 3477        2025          Week 8 Year to date  Local authority    E92000001
#> 3478        2025          Week 8 Year to date  Local authority    E92000001
#> 3479        2025          Week 8 Year to date  Local authority    E92000001
#> 3480        2025          Week 8 Year to date  Local authority    E92000001
#> 3481        2025          Week 8 Year to date  Local authority    E92000001
#> 3482        2025          Week 8 Year to date  Local authority    E92000001
#> 3483        2025          Week 8 Year to date  Local authority    E92000001
#> 3484        2025          Week 8 Year to date  Local authority    E92000001
#> 3485        2025          Week 8 Year to date  Local authority    E92000001
#> 3486        2025          Week 8 Year to date  Local authority    E92000001
#> 3487        2025          Week 8 Year to date  Local authority    E92000001
#> 3488        2025          Week 8 Year to date  Local authority    E92000001
#> 3489        2025          Week 8 Year to date  Local authority    E92000001
#> 3490        2025          Week 8 Year to date  Local authority    E92000001
#> 3491        2025          Week 8 Year to date  Local authority    E92000001
#> 3492        2025          Week 8 Year to date  Local authority    E92000001
#> 3493        2025          Week 8 Year to date  Local authority    E92000001
#> 3494        2025          Week 8 Year to date  Local authority    E92000001
#> 3495        2025          Week 8 Year to date  Local authority    E92000001
#> 3496        2025          Week 8 Year to date  Local authority    E92000001
#> 3497        2025          Week 8 Year to date  Local authority    E92000001
#> 3498        2025          Week 8 Year to date  Local authority    E92000001
#> 3499        2025          Week 8 Year to date  Local authority    E92000001
#> 3500        2025          Week 8 Year to date  Local authority    E92000001
#> 3501        2025          Week 8 Year to date  Local authority    E92000001
#> 3502        2025          Week 8 Year to date  Local authority    E92000001
#> 3503        2025          Week 8 Year to date         Regional    E92000001
#> 3504        2025          Week 8 Year to date         Regional    E92000001
#> 3505        2025          Week 8 Year to date         Regional    E92000001
#> 3506        2025          Week 8 Year to date         Regional    E92000001
#> 3507        2025          Week 8 Year to date  Local authority    E92000001
#> 3508        2025          Week 8 Year to date  Local authority    E92000001
#> 3509        2025          Week 8 Year to date  Local authority    E92000001
#> 3510        2025          Week 8 Year to date  Local authority    E92000001
#> 3511        2025          Week 8 Year to date  Local authority    E92000001
#> 3512        2025          Week 8 Year to date  Local authority    E92000001
#> 3513        2025          Week 8 Year to date  Local authority    E92000001
#> 3514        2025          Week 8 Year to date  Local authority    E92000001
#> 3515        2025          Week 8 Year to date  Local authority    E92000001
#> 3516        2025          Week 8 Year to date  Local authority    E92000001
#> 3517        2025          Week 8 Year to date  Local authority    E92000001
#> 3518        2025          Week 8 Year to date  Local authority    E92000001
#> 3519        2025          Week 8 Year to date  Local authority    E92000001
#> 3520        2025          Week 8 Year to date  Local authority    E92000001
#> 3521        2025          Week 8 Year to date  Local authority    E92000001
#> 3522        2025          Week 8 Year to date  Local authority    E92000001
#> 3523        2025          Week 8 Year to date  Local authority    E92000001
#> 3524        2025          Week 8 Year to date  Local authority    E92000001
#> 3525        2025          Week 8 Year to date  Local authority    E92000001
#> 3526        2025          Week 8 Year to date  Local authority    E92000001
#> 3527        2025          Week 8 Year to date  Local authority    E92000001
#> 3528        2025          Week 8 Year to date  Local authority    E92000001
#> 3529        2025          Week 8 Year to date  Local authority    E92000001
#> 3530        2025          Week 8 Year to date  Local authority    E92000001
#> 3531        2025          Week 8 Year to date  Local authority    E92000001
#> 3532        2025          Week 8 Year to date  Local authority    E92000001
#> 3533        2025          Week 8 Year to date  Local authority    E92000001
#> 3534        2025          Week 8 Year to date  Local authority    E92000001
#> 3535        2025          Week 8 Year to date  Local authority    E92000001
#> 3536        2025          Week 8 Year to date  Local authority    E92000001
#> 3537        2025          Week 8 Year to date  Local authority    E92000001
#> 3538        2025          Week 8 Year to date  Local authority    E92000001
#> 3539        2025          Week 8 Year to date  Local authority    E92000001
#> 3540        2025          Week 8 Year to date  Local authority    E92000001
#> 3541        2025          Week 8 Year to date  Local authority    E92000001
#> 3542        2025          Week 8 Year to date  Local authority    E92000001
#> 3543        2025          Week 8 Year to date  Local authority    E92000001
#> 3544        2025          Week 8 Year to date  Local authority    E92000001
#> 3545        2025          Week 8 Year to date  Local authority    E92000001
#> 3546        2025          Week 8 Year to date  Local authority    E92000001
#> 3547        2025          Week 8 Year to date  Local authority    E92000001
#> 3548        2025          Week 8 Year to date  Local authority    E92000001
#> 3549        2025          Week 8 Year to date  Local authority    E92000001
#> 3550        2025          Week 8 Year to date  Local authority    E92000001
#> 3551        2025          Week 8 Year to date  Local authority    E92000001
#> 3552        2025          Week 8 Year to date  Local authority    E92000001
#> 3553        2025          Week 8 Year to date  Local authority    E92000001
#> 3554        2025          Week 8 Year to date  Local authority    E92000001
#> 3555        2025          Week 8 Year to date  Local authority    E92000001
#> 3556        2025          Week 8 Year to date  Local authority    E92000001
#> 3557        2025          Week 8 Year to date  Local authority    E92000001
#> 3558        2025          Week 8 Year to date  Local authority    E92000001
#> 3559        2025          Week 8 Year to date  Local authority    E92000001
#> 3560        2025          Week 8 Year to date  Local authority    E92000001
#> 3561        2025          Week 8 Year to date  Local authority    E92000001
#> 3562        2025          Week 8 Year to date  Local authority    E92000001
#> 3563        2025          Week 8 Year to date  Local authority    E92000001
#> 3564        2025          Week 8 Year to date  Local authority    E92000001
#> 3565        2025          Week 8 Year to date  Local authority    E92000001
#> 3566        2025          Week 8 Year to date  Local authority    E92000001
#> 3567        2025          Week 8 Year to date  Local authority    E92000001
#> 3568        2025          Week 8 Year to date  Local authority    E92000001
#> 3569        2025          Week 8 Year to date  Local authority    E92000001
#> 3570        2025          Week 8 Year to date  Local authority    E92000001
#> 3571        2025          Week 8 Year to date  Local authority    E92000001
#> 3572        2025          Week 8 Year to date  Local authority    E92000001
#> 3573        2025          Week 8 Year to date  Local authority    E92000001
#> 3574        2025          Week 8 Year to date  Local authority    E92000001
#> 3575        2025          Week 8 Year to date  Local authority    E92000001
#> 3576        2025          Week 8 Year to date  Local authority    E92000001
#> 3577        2025          Week 8 Year to date  Local authority    E92000001
#> 3578        2025          Week 8 Year to date  Local authority    E92000001
#> 3579        2025          Week 8 Year to date         Regional    E92000001
#> 3580        2025          Week 8 Year to date         Regional    E92000001
#> 3581        2025          Week 8 Year to date         Regional    E92000001
#> 3582        2025          Week 8 Year to date         Regional    E92000001
#> 3583        2025          Week 8 Year to date  Local authority    E92000001
#> 3584        2025          Week 8 Year to date  Local authority    E92000001
#> 3585        2025          Week 8 Year to date  Local authority    E92000001
#> 3586        2025          Week 8 Year to date  Local authority    E92000001
#> 3587        2025          Week 8 Year to date  Local authority    E92000001
#> 3588        2025          Week 8 Year to date  Local authority    E92000001
#> 3589        2025          Week 8 Year to date  Local authority    E92000001
#> 3590        2025          Week 8 Year to date  Local authority    E92000001
#> 3591        2025          Week 8 Year to date  Local authority    E92000001
#> 3592        2025          Week 8 Year to date  Local authority    E92000001
#> 3593        2025          Week 8 Year to date  Local authority    E92000001
#> 3594        2025          Week 8 Year to date  Local authority    E92000001
#> 3595        2025          Week 8 Year to date  Local authority    E92000001
#> 3596        2025          Week 8 Year to date  Local authority    E92000001
#> 3597        2025          Week 8 Year to date  Local authority    E92000001
#> 3598        2025          Week 8 Year to date  Local authority    E92000001
#> 3599        2025          Week 8 Year to date  Local authority    E92000001
#> 3600        2025          Week 8 Year to date  Local authority    E92000001
#> 3601        2025          Week 8 Year to date  Local authority    E92000001
#> 3602        2025          Week 8 Year to date  Local authority    E92000001
#> 3603        2025          Week 8 Year to date  Local authority    E92000001
#> 3604        2025          Week 8 Year to date  Local authority    E92000001
#> 3605        2025          Week 8 Year to date  Local authority    E92000001
#> 3606        2025          Week 8 Year to date  Local authority    E92000001
#> 3607        2025          Week 8 Year to date  Local authority    E92000001
#> 3608        2025          Week 8 Year to date  Local authority    E92000001
#> 3609        2025          Week 8 Year to date  Local authority    E92000001
#> 3610        2025          Week 8 Year to date  Local authority    E92000001
#> 3611        2025          Week 8 Year to date  Local authority    E92000001
#> 3612        2025          Week 8 Year to date  Local authority    E92000001
#> 3613        2025          Week 8 Year to date  Local authority    E92000001
#> 3614        2025          Week 8 Year to date  Local authority    E92000001
#> 3615        2025          Week 8 Year to date  Local authority    E92000001
#> 3616        2025          Week 8 Year to date  Local authority    E92000001
#> 3617        2025          Week 8 Year to date  Local authority    E92000001
#> 3618        2025          Week 8 Year to date  Local authority    E92000001
#> 3619        2025          Week 8 Year to date  Local authority    E92000001
#> 3620        2025          Week 8 Year to date  Local authority    E92000001
#> 3621        2025          Week 8 Year to date  Local authority    E92000001
#> 3622        2025          Week 8 Year to date  Local authority    E92000001
#> 3623        2025          Week 8 Year to date  Local authority    E92000001
#> 3624        2025          Week 8 Year to date  Local authority    E92000001
#> 3625        2025          Week 8 Year to date  Local authority    E92000001
#> 3626        2025          Week 8 Year to date  Local authority    E92000001
#> 3627        2025          Week 8 Year to date  Local authority    E92000001
#> 3628        2025          Week 8 Year to date         Regional    E92000001
#> 3629        2025          Week 8 Year to date         Regional    E92000001
#> 3630        2025          Week 8 Year to date         Regional    E92000001
#> 3631        2025          Week 8 Year to date         Regional    E92000001
#> 3632        2025          Week 8 Year to date  Local authority    E92000001
#> 3633        2025          Week 8 Year to date  Local authority    E92000001
#> 3634        2025          Week 8 Year to date  Local authority    E92000001
#> 3635        2025          Week 8 Year to date  Local authority    E92000001
#> 3636        2025          Week 8 Year to date  Local authority    E92000001
#> 3637        2025          Week 8 Year to date  Local authority    E92000001
#> 3638        2025          Week 8 Year to date  Local authority    E92000001
#> 3639        2025          Week 8 Year to date  Local authority    E92000001
#> 3640        2025          Week 8 Year to date  Local authority    E92000001
#> 3641        2025          Week 8 Year to date  Local authority    E92000001
#> 3642        2025          Week 8 Year to date  Local authority    E92000001
#> 3643        2025          Week 8 Year to date  Local authority    E92000001
#> 3644        2025          Week 8 Year to date  Local authority    E92000001
#> 3645        2025          Week 8 Year to date  Local authority    E92000001
#> 3646        2025          Week 8 Year to date  Local authority    E92000001
#> 3647        2025          Week 8 Year to date  Local authority    E92000001
#> 3648        2025          Week 8 Year to date  Local authority    E92000001
#> 3649        2025          Week 8 Year to date  Local authority    E92000001
#> 3650        2025          Week 8 Year to date  Local authority    E92000001
#> 3651        2025          Week 8 Year to date  Local authority    E92000001
#> 3652        2025          Week 8 Year to date  Local authority    E92000001
#> 3653        2025          Week 8 Year to date  Local authority    E92000001
#> 3654        2025          Week 8 Year to date  Local authority    E92000001
#> 3655        2025          Week 8 Year to date  Local authority    E92000001
#> 3656        2025          Week 8 Year to date  Local authority    E92000001
#> 3657        2025          Week 8 Year to date  Local authority    E92000001
#> 3658        2025          Week 8 Year to date  Local authority    E92000001
#> 3659        2025          Week 8 Year to date  Local authority    E92000001
#> 3660        2025          Week 8 Year to date  Local authority    E92000001
#> 3661        2025          Week 8 Year to date         Regional    E92000001
#> 3662        2025          Week 8 Year to date         Regional    E92000001
#> 3663        2025          Week 8 Year to date         Regional    E92000001
#> 3664        2025          Week 8 Year to date         Regional    E92000001
#> 3665        2025          Week 8 Year to date  Local authority    E92000001
#> 3666        2025          Week 8 Year to date  Local authority    E92000001
#> 3667        2025          Week 8 Year to date  Local authority    E92000001
#> 3668        2025          Week 8 Year to date  Local authority    E92000001
#> 3669        2025          Week 8 Year to date  Local authority    E92000001
#> 3670        2025          Week 8 Year to date  Local authority    E92000001
#> 3671        2025          Week 8 Year to date  Local authority    E92000001
#> 3672        2025          Week 8 Year to date  Local authority    E92000001
#> 3673        2025          Week 8 Year to date  Local authority    E92000001
#> 3674        2025          Week 8 Year to date  Local authority    E92000001
#> 3675        2025          Week 8 Year to date  Local authority    E92000001
#> 3676        2025          Week 8 Year to date  Local authority    E92000001
#> 3677        2025          Week 8 Year to date  Local authority    E92000001
#> 3678        2025          Week 8 Year to date  Local authority    E92000001
#> 3679        2025          Week 8 Year to date  Local authority    E92000001
#> 3680        2025          Week 8 Year to date  Local authority    E92000001
#> 3681        2025          Week 8 Year to date  Local authority    E92000001
#> 3682        2025          Week 8 Year to date  Local authority    E92000001
#> 3683        2025          Week 8 Year to date  Local authority    E92000001
#> 3684        2025          Week 8 Year to date  Local authority    E92000001
#> 3685        2025          Week 8 Year to date  Local authority    E92000001
#> 3686        2025          Week 8 Year to date  Local authority    E92000001
#> 3687        2025          Week 8 Year to date  Local authority    E92000001
#> 3688        2025          Week 8 Year to date  Local authority    E92000001
#> 3689        2025          Week 8 Year to date  Local authority    E92000001
#> 3690        2025          Week 8 Year to date  Local authority    E92000001
#> 3691        2025          Week 8 Year to date  Local authority    E92000001
#> 3692        2025          Week 8 Year to date  Local authority    E92000001
#> 3693        2025          Week 8 Year to date  Local authority    E92000001
#> 3694        2025          Week 8 Year to date  Local authority    E92000001
#> 3695        2025          Week 8 Year to date  Local authority    E92000001
#> 3696        2025          Week 8 Year to date  Local authority    E92000001
#> 3697        2025          Week 8 Year to date  Local authority    E92000001
#> 3698        2025          Week 8 Year to date  Local authority    E92000001
#> 3699        2025          Week 8 Year to date  Local authority    E92000001
#> 3700        2025          Week 8 Year to date  Local authority    E92000001
#> 3701        2025          Week 8 Year to date  Local authority    E92000001
#> 3702        2025          Week 8 Year to date  Local authority    E92000001
#> 3703        2025          Week 8 Year to date  Local authority    E92000001
#> 3704        2025          Week 8 Year to date  Local authority    E92000001
#> 3705        2025          Week 8 Year to date  Local authority    E92000001
#> 3706        2025          Week 8 Year to date  Local authority    E92000001
#> 3707        2025          Week 8 Year to date         Regional    E92000001
#> 3708        2025          Week 8 Year to date         Regional    E92000001
#> 3709        2025          Week 8 Year to date         Regional    E92000001
#> 3710        2025          Week 8 Year to date         Regional    E92000001
#> 3711        2025          Week 8 Year to date  Local authority    E92000001
#> 3712        2025          Week 8 Year to date  Local authority    E92000001
#> 3713        2025          Week 8 Year to date  Local authority    E92000001
#> 3714        2025          Week 8 Year to date  Local authority    E92000001
#> 3715        2025          Week 8 Year to date  Local authority    E92000001
#> 3716        2025          Week 8 Year to date  Local authority    E92000001
#> 3717        2025          Week 8 Year to date  Local authority    E92000001
#> 3718        2025          Week 8 Year to date  Local authority    E92000001
#> 3719        2025          Week 8 Year to date  Local authority    E92000001
#> 3720        2025          Week 8 Year to date  Local authority    E92000001
#> 3721        2025          Week 8 Year to date  Local authority    E92000001
#> 3722        2025          Week 8 Year to date  Local authority    E92000001
#> 3723        2025          Week 8 Year to date  Local authority    E92000001
#> 3724        2025          Week 8 Year to date  Local authority    E92000001
#> 3725        2025          Week 8 Year to date  Local authority    E92000001
#> 3726        2025          Week 8 Year to date  Local authority    E92000001
#> 3727        2025          Week 8 Year to date  Local authority    E92000001
#> 3728        2025          Week 8 Year to date  Local authority    E92000001
#> 3729        2025          Week 8 Year to date  Local authority    E92000001
#> 3730        2025          Week 8 Year to date  Local authority    E92000001
#> 3731        2025          Week 8 Year to date  Local authority    E92000001
#> 3732        2025          Week 8 Year to date  Local authority    E92000001
#> 3733        2025          Week 8 Year to date  Local authority    E92000001
#> 3734        2025          Week 8 Year to date  Local authority    E92000001
#> 3735        2025          Week 8 Year to date  Local authority    E92000001
#> 3736        2025          Week 8 Year to date  Local authority    E92000001
#> 3737        2025          Week 8 Year to date  Local authority    E92000001
#> 3738        2025          Week 8 Year to date  Local authority    E92000001
#> 3739        2025          Week 8 Year to date  Local authority    E92000001
#> 3740        2025          Week 8 Year to date  Local authority    E92000001
#> 3741        2025          Week 8 Year to date  Local authority    E92000001
#> 3742        2025          Week 8 Year to date  Local authority    E92000001
#> 3743        2025          Week 8 Year to date  Local authority    E92000001
#> 3744        2025          Week 8 Year to date         Regional    E92000001
#> 3745        2025          Week 8 Year to date         Regional    E92000001
#> 3746        2025          Week 8 Year to date         Regional    E92000001
#> 3747        2025          Week 8 Year to date         Regional    E92000001
#> 3748        2025          Week 8 Year to date  Local authority    E92000001
#> 3749        2025          Week 8 Year to date  Local authority    E92000001
#> 3750        2025          Week 8 Year to date  Local authority    E92000001
#> 3751        2025          Week 8 Year to date  Local authority    E92000001
#> 3752        2025          Week 8 Year to date  Local authority    E92000001
#> 3753        2025          Week 8 Year to date  Local authority    E92000001
#> 3754        2025          Week 8 Year to date  Local authority    E92000001
#> 3755        2025          Week 8 Year to date  Local authority    E92000001
#> 3756        2025          Week 8 Year to date  Local authority    E92000001
#> 3757        2025          Week 8 Year to date  Local authority    E92000001
#> 3758        2025          Week 8 Year to date  Local authority    E92000001
#> 3759        2025          Week 8 Year to date  Local authority    E92000001
#> 3760        2025          Week 8 Year to date  Local authority    E92000001
#> 3761        2025          Week 8 Year to date  Local authority    E92000001
#> 3762        2025          Week 8 Year to date  Local authority    E92000001
#> 3763        2025          Week 8 Year to date  Local authority    E92000001
#> 3764        2025          Week 8 Year to date  Local authority    E92000001
#> 3765        2025          Week 8 Year to date  Local authority    E92000001
#> 3766        2025          Week 8 Year to date  Local authority    E92000001
#> 3767        2025          Week 8 Year to date  Local authority    E92000001
#> 3768        2025          Week 8 Year to date  Local authority    E92000001
#> 3769        2025          Week 8 Year to date  Local authority    E92000001
#> 3770        2025          Week 8 Year to date  Local authority    E92000001
#> 3771        2025          Week 8 Year to date  Local authority    E92000001
#> 3772        2025          Week 8 Year to date  Local authority    E92000001
#> 3773        2025          Week 8 Year to date  Local authority    E92000001
#> 3774        2025          Week 8 Year to date  Local authority    E92000001
#> 3775        2025          Week 8 Year to date  Local authority    E92000001
#> 3776        2025          Week 8 Year to date  Local authority    E92000001
#> 3777        2025          Week 8 Year to date  Local authority    E92000001
#> 3778        2025          Week 8 Year to date  Local authority    E92000001
#> 3779        2025          Week 8 Year to date  Local authority    E92000001
#> 3780        2025          Week 8 Year to date  Local authority    E92000001
#> 3781        2025          Week 8 Year to date  Local authority    E92000001
#> 3782        2025          Week 8 Year to date  Local authority    E92000001
#> 3783        2025          Week 8 Year to date  Local authority    E92000001
#> 3784        2025          Week 8 Year to date  Local authority    E92000001
#> 3785        2025          Week 8 Year to date  Local authority    E92000001
#> 3786        2025          Week 8 Year to date  Local authority    E92000001
#> 3787        2025          Week 8 Year to date  Local authority    E92000001
#> 3788        2025          Week 8 Year to date  Local authority    E92000001
#> 3789        2025          Week 8 Year to date  Local authority    E92000001
#> 3790        2025          Week 8 Year to date  Local authority    E92000001
#> 3791        2025          Week 8 Year to date  Local authority    E92000001
#> 3792        2025          Week 8 Year to date  Local authority    E92000001
#> 3793        2025          Week 8 Year to date  Local authority    E92000001
#> 3794        2025          Week 8 Year to date  Local authority    E92000001
#> 3795        2025          Week 8 Year to date  Local authority    E92000001
#> 3796        2025          Week 8 Year to date  Local authority    E92000001
#> 3797        2025          Week 8 Year to date  Local authority    E92000001
#> 3798        2025          Week 8 Year to date  Local authority    E92000001
#> 3799        2025          Week 8 Year to date  Local authority    E92000001
#> 3800        2025          Week 8 Year to date  Local authority    E92000001
#> 3801        2025          Week 8 Year to date  Local authority    E92000001
#> 3802        2025          Week 8 Year to date  Local authority    E92000001
#> 3803        2025          Week 8 Year to date  Local authority    E92000001
#> 3804        2025          Week 8 Year to date  Local authority    E92000001
#> 3805        2025          Week 8 Year to date  Local authority    E92000001
#> 3806        2025          Week 8 Year to date  Local authority    E92000001
#> 3807        2025          Week 8 Year to date  Local authority    E92000001
#> 3808        2025          Week 8 Year to date  Local authority    E92000001
#> 3809        2025          Week 8 Year to date  Local authority    E92000001
#> 3810        2025          Week 8 Year to date  Local authority    E92000001
#> 3811        2025          Week 8 Year to date  Local authority    E92000001
#> 3812        2025          Week 8 Year to date  Local authority    E92000001
#> 3813        2025          Week 8 Year to date  Local authority    E92000001
#> 3814        2025          Week 8 Year to date  Local authority    E92000001
#> 3815        2025          Week 8 Year to date  Local authority    E92000001
#> 3816        2025          Week 8 Year to date  Local authority    E92000001
#> 3817        2025          Week 8 Year to date  Local authority    E92000001
#> 3818        2025          Week 8 Year to date  Local authority    E92000001
#> 3819        2025          Week 8 Year to date  Local authority    E92000001
#> 3820        2025          Week 8 Year to date  Local authority    E92000001
#> 3821        2025          Week 8 Year to date  Local authority    E92000001
#> 3822        2025          Week 8 Year to date  Local authority    E92000001
#> 3823        2025          Week 8 Year to date  Local authority    E92000001
#> 3824        2025          Week 8 Year to date  Local authority    E92000001
#> 3825        2025          Week 8 Year to date  Local authority    E92000001
#> 3826        2025          Week 8 Year to date  Local authority    E92000001
#> 3827        2025          Week 8 Year to date  Local authority    E92000001
#> 3828        2025          Week 8 Year to date  Local authority    E92000001
#> 3829        2025          Week 8 Year to date  Local authority    E92000001
#> 3830        2025          Week 8 Year to date  Local authority    E92000001
#> 3831        2025          Week 8 Year to date  Local authority    E92000001
#> 3832        2025          Week 8 Year to date  Local authority    E92000001
#> 3833        2025          Week 8 Year to date  Local authority    E92000001
#> 3834        2025          Week 8 Year to date  Local authority    E92000001
#> 3835        2025          Week 8 Year to date  Local authority    E92000001
#> 3836        2025          Week 8 Year to date  Local authority    E92000001
#> 3837        2025          Week 8 Year to date  Local authority    E92000001
#> 3838        2025          Week 8 Year to date  Local authority    E92000001
#> 3839        2025          Week 8 Year to date  Local authority    E92000001
#> 3840        2025          Week 8 Year to date  Local authority    E92000001
#> 3841        2025          Week 8 Year to date  Local authority    E92000001
#> 3842        2025          Week 8 Year to date  Local authority    E92000001
#> 3843        2025          Week 8 Year to date  Local authority    E92000001
#> 3844        2025          Week 8 Year to date  Local authority    E92000001
#> 3845        2025          Week 8 Year to date         Regional    E92000001
#> 3846        2025          Week 8 Year to date         Regional    E92000001
#> 3847        2025          Week 8 Year to date         Regional    E92000001
#> 3848        2025          Week 8 Year to date         Regional    E92000001
#> 3849        2025          Week 8 Year to date  Local authority    E92000001
#> 3850        2025          Week 8 Year to date  Local authority    E92000001
#> 3851        2025          Week 8 Year to date  Local authority    E92000001
#> 3852        2025          Week 8 Year to date  Local authority    E92000001
#> 3853        2025          Week 8 Year to date  Local authority    E92000001
#> 3854        2025          Week 8 Year to date  Local authority    E92000001
#> 3855        2025          Week 8 Year to date  Local authority    E92000001
#> 3856        2025          Week 8 Year to date  Local authority    E92000001
#> 3857        2025          Week 8 Year to date  Local authority    E92000001
#> 3858        2025          Week 8 Year to date  Local authority    E92000001
#> 3859        2025          Week 8 Year to date  Local authority    E92000001
#> 3860        2025          Week 8 Year to date  Local authority    E92000001
#> 3861        2025          Week 8 Year to date  Local authority    E92000001
#> 3862        2025          Week 8 Year to date  Local authority    E92000001
#> 3863        2025          Week 8 Year to date  Local authority    E92000001
#> 3864        2025          Week 8 Year to date  Local authority    E92000001
#> 3865        2025          Week 8 Year to date  Local authority    E92000001
#> 3866        2025          Week 8 Year to date  Local authority    E92000001
#> 3867        2025          Week 8 Year to date  Local authority    E92000001
#> 3868        2025          Week 8 Year to date  Local authority    E92000001
#> 3869        2025          Week 8 Year to date  Local authority    E92000001
#> 3870        2025          Week 8 Year to date  Local authority    E92000001
#> 3871        2025          Week 8 Year to date  Local authority    E92000001
#> 3872        2025          Week 8 Year to date  Local authority    E92000001
#> 3873        2025          Week 8 Year to date  Local authority    E92000001
#> 3874        2025          Week 8 Year to date  Local authority    E92000001
#> 3875        2025          Week 8 Year to date  Local authority    E92000001
#> 3876        2025          Week 8 Year to date  Local authority    E92000001
#> 3877        2025          Week 8 Year to date  Local authority    E92000001
#> 3878        2025          Week 8 Year to date  Local authority    E92000001
#> 3879        2025          Week 8 Year to date  Local authority    E92000001
#> 3880        2025          Week 8 Year to date  Local authority    E92000001
#> 3881        2025          Week 8 Year to date  Local authority    E92000001
#> 3882        2025          Week 8 Year to date  Local authority    E92000001
#> 3883        2025          Week 8 Year to date  Local authority    E92000001
#> 3884        2025          Week 8 Year to date  Local authority    E92000001
#> 3885        2025          Week 8 Year to date  Local authority    E92000001
#> 3886        2025          Week 8 Year to date  Local authority    E92000001
#> 3887        2025          Week 8 Year to date  Local authority    E92000001
#> 3888        2025          Week 8 Year to date  Local authority    E92000001
#> 3889        2025          Week 8 Year to date  Local authority    E92000001
#> 3890        2025          Week 8 Year to date  Local authority    E92000001
#> 3891        2025          Week 8 Year to date  Local authority    E92000001
#> 3892        2025          Week 8 Year to date  Local authority    E92000001
#> 3893        2025          Week 8 Year to date  Local authority    E92000001
#> 3894        2025          Week 8 Year to date  Local authority    E92000001
#> 3895        2025          Week 8 Year to date  Local authority    E92000001
#> 3896        2025          Week 8 Year to date  Local authority    E92000001
#> 3897        2025          Week 8 Year to date  Local authority    E92000001
#> 3898        2025          Week 8 Year to date  Local authority    E92000001
#> 3899        2025          Week 8 Year to date  Local authority    E92000001
#> 3900        2025          Week 8 Year to date  Local authority    E92000001
#> 3901        2025          Week 8 Year to date  Local authority    E92000001
#> 3902        2025          Week 8 Year to date  Local authority    E92000001
#> 3903        2025          Week 8 Year to date  Local authority    E92000001
#> 3904        2025          Week 8 Year to date  Local authority    E92000001
#> 3905        2025          Week 8 Year to date  Local authority    E92000001
#> 3906        2025          Week 8 Year to date         Regional    E92000001
#> 3907        2025          Week 8 Year to date         Regional    E92000001
#> 3908        2025          Week 8 Year to date         Regional    E92000001
#> 3909        2025          Week 8 Year to date         Regional    E92000001
#> 3910        2025          Week 8 Year to date  Local authority    E92000001
#> 3911        2025          Week 8 Year to date  Local authority    E92000001
#> 3912        2025          Week 8 Year to date  Local authority    E92000001
#> 3913        2025          Week 8 Year to date  Local authority    E92000001
#> 3914        2025          Week 8 Year to date  Local authority    E92000001
#> 3915        2025          Week 8 Year to date  Local authority    E92000001
#> 3916        2025          Week 8 Year to date  Local authority    E92000001
#> 3917        2025          Week 8 Year to date  Local authority    E92000001
#> 3918        2025          Week 8 Year to date  Local authority    E92000001
#> 3919        2025          Week 8 Year to date  Local authority    E92000001
#> 3920        2025          Week 8 Year to date  Local authority    E92000001
#> 3921        2025          Week 8 Year to date  Local authority    E92000001
#> 3922        2025          Week 8 Year to date  Local authority    E92000001
#> 3923        2025          Week 8 Year to date  Local authority    E92000001
#> 3924        2025          Week 8 Year to date  Local authority    E92000001
#> 3925        2025          Week 8 Year to date  Local authority    E92000001
#> 3926        2025          Week 8 Year to date  Local authority    E92000001
#> 3927        2025          Week 8 Year to date  Local authority    E92000001
#> 3928        2025          Week 8 Year to date  Local authority    E92000001
#> 3929        2025          Week 8 Year to date  Local authority    E92000001
#> 3930        2025          Week 8 Year to date  Local authority    E92000001
#> 3931        2025          Week 8 Year to date  Local authority    E92000001
#> 3932        2025          Week 8 Year to date  Local authority    E92000001
#> 3933        2025          Week 8 Year to date  Local authority    E92000001
#> 3934        2025          Week 8 Year to date  Local authority    E92000001
#> 3935        2025          Week 8 Year to date  Local authority    E92000001
#> 3936        2025          Week 8 Year to date  Local authority    E92000001
#> 3937        2025          Week 8 Year to date  Local authority    E92000001
#> 3938        2025          Week 8 Year to date  Local authority    E92000001
#> 3939        2025          Week 8 Year to date  Local authority    E92000001
#> 3940        2025          Week 8 Year to date  Local authority    E92000001
#> 3941        2025          Week 8 Year to date  Local authority    E92000001
#> 3942        2025          Week 8 Year to date  Local authority    E92000001
#> 3943        2025          Week 8 Year to date  Local authority    E92000001
#> 3944        2025          Week 8 Year to date  Local authority    E92000001
#> 3945        2025          Week 8 Year to date  Local authority    E92000001
#> 3946        2025          Week 8 Year to date  Local authority    E92000001
#> 3947        2025          Week 8 Year to date  Local authority    E92000001
#> 3948        2025          Week 8 Year to date  Local authority    E92000001
#> 3949        2025          Week 8 Year to date  Local authority    E92000001
#> 3950        2025          Week 8 Year to date  Local authority    E92000001
#> 3951        2025          Week 8 Year to date  Local authority    E92000001
#> 3952        2025          Week 8 Year to date  Local authority    E92000001
#>      country_name region_code              region_name new_la_code
#> 1         England        <NA>                     <NA>        <NA>
#> 2         England        <NA>                     <NA>        <NA>
#> 3         England        <NA>                     <NA>        <NA>
#> 4         England        <NA>                     <NA>        <NA>
#> 5         England   E12000001               North East        <NA>
#> 6         England   E12000001               North East        <NA>
#> 7         England   E12000001               North East        <NA>
#> 8         England   E12000001               North East        <NA>
#> 9         England   E12000001               North East   E06000001
#> 10        England   E12000001               North East   E06000001
#> 11        England   E12000001               North East   E06000001
#> 12        England   E12000001               North East   E06000002
#> 13        England   E12000001               North East   E06000002
#> 14        England   E12000001               North East   E06000002
#> 15        England   E12000001               North East   E06000003
#> 16        England   E12000001               North East   E06000003
#> 17        England   E12000001               North East   E06000003
#> 18        England   E12000001               North East   E06000004
#> 19        England   E12000001               North East   E06000004
#> 20        England   E12000001               North East   E06000004
#> 21        England   E12000001               North East   E06000005
#> 22        England   E12000001               North East   E06000005
#> 23        England   E12000001               North East   E06000005
#> 24        England   E12000001               North East   E06000047
#> 25        England   E12000001               North East   E06000047
#> 26        England   E12000001               North East   E06000047
#> 27        England   E12000001               North East   E06000057
#> 28        England   E12000001               North East   E06000057
#> 29        England   E12000001               North East   E06000057
#> 30        England   E12000001               North East   E08000021
#> 31        England   E12000001               North East   E08000021
#> 32        England   E12000001               North East   E08000021
#> 33        England   E12000001               North East   E08000022
#> 34        England   E12000001               North East   E08000022
#> 35        England   E12000001               North East   E08000022
#> 36        England   E12000001               North East   E08000023
#> 37        England   E12000001               North East   E08000023
#> 38        England   E12000001               North East   E08000023
#> 39        England   E12000001               North East   E08000024
#> 40        England   E12000001               North East   E08000024
#> 41        England   E12000001               North East   E08000024
#> 42        England   E12000001               North East   E08000037
#> 43        England   E12000001               North East   E08000037
#> 44        England   E12000001               North East   E08000037
#> 45        England   E12000002               North West        <NA>
#> 46        England   E12000002               North West        <NA>
#> 47        England   E12000002               North West        <NA>
#> 48        England   E12000002               North West        <NA>
#> 49        England   E12000002               North West   E06000006
#> 50        England   E12000002               North West   E06000006
#> 51        England   E12000002               North West   E06000006
#> 52        England   E12000002               North West   E06000007
#> 53        England   E12000002               North West   E06000007
#> 54        England   E12000002               North West   E06000007
#> 55        England   E12000002               North West   E06000008
#> 56        England   E12000002               North West   E06000008
#> 57        England   E12000002               North West   E06000008
#> 58        England   E12000002               North West   E06000009
#> 59        England   E12000002               North West   E06000009
#> 60        England   E12000002               North West   E06000009
#> 61        England   E12000002               North West   E06000049
#> 62        England   E12000002               North West   E06000049
#> 63        England   E12000002               North West   E06000049
#> 64        England   E12000002               North West   E06000050
#> 65        England   E12000002               North West   E06000050
#> 66        England   E12000002               North West   E06000050
#> 67        England   E12000002               North West   E06000063
#> 68        England   E12000002               North West   E06000063
#> 69        England   E12000002               North West   E06000063
#> 70        England   E12000002               North West   E06000064
#> 71        England   E12000002               North West   E06000064
#> 72        England   E12000002               North West   E06000064
#> 73        England   E12000002               North West   E08000001
#> 74        England   E12000002               North West   E08000001
#> 75        England   E12000002               North West   E08000001
#> 76        England   E12000002               North West   E08000002
#> 77        England   E12000002               North West   E08000002
#> 78        England   E12000002               North West   E08000002
#> 79        England   E12000002               North West   E08000003
#> 80        England   E12000002               North West   E08000003
#> 81        England   E12000002               North West   E08000003
#> 82        England   E12000002               North West   E08000004
#> 83        England   E12000002               North West   E08000004
#> 84        England   E12000002               North West   E08000004
#> 85        England   E12000002               North West   E08000005
#> 86        England   E12000002               North West   E08000005
#> 87        England   E12000002               North West   E08000005
#> 88        England   E12000002               North West   E08000006
#> 89        England   E12000002               North West   E08000006
#> 90        England   E12000002               North West   E08000006
#> 91        England   E12000002               North West   E08000007
#> 92        England   E12000002               North West   E08000007
#> 93        England   E12000002               North West   E08000007
#> 94        England   E12000002               North West   E08000008
#> 95        England   E12000002               North West   E08000008
#> 96        England   E12000002               North West   E08000008
#> 97        England   E12000002               North West   E08000009
#> 98        England   E12000002               North West   E08000009
#> 99        England   E12000002               North West   E08000009
#> 100       England   E12000002               North West   E08000010
#> 101       England   E12000002               North West   E08000010
#> 102       England   E12000002               North West   E08000010
#> 103       England   E12000002               North West   E08000011
#> 104       England   E12000002               North West   E08000011
#> 105       England   E12000002               North West   E08000011
#> 106       England   E12000002               North West   E08000012
#> 107       England   E12000002               North West   E08000012
#> 108       England   E12000002               North West   E08000012
#> 109       England   E12000002               North West   E08000013
#> 110       England   E12000002               North West   E08000013
#> 111       England   E12000002               North West   E08000013
#> 112       England   E12000002               North West   E08000014
#> 113       England   E12000002               North West   E08000014
#> 114       England   E12000002               North West   E08000014
#> 115       England   E12000002               North West   E08000015
#> 116       England   E12000002               North West   E08000015
#> 117       England   E12000002               North West   E08000015
#> 118       England   E12000002               North West   E10000017
#> 119       England   E12000002               North West   E10000017
#> 120       England   E12000002               North West   E10000017
#> 121       England   E12000003 Yorkshire and The Humber        <NA>
#> 122       England   E12000003 Yorkshire and The Humber        <NA>
#> 123       England   E12000003 Yorkshire and The Humber        <NA>
#> 124       England   E12000003 Yorkshire and The Humber        <NA>
#> 125       England   E12000003 Yorkshire and The Humber   E06000010
#> 126       England   E12000003 Yorkshire and The Humber   E06000010
#> 127       England   E12000003 Yorkshire and The Humber   E06000010
#> 128       England   E12000003 Yorkshire and The Humber   E06000011
#> 129       England   E12000003 Yorkshire and The Humber   E06000011
#> 130       England   E12000003 Yorkshire and The Humber   E06000011
#> 131       England   E12000003 Yorkshire and The Humber   E06000012
#> 132       England   E12000003 Yorkshire and The Humber   E06000012
#> 133       England   E12000003 Yorkshire and The Humber   E06000012
#> 134       England   E12000003 Yorkshire and The Humber   E06000013
#> 135       England   E12000003 Yorkshire and The Humber   E06000013
#> 136       England   E12000003 Yorkshire and The Humber   E06000013
#> 137       England   E12000003 Yorkshire and The Humber   E06000014
#> 138       England   E12000003 Yorkshire and The Humber   E06000014
#> 139       England   E12000003 Yorkshire and The Humber   E06000014
#> 140       England   E12000003 Yorkshire and The Humber   E06000065
#> 141       England   E12000003 Yorkshire and The Humber   E06000065
#> 142       England   E12000003 Yorkshire and The Humber   E06000065
#> 143       England   E12000003 Yorkshire and The Humber   E08000016
#> 144       England   E12000003 Yorkshire and The Humber   E08000016
#> 145       England   E12000003 Yorkshire and The Humber   E08000016
#> 146       England   E12000003 Yorkshire and The Humber   E08000017
#> 147       England   E12000003 Yorkshire and The Humber   E08000017
#> 148       England   E12000003 Yorkshire and The Humber   E08000017
#> 149       England   E12000003 Yorkshire and The Humber   E08000018
#> 150       England   E12000003 Yorkshire and The Humber   E08000018
#> 151       England   E12000003 Yorkshire and The Humber   E08000018
#> 152       England   E12000003 Yorkshire and The Humber   E08000019
#> 153       England   E12000003 Yorkshire and The Humber   E08000019
#> 154       England   E12000003 Yorkshire and The Humber   E08000019
#> 155       England   E12000003 Yorkshire and The Humber   E08000032
#> 156       England   E12000003 Yorkshire and The Humber   E08000032
#> 157       England   E12000003 Yorkshire and The Humber   E08000032
#> 158       England   E12000003 Yorkshire and The Humber   E08000033
#> 159       England   E12000003 Yorkshire and The Humber   E08000033
#> 160       England   E12000003 Yorkshire and The Humber   E08000033
#> 161       England   E12000003 Yorkshire and The Humber   E08000034
#> 162       England   E12000003 Yorkshire and The Humber   E08000034
#> 163       England   E12000003 Yorkshire and The Humber   E08000034
#> 164       England   E12000003 Yorkshire and The Humber   E08000035
#> 165       England   E12000003 Yorkshire and The Humber   E08000035
#> 166       England   E12000003 Yorkshire and The Humber   E08000035
#> 167       England   E12000003 Yorkshire and The Humber   E08000036
#> 168       England   E12000003 Yorkshire and The Humber   E08000036
#> 169       England   E12000003 Yorkshire and The Humber   E08000036
#> 170       England   E12000004            East Midlands        <NA>
#> 171       England   E12000004            East Midlands        <NA>
#> 172       England   E12000004            East Midlands        <NA>
#> 173       England   E12000004            East Midlands        <NA>
#> 174       England   E12000004            East Midlands   E06000015
#> 175       England   E12000004            East Midlands   E06000015
#> 176       England   E12000004            East Midlands   E06000015
#> 177       England   E12000004            East Midlands   E06000016
#> 178       England   E12000004            East Midlands   E06000016
#> 179       England   E12000004            East Midlands   E06000016
#> 180       England   E12000004            East Midlands   E06000017
#> 181       England   E12000004            East Midlands   E06000017
#> 182       England   E12000004            East Midlands   E06000018
#> 183       England   E12000004            East Midlands   E06000018
#> 184       England   E12000004            East Midlands   E06000018
#> 185       England   E12000004            East Midlands   E06000061
#> 186       England   E12000004            East Midlands   E06000061
#> 187       England   E12000004            East Midlands   E06000061
#> 188       England   E12000004            East Midlands   E06000062
#> 189       England   E12000004            East Midlands   E06000062
#> 190       England   E12000004            East Midlands   E06000062
#> 191       England   E12000004            East Midlands   E10000007
#> 192       England   E12000004            East Midlands   E10000007
#> 193       England   E12000004            East Midlands   E10000007
#> 194       England   E12000004            East Midlands   E10000018
#> 195       England   E12000004            East Midlands   E10000018
#> 196       England   E12000004            East Midlands   E10000018
#> 197       England   E12000004            East Midlands   E10000019
#> 198       England   E12000004            East Midlands   E10000019
#> 199       England   E12000004            East Midlands   E10000019
#> 200       England   E12000004            East Midlands   E10000024
#> 201       England   E12000004            East Midlands   E10000024
#> 202       England   E12000004            East Midlands   E10000024
#> 203       England   E12000005            West Midlands        <NA>
#> 204       England   E12000005            West Midlands        <NA>
#> 205       England   E12000005            West Midlands        <NA>
#> 206       England   E12000005            West Midlands        <NA>
#> 207       England   E12000005            West Midlands   E06000019
#> 208       England   E12000005            West Midlands   E06000019
#> 209       England   E12000005            West Midlands   E06000019
#> 210       England   E12000005            West Midlands   E06000020
#> 211       England   E12000005            West Midlands   E06000020
#> 212       England   E12000005            West Midlands   E06000020
#> 213       England   E12000005            West Midlands   E06000021
#> 214       England   E12000005            West Midlands   E06000021
#> 215       England   E12000005            West Midlands   E06000021
#> 216       England   E12000005            West Midlands   E06000051
#> 217       England   E12000005            West Midlands   E06000051
#> 218       England   E12000005            West Midlands   E06000051
#> 219       England   E12000005            West Midlands   E08000025
#> 220       England   E12000005            West Midlands   E08000025
#> 221       England   E12000005            West Midlands   E08000025
#> 222       England   E12000005            West Midlands   E08000026
#> 223       England   E12000005            West Midlands   E08000026
#> 224       England   E12000005            West Midlands   E08000026
#> 225       England   E12000005            West Midlands   E08000027
#> 226       England   E12000005            West Midlands   E08000027
#> 227       England   E12000005            West Midlands   E08000027
#> 228       England   E12000005            West Midlands   E08000028
#> 229       England   E12000005            West Midlands   E08000028
#> 230       England   E12000005            West Midlands   E08000028
#> 231       England   E12000005            West Midlands   E08000029
#> 232       England   E12000005            West Midlands   E08000029
#> 233       England   E12000005            West Midlands   E08000029
#> 234       England   E12000005            West Midlands   E08000030
#> 235       England   E12000005            West Midlands   E08000030
#> 236       England   E12000005            West Midlands   E08000030
#> 237       England   E12000005            West Midlands   E08000031
#> 238       England   E12000005            West Midlands   E08000031
#> 239       England   E12000005            West Midlands   E08000031
#> 240       England   E12000005            West Midlands   E10000028
#> 241       England   E12000005            West Midlands   E10000028
#> 242       England   E12000005            West Midlands   E10000028
#> 243       England   E12000005            West Midlands   E10000031
#> 244       England   E12000005            West Midlands   E10000031
#> 245       England   E12000005            West Midlands   E10000031
#> 246       England   E12000005            West Midlands   E10000034
#> 247       England   E12000005            West Midlands   E10000034
#> 248       England   E12000005            West Midlands   E10000034
#> 249       England   E12000006          East of England        <NA>
#> 250       England   E12000006          East of England        <NA>
#> 251       England   E12000006          East of England        <NA>
#> 252       England   E12000006          East of England        <NA>
#> 253       England   E12000006          East of England   E06000031
#> 254       England   E12000006          East of England   E06000031
#> 255       England   E12000006          East of England   E06000031
#> 256       England   E12000006          East of England   E06000032
#> 257       England   E12000006          East of England   E06000032
#> 258       England   E12000006          East of England   E06000032
#> 259       England   E12000006          East of England   E06000033
#> 260       England   E12000006          East of England   E06000033
#> 261       England   E12000006          East of England   E06000033
#> 262       England   E12000006          East of England   E06000034
#> 263       England   E12000006          East of England   E06000034
#> 264       England   E12000006          East of England   E06000034
#> 265       England   E12000006          East of England   E06000055
#> 266       England   E12000006          East of England   E06000055
#> 267       England   E12000006          East of England   E06000055
#> 268       England   E12000006          East of England   E06000056
#> 269       England   E12000006          East of England   E06000056
#> 270       England   E12000006          East of England   E06000056
#> 271       England   E12000006          East of England   E10000003
#> 272       England   E12000006          East of England   E10000003
#> 273       England   E12000006          East of England   E10000003
#> 274       England   E12000006          East of England   E10000012
#> 275       England   E12000006          East of England   E10000012
#> 276       England   E12000006          East of England   E10000012
#> 277       England   E12000006          East of England   E10000015
#> 278       England   E12000006          East of England   E10000015
#> 279       England   E12000006          East of England   E10000015
#> 280       England   E12000006          East of England   E10000020
#> 281       England   E12000006          East of England   E10000020
#> 282       England   E12000006          East of England   E10000020
#> 283       England   E12000006          East of England   E10000029
#> 284       England   E12000006          East of England   E10000029
#> 285       England   E12000006          East of England   E10000029
#> 286       England   E12000007                   London        <NA>
#> 287       England   E12000007                   London        <NA>
#> 288       England   E12000007                   London        <NA>
#> 289       England   E12000007                   London        <NA>
#> 290       England   E12000007                   London   E09000001
#> 291       England   E12000007                   London   E09000002
#> 292       England   E12000007                   London   E09000002
#> 293       England   E12000007                   London   E09000002
#> 294       England   E12000007                   London   E09000003
#> 295       England   E12000007                   London   E09000003
#> 296       England   E12000007                   London   E09000003
#> 297       England   E12000007                   London   E09000004
#> 298       England   E12000007                   London   E09000004
#> 299       England   E12000007                   London   E09000004
#> 300       England   E12000007                   London   E09000005
#> 301       England   E12000007                   London   E09000005
#> 302       England   E12000007                   London   E09000005
#> 303       England   E12000007                   London   E09000006
#> 304       England   E12000007                   London   E09000006
#> 305       England   E12000007                   London   E09000006
#> 306       England   E12000007                   London   E09000007
#> 307       England   E12000007                   London   E09000007
#> 308       England   E12000007                   London   E09000007
#> 309       England   E12000007                   London   E09000008
#> 310       England   E12000007                   London   E09000008
#> 311       England   E12000007                   London   E09000008
#> 312       England   E12000007                   London   E09000009
#> 313       England   E12000007                   London   E09000009
#> 314       England   E12000007                   London   E09000009
#> 315       England   E12000007                   London   E09000010
#> 316       England   E12000007                   London   E09000010
#> 317       England   E12000007                   London   E09000010
#> 318       England   E12000007                   London   E09000011
#> 319       England   E12000007                   London   E09000011
#> 320       England   E12000007                   London   E09000011
#> 321       England   E12000007                   London   E09000012
#> 322       England   E12000007                   London   E09000012
#> 323       England   E12000007                   London   E09000012
#> 324       England   E12000007                   London   E09000013
#> 325       England   E12000007                   London   E09000013
#> 326       England   E12000007                   London   E09000013
#> 327       England   E12000007                   London   E09000014
#> 328       England   E12000007                   London   E09000014
#> 329       England   E12000007                   London   E09000014
#> 330       England   E12000007                   London   E09000015
#> 331       England   E12000007                   London   E09000015
#> 332       England   E12000007                   London   E09000015
#> 333       England   E12000007                   London   E09000016
#> 334       England   E12000007                   London   E09000016
#> 335       England   E12000007                   London   E09000016
#> 336       England   E12000007                   London   E09000017
#> 337       England   E12000007                   London   E09000017
#> 338       England   E12000007                   London   E09000017
#> 339       England   E12000007                   London   E09000018
#> 340       England   E12000007                   London   E09000018
#> 341       England   E12000007                   London   E09000018
#> 342       England   E12000007                   London   E09000019
#> 343       England   E12000007                   London   E09000019
#> 344       England   E12000007                   London   E09000019
#> 345       England   E12000007                   London   E09000020
#> 346       England   E12000007                   London   E09000020
#> 347       England   E12000007                   London   E09000020
#> 348       England   E12000007                   London   E09000021
#> 349       England   E12000007                   London   E09000021
#> 350       England   E12000007                   London   E09000021
#> 351       England   E12000007                   London   E09000022
#> 352       England   E12000007                   London   E09000022
#> 353       England   E12000007                   London   E09000022
#> 354       England   E12000007                   London   E09000023
#> 355       England   E12000007                   London   E09000023
#> 356       England   E12000007                   London   E09000023
#> 357       England   E12000007                   London   E09000024
#> 358       England   E12000007                   London   E09000024
#> 359       England   E12000007                   London   E09000024
#> 360       England   E12000007                   London   E09000025
#> 361       England   E12000007                   London   E09000025
#> 362       England   E12000007                   London   E09000025
#> 363       England   E12000007                   London   E09000026
#> 364       England   E12000007                   London   E09000026
#> 365       England   E12000007                   London   E09000026
#> 366       England   E12000007                   London   E09000027
#> 367       England   E12000007                   London   E09000027
#> 368       England   E12000007                   London   E09000027
#> 369       England   E12000007                   London   E09000028
#> 370       England   E12000007                   London   E09000028
#> 371       England   E12000007                   London   E09000028
#> 372       England   E12000007                   London   E09000029
#> 373       England   E12000007                   London   E09000029
#> 374       England   E12000007                   London   E09000029
#> 375       England   E12000007                   London   E09000030
#> 376       England   E12000007                   London   E09000030
#> 377       England   E12000007                   London   E09000030
#> 378       England   E12000007                   London   E09000031
#> 379       England   E12000007                   London   E09000031
#> 380       England   E12000007                   London   E09000031
#> 381       England   E12000007                   London   E09000032
#> 382       England   E12000007                   London   E09000032
#> 383       England   E12000007                   London   E09000032
#> 384       England   E12000007                   London   E09000033
#> 385       England   E12000007                   London   E09000033
#> 386       England   E12000007                   London   E09000033
#> 387       England   E12000008               South East        <NA>
#> 388       England   E12000008               South East        <NA>
#> 389       England   E12000008               South East        <NA>
#> 390       England   E12000008               South East        <NA>
#> 391       England   E12000008               South East   E06000035
#> 392       England   E12000008               South East   E06000035
#> 393       England   E12000008               South East   E06000035
#> 394       England   E12000008               South East   E06000036
#> 395       England   E12000008               South East   E06000036
#> 396       England   E12000008               South East   E06000036
#> 397       England   E12000008               South East   E06000037
#> 398       England   E12000008               South East   E06000037
#> 399       England   E12000008               South East   E06000037
#> 400       England   E12000008               South East   E06000038
#> 401       England   E12000008               South East   E06000038
#> 402       England   E12000008               South East   E06000038
#> 403       England   E12000008               South East   E06000039
#> 404       England   E12000008               South East   E06000039
#> 405       England   E12000008               South East   E06000039
#> 406       England   E12000008               South East   E06000040
#> 407       England   E12000008               South East   E06000040
#> 408       England   E12000008               South East   E06000040
#> 409       England   E12000008               South East   E06000041
#> 410       England   E12000008               South East   E06000041
#> 411       England   E12000008               South East   E06000041
#> 412       England   E12000008               South East   E06000042
#> 413       England   E12000008               South East   E06000042
#> 414       England   E12000008               South East   E06000042
#> 415       England   E12000008               South East   E06000043
#> 416       England   E12000008               South East   E06000043
#> 417       England   E12000008               South East   E06000043
#> 418       England   E12000008               South East   E06000044
#> 419       England   E12000008               South East   E06000044
#> 420       England   E12000008               South East   E06000044
#> 421       England   E12000008               South East   E06000045
#> 422       England   E12000008               South East   E06000045
#> 423       England   E12000008               South East   E06000045
#> 424       England   E12000008               South East   E06000046
#> 425       England   E12000008               South East   E06000046
#> 426       England   E12000008               South East   E06000046
#> 427       England   E12000008               South East   E06000060
#> 428       England   E12000008               South East   E06000060
#> 429       England   E12000008               South East   E06000060
#> 430       England   E12000008               South East   E10000011
#> 431       England   E12000008               South East   E10000011
#> 432       England   E12000008               South East   E10000011
#> 433       England   E12000008               South East   E10000014
#> 434       England   E12000008               South East   E10000014
#> 435       England   E12000008               South East   E10000014
#> 436       England   E12000008               South East   E10000016
#> 437       England   E12000008               South East   E10000016
#> 438       England   E12000008               South East   E10000016
#> 439       England   E12000008               South East   E10000025
#> 440       England   E12000008               South East   E10000025
#> 441       England   E12000008               South East   E10000025
#> 442       England   E12000008               South East   E10000030
#> 443       England   E12000008               South East   E10000030
#> 444       England   E12000008               South East   E10000030
#> 445       England   E12000008               South East   E10000032
#> 446       England   E12000008               South East   E10000032
#> 447       England   E12000008               South East   E10000032
#> 448       England   E12000009               South West        <NA>
#> 449       England   E12000009               South West        <NA>
#> 450       England   E12000009               South West        <NA>
#> 451       England   E12000009               South West        <NA>
#> 452       England   E12000009               South West   E06000022
#> 453       England   E12000009               South West   E06000022
#> 454       England   E12000009               South West   E06000022
#> 455       England   E12000009               South West   E06000023
#> 456       England   E12000009               South West   E06000023
#> 457       England   E12000009               South West   E06000023
#> 458       England   E12000009               South West   E06000024
#> 459       England   E12000009               South West   E06000024
#> 460       England   E12000009               South West   E06000024
#> 461       England   E12000009               South West   E06000025
#> 462       England   E12000009               South West   E06000025
#> 463       England   E12000009               South West   E06000025
#> 464       England   E12000009               South West   E06000026
#> 465       England   E12000009               South West   E06000026
#> 466       England   E12000009               South West   E06000026
#> 467       England   E12000009               South West   E06000027
#> 468       England   E12000009               South West   E06000027
#> 469       England   E12000009               South West   E06000027
#> 470       England   E12000009               South West   E06000030
#> 471       England   E12000009               South West   E06000030
#> 472       England   E12000009               South West   E06000030
#> 473       England   E12000009               South West   E06000052
#> 474       England   E12000009               South West   E06000052
#> 475       England   E12000009               South West   E06000052
#> 476       England   E12000009               South West   E06000053
#> 477       England   E12000009               South West   E06000054
#> 478       England   E12000009               South West   E06000054
#> 479       England   E12000009               South West   E06000054
#> 480       England   E12000009               South West   E06000058
#> 481       England   E12000009               South West   E06000058
#> 482       England   E12000009               South West   E06000058
#> 483       England   E12000009               South West   E06000059
#> 484       England   E12000009               South West   E06000059
#> 485       England   E12000009               South West   E06000059
#> 486       England   E12000009               South West   E06000066
#> 487       England   E12000009               South West   E06000066
#> 488       England   E12000009               South West   E06000066
#> 489       England   E12000009               South West   E10000008
#> 490       England   E12000009               South West   E10000008
#> 491       England   E12000009               South West   E10000008
#> 492       England   E12000009               South West   E10000013
#> 493       England   E12000009               South West   E10000013
#> 494       England   E12000009               South West   E10000013
#> 495       England        <NA>                     <NA>        <NA>
#> 496       England        <NA>                     <NA>        <NA>
#> 497       England        <NA>                     <NA>        <NA>
#> 498       England        <NA>                     <NA>        <NA>
#> 499       England   E12000001               North East        <NA>
#> 500       England   E12000001               North East        <NA>
#> 501       England   E12000001               North East        <NA>
#> 502       England   E12000001               North East        <NA>
#> 503       England   E12000001               North East   E06000001
#> 504       England   E12000001               North East   E06000001
#> 505       England   E12000001               North East   E06000001
#> 506       England   E12000001               North East   E06000002
#> 507       England   E12000001               North East   E06000002
#> 508       England   E12000001               North East   E06000002
#> 509       England   E12000001               North East   E06000003
#> 510       England   E12000001               North East   E06000003
#> 511       England   E12000001               North East   E06000003
#> 512       England   E12000001               North East   E06000004
#> 513       England   E12000001               North East   E06000004
#> 514       England   E12000001               North East   E06000004
#> 515       England   E12000001               North East   E06000005
#> 516       England   E12000001               North East   E06000005
#> 517       England   E12000001               North East   E06000005
#> 518       England   E12000001               North East   E06000047
#> 519       England   E12000001               North East   E06000047
#> 520       England   E12000001               North East   E06000047
#> 521       England   E12000001               North East   E06000057
#> 522       England   E12000001               North East   E06000057
#> 523       England   E12000001               North East   E06000057
#> 524       England   E12000001               North East   E08000021
#> 525       England   E12000001               North East   E08000021
#> 526       England   E12000001               North East   E08000021
#> 527       England   E12000001               North East   E08000022
#> 528       England   E12000001               North East   E08000022
#> 529       England   E12000001               North East   E08000022
#> 530       England   E12000001               North East   E08000023
#> 531       England   E12000001               North East   E08000023
#> 532       England   E12000001               North East   E08000023
#> 533       England   E12000001               North East   E08000024
#> 534       England   E12000001               North East   E08000024
#> 535       England   E12000001               North East   E08000024
#> 536       England   E12000001               North East   E08000037
#> 537       England   E12000001               North East   E08000037
#> 538       England   E12000001               North East   E08000037
#> 539       England   E12000002               North West        <NA>
#> 540       England   E12000002               North West        <NA>
#> 541       England   E12000002               North West        <NA>
#> 542       England   E12000002               North West        <NA>
#> 543       England   E12000002               North West   E06000006
#> 544       England   E12000002               North West   E06000006
#> 545       England   E12000002               North West   E06000006
#> 546       England   E12000002               North West   E06000007
#> 547       England   E12000002               North West   E06000007
#> 548       England   E12000002               North West   E06000007
#> 549       England   E12000002               North West   E06000008
#> 550       England   E12000002               North West   E06000008
#> 551       England   E12000002               North West   E06000008
#> 552       England   E12000002               North West   E06000009
#> 553       England   E12000002               North West   E06000009
#> 554       England   E12000002               North West   E06000009
#> 555       England   E12000002               North West   E06000049
#> 556       England   E12000002               North West   E06000049
#> 557       England   E12000002               North West   E06000049
#> 558       England   E12000002               North West   E06000050
#> 559       England   E12000002               North West   E06000050
#> 560       England   E12000002               North West   E06000050
#> 561       England   E12000002               North West   E06000063
#> 562       England   E12000002               North West   E06000063
#> 563       England   E12000002               North West   E06000063
#> 564       England   E12000002               North West   E06000064
#> 565       England   E12000002               North West   E06000064
#> 566       England   E12000002               North West   E06000064
#> 567       England   E12000002               North West   E08000001
#> 568       England   E12000002               North West   E08000001
#> 569       England   E12000002               North West   E08000001
#> 570       England   E12000002               North West   E08000002
#> 571       England   E12000002               North West   E08000002
#> 572       England   E12000002               North West   E08000002
#> 573       England   E12000002               North West   E08000003
#> 574       England   E12000002               North West   E08000003
#> 575       England   E12000002               North West   E08000003
#> 576       England   E12000002               North West   E08000004
#> 577       England   E12000002               North West   E08000004
#> 578       England   E12000002               North West   E08000004
#> 579       England   E12000002               North West   E08000005
#> 580       England   E12000002               North West   E08000005
#> 581       England   E12000002               North West   E08000005
#> 582       England   E12000002               North West   E08000006
#> 583       England   E12000002               North West   E08000006
#> 584       England   E12000002               North West   E08000006
#> 585       England   E12000002               North West   E08000007
#> 586       England   E12000002               North West   E08000007
#> 587       England   E12000002               North West   E08000007
#> 588       England   E12000002               North West   E08000008
#> 589       England   E12000002               North West   E08000008
#> 590       England   E12000002               North West   E08000008
#> 591       England   E12000002               North West   E08000009
#> 592       England   E12000002               North West   E08000009
#> 593       England   E12000002               North West   E08000009
#> 594       England   E12000002               North West   E08000010
#> 595       England   E12000002               North West   E08000010
#> 596       England   E12000002               North West   E08000010
#> 597       England   E12000002               North West   E08000011
#> 598       England   E12000002               North West   E08000011
#> 599       England   E12000002               North West   E08000011
#> 600       England   E12000002               North West   E08000012
#> 601       England   E12000002               North West   E08000012
#> 602       England   E12000002               North West   E08000012
#> 603       England   E12000002               North West   E08000013
#> 604       England   E12000002               North West   E08000013
#> 605       England   E12000002               North West   E08000013
#> 606       England   E12000002               North West   E08000014
#> 607       England   E12000002               North West   E08000014
#> 608       England   E12000002               North West   E08000014
#> 609       England   E12000002               North West   E08000015
#> 610       England   E12000002               North West   E08000015
#> 611       England   E12000002               North West   E08000015
#> 612       England   E12000002               North West   E10000017
#> 613       England   E12000002               North West   E10000017
#> 614       England   E12000002               North West   E10000017
#> 615       England   E12000003 Yorkshire and The Humber        <NA>
#> 616       England   E12000003 Yorkshire and The Humber        <NA>
#> 617       England   E12000003 Yorkshire and The Humber        <NA>
#> 618       England   E12000003 Yorkshire and The Humber        <NA>
#> 619       England   E12000003 Yorkshire and The Humber   E06000010
#> 620       England   E12000003 Yorkshire and The Humber   E06000010
#> 621       England   E12000003 Yorkshire and The Humber   E06000010
#> 622       England   E12000003 Yorkshire and The Humber   E06000011
#> 623       England   E12000003 Yorkshire and The Humber   E06000011
#> 624       England   E12000003 Yorkshire and The Humber   E06000011
#> 625       England   E12000003 Yorkshire and The Humber   E06000012
#> 626       England   E12000003 Yorkshire and The Humber   E06000012
#> 627       England   E12000003 Yorkshire and The Humber   E06000012
#> 628       England   E12000003 Yorkshire and The Humber   E06000013
#> 629       England   E12000003 Yorkshire and The Humber   E06000013
#> 630       England   E12000003 Yorkshire and The Humber   E06000013
#> 631       England   E12000003 Yorkshire and The Humber   E06000014
#> 632       England   E12000003 Yorkshire and The Humber   E06000014
#> 633       England   E12000003 Yorkshire and The Humber   E06000014
#> 634       England   E12000003 Yorkshire and The Humber   E06000065
#> 635       England   E12000003 Yorkshire and The Humber   E06000065
#> 636       England   E12000003 Yorkshire and The Humber   E06000065
#> 637       England   E12000003 Yorkshire and The Humber   E08000016
#> 638       England   E12000003 Yorkshire and The Humber   E08000016
#> 639       England   E12000003 Yorkshire and The Humber   E08000016
#> 640       England   E12000003 Yorkshire and The Humber   E08000017
#> 641       England   E12000003 Yorkshire and The Humber   E08000017
#> 642       England   E12000003 Yorkshire and The Humber   E08000017
#> 643       England   E12000003 Yorkshire and The Humber   E08000018
#> 644       England   E12000003 Yorkshire and The Humber   E08000018
#> 645       England   E12000003 Yorkshire and The Humber   E08000018
#> 646       England   E12000003 Yorkshire and The Humber   E08000019
#> 647       England   E12000003 Yorkshire and The Humber   E08000019
#> 648       England   E12000003 Yorkshire and The Humber   E08000019
#> 649       England   E12000003 Yorkshire and The Humber   E08000032
#> 650       England   E12000003 Yorkshire and The Humber   E08000032
#> 651       England   E12000003 Yorkshire and The Humber   E08000032
#> 652       England   E12000003 Yorkshire and The Humber   E08000033
#> 653       England   E12000003 Yorkshire and The Humber   E08000033
#> 654       England   E12000003 Yorkshire and The Humber   E08000033
#> 655       England   E12000003 Yorkshire and The Humber   E08000034
#> 656       England   E12000003 Yorkshire and The Humber   E08000034
#> 657       England   E12000003 Yorkshire and The Humber   E08000034
#> 658       England   E12000003 Yorkshire and The Humber   E08000035
#> 659       England   E12000003 Yorkshire and The Humber   E08000035
#> 660       England   E12000003 Yorkshire and The Humber   E08000035
#> 661       England   E12000003 Yorkshire and The Humber   E08000036
#> 662       England   E12000003 Yorkshire and The Humber   E08000036
#> 663       England   E12000003 Yorkshire and The Humber   E08000036
#> 664       England   E12000004            East Midlands        <NA>
#> 665       England   E12000004            East Midlands        <NA>
#> 666       England   E12000004            East Midlands        <NA>
#> 667       England   E12000004            East Midlands        <NA>
#> 668       England   E12000004            East Midlands   E06000015
#> 669       England   E12000004            East Midlands   E06000015
#> 670       England   E12000004            East Midlands   E06000015
#> 671       England   E12000004            East Midlands   E06000016
#> 672       England   E12000004            East Midlands   E06000016
#> 673       England   E12000004            East Midlands   E06000016
#> 674       England   E12000004            East Midlands   E06000017
#> 675       England   E12000004            East Midlands   E06000017
#> 676       England   E12000004            East Midlands   E06000018
#> 677       England   E12000004            East Midlands   E06000018
#> 678       England   E12000004            East Midlands   E06000018
#> 679       England   E12000004            East Midlands   E06000061
#> 680       England   E12000004            East Midlands   E06000061
#> 681       England   E12000004            East Midlands   E06000061
#> 682       England   E12000004            East Midlands   E06000062
#> 683       England   E12000004            East Midlands   E06000062
#> 684       England   E12000004            East Midlands   E06000062
#> 685       England   E12000004            East Midlands   E10000007
#> 686       England   E12000004            East Midlands   E10000007
#> 687       England   E12000004            East Midlands   E10000007
#> 688       England   E12000004            East Midlands   E10000018
#> 689       England   E12000004            East Midlands   E10000018
#> 690       England   E12000004            East Midlands   E10000018
#> 691       England   E12000004            East Midlands   E10000019
#> 692       England   E12000004            East Midlands   E10000019
#> 693       England   E12000004            East Midlands   E10000019
#> 694       England   E12000004            East Midlands   E10000024
#> 695       England   E12000004            East Midlands   E10000024
#> 696       England   E12000004            East Midlands   E10000024
#> 697       England   E12000005            West Midlands        <NA>
#> 698       England   E12000005            West Midlands        <NA>
#> 699       England   E12000005            West Midlands        <NA>
#> 700       England   E12000005            West Midlands        <NA>
#> 701       England   E12000005            West Midlands   E06000019
#> 702       England   E12000005            West Midlands   E06000019
#> 703       England   E12000005            West Midlands   E06000019
#> 704       England   E12000005            West Midlands   E06000020
#> 705       England   E12000005            West Midlands   E06000020
#> 706       England   E12000005            West Midlands   E06000020
#> 707       England   E12000005            West Midlands   E06000021
#> 708       England   E12000005            West Midlands   E06000021
#> 709       England   E12000005            West Midlands   E06000021
#> 710       England   E12000005            West Midlands   E06000051
#> 711       England   E12000005            West Midlands   E06000051
#> 712       England   E12000005            West Midlands   E06000051
#> 713       England   E12000005            West Midlands   E08000025
#> 714       England   E12000005            West Midlands   E08000025
#> 715       England   E12000005            West Midlands   E08000025
#> 716       England   E12000005            West Midlands   E08000026
#> 717       England   E12000005            West Midlands   E08000026
#> 718       England   E12000005            West Midlands   E08000026
#> 719       England   E12000005            West Midlands   E08000027
#> 720       England   E12000005            West Midlands   E08000027
#> 721       England   E12000005            West Midlands   E08000027
#> 722       England   E12000005            West Midlands   E08000028
#> 723       England   E12000005            West Midlands   E08000028
#> 724       England   E12000005            West Midlands   E08000028
#> 725       England   E12000005            West Midlands   E08000029
#> 726       England   E12000005            West Midlands   E08000029
#> 727       England   E12000005            West Midlands   E08000029
#> 728       England   E12000005            West Midlands   E08000030
#> 729       England   E12000005            West Midlands   E08000030
#> 730       England   E12000005            West Midlands   E08000030
#> 731       England   E12000005            West Midlands   E08000031
#> 732       England   E12000005            West Midlands   E08000031
#> 733       England   E12000005            West Midlands   E08000031
#> 734       England   E12000005            West Midlands   E10000028
#> 735       England   E12000005            West Midlands   E10000028
#> 736       England   E12000005            West Midlands   E10000028
#> 737       England   E12000005            West Midlands   E10000031
#> 738       England   E12000005            West Midlands   E10000031
#> 739       England   E12000005            West Midlands   E10000031
#> 740       England   E12000005            West Midlands   E10000034
#> 741       England   E12000005            West Midlands   E10000034
#> 742       England   E12000005            West Midlands   E10000034
#> 743       England   E12000006          East of England        <NA>
#> 744       England   E12000006          East of England        <NA>
#> 745       England   E12000006          East of England        <NA>
#> 746       England   E12000006          East of England        <NA>
#> 747       England   E12000006          East of England   E06000031
#> 748       England   E12000006          East of England   E06000031
#> 749       England   E12000006          East of England   E06000031
#> 750       England   E12000006          East of England   E06000032
#> 751       England   E12000006          East of England   E06000032
#> 752       England   E12000006          East of England   E06000032
#> 753       England   E12000006          East of England   E06000033
#> 754       England   E12000006          East of England   E06000033
#> 755       England   E12000006          East of England   E06000033
#> 756       England   E12000006          East of England   E06000034
#> 757       England   E12000006          East of England   E06000034
#> 758       England   E12000006          East of England   E06000034
#> 759       England   E12000006          East of England   E06000055
#> 760       England   E12000006          East of England   E06000055
#> 761       England   E12000006          East of England   E06000055
#> 762       England   E12000006          East of England   E06000056
#> 763       England   E12000006          East of England   E06000056
#> 764       England   E12000006          East of England   E06000056
#> 765       England   E12000006          East of England   E10000003
#> 766       England   E12000006          East of England   E10000003
#> 767       England   E12000006          East of England   E10000003
#> 768       England   E12000006          East of England   E10000012
#> 769       England   E12000006          East of England   E10000012
#> 770       England   E12000006          East of England   E10000012
#> 771       England   E12000006          East of England   E10000015
#> 772       England   E12000006          East of England   E10000015
#> 773       England   E12000006          East of England   E10000015
#> 774       England   E12000006          East of England   E10000020
#> 775       England   E12000006          East of England   E10000020
#> 776       England   E12000006          East of England   E10000020
#> 777       England   E12000006          East of England   E10000029
#> 778       England   E12000006          East of England   E10000029
#> 779       England   E12000006          East of England   E10000029
#> 780       England   E12000007                   London        <NA>
#> 781       England   E12000007                   London        <NA>
#> 782       England   E12000007                   London        <NA>
#> 783       England   E12000007                   London        <NA>
#> 784       England   E12000007                   London   E09000001
#> 785       England   E12000007                   London   E09000002
#> 786       England   E12000007                   London   E09000002
#> 787       England   E12000007                   London   E09000002
#> 788       England   E12000007                   London   E09000003
#> 789       England   E12000007                   London   E09000003
#> 790       England   E12000007                   London   E09000003
#> 791       England   E12000007                   London   E09000004
#> 792       England   E12000007                   London   E09000004
#> 793       England   E12000007                   London   E09000004
#> 794       England   E12000007                   London   E09000005
#> 795       England   E12000007                   London   E09000005
#> 796       England   E12000007                   London   E09000005
#> 797       England   E12000007                   London   E09000006
#> 798       England   E12000007                   London   E09000006
#> 799       England   E12000007                   London   E09000006
#> 800       England   E12000007                   London   E09000007
#> 801       England   E12000007                   London   E09000007
#> 802       England   E12000007                   London   E09000007
#> 803       England   E12000007                   London   E09000008
#> 804       England   E12000007                   London   E09000008
#> 805       England   E12000007                   London   E09000008
#> 806       England   E12000007                   London   E09000009
#> 807       England   E12000007                   London   E09000009
#> 808       England   E12000007                   London   E09000009
#> 809       England   E12000007                   London   E09000010
#> 810       England   E12000007                   London   E09000010
#> 811       England   E12000007                   London   E09000010
#> 812       England   E12000007                   London   E09000011
#> 813       England   E12000007                   London   E09000011
#> 814       England   E12000007                   London   E09000011
#> 815       England   E12000007                   London   E09000012
#> 816       England   E12000007                   London   E09000012
#> 817       England   E12000007                   London   E09000012
#> 818       England   E12000007                   London   E09000013
#> 819       England   E12000007                   London   E09000013
#> 820       England   E12000007                   London   E09000013
#> 821       England   E12000007                   London   E09000014
#> 822       England   E12000007                   London   E09000014
#> 823       England   E12000007                   London   E09000014
#> 824       England   E12000007                   London   E09000015
#> 825       England   E12000007                   London   E09000015
#> 826       England   E12000007                   London   E09000015
#> 827       England   E12000007                   London   E09000016
#> 828       England   E12000007                   London   E09000016
#> 829       England   E12000007                   London   E09000016
#> 830       England   E12000007                   London   E09000017
#> 831       England   E12000007                   London   E09000017
#> 832       England   E12000007                   London   E09000017
#> 833       England   E12000007                   London   E09000018
#> 834       England   E12000007                   London   E09000018
#> 835       England   E12000007                   London   E09000018
#> 836       England   E12000007                   London   E09000019
#> 837       England   E12000007                   London   E09000019
#> 838       England   E12000007                   London   E09000019
#> 839       England   E12000007                   London   E09000020
#> 840       England   E12000007                   London   E09000020
#> 841       England   E12000007                   London   E09000020
#> 842       England   E12000007                   London   E09000021
#> 843       England   E12000007                   London   E09000021
#> 844       England   E12000007                   London   E09000021
#> 845       England   E12000007                   London   E09000022
#> 846       England   E12000007                   London   E09000022
#> 847       England   E12000007                   London   E09000022
#> 848       England   E12000007                   London   E09000023
#> 849       England   E12000007                   London   E09000023
#> 850       England   E12000007                   London   E09000023
#> 851       England   E12000007                   London   E09000024
#> 852       England   E12000007                   London   E09000024
#> 853       England   E12000007                   London   E09000024
#> 854       England   E12000007                   London   E09000025
#> 855       England   E12000007                   London   E09000025
#> 856       England   E12000007                   London   E09000025
#> 857       England   E12000007                   London   E09000026
#> 858       England   E12000007                   London   E09000026
#> 859       England   E12000007                   London   E09000026
#> 860       England   E12000007                   London   E09000027
#> 861       England   E12000007                   London   E09000027
#> 862       England   E12000007                   London   E09000027
#> 863       England   E12000007                   London   E09000028
#> 864       England   E12000007                   London   E09000028
#> 865       England   E12000007                   London   E09000028
#> 866       England   E12000007                   London   E09000029
#> 867       England   E12000007                   London   E09000029
#> 868       England   E12000007                   London   E09000029
#> 869       England   E12000007                   London   E09000030
#> 870       England   E12000007                   London   E09000030
#> 871       England   E12000007                   London   E09000030
#> 872       England   E12000007                   London   E09000031
#> 873       England   E12000007                   London   E09000031
#> 874       England   E12000007                   London   E09000031
#> 875       England   E12000007                   London   E09000032
#> 876       England   E12000007                   London   E09000032
#> 877       England   E12000007                   London   E09000032
#> 878       England   E12000007                   London   E09000033
#> 879       England   E12000007                   London   E09000033
#> 880       England   E12000007                   London   E09000033
#> 881       England   E12000008               South East        <NA>
#> 882       England   E12000008               South East        <NA>
#> 883       England   E12000008               South East        <NA>
#> 884       England   E12000008               South East        <NA>
#> 885       England   E12000008               South East   E06000035
#> 886       England   E12000008               South East   E06000035
#> 887       England   E12000008               South East   E06000035
#> 888       England   E12000008               South East   E06000036
#> 889       England   E12000008               South East   E06000036
#> 890       England   E12000008               South East   E06000036
#> 891       England   E12000008               South East   E06000037
#> 892       England   E12000008               South East   E06000037
#> 893       England   E12000008               South East   E06000037
#> 894       England   E12000008               South East   E06000038
#> 895       England   E12000008               South East   E06000038
#> 896       England   E12000008               South East   E06000038
#> 897       England   E12000008               South East   E06000039
#> 898       England   E12000008               South East   E06000039
#> 899       England   E12000008               South East   E06000039
#> 900       England   E12000008               South East   E06000040
#> 901       England   E12000008               South East   E06000040
#> 902       England   E12000008               South East   E06000040
#> 903       England   E12000008               South East   E06000041
#> 904       England   E12000008               South East   E06000041
#> 905       England   E12000008               South East   E06000041
#> 906       England   E12000008               South East   E06000042
#> 907       England   E12000008               South East   E06000042
#> 908       England   E12000008               South East   E06000042
#> 909       England   E12000008               South East   E06000043
#> 910       England   E12000008               South East   E06000043
#> 911       England   E12000008               South East   E06000043
#> 912       England   E12000008               South East   E06000044
#> 913       England   E12000008               South East   E06000044
#> 914       England   E12000008               South East   E06000044
#> 915       England   E12000008               South East   E06000045
#> 916       England   E12000008               South East   E06000045
#> 917       England   E12000008               South East   E06000045
#> 918       England   E12000008               South East   E06000046
#> 919       England   E12000008               South East   E06000046
#> 920       England   E12000008               South East   E06000046
#> 921       England   E12000008               South East   E06000060
#> 922       England   E12000008               South East   E06000060
#> 923       England   E12000008               South East   E06000060
#> 924       England   E12000008               South East   E10000011
#> 925       England   E12000008               South East   E10000011
#> 926       England   E12000008               South East   E10000011
#> 927       England   E12000008               South East   E10000014
#> 928       England   E12000008               South East   E10000014
#> 929       England   E12000008               South East   E10000014
#> 930       England   E12000008               South East   E10000016
#> 931       England   E12000008               South East   E10000016
#> 932       England   E12000008               South East   E10000016
#> 933       England   E12000008               South East   E10000025
#> 934       England   E12000008               South East   E10000025
#> 935       England   E12000008               South East   E10000025
#> 936       England   E12000008               South East   E10000030
#> 937       England   E12000008               South East   E10000030
#> 938       England   E12000008               South East   E10000030
#> 939       England   E12000008               South East   E10000032
#> 940       England   E12000008               South East   E10000032
#> 941       England   E12000008               South East   E10000032
#> 942       England   E12000009               South West        <NA>
#> 943       England   E12000009               South West        <NA>
#> 944       England   E12000009               South West        <NA>
#> 945       England   E12000009               South West        <NA>
#> 946       England   E12000009               South West   E06000022
#> 947       England   E12000009               South West   E06000022
#> 948       England   E12000009               South West   E06000022
#> 949       England   E12000009               South West   E06000023
#> 950       England   E12000009               South West   E06000023
#> 951       England   E12000009               South West   E06000023
#> 952       England   E12000009               South West   E06000024
#> 953       England   E12000009               South West   E06000024
#> 954       England   E12000009               South West   E06000024
#> 955       England   E12000009               South West   E06000025
#> 956       England   E12000009               South West   E06000025
#> 957       England   E12000009               South West   E06000025
#> 958       England   E12000009               South West   E06000026
#> 959       England   E12000009               South West   E06000026
#> 960       England   E12000009               South West   E06000026
#> 961       England   E12000009               South West   E06000027
#> 962       England   E12000009               South West   E06000027
#> 963       England   E12000009               South West   E06000027
#> 964       England   E12000009               South West   E06000030
#> 965       England   E12000009               South West   E06000030
#> 966       England   E12000009               South West   E06000030
#> 967       England   E12000009               South West   E06000052
#> 968       England   E12000009               South West   E06000052
#> 969       England   E12000009               South West   E06000052
#> 970       England   E12000009               South West   E06000053
#> 971       England   E12000009               South West   E06000054
#> 972       England   E12000009               South West   E06000054
#> 973       England   E12000009               South West   E06000054
#> 974       England   E12000009               South West   E06000058
#> 975       England   E12000009               South West   E06000058
#> 976       England   E12000009               South West   E06000058
#> 977       England   E12000009               South West   E06000059
#> 978       England   E12000009               South West   E06000059
#> 979       England   E12000009               South West   E06000059
#> 980       England   E12000009               South West   E06000066
#> 981       England   E12000009               South West   E06000066
#> 982       England   E12000009               South West   E06000066
#> 983       England   E12000009               South West   E10000008
#> 984       England   E12000009               South West   E10000008
#> 985       England   E12000009               South West   E10000008
#> 986       England   E12000009               South West   E10000013
#> 987       England   E12000009               South West   E10000013
#> 988       England   E12000009               South West   E10000013
#> 989       England        <NA>                     <NA>        <NA>
#> 990       England        <NA>                     <NA>        <NA>
#> 991       England        <NA>                     <NA>        <NA>
#> 992       England        <NA>                     <NA>        <NA>
#> 993       England   E12000001               North East        <NA>
#> 994       England   E12000001               North East        <NA>
#> 995       England   E12000001               North East        <NA>
#> 996       England   E12000001               North East        <NA>
#> 997       England   E12000001               North East   E06000001
#> 998       England   E12000001               North East   E06000001
#> 999       England   E12000001               North East   E06000001
#> 1000      England   E12000001               North East   E06000002
#> 1001      England   E12000001               North East   E06000002
#> 1002      England   E12000001               North East   E06000002
#> 1003      England   E12000001               North East   E06000003
#> 1004      England   E12000001               North East   E06000003
#> 1005      England   E12000001               North East   E06000003
#> 1006      England   E12000001               North East   E06000004
#> 1007      England   E12000001               North East   E06000004
#> 1008      England   E12000001               North East   E06000004
#> 1009      England   E12000001               North East   E06000005
#> 1010      England   E12000001               North East   E06000005
#> 1011      England   E12000001               North East   E06000005
#> 1012      England   E12000001               North East   E06000047
#> 1013      England   E12000001               North East   E06000047
#> 1014      England   E12000001               North East   E06000047
#> 1015      England   E12000001               North East   E06000057
#> 1016      England   E12000001               North East   E06000057
#> 1017      England   E12000001               North East   E06000057
#> 1018      England   E12000001               North East   E08000021
#> 1019      England   E12000001               North East   E08000021
#> 1020      England   E12000001               North East   E08000021
#> 1021      England   E12000001               North East   E08000022
#> 1022      England   E12000001               North East   E08000022
#> 1023      England   E12000001               North East   E08000022
#> 1024      England   E12000001               North East   E08000023
#> 1025      England   E12000001               North East   E08000023
#> 1026      England   E12000001               North East   E08000023
#> 1027      England   E12000001               North East   E08000024
#> 1028      England   E12000001               North East   E08000024
#> 1029      England   E12000001               North East   E08000024
#> 1030      England   E12000001               North East   E08000037
#> 1031      England   E12000001               North East   E08000037
#> 1032      England   E12000001               North East   E08000037
#> 1033      England   E12000002               North West        <NA>
#> 1034      England   E12000002               North West        <NA>
#> 1035      England   E12000002               North West        <NA>
#> 1036      England   E12000002               North West        <NA>
#> 1037      England   E12000002               North West   E06000006
#> 1038      England   E12000002               North West   E06000006
#> 1039      England   E12000002               North West   E06000006
#> 1040      England   E12000002               North West   E06000007
#> 1041      England   E12000002               North West   E06000007
#> 1042      England   E12000002               North West   E06000007
#> 1043      England   E12000002               North West   E06000008
#> 1044      England   E12000002               North West   E06000008
#> 1045      England   E12000002               North West   E06000008
#> 1046      England   E12000002               North West   E06000009
#> 1047      England   E12000002               North West   E06000009
#> 1048      England   E12000002               North West   E06000009
#> 1049      England   E12000002               North West   E06000049
#> 1050      England   E12000002               North West   E06000049
#> 1051      England   E12000002               North West   E06000049
#> 1052      England   E12000002               North West   E06000050
#> 1053      England   E12000002               North West   E06000050
#> 1054      England   E12000002               North West   E06000050
#> 1055      England   E12000002               North West   E06000063
#> 1056      England   E12000002               North West   E06000063
#> 1057      England   E12000002               North West   E06000063
#> 1058      England   E12000002               North West   E06000064
#> 1059      England   E12000002               North West   E06000064
#> 1060      England   E12000002               North West   E06000064
#> 1061      England   E12000002               North West   E08000001
#> 1062      England   E12000002               North West   E08000001
#> 1063      England   E12000002               North West   E08000001
#> 1064      England   E12000002               North West   E08000002
#> 1065      England   E12000002               North West   E08000002
#> 1066      England   E12000002               North West   E08000002
#> 1067      England   E12000002               North West   E08000003
#> 1068      England   E12000002               North West   E08000003
#> 1069      England   E12000002               North West   E08000003
#> 1070      England   E12000002               North West   E08000004
#> 1071      England   E12000002               North West   E08000004
#> 1072      England   E12000002               North West   E08000004
#> 1073      England   E12000002               North West   E08000005
#> 1074      England   E12000002               North West   E08000005
#> 1075      England   E12000002               North West   E08000005
#> 1076      England   E12000002               North West   E08000006
#> 1077      England   E12000002               North West   E08000006
#> 1078      England   E12000002               North West   E08000006
#> 1079      England   E12000002               North West   E08000007
#> 1080      England   E12000002               North West   E08000007
#> 1081      England   E12000002               North West   E08000007
#> 1082      England   E12000002               North West   E08000008
#> 1083      England   E12000002               North West   E08000008
#> 1084      England   E12000002               North West   E08000008
#> 1085      England   E12000002               North West   E08000009
#> 1086      England   E12000002               North West   E08000009
#> 1087      England   E12000002               North West   E08000009
#> 1088      England   E12000002               North West   E08000010
#> 1089      England   E12000002               North West   E08000010
#> 1090      England   E12000002               North West   E08000010
#> 1091      England   E12000002               North West   E08000011
#> 1092      England   E12000002               North West   E08000011
#> 1093      England   E12000002               North West   E08000011
#> 1094      England   E12000002               North West   E08000012
#> 1095      England   E12000002               North West   E08000012
#> 1096      England   E12000002               North West   E08000012
#> 1097      England   E12000002               North West   E08000013
#> 1098      England   E12000002               North West   E08000013
#> 1099      England   E12000002               North West   E08000013
#> 1100      England   E12000002               North West   E08000014
#> 1101      England   E12000002               North West   E08000014
#> 1102      England   E12000002               North West   E08000014
#> 1103      England   E12000002               North West   E08000015
#> 1104      England   E12000002               North West   E08000015
#> 1105      England   E12000002               North West   E08000015
#> 1106      England   E12000002               North West   E10000017
#> 1107      England   E12000002               North West   E10000017
#> 1108      England   E12000002               North West   E10000017
#> 1109      England   E12000003 Yorkshire and The Humber        <NA>
#> 1110      England   E12000003 Yorkshire and The Humber        <NA>
#> 1111      England   E12000003 Yorkshire and The Humber        <NA>
#> 1112      England   E12000003 Yorkshire and The Humber        <NA>
#> 1113      England   E12000003 Yorkshire and The Humber   E06000010
#> 1114      England   E12000003 Yorkshire and The Humber   E06000010
#> 1115      England   E12000003 Yorkshire and The Humber   E06000010
#> 1116      England   E12000003 Yorkshire and The Humber   E06000011
#> 1117      England   E12000003 Yorkshire and The Humber   E06000011
#> 1118      England   E12000003 Yorkshire and The Humber   E06000011
#> 1119      England   E12000003 Yorkshire and The Humber   E06000012
#> 1120      England   E12000003 Yorkshire and The Humber   E06000012
#> 1121      England   E12000003 Yorkshire and The Humber   E06000012
#> 1122      England   E12000003 Yorkshire and The Humber   E06000013
#> 1123      England   E12000003 Yorkshire and The Humber   E06000013
#> 1124      England   E12000003 Yorkshire and The Humber   E06000013
#> 1125      England   E12000003 Yorkshire and The Humber   E06000014
#> 1126      England   E12000003 Yorkshire and The Humber   E06000014
#> 1127      England   E12000003 Yorkshire and The Humber   E06000014
#> 1128      England   E12000003 Yorkshire and The Humber   E06000065
#> 1129      England   E12000003 Yorkshire and The Humber   E06000065
#> 1130      England   E12000003 Yorkshire and The Humber   E06000065
#> 1131      England   E12000003 Yorkshire and The Humber   E08000016
#> 1132      England   E12000003 Yorkshire and The Humber   E08000016
#> 1133      England   E12000003 Yorkshire and The Humber   E08000016
#> 1134      England   E12000003 Yorkshire and The Humber   E08000017
#> 1135      England   E12000003 Yorkshire and The Humber   E08000017
#> 1136      England   E12000003 Yorkshire and The Humber   E08000017
#> 1137      England   E12000003 Yorkshire and The Humber   E08000018
#> 1138      England   E12000003 Yorkshire and The Humber   E08000018
#> 1139      England   E12000003 Yorkshire and The Humber   E08000018
#> 1140      England   E12000003 Yorkshire and The Humber   E08000019
#> 1141      England   E12000003 Yorkshire and The Humber   E08000019
#> 1142      England   E12000003 Yorkshire and The Humber   E08000019
#> 1143      England   E12000003 Yorkshire and The Humber   E08000032
#> 1144      England   E12000003 Yorkshire and The Humber   E08000032
#> 1145      England   E12000003 Yorkshire and The Humber   E08000032
#> 1146      England   E12000003 Yorkshire and The Humber   E08000033
#> 1147      England   E12000003 Yorkshire and The Humber   E08000033
#> 1148      England   E12000003 Yorkshire and The Humber   E08000033
#> 1149      England   E12000003 Yorkshire and The Humber   E08000034
#> 1150      England   E12000003 Yorkshire and The Humber   E08000034
#> 1151      England   E12000003 Yorkshire and The Humber   E08000034
#> 1152      England   E12000003 Yorkshire and The Humber   E08000035
#> 1153      England   E12000003 Yorkshire and The Humber   E08000035
#> 1154      England   E12000003 Yorkshire and The Humber   E08000035
#> 1155      England   E12000003 Yorkshire and The Humber   E08000036
#> 1156      England   E12000003 Yorkshire and The Humber   E08000036
#> 1157      England   E12000003 Yorkshire and The Humber   E08000036
#> 1158      England   E12000004            East Midlands        <NA>
#> 1159      England   E12000004            East Midlands        <NA>
#> 1160      England   E12000004            East Midlands        <NA>
#> 1161      England   E12000004            East Midlands        <NA>
#> 1162      England   E12000004            East Midlands   E06000015
#> 1163      England   E12000004            East Midlands   E06000015
#> 1164      England   E12000004            East Midlands   E06000015
#> 1165      England   E12000004            East Midlands   E06000016
#> 1166      England   E12000004            East Midlands   E06000016
#> 1167      England   E12000004            East Midlands   E06000016
#> 1168      England   E12000004            East Midlands   E06000017
#> 1169      England   E12000004            East Midlands   E06000017
#> 1170      England   E12000004            East Midlands   E06000018
#> 1171      England   E12000004            East Midlands   E06000018
#> 1172      England   E12000004            East Midlands   E06000018
#> 1173      England   E12000004            East Midlands   E06000061
#> 1174      England   E12000004            East Midlands   E06000061
#> 1175      England   E12000004            East Midlands   E06000061
#> 1176      England   E12000004            East Midlands   E06000062
#> 1177      England   E12000004            East Midlands   E06000062
#> 1178      England   E12000004            East Midlands   E06000062
#> 1179      England   E12000004            East Midlands   E10000007
#> 1180      England   E12000004            East Midlands   E10000007
#> 1181      England   E12000004            East Midlands   E10000007
#> 1182      England   E12000004            East Midlands   E10000018
#> 1183      England   E12000004            East Midlands   E10000018
#> 1184      England   E12000004            East Midlands   E10000018
#> 1185      England   E12000004            East Midlands   E10000019
#> 1186      England   E12000004            East Midlands   E10000019
#> 1187      England   E12000004            East Midlands   E10000019
#> 1188      England   E12000004            East Midlands   E10000024
#> 1189      England   E12000004            East Midlands   E10000024
#> 1190      England   E12000004            East Midlands   E10000024
#> 1191      England   E12000005            West Midlands        <NA>
#> 1192      England   E12000005            West Midlands        <NA>
#> 1193      England   E12000005            West Midlands        <NA>
#> 1194      England   E12000005            West Midlands        <NA>
#> 1195      England   E12000005            West Midlands   E06000019
#> 1196      England   E12000005            West Midlands   E06000019
#> 1197      England   E12000005            West Midlands   E06000019
#> 1198      England   E12000005            West Midlands   E06000020
#> 1199      England   E12000005            West Midlands   E06000020
#> 1200      England   E12000005            West Midlands   E06000020
#> 1201      England   E12000005            West Midlands   E06000021
#> 1202      England   E12000005            West Midlands   E06000021
#> 1203      England   E12000005            West Midlands   E06000021
#> 1204      England   E12000005            West Midlands   E06000051
#> 1205      England   E12000005            West Midlands   E06000051
#> 1206      England   E12000005            West Midlands   E06000051
#> 1207      England   E12000005            West Midlands   E08000025
#> 1208      England   E12000005            West Midlands   E08000025
#> 1209      England   E12000005            West Midlands   E08000025
#> 1210      England   E12000005            West Midlands   E08000026
#> 1211      England   E12000005            West Midlands   E08000026
#> 1212      England   E12000005            West Midlands   E08000026
#> 1213      England   E12000005            West Midlands   E08000027
#> 1214      England   E12000005            West Midlands   E08000027
#> 1215      England   E12000005            West Midlands   E08000027
#> 1216      England   E12000005            West Midlands   E08000028
#> 1217      England   E12000005            West Midlands   E08000028
#> 1218      England   E12000005            West Midlands   E08000028
#> 1219      England   E12000005            West Midlands   E08000029
#> 1220      England   E12000005            West Midlands   E08000029
#> 1221      England   E12000005            West Midlands   E08000029
#> 1222      England   E12000005            West Midlands   E08000030
#> 1223      England   E12000005            West Midlands   E08000030
#> 1224      England   E12000005            West Midlands   E08000030
#> 1225      England   E12000005            West Midlands   E08000031
#> 1226      England   E12000005            West Midlands   E08000031
#> 1227      England   E12000005            West Midlands   E08000031
#> 1228      England   E12000005            West Midlands   E10000028
#> 1229      England   E12000005            West Midlands   E10000028
#> 1230      England   E12000005            West Midlands   E10000028
#> 1231      England   E12000005            West Midlands   E10000031
#> 1232      England   E12000005            West Midlands   E10000031
#> 1233      England   E12000005            West Midlands   E10000031
#> 1234      England   E12000005            West Midlands   E10000034
#> 1235      England   E12000005            West Midlands   E10000034
#> 1236      England   E12000005            West Midlands   E10000034
#> 1237      England   E12000006          East of England        <NA>
#> 1238      England   E12000006          East of England        <NA>
#> 1239      England   E12000006          East of England        <NA>
#> 1240      England   E12000006          East of England        <NA>
#> 1241      England   E12000006          East of England   E06000031
#> 1242      England   E12000006          East of England   E06000031
#> 1243      England   E12000006          East of England   E06000031
#> 1244      England   E12000006          East of England   E06000032
#> 1245      England   E12000006          East of England   E06000032
#> 1246      England   E12000006          East of England   E06000032
#> 1247      England   E12000006          East of England   E06000033
#> 1248      England   E12000006          East of England   E06000033
#> 1249      England   E12000006          East of England   E06000033
#> 1250      England   E12000006          East of England   E06000034
#> 1251      England   E12000006          East of England   E06000034
#> 1252      England   E12000006          East of England   E06000034
#> 1253      England   E12000006          East of England   E06000055
#> 1254      England   E12000006          East of England   E06000055
#> 1255      England   E12000006          East of England   E06000055
#> 1256      England   E12000006          East of England   E06000056
#> 1257      England   E12000006          East of England   E06000056
#> 1258      England   E12000006          East of England   E06000056
#> 1259      England   E12000006          East of England   E10000003
#> 1260      England   E12000006          East of England   E10000003
#> 1261      England   E12000006          East of England   E10000003
#> 1262      England   E12000006          East of England   E10000012
#> 1263      England   E12000006          East of England   E10000012
#> 1264      England   E12000006          East of England   E10000012
#> 1265      England   E12000006          East of England   E10000015
#> 1266      England   E12000006          East of England   E10000015
#> 1267      England   E12000006          East of England   E10000015
#> 1268      England   E12000006          East of England   E10000020
#> 1269      England   E12000006          East of England   E10000020
#> 1270      England   E12000006          East of England   E10000020
#> 1271      England   E12000006          East of England   E10000029
#> 1272      England   E12000006          East of England   E10000029
#> 1273      England   E12000006          East of England   E10000029
#> 1274      England   E12000007                   London        <NA>
#> 1275      England   E12000007                   London        <NA>
#> 1276      England   E12000007                   London        <NA>
#> 1277      England   E12000007                   London        <NA>
#> 1278      England   E12000007                   London   E09000001
#> 1279      England   E12000007                   London   E09000002
#> 1280      England   E12000007                   London   E09000002
#> 1281      England   E12000007                   London   E09000002
#> 1282      England   E12000007                   London   E09000003
#> 1283      England   E12000007                   London   E09000003
#> 1284      England   E12000007                   London   E09000003
#> 1285      England   E12000007                   London   E09000004
#> 1286      England   E12000007                   London   E09000004
#> 1287      England   E12000007                   London   E09000004
#> 1288      England   E12000007                   London   E09000005
#> 1289      England   E12000007                   London   E09000005
#> 1290      England   E12000007                   London   E09000005
#> 1291      England   E12000007                   London   E09000006
#> 1292      England   E12000007                   London   E09000006
#> 1293      England   E12000007                   London   E09000006
#> 1294      England   E12000007                   London   E09000007
#> 1295      England   E12000007                   London   E09000007
#> 1296      England   E12000007                   London   E09000007
#> 1297      England   E12000007                   London   E09000008
#> 1298      England   E12000007                   London   E09000008
#> 1299      England   E12000007                   London   E09000008
#> 1300      England   E12000007                   London   E09000009
#> 1301      England   E12000007                   London   E09000009
#> 1302      England   E12000007                   London   E09000009
#> 1303      England   E12000007                   London   E09000010
#> 1304      England   E12000007                   London   E09000010
#> 1305      England   E12000007                   London   E09000010
#> 1306      England   E12000007                   London   E09000011
#> 1307      England   E12000007                   London   E09000011
#> 1308      England   E12000007                   London   E09000011
#> 1309      England   E12000007                   London   E09000012
#> 1310      England   E12000007                   London   E09000012
#> 1311      England   E12000007                   London   E09000012
#> 1312      England   E12000007                   London   E09000013
#> 1313      England   E12000007                   London   E09000013
#> 1314      England   E12000007                   London   E09000013
#> 1315      England   E12000007                   London   E09000014
#> 1316      England   E12000007                   London   E09000014
#> 1317      England   E12000007                   London   E09000014
#> 1318      England   E12000007                   London   E09000015
#> 1319      England   E12000007                   London   E09000015
#> 1320      England   E12000007                   London   E09000015
#> 1321      England   E12000007                   London   E09000016
#> 1322      England   E12000007                   London   E09000016
#> 1323      England   E12000007                   London   E09000016
#> 1324      England   E12000007                   London   E09000017
#> 1325      England   E12000007                   London   E09000017
#> 1326      England   E12000007                   London   E09000017
#> 1327      England   E12000007                   London   E09000018
#> 1328      England   E12000007                   London   E09000018
#> 1329      England   E12000007                   London   E09000018
#> 1330      England   E12000007                   London   E09000019
#> 1331      England   E12000007                   London   E09000019
#> 1332      England   E12000007                   London   E09000019
#> 1333      England   E12000007                   London   E09000020
#> 1334      England   E12000007                   London   E09000020
#> 1335      England   E12000007                   London   E09000020
#> 1336      England   E12000007                   London   E09000021
#> 1337      England   E12000007                   London   E09000021
#> 1338      England   E12000007                   London   E09000021
#> 1339      England   E12000007                   London   E09000022
#> 1340      England   E12000007                   London   E09000022
#> 1341      England   E12000007                   London   E09000022
#> 1342      England   E12000007                   London   E09000023
#> 1343      England   E12000007                   London   E09000023
#> 1344      England   E12000007                   London   E09000023
#> 1345      England   E12000007                   London   E09000024
#> 1346      England   E12000007                   London   E09000024
#> 1347      England   E12000007                   London   E09000024
#> 1348      England   E12000007                   London   E09000025
#> 1349      England   E12000007                   London   E09000025
#> 1350      England   E12000007                   London   E09000025
#> 1351      England   E12000007                   London   E09000026
#> 1352      England   E12000007                   London   E09000026
#> 1353      England   E12000007                   London   E09000026
#> 1354      England   E12000007                   London   E09000027
#> 1355      England   E12000007                   London   E09000027
#> 1356      England   E12000007                   London   E09000027
#> 1357      England   E12000007                   London   E09000028
#> 1358      England   E12000007                   London   E09000028
#> 1359      England   E12000007                   London   E09000028
#> 1360      England   E12000007                   London   E09000029
#> 1361      England   E12000007                   London   E09000029
#> 1362      England   E12000007                   London   E09000029
#> 1363      England   E12000007                   London   E09000030
#> 1364      England   E12000007                   London   E09000030
#> 1365      England   E12000007                   London   E09000030
#> 1366      England   E12000007                   London   E09000031
#> 1367      England   E12000007                   London   E09000031
#> 1368      England   E12000007                   London   E09000031
#> 1369      England   E12000007                   London   E09000032
#> 1370      England   E12000007                   London   E09000032
#> 1371      England   E12000007                   London   E09000032
#> 1372      England   E12000007                   London   E09000033
#> 1373      England   E12000007                   London   E09000033
#> 1374      England   E12000007                   London   E09000033
#> 1375      England   E12000008               South East        <NA>
#> 1376      England   E12000008               South East        <NA>
#> 1377      England   E12000008               South East        <NA>
#> 1378      England   E12000008               South East        <NA>
#> 1379      England   E12000008               South East   E06000035
#> 1380      England   E12000008               South East   E06000035
#> 1381      England   E12000008               South East   E06000035
#> 1382      England   E12000008               South East   E06000036
#> 1383      England   E12000008               South East   E06000036
#> 1384      England   E12000008               South East   E06000036
#> 1385      England   E12000008               South East   E06000037
#> 1386      England   E12000008               South East   E06000037
#> 1387      England   E12000008               South East   E06000037
#> 1388      England   E12000008               South East   E06000038
#> 1389      England   E12000008               South East   E06000038
#> 1390      England   E12000008               South East   E06000038
#> 1391      England   E12000008               South East   E06000039
#> 1392      England   E12000008               South East   E06000039
#> 1393      England   E12000008               South East   E06000039
#> 1394      England   E12000008               South East   E06000040
#> 1395      England   E12000008               South East   E06000040
#> 1396      England   E12000008               South East   E06000040
#> 1397      England   E12000008               South East   E06000041
#> 1398      England   E12000008               South East   E06000041
#> 1399      England   E12000008               South East   E06000041
#> 1400      England   E12000008               South East   E06000042
#> 1401      England   E12000008               South East   E06000042
#> 1402      England   E12000008               South East   E06000042
#> 1403      England   E12000008               South East   E06000043
#> 1404      England   E12000008               South East   E06000043
#> 1405      England   E12000008               South East   E06000043
#> 1406      England   E12000008               South East   E06000044
#> 1407      England   E12000008               South East   E06000044
#> 1408      England   E12000008               South East   E06000044
#> 1409      England   E12000008               South East   E06000045
#> 1410      England   E12000008               South East   E06000045
#> 1411      England   E12000008               South East   E06000045
#> 1412      England   E12000008               South East   E06000046
#> 1413      England   E12000008               South East   E06000046
#> 1414      England   E12000008               South East   E06000046
#> 1415      England   E12000008               South East   E06000060
#> 1416      England   E12000008               South East   E06000060
#> 1417      England   E12000008               South East   E06000060
#> 1418      England   E12000008               South East   E10000011
#> 1419      England   E12000008               South East   E10000011
#> 1420      England   E12000008               South East   E10000011
#> 1421      England   E12000008               South East   E10000014
#> 1422      England   E12000008               South East   E10000014
#> 1423      England   E12000008               South East   E10000014
#> 1424      England   E12000008               South East   E10000016
#> 1425      England   E12000008               South East   E10000016
#> 1426      England   E12000008               South East   E10000016
#> 1427      England   E12000008               South East   E10000025
#> 1428      England   E12000008               South East   E10000025
#> 1429      England   E12000008               South East   E10000025
#> 1430      England   E12000008               South East   E10000030
#> 1431      England   E12000008               South East   E10000030
#> 1432      England   E12000008               South East   E10000030
#> 1433      England   E12000008               South East   E10000032
#> 1434      England   E12000008               South East   E10000032
#> 1435      England   E12000008               South East   E10000032
#> 1436      England   E12000009               South West        <NA>
#> 1437      England   E12000009               South West        <NA>
#> 1438      England   E12000009               South West        <NA>
#> 1439      England   E12000009               South West        <NA>
#> 1440      England   E12000009               South West   E06000022
#> 1441      England   E12000009               South West   E06000022
#> 1442      England   E12000009               South West   E06000022
#> 1443      England   E12000009               South West   E06000023
#> 1444      England   E12000009               South West   E06000023
#> 1445      England   E12000009               South West   E06000023
#> 1446      England   E12000009               South West   E06000024
#> 1447      England   E12000009               South West   E06000024
#> 1448      England   E12000009               South West   E06000024
#> 1449      England   E12000009               South West   E06000025
#> 1450      England   E12000009               South West   E06000025
#> 1451      England   E12000009               South West   E06000025
#> 1452      England   E12000009               South West   E06000026
#> 1453      England   E12000009               South West   E06000026
#> 1454      England   E12000009               South West   E06000026
#> 1455      England   E12000009               South West   E06000027
#> 1456      England   E12000009               South West   E06000027
#> 1457      England   E12000009               South West   E06000027
#> 1458      England   E12000009               South West   E06000030
#> 1459      England   E12000009               South West   E06000030
#> 1460      England   E12000009               South West   E06000030
#> 1461      England   E12000009               South West   E06000052
#> 1462      England   E12000009               South West   E06000052
#> 1463      England   E12000009               South West   E06000052
#> 1464      England   E12000009               South West   E06000053
#> 1465      England   E12000009               South West   E06000054
#> 1466      England   E12000009               South West   E06000054
#> 1467      England   E12000009               South West   E06000054
#> 1468      England   E12000009               South West   E06000058
#> 1469      England   E12000009               South West   E06000058
#> 1470      England   E12000009               South West   E06000058
#> 1471      England   E12000009               South West   E06000059
#> 1472      England   E12000009               South West   E06000059
#> 1473      England   E12000009               South West   E06000059
#> 1474      England   E12000009               South West   E06000066
#> 1475      England   E12000009               South West   E06000066
#> 1476      England   E12000009               South West   E06000066
#> 1477      England   E12000009               South West   E10000008
#> 1478      England   E12000009               South West   E10000008
#> 1479      England   E12000009               South West   E10000008
#> 1480      England   E12000009               South West   E10000013
#> 1481      England   E12000009               South West   E10000013
#> 1482      England   E12000009               South West   E10000013
#> 1483      England        <NA>                     <NA>        <NA>
#> 1484      England        <NA>                     <NA>        <NA>
#> 1485      England        <NA>                     <NA>        <NA>
#> 1486      England        <NA>                     <NA>        <NA>
#> 1487      England   E12000001               North East        <NA>
#> 1488      England   E12000001               North East        <NA>
#> 1489      England   E12000001               North East        <NA>
#> 1490      England   E12000001               North East        <NA>
#> 1491      England   E12000001               North East   E06000001
#> 1492      England   E12000001               North East   E06000001
#> 1493      England   E12000001               North East   E06000001
#> 1494      England   E12000001               North East   E06000002
#> 1495      England   E12000001               North East   E06000002
#> 1496      England   E12000001               North East   E06000002
#> 1497      England   E12000001               North East   E06000003
#> 1498      England   E12000001               North East   E06000003
#> 1499      England   E12000001               North East   E06000003
#> 1500      England   E12000001               North East   E06000004
#> 1501      England   E12000001               North East   E06000004
#> 1502      England   E12000001               North East   E06000004
#> 1503      England   E12000001               North East   E06000005
#> 1504      England   E12000001               North East   E06000005
#> 1505      England   E12000001               North East   E06000005
#> 1506      England   E12000001               North East   E06000047
#> 1507      England   E12000001               North East   E06000047
#> 1508      England   E12000001               North East   E06000047
#> 1509      England   E12000001               North East   E06000057
#> 1510      England   E12000001               North East   E06000057
#> 1511      England   E12000001               North East   E06000057
#> 1512      England   E12000001               North East   E08000021
#> 1513      England   E12000001               North East   E08000021
#> 1514      England   E12000001               North East   E08000021
#> 1515      England   E12000001               North East   E08000022
#> 1516      England   E12000001               North East   E08000022
#> 1517      England   E12000001               North East   E08000022
#> 1518      England   E12000001               North East   E08000023
#> 1519      England   E12000001               North East   E08000023
#> 1520      England   E12000001               North East   E08000023
#> 1521      England   E12000001               North East   E08000024
#> 1522      England   E12000001               North East   E08000024
#> 1523      England   E12000001               North East   E08000024
#> 1524      England   E12000001               North East   E08000037
#> 1525      England   E12000001               North East   E08000037
#> 1526      England   E12000001               North East   E08000037
#> 1527      England   E12000002               North West        <NA>
#> 1528      England   E12000002               North West        <NA>
#> 1529      England   E12000002               North West        <NA>
#> 1530      England   E12000002               North West        <NA>
#> 1531      England   E12000002               North West   E06000006
#> 1532      England   E12000002               North West   E06000006
#> 1533      England   E12000002               North West   E06000006
#> 1534      England   E12000002               North West   E06000007
#> 1535      England   E12000002               North West   E06000007
#> 1536      England   E12000002               North West   E06000007
#> 1537      England   E12000002               North West   E06000008
#> 1538      England   E12000002               North West   E06000008
#> 1539      England   E12000002               North West   E06000008
#> 1540      England   E12000002               North West   E06000009
#> 1541      England   E12000002               North West   E06000009
#> 1542      England   E12000002               North West   E06000009
#> 1543      England   E12000002               North West   E06000049
#> 1544      England   E12000002               North West   E06000049
#> 1545      England   E12000002               North West   E06000049
#> 1546      England   E12000002               North West   E06000050
#> 1547      England   E12000002               North West   E06000050
#> 1548      England   E12000002               North West   E06000050
#> 1549      England   E12000002               North West   E06000063
#> 1550      England   E12000002               North West   E06000063
#> 1551      England   E12000002               North West   E06000063
#> 1552      England   E12000002               North West   E06000064
#> 1553      England   E12000002               North West   E06000064
#> 1554      England   E12000002               North West   E06000064
#> 1555      England   E12000002               North West   E08000001
#> 1556      England   E12000002               North West   E08000001
#> 1557      England   E12000002               North West   E08000001
#> 1558      England   E12000002               North West   E08000002
#> 1559      England   E12000002               North West   E08000002
#> 1560      England   E12000002               North West   E08000002
#> 1561      England   E12000002               North West   E08000003
#> 1562      England   E12000002               North West   E08000003
#> 1563      England   E12000002               North West   E08000003
#> 1564      England   E12000002               North West   E08000004
#> 1565      England   E12000002               North West   E08000004
#> 1566      England   E12000002               North West   E08000004
#> 1567      England   E12000002               North West   E08000005
#> 1568      England   E12000002               North West   E08000005
#> 1569      England   E12000002               North West   E08000005
#> 1570      England   E12000002               North West   E08000006
#> 1571      England   E12000002               North West   E08000006
#> 1572      England   E12000002               North West   E08000006
#> 1573      England   E12000002               North West   E08000007
#> 1574      England   E12000002               North West   E08000007
#> 1575      England   E12000002               North West   E08000007
#> 1576      England   E12000002               North West   E08000008
#> 1577      England   E12000002               North West   E08000008
#> 1578      England   E12000002               North West   E08000008
#> 1579      England   E12000002               North West   E08000009
#> 1580      England   E12000002               North West   E08000009
#> 1581      England   E12000002               North West   E08000009
#> 1582      England   E12000002               North West   E08000010
#> 1583      England   E12000002               North West   E08000010
#> 1584      England   E12000002               North West   E08000010
#> 1585      England   E12000002               North West   E08000011
#> 1586      England   E12000002               North West   E08000011
#> 1587      England   E12000002               North West   E08000011
#> 1588      England   E12000002               North West   E08000012
#> 1589      England   E12000002               North West   E08000012
#> 1590      England   E12000002               North West   E08000012
#> 1591      England   E12000002               North West   E08000013
#> 1592      England   E12000002               North West   E08000013
#> 1593      England   E12000002               North West   E08000013
#> 1594      England   E12000002               North West   E08000014
#> 1595      England   E12000002               North West   E08000014
#> 1596      England   E12000002               North West   E08000014
#> 1597      England   E12000002               North West   E08000015
#> 1598      England   E12000002               North West   E08000015
#> 1599      England   E12000002               North West   E08000015
#> 1600      England   E12000002               North West   E10000017
#> 1601      England   E12000002               North West   E10000017
#> 1602      England   E12000002               North West   E10000017
#> 1603      England   E12000003 Yorkshire and The Humber        <NA>
#> 1604      England   E12000003 Yorkshire and The Humber        <NA>
#> 1605      England   E12000003 Yorkshire and The Humber        <NA>
#> 1606      England   E12000003 Yorkshire and The Humber        <NA>
#> 1607      England   E12000003 Yorkshire and The Humber   E06000010
#> 1608      England   E12000003 Yorkshire and The Humber   E06000010
#> 1609      England   E12000003 Yorkshire and The Humber   E06000010
#> 1610      England   E12000003 Yorkshire and The Humber   E06000011
#> 1611      England   E12000003 Yorkshire and The Humber   E06000011
#> 1612      England   E12000003 Yorkshire and The Humber   E06000011
#> 1613      England   E12000003 Yorkshire and The Humber   E06000012
#> 1614      England   E12000003 Yorkshire and The Humber   E06000012
#> 1615      England   E12000003 Yorkshire and The Humber   E06000012
#> 1616      England   E12000003 Yorkshire and The Humber   E06000013
#> 1617      England   E12000003 Yorkshire and The Humber   E06000013
#> 1618      England   E12000003 Yorkshire and The Humber   E06000013
#> 1619      England   E12000003 Yorkshire and The Humber   E06000014
#> 1620      England   E12000003 Yorkshire and The Humber   E06000014
#> 1621      England   E12000003 Yorkshire and The Humber   E06000014
#> 1622      England   E12000003 Yorkshire and The Humber   E06000065
#> 1623      England   E12000003 Yorkshire and The Humber   E06000065
#> 1624      England   E12000003 Yorkshire and The Humber   E06000065
#> 1625      England   E12000003 Yorkshire and The Humber   E08000016
#> 1626      England   E12000003 Yorkshire and The Humber   E08000016
#> 1627      England   E12000003 Yorkshire and The Humber   E08000016
#> 1628      England   E12000003 Yorkshire and The Humber   E08000017
#> 1629      England   E12000003 Yorkshire and The Humber   E08000017
#> 1630      England   E12000003 Yorkshire and The Humber   E08000017
#> 1631      England   E12000003 Yorkshire and The Humber   E08000018
#> 1632      England   E12000003 Yorkshire and The Humber   E08000018
#> 1633      England   E12000003 Yorkshire and The Humber   E08000018
#> 1634      England   E12000003 Yorkshire and The Humber   E08000019
#> 1635      England   E12000003 Yorkshire and The Humber   E08000019
#> 1636      England   E12000003 Yorkshire and The Humber   E08000019
#> 1637      England   E12000003 Yorkshire and The Humber   E08000032
#> 1638      England   E12000003 Yorkshire and The Humber   E08000032
#> 1639      England   E12000003 Yorkshire and The Humber   E08000032
#> 1640      England   E12000003 Yorkshire and The Humber   E08000033
#> 1641      England   E12000003 Yorkshire and The Humber   E08000033
#> 1642      England   E12000003 Yorkshire and The Humber   E08000033
#> 1643      England   E12000003 Yorkshire and The Humber   E08000034
#> 1644      England   E12000003 Yorkshire and The Humber   E08000034
#> 1645      England   E12000003 Yorkshire and The Humber   E08000034
#> 1646      England   E12000003 Yorkshire and The Humber   E08000035
#> 1647      England   E12000003 Yorkshire and The Humber   E08000035
#> 1648      England   E12000003 Yorkshire and The Humber   E08000035
#> 1649      England   E12000003 Yorkshire and The Humber   E08000036
#> 1650      England   E12000003 Yorkshire and The Humber   E08000036
#> 1651      England   E12000003 Yorkshire and The Humber   E08000036
#> 1652      England   E12000004            East Midlands        <NA>
#> 1653      England   E12000004            East Midlands        <NA>
#> 1654      England   E12000004            East Midlands        <NA>
#> 1655      England   E12000004            East Midlands        <NA>
#> 1656      England   E12000004            East Midlands   E06000015
#> 1657      England   E12000004            East Midlands   E06000015
#> 1658      England   E12000004            East Midlands   E06000015
#> 1659      England   E12000004            East Midlands   E06000016
#> 1660      England   E12000004            East Midlands   E06000016
#> 1661      England   E12000004            East Midlands   E06000016
#> 1662      England   E12000004            East Midlands   E06000017
#> 1663      England   E12000004            East Midlands   E06000017
#> 1664      England   E12000004            East Midlands   E06000018
#> 1665      England   E12000004            East Midlands   E06000018
#> 1666      England   E12000004            East Midlands   E06000018
#> 1667      England   E12000004            East Midlands   E06000061
#> 1668      England   E12000004            East Midlands   E06000061
#> 1669      England   E12000004            East Midlands   E06000061
#> 1670      England   E12000004            East Midlands   E06000062
#> 1671      England   E12000004            East Midlands   E06000062
#> 1672      England   E12000004            East Midlands   E06000062
#> 1673      England   E12000004            East Midlands   E10000007
#> 1674      England   E12000004            East Midlands   E10000007
#> 1675      England   E12000004            East Midlands   E10000007
#> 1676      England   E12000004            East Midlands   E10000018
#> 1677      England   E12000004            East Midlands   E10000018
#> 1678      England   E12000004            East Midlands   E10000018
#> 1679      England   E12000004            East Midlands   E10000019
#> 1680      England   E12000004            East Midlands   E10000019
#> 1681      England   E12000004            East Midlands   E10000019
#> 1682      England   E12000004            East Midlands   E10000024
#> 1683      England   E12000004            East Midlands   E10000024
#> 1684      England   E12000004            East Midlands   E10000024
#> 1685      England   E12000005            West Midlands        <NA>
#> 1686      England   E12000005            West Midlands        <NA>
#> 1687      England   E12000005            West Midlands        <NA>
#> 1688      England   E12000005            West Midlands        <NA>
#> 1689      England   E12000005            West Midlands   E06000019
#> 1690      England   E12000005            West Midlands   E06000019
#> 1691      England   E12000005            West Midlands   E06000019
#> 1692      England   E12000005            West Midlands   E06000020
#> 1693      England   E12000005            West Midlands   E06000020
#> 1694      England   E12000005            West Midlands   E06000020
#> 1695      England   E12000005            West Midlands   E06000021
#> 1696      England   E12000005            West Midlands   E06000021
#> 1697      England   E12000005            West Midlands   E06000021
#> 1698      England   E12000005            West Midlands   E06000051
#> 1699      England   E12000005            West Midlands   E06000051
#> 1700      England   E12000005            West Midlands   E06000051
#> 1701      England   E12000005            West Midlands   E08000025
#> 1702      England   E12000005            West Midlands   E08000025
#> 1703      England   E12000005            West Midlands   E08000025
#> 1704      England   E12000005            West Midlands   E08000026
#> 1705      England   E12000005            West Midlands   E08000026
#> 1706      England   E12000005            West Midlands   E08000026
#> 1707      England   E12000005            West Midlands   E08000027
#> 1708      England   E12000005            West Midlands   E08000027
#> 1709      England   E12000005            West Midlands   E08000027
#> 1710      England   E12000005            West Midlands   E08000028
#> 1711      England   E12000005            West Midlands   E08000028
#> 1712      England   E12000005            West Midlands   E08000028
#> 1713      England   E12000005            West Midlands   E08000029
#> 1714      England   E12000005            West Midlands   E08000029
#> 1715      England   E12000005            West Midlands   E08000029
#> 1716      England   E12000005            West Midlands   E08000030
#> 1717      England   E12000005            West Midlands   E08000030
#> 1718      England   E12000005            West Midlands   E08000030
#> 1719      England   E12000005            West Midlands   E08000031
#> 1720      England   E12000005            West Midlands   E08000031
#> 1721      England   E12000005            West Midlands   E08000031
#> 1722      England   E12000005            West Midlands   E10000028
#> 1723      England   E12000005            West Midlands   E10000028
#> 1724      England   E12000005            West Midlands   E10000028
#> 1725      England   E12000005            West Midlands   E10000031
#> 1726      England   E12000005            West Midlands   E10000031
#> 1727      England   E12000005            West Midlands   E10000031
#> 1728      England   E12000005            West Midlands   E10000034
#> 1729      England   E12000005            West Midlands   E10000034
#> 1730      England   E12000005            West Midlands   E10000034
#> 1731      England   E12000006          East of England        <NA>
#> 1732      England   E12000006          East of England        <NA>
#> 1733      England   E12000006          East of England        <NA>
#> 1734      England   E12000006          East of England        <NA>
#> 1735      England   E12000006          East of England   E06000031
#> 1736      England   E12000006          East of England   E06000031
#> 1737      England   E12000006          East of England   E06000031
#> 1738      England   E12000006          East of England   E06000032
#> 1739      England   E12000006          East of England   E06000032
#> 1740      England   E12000006          East of England   E06000032
#> 1741      England   E12000006          East of England   E06000033
#> 1742      England   E12000006          East of England   E06000033
#> 1743      England   E12000006          East of England   E06000033
#> 1744      England   E12000006          East of England   E06000034
#> 1745      England   E12000006          East of England   E06000034
#> 1746      England   E12000006          East of England   E06000034
#> 1747      England   E12000006          East of England   E06000055
#> 1748      England   E12000006          East of England   E06000055
#> 1749      England   E12000006          East of England   E06000055
#> 1750      England   E12000006          East of England   E06000056
#> 1751      England   E12000006          East of England   E06000056
#> 1752      England   E12000006          East of England   E06000056
#> 1753      England   E12000006          East of England   E10000003
#> 1754      England   E12000006          East of England   E10000003
#> 1755      England   E12000006          East of England   E10000003
#> 1756      England   E12000006          East of England   E10000012
#> 1757      England   E12000006          East of England   E10000012
#> 1758      England   E12000006          East of England   E10000012
#> 1759      England   E12000006          East of England   E10000015
#> 1760      England   E12000006          East of England   E10000015
#> 1761      England   E12000006          East of England   E10000015
#> 1762      England   E12000006          East of England   E10000020
#> 1763      England   E12000006          East of England   E10000020
#> 1764      England   E12000006          East of England   E10000020
#> 1765      England   E12000006          East of England   E10000029
#> 1766      England   E12000006          East of England   E10000029
#> 1767      England   E12000006          East of England   E10000029
#> 1768      England   E12000007                   London        <NA>
#> 1769      England   E12000007                   London        <NA>
#> 1770      England   E12000007                   London        <NA>
#> 1771      England   E12000007                   London        <NA>
#> 1772      England   E12000007                   London   E09000001
#> 1773      England   E12000007                   London   E09000002
#> 1774      England   E12000007                   London   E09000002
#> 1775      England   E12000007                   London   E09000002
#> 1776      England   E12000007                   London   E09000003
#> 1777      England   E12000007                   London   E09000003
#> 1778      England   E12000007                   London   E09000003
#> 1779      England   E12000007                   London   E09000004
#> 1780      England   E12000007                   London   E09000004
#> 1781      England   E12000007                   London   E09000004
#> 1782      England   E12000007                   London   E09000005
#> 1783      England   E12000007                   London   E09000005
#> 1784      England   E12000007                   London   E09000005
#> 1785      England   E12000007                   London   E09000006
#> 1786      England   E12000007                   London   E09000006
#> 1787      England   E12000007                   London   E09000006
#> 1788      England   E12000007                   London   E09000007
#> 1789      England   E12000007                   London   E09000007
#> 1790      England   E12000007                   London   E09000007
#> 1791      England   E12000007                   London   E09000008
#> 1792      England   E12000007                   London   E09000008
#> 1793      England   E12000007                   London   E09000008
#> 1794      England   E12000007                   London   E09000009
#> 1795      England   E12000007                   London   E09000009
#> 1796      England   E12000007                   London   E09000009
#> 1797      England   E12000007                   London   E09000010
#> 1798      England   E12000007                   London   E09000010
#> 1799      England   E12000007                   London   E09000010
#> 1800      England   E12000007                   London   E09000011
#> 1801      England   E12000007                   London   E09000011
#> 1802      England   E12000007                   London   E09000011
#> 1803      England   E12000007                   London   E09000012
#> 1804      England   E12000007                   London   E09000012
#> 1805      England   E12000007                   London   E09000012
#> 1806      England   E12000007                   London   E09000013
#> 1807      England   E12000007                   London   E09000013
#> 1808      England   E12000007                   London   E09000013
#> 1809      England   E12000007                   London   E09000014
#> 1810      England   E12000007                   London   E09000014
#> 1811      England   E12000007                   London   E09000014
#> 1812      England   E12000007                   London   E09000015
#> 1813      England   E12000007                   London   E09000015
#> 1814      England   E12000007                   London   E09000015
#> 1815      England   E12000007                   London   E09000016
#> 1816      England   E12000007                   London   E09000016
#> 1817      England   E12000007                   London   E09000016
#> 1818      England   E12000007                   London   E09000017
#> 1819      England   E12000007                   London   E09000017
#> 1820      England   E12000007                   London   E09000017
#> 1821      England   E12000007                   London   E09000018
#> 1822      England   E12000007                   London   E09000018
#> 1823      England   E12000007                   London   E09000018
#> 1824      England   E12000007                   London   E09000019
#> 1825      England   E12000007                   London   E09000019
#> 1826      England   E12000007                   London   E09000019
#> 1827      England   E12000007                   London   E09000020
#> 1828      England   E12000007                   London   E09000020
#> 1829      England   E12000007                   London   E09000020
#> 1830      England   E12000007                   London   E09000021
#> 1831      England   E12000007                   London   E09000021
#> 1832      England   E12000007                   London   E09000021
#> 1833      England   E12000007                   London   E09000022
#> 1834      England   E12000007                   London   E09000022
#> 1835      England   E12000007                   London   E09000022
#> 1836      England   E12000007                   London   E09000023
#> 1837      England   E12000007                   London   E09000023
#> 1838      England   E12000007                   London   E09000023
#> 1839      England   E12000007                   London   E09000024
#> 1840      England   E12000007                   London   E09000024
#> 1841      England   E12000007                   London   E09000024
#> 1842      England   E12000007                   London   E09000025
#> 1843      England   E12000007                   London   E09000025
#> 1844      England   E12000007                   London   E09000025
#> 1845      England   E12000007                   London   E09000026
#> 1846      England   E12000007                   London   E09000026
#> 1847      England   E12000007                   London   E09000026
#> 1848      England   E12000007                   London   E09000027
#> 1849      England   E12000007                   London   E09000027
#> 1850      England   E12000007                   London   E09000027
#> 1851      England   E12000007                   London   E09000028
#> 1852      England   E12000007                   London   E09000028
#> 1853      England   E12000007                   London   E09000028
#> 1854      England   E12000007                   London   E09000029
#> 1855      England   E12000007                   London   E09000029
#> 1856      England   E12000007                   London   E09000029
#> 1857      England   E12000007                   London   E09000030
#> 1858      England   E12000007                   London   E09000030
#> 1859      England   E12000007                   London   E09000030
#> 1860      England   E12000007                   London   E09000031
#> 1861      England   E12000007                   London   E09000031
#> 1862      England   E12000007                   London   E09000031
#> 1863      England   E12000007                   London   E09000032
#> 1864      England   E12000007                   London   E09000032
#> 1865      England   E12000007                   London   E09000032
#> 1866      England   E12000007                   London   E09000033
#> 1867      England   E12000007                   London   E09000033
#> 1868      England   E12000007                   London   E09000033
#> 1869      England   E12000008               South East        <NA>
#> 1870      England   E12000008               South East        <NA>
#> 1871      England   E12000008               South East        <NA>
#> 1872      England   E12000008               South East        <NA>
#> 1873      England   E12000008               South East   E06000035
#> 1874      England   E12000008               South East   E06000035
#> 1875      England   E12000008               South East   E06000035
#> 1876      England   E12000008               South East   E06000036
#> 1877      England   E12000008               South East   E06000036
#> 1878      England   E12000008               South East   E06000036
#> 1879      England   E12000008               South East   E06000037
#> 1880      England   E12000008               South East   E06000037
#> 1881      England   E12000008               South East   E06000037
#> 1882      England   E12000008               South East   E06000038
#> 1883      England   E12000008               South East   E06000038
#> 1884      England   E12000008               South East   E06000038
#> 1885      England   E12000008               South East   E06000039
#> 1886      England   E12000008               South East   E06000039
#> 1887      England   E12000008               South East   E06000039
#> 1888      England   E12000008               South East   E06000040
#> 1889      England   E12000008               South East   E06000040
#> 1890      England   E12000008               South East   E06000040
#> 1891      England   E12000008               South East   E06000041
#> 1892      England   E12000008               South East   E06000041
#> 1893      England   E12000008               South East   E06000041
#> 1894      England   E12000008               South East   E06000042
#> 1895      England   E12000008               South East   E06000042
#> 1896      England   E12000008               South East   E06000042
#> 1897      England   E12000008               South East   E06000043
#> 1898      England   E12000008               South East   E06000043
#> 1899      England   E12000008               South East   E06000043
#> 1900      England   E12000008               South East   E06000044
#> 1901      England   E12000008               South East   E06000044
#> 1902      England   E12000008               South East   E06000044
#> 1903      England   E12000008               South East   E06000045
#> 1904      England   E12000008               South East   E06000045
#> 1905      England   E12000008               South East   E06000045
#> 1906      England   E12000008               South East   E06000046
#> 1907      England   E12000008               South East   E06000046
#> 1908      England   E12000008               South East   E06000046
#> 1909      England   E12000008               South East   E06000060
#> 1910      England   E12000008               South East   E06000060
#> 1911      England   E12000008               South East   E06000060
#> 1912      England   E12000008               South East   E10000011
#> 1913      England   E12000008               South East   E10000011
#> 1914      England   E12000008               South East   E10000011
#> 1915      England   E12000008               South East   E10000014
#> 1916      England   E12000008               South East   E10000014
#> 1917      England   E12000008               South East   E10000014
#> 1918      England   E12000008               South East   E10000016
#> 1919      England   E12000008               South East   E10000016
#> 1920      England   E12000008               South East   E10000016
#> 1921      England   E12000008               South East   E10000025
#> 1922      England   E12000008               South East   E10000025
#> 1923      England   E12000008               South East   E10000025
#> 1924      England   E12000008               South East   E10000030
#> 1925      England   E12000008               South East   E10000030
#> 1926      England   E12000008               South East   E10000030
#> 1927      England   E12000008               South East   E10000032
#> 1928      England   E12000008               South East   E10000032
#> 1929      England   E12000008               South East   E10000032
#> 1930      England   E12000009               South West        <NA>
#> 1931      England   E12000009               South West        <NA>
#> 1932      England   E12000009               South West        <NA>
#> 1933      England   E12000009               South West        <NA>
#> 1934      England   E12000009               South West   E06000022
#> 1935      England   E12000009               South West   E06000022
#> 1936      England   E12000009               South West   E06000022
#> 1937      England   E12000009               South West   E06000023
#> 1938      England   E12000009               South West   E06000023
#> 1939      England   E12000009               South West   E06000023
#> 1940      England   E12000009               South West   E06000024
#> 1941      England   E12000009               South West   E06000024
#> 1942      England   E12000009               South West   E06000024
#> 1943      England   E12000009               South West   E06000025
#> 1944      England   E12000009               South West   E06000025
#> 1945      England   E12000009               South West   E06000025
#> 1946      England   E12000009               South West   E06000026
#> 1947      England   E12000009               South West   E06000026
#> 1948      England   E12000009               South West   E06000026
#> 1949      England   E12000009               South West   E06000027
#> 1950      England   E12000009               South West   E06000027
#> 1951      England   E12000009               South West   E06000027
#> 1952      England   E12000009               South West   E06000030
#> 1953      England   E12000009               South West   E06000030
#> 1954      England   E12000009               South West   E06000030
#> 1955      England   E12000009               South West   E06000052
#> 1956      England   E12000009               South West   E06000052
#> 1957      England   E12000009               South West   E06000052
#> 1958      England   E12000009               South West   E06000053
#> 1959      England   E12000009               South West   E06000054
#> 1960      England   E12000009               South West   E06000054
#> 1961      England   E12000009               South West   E06000054
#> 1962      England   E12000009               South West   E06000058
#> 1963      England   E12000009               South West   E06000058
#> 1964      England   E12000009               South West   E06000058
#> 1965      England   E12000009               South West   E06000059
#> 1966      England   E12000009               South West   E06000059
#> 1967      England   E12000009               South West   E06000059
#> 1968      England   E12000009               South West   E06000066
#> 1969      England   E12000009               South West   E06000066
#> 1970      England   E12000009               South West   E06000066
#> 1971      England   E12000009               South West   E10000008
#> 1972      England   E12000009               South West   E10000008
#> 1973      England   E12000009               South West   E10000008
#> 1974      England   E12000009               South West   E10000013
#> 1975      England   E12000009               South West   E10000013
#> 1976      England   E12000009               South West   E10000013
#> 1977      England        <NA>                     <NA>        <NA>
#> 1978      England        <NA>                     <NA>        <NA>
#> 1979      England        <NA>                     <NA>        <NA>
#> 1980      England        <NA>                     <NA>        <NA>
#> 1981      England   E12000001               North East        <NA>
#> 1982      England   E12000001               North East        <NA>
#> 1983      England   E12000001               North East        <NA>
#> 1984      England   E12000001               North East        <NA>
#> 1985      England   E12000001               North East   E06000001
#> 1986      England   E12000001               North East   E06000001
#> 1987      England   E12000001               North East   E06000001
#> 1988      England   E12000001               North East   E06000002
#> 1989      England   E12000001               North East   E06000002
#> 1990      England   E12000001               North East   E06000002
#> 1991      England   E12000001               North East   E06000003
#> 1992      England   E12000001               North East   E06000003
#> 1993      England   E12000001               North East   E06000003
#> 1994      England   E12000001               North East   E06000004
#> 1995      England   E12000001               North East   E06000004
#> 1996      England   E12000001               North East   E06000004
#> 1997      England   E12000001               North East   E06000005
#> 1998      England   E12000001               North East   E06000005
#> 1999      England   E12000001               North East   E06000005
#> 2000      England   E12000001               North East   E06000047
#> 2001      England   E12000001               North East   E06000047
#> 2002      England   E12000001               North East   E06000047
#> 2003      England   E12000001               North East   E06000057
#> 2004      England   E12000001               North East   E06000057
#> 2005      England   E12000001               North East   E06000057
#> 2006      England   E12000001               North East   E08000021
#> 2007      England   E12000001               North East   E08000021
#> 2008      England   E12000001               North East   E08000021
#> 2009      England   E12000001               North East   E08000022
#> 2010      England   E12000001               North East   E08000022
#> 2011      England   E12000001               North East   E08000022
#> 2012      England   E12000001               North East   E08000023
#> 2013      England   E12000001               North East   E08000023
#> 2014      England   E12000001               North East   E08000023
#> 2015      England   E12000001               North East   E08000024
#> 2016      England   E12000001               North East   E08000024
#> 2017      England   E12000001               North East   E08000024
#> 2018      England   E12000001               North East   E08000037
#> 2019      England   E12000001               North East   E08000037
#> 2020      England   E12000001               North East   E08000037
#> 2021      England   E12000002               North West        <NA>
#> 2022      England   E12000002               North West        <NA>
#> 2023      England   E12000002               North West        <NA>
#> 2024      England   E12000002               North West        <NA>
#> 2025      England   E12000002               North West   E06000006
#> 2026      England   E12000002               North West   E06000006
#> 2027      England   E12000002               North West   E06000006
#> 2028      England   E12000002               North West   E06000007
#> 2029      England   E12000002               North West   E06000007
#> 2030      England   E12000002               North West   E06000007
#> 2031      England   E12000002               North West   E06000008
#> 2032      England   E12000002               North West   E06000008
#> 2033      England   E12000002               North West   E06000008
#> 2034      England   E12000002               North West   E06000009
#> 2035      England   E12000002               North West   E06000009
#> 2036      England   E12000002               North West   E06000009
#> 2037      England   E12000002               North West   E06000049
#> 2038      England   E12000002               North West   E06000049
#> 2039      England   E12000002               North West   E06000049
#> 2040      England   E12000002               North West   E06000050
#> 2041      England   E12000002               North West   E06000050
#> 2042      England   E12000002               North West   E06000050
#> 2043      England   E12000002               North West   E06000063
#> 2044      England   E12000002               North West   E06000063
#> 2045      England   E12000002               North West   E06000063
#> 2046      England   E12000002               North West   E06000064
#> 2047      England   E12000002               North West   E06000064
#> 2048      England   E12000002               North West   E06000064
#> 2049      England   E12000002               North West   E08000001
#> 2050      England   E12000002               North West   E08000001
#> 2051      England   E12000002               North West   E08000001
#> 2052      England   E12000002               North West   E08000002
#> 2053      England   E12000002               North West   E08000002
#> 2054      England   E12000002               North West   E08000002
#> 2055      England   E12000002               North West   E08000003
#> 2056      England   E12000002               North West   E08000003
#> 2057      England   E12000002               North West   E08000003
#> 2058      England   E12000002               North West   E08000004
#> 2059      England   E12000002               North West   E08000004
#> 2060      England   E12000002               North West   E08000004
#> 2061      England   E12000002               North West   E08000005
#> 2062      England   E12000002               North West   E08000005
#> 2063      England   E12000002               North West   E08000005
#> 2064      England   E12000002               North West   E08000006
#> 2065      England   E12000002               North West   E08000006
#> 2066      England   E12000002               North West   E08000006
#> 2067      England   E12000002               North West   E08000007
#> 2068      England   E12000002               North West   E08000007
#> 2069      England   E12000002               North West   E08000007
#> 2070      England   E12000002               North West   E08000008
#> 2071      England   E12000002               North West   E08000008
#> 2072      England   E12000002               North West   E08000008
#> 2073      England   E12000002               North West   E08000009
#> 2074      England   E12000002               North West   E08000009
#> 2075      England   E12000002               North West   E08000009
#> 2076      England   E12000002               North West   E08000010
#> 2077      England   E12000002               North West   E08000010
#> 2078      England   E12000002               North West   E08000010
#> 2079      England   E12000002               North West   E08000011
#> 2080      England   E12000002               North West   E08000011
#> 2081      England   E12000002               North West   E08000011
#> 2082      England   E12000002               North West   E08000012
#> 2083      England   E12000002               North West   E08000012
#> 2084      England   E12000002               North West   E08000012
#> 2085      England   E12000002               North West   E08000013
#> 2086      England   E12000002               North West   E08000013
#> 2087      England   E12000002               North West   E08000013
#> 2088      England   E12000002               North West   E08000014
#> 2089      England   E12000002               North West   E08000014
#> 2090      England   E12000002               North West   E08000014
#> 2091      England   E12000002               North West   E08000015
#> 2092      England   E12000002               North West   E08000015
#> 2093      England   E12000002               North West   E08000015
#> 2094      England   E12000002               North West   E10000017
#> 2095      England   E12000002               North West   E10000017
#> 2096      England   E12000002               North West   E10000017
#> 2097      England   E12000003 Yorkshire and The Humber        <NA>
#> 2098      England   E12000003 Yorkshire and The Humber        <NA>
#> 2099      England   E12000003 Yorkshire and The Humber        <NA>
#> 2100      England   E12000003 Yorkshire and The Humber        <NA>
#> 2101      England   E12000003 Yorkshire and The Humber   E06000010
#> 2102      England   E12000003 Yorkshire and The Humber   E06000010
#> 2103      England   E12000003 Yorkshire and The Humber   E06000010
#> 2104      England   E12000003 Yorkshire and The Humber   E06000011
#> 2105      England   E12000003 Yorkshire and The Humber   E06000011
#> 2106      England   E12000003 Yorkshire and The Humber   E06000011
#> 2107      England   E12000003 Yorkshire and The Humber   E06000012
#> 2108      England   E12000003 Yorkshire and The Humber   E06000012
#> 2109      England   E12000003 Yorkshire and The Humber   E06000012
#> 2110      England   E12000003 Yorkshire and The Humber   E06000013
#> 2111      England   E12000003 Yorkshire and The Humber   E06000013
#> 2112      England   E12000003 Yorkshire and The Humber   E06000013
#> 2113      England   E12000003 Yorkshire and The Humber   E06000014
#> 2114      England   E12000003 Yorkshire and The Humber   E06000014
#> 2115      England   E12000003 Yorkshire and The Humber   E06000014
#> 2116      England   E12000003 Yorkshire and The Humber   E06000065
#> 2117      England   E12000003 Yorkshire and The Humber   E06000065
#> 2118      England   E12000003 Yorkshire and The Humber   E06000065
#> 2119      England   E12000003 Yorkshire and The Humber   E08000016
#> 2120      England   E12000003 Yorkshire and The Humber   E08000016
#> 2121      England   E12000003 Yorkshire and The Humber   E08000016
#> 2122      England   E12000003 Yorkshire and The Humber   E08000017
#> 2123      England   E12000003 Yorkshire and The Humber   E08000017
#> 2124      England   E12000003 Yorkshire and The Humber   E08000017
#> 2125      England   E12000003 Yorkshire and The Humber   E08000018
#> 2126      England   E12000003 Yorkshire and The Humber   E08000018
#> 2127      England   E12000003 Yorkshire and The Humber   E08000018
#> 2128      England   E12000003 Yorkshire and The Humber   E08000019
#> 2129      England   E12000003 Yorkshire and The Humber   E08000019
#> 2130      England   E12000003 Yorkshire and The Humber   E08000019
#> 2131      England   E12000003 Yorkshire and The Humber   E08000032
#> 2132      England   E12000003 Yorkshire and The Humber   E08000032
#> 2133      England   E12000003 Yorkshire and The Humber   E08000032
#> 2134      England   E12000003 Yorkshire and The Humber   E08000033
#> 2135      England   E12000003 Yorkshire and The Humber   E08000033
#> 2136      England   E12000003 Yorkshire and The Humber   E08000033
#> 2137      England   E12000003 Yorkshire and The Humber   E08000034
#> 2138      England   E12000003 Yorkshire and The Humber   E08000034
#> 2139      England   E12000003 Yorkshire and The Humber   E08000034
#> 2140      England   E12000003 Yorkshire and The Humber   E08000035
#> 2141      England   E12000003 Yorkshire and The Humber   E08000035
#> 2142      England   E12000003 Yorkshire and The Humber   E08000035
#> 2143      England   E12000003 Yorkshire and The Humber   E08000036
#> 2144      England   E12000003 Yorkshire and The Humber   E08000036
#> 2145      England   E12000003 Yorkshire and The Humber   E08000036
#> 2146      England   E12000004            East Midlands        <NA>
#> 2147      England   E12000004            East Midlands        <NA>
#> 2148      England   E12000004            East Midlands        <NA>
#> 2149      England   E12000004            East Midlands        <NA>
#> 2150      England   E12000004            East Midlands   E06000015
#> 2151      England   E12000004            East Midlands   E06000015
#> 2152      England   E12000004            East Midlands   E06000015
#> 2153      England   E12000004            East Midlands   E06000016
#> 2154      England   E12000004            East Midlands   E06000016
#> 2155      England   E12000004            East Midlands   E06000016
#> 2156      England   E12000004            East Midlands   E06000017
#> 2157      England   E12000004            East Midlands   E06000017
#> 2158      England   E12000004            East Midlands   E06000018
#> 2159      England   E12000004            East Midlands   E06000018
#> 2160      England   E12000004            East Midlands   E06000018
#> 2161      England   E12000004            East Midlands   E06000061
#> 2162      England   E12000004            East Midlands   E06000061
#> 2163      England   E12000004            East Midlands   E06000061
#> 2164      England   E12000004            East Midlands   E06000062
#> 2165      England   E12000004            East Midlands   E06000062
#> 2166      England   E12000004            East Midlands   E06000062
#> 2167      England   E12000004            East Midlands   E10000007
#> 2168      England   E12000004            East Midlands   E10000007
#> 2169      England   E12000004            East Midlands   E10000007
#> 2170      England   E12000004            East Midlands   E10000018
#> 2171      England   E12000004            East Midlands   E10000018
#> 2172      England   E12000004            East Midlands   E10000018
#> 2173      England   E12000004            East Midlands   E10000019
#> 2174      England   E12000004            East Midlands   E10000019
#> 2175      England   E12000004            East Midlands   E10000019
#> 2176      England   E12000004            East Midlands   E10000024
#> 2177      England   E12000004            East Midlands   E10000024
#> 2178      England   E12000004            East Midlands   E10000024
#> 2179      England   E12000005            West Midlands        <NA>
#> 2180      England   E12000005            West Midlands        <NA>
#> 2181      England   E12000005            West Midlands        <NA>
#> 2182      England   E12000005            West Midlands        <NA>
#> 2183      England   E12000005            West Midlands   E06000019
#> 2184      England   E12000005            West Midlands   E06000019
#> 2185      England   E12000005            West Midlands   E06000019
#> 2186      England   E12000005            West Midlands   E06000020
#> 2187      England   E12000005            West Midlands   E06000020
#> 2188      England   E12000005            West Midlands   E06000020
#> 2189      England   E12000005            West Midlands   E06000021
#> 2190      England   E12000005            West Midlands   E06000021
#> 2191      England   E12000005            West Midlands   E06000021
#> 2192      England   E12000005            West Midlands   E06000051
#> 2193      England   E12000005            West Midlands   E06000051
#> 2194      England   E12000005            West Midlands   E06000051
#> 2195      England   E12000005            West Midlands   E08000025
#> 2196      England   E12000005            West Midlands   E08000025
#> 2197      England   E12000005            West Midlands   E08000025
#> 2198      England   E12000005            West Midlands   E08000026
#> 2199      England   E12000005            West Midlands   E08000026
#> 2200      England   E12000005            West Midlands   E08000026
#> 2201      England   E12000005            West Midlands   E08000027
#> 2202      England   E12000005            West Midlands   E08000027
#> 2203      England   E12000005            West Midlands   E08000027
#> 2204      England   E12000005            West Midlands   E08000028
#> 2205      England   E12000005            West Midlands   E08000028
#> 2206      England   E12000005            West Midlands   E08000028
#> 2207      England   E12000005            West Midlands   E08000029
#> 2208      England   E12000005            West Midlands   E08000029
#> 2209      England   E12000005            West Midlands   E08000029
#> 2210      England   E12000005            West Midlands   E08000030
#> 2211      England   E12000005            West Midlands   E08000030
#> 2212      England   E12000005            West Midlands   E08000030
#> 2213      England   E12000005            West Midlands   E08000031
#> 2214      England   E12000005            West Midlands   E08000031
#> 2215      England   E12000005            West Midlands   E08000031
#> 2216      England   E12000005            West Midlands   E10000028
#> 2217      England   E12000005            West Midlands   E10000028
#> 2218      England   E12000005            West Midlands   E10000028
#> 2219      England   E12000005            West Midlands   E10000031
#> 2220      England   E12000005            West Midlands   E10000031
#> 2221      England   E12000005            West Midlands   E10000031
#> 2222      England   E12000005            West Midlands   E10000034
#> 2223      England   E12000005            West Midlands   E10000034
#> 2224      England   E12000005            West Midlands   E10000034
#> 2225      England   E12000006          East of England        <NA>
#> 2226      England   E12000006          East of England        <NA>
#> 2227      England   E12000006          East of England        <NA>
#> 2228      England   E12000006          East of England        <NA>
#> 2229      England   E12000006          East of England   E06000031
#> 2230      England   E12000006          East of England   E06000031
#> 2231      England   E12000006          East of England   E06000031
#> 2232      England   E12000006          East of England   E06000032
#> 2233      England   E12000006          East of England   E06000032
#> 2234      England   E12000006          East of England   E06000032
#> 2235      England   E12000006          East of England   E06000033
#> 2236      England   E12000006          East of England   E06000033
#> 2237      England   E12000006          East of England   E06000033
#> 2238      England   E12000006          East of England   E06000034
#> 2239      England   E12000006          East of England   E06000034
#> 2240      England   E12000006          East of England   E06000034
#> 2241      England   E12000006          East of England   E06000055
#> 2242      England   E12000006          East of England   E06000055
#> 2243      England   E12000006          East of England   E06000055
#> 2244      England   E12000006          East of England   E06000056
#> 2245      England   E12000006          East of England   E06000056
#> 2246      England   E12000006          East of England   E06000056
#> 2247      England   E12000006          East of England   E10000003
#> 2248      England   E12000006          East of England   E10000003
#> 2249      England   E12000006          East of England   E10000003
#> 2250      England   E12000006          East of England   E10000012
#> 2251      England   E12000006          East of England   E10000012
#> 2252      England   E12000006          East of England   E10000012
#> 2253      England   E12000006          East of England   E10000015
#> 2254      England   E12000006          East of England   E10000015
#> 2255      England   E12000006          East of England   E10000015
#> 2256      England   E12000006          East of England   E10000020
#> 2257      England   E12000006          East of England   E10000020
#> 2258      England   E12000006          East of England   E10000020
#> 2259      England   E12000006          East of England   E10000029
#> 2260      England   E12000006          East of England   E10000029
#> 2261      England   E12000006          East of England   E10000029
#> 2262      England   E12000007                   London        <NA>
#> 2263      England   E12000007                   London        <NA>
#> 2264      England   E12000007                   London        <NA>
#> 2265      England   E12000007                   London        <NA>
#> 2266      England   E12000007                   London   E09000001
#> 2267      England   E12000007                   London   E09000002
#> 2268      England   E12000007                   London   E09000002
#> 2269      England   E12000007                   London   E09000002
#> 2270      England   E12000007                   London   E09000003
#> 2271      England   E12000007                   London   E09000003
#> 2272      England   E12000007                   London   E09000003
#> 2273      England   E12000007                   London   E09000004
#> 2274      England   E12000007                   London   E09000004
#> 2275      England   E12000007                   London   E09000004
#> 2276      England   E12000007                   London   E09000005
#> 2277      England   E12000007                   London   E09000005
#> 2278      England   E12000007                   London   E09000005
#> 2279      England   E12000007                   London   E09000006
#> 2280      England   E12000007                   London   E09000006
#> 2281      England   E12000007                   London   E09000006
#> 2282      England   E12000007                   London   E09000007
#> 2283      England   E12000007                   London   E09000007
#> 2284      England   E12000007                   London   E09000007
#> 2285      England   E12000007                   London   E09000008
#> 2286      England   E12000007                   London   E09000008
#> 2287      England   E12000007                   London   E09000008
#> 2288      England   E12000007                   London   E09000009
#> 2289      England   E12000007                   London   E09000009
#> 2290      England   E12000007                   London   E09000009
#> 2291      England   E12000007                   London   E09000010
#> 2292      England   E12000007                   London   E09000010
#> 2293      England   E12000007                   London   E09000010
#> 2294      England   E12000007                   London   E09000011
#> 2295      England   E12000007                   London   E09000011
#> 2296      England   E12000007                   London   E09000011
#> 2297      England   E12000007                   London   E09000012
#> 2298      England   E12000007                   London   E09000012
#> 2299      England   E12000007                   London   E09000012
#> 2300      England   E12000007                   London   E09000013
#> 2301      England   E12000007                   London   E09000013
#> 2302      England   E12000007                   London   E09000013
#> 2303      England   E12000007                   London   E09000014
#> 2304      England   E12000007                   London   E09000014
#> 2305      England   E12000007                   London   E09000014
#> 2306      England   E12000007                   London   E09000015
#> 2307      England   E12000007                   London   E09000015
#> 2308      England   E12000007                   London   E09000015
#> 2309      England   E12000007                   London   E09000016
#> 2310      England   E12000007                   London   E09000016
#> 2311      England   E12000007                   London   E09000016
#> 2312      England   E12000007                   London   E09000017
#> 2313      England   E12000007                   London   E09000017
#> 2314      England   E12000007                   London   E09000017
#> 2315      England   E12000007                   London   E09000018
#> 2316      England   E12000007                   London   E09000018
#> 2317      England   E12000007                   London   E09000018
#> 2318      England   E12000007                   London   E09000019
#> 2319      England   E12000007                   London   E09000019
#> 2320      England   E12000007                   London   E09000019
#> 2321      England   E12000007                   London   E09000020
#> 2322      England   E12000007                   London   E09000020
#> 2323      England   E12000007                   London   E09000020
#> 2324      England   E12000007                   London   E09000021
#> 2325      England   E12000007                   London   E09000021
#> 2326      England   E12000007                   London   E09000021
#> 2327      England   E12000007                   London   E09000022
#> 2328      England   E12000007                   London   E09000022
#> 2329      England   E12000007                   London   E09000022
#> 2330      England   E12000007                   London   E09000023
#> 2331      England   E12000007                   London   E09000023
#> 2332      England   E12000007                   London   E09000023
#> 2333      England   E12000007                   London   E09000024
#> 2334      England   E12000007                   London   E09000024
#> 2335      England   E12000007                   London   E09000024
#> 2336      England   E12000007                   London   E09000025
#> 2337      England   E12000007                   London   E09000025
#> 2338      England   E12000007                   London   E09000025
#> 2339      England   E12000007                   London   E09000026
#> 2340      England   E12000007                   London   E09000026
#> 2341      England   E12000007                   London   E09000026
#> 2342      England   E12000007                   London   E09000027
#> 2343      England   E12000007                   London   E09000027
#> 2344      England   E12000007                   London   E09000027
#> 2345      England   E12000007                   London   E09000028
#> 2346      England   E12000007                   London   E09000028
#> 2347      England   E12000007                   London   E09000028
#> 2348      England   E12000007                   London   E09000029
#> 2349      England   E12000007                   London   E09000029
#> 2350      England   E12000007                   London   E09000029
#> 2351      England   E12000007                   London   E09000030
#> 2352      England   E12000007                   London   E09000030
#> 2353      England   E12000007                   London   E09000030
#> 2354      England   E12000007                   London   E09000031
#> 2355      England   E12000007                   London   E09000031
#> 2356      England   E12000007                   London   E09000031
#> 2357      England   E12000007                   London   E09000032
#> 2358      England   E12000007                   London   E09000032
#> 2359      England   E12000007                   London   E09000032
#> 2360      England   E12000007                   London   E09000033
#> 2361      England   E12000007                   London   E09000033
#> 2362      England   E12000007                   London   E09000033
#> 2363      England   E12000008               South East        <NA>
#> 2364      England   E12000008               South East        <NA>
#> 2365      England   E12000008               South East        <NA>
#> 2366      England   E12000008               South East        <NA>
#> 2367      England   E12000008               South East   E06000035
#> 2368      England   E12000008               South East   E06000035
#> 2369      England   E12000008               South East   E06000035
#> 2370      England   E12000008               South East   E06000036
#> 2371      England   E12000008               South East   E06000036
#> 2372      England   E12000008               South East   E06000036
#> 2373      England   E12000008               South East   E06000037
#> 2374      England   E12000008               South East   E06000037
#> 2375      England   E12000008               South East   E06000037
#> 2376      England   E12000008               South East   E06000038
#> 2377      England   E12000008               South East   E06000038
#> 2378      England   E12000008               South East   E06000038
#> 2379      England   E12000008               South East   E06000039
#> 2380      England   E12000008               South East   E06000039
#> 2381      England   E12000008               South East   E06000039
#> 2382      England   E12000008               South East   E06000040
#> 2383      England   E12000008               South East   E06000040
#> 2384      England   E12000008               South East   E06000040
#> 2385      England   E12000008               South East   E06000041
#> 2386      England   E12000008               South East   E06000041
#> 2387      England   E12000008               South East   E06000041
#> 2388      England   E12000008               South East   E06000042
#> 2389      England   E12000008               South East   E06000042
#> 2390      England   E12000008               South East   E06000042
#> 2391      England   E12000008               South East   E06000043
#> 2392      England   E12000008               South East   E06000043
#> 2393      England   E12000008               South East   E06000043
#> 2394      England   E12000008               South East   E06000044
#> 2395      England   E12000008               South East   E06000044
#> 2396      England   E12000008               South East   E06000044
#> 2397      England   E12000008               South East   E06000045
#> 2398      England   E12000008               South East   E06000045
#> 2399      England   E12000008               South East   E06000045
#> 2400      England   E12000008               South East   E06000046
#> 2401      England   E12000008               South East   E06000046
#> 2402      England   E12000008               South East   E06000046
#> 2403      England   E12000008               South East   E06000060
#> 2404      England   E12000008               South East   E06000060
#> 2405      England   E12000008               South East   E06000060
#> 2406      England   E12000008               South East   E10000011
#> 2407      England   E12000008               South East   E10000011
#> 2408      England   E12000008               South East   E10000011
#> 2409      England   E12000008               South East   E10000014
#> 2410      England   E12000008               South East   E10000014
#> 2411      England   E12000008               South East   E10000014
#> 2412      England   E12000008               South East   E10000016
#> 2413      England   E12000008               South East   E10000016
#> 2414      England   E12000008               South East   E10000016
#> 2415      England   E12000008               South East   E10000025
#> 2416      England   E12000008               South East   E10000025
#> 2417      England   E12000008               South East   E10000025
#> 2418      England   E12000008               South East   E10000030
#> 2419      England   E12000008               South East   E10000030
#> 2420      England   E12000008               South East   E10000030
#> 2421      England   E12000008               South East   E10000032
#> 2422      England   E12000008               South East   E10000032
#> 2423      England   E12000008               South East   E10000032
#> 2424      England   E12000009               South West        <NA>
#> 2425      England   E12000009               South West        <NA>
#> 2426      England   E12000009               South West        <NA>
#> 2427      England   E12000009               South West        <NA>
#> 2428      England   E12000009               South West   E06000022
#> 2429      England   E12000009               South West   E06000022
#> 2430      England   E12000009               South West   E06000022
#> 2431      England   E12000009               South West   E06000023
#> 2432      England   E12000009               South West   E06000023
#> 2433      England   E12000009               South West   E06000023
#> 2434      England   E12000009               South West   E06000024
#> 2435      England   E12000009               South West   E06000024
#> 2436      England   E12000009               South West   E06000024
#> 2437      England   E12000009               South West   E06000025
#> 2438      England   E12000009               South West   E06000025
#> 2439      England   E12000009               South West   E06000025
#> 2440      England   E12000009               South West   E06000026
#> 2441      England   E12000009               South West   E06000026
#> 2442      England   E12000009               South West   E06000026
#> 2443      England   E12000009               South West   E06000027
#> 2444      England   E12000009               South West   E06000027
#> 2445      England   E12000009               South West   E06000027
#> 2446      England   E12000009               South West   E06000030
#> 2447      England   E12000009               South West   E06000030
#> 2448      England   E12000009               South West   E06000030
#> 2449      England   E12000009               South West   E06000052
#> 2450      England   E12000009               South West   E06000052
#> 2451      England   E12000009               South West   E06000052
#> 2452      England   E12000009               South West   E06000053
#> 2453      England   E12000009               South West   E06000054
#> 2454      England   E12000009               South West   E06000054
#> 2455      England   E12000009               South West   E06000054
#> 2456      England   E12000009               South West   E06000058
#> 2457      England   E12000009               South West   E06000058
#> 2458      England   E12000009               South West   E06000058
#> 2459      England   E12000009               South West   E06000059
#> 2460      England   E12000009               South West   E06000059
#> 2461      England   E12000009               South West   E06000059
#> 2462      England   E12000009               South West   E06000066
#> 2463      England   E12000009               South West   E06000066
#> 2464      England   E12000009               South West   E06000066
#> 2465      England   E12000009               South West   E10000008
#> 2466      England   E12000009               South West   E10000008
#> 2467      England   E12000009               South West   E10000008
#> 2468      England   E12000009               South West   E10000013
#> 2469      England   E12000009               South West   E10000013
#> 2470      England   E12000009               South West   E10000013
#> 2471      England        <NA>                     <NA>        <NA>
#> 2472      England        <NA>                     <NA>        <NA>
#> 2473      England        <NA>                     <NA>        <NA>
#> 2474      England        <NA>                     <NA>        <NA>
#> 2475      England   E12000001               North East        <NA>
#> 2476      England   E12000001               North East        <NA>
#> 2477      England   E12000001               North East        <NA>
#> 2478      England   E12000001               North East        <NA>
#> 2479      England   E12000001               North East   E06000001
#> 2480      England   E12000001               North East   E06000001
#> 2481      England   E12000001               North East   E06000001
#> 2482      England   E12000001               North East   E06000002
#> 2483      England   E12000001               North East   E06000002
#> 2484      England   E12000001               North East   E06000002
#> 2485      England   E12000001               North East   E06000003
#> 2486      England   E12000001               North East   E06000003
#> 2487      England   E12000001               North East   E06000003
#> 2488      England   E12000001               North East   E06000004
#> 2489      England   E12000001               North East   E06000004
#> 2490      England   E12000001               North East   E06000004
#> 2491      England   E12000001               North East   E06000005
#> 2492      England   E12000001               North East   E06000005
#> 2493      England   E12000001               North East   E06000005
#> 2494      England   E12000001               North East   E06000047
#> 2495      England   E12000001               North East   E06000047
#> 2496      England   E12000001               North East   E06000047
#> 2497      England   E12000001               North East   E06000057
#> 2498      England   E12000001               North East   E06000057
#> 2499      England   E12000001               North East   E06000057
#> 2500      England   E12000001               North East   E08000021
#> 2501      England   E12000001               North East   E08000021
#> 2502      England   E12000001               North East   E08000021
#> 2503      England   E12000001               North East   E08000022
#> 2504      England   E12000001               North East   E08000022
#> 2505      England   E12000001               North East   E08000022
#> 2506      England   E12000001               North East   E08000023
#> 2507      England   E12000001               North East   E08000023
#> 2508      England   E12000001               North East   E08000023
#> 2509      England   E12000001               North East   E08000024
#> 2510      England   E12000001               North East   E08000024
#> 2511      England   E12000001               North East   E08000024
#> 2512      England   E12000001               North East   E08000037
#> 2513      England   E12000001               North East   E08000037
#> 2514      England   E12000001               North East   E08000037
#> 2515      England   E12000002               North West        <NA>
#> 2516      England   E12000002               North West        <NA>
#> 2517      England   E12000002               North West        <NA>
#> 2518      England   E12000002               North West        <NA>
#> 2519      England   E12000002               North West   E06000006
#> 2520      England   E12000002               North West   E06000006
#> 2521      England   E12000002               North West   E06000006
#> 2522      England   E12000002               North West   E06000007
#> 2523      England   E12000002               North West   E06000007
#> 2524      England   E12000002               North West   E06000007
#> 2525      England   E12000002               North West   E06000008
#> 2526      England   E12000002               North West   E06000008
#> 2527      England   E12000002               North West   E06000008
#> 2528      England   E12000002               North West   E06000009
#> 2529      England   E12000002               North West   E06000009
#> 2530      England   E12000002               North West   E06000009
#> 2531      England   E12000002               North West   E06000049
#> 2532      England   E12000002               North West   E06000049
#> 2533      England   E12000002               North West   E06000049
#> 2534      England   E12000002               North West   E06000050
#> 2535      England   E12000002               North West   E06000050
#> 2536      England   E12000002               North West   E06000050
#> 2537      England   E12000002               North West   E06000063
#> 2538      England   E12000002               North West   E06000063
#> 2539      England   E12000002               North West   E06000063
#> 2540      England   E12000002               North West   E06000064
#> 2541      England   E12000002               North West   E06000064
#> 2542      England   E12000002               North West   E06000064
#> 2543      England   E12000002               North West   E08000001
#> 2544      England   E12000002               North West   E08000001
#> 2545      England   E12000002               North West   E08000001
#> 2546      England   E12000002               North West   E08000002
#> 2547      England   E12000002               North West   E08000002
#> 2548      England   E12000002               North West   E08000002
#> 2549      England   E12000002               North West   E08000003
#> 2550      England   E12000002               North West   E08000003
#> 2551      England   E12000002               North West   E08000003
#> 2552      England   E12000002               North West   E08000004
#> 2553      England   E12000002               North West   E08000004
#> 2554      England   E12000002               North West   E08000004
#> 2555      England   E12000002               North West   E08000005
#> 2556      England   E12000002               North West   E08000005
#> 2557      England   E12000002               North West   E08000005
#> 2558      England   E12000002               North West   E08000006
#> 2559      England   E12000002               North West   E08000006
#> 2560      England   E12000002               North West   E08000006
#> 2561      England   E12000002               North West   E08000007
#> 2562      England   E12000002               North West   E08000007
#> 2563      England   E12000002               North West   E08000007
#> 2564      England   E12000002               North West   E08000008
#> 2565      England   E12000002               North West   E08000008
#> 2566      England   E12000002               North West   E08000008
#> 2567      England   E12000002               North West   E08000009
#> 2568      England   E12000002               North West   E08000009
#> 2569      England   E12000002               North West   E08000009
#> 2570      England   E12000002               North West   E08000010
#> 2571      England   E12000002               North West   E08000010
#> 2572      England   E12000002               North West   E08000010
#> 2573      England   E12000002               North West   E08000011
#> 2574      England   E12000002               North West   E08000011
#> 2575      England   E12000002               North West   E08000011
#> 2576      England   E12000002               North West   E08000012
#> 2577      England   E12000002               North West   E08000012
#> 2578      England   E12000002               North West   E08000012
#> 2579      England   E12000002               North West   E08000013
#> 2580      England   E12000002               North West   E08000013
#> 2581      England   E12000002               North West   E08000013
#> 2582      England   E12000002               North West   E08000014
#> 2583      England   E12000002               North West   E08000014
#> 2584      England   E12000002               North West   E08000014
#> 2585      England   E12000002               North West   E08000015
#> 2586      England   E12000002               North West   E08000015
#> 2587      England   E12000002               North West   E08000015
#> 2588      England   E12000002               North West   E10000017
#> 2589      England   E12000002               North West   E10000017
#> 2590      England   E12000002               North West   E10000017
#> 2591      England   E12000003 Yorkshire and The Humber        <NA>
#> 2592      England   E12000003 Yorkshire and The Humber        <NA>
#> 2593      England   E12000003 Yorkshire and The Humber        <NA>
#> 2594      England   E12000003 Yorkshire and The Humber        <NA>
#> 2595      England   E12000003 Yorkshire and The Humber   E06000010
#> 2596      England   E12000003 Yorkshire and The Humber   E06000010
#> 2597      England   E12000003 Yorkshire and The Humber   E06000010
#> 2598      England   E12000003 Yorkshire and The Humber   E06000011
#> 2599      England   E12000003 Yorkshire and The Humber   E06000011
#> 2600      England   E12000003 Yorkshire and The Humber   E06000011
#> 2601      England   E12000003 Yorkshire and The Humber   E06000012
#> 2602      England   E12000003 Yorkshire and The Humber   E06000012
#> 2603      England   E12000003 Yorkshire and The Humber   E06000012
#> 2604      England   E12000003 Yorkshire and The Humber   E06000013
#> 2605      England   E12000003 Yorkshire and The Humber   E06000013
#> 2606      England   E12000003 Yorkshire and The Humber   E06000013
#> 2607      England   E12000003 Yorkshire and The Humber   E06000014
#> 2608      England   E12000003 Yorkshire and The Humber   E06000014
#> 2609      England   E12000003 Yorkshire and The Humber   E06000014
#> 2610      England   E12000003 Yorkshire and The Humber   E06000065
#> 2611      England   E12000003 Yorkshire and The Humber   E06000065
#> 2612      England   E12000003 Yorkshire and The Humber   E06000065
#> 2613      England   E12000003 Yorkshire and The Humber   E08000016
#> 2614      England   E12000003 Yorkshire and The Humber   E08000016
#> 2615      England   E12000003 Yorkshire and The Humber   E08000016
#> 2616      England   E12000003 Yorkshire and The Humber   E08000017
#> 2617      England   E12000003 Yorkshire and The Humber   E08000017
#> 2618      England   E12000003 Yorkshire and The Humber   E08000017
#> 2619      England   E12000003 Yorkshire and The Humber   E08000018
#> 2620      England   E12000003 Yorkshire and The Humber   E08000018
#> 2621      England   E12000003 Yorkshire and The Humber   E08000018
#> 2622      England   E12000003 Yorkshire and The Humber   E08000019
#> 2623      England   E12000003 Yorkshire and The Humber   E08000019
#> 2624      England   E12000003 Yorkshire and The Humber   E08000019
#> 2625      England   E12000003 Yorkshire and The Humber   E08000032
#> 2626      England   E12000003 Yorkshire and The Humber   E08000032
#> 2627      England   E12000003 Yorkshire and The Humber   E08000032
#> 2628      England   E12000003 Yorkshire and The Humber   E08000033
#> 2629      England   E12000003 Yorkshire and The Humber   E08000033
#> 2630      England   E12000003 Yorkshire and The Humber   E08000033
#> 2631      England   E12000003 Yorkshire and The Humber   E08000034
#> 2632      England   E12000003 Yorkshire and The Humber   E08000034
#> 2633      England   E12000003 Yorkshire and The Humber   E08000034
#> 2634      England   E12000003 Yorkshire and The Humber   E08000035
#> 2635      England   E12000003 Yorkshire and The Humber   E08000035
#> 2636      England   E12000003 Yorkshire and The Humber   E08000035
#> 2637      England   E12000003 Yorkshire and The Humber   E08000036
#> 2638      England   E12000003 Yorkshire and The Humber   E08000036
#> 2639      England   E12000003 Yorkshire and The Humber   E08000036
#> 2640      England   E12000004            East Midlands        <NA>
#> 2641      England   E12000004            East Midlands        <NA>
#> 2642      England   E12000004            East Midlands        <NA>
#> 2643      England   E12000004            East Midlands        <NA>
#> 2644      England   E12000004            East Midlands   E06000015
#> 2645      England   E12000004            East Midlands   E06000015
#> 2646      England   E12000004            East Midlands   E06000015
#> 2647      England   E12000004            East Midlands   E06000016
#> 2648      England   E12000004            East Midlands   E06000016
#> 2649      England   E12000004            East Midlands   E06000016
#> 2650      England   E12000004            East Midlands   E06000017
#> 2651      England   E12000004            East Midlands   E06000017
#> 2652      England   E12000004            East Midlands   E06000018
#> 2653      England   E12000004            East Midlands   E06000018
#> 2654      England   E12000004            East Midlands   E06000018
#> 2655      England   E12000004            East Midlands   E06000061
#> 2656      England   E12000004            East Midlands   E06000061
#> 2657      England   E12000004            East Midlands   E06000061
#> 2658      England   E12000004            East Midlands   E06000062
#> 2659      England   E12000004            East Midlands   E06000062
#> 2660      England   E12000004            East Midlands   E06000062
#> 2661      England   E12000004            East Midlands   E10000007
#> 2662      England   E12000004            East Midlands   E10000007
#> 2663      England   E12000004            East Midlands   E10000007
#> 2664      England   E12000004            East Midlands   E10000018
#> 2665      England   E12000004            East Midlands   E10000018
#> 2666      England   E12000004            East Midlands   E10000018
#> 2667      England   E12000004            East Midlands   E10000019
#> 2668      England   E12000004            East Midlands   E10000019
#> 2669      England   E12000004            East Midlands   E10000019
#> 2670      England   E12000004            East Midlands   E10000024
#> 2671      England   E12000004            East Midlands   E10000024
#> 2672      England   E12000004            East Midlands   E10000024
#> 2673      England   E12000005            West Midlands        <NA>
#> 2674      England   E12000005            West Midlands        <NA>
#> 2675      England   E12000005            West Midlands        <NA>
#> 2676      England   E12000005            West Midlands        <NA>
#> 2677      England   E12000005            West Midlands   E06000019
#> 2678      England   E12000005            West Midlands   E06000019
#> 2679      England   E12000005            West Midlands   E06000019
#> 2680      England   E12000005            West Midlands   E06000020
#> 2681      England   E12000005            West Midlands   E06000020
#> 2682      England   E12000005            West Midlands   E06000020
#> 2683      England   E12000005            West Midlands   E06000021
#> 2684      England   E12000005            West Midlands   E06000021
#> 2685      England   E12000005            West Midlands   E06000021
#> 2686      England   E12000005            West Midlands   E06000051
#> 2687      England   E12000005            West Midlands   E06000051
#> 2688      England   E12000005            West Midlands   E06000051
#> 2689      England   E12000005            West Midlands   E08000025
#> 2690      England   E12000005            West Midlands   E08000025
#> 2691      England   E12000005            West Midlands   E08000025
#> 2692      England   E12000005            West Midlands   E08000026
#> 2693      England   E12000005            West Midlands   E08000026
#> 2694      England   E12000005            West Midlands   E08000026
#> 2695      England   E12000005            West Midlands   E08000027
#> 2696      England   E12000005            West Midlands   E08000027
#> 2697      England   E12000005            West Midlands   E08000027
#> 2698      England   E12000005            West Midlands   E08000028
#> 2699      England   E12000005            West Midlands   E08000028
#> 2700      England   E12000005            West Midlands   E08000028
#> 2701      England   E12000005            West Midlands   E08000029
#> 2702      England   E12000005            West Midlands   E08000029
#> 2703      England   E12000005            West Midlands   E08000029
#> 2704      England   E12000005            West Midlands   E08000030
#> 2705      England   E12000005            West Midlands   E08000030
#> 2706      England   E12000005            West Midlands   E08000030
#> 2707      England   E12000005            West Midlands   E08000031
#> 2708      England   E12000005            West Midlands   E08000031
#> 2709      England   E12000005            West Midlands   E08000031
#> 2710      England   E12000005            West Midlands   E10000028
#> 2711      England   E12000005            West Midlands   E10000028
#> 2712      England   E12000005            West Midlands   E10000028
#> 2713      England   E12000005            West Midlands   E10000031
#> 2714      England   E12000005            West Midlands   E10000031
#> 2715      England   E12000005            West Midlands   E10000031
#> 2716      England   E12000005            West Midlands   E10000034
#> 2717      England   E12000005            West Midlands   E10000034
#> 2718      England   E12000005            West Midlands   E10000034
#> 2719      England   E12000006          East of England        <NA>
#> 2720      England   E12000006          East of England        <NA>
#> 2721      England   E12000006          East of England        <NA>
#> 2722      England   E12000006          East of England        <NA>
#> 2723      England   E12000006          East of England   E06000031
#> 2724      England   E12000006          East of England   E06000031
#> 2725      England   E12000006          East of England   E06000031
#> 2726      England   E12000006          East of England   E06000032
#> 2727      England   E12000006          East of England   E06000032
#> 2728      England   E12000006          East of England   E06000032
#> 2729      England   E12000006          East of England   E06000033
#> 2730      England   E12000006          East of England   E06000033
#> 2731      England   E12000006          East of England   E06000033
#> 2732      England   E12000006          East of England   E06000034
#> 2733      England   E12000006          East of England   E06000034
#> 2734      England   E12000006          East of England   E06000034
#> 2735      England   E12000006          East of England   E06000055
#> 2736      England   E12000006          East of England   E06000055
#> 2737      England   E12000006          East of England   E06000055
#> 2738      England   E12000006          East of England   E06000056
#> 2739      England   E12000006          East of England   E06000056
#> 2740      England   E12000006          East of England   E06000056
#> 2741      England   E12000006          East of England   E10000003
#> 2742      England   E12000006          East of England   E10000003
#> 2743      England   E12000006          East of England   E10000003
#> 2744      England   E12000006          East of England   E10000012
#> 2745      England   E12000006          East of England   E10000012
#> 2746      England   E12000006          East of England   E10000012
#> 2747      England   E12000006          East of England   E10000015
#> 2748      England   E12000006          East of England   E10000015
#> 2749      England   E12000006          East of England   E10000015
#> 2750      England   E12000006          East of England   E10000020
#> 2751      England   E12000006          East of England   E10000020
#> 2752      England   E12000006          East of England   E10000020
#> 2753      England   E12000006          East of England   E10000029
#> 2754      England   E12000006          East of England   E10000029
#> 2755      England   E12000006          East of England   E10000029
#> 2756      England   E12000007                   London        <NA>
#> 2757      England   E12000007                   London        <NA>
#> 2758      England   E12000007                   London        <NA>
#> 2759      England   E12000007                   London        <NA>
#> 2760      England   E12000007                   London   E09000001
#> 2761      England   E12000007                   London   E09000002
#> 2762      England   E12000007                   London   E09000002
#> 2763      England   E12000007                   London   E09000002
#> 2764      England   E12000007                   London   E09000003
#> 2765      England   E12000007                   London   E09000003
#> 2766      England   E12000007                   London   E09000003
#> 2767      England   E12000007                   London   E09000004
#> 2768      England   E12000007                   London   E09000004
#> 2769      England   E12000007                   London   E09000004
#> 2770      England   E12000007                   London   E09000005
#> 2771      England   E12000007                   London   E09000005
#> 2772      England   E12000007                   London   E09000005
#> 2773      England   E12000007                   London   E09000006
#> 2774      England   E12000007                   London   E09000006
#> 2775      England   E12000007                   London   E09000006
#> 2776      England   E12000007                   London   E09000007
#> 2777      England   E12000007                   London   E09000007
#> 2778      England   E12000007                   London   E09000007
#> 2779      England   E12000007                   London   E09000008
#> 2780      England   E12000007                   London   E09000008
#> 2781      England   E12000007                   London   E09000008
#> 2782      England   E12000007                   London   E09000009
#> 2783      England   E12000007                   London   E09000009
#> 2784      England   E12000007                   London   E09000009
#> 2785      England   E12000007                   London   E09000010
#> 2786      England   E12000007                   London   E09000010
#> 2787      England   E12000007                   London   E09000010
#> 2788      England   E12000007                   London   E09000011
#> 2789      England   E12000007                   London   E09000011
#> 2790      England   E12000007                   London   E09000011
#> 2791      England   E12000007                   London   E09000012
#> 2792      England   E12000007                   London   E09000012
#> 2793      England   E12000007                   London   E09000012
#> 2794      England   E12000007                   London   E09000013
#> 2795      England   E12000007                   London   E09000013
#> 2796      England   E12000007                   London   E09000013
#> 2797      England   E12000007                   London   E09000014
#> 2798      England   E12000007                   London   E09000014
#> 2799      England   E12000007                   London   E09000014
#> 2800      England   E12000007                   London   E09000015
#> 2801      England   E12000007                   London   E09000015
#> 2802      England   E12000007                   London   E09000015
#> 2803      England   E12000007                   London   E09000016
#> 2804      England   E12000007                   London   E09000016
#> 2805      England   E12000007                   London   E09000016
#> 2806      England   E12000007                   London   E09000017
#> 2807      England   E12000007                   London   E09000017
#> 2808      England   E12000007                   London   E09000017
#> 2809      England   E12000007                   London   E09000018
#> 2810      England   E12000007                   London   E09000018
#> 2811      England   E12000007                   London   E09000018
#> 2812      England   E12000007                   London   E09000019
#> 2813      England   E12000007                   London   E09000019
#> 2814      England   E12000007                   London   E09000019
#> 2815      England   E12000007                   London   E09000020
#> 2816      England   E12000007                   London   E09000020
#> 2817      England   E12000007                   London   E09000020
#> 2818      England   E12000007                   London   E09000021
#> 2819      England   E12000007                   London   E09000021
#> 2820      England   E12000007                   London   E09000021
#> 2821      England   E12000007                   London   E09000022
#> 2822      England   E12000007                   London   E09000022
#> 2823      England   E12000007                   London   E09000022
#> 2824      England   E12000007                   London   E09000023
#> 2825      England   E12000007                   London   E09000023
#> 2826      England   E12000007                   London   E09000023
#> 2827      England   E12000007                   London   E09000024
#> 2828      England   E12000007                   London   E09000024
#> 2829      England   E12000007                   London   E09000024
#> 2830      England   E12000007                   London   E09000025
#> 2831      England   E12000007                   London   E09000025
#> 2832      England   E12000007                   London   E09000025
#> 2833      England   E12000007                   London   E09000026
#> 2834      England   E12000007                   London   E09000026
#> 2835      England   E12000007                   London   E09000026
#> 2836      England   E12000007                   London   E09000027
#> 2837      England   E12000007                   London   E09000027
#> 2838      England   E12000007                   London   E09000027
#> 2839      England   E12000007                   London   E09000028
#> 2840      England   E12000007                   London   E09000028
#> 2841      England   E12000007                   London   E09000028
#> 2842      England   E12000007                   London   E09000029
#> 2843      England   E12000007                   London   E09000029
#> 2844      England   E12000007                   London   E09000029
#> 2845      England   E12000007                   London   E09000030
#> 2846      England   E12000007                   London   E09000030
#> 2847      England   E12000007                   London   E09000030
#> 2848      England   E12000007                   London   E09000031
#> 2849      England   E12000007                   London   E09000031
#> 2850      England   E12000007                   London   E09000031
#> 2851      England   E12000007                   London   E09000032
#> 2852      England   E12000007                   London   E09000032
#> 2853      England   E12000007                   London   E09000032
#> 2854      England   E12000007                   London   E09000033
#> 2855      England   E12000007                   London   E09000033
#> 2856      England   E12000007                   London   E09000033
#> 2857      England   E12000008               South East        <NA>
#> 2858      England   E12000008               South East        <NA>
#> 2859      England   E12000008               South East        <NA>
#> 2860      England   E12000008               South East        <NA>
#> 2861      England   E12000008               South East   E06000035
#> 2862      England   E12000008               South East   E06000035
#> 2863      England   E12000008               South East   E06000035
#> 2864      England   E12000008               South East   E06000036
#> 2865      England   E12000008               South East   E06000036
#> 2866      England   E12000008               South East   E06000036
#> 2867      England   E12000008               South East   E06000037
#> 2868      England   E12000008               South East   E06000037
#> 2869      England   E12000008               South East   E06000037
#> 2870      England   E12000008               South East   E06000038
#> 2871      England   E12000008               South East   E06000038
#> 2872      England   E12000008               South East   E06000038
#> 2873      England   E12000008               South East   E06000039
#> 2874      England   E12000008               South East   E06000039
#> 2875      England   E12000008               South East   E06000039
#> 2876      England   E12000008               South East   E06000040
#> 2877      England   E12000008               South East   E06000040
#> 2878      England   E12000008               South East   E06000040
#> 2879      England   E12000008               South East   E06000041
#> 2880      England   E12000008               South East   E06000041
#> 2881      England   E12000008               South East   E06000041
#> 2882      England   E12000008               South East   E06000042
#> 2883      England   E12000008               South East   E06000042
#> 2884      England   E12000008               South East   E06000042
#> 2885      England   E12000008               South East   E06000043
#> 2886      England   E12000008               South East   E06000043
#> 2887      England   E12000008               South East   E06000043
#> 2888      England   E12000008               South East   E06000044
#> 2889      England   E12000008               South East   E06000044
#> 2890      England   E12000008               South East   E06000044
#> 2891      England   E12000008               South East   E06000045
#> 2892      England   E12000008               South East   E06000045
#> 2893      England   E12000008               South East   E06000045
#> 2894      England   E12000008               South East   E06000046
#> 2895      England   E12000008               South East   E06000046
#> 2896      England   E12000008               South East   E06000046
#> 2897      England   E12000008               South East   E06000060
#> 2898      England   E12000008               South East   E06000060
#> 2899      England   E12000008               South East   E06000060
#> 2900      England   E12000008               South East   E10000011
#> 2901      England   E12000008               South East   E10000011
#> 2902      England   E12000008               South East   E10000011
#> 2903      England   E12000008               South East   E10000014
#> 2904      England   E12000008               South East   E10000014
#> 2905      England   E12000008               South East   E10000014
#> 2906      England   E12000008               South East   E10000016
#> 2907      England   E12000008               South East   E10000016
#> 2908      England   E12000008               South East   E10000016
#> 2909      England   E12000008               South East   E10000025
#> 2910      England   E12000008               South East   E10000025
#> 2911      England   E12000008               South East   E10000025
#> 2912      England   E12000008               South East   E10000030
#> 2913      England   E12000008               South East   E10000030
#> 2914      England   E12000008               South East   E10000030
#> 2915      England   E12000008               South East   E10000032
#> 2916      England   E12000008               South East   E10000032
#> 2917      England   E12000008               South East   E10000032
#> 2918      England   E12000009               South West        <NA>
#> 2919      England   E12000009               South West        <NA>
#> 2920      England   E12000009               South West        <NA>
#> 2921      England   E12000009               South West        <NA>
#> 2922      England   E12000009               South West   E06000022
#> 2923      England   E12000009               South West   E06000022
#> 2924      England   E12000009               South West   E06000022
#> 2925      England   E12000009               South West   E06000023
#> 2926      England   E12000009               South West   E06000023
#> 2927      England   E12000009               South West   E06000023
#> 2928      England   E12000009               South West   E06000024
#> 2929      England   E12000009               South West   E06000024
#> 2930      England   E12000009               South West   E06000024
#> 2931      England   E12000009               South West   E06000025
#> 2932      England   E12000009               South West   E06000025
#> 2933      England   E12000009               South West   E06000025
#> 2934      England   E12000009               South West   E06000026
#> 2935      England   E12000009               South West   E06000026
#> 2936      England   E12000009               South West   E06000026
#> 2937      England   E12000009               South West   E06000027
#> 2938      England   E12000009               South West   E06000027
#> 2939      England   E12000009               South West   E06000027
#> 2940      England   E12000009               South West   E06000030
#> 2941      England   E12000009               South West   E06000030
#> 2942      England   E12000009               South West   E06000030
#> 2943      England   E12000009               South West   E06000052
#> 2944      England   E12000009               South West   E06000052
#> 2945      England   E12000009               South West   E06000052
#> 2946      England   E12000009               South West   E06000053
#> 2947      England   E12000009               South West   E06000054
#> 2948      England   E12000009               South West   E06000054
#> 2949      England   E12000009               South West   E06000054
#> 2950      England   E12000009               South West   E06000058
#> 2951      England   E12000009               South West   E06000058
#> 2952      England   E12000009               South West   E06000058
#> 2953      England   E12000009               South West   E06000059
#> 2954      England   E12000009               South West   E06000059
#> 2955      England   E12000009               South West   E06000059
#> 2956      England   E12000009               South West   E06000066
#> 2957      England   E12000009               South West   E06000066
#> 2958      England   E12000009               South West   E06000066
#> 2959      England   E12000009               South West   E10000008
#> 2960      England   E12000009               South West   E10000008
#> 2961      England   E12000009               South West   E10000008
#> 2962      England   E12000009               South West   E10000013
#> 2963      England   E12000009               South West   E10000013
#> 2964      England   E12000009               South West   E10000013
#> 2965      England        <NA>                     <NA>        <NA>
#> 2966      England        <NA>                     <NA>        <NA>
#> 2967      England        <NA>                     <NA>        <NA>
#> 2968      England        <NA>                     <NA>        <NA>
#> 2969      England   E12000001               North East        <NA>
#> 2970      England   E12000001               North East        <NA>
#> 2971      England   E12000001               North East        <NA>
#> 2972      England   E12000001               North East        <NA>
#> 2973      England   E12000001               North East   E06000001
#> 2974      England   E12000001               North East   E06000001
#> 2975      England   E12000001               North East   E06000001
#> 2976      England   E12000001               North East   E06000002
#> 2977      England   E12000001               North East   E06000002
#> 2978      England   E12000001               North East   E06000002
#> 2979      England   E12000001               North East   E06000003
#> 2980      England   E12000001               North East   E06000003
#> 2981      England   E12000001               North East   E06000003
#> 2982      England   E12000001               North East   E06000004
#> 2983      England   E12000001               North East   E06000004
#> 2984      England   E12000001               North East   E06000004
#> 2985      England   E12000001               North East   E06000005
#> 2986      England   E12000001               North East   E06000005
#> 2987      England   E12000001               North East   E06000005
#> 2988      England   E12000001               North East   E06000047
#> 2989      England   E12000001               North East   E06000047
#> 2990      England   E12000001               North East   E06000047
#> 2991      England   E12000001               North East   E06000057
#> 2992      England   E12000001               North East   E06000057
#> 2993      England   E12000001               North East   E06000057
#> 2994      England   E12000001               North East   E08000021
#> 2995      England   E12000001               North East   E08000021
#> 2996      England   E12000001               North East   E08000021
#> 2997      England   E12000001               North East   E08000022
#> 2998      England   E12000001               North East   E08000022
#> 2999      England   E12000001               North East   E08000022
#> 3000      England   E12000001               North East   E08000023
#> 3001      England   E12000001               North East   E08000023
#> 3002      England   E12000001               North East   E08000023
#> 3003      England   E12000001               North East   E08000024
#> 3004      England   E12000001               North East   E08000024
#> 3005      England   E12000001               North East   E08000024
#> 3006      England   E12000001               North East   E08000037
#> 3007      England   E12000001               North East   E08000037
#> 3008      England   E12000001               North East   E08000037
#> 3009      England   E12000002               North West        <NA>
#> 3010      England   E12000002               North West        <NA>
#> 3011      England   E12000002               North West        <NA>
#> 3012      England   E12000002               North West        <NA>
#> 3013      England   E12000002               North West   E06000006
#> 3014      England   E12000002               North West   E06000006
#> 3015      England   E12000002               North West   E06000006
#> 3016      England   E12000002               North West   E06000007
#> 3017      England   E12000002               North West   E06000007
#> 3018      England   E12000002               North West   E06000007
#> 3019      England   E12000002               North West   E06000008
#> 3020      England   E12000002               North West   E06000008
#> 3021      England   E12000002               North West   E06000008
#> 3022      England   E12000002               North West   E06000009
#> 3023      England   E12000002               North West   E06000009
#> 3024      England   E12000002               North West   E06000009
#> 3025      England   E12000002               North West   E06000049
#> 3026      England   E12000002               North West   E06000049
#> 3027      England   E12000002               North West   E06000049
#> 3028      England   E12000002               North West   E06000050
#> 3029      England   E12000002               North West   E06000050
#> 3030      England   E12000002               North West   E06000050
#> 3031      England   E12000002               North West   E06000063
#> 3032      England   E12000002               North West   E06000063
#> 3033      England   E12000002               North West   E06000063
#> 3034      England   E12000002               North West   E06000064
#> 3035      England   E12000002               North West   E06000064
#> 3036      England   E12000002               North West   E06000064
#> 3037      England   E12000002               North West   E08000001
#> 3038      England   E12000002               North West   E08000001
#> 3039      England   E12000002               North West   E08000001
#> 3040      England   E12000002               North West   E08000002
#> 3041      England   E12000002               North West   E08000002
#> 3042      England   E12000002               North West   E08000002
#> 3043      England   E12000002               North West   E08000003
#> 3044      England   E12000002               North West   E08000003
#> 3045      England   E12000002               North West   E08000003
#> 3046      England   E12000002               North West   E08000004
#> 3047      England   E12000002               North West   E08000004
#> 3048      England   E12000002               North West   E08000004
#> 3049      England   E12000002               North West   E08000005
#> 3050      England   E12000002               North West   E08000005
#> 3051      England   E12000002               North West   E08000005
#> 3052      England   E12000002               North West   E08000006
#> 3053      England   E12000002               North West   E08000006
#> 3054      England   E12000002               North West   E08000006
#> 3055      England   E12000002               North West   E08000007
#> 3056      England   E12000002               North West   E08000007
#> 3057      England   E12000002               North West   E08000007
#> 3058      England   E12000002               North West   E08000008
#> 3059      England   E12000002               North West   E08000008
#> 3060      England   E12000002               North West   E08000008
#> 3061      England   E12000002               North West   E08000009
#> 3062      England   E12000002               North West   E08000009
#> 3063      England   E12000002               North West   E08000009
#> 3064      England   E12000002               North West   E08000010
#> 3065      England   E12000002               North West   E08000010
#> 3066      England   E12000002               North West   E08000010
#> 3067      England   E12000002               North West   E08000011
#> 3068      England   E12000002               North West   E08000011
#> 3069      England   E12000002               North West   E08000011
#> 3070      England   E12000002               North West   E08000012
#> 3071      England   E12000002               North West   E08000012
#> 3072      England   E12000002               North West   E08000012
#> 3073      England   E12000002               North West   E08000013
#> 3074      England   E12000002               North West   E08000013
#> 3075      England   E12000002               North West   E08000013
#> 3076      England   E12000002               North West   E08000014
#> 3077      England   E12000002               North West   E08000014
#> 3078      England   E12000002               North West   E08000014
#> 3079      England   E12000002               North West   E08000015
#> 3080      England   E12000002               North West   E08000015
#> 3081      England   E12000002               North West   E08000015
#> 3082      England   E12000002               North West   E10000017
#> 3083      England   E12000002               North West   E10000017
#> 3084      England   E12000002               North West   E10000017
#> 3085      England   E12000003 Yorkshire and The Humber        <NA>
#> 3086      England   E12000003 Yorkshire and The Humber        <NA>
#> 3087      England   E12000003 Yorkshire and The Humber        <NA>
#> 3088      England   E12000003 Yorkshire and The Humber        <NA>
#> 3089      England   E12000003 Yorkshire and The Humber   E06000010
#> 3090      England   E12000003 Yorkshire and The Humber   E06000010
#> 3091      England   E12000003 Yorkshire and The Humber   E06000010
#> 3092      England   E12000003 Yorkshire and The Humber   E06000011
#> 3093      England   E12000003 Yorkshire and The Humber   E06000011
#> 3094      England   E12000003 Yorkshire and The Humber   E06000011
#> 3095      England   E12000003 Yorkshire and The Humber   E06000012
#> 3096      England   E12000003 Yorkshire and The Humber   E06000012
#> 3097      England   E12000003 Yorkshire and The Humber   E06000012
#> 3098      England   E12000003 Yorkshire and The Humber   E06000013
#> 3099      England   E12000003 Yorkshire and The Humber   E06000013
#> 3100      England   E12000003 Yorkshire and The Humber   E06000013
#> 3101      England   E12000003 Yorkshire and The Humber   E06000014
#> 3102      England   E12000003 Yorkshire and The Humber   E06000014
#> 3103      England   E12000003 Yorkshire and The Humber   E06000014
#> 3104      England   E12000003 Yorkshire and The Humber   E06000065
#> 3105      England   E12000003 Yorkshire and The Humber   E06000065
#> 3106      England   E12000003 Yorkshire and The Humber   E06000065
#> 3107      England   E12000003 Yorkshire and The Humber   E08000016
#> 3108      England   E12000003 Yorkshire and The Humber   E08000016
#> 3109      England   E12000003 Yorkshire and The Humber   E08000016
#> 3110      England   E12000003 Yorkshire and The Humber   E08000017
#> 3111      England   E12000003 Yorkshire and The Humber   E08000017
#> 3112      England   E12000003 Yorkshire and The Humber   E08000017
#> 3113      England   E12000003 Yorkshire and The Humber   E08000018
#> 3114      England   E12000003 Yorkshire and The Humber   E08000018
#> 3115      England   E12000003 Yorkshire and The Humber   E08000018
#> 3116      England   E12000003 Yorkshire and The Humber   E08000019
#> 3117      England   E12000003 Yorkshire and The Humber   E08000019
#> 3118      England   E12000003 Yorkshire and The Humber   E08000019
#> 3119      England   E12000003 Yorkshire and The Humber   E08000032
#> 3120      England   E12000003 Yorkshire and The Humber   E08000032
#> 3121      England   E12000003 Yorkshire and The Humber   E08000032
#> 3122      England   E12000003 Yorkshire and The Humber   E08000033
#> 3123      England   E12000003 Yorkshire and The Humber   E08000033
#> 3124      England   E12000003 Yorkshire and The Humber   E08000033
#> 3125      England   E12000003 Yorkshire and The Humber   E08000034
#> 3126      England   E12000003 Yorkshire and The Humber   E08000034
#> 3127      England   E12000003 Yorkshire and The Humber   E08000034
#> 3128      England   E12000003 Yorkshire and The Humber   E08000035
#> 3129      England   E12000003 Yorkshire and The Humber   E08000035
#> 3130      England   E12000003 Yorkshire and The Humber   E08000035
#> 3131      England   E12000003 Yorkshire and The Humber   E08000036
#> 3132      England   E12000003 Yorkshire and The Humber   E08000036
#> 3133      England   E12000003 Yorkshire and The Humber   E08000036
#> 3134      England   E12000004            East Midlands        <NA>
#> 3135      England   E12000004            East Midlands        <NA>
#> 3136      England   E12000004            East Midlands        <NA>
#> 3137      England   E12000004            East Midlands        <NA>
#> 3138      England   E12000004            East Midlands   E06000015
#> 3139      England   E12000004            East Midlands   E06000015
#> 3140      England   E12000004            East Midlands   E06000015
#> 3141      England   E12000004            East Midlands   E06000016
#> 3142      England   E12000004            East Midlands   E06000016
#> 3143      England   E12000004            East Midlands   E06000016
#> 3144      England   E12000004            East Midlands   E06000017
#> 3145      England   E12000004            East Midlands   E06000017
#> 3146      England   E12000004            East Midlands   E06000018
#> 3147      England   E12000004            East Midlands   E06000018
#> 3148      England   E12000004            East Midlands   E06000018
#> 3149      England   E12000004            East Midlands   E06000061
#> 3150      England   E12000004            East Midlands   E06000061
#> 3151      England   E12000004            East Midlands   E06000061
#> 3152      England   E12000004            East Midlands   E06000062
#> 3153      England   E12000004            East Midlands   E06000062
#> 3154      England   E12000004            East Midlands   E06000062
#> 3155      England   E12000004            East Midlands   E10000007
#> 3156      England   E12000004            East Midlands   E10000007
#> 3157      England   E12000004            East Midlands   E10000007
#> 3158      England   E12000004            East Midlands   E10000018
#> 3159      England   E12000004            East Midlands   E10000018
#> 3160      England   E12000004            East Midlands   E10000018
#> 3161      England   E12000004            East Midlands   E10000019
#> 3162      England   E12000004            East Midlands   E10000019
#> 3163      England   E12000004            East Midlands   E10000019
#> 3164      England   E12000004            East Midlands   E10000024
#> 3165      England   E12000004            East Midlands   E10000024
#> 3166      England   E12000004            East Midlands   E10000024
#> 3167      England   E12000005            West Midlands        <NA>
#> 3168      England   E12000005            West Midlands        <NA>
#> 3169      England   E12000005            West Midlands        <NA>
#> 3170      England   E12000005            West Midlands        <NA>
#> 3171      England   E12000005            West Midlands   E06000019
#> 3172      England   E12000005            West Midlands   E06000019
#> 3173      England   E12000005            West Midlands   E06000019
#> 3174      England   E12000005            West Midlands   E06000020
#> 3175      England   E12000005            West Midlands   E06000020
#> 3176      England   E12000005            West Midlands   E06000020
#> 3177      England   E12000005            West Midlands   E06000021
#> 3178      England   E12000005            West Midlands   E06000021
#> 3179      England   E12000005            West Midlands   E06000021
#> 3180      England   E12000005            West Midlands   E06000051
#> 3181      England   E12000005            West Midlands   E06000051
#> 3182      England   E12000005            West Midlands   E06000051
#> 3183      England   E12000005            West Midlands   E08000025
#> 3184      England   E12000005            West Midlands   E08000025
#> 3185      England   E12000005            West Midlands   E08000025
#> 3186      England   E12000005            West Midlands   E08000026
#> 3187      England   E12000005            West Midlands   E08000026
#> 3188      England   E12000005            West Midlands   E08000026
#> 3189      England   E12000005            West Midlands   E08000027
#> 3190      England   E12000005            West Midlands   E08000027
#> 3191      England   E12000005            West Midlands   E08000027
#> 3192      England   E12000005            West Midlands   E08000028
#> 3193      England   E12000005            West Midlands   E08000028
#> 3194      England   E12000005            West Midlands   E08000028
#> 3195      England   E12000005            West Midlands   E08000029
#> 3196      England   E12000005            West Midlands   E08000029
#> 3197      England   E12000005            West Midlands   E08000029
#> 3198      England   E12000005            West Midlands   E08000030
#> 3199      England   E12000005            West Midlands   E08000030
#> 3200      England   E12000005            West Midlands   E08000030
#> 3201      England   E12000005            West Midlands   E08000031
#> 3202      England   E12000005            West Midlands   E08000031
#> 3203      England   E12000005            West Midlands   E08000031
#> 3204      England   E12000005            West Midlands   E10000028
#> 3205      England   E12000005            West Midlands   E10000028
#> 3206      England   E12000005            West Midlands   E10000028
#> 3207      England   E12000005            West Midlands   E10000031
#> 3208      England   E12000005            West Midlands   E10000031
#> 3209      England   E12000005            West Midlands   E10000031
#> 3210      England   E12000005            West Midlands   E10000034
#> 3211      England   E12000005            West Midlands   E10000034
#> 3212      England   E12000005            West Midlands   E10000034
#> 3213      England   E12000006          East of England        <NA>
#> 3214      England   E12000006          East of England        <NA>
#> 3215      England   E12000006          East of England        <NA>
#> 3216      England   E12000006          East of England        <NA>
#> 3217      England   E12000006          East of England   E06000031
#> 3218      England   E12000006          East of England   E06000031
#> 3219      England   E12000006          East of England   E06000031
#> 3220      England   E12000006          East of England   E06000032
#> 3221      England   E12000006          East of England   E06000032
#> 3222      England   E12000006          East of England   E06000032
#> 3223      England   E12000006          East of England   E06000033
#> 3224      England   E12000006          East of England   E06000033
#> 3225      England   E12000006          East of England   E06000033
#> 3226      England   E12000006          East of England   E06000034
#> 3227      England   E12000006          East of England   E06000034
#> 3228      England   E12000006          East of England   E06000034
#> 3229      England   E12000006          East of England   E06000055
#> 3230      England   E12000006          East of England   E06000055
#> 3231      England   E12000006          East of England   E06000055
#> 3232      England   E12000006          East of England   E06000056
#> 3233      England   E12000006          East of England   E06000056
#> 3234      England   E12000006          East of England   E06000056
#> 3235      England   E12000006          East of England   E10000003
#> 3236      England   E12000006          East of England   E10000003
#> 3237      England   E12000006          East of England   E10000003
#> 3238      England   E12000006          East of England   E10000012
#> 3239      England   E12000006          East of England   E10000012
#> 3240      England   E12000006          East of England   E10000012
#> 3241      England   E12000006          East of England   E10000015
#> 3242      England   E12000006          East of England   E10000015
#> 3243      England   E12000006          East of England   E10000015
#> 3244      England   E12000006          East of England   E10000020
#> 3245      England   E12000006          East of England   E10000020
#> 3246      England   E12000006          East of England   E10000020
#> 3247      England   E12000006          East of England   E10000029
#> 3248      England   E12000006          East of England   E10000029
#> 3249      England   E12000006          East of England   E10000029
#> 3250      England   E12000007                   London        <NA>
#> 3251      England   E12000007                   London        <NA>
#> 3252      England   E12000007                   London        <NA>
#> 3253      England   E12000007                   London        <NA>
#> 3254      England   E12000007                   London   E09000001
#> 3255      England   E12000007                   London   E09000002
#> 3256      England   E12000007                   London   E09000002
#> 3257      England   E12000007                   London   E09000002
#> 3258      England   E12000007                   London   E09000003
#> 3259      England   E12000007                   London   E09000003
#> 3260      England   E12000007                   London   E09000003
#> 3261      England   E12000007                   London   E09000004
#> 3262      England   E12000007                   London   E09000004
#> 3263      England   E12000007                   London   E09000004
#> 3264      England   E12000007                   London   E09000005
#> 3265      England   E12000007                   London   E09000005
#> 3266      England   E12000007                   London   E09000005
#> 3267      England   E12000007                   London   E09000006
#> 3268      England   E12000007                   London   E09000006
#> 3269      England   E12000007                   London   E09000006
#> 3270      England   E12000007                   London   E09000007
#> 3271      England   E12000007                   London   E09000007
#> 3272      England   E12000007                   London   E09000007
#> 3273      England   E12000007                   London   E09000008
#> 3274      England   E12000007                   London   E09000008
#> 3275      England   E12000007                   London   E09000008
#> 3276      England   E12000007                   London   E09000009
#> 3277      England   E12000007                   London   E09000009
#> 3278      England   E12000007                   London   E09000009
#> 3279      England   E12000007                   London   E09000010
#> 3280      England   E12000007                   London   E09000010
#> 3281      England   E12000007                   London   E09000010
#> 3282      England   E12000007                   London   E09000011
#> 3283      England   E12000007                   London   E09000011
#> 3284      England   E12000007                   London   E09000011
#> 3285      England   E12000007                   London   E09000012
#> 3286      England   E12000007                   London   E09000012
#> 3287      England   E12000007                   London   E09000012
#> 3288      England   E12000007                   London   E09000013
#> 3289      England   E12000007                   London   E09000013
#> 3290      England   E12000007                   London   E09000013
#> 3291      England   E12000007                   London   E09000014
#> 3292      England   E12000007                   London   E09000014
#> 3293      England   E12000007                   London   E09000014
#> 3294      England   E12000007                   London   E09000015
#> 3295      England   E12000007                   London   E09000015
#> 3296      England   E12000007                   London   E09000015
#> 3297      England   E12000007                   London   E09000016
#> 3298      England   E12000007                   London   E09000016
#> 3299      England   E12000007                   London   E09000016
#> 3300      England   E12000007                   London   E09000017
#> 3301      England   E12000007                   London   E09000017
#> 3302      England   E12000007                   London   E09000017
#> 3303      England   E12000007                   London   E09000018
#> 3304      England   E12000007                   London   E09000018
#> 3305      England   E12000007                   London   E09000018
#> 3306      England   E12000007                   London   E09000019
#> 3307      England   E12000007                   London   E09000019
#> 3308      England   E12000007                   London   E09000019
#> 3309      England   E12000007                   London   E09000020
#> 3310      England   E12000007                   London   E09000020
#> 3311      England   E12000007                   London   E09000020
#> 3312      England   E12000007                   London   E09000021
#> 3313      England   E12000007                   London   E09000021
#> 3314      England   E12000007                   London   E09000021
#> 3315      England   E12000007                   London   E09000022
#> 3316      England   E12000007                   London   E09000022
#> 3317      England   E12000007                   London   E09000022
#> 3318      England   E12000007                   London   E09000023
#> 3319      England   E12000007                   London   E09000023
#> 3320      England   E12000007                   London   E09000023
#> 3321      England   E12000007                   London   E09000024
#> 3322      England   E12000007                   London   E09000024
#> 3323      England   E12000007                   London   E09000024
#> 3324      England   E12000007                   London   E09000025
#> 3325      England   E12000007                   London   E09000025
#> 3326      England   E12000007                   London   E09000025
#> 3327      England   E12000007                   London   E09000026
#> 3328      England   E12000007                   London   E09000026
#> 3329      England   E12000007                   London   E09000026
#> 3330      England   E12000007                   London   E09000027
#> 3331      England   E12000007                   London   E09000027
#> 3332      England   E12000007                   London   E09000027
#> 3333      England   E12000007                   London   E09000028
#> 3334      England   E12000007                   London   E09000028
#> 3335      England   E12000007                   London   E09000028
#> 3336      England   E12000007                   London   E09000029
#> 3337      England   E12000007                   London   E09000029
#> 3338      England   E12000007                   London   E09000029
#> 3339      England   E12000007                   London   E09000030
#> 3340      England   E12000007                   London   E09000030
#> 3341      England   E12000007                   London   E09000030
#> 3342      England   E12000007                   London   E09000031
#> 3343      England   E12000007                   London   E09000031
#> 3344      England   E12000007                   London   E09000031
#> 3345      England   E12000007                   London   E09000032
#> 3346      England   E12000007                   London   E09000032
#> 3347      England   E12000007                   London   E09000032
#> 3348      England   E12000007                   London   E09000033
#> 3349      England   E12000007                   London   E09000033
#> 3350      England   E12000007                   London   E09000033
#> 3351      England   E12000008               South East        <NA>
#> 3352      England   E12000008               South East        <NA>
#> 3353      England   E12000008               South East        <NA>
#> 3354      England   E12000008               South East        <NA>
#> 3355      England   E12000008               South East   E06000035
#> 3356      England   E12000008               South East   E06000035
#> 3357      England   E12000008               South East   E06000035
#> 3358      England   E12000008               South East   E06000036
#> 3359      England   E12000008               South East   E06000036
#> 3360      England   E12000008               South East   E06000036
#> 3361      England   E12000008               South East   E06000037
#> 3362      England   E12000008               South East   E06000037
#> 3363      England   E12000008               South East   E06000037
#> 3364      England   E12000008               South East   E06000038
#> 3365      England   E12000008               South East   E06000038
#> 3366      England   E12000008               South East   E06000038
#> 3367      England   E12000008               South East   E06000039
#> 3368      England   E12000008               South East   E06000039
#> 3369      England   E12000008               South East   E06000039
#> 3370      England   E12000008               South East   E06000040
#> 3371      England   E12000008               South East   E06000040
#> 3372      England   E12000008               South East   E06000040
#> 3373      England   E12000008               South East   E06000041
#> 3374      England   E12000008               South East   E06000041
#> 3375      England   E12000008               South East   E06000041
#> 3376      England   E12000008               South East   E06000042
#> 3377      England   E12000008               South East   E06000042
#> 3378      England   E12000008               South East   E06000042
#> 3379      England   E12000008               South East   E06000043
#> 3380      England   E12000008               South East   E06000043
#> 3381      England   E12000008               South East   E06000043
#> 3382      England   E12000008               South East   E06000044
#> 3383      England   E12000008               South East   E06000044
#> 3384      England   E12000008               South East   E06000044
#> 3385      England   E12000008               South East   E06000045
#> 3386      England   E12000008               South East   E06000045
#> 3387      England   E12000008               South East   E06000045
#> 3388      England   E12000008               South East   E06000046
#> 3389      England   E12000008               South East   E06000046
#> 3390      England   E12000008               South East   E06000046
#> 3391      England   E12000008               South East   E06000060
#> 3392      England   E12000008               South East   E06000060
#> 3393      England   E12000008               South East   E06000060
#> 3394      England   E12000008               South East   E10000011
#> 3395      England   E12000008               South East   E10000011
#> 3396      England   E12000008               South East   E10000011
#> 3397      England   E12000008               South East   E10000014
#> 3398      England   E12000008               South East   E10000014
#> 3399      England   E12000008               South East   E10000014
#> 3400      England   E12000008               South East   E10000016
#> 3401      England   E12000008               South East   E10000016
#> 3402      England   E12000008               South East   E10000016
#> 3403      England   E12000008               South East   E10000025
#> 3404      England   E12000008               South East   E10000025
#> 3405      England   E12000008               South East   E10000025
#> 3406      England   E12000008               South East   E10000030
#> 3407      England   E12000008               South East   E10000030
#> 3408      England   E12000008               South East   E10000030
#> 3409      England   E12000008               South East   E10000032
#> 3410      England   E12000008               South East   E10000032
#> 3411      England   E12000008               South East   E10000032
#> 3412      England   E12000009               South West        <NA>
#> 3413      England   E12000009               South West        <NA>
#> 3414      England   E12000009               South West        <NA>
#> 3415      England   E12000009               South West        <NA>
#> 3416      England   E12000009               South West   E06000022
#> 3417      England   E12000009               South West   E06000022
#> 3418      England   E12000009               South West   E06000022
#> 3419      England   E12000009               South West   E06000023
#> 3420      England   E12000009               South West   E06000023
#> 3421      England   E12000009               South West   E06000023
#> 3422      England   E12000009               South West   E06000024
#> 3423      England   E12000009               South West   E06000024
#> 3424      England   E12000009               South West   E06000024
#> 3425      England   E12000009               South West   E06000025
#> 3426      England   E12000009               South West   E06000025
#> 3427      England   E12000009               South West   E06000025
#> 3428      England   E12000009               South West   E06000026
#> 3429      England   E12000009               South West   E06000026
#> 3430      England   E12000009               South West   E06000026
#> 3431      England   E12000009               South West   E06000027
#> 3432      England   E12000009               South West   E06000027
#> 3433      England   E12000009               South West   E06000027
#> 3434      England   E12000009               South West   E06000030
#> 3435      England   E12000009               South West   E06000030
#> 3436      England   E12000009               South West   E06000030
#> 3437      England   E12000009               South West   E06000052
#> 3438      England   E12000009               South West   E06000052
#> 3439      England   E12000009               South West   E06000052
#> 3440      England   E12000009               South West   E06000053
#> 3441      England   E12000009               South West   E06000054
#> 3442      England   E12000009               South West   E06000054
#> 3443      England   E12000009               South West   E06000054
#> 3444      England   E12000009               South West   E06000058
#> 3445      England   E12000009               South West   E06000058
#> 3446      England   E12000009               South West   E06000058
#> 3447      England   E12000009               South West   E06000059
#> 3448      England   E12000009               South West   E06000059
#> 3449      England   E12000009               South West   E06000059
#> 3450      England   E12000009               South West   E06000066
#> 3451      England   E12000009               South West   E06000066
#> 3452      England   E12000009               South West   E06000066
#> 3453      England   E12000009               South West   E10000008
#> 3454      England   E12000009               South West   E10000008
#> 3455      England   E12000009               South West   E10000008
#> 3456      England   E12000009               South West   E10000013
#> 3457      England   E12000009               South West   E10000013
#> 3458      England   E12000009               South West   E10000013
#> 3459      England        <NA>                     <NA>        <NA>
#> 3460      England        <NA>                     <NA>        <NA>
#> 3461      England        <NA>                     <NA>        <NA>
#> 3462      England        <NA>                     <NA>        <NA>
#> 3463      England   E12000001               North East        <NA>
#> 3464      England   E12000001               North East        <NA>
#> 3465      England   E12000001               North East        <NA>
#> 3466      England   E12000001               North East        <NA>
#> 3467      England   E12000001               North East   E06000001
#> 3468      England   E12000001               North East   E06000001
#> 3469      England   E12000001               North East   E06000001
#> 3470      England   E12000001               North East   E06000002
#> 3471      England   E12000001               North East   E06000002
#> 3472      England   E12000001               North East   E06000002
#> 3473      England   E12000001               North East   E06000003
#> 3474      England   E12000001               North East   E06000003
#> 3475      England   E12000001               North East   E06000003
#> 3476      England   E12000001               North East   E06000004
#> 3477      England   E12000001               North East   E06000004
#> 3478      England   E12000001               North East   E06000004
#> 3479      England   E12000001               North East   E06000005
#> 3480      England   E12000001               North East   E06000005
#> 3481      England   E12000001               North East   E06000005
#> 3482      England   E12000001               North East   E06000047
#> 3483      England   E12000001               North East   E06000047
#> 3484      England   E12000001               North East   E06000047
#> 3485      England   E12000001               North East   E06000057
#> 3486      England   E12000001               North East   E06000057
#> 3487      England   E12000001               North East   E06000057
#> 3488      England   E12000001               North East   E08000021
#> 3489      England   E12000001               North East   E08000021
#> 3490      England   E12000001               North East   E08000021
#> 3491      England   E12000001               North East   E08000022
#> 3492      England   E12000001               North East   E08000022
#> 3493      England   E12000001               North East   E08000022
#> 3494      England   E12000001               North East   E08000023
#> 3495      England   E12000001               North East   E08000023
#> 3496      England   E12000001               North East   E08000023
#> 3497      England   E12000001               North East   E08000024
#> 3498      England   E12000001               North East   E08000024
#> 3499      England   E12000001               North East   E08000024
#> 3500      England   E12000001               North East   E08000037
#> 3501      England   E12000001               North East   E08000037
#> 3502      England   E12000001               North East   E08000037
#> 3503      England   E12000002               North West        <NA>
#> 3504      England   E12000002               North West        <NA>
#> 3505      England   E12000002               North West        <NA>
#> 3506      England   E12000002               North West        <NA>
#> 3507      England   E12000002               North West   E06000006
#> 3508      England   E12000002               North West   E06000006
#> 3509      England   E12000002               North West   E06000006
#> 3510      England   E12000002               North West   E06000007
#> 3511      England   E12000002               North West   E06000007
#> 3512      England   E12000002               North West   E06000007
#> 3513      England   E12000002               North West   E06000008
#> 3514      England   E12000002               North West   E06000008
#> 3515      England   E12000002               North West   E06000008
#> 3516      England   E12000002               North West   E06000009
#> 3517      England   E12000002               North West   E06000009
#> 3518      England   E12000002               North West   E06000009
#> 3519      England   E12000002               North West   E06000049
#> 3520      England   E12000002               North West   E06000049
#> 3521      England   E12000002               North West   E06000049
#> 3522      England   E12000002               North West   E06000050
#> 3523      England   E12000002               North West   E06000050
#> 3524      England   E12000002               North West   E06000050
#> 3525      England   E12000002               North West   E06000063
#> 3526      England   E12000002               North West   E06000063
#> 3527      England   E12000002               North West   E06000063
#> 3528      England   E12000002               North West   E06000064
#> 3529      England   E12000002               North West   E06000064
#> 3530      England   E12000002               North West   E06000064
#> 3531      England   E12000002               North West   E08000001
#> 3532      England   E12000002               North West   E08000001
#> 3533      England   E12000002               North West   E08000001
#> 3534      England   E12000002               North West   E08000002
#> 3535      England   E12000002               North West   E08000002
#> 3536      England   E12000002               North West   E08000002
#> 3537      England   E12000002               North West   E08000003
#> 3538      England   E12000002               North West   E08000003
#> 3539      England   E12000002               North West   E08000003
#> 3540      England   E12000002               North West   E08000004
#> 3541      England   E12000002               North West   E08000004
#> 3542      England   E12000002               North West   E08000004
#> 3543      England   E12000002               North West   E08000005
#> 3544      England   E12000002               North West   E08000005
#> 3545      England   E12000002               North West   E08000005
#> 3546      England   E12000002               North West   E08000006
#> 3547      England   E12000002               North West   E08000006
#> 3548      England   E12000002               North West   E08000006
#> 3549      England   E12000002               North West   E08000007
#> 3550      England   E12000002               North West   E08000007
#> 3551      England   E12000002               North West   E08000007
#> 3552      England   E12000002               North West   E08000008
#> 3553      England   E12000002               North West   E08000008
#> 3554      England   E12000002               North West   E08000008
#> 3555      England   E12000002               North West   E08000009
#> 3556      England   E12000002               North West   E08000009
#> 3557      England   E12000002               North West   E08000009
#> 3558      England   E12000002               North West   E08000010
#> 3559      England   E12000002               North West   E08000010
#> 3560      England   E12000002               North West   E08000010
#> 3561      England   E12000002               North West   E08000011
#> 3562      England   E12000002               North West   E08000011
#> 3563      England   E12000002               North West   E08000011
#> 3564      England   E12000002               North West   E08000012
#> 3565      England   E12000002               North West   E08000012
#> 3566      England   E12000002               North West   E08000012
#> 3567      England   E12000002               North West   E08000013
#> 3568      England   E12000002               North West   E08000013
#> 3569      England   E12000002               North West   E08000013
#> 3570      England   E12000002               North West   E08000014
#> 3571      England   E12000002               North West   E08000014
#> 3572      England   E12000002               North West   E08000014
#> 3573      England   E12000002               North West   E08000015
#> 3574      England   E12000002               North West   E08000015
#> 3575      England   E12000002               North West   E08000015
#> 3576      England   E12000002               North West   E10000017
#> 3577      England   E12000002               North West   E10000017
#> 3578      England   E12000002               North West   E10000017
#> 3579      England   E12000003 Yorkshire and The Humber        <NA>
#> 3580      England   E12000003 Yorkshire and The Humber        <NA>
#> 3581      England   E12000003 Yorkshire and The Humber        <NA>
#> 3582      England   E12000003 Yorkshire and The Humber        <NA>
#> 3583      England   E12000003 Yorkshire and The Humber   E06000010
#> 3584      England   E12000003 Yorkshire and The Humber   E06000010
#> 3585      England   E12000003 Yorkshire and The Humber   E06000010
#> 3586      England   E12000003 Yorkshire and The Humber   E06000011
#> 3587      England   E12000003 Yorkshire and The Humber   E06000011
#> 3588      England   E12000003 Yorkshire and The Humber   E06000011
#> 3589      England   E12000003 Yorkshire and The Humber   E06000012
#> 3590      England   E12000003 Yorkshire and The Humber   E06000012
#> 3591      England   E12000003 Yorkshire and The Humber   E06000012
#> 3592      England   E12000003 Yorkshire and The Humber   E06000013
#> 3593      England   E12000003 Yorkshire and The Humber   E06000013
#> 3594      England   E12000003 Yorkshire and The Humber   E06000013
#> 3595      England   E12000003 Yorkshire and The Humber   E06000014
#> 3596      England   E12000003 Yorkshire and The Humber   E06000014
#> 3597      England   E12000003 Yorkshire and The Humber   E06000014
#> 3598      England   E12000003 Yorkshire and The Humber   E06000065
#> 3599      England   E12000003 Yorkshire and The Humber   E06000065
#> 3600      England   E12000003 Yorkshire and The Humber   E06000065
#> 3601      England   E12000003 Yorkshire and The Humber   E08000016
#> 3602      England   E12000003 Yorkshire and The Humber   E08000016
#> 3603      England   E12000003 Yorkshire and The Humber   E08000016
#> 3604      England   E12000003 Yorkshire and The Humber   E08000017
#> 3605      England   E12000003 Yorkshire and The Humber   E08000017
#> 3606      England   E12000003 Yorkshire and The Humber   E08000017
#> 3607      England   E12000003 Yorkshire and The Humber   E08000018
#> 3608      England   E12000003 Yorkshire and The Humber   E08000018
#> 3609      England   E12000003 Yorkshire and The Humber   E08000018
#> 3610      England   E12000003 Yorkshire and The Humber   E08000019
#> 3611      England   E12000003 Yorkshire and The Humber   E08000019
#> 3612      England   E12000003 Yorkshire and The Humber   E08000019
#> 3613      England   E12000003 Yorkshire and The Humber   E08000032
#> 3614      England   E12000003 Yorkshire and The Humber   E08000032
#> 3615      England   E12000003 Yorkshire and The Humber   E08000032
#> 3616      England   E12000003 Yorkshire and The Humber   E08000033
#> 3617      England   E12000003 Yorkshire and The Humber   E08000033
#> 3618      England   E12000003 Yorkshire and The Humber   E08000033
#> 3619      England   E12000003 Yorkshire and The Humber   E08000034
#> 3620      England   E12000003 Yorkshire and The Humber   E08000034
#> 3621      England   E12000003 Yorkshire and The Humber   E08000034
#> 3622      England   E12000003 Yorkshire and The Humber   E08000035
#> 3623      England   E12000003 Yorkshire and The Humber   E08000035
#> 3624      England   E12000003 Yorkshire and The Humber   E08000035
#> 3625      England   E12000003 Yorkshire and The Humber   E08000036
#> 3626      England   E12000003 Yorkshire and The Humber   E08000036
#> 3627      England   E12000003 Yorkshire and The Humber   E08000036
#> 3628      England   E12000004            East Midlands        <NA>
#> 3629      England   E12000004            East Midlands        <NA>
#> 3630      England   E12000004            East Midlands        <NA>
#> 3631      England   E12000004            East Midlands        <NA>
#> 3632      England   E12000004            East Midlands   E06000015
#> 3633      England   E12000004            East Midlands   E06000015
#> 3634      England   E12000004            East Midlands   E06000015
#> 3635      England   E12000004            East Midlands   E06000016
#> 3636      England   E12000004            East Midlands   E06000016
#> 3637      England   E12000004            East Midlands   E06000016
#> 3638      England   E12000004            East Midlands   E06000017
#> 3639      England   E12000004            East Midlands   E06000017
#> 3640      England   E12000004            East Midlands   E06000018
#> 3641      England   E12000004            East Midlands   E06000018
#> 3642      England   E12000004            East Midlands   E06000018
#> 3643      England   E12000004            East Midlands   E06000061
#> 3644      England   E12000004            East Midlands   E06000061
#> 3645      England   E12000004            East Midlands   E06000061
#> 3646      England   E12000004            East Midlands   E06000062
#> 3647      England   E12000004            East Midlands   E06000062
#> 3648      England   E12000004            East Midlands   E06000062
#> 3649      England   E12000004            East Midlands   E10000007
#> 3650      England   E12000004            East Midlands   E10000007
#> 3651      England   E12000004            East Midlands   E10000007
#> 3652      England   E12000004            East Midlands   E10000018
#> 3653      England   E12000004            East Midlands   E10000018
#> 3654      England   E12000004            East Midlands   E10000018
#> 3655      England   E12000004            East Midlands   E10000019
#> 3656      England   E12000004            East Midlands   E10000019
#> 3657      England   E12000004            East Midlands   E10000019
#> 3658      England   E12000004            East Midlands   E10000024
#> 3659      England   E12000004            East Midlands   E10000024
#> 3660      England   E12000004            East Midlands   E10000024
#> 3661      England   E12000005            West Midlands        <NA>
#> 3662      England   E12000005            West Midlands        <NA>
#> 3663      England   E12000005            West Midlands        <NA>
#> 3664      England   E12000005            West Midlands        <NA>
#> 3665      England   E12000005            West Midlands   E06000019
#> 3666      England   E12000005            West Midlands   E06000019
#> 3667      England   E12000005            West Midlands   E06000019
#> 3668      England   E12000005            West Midlands   E06000020
#> 3669      England   E12000005            West Midlands   E06000020
#> 3670      England   E12000005            West Midlands   E06000020
#> 3671      England   E12000005            West Midlands   E06000021
#> 3672      England   E12000005            West Midlands   E06000021
#> 3673      England   E12000005            West Midlands   E06000021
#> 3674      England   E12000005            West Midlands   E06000051
#> 3675      England   E12000005            West Midlands   E06000051
#> 3676      England   E12000005            West Midlands   E06000051
#> 3677      England   E12000005            West Midlands   E08000025
#> 3678      England   E12000005            West Midlands   E08000025
#> 3679      England   E12000005            West Midlands   E08000025
#> 3680      England   E12000005            West Midlands   E08000026
#> 3681      England   E12000005            West Midlands   E08000026
#> 3682      England   E12000005            West Midlands   E08000026
#> 3683      England   E12000005            West Midlands   E08000027
#> 3684      England   E12000005            West Midlands   E08000027
#> 3685      England   E12000005            West Midlands   E08000027
#> 3686      England   E12000005            West Midlands   E08000028
#> 3687      England   E12000005            West Midlands   E08000028
#> 3688      England   E12000005            West Midlands   E08000028
#> 3689      England   E12000005            West Midlands   E08000029
#> 3690      England   E12000005            West Midlands   E08000029
#> 3691      England   E12000005            West Midlands   E08000029
#> 3692      England   E12000005            West Midlands   E08000030
#> 3693      England   E12000005            West Midlands   E08000030
#> 3694      England   E12000005            West Midlands   E08000030
#> 3695      England   E12000005            West Midlands   E08000031
#> 3696      England   E12000005            West Midlands   E08000031
#> 3697      England   E12000005            West Midlands   E08000031
#> 3698      England   E12000005            West Midlands   E10000028
#> 3699      England   E12000005            West Midlands   E10000028
#> 3700      England   E12000005            West Midlands   E10000028
#> 3701      England   E12000005            West Midlands   E10000031
#> 3702      England   E12000005            West Midlands   E10000031
#> 3703      England   E12000005            West Midlands   E10000031
#> 3704      England   E12000005            West Midlands   E10000034
#> 3705      England   E12000005            West Midlands   E10000034
#> 3706      England   E12000005            West Midlands   E10000034
#> 3707      England   E12000006          East of England        <NA>
#> 3708      England   E12000006          East of England        <NA>
#> 3709      England   E12000006          East of England        <NA>
#> 3710      England   E12000006          East of England        <NA>
#> 3711      England   E12000006          East of England   E06000031
#> 3712      England   E12000006          East of England   E06000031
#> 3713      England   E12000006          East of England   E06000031
#> 3714      England   E12000006          East of England   E06000032
#> 3715      England   E12000006          East of England   E06000032
#> 3716      England   E12000006          East of England   E06000032
#> 3717      England   E12000006          East of England   E06000033
#> 3718      England   E12000006          East of England   E06000033
#> 3719      England   E12000006          East of England   E06000033
#> 3720      England   E12000006          East of England   E06000034
#> 3721      England   E12000006          East of England   E06000034
#> 3722      England   E12000006          East of England   E06000034
#> 3723      England   E12000006          East of England   E06000055
#> 3724      England   E12000006          East of England   E06000055
#> 3725      England   E12000006          East of England   E06000055
#> 3726      England   E12000006          East of England   E06000056
#> 3727      England   E12000006          East of England   E06000056
#> 3728      England   E12000006          East of England   E06000056
#> 3729      England   E12000006          East of England   E10000003
#> 3730      England   E12000006          East of England   E10000003
#> 3731      England   E12000006          East of England   E10000003
#> 3732      England   E12000006          East of England   E10000012
#> 3733      England   E12000006          East of England   E10000012
#> 3734      England   E12000006          East of England   E10000012
#> 3735      England   E12000006          East of England   E10000015
#> 3736      England   E12000006          East of England   E10000015
#> 3737      England   E12000006          East of England   E10000015
#> 3738      England   E12000006          East of England   E10000020
#> 3739      England   E12000006          East of England   E10000020
#> 3740      England   E12000006          East of England   E10000020
#> 3741      England   E12000006          East of England   E10000029
#> 3742      England   E12000006          East of England   E10000029
#> 3743      England   E12000006          East of England   E10000029
#> 3744      England   E12000007                   London        <NA>
#> 3745      England   E12000007                   London        <NA>
#> 3746      England   E12000007                   London        <NA>
#> 3747      England   E12000007                   London        <NA>
#> 3748      England   E12000007                   London   E09000001
#> 3749      England   E12000007                   London   E09000002
#> 3750      England   E12000007                   London   E09000002
#> 3751      England   E12000007                   London   E09000002
#> 3752      England   E12000007                   London   E09000003
#> 3753      England   E12000007                   London   E09000003
#> 3754      England   E12000007                   London   E09000003
#> 3755      England   E12000007                   London   E09000004
#> 3756      England   E12000007                   London   E09000004
#> 3757      England   E12000007                   London   E09000004
#> 3758      England   E12000007                   London   E09000005
#> 3759      England   E12000007                   London   E09000005
#> 3760      England   E12000007                   London   E09000005
#> 3761      England   E12000007                   London   E09000006
#> 3762      England   E12000007                   London   E09000006
#> 3763      England   E12000007                   London   E09000006
#> 3764      England   E12000007                   London   E09000007
#> 3765      England   E12000007                   London   E09000007
#> 3766      England   E12000007                   London   E09000007
#> 3767      England   E12000007                   London   E09000008
#> 3768      England   E12000007                   London   E09000008
#> 3769      England   E12000007                   London   E09000008
#> 3770      England   E12000007                   London   E09000009
#> 3771      England   E12000007                   London   E09000009
#> 3772      England   E12000007                   London   E09000009
#> 3773      England   E12000007                   London   E09000010
#> 3774      England   E12000007                   London   E09000010
#> 3775      England   E12000007                   London   E09000010
#> 3776      England   E12000007                   London   E09000011
#> 3777      England   E12000007                   London   E09000011
#> 3778      England   E12000007                   London   E09000011
#> 3779      England   E12000007                   London   E09000012
#> 3780      England   E12000007                   London   E09000012
#> 3781      England   E12000007                   London   E09000012
#> 3782      England   E12000007                   London   E09000013
#> 3783      England   E12000007                   London   E09000013
#> 3784      England   E12000007                   London   E09000013
#> 3785      England   E12000007                   London   E09000014
#> 3786      England   E12000007                   London   E09000014
#> 3787      England   E12000007                   London   E09000014
#> 3788      England   E12000007                   London   E09000015
#> 3789      England   E12000007                   London   E09000015
#> 3790      England   E12000007                   London   E09000015
#> 3791      England   E12000007                   London   E09000016
#> 3792      England   E12000007                   London   E09000016
#> 3793      England   E12000007                   London   E09000016
#> 3794      England   E12000007                   London   E09000017
#> 3795      England   E12000007                   London   E09000017
#> 3796      England   E12000007                   London   E09000017
#> 3797      England   E12000007                   London   E09000018
#> 3798      England   E12000007                   London   E09000018
#> 3799      England   E12000007                   London   E09000018
#> 3800      England   E12000007                   London   E09000019
#> 3801      England   E12000007                   London   E09000019
#> 3802      England   E12000007                   London   E09000019
#> 3803      England   E12000007                   London   E09000020
#> 3804      England   E12000007                   London   E09000020
#> 3805      England   E12000007                   London   E09000020
#> 3806      England   E12000007                   London   E09000021
#> 3807      England   E12000007                   London   E09000021
#> 3808      England   E12000007                   London   E09000021
#> 3809      England   E12000007                   London   E09000022
#> 3810      England   E12000007                   London   E09000022
#> 3811      England   E12000007                   London   E09000022
#> 3812      England   E12000007                   London   E09000023
#> 3813      England   E12000007                   London   E09000023
#> 3814      England   E12000007                   London   E09000023
#> 3815      England   E12000007                   London   E09000024
#> 3816      England   E12000007                   London   E09000024
#> 3817      England   E12000007                   London   E09000024
#> 3818      England   E12000007                   London   E09000025
#> 3819      England   E12000007                   London   E09000025
#> 3820      England   E12000007                   London   E09000025
#> 3821      England   E12000007                   London   E09000026
#> 3822      England   E12000007                   London   E09000026
#> 3823      England   E12000007                   London   E09000026
#> 3824      England   E12000007                   London   E09000027
#> 3825      England   E12000007                   London   E09000027
#> 3826      England   E12000007                   London   E09000027
#> 3827      England   E12000007                   London   E09000028
#> 3828      England   E12000007                   London   E09000028
#> 3829      England   E12000007                   London   E09000028
#> 3830      England   E12000007                   London   E09000029
#> 3831      England   E12000007                   London   E09000029
#> 3832      England   E12000007                   London   E09000029
#> 3833      England   E12000007                   London   E09000030
#> 3834      England   E12000007                   London   E09000030
#> 3835      England   E12000007                   London   E09000030
#> 3836      England   E12000007                   London   E09000031
#> 3837      England   E12000007                   London   E09000031
#> 3838      England   E12000007                   London   E09000031
#> 3839      England   E12000007                   London   E09000032
#> 3840      England   E12000007                   London   E09000032
#> 3841      England   E12000007                   London   E09000032
#> 3842      England   E12000007                   London   E09000033
#> 3843      England   E12000007                   London   E09000033
#> 3844      England   E12000007                   London   E09000033
#> 3845      England   E12000008               South East        <NA>
#> 3846      England   E12000008               South East        <NA>
#> 3847      England   E12000008               South East        <NA>
#> 3848      England   E12000008               South East        <NA>
#> 3849      England   E12000008               South East   E06000035
#> 3850      England   E12000008               South East   E06000035
#> 3851      England   E12000008               South East   E06000035
#> 3852      England   E12000008               South East   E06000036
#> 3853      England   E12000008               South East   E06000036
#> 3854      England   E12000008               South East   E06000036
#> 3855      England   E12000008               South East   E06000037
#> 3856      England   E12000008               South East   E06000037
#> 3857      England   E12000008               South East   E06000037
#> 3858      England   E12000008               South East   E06000038
#> 3859      England   E12000008               South East   E06000038
#> 3860      England   E12000008               South East   E06000038
#> 3861      England   E12000008               South East   E06000039
#> 3862      England   E12000008               South East   E06000039
#> 3863      England   E12000008               South East   E06000039
#> 3864      England   E12000008               South East   E06000040
#> 3865      England   E12000008               South East   E06000040
#> 3866      England   E12000008               South East   E06000040
#> 3867      England   E12000008               South East   E06000041
#> 3868      England   E12000008               South East   E06000041
#> 3869      England   E12000008               South East   E06000041
#> 3870      England   E12000008               South East   E06000042
#> 3871      England   E12000008               South East   E06000042
#> 3872      England   E12000008               South East   E06000042
#> 3873      England   E12000008               South East   E06000043
#> 3874      England   E12000008               South East   E06000043
#> 3875      England   E12000008               South East   E06000043
#> 3876      England   E12000008               South East   E06000044
#> 3877      England   E12000008               South East   E06000044
#> 3878      England   E12000008               South East   E06000044
#> 3879      England   E12000008               South East   E06000045
#> 3880      England   E12000008               South East   E06000045
#> 3881      England   E12000008               South East   E06000045
#> 3882      England   E12000008               South East   E06000046
#> 3883      England   E12000008               South East   E06000046
#> 3884      England   E12000008               South East   E06000046
#> 3885      England   E12000008               South East   E06000060
#> 3886      England   E12000008               South East   E06000060
#> 3887      England   E12000008               South East   E06000060
#> 3888      England   E12000008               South East   E10000011
#> 3889      England   E12000008               South East   E10000011
#> 3890      England   E12000008               South East   E10000011
#> 3891      England   E12000008               South East   E10000014
#> 3892      England   E12000008               South East   E10000014
#> 3893      England   E12000008               South East   E10000014
#> 3894      England   E12000008               South East   E10000016
#> 3895      England   E12000008               South East   E10000016
#> 3896      England   E12000008               South East   E10000016
#> 3897      England   E12000008               South East   E10000025
#> 3898      England   E12000008               South East   E10000025
#> 3899      England   E12000008               South East   E10000025
#> 3900      England   E12000008               South East   E10000030
#> 3901      England   E12000008               South East   E10000030
#> 3902      England   E12000008               South East   E10000030
#> 3903      England   E12000008               South East   E10000032
#> 3904      England   E12000008               South East   E10000032
#> 3905      England   E12000008               South East   E10000032
#> 3906      England   E12000009               South West        <NA>
#> 3907      England   E12000009               South West        <NA>
#> 3908      England   E12000009               South West        <NA>
#> 3909      England   E12000009               South West        <NA>
#> 3910      England   E12000009               South West   E06000022
#> 3911      England   E12000009               South West   E06000022
#> 3912      England   E12000009               South West   E06000022
#> 3913      England   E12000009               South West   E06000023
#> 3914      England   E12000009               South West   E06000023
#> 3915      England   E12000009               South West   E06000023
#> 3916      England   E12000009               South West   E06000024
#> 3917      England   E12000009               South West   E06000024
#> 3918      England   E12000009               South West   E06000024
#> 3919      England   E12000009               South West   E06000025
#> 3920      England   E12000009               South West   E06000025
#> 3921      England   E12000009               South West   E06000025
#> 3922      England   E12000009               South West   E06000026
#> 3923      England   E12000009               South West   E06000026
#> 3924      England   E12000009               South West   E06000026
#> 3925      England   E12000009               South West   E06000027
#> 3926      England   E12000009               South West   E06000027
#> 3927      England   E12000009               South West   E06000027
#> 3928      England   E12000009               South West   E06000030
#> 3929      England   E12000009               South West   E06000030
#> 3930      England   E12000009               South West   E06000030
#> 3931      England   E12000009               South West   E06000052
#> 3932      England   E12000009               South West   E06000052
#> 3933      England   E12000009               South West   E06000052
#> 3934      England   E12000009               South West   E06000053
#> 3935      England   E12000009               South West   E06000054
#> 3936      England   E12000009               South West   E06000054
#> 3937      England   E12000009               South West   E06000054
#> 3938      England   E12000009               South West   E06000058
#> 3939      England   E12000009               South West   E06000058
#> 3940      England   E12000009               South West   E06000058
#> 3941      England   E12000009               South West   E06000059
#> 3942      England   E12000009               South West   E06000059
#> 3943      England   E12000009               South West   E06000059
#> 3944      England   E12000009               South West   E06000066
#> 3945      England   E12000009               South West   E06000066
#> 3946      England   E12000009               South West   E06000066
#> 3947      England   E12000009               South West   E10000008
#> 3948      England   E12000009               South West   E10000008
#> 3949      England   E12000009               South West   E10000008
#> 3950      England   E12000009               South West   E10000013
#> 3951      England   E12000009               South West   E10000013
#> 3952      England   E12000009               South West   E10000013
#>                                  la_name old_la_code education_phase
#> 1                                   <NA>          NA     All schools
#> 2                                   <NA>          NA         Primary
#> 3                                   <NA>          NA       Secondary
#> 4                                   <NA>          NA         Special
#> 5                                   <NA>          NA     All schools
#> 6                                   <NA>          NA         Primary
#> 7                                   <NA>          NA       Secondary
#> 8                                   <NA>          NA         Special
#> 9                             Hartlepool         805         Primary
#> 10                            Hartlepool         805       Secondary
#> 11                            Hartlepool         805         Special
#> 12                         Middlesbrough         806         Primary
#> 13                         Middlesbrough         806       Secondary
#> 14                         Middlesbrough         806         Special
#> 15                  Redcar and Cleveland         807         Primary
#> 16                  Redcar and Cleveland         807       Secondary
#> 17                  Redcar and Cleveland         807         Special
#> 18                      Stockton-on-Tees         808         Primary
#> 19                      Stockton-on-Tees         808       Secondary
#> 20                      Stockton-on-Tees         808         Special
#> 21                            Darlington         841         Primary
#> 22                            Darlington         841       Secondary
#> 23                            Darlington         841         Special
#> 24                         County Durham         840         Primary
#> 25                         County Durham         840       Secondary
#> 26                         County Durham         840         Special
#> 27                        Northumberland         929         Primary
#> 28                        Northumberland         929       Secondary
#> 29                        Northumberland         929         Special
#> 30                   Newcastle upon Tyne         391         Primary
#> 31                   Newcastle upon Tyne         391       Secondary
#> 32                   Newcastle upon Tyne         391         Special
#> 33                        North Tyneside         392         Primary
#> 34                        North Tyneside         392       Secondary
#> 35                        North Tyneside         392         Special
#> 36                        South Tyneside         393         Primary
#> 37                        South Tyneside         393       Secondary
#> 38                        South Tyneside         393         Special
#> 39                            Sunderland         394         Primary
#> 40                            Sunderland         394       Secondary
#> 41                            Sunderland         394         Special
#> 42                             Gateshead         390         Primary
#> 43                             Gateshead         390       Secondary
#> 44                             Gateshead         390         Special
#> 45                                  <NA>          NA     All schools
#> 46                                  <NA>          NA         Primary
#> 47                                  <NA>          NA       Secondary
#> 48                                  <NA>          NA         Special
#> 49                                Halton         876         Primary
#> 50                                Halton         876       Secondary
#> 51                                Halton         876         Special
#> 52                            Warrington         877         Primary
#> 53                            Warrington         877       Secondary
#> 54                            Warrington         877         Special
#> 55                 Blackburn with Darwen         889         Primary
#> 56                 Blackburn with Darwen         889       Secondary
#> 57                 Blackburn with Darwen         889         Special
#> 58                             Blackpool         890         Primary
#> 59                             Blackpool         890       Secondary
#> 60                             Blackpool         890         Special
#> 61                         Cheshire East         895         Primary
#> 62                         Cheshire East         895       Secondary
#> 63                         Cheshire East         895         Special
#> 64             Cheshire West and Chester         896         Primary
#> 65             Cheshire West and Chester         896       Secondary
#> 66             Cheshire West and Chester         896         Special
#> 67                            Cumberland         942         Primary
#> 68                            Cumberland         942       Secondary
#> 69                            Cumberland         942         Special
#> 70               Westmorland and Furness         943         Primary
#> 71               Westmorland and Furness         943       Secondary
#> 72               Westmorland and Furness         943         Special
#> 73                                Bolton         350         Primary
#> 74                                Bolton         350       Secondary
#> 75                                Bolton         350         Special
#> 76                                  Bury         351         Primary
#> 77                                  Bury         351       Secondary
#> 78                                  Bury         351         Special
#> 79                            Manchester         352         Primary
#> 80                            Manchester         352       Secondary
#> 81                            Manchester         352         Special
#> 82                                Oldham         353         Primary
#> 83                                Oldham         353       Secondary
#> 84                                Oldham         353         Special
#> 85                              Rochdale         354         Primary
#> 86                              Rochdale         354       Secondary
#> 87                              Rochdale         354         Special
#> 88                               Salford         355         Primary
#> 89                               Salford         355       Secondary
#> 90                               Salford         355         Special
#> 91                             Stockport         356         Primary
#> 92                             Stockport         356       Secondary
#> 93                             Stockport         356         Special
#> 94                              Tameside         357         Primary
#> 95                              Tameside         357       Secondary
#> 96                              Tameside         357         Special
#> 97                              Trafford         358         Primary
#> 98                              Trafford         358       Secondary
#> 99                              Trafford         358         Special
#> 100                                Wigan         359         Primary
#> 101                                Wigan         359       Secondary
#> 102                                Wigan         359         Special
#> 103                             Knowsley         340         Primary
#> 104                             Knowsley         340       Secondary
#> 105                             Knowsley         340         Special
#> 106                            Liverpool         341         Primary
#> 107                            Liverpool         341       Secondary
#> 108                            Liverpool         341         Special
#> 109                           St. Helens         342         Primary
#> 110                           St. Helens         342       Secondary
#> 111                           St. Helens         342         Special
#> 112                               Sefton         343         Primary
#> 113                               Sefton         343       Secondary
#> 114                               Sefton         343         Special
#> 115                               Wirral         344         Primary
#> 116                               Wirral         344       Secondary
#> 117                               Wirral         344         Special
#> 118                           Lancashire         888         Primary
#> 119                           Lancashire         888       Secondary
#> 120                           Lancashire         888         Special
#> 121                                 <NA>          NA     All schools
#> 122                                 <NA>          NA         Primary
#> 123                                 <NA>          NA       Secondary
#> 124                                 <NA>          NA         Special
#> 125          Kingston upon Hull, City of         810         Primary
#> 126          Kingston upon Hull, City of         810       Secondary
#> 127          Kingston upon Hull, City of         810         Special
#> 128             East Riding of Yorkshire         811         Primary
#> 129             East Riding of Yorkshire         811       Secondary
#> 130             East Riding of Yorkshire         811         Special
#> 131              North East Lincolnshire         812         Primary
#> 132              North East Lincolnshire         812       Secondary
#> 133              North East Lincolnshire         812         Special
#> 134                   North Lincolnshire         813         Primary
#> 135                   North Lincolnshire         813       Secondary
#> 136                   North Lincolnshire         813         Special
#> 137                                 York         816         Primary
#> 138                                 York         816       Secondary
#> 139                                 York         816         Special
#> 140                      North Yorkshire         815         Primary
#> 141                      North Yorkshire         815       Secondary
#> 142                      North Yorkshire         815         Special
#> 143                             Barnsley         370         Primary
#> 144                             Barnsley         370       Secondary
#> 145                             Barnsley         370         Special
#> 146                            Doncaster         371         Primary
#> 147                            Doncaster         371       Secondary
#> 148                            Doncaster         371         Special
#> 149                            Rotherham         372         Primary
#> 150                            Rotherham         372       Secondary
#> 151                            Rotherham         372         Special
#> 152                            Sheffield         373         Primary
#> 153                            Sheffield         373       Secondary
#> 154                            Sheffield         373         Special
#> 155                             Bradford         380         Primary
#> 156                             Bradford         380       Secondary
#> 157                             Bradford         380         Special
#> 158                           Calderdale         381         Primary
#> 159                           Calderdale         381       Secondary
#> 160                           Calderdale         381         Special
#> 161                             Kirklees         382         Primary
#> 162                             Kirklees         382       Secondary
#> 163                             Kirklees         382         Special
#> 164                                Leeds         383         Primary
#> 165                                Leeds         383       Secondary
#> 166                                Leeds         383         Special
#> 167                            Wakefield         384         Primary
#> 168                            Wakefield         384       Secondary
#> 169                            Wakefield         384         Special
#> 170                                 <NA>          NA     All schools
#> 171                                 <NA>          NA         Primary
#> 172                                 <NA>          NA       Secondary
#> 173                                 <NA>          NA         Special
#> 174                                Derby         831         Primary
#> 175                                Derby         831       Secondary
#> 176                                Derby         831         Special
#> 177                            Leicester         856         Primary
#> 178                            Leicester         856       Secondary
#> 179                            Leicester         856         Special
#> 180                              Rutland         857         Primary
#> 181                              Rutland         857       Secondary
#> 182                           Nottingham         892         Primary
#> 183                           Nottingham         892       Secondary
#> 184                           Nottingham         892         Special
#> 185               North Northamptonshire         940         Primary
#> 186               North Northamptonshire         940       Secondary
#> 187               North Northamptonshire         940         Special
#> 188                West Northamptonshire         941         Primary
#> 189                West Northamptonshire         941       Secondary
#> 190                West Northamptonshire         941         Special
#> 191                           Derbyshire         830         Primary
#> 192                           Derbyshire         830       Secondary
#> 193                           Derbyshire         830         Special
#> 194                       Leicestershire         855         Primary
#> 195                       Leicestershire         855       Secondary
#> 196                       Leicestershire         855         Special
#> 197                         Lincolnshire         925         Primary
#> 198                         Lincolnshire         925       Secondary
#> 199                         Lincolnshire         925         Special
#> 200                      Nottinghamshire         891         Primary
#> 201                      Nottinghamshire         891       Secondary
#> 202                      Nottinghamshire         891         Special
#> 203                                 <NA>          NA     All schools
#> 204                                 <NA>          NA         Primary
#> 205                                 <NA>          NA       Secondary
#> 206                                 <NA>          NA         Special
#> 207             Herefordshire, County of         884         Primary
#> 208             Herefordshire, County of         884       Secondary
#> 209             Herefordshire, County of         884         Special
#> 210                   Telford and Wrekin         894         Primary
#> 211                   Telford and Wrekin         894       Secondary
#> 212                   Telford and Wrekin         894         Special
#> 213                       Stoke-on-Trent         861         Primary
#> 214                       Stoke-on-Trent         861       Secondary
#> 215                       Stoke-on-Trent         861         Special
#> 216                           Shropshire         893         Primary
#> 217                           Shropshire         893       Secondary
#> 218                           Shropshire         893         Special
#> 219                           Birmingham         330         Primary
#> 220                           Birmingham         330       Secondary
#> 221                           Birmingham         330         Special
#> 222                             Coventry         331         Primary
#> 223                             Coventry         331       Secondary
#> 224                             Coventry         331         Special
#> 225                               Dudley         332         Primary
#> 226                               Dudley         332       Secondary
#> 227                               Dudley         332         Special
#> 228                             Sandwell         333         Primary
#> 229                             Sandwell         333       Secondary
#> 230                             Sandwell         333         Special
#> 231                             Solihull         334         Primary
#> 232                             Solihull         334       Secondary
#> 233                             Solihull         334         Special
#> 234                              Walsall         335         Primary
#> 235                              Walsall         335       Secondary
#> 236                              Walsall         335         Special
#> 237                        Wolverhampton         336         Primary
#> 238                        Wolverhampton         336       Secondary
#> 239                        Wolverhampton         336         Special
#> 240                        Staffordshire         860         Primary
#> 241                        Staffordshire         860       Secondary
#> 242                        Staffordshire         860         Special
#> 243                         Warwickshire         937         Primary
#> 244                         Warwickshire         937       Secondary
#> 245                         Warwickshire         937         Special
#> 246                       Worcestershire         885         Primary
#> 247                       Worcestershire         885       Secondary
#> 248                       Worcestershire         885         Special
#> 249                                 <NA>          NA     All schools
#> 250                                 <NA>          NA         Primary
#> 251                                 <NA>          NA       Secondary
#> 252                                 <NA>          NA         Special
#> 253                         Peterborough         874         Primary
#> 254                         Peterborough         874       Secondary
#> 255                         Peterborough         874         Special
#> 256                                Luton         821         Primary
#> 257                                Luton         821       Secondary
#> 258                                Luton         821         Special
#> 259                      Southend-on-Sea         882         Primary
#> 260                      Southend-on-Sea         882       Secondary
#> 261                      Southend-on-Sea         882         Special
#> 262                             Thurrock         883         Primary
#> 263                             Thurrock         883       Secondary
#> 264                             Thurrock         883         Special
#> 265                              Bedford         822         Primary
#> 266                              Bedford         822       Secondary
#> 267                              Bedford         822         Special
#> 268                 Central Bedfordshire         823         Primary
#> 269                 Central Bedfordshire         823       Secondary
#> 270                 Central Bedfordshire         823         Special
#> 271                       Cambridgeshire         873         Primary
#> 272                       Cambridgeshire         873       Secondary
#> 273                       Cambridgeshire         873         Special
#> 274                                Essex         881         Primary
#> 275                                Essex         881       Secondary
#> 276                                Essex         881         Special
#> 277                        Hertfordshire         919         Primary
#> 278                        Hertfordshire         919       Secondary
#> 279                        Hertfordshire         919         Special
#> 280                              Norfolk         926         Primary
#> 281                              Norfolk         926       Secondary
#> 282                              Norfolk         926         Special
#> 283                              Suffolk         935         Primary
#> 284                              Suffolk         935       Secondary
#> 285                              Suffolk         935         Special
#> 286                                 <NA>          NA     All schools
#> 287                                 <NA>          NA         Primary
#> 288                                 <NA>          NA       Secondary
#> 289                                 <NA>          NA         Special
#> 290                       City of London         201         Primary
#> 291                 Barking and Dagenham         301         Primary
#> 292                 Barking and Dagenham         301       Secondary
#> 293                 Barking and Dagenham         301         Special
#> 294                               Barnet         302         Primary
#> 295                               Barnet         302       Secondary
#> 296                               Barnet         302         Special
#> 297                               Bexley         303         Primary
#> 298                               Bexley         303       Secondary
#> 299                               Bexley         303         Special
#> 300                                Brent         304         Primary
#> 301                                Brent         304       Secondary
#> 302                                Brent         304         Special
#> 303                              Bromley         305         Primary
#> 304                              Bromley         305       Secondary
#> 305                              Bromley         305         Special
#> 306                               Camden         202         Primary
#> 307                               Camden         202       Secondary
#> 308                               Camden         202         Special
#> 309                              Croydon         306         Primary
#> 310                              Croydon         306       Secondary
#> 311                              Croydon         306         Special
#> 312                               Ealing         307         Primary
#> 313                               Ealing         307       Secondary
#> 314                               Ealing         307         Special
#> 315                              Enfield         308         Primary
#> 316                              Enfield         308       Secondary
#> 317                              Enfield         308         Special
#> 318                            Greenwich         203         Primary
#> 319                            Greenwich         203       Secondary
#> 320                            Greenwich         203         Special
#> 321                              Hackney         204         Primary
#> 322                              Hackney         204       Secondary
#> 323                              Hackney         204         Special
#> 324               Hammersmith and Fulham         205         Primary
#> 325               Hammersmith and Fulham         205       Secondary
#> 326               Hammersmith and Fulham         205         Special
#> 327                             Haringey         309         Primary
#> 328                             Haringey         309       Secondary
#> 329                             Haringey         309         Special
#> 330                               Harrow         310         Primary
#> 331                               Harrow         310       Secondary
#> 332                               Harrow         310         Special
#> 333                             Havering         311         Primary
#> 334                             Havering         311       Secondary
#> 335                             Havering         311         Special
#> 336                           Hillingdon         312         Primary
#> 337                           Hillingdon         312       Secondary
#> 338                           Hillingdon         312         Special
#> 339                             Hounslow         313         Primary
#> 340                             Hounslow         313       Secondary
#> 341                             Hounslow         313         Special
#> 342                            Islington         206         Primary
#> 343                            Islington         206       Secondary
#> 344                            Islington         206         Special
#> 345               Kensington and Chelsea         207         Primary
#> 346               Kensington and Chelsea         207       Secondary
#> 347               Kensington and Chelsea         207         Special
#> 348                 Kingston upon Thames         314         Primary
#> 349                 Kingston upon Thames         314       Secondary
#> 350                 Kingston upon Thames         314         Special
#> 351                              Lambeth         208         Primary
#> 352                              Lambeth         208       Secondary
#> 353                              Lambeth         208         Special
#> 354                             Lewisham         209         Primary
#> 355                             Lewisham         209       Secondary
#> 356                             Lewisham         209         Special
#> 357                               Merton         315         Primary
#> 358                               Merton         315       Secondary
#> 359                               Merton         315         Special
#> 360                               Newham         316         Primary
#> 361                               Newham         316       Secondary
#> 362                               Newham         316         Special
#> 363                            Redbridge         317         Primary
#> 364                            Redbridge         317       Secondary
#> 365                            Redbridge         317         Special
#> 366                 Richmond upon Thames         318         Primary
#> 367                 Richmond upon Thames         318       Secondary
#> 368                 Richmond upon Thames         318         Special
#> 369                            Southwark         210         Primary
#> 370                            Southwark         210       Secondary
#> 371                            Southwark         210         Special
#> 372                               Sutton         319         Primary
#> 373                               Sutton         319       Secondary
#> 374                               Sutton         319         Special
#> 375                        Tower Hamlets         211         Primary
#> 376                        Tower Hamlets         211       Secondary
#> 377                        Tower Hamlets         211         Special
#> 378                       Waltham Forest         320         Primary
#> 379                       Waltham Forest         320       Secondary
#> 380                       Waltham Forest         320         Special
#> 381                           Wandsworth         212         Primary
#> 382                           Wandsworth         212       Secondary
#> 383                           Wandsworth         212         Special
#> 384                          Westminster         213         Primary
#> 385                          Westminster         213       Secondary
#> 386                          Westminster         213         Special
#> 387                                 <NA>          NA     All schools
#> 388                                 <NA>          NA         Primary
#> 389                                 <NA>          NA       Secondary
#> 390                                 <NA>          NA         Special
#> 391                               Medway         887         Primary
#> 392                               Medway         887       Secondary
#> 393                               Medway         887         Special
#> 394                     Bracknell Forest         867         Primary
#> 395                     Bracknell Forest         867       Secondary
#> 396                     Bracknell Forest         867         Special
#> 397                       West Berkshire         869         Primary
#> 398                       West Berkshire         869       Secondary
#> 399                       West Berkshire         869         Special
#> 400                              Reading         870         Primary
#> 401                              Reading         870       Secondary
#> 402                              Reading         870         Special
#> 403                               Slough         871         Primary
#> 404                               Slough         871       Secondary
#> 405                               Slough         871         Special
#> 406               Windsor and Maidenhead         868         Primary
#> 407               Windsor and Maidenhead         868       Secondary
#> 408               Windsor and Maidenhead         868         Special
#> 409                            Wokingham         872         Primary
#> 410                            Wokingham         872       Secondary
#> 411                            Wokingham         872         Special
#> 412                        Milton Keynes         826         Primary
#> 413                        Milton Keynes         826       Secondary
#> 414                        Milton Keynes         826         Special
#> 415                    Brighton and Hove         846         Primary
#> 416                    Brighton and Hove         846       Secondary
#> 417                    Brighton and Hove         846         Special
#> 418                           Portsmouth         851         Primary
#> 419                           Portsmouth         851       Secondary
#> 420                           Portsmouth         851         Special
#> 421                          Southampton         852         Primary
#> 422                          Southampton         852       Secondary
#> 423                          Southampton         852         Special
#> 424                        Isle of Wight         921         Primary
#> 425                        Isle of Wight         921       Secondary
#> 426                        Isle of Wight         921         Special
#> 427                      Buckinghamshire         825         Primary
#> 428                      Buckinghamshire         825       Secondary
#> 429                      Buckinghamshire         825         Special
#> 430                          East Sussex         845         Primary
#> 431                          East Sussex         845       Secondary
#> 432                          East Sussex         845         Special
#> 433                            Hampshire         850         Primary
#> 434                            Hampshire         850       Secondary
#> 435                            Hampshire         850         Special
#> 436                                 Kent         886         Primary
#> 437                                 Kent         886       Secondary
#> 438                                 Kent         886         Special
#> 439                          Oxfordshire         931         Primary
#> 440                          Oxfordshire         931       Secondary
#> 441                          Oxfordshire         931         Special
#> 442                               Surrey         936         Primary
#> 443                               Surrey         936       Secondary
#> 444                               Surrey         936         Special
#> 445                          West Sussex         938         Primary
#> 446                          West Sussex         938       Secondary
#> 447                          West Sussex         938         Special
#> 448                                 <NA>          NA     All schools
#> 449                                 <NA>          NA         Primary
#> 450                                 <NA>          NA       Secondary
#> 451                                 <NA>          NA         Special
#> 452         Bath and North East Somerset         800         Primary
#> 453         Bath and North East Somerset         800       Secondary
#> 454         Bath and North East Somerset         800         Special
#> 455                     Bristol, City of         801         Primary
#> 456                     Bristol, City of         801       Secondary
#> 457                     Bristol, City of         801         Special
#> 458                       North Somerset         802         Primary
#> 459                       North Somerset         802       Secondary
#> 460                       North Somerset         802         Special
#> 461                South Gloucestershire         803         Primary
#> 462                South Gloucestershire         803       Secondary
#> 463                South Gloucestershire         803         Special
#> 464                             Plymouth         879         Primary
#> 465                             Plymouth         879       Secondary
#> 466                             Plymouth         879         Special
#> 467                               Torbay         880         Primary
#> 468                               Torbay         880       Secondary
#> 469                               Torbay         880         Special
#> 470                              Swindon         866         Primary
#> 471                              Swindon         866       Secondary
#> 472                              Swindon         866         Special
#> 473                             Cornwall         908         Primary
#> 474                             Cornwall         908       Secondary
#> 475                             Cornwall         908         Special
#> 476                      Isles of Scilly         420       Secondary
#> 477                            Wiltshire         865         Primary
#> 478                            Wiltshire         865       Secondary
#> 479                            Wiltshire         865         Special
#> 480  Bournemouth, Christchurch and Poole         839         Primary
#> 481  Bournemouth, Christchurch and Poole         839       Secondary
#> 482  Bournemouth, Christchurch and Poole         839         Special
#> 483                               Dorset         838         Primary
#> 484                               Dorset         838       Secondary
#> 485                               Dorset         838         Special
#> 486                             Somerset         933         Primary
#> 487                             Somerset         933       Secondary
#> 488                             Somerset         933         Special
#> 489                                Devon         878         Primary
#> 490                                Devon         878       Secondary
#> 491                                Devon         878         Special
#> 492                      Gloucestershire         916         Primary
#> 493                      Gloucestershire         916       Secondary
#> 494                      Gloucestershire         916         Special
#> 495                                 <NA>          NA     All schools
#> 496                                 <NA>          NA         Primary
#> 497                                 <NA>          NA       Secondary
#> 498                                 <NA>          NA         Special
#> 499                                 <NA>          NA     All schools
#> 500                                 <NA>          NA         Primary
#> 501                                 <NA>          NA       Secondary
#> 502                                 <NA>          NA         Special
#> 503                           Hartlepool         805         Primary
#> 504                           Hartlepool         805       Secondary
#> 505                           Hartlepool         805         Special
#> 506                        Middlesbrough         806         Primary
#> 507                        Middlesbrough         806       Secondary
#> 508                        Middlesbrough         806         Special
#> 509                 Redcar and Cleveland         807         Primary
#> 510                 Redcar and Cleveland         807       Secondary
#> 511                 Redcar and Cleveland         807         Special
#> 512                     Stockton-on-Tees         808         Primary
#> 513                     Stockton-on-Tees         808       Secondary
#> 514                     Stockton-on-Tees         808         Special
#> 515                           Darlington         841         Primary
#> 516                           Darlington         841       Secondary
#> 517                           Darlington         841         Special
#> 518                        County Durham         840         Primary
#> 519                        County Durham         840       Secondary
#> 520                        County Durham         840         Special
#> 521                       Northumberland         929         Primary
#> 522                       Northumberland         929       Secondary
#> 523                       Northumberland         929         Special
#> 524                  Newcastle upon Tyne         391         Primary
#> 525                  Newcastle upon Tyne         391       Secondary
#> 526                  Newcastle upon Tyne         391         Special
#> 527                       North Tyneside         392         Primary
#> 528                       North Tyneside         392       Secondary
#> 529                       North Tyneside         392         Special
#> 530                       South Tyneside         393         Primary
#> 531                       South Tyneside         393       Secondary
#> 532                       South Tyneside         393         Special
#> 533                           Sunderland         394         Primary
#> 534                           Sunderland         394       Secondary
#> 535                           Sunderland         394         Special
#> 536                            Gateshead         390         Primary
#> 537                            Gateshead         390       Secondary
#> 538                            Gateshead         390         Special
#> 539                                 <NA>          NA     All schools
#> 540                                 <NA>          NA         Primary
#> 541                                 <NA>          NA       Secondary
#> 542                                 <NA>          NA         Special
#> 543                               Halton         876         Primary
#> 544                               Halton         876       Secondary
#> 545                               Halton         876         Special
#> 546                           Warrington         877         Primary
#> 547                           Warrington         877       Secondary
#> 548                           Warrington         877         Special
#> 549                Blackburn with Darwen         889         Primary
#> 550                Blackburn with Darwen         889       Secondary
#> 551                Blackburn with Darwen         889         Special
#> 552                            Blackpool         890         Primary
#> 553                            Blackpool         890       Secondary
#> 554                            Blackpool         890         Special
#> 555                        Cheshire East         895         Primary
#> 556                        Cheshire East         895       Secondary
#> 557                        Cheshire East         895         Special
#> 558            Cheshire West and Chester         896         Primary
#> 559            Cheshire West and Chester         896       Secondary
#> 560            Cheshire West and Chester         896         Special
#> 561                           Cumberland         942         Primary
#> 562                           Cumberland         942       Secondary
#> 563                           Cumberland         942         Special
#> 564              Westmorland and Furness         943         Primary
#> 565              Westmorland and Furness         943       Secondary
#> 566              Westmorland and Furness         943         Special
#> 567                               Bolton         350         Primary
#> 568                               Bolton         350       Secondary
#> 569                               Bolton         350         Special
#> 570                                 Bury         351         Primary
#> 571                                 Bury         351       Secondary
#> 572                                 Bury         351         Special
#> 573                           Manchester         352         Primary
#> 574                           Manchester         352       Secondary
#> 575                           Manchester         352         Special
#> 576                               Oldham         353         Primary
#> 577                               Oldham         353       Secondary
#> 578                               Oldham         353         Special
#> 579                             Rochdale         354         Primary
#> 580                             Rochdale         354       Secondary
#> 581                             Rochdale         354         Special
#> 582                              Salford         355         Primary
#> 583                              Salford         355       Secondary
#> 584                              Salford         355         Special
#> 585                            Stockport         356         Primary
#> 586                            Stockport         356       Secondary
#> 587                            Stockport         356         Special
#> 588                             Tameside         357         Primary
#> 589                             Tameside         357       Secondary
#> 590                             Tameside         357         Special
#> 591                             Trafford         358         Primary
#> 592                             Trafford         358       Secondary
#> 593                             Trafford         358         Special
#> 594                                Wigan         359         Primary
#> 595                                Wigan         359       Secondary
#> 596                                Wigan         359         Special
#> 597                             Knowsley         340         Primary
#> 598                             Knowsley         340       Secondary
#> 599                             Knowsley         340         Special
#> 600                            Liverpool         341         Primary
#> 601                            Liverpool         341       Secondary
#> 602                            Liverpool         341         Special
#> 603                           St. Helens         342         Primary
#> 604                           St. Helens         342       Secondary
#> 605                           St. Helens         342         Special
#> 606                               Sefton         343         Primary
#> 607                               Sefton         343       Secondary
#> 608                               Sefton         343         Special
#> 609                               Wirral         344         Primary
#> 610                               Wirral         344       Secondary
#> 611                               Wirral         344         Special
#> 612                           Lancashire         888         Primary
#> 613                           Lancashire         888       Secondary
#> 614                           Lancashire         888         Special
#> 615                                 <NA>          NA     All schools
#> 616                                 <NA>          NA         Primary
#> 617                                 <NA>          NA       Secondary
#> 618                                 <NA>          NA         Special
#> 619          Kingston upon Hull, City of         810         Primary
#> 620          Kingston upon Hull, City of         810       Secondary
#> 621          Kingston upon Hull, City of         810         Special
#> 622             East Riding of Yorkshire         811         Primary
#> 623             East Riding of Yorkshire         811       Secondary
#> 624             East Riding of Yorkshire         811         Special
#> 625              North East Lincolnshire         812         Primary
#> 626              North East Lincolnshire         812       Secondary
#> 627              North East Lincolnshire         812         Special
#> 628                   North Lincolnshire         813         Primary
#> 629                   North Lincolnshire         813       Secondary
#> 630                   North Lincolnshire         813         Special
#> 631                                 York         816         Primary
#> 632                                 York         816       Secondary
#> 633                                 York         816         Special
#> 634                      North Yorkshire         815         Primary
#> 635                      North Yorkshire         815       Secondary
#> 636                      North Yorkshire         815         Special
#> 637                             Barnsley         370         Primary
#> 638                             Barnsley         370       Secondary
#> 639                             Barnsley         370         Special
#> 640                            Doncaster         371         Primary
#> 641                            Doncaster         371       Secondary
#> 642                            Doncaster         371         Special
#> 643                            Rotherham         372         Primary
#> 644                            Rotherham         372       Secondary
#> 645                            Rotherham         372         Special
#> 646                            Sheffield         373         Primary
#> 647                            Sheffield         373       Secondary
#> 648                            Sheffield         373         Special
#> 649                             Bradford         380         Primary
#> 650                             Bradford         380       Secondary
#> 651                             Bradford         380         Special
#> 652                           Calderdale         381         Primary
#> 653                           Calderdale         381       Secondary
#> 654                           Calderdale         381         Special
#> 655                             Kirklees         382         Primary
#> 656                             Kirklees         382       Secondary
#> 657                             Kirklees         382         Special
#> 658                                Leeds         383         Primary
#> 659                                Leeds         383       Secondary
#> 660                                Leeds         383         Special
#> 661                            Wakefield         384         Primary
#> 662                            Wakefield         384       Secondary
#> 663                            Wakefield         384         Special
#> 664                                 <NA>          NA     All schools
#> 665                                 <NA>          NA         Primary
#> 666                                 <NA>          NA       Secondary
#> 667                                 <NA>          NA         Special
#> 668                                Derby         831         Primary
#> 669                                Derby         831       Secondary
#> 670                                Derby         831         Special
#> 671                            Leicester         856         Primary
#> 672                            Leicester         856       Secondary
#> 673                            Leicester         856         Special
#> 674                              Rutland         857         Primary
#> 675                              Rutland         857       Secondary
#> 676                           Nottingham         892         Primary
#> 677                           Nottingham         892       Secondary
#> 678                           Nottingham         892         Special
#> 679               North Northamptonshire         940         Primary
#> 680               North Northamptonshire         940       Secondary
#> 681               North Northamptonshire         940         Special
#> 682                West Northamptonshire         941         Primary
#> 683                West Northamptonshire         941       Secondary
#> 684                West Northamptonshire         941         Special
#> 685                           Derbyshire         830         Primary
#> 686                           Derbyshire         830       Secondary
#> 687                           Derbyshire         830         Special
#> 688                       Leicestershire         855         Primary
#> 689                       Leicestershire         855       Secondary
#> 690                       Leicestershire         855         Special
#> 691                         Lincolnshire         925         Primary
#> 692                         Lincolnshire         925       Secondary
#> 693                         Lincolnshire         925         Special
#> 694                      Nottinghamshire         891         Primary
#> 695                      Nottinghamshire         891       Secondary
#> 696                      Nottinghamshire         891         Special
#> 697                                 <NA>          NA     All schools
#> 698                                 <NA>          NA         Primary
#> 699                                 <NA>          NA       Secondary
#> 700                                 <NA>          NA         Special
#> 701             Herefordshire, County of         884         Primary
#> 702             Herefordshire, County of         884       Secondary
#> 703             Herefordshire, County of         884         Special
#> 704                   Telford and Wrekin         894         Primary
#> 705                   Telford and Wrekin         894       Secondary
#> 706                   Telford and Wrekin         894         Special
#> 707                       Stoke-on-Trent         861         Primary
#> 708                       Stoke-on-Trent         861       Secondary
#> 709                       Stoke-on-Trent         861         Special
#> 710                           Shropshire         893         Primary
#> 711                           Shropshire         893       Secondary
#> 712                           Shropshire         893         Special
#> 713                           Birmingham         330         Primary
#> 714                           Birmingham         330       Secondary
#> 715                           Birmingham         330         Special
#> 716                             Coventry         331         Primary
#> 717                             Coventry         331       Secondary
#> 718                             Coventry         331         Special
#> 719                               Dudley         332         Primary
#> 720                               Dudley         332       Secondary
#> 721                               Dudley         332         Special
#> 722                             Sandwell         333         Primary
#> 723                             Sandwell         333       Secondary
#> 724                             Sandwell         333         Special
#> 725                             Solihull         334         Primary
#> 726                             Solihull         334       Secondary
#> 727                             Solihull         334         Special
#> 728                              Walsall         335         Primary
#> 729                              Walsall         335       Secondary
#> 730                              Walsall         335         Special
#> 731                        Wolverhampton         336         Primary
#> 732                        Wolverhampton         336       Secondary
#> 733                        Wolverhampton         336         Special
#> 734                        Staffordshire         860         Primary
#> 735                        Staffordshire         860       Secondary
#> 736                        Staffordshire         860         Special
#> 737                         Warwickshire         937         Primary
#> 738                         Warwickshire         937       Secondary
#> 739                         Warwickshire         937         Special
#> 740                       Worcestershire         885         Primary
#> 741                       Worcestershire         885       Secondary
#> 742                       Worcestershire         885         Special
#> 743                                 <NA>          NA     All schools
#> 744                                 <NA>          NA         Primary
#> 745                                 <NA>          NA       Secondary
#> 746                                 <NA>          NA         Special
#> 747                         Peterborough         874         Primary
#> 748                         Peterborough         874       Secondary
#> 749                         Peterborough         874         Special
#> 750                                Luton         821         Primary
#> 751                                Luton         821       Secondary
#> 752                                Luton         821         Special
#> 753                      Southend-on-Sea         882         Primary
#> 754                      Southend-on-Sea         882       Secondary
#> 755                      Southend-on-Sea         882         Special
#> 756                             Thurrock         883         Primary
#> 757                             Thurrock         883       Secondary
#> 758                             Thurrock         883         Special
#> 759                              Bedford         822         Primary
#> 760                              Bedford         822       Secondary
#> 761                              Bedford         822         Special
#> 762                 Central Bedfordshire         823         Primary
#> 763                 Central Bedfordshire         823       Secondary
#> 764                 Central Bedfordshire         823         Special
#> 765                       Cambridgeshire         873         Primary
#> 766                       Cambridgeshire         873       Secondary
#> 767                       Cambridgeshire         873         Special
#> 768                                Essex         881         Primary
#> 769                                Essex         881       Secondary
#> 770                                Essex         881         Special
#> 771                        Hertfordshire         919         Primary
#> 772                        Hertfordshire         919       Secondary
#> 773                        Hertfordshire         919         Special
#> 774                              Norfolk         926         Primary
#> 775                              Norfolk         926       Secondary
#> 776                              Norfolk         926         Special
#> 777                              Suffolk         935         Primary
#> 778                              Suffolk         935       Secondary
#> 779                              Suffolk         935         Special
#> 780                                 <NA>          NA     All schools
#> 781                                 <NA>          NA         Primary
#> 782                                 <NA>          NA       Secondary
#> 783                                 <NA>          NA         Special
#> 784                       City of London         201         Primary
#> 785                 Barking and Dagenham         301         Primary
#> 786                 Barking and Dagenham         301       Secondary
#> 787                 Barking and Dagenham         301         Special
#> 788                               Barnet         302         Primary
#> 789                               Barnet         302       Secondary
#> 790                               Barnet         302         Special
#> 791                               Bexley         303         Primary
#> 792                               Bexley         303       Secondary
#> 793                               Bexley         303         Special
#> 794                                Brent         304         Primary
#> 795                                Brent         304       Secondary
#> 796                                Brent         304         Special
#> 797                              Bromley         305         Primary
#> 798                              Bromley         305       Secondary
#> 799                              Bromley         305         Special
#> 800                               Camden         202         Primary
#> 801                               Camden         202       Secondary
#> 802                               Camden         202         Special
#> 803                              Croydon         306         Primary
#> 804                              Croydon         306       Secondary
#> 805                              Croydon         306         Special
#> 806                               Ealing         307         Primary
#> 807                               Ealing         307       Secondary
#> 808                               Ealing         307         Special
#> 809                              Enfield         308         Primary
#> 810                              Enfield         308       Secondary
#> 811                              Enfield         308         Special
#> 812                            Greenwich         203         Primary
#> 813                            Greenwich         203       Secondary
#> 814                            Greenwich         203         Special
#> 815                              Hackney         204         Primary
#> 816                              Hackney         204       Secondary
#> 817                              Hackney         204         Special
#> 818               Hammersmith and Fulham         205         Primary
#> 819               Hammersmith and Fulham         205       Secondary
#> 820               Hammersmith and Fulham         205         Special
#> 821                             Haringey         309         Primary
#> 822                             Haringey         309       Secondary
#> 823                             Haringey         309         Special
#> 824                               Harrow         310         Primary
#> 825                               Harrow         310       Secondary
#> 826                               Harrow         310         Special
#> 827                             Havering         311         Primary
#> 828                             Havering         311       Secondary
#> 829                             Havering         311         Special
#> 830                           Hillingdon         312         Primary
#> 831                           Hillingdon         312       Secondary
#> 832                           Hillingdon         312         Special
#> 833                             Hounslow         313         Primary
#> 834                             Hounslow         313       Secondary
#> 835                             Hounslow         313         Special
#> 836                            Islington         206         Primary
#> 837                            Islington         206       Secondary
#> 838                            Islington         206         Special
#> 839               Kensington and Chelsea         207         Primary
#> 840               Kensington and Chelsea         207       Secondary
#> 841               Kensington and Chelsea         207         Special
#> 842                 Kingston upon Thames         314         Primary
#> 843                 Kingston upon Thames         314       Secondary
#> 844                 Kingston upon Thames         314         Special
#> 845                              Lambeth         208         Primary
#> 846                              Lambeth         208       Secondary
#> 847                              Lambeth         208         Special
#> 848                             Lewisham         209         Primary
#> 849                             Lewisham         209       Secondary
#> 850                             Lewisham         209         Special
#> 851                               Merton         315         Primary
#> 852                               Merton         315       Secondary
#> 853                               Merton         315         Special
#> 854                               Newham         316         Primary
#> 855                               Newham         316       Secondary
#> 856                               Newham         316         Special
#> 857                            Redbridge         317         Primary
#> 858                            Redbridge         317       Secondary
#> 859                            Redbridge         317         Special
#> 860                 Richmond upon Thames         318         Primary
#> 861                 Richmond upon Thames         318       Secondary
#> 862                 Richmond upon Thames         318         Special
#> 863                            Southwark         210         Primary
#> 864                            Southwark         210       Secondary
#> 865                            Southwark         210         Special
#> 866                               Sutton         319         Primary
#> 867                               Sutton         319       Secondary
#> 868                               Sutton         319         Special
#> 869                        Tower Hamlets         211         Primary
#> 870                        Tower Hamlets         211       Secondary
#> 871                        Tower Hamlets         211         Special
#> 872                       Waltham Forest         320         Primary
#> 873                       Waltham Forest         320       Secondary
#> 874                       Waltham Forest         320         Special
#> 875                           Wandsworth         212         Primary
#> 876                           Wandsworth         212       Secondary
#> 877                           Wandsworth         212         Special
#> 878                          Westminster         213         Primary
#> 879                          Westminster         213       Secondary
#> 880                          Westminster         213         Special
#> 881                                 <NA>          NA     All schools
#> 882                                 <NA>          NA         Primary
#> 883                                 <NA>          NA       Secondary
#> 884                                 <NA>          NA         Special
#> 885                               Medway         887         Primary
#> 886                               Medway         887       Secondary
#> 887                               Medway         887         Special
#> 888                     Bracknell Forest         867         Primary
#> 889                     Bracknell Forest         867       Secondary
#> 890                     Bracknell Forest         867         Special
#> 891                       West Berkshire         869         Primary
#> 892                       West Berkshire         869       Secondary
#> 893                       West Berkshire         869         Special
#> 894                              Reading         870         Primary
#> 895                              Reading         870       Secondary
#> 896                              Reading         870         Special
#> 897                               Slough         871         Primary
#> 898                               Slough         871       Secondary
#> 899                               Slough         871         Special
#> 900               Windsor and Maidenhead         868         Primary
#> 901               Windsor and Maidenhead         868       Secondary
#> 902               Windsor and Maidenhead         868         Special
#> 903                            Wokingham         872         Primary
#> 904                            Wokingham         872       Secondary
#> 905                            Wokingham         872         Special
#> 906                        Milton Keynes         826         Primary
#> 907                        Milton Keynes         826       Secondary
#> 908                        Milton Keynes         826         Special
#> 909                    Brighton and Hove         846         Primary
#> 910                    Brighton and Hove         846       Secondary
#> 911                    Brighton and Hove         846         Special
#> 912                           Portsmouth         851         Primary
#> 913                           Portsmouth         851       Secondary
#> 914                           Portsmouth         851         Special
#> 915                          Southampton         852         Primary
#> 916                          Southampton         852       Secondary
#> 917                          Southampton         852         Special
#> 918                        Isle of Wight         921         Primary
#> 919                        Isle of Wight         921       Secondary
#> 920                        Isle of Wight         921         Special
#> 921                      Buckinghamshire         825         Primary
#> 922                      Buckinghamshire         825       Secondary
#> 923                      Buckinghamshire         825         Special
#> 924                          East Sussex         845         Primary
#> 925                          East Sussex         845       Secondary
#> 926                          East Sussex         845         Special
#> 927                            Hampshire         850         Primary
#> 928                            Hampshire         850       Secondary
#> 929                            Hampshire         850         Special
#> 930                                 Kent         886         Primary
#> 931                                 Kent         886       Secondary
#> 932                                 Kent         886         Special
#> 933                          Oxfordshire         931         Primary
#> 934                          Oxfordshire         931       Secondary
#> 935                          Oxfordshire         931         Special
#> 936                               Surrey         936         Primary
#> 937                               Surrey         936       Secondary
#> 938                               Surrey         936         Special
#> 939                          West Sussex         938         Primary
#> 940                          West Sussex         938       Secondary
#> 941                          West Sussex         938         Special
#> 942                                 <NA>          NA     All schools
#> 943                                 <NA>          NA         Primary
#> 944                                 <NA>          NA       Secondary
#> 945                                 <NA>          NA         Special
#> 946         Bath and North East Somerset         800         Primary
#> 947         Bath and North East Somerset         800       Secondary
#> 948         Bath and North East Somerset         800         Special
#> 949                     Bristol, City of         801         Primary
#> 950                     Bristol, City of         801       Secondary
#> 951                     Bristol, City of         801         Special
#> 952                       North Somerset         802         Primary
#> 953                       North Somerset         802       Secondary
#> 954                       North Somerset         802         Special
#> 955                South Gloucestershire         803         Primary
#> 956                South Gloucestershire         803       Secondary
#> 957                South Gloucestershire         803         Special
#> 958                             Plymouth         879         Primary
#> 959                             Plymouth         879       Secondary
#> 960                             Plymouth         879         Special
#> 961                               Torbay         880         Primary
#> 962                               Torbay         880       Secondary
#> 963                               Torbay         880         Special
#> 964                              Swindon         866         Primary
#> 965                              Swindon         866       Secondary
#> 966                              Swindon         866         Special
#> 967                             Cornwall         908         Primary
#> 968                             Cornwall         908       Secondary
#> 969                             Cornwall         908         Special
#> 970                      Isles of Scilly         420       Secondary
#> 971                            Wiltshire         865         Primary
#> 972                            Wiltshire         865       Secondary
#> 973                            Wiltshire         865         Special
#> 974  Bournemouth, Christchurch and Poole         839         Primary
#> 975  Bournemouth, Christchurch and Poole         839       Secondary
#> 976  Bournemouth, Christchurch and Poole         839         Special
#> 977                               Dorset         838         Primary
#> 978                               Dorset         838       Secondary
#> 979                               Dorset         838         Special
#> 980                             Somerset         933         Primary
#> 981                             Somerset         933       Secondary
#> 982                             Somerset         933         Special
#> 983                                Devon         878         Primary
#> 984                                Devon         878       Secondary
#> 985                                Devon         878         Special
#> 986                      Gloucestershire         916         Primary
#> 987                      Gloucestershire         916       Secondary
#> 988                      Gloucestershire         916         Special
#> 989                                 <NA>          NA     All schools
#> 990                                 <NA>          NA         Primary
#> 991                                 <NA>          NA       Secondary
#> 992                                 <NA>          NA         Special
#> 993                                 <NA>          NA     All schools
#> 994                                 <NA>          NA         Primary
#> 995                                 <NA>          NA       Secondary
#> 996                                 <NA>          NA         Special
#> 997                           Hartlepool         805         Primary
#> 998                           Hartlepool         805       Secondary
#> 999                           Hartlepool         805         Special
#> 1000                       Middlesbrough         806         Primary
#> 1001                       Middlesbrough         806       Secondary
#> 1002                       Middlesbrough         806         Special
#> 1003                Redcar and Cleveland         807         Primary
#> 1004                Redcar and Cleveland         807       Secondary
#> 1005                Redcar and Cleveland         807         Special
#> 1006                    Stockton-on-Tees         808         Primary
#> 1007                    Stockton-on-Tees         808       Secondary
#> 1008                    Stockton-on-Tees         808         Special
#> 1009                          Darlington         841         Primary
#> 1010                          Darlington         841       Secondary
#> 1011                          Darlington         841         Special
#> 1012                       County Durham         840         Primary
#> 1013                       County Durham         840       Secondary
#> 1014                       County Durham         840         Special
#> 1015                      Northumberland         929         Primary
#> 1016                      Northumberland         929       Secondary
#> 1017                      Northumberland         929         Special
#> 1018                 Newcastle upon Tyne         391         Primary
#> 1019                 Newcastle upon Tyne         391       Secondary
#> 1020                 Newcastle upon Tyne         391         Special
#> 1021                      North Tyneside         392         Primary
#> 1022                      North Tyneside         392       Secondary
#> 1023                      North Tyneside         392         Special
#> 1024                      South Tyneside         393         Primary
#> 1025                      South Tyneside         393       Secondary
#> 1026                      South Tyneside         393         Special
#> 1027                          Sunderland         394         Primary
#> 1028                          Sunderland         394       Secondary
#> 1029                          Sunderland         394         Special
#> 1030                           Gateshead         390         Primary
#> 1031                           Gateshead         390       Secondary
#> 1032                           Gateshead         390         Special
#> 1033                                <NA>          NA     All schools
#> 1034                                <NA>          NA         Primary
#> 1035                                <NA>          NA       Secondary
#> 1036                                <NA>          NA         Special
#> 1037                              Halton         876         Primary
#> 1038                              Halton         876       Secondary
#> 1039                              Halton         876         Special
#> 1040                          Warrington         877         Primary
#> 1041                          Warrington         877       Secondary
#> 1042                          Warrington         877         Special
#> 1043               Blackburn with Darwen         889         Primary
#> 1044               Blackburn with Darwen         889       Secondary
#> 1045               Blackburn with Darwen         889         Special
#> 1046                           Blackpool         890         Primary
#> 1047                           Blackpool         890       Secondary
#> 1048                           Blackpool         890         Special
#> 1049                       Cheshire East         895         Primary
#> 1050                       Cheshire East         895       Secondary
#> 1051                       Cheshire East         895         Special
#> 1052           Cheshire West and Chester         896         Primary
#> 1053           Cheshire West and Chester         896       Secondary
#> 1054           Cheshire West and Chester         896         Special
#> 1055                          Cumberland         942         Primary
#> 1056                          Cumberland         942       Secondary
#> 1057                          Cumberland         942         Special
#> 1058             Westmorland and Furness         943         Primary
#> 1059             Westmorland and Furness         943       Secondary
#> 1060             Westmorland and Furness         943         Special
#> 1061                              Bolton         350         Primary
#> 1062                              Bolton         350       Secondary
#> 1063                              Bolton         350         Special
#> 1064                                Bury         351         Primary
#> 1065                                Bury         351       Secondary
#> 1066                                Bury         351         Special
#> 1067                          Manchester         352         Primary
#> 1068                          Manchester         352       Secondary
#> 1069                          Manchester         352         Special
#> 1070                              Oldham         353         Primary
#> 1071                              Oldham         353       Secondary
#> 1072                              Oldham         353         Special
#> 1073                            Rochdale         354         Primary
#> 1074                            Rochdale         354       Secondary
#> 1075                            Rochdale         354         Special
#> 1076                             Salford         355         Primary
#> 1077                             Salford         355       Secondary
#> 1078                             Salford         355         Special
#> 1079                           Stockport         356         Primary
#> 1080                           Stockport         356       Secondary
#> 1081                           Stockport         356         Special
#> 1082                            Tameside         357         Primary
#> 1083                            Tameside         357       Secondary
#> 1084                            Tameside         357         Special
#> 1085                            Trafford         358         Primary
#> 1086                            Trafford         358       Secondary
#> 1087                            Trafford         358         Special
#> 1088                               Wigan         359         Primary
#> 1089                               Wigan         359       Secondary
#> 1090                               Wigan         359         Special
#> 1091                            Knowsley         340         Primary
#> 1092                            Knowsley         340       Secondary
#> 1093                            Knowsley         340         Special
#> 1094                           Liverpool         341         Primary
#> 1095                           Liverpool         341       Secondary
#> 1096                           Liverpool         341         Special
#> 1097                          St. Helens         342         Primary
#> 1098                          St. Helens         342       Secondary
#> 1099                          St. Helens         342         Special
#> 1100                              Sefton         343         Primary
#> 1101                              Sefton         343       Secondary
#> 1102                              Sefton         343         Special
#> 1103                              Wirral         344         Primary
#> 1104                              Wirral         344       Secondary
#> 1105                              Wirral         344         Special
#> 1106                          Lancashire         888         Primary
#> 1107                          Lancashire         888       Secondary
#> 1108                          Lancashire         888         Special
#> 1109                                <NA>          NA     All schools
#> 1110                                <NA>          NA         Primary
#> 1111                                <NA>          NA       Secondary
#> 1112                                <NA>          NA         Special
#> 1113         Kingston upon Hull, City of         810         Primary
#> 1114         Kingston upon Hull, City of         810       Secondary
#> 1115         Kingston upon Hull, City of         810         Special
#> 1116            East Riding of Yorkshire         811         Primary
#> 1117            East Riding of Yorkshire         811       Secondary
#> 1118            East Riding of Yorkshire         811         Special
#> 1119             North East Lincolnshire         812         Primary
#> 1120             North East Lincolnshire         812       Secondary
#> 1121             North East Lincolnshire         812         Special
#> 1122                  North Lincolnshire         813         Primary
#> 1123                  North Lincolnshire         813       Secondary
#> 1124                  North Lincolnshire         813         Special
#> 1125                                York         816         Primary
#> 1126                                York         816       Secondary
#> 1127                                York         816         Special
#> 1128                     North Yorkshire         815         Primary
#> 1129                     North Yorkshire         815       Secondary
#> 1130                     North Yorkshire         815         Special
#> 1131                            Barnsley         370         Primary
#> 1132                            Barnsley         370       Secondary
#> 1133                            Barnsley         370         Special
#> 1134                           Doncaster         371         Primary
#> 1135                           Doncaster         371       Secondary
#> 1136                           Doncaster         371         Special
#> 1137                           Rotherham         372         Primary
#> 1138                           Rotherham         372       Secondary
#> 1139                           Rotherham         372         Special
#> 1140                           Sheffield         373         Primary
#> 1141                           Sheffield         373       Secondary
#> 1142                           Sheffield         373         Special
#> 1143                            Bradford         380         Primary
#> 1144                            Bradford         380       Secondary
#> 1145                            Bradford         380         Special
#> 1146                          Calderdale         381         Primary
#> 1147                          Calderdale         381       Secondary
#> 1148                          Calderdale         381         Special
#> 1149                            Kirklees         382         Primary
#> 1150                            Kirklees         382       Secondary
#> 1151                            Kirklees         382         Special
#> 1152                               Leeds         383         Primary
#> 1153                               Leeds         383       Secondary
#> 1154                               Leeds         383         Special
#> 1155                           Wakefield         384         Primary
#> 1156                           Wakefield         384       Secondary
#> 1157                           Wakefield         384         Special
#> 1158                                <NA>          NA     All schools
#> 1159                                <NA>          NA         Primary
#> 1160                                <NA>          NA       Secondary
#> 1161                                <NA>          NA         Special
#> 1162                               Derby         831         Primary
#> 1163                               Derby         831       Secondary
#> 1164                               Derby         831         Special
#> 1165                           Leicester         856         Primary
#> 1166                           Leicester         856       Secondary
#> 1167                           Leicester         856         Special
#> 1168                             Rutland         857         Primary
#> 1169                             Rutland         857       Secondary
#> 1170                          Nottingham         892         Primary
#> 1171                          Nottingham         892       Secondary
#> 1172                          Nottingham         892         Special
#> 1173              North Northamptonshire         940         Primary
#> 1174              North Northamptonshire         940       Secondary
#> 1175              North Northamptonshire         940         Special
#> 1176               West Northamptonshire         941         Primary
#> 1177               West Northamptonshire         941       Secondary
#> 1178               West Northamptonshire         941         Special
#> 1179                          Derbyshire         830         Primary
#> 1180                          Derbyshire         830       Secondary
#> 1181                          Derbyshire         830         Special
#> 1182                      Leicestershire         855         Primary
#> 1183                      Leicestershire         855       Secondary
#> 1184                      Leicestershire         855         Special
#> 1185                        Lincolnshire         925         Primary
#> 1186                        Lincolnshire         925       Secondary
#> 1187                        Lincolnshire         925         Special
#> 1188                     Nottinghamshire         891         Primary
#> 1189                     Nottinghamshire         891       Secondary
#> 1190                     Nottinghamshire         891         Special
#> 1191                                <NA>          NA     All schools
#> 1192                                <NA>          NA         Primary
#> 1193                                <NA>          NA       Secondary
#> 1194                                <NA>          NA         Special
#> 1195            Herefordshire, County of         884         Primary
#> 1196            Herefordshire, County of         884       Secondary
#> 1197            Herefordshire, County of         884         Special
#> 1198                  Telford and Wrekin         894         Primary
#> 1199                  Telford and Wrekin         894       Secondary
#> 1200                  Telford and Wrekin         894         Special
#> 1201                      Stoke-on-Trent         861         Primary
#> 1202                      Stoke-on-Trent         861       Secondary
#> 1203                      Stoke-on-Trent         861         Special
#> 1204                          Shropshire         893         Primary
#> 1205                          Shropshire         893       Secondary
#> 1206                          Shropshire         893         Special
#> 1207                          Birmingham         330         Primary
#> 1208                          Birmingham         330       Secondary
#> 1209                          Birmingham         330         Special
#> 1210                            Coventry         331         Primary
#> 1211                            Coventry         331       Secondary
#> 1212                            Coventry         331         Special
#> 1213                              Dudley         332         Primary
#> 1214                              Dudley         332       Secondary
#> 1215                              Dudley         332         Special
#> 1216                            Sandwell         333         Primary
#> 1217                            Sandwell         333       Secondary
#> 1218                            Sandwell         333         Special
#> 1219                            Solihull         334         Primary
#> 1220                            Solihull         334       Secondary
#> 1221                            Solihull         334         Special
#> 1222                             Walsall         335         Primary
#> 1223                             Walsall         335       Secondary
#> 1224                             Walsall         335         Special
#> 1225                       Wolverhampton         336         Primary
#> 1226                       Wolverhampton         336       Secondary
#> 1227                       Wolverhampton         336         Special
#> 1228                       Staffordshire         860         Primary
#> 1229                       Staffordshire         860       Secondary
#> 1230                       Staffordshire         860         Special
#> 1231                        Warwickshire         937         Primary
#> 1232                        Warwickshire         937       Secondary
#> 1233                        Warwickshire         937         Special
#> 1234                      Worcestershire         885         Primary
#> 1235                      Worcestershire         885       Secondary
#> 1236                      Worcestershire         885         Special
#> 1237                                <NA>          NA     All schools
#> 1238                                <NA>          NA         Primary
#> 1239                                <NA>          NA       Secondary
#> 1240                                <NA>          NA         Special
#> 1241                        Peterborough         874         Primary
#> 1242                        Peterborough         874       Secondary
#> 1243                        Peterborough         874         Special
#> 1244                               Luton         821         Primary
#> 1245                               Luton         821       Secondary
#> 1246                               Luton         821         Special
#> 1247                     Southend-on-Sea         882         Primary
#> 1248                     Southend-on-Sea         882       Secondary
#> 1249                     Southend-on-Sea         882         Special
#> 1250                            Thurrock         883         Primary
#> 1251                            Thurrock         883       Secondary
#> 1252                            Thurrock         883         Special
#> 1253                             Bedford         822         Primary
#> 1254                             Bedford         822       Secondary
#> 1255                             Bedford         822         Special
#> 1256                Central Bedfordshire         823         Primary
#> 1257                Central Bedfordshire         823       Secondary
#> 1258                Central Bedfordshire         823         Special
#> 1259                      Cambridgeshire         873         Primary
#> 1260                      Cambridgeshire         873       Secondary
#> 1261                      Cambridgeshire         873         Special
#> 1262                               Essex         881         Primary
#> 1263                               Essex         881       Secondary
#> 1264                               Essex         881         Special
#> 1265                       Hertfordshire         919         Primary
#> 1266                       Hertfordshire         919       Secondary
#> 1267                       Hertfordshire         919         Special
#> 1268                             Norfolk         926         Primary
#> 1269                             Norfolk         926       Secondary
#> 1270                             Norfolk         926         Special
#> 1271                             Suffolk         935         Primary
#> 1272                             Suffolk         935       Secondary
#> 1273                             Suffolk         935         Special
#> 1274                                <NA>          NA     All schools
#> 1275                                <NA>          NA         Primary
#> 1276                                <NA>          NA       Secondary
#> 1277                                <NA>          NA         Special
#> 1278                      City of London         201         Primary
#> 1279                Barking and Dagenham         301         Primary
#> 1280                Barking and Dagenham         301       Secondary
#> 1281                Barking and Dagenham         301         Special
#> 1282                              Barnet         302         Primary
#> 1283                              Barnet         302       Secondary
#> 1284                              Barnet         302         Special
#> 1285                              Bexley         303         Primary
#> 1286                              Bexley         303       Secondary
#> 1287                              Bexley         303         Special
#> 1288                               Brent         304         Primary
#> 1289                               Brent         304       Secondary
#> 1290                               Brent         304         Special
#> 1291                             Bromley         305         Primary
#> 1292                             Bromley         305       Secondary
#> 1293                             Bromley         305         Special
#> 1294                              Camden         202         Primary
#> 1295                              Camden         202       Secondary
#> 1296                              Camden         202         Special
#> 1297                             Croydon         306         Primary
#> 1298                             Croydon         306       Secondary
#> 1299                             Croydon         306         Special
#> 1300                              Ealing         307         Primary
#> 1301                              Ealing         307       Secondary
#> 1302                              Ealing         307         Special
#> 1303                             Enfield         308         Primary
#> 1304                             Enfield         308       Secondary
#> 1305                             Enfield         308         Special
#> 1306                           Greenwich         203         Primary
#> 1307                           Greenwich         203       Secondary
#> 1308                           Greenwich         203         Special
#> 1309                             Hackney         204         Primary
#> 1310                             Hackney         204       Secondary
#> 1311                             Hackney         204         Special
#> 1312              Hammersmith and Fulham         205         Primary
#> 1313              Hammersmith and Fulham         205       Secondary
#> 1314              Hammersmith and Fulham         205         Special
#> 1315                            Haringey         309         Primary
#> 1316                            Haringey         309       Secondary
#> 1317                            Haringey         309         Special
#> 1318                              Harrow         310         Primary
#> 1319                              Harrow         310       Secondary
#> 1320                              Harrow         310         Special
#> 1321                            Havering         311         Primary
#> 1322                            Havering         311       Secondary
#> 1323                            Havering         311         Special
#> 1324                          Hillingdon         312         Primary
#> 1325                          Hillingdon         312       Secondary
#> 1326                          Hillingdon         312         Special
#> 1327                            Hounslow         313         Primary
#> 1328                            Hounslow         313       Secondary
#> 1329                            Hounslow         313         Special
#> 1330                           Islington         206         Primary
#> 1331                           Islington         206       Secondary
#> 1332                           Islington         206         Special
#> 1333              Kensington and Chelsea         207         Primary
#> 1334              Kensington and Chelsea         207       Secondary
#> 1335              Kensington and Chelsea         207         Special
#> 1336                Kingston upon Thames         314         Primary
#> 1337                Kingston upon Thames         314       Secondary
#> 1338                Kingston upon Thames         314         Special
#> 1339                             Lambeth         208         Primary
#> 1340                             Lambeth         208       Secondary
#> 1341                             Lambeth         208         Special
#> 1342                            Lewisham         209         Primary
#> 1343                            Lewisham         209       Secondary
#> 1344                            Lewisham         209         Special
#> 1345                              Merton         315         Primary
#> 1346                              Merton         315       Secondary
#> 1347                              Merton         315         Special
#> 1348                              Newham         316         Primary
#> 1349                              Newham         316       Secondary
#> 1350                              Newham         316         Special
#> 1351                           Redbridge         317         Primary
#> 1352                           Redbridge         317       Secondary
#> 1353                           Redbridge         317         Special
#> 1354                Richmond upon Thames         318         Primary
#> 1355                Richmond upon Thames         318       Secondary
#> 1356                Richmond upon Thames         318         Special
#> 1357                           Southwark         210         Primary
#> 1358                           Southwark         210       Secondary
#> 1359                           Southwark         210         Special
#> 1360                              Sutton         319         Primary
#> 1361                              Sutton         319       Secondary
#> 1362                              Sutton         319         Special
#> 1363                       Tower Hamlets         211         Primary
#> 1364                       Tower Hamlets         211       Secondary
#> 1365                       Tower Hamlets         211         Special
#> 1366                      Waltham Forest         320         Primary
#> 1367                      Waltham Forest         320       Secondary
#> 1368                      Waltham Forest         320         Special
#> 1369                          Wandsworth         212         Primary
#> 1370                          Wandsworth         212       Secondary
#> 1371                          Wandsworth         212         Special
#> 1372                         Westminster         213         Primary
#> 1373                         Westminster         213       Secondary
#> 1374                         Westminster         213         Special
#> 1375                                <NA>          NA     All schools
#> 1376                                <NA>          NA         Primary
#> 1377                                <NA>          NA       Secondary
#> 1378                                <NA>          NA         Special
#> 1379                              Medway         887         Primary
#> 1380                              Medway         887       Secondary
#> 1381                              Medway         887         Special
#> 1382                    Bracknell Forest         867         Primary
#> 1383                    Bracknell Forest         867       Secondary
#> 1384                    Bracknell Forest         867         Special
#> 1385                      West Berkshire         869         Primary
#> 1386                      West Berkshire         869       Secondary
#> 1387                      West Berkshire         869         Special
#> 1388                             Reading         870         Primary
#> 1389                             Reading         870       Secondary
#> 1390                             Reading         870         Special
#> 1391                              Slough         871         Primary
#> 1392                              Slough         871       Secondary
#> 1393                              Slough         871         Special
#> 1394              Windsor and Maidenhead         868         Primary
#> 1395              Windsor and Maidenhead         868       Secondary
#> 1396              Windsor and Maidenhead         868         Special
#> 1397                           Wokingham         872         Primary
#> 1398                           Wokingham         872       Secondary
#> 1399                           Wokingham         872         Special
#> 1400                       Milton Keynes         826         Primary
#> 1401                       Milton Keynes         826       Secondary
#> 1402                       Milton Keynes         826         Special
#> 1403                   Brighton and Hove         846         Primary
#> 1404                   Brighton and Hove         846       Secondary
#> 1405                   Brighton and Hove         846         Special
#> 1406                          Portsmouth         851         Primary
#> 1407                          Portsmouth         851       Secondary
#> 1408                          Portsmouth         851         Special
#> 1409                         Southampton         852         Primary
#> 1410                         Southampton         852       Secondary
#> 1411                         Southampton         852         Special
#> 1412                       Isle of Wight         921         Primary
#> 1413                       Isle of Wight         921       Secondary
#> 1414                       Isle of Wight         921         Special
#> 1415                     Buckinghamshire         825         Primary
#> 1416                     Buckinghamshire         825       Secondary
#> 1417                     Buckinghamshire         825         Special
#> 1418                         East Sussex         845         Primary
#> 1419                         East Sussex         845       Secondary
#> 1420                         East Sussex         845         Special
#> 1421                           Hampshire         850         Primary
#> 1422                           Hampshire         850       Secondary
#> 1423                           Hampshire         850         Special
#> 1424                                Kent         886         Primary
#> 1425                                Kent         886       Secondary
#> 1426                                Kent         886         Special
#> 1427                         Oxfordshire         931         Primary
#> 1428                         Oxfordshire         931       Secondary
#> 1429                         Oxfordshire         931         Special
#> 1430                              Surrey         936         Primary
#> 1431                              Surrey         936       Secondary
#> 1432                              Surrey         936         Special
#> 1433                         West Sussex         938         Primary
#> 1434                         West Sussex         938       Secondary
#> 1435                         West Sussex         938         Special
#> 1436                                <NA>          NA     All schools
#> 1437                                <NA>          NA         Primary
#> 1438                                <NA>          NA       Secondary
#> 1439                                <NA>          NA         Special
#> 1440        Bath and North East Somerset         800         Primary
#> 1441        Bath and North East Somerset         800       Secondary
#> 1442        Bath and North East Somerset         800         Special
#> 1443                    Bristol, City of         801         Primary
#> 1444                    Bristol, City of         801       Secondary
#> 1445                    Bristol, City of         801         Special
#> 1446                      North Somerset         802         Primary
#> 1447                      North Somerset         802       Secondary
#> 1448                      North Somerset         802         Special
#> 1449               South Gloucestershire         803         Primary
#> 1450               South Gloucestershire         803       Secondary
#> 1451               South Gloucestershire         803         Special
#> 1452                            Plymouth         879         Primary
#> 1453                            Plymouth         879       Secondary
#> 1454                            Plymouth         879         Special
#> 1455                              Torbay         880         Primary
#> 1456                              Torbay         880       Secondary
#> 1457                              Torbay         880         Special
#> 1458                             Swindon         866         Primary
#> 1459                             Swindon         866       Secondary
#> 1460                             Swindon         866         Special
#> 1461                            Cornwall         908         Primary
#> 1462                            Cornwall         908       Secondary
#> 1463                            Cornwall         908         Special
#> 1464                     Isles of Scilly         420       Secondary
#> 1465                           Wiltshire         865         Primary
#> 1466                           Wiltshire         865       Secondary
#> 1467                           Wiltshire         865         Special
#> 1468 Bournemouth, Christchurch and Poole         839         Primary
#> 1469 Bournemouth, Christchurch and Poole         839       Secondary
#> 1470 Bournemouth, Christchurch and Poole         839         Special
#> 1471                              Dorset         838         Primary
#> 1472                              Dorset         838       Secondary
#> 1473                              Dorset         838         Special
#> 1474                            Somerset         933         Primary
#> 1475                            Somerset         933       Secondary
#> 1476                            Somerset         933         Special
#> 1477                               Devon         878         Primary
#> 1478                               Devon         878       Secondary
#> 1479                               Devon         878         Special
#> 1480                     Gloucestershire         916         Primary
#> 1481                     Gloucestershire         916       Secondary
#> 1482                     Gloucestershire         916         Special
#> 1483                                <NA>          NA     All schools
#> 1484                                <NA>          NA         Primary
#> 1485                                <NA>          NA       Secondary
#> 1486                                <NA>          NA         Special
#> 1487                                <NA>          NA     All schools
#> 1488                                <NA>          NA         Primary
#> 1489                                <NA>          NA       Secondary
#> 1490                                <NA>          NA         Special
#> 1491                          Hartlepool         805         Primary
#> 1492                          Hartlepool         805       Secondary
#> 1493                          Hartlepool         805         Special
#> 1494                       Middlesbrough         806         Primary
#> 1495                       Middlesbrough         806       Secondary
#> 1496                       Middlesbrough         806         Special
#> 1497                Redcar and Cleveland         807         Primary
#> 1498                Redcar and Cleveland         807       Secondary
#> 1499                Redcar and Cleveland         807         Special
#> 1500                    Stockton-on-Tees         808         Primary
#> 1501                    Stockton-on-Tees         808       Secondary
#> 1502                    Stockton-on-Tees         808         Special
#> 1503                          Darlington         841         Primary
#> 1504                          Darlington         841       Secondary
#> 1505                          Darlington         841         Special
#> 1506                       County Durham         840         Primary
#> 1507                       County Durham         840       Secondary
#> 1508                       County Durham         840         Special
#> 1509                      Northumberland         929         Primary
#> 1510                      Northumberland         929       Secondary
#> 1511                      Northumberland         929         Special
#> 1512                 Newcastle upon Tyne         391         Primary
#> 1513                 Newcastle upon Tyne         391       Secondary
#> 1514                 Newcastle upon Tyne         391         Special
#> 1515                      North Tyneside         392         Primary
#> 1516                      North Tyneside         392       Secondary
#> 1517                      North Tyneside         392         Special
#> 1518                      South Tyneside         393         Primary
#> 1519                      South Tyneside         393       Secondary
#> 1520                      South Tyneside         393         Special
#> 1521                          Sunderland         394         Primary
#> 1522                          Sunderland         394       Secondary
#> 1523                          Sunderland         394         Special
#> 1524                           Gateshead         390         Primary
#> 1525                           Gateshead         390       Secondary
#> 1526                           Gateshead         390         Special
#> 1527                                <NA>          NA     All schools
#> 1528                                <NA>          NA         Primary
#> 1529                                <NA>          NA       Secondary
#> 1530                                <NA>          NA         Special
#> 1531                              Halton         876         Primary
#> 1532                              Halton         876       Secondary
#> 1533                              Halton         876         Special
#> 1534                          Warrington         877         Primary
#> 1535                          Warrington         877       Secondary
#> 1536                          Warrington         877         Special
#> 1537               Blackburn with Darwen         889         Primary
#> 1538               Blackburn with Darwen         889       Secondary
#> 1539               Blackburn with Darwen         889         Special
#> 1540                           Blackpool         890         Primary
#> 1541                           Blackpool         890       Secondary
#> 1542                           Blackpool         890         Special
#> 1543                       Cheshire East         895         Primary
#> 1544                       Cheshire East         895       Secondary
#> 1545                       Cheshire East         895         Special
#> 1546           Cheshire West and Chester         896         Primary
#> 1547           Cheshire West and Chester         896       Secondary
#> 1548           Cheshire West and Chester         896         Special
#> 1549                          Cumberland         942         Primary
#> 1550                          Cumberland         942       Secondary
#> 1551                          Cumberland         942         Special
#> 1552             Westmorland and Furness         943         Primary
#> 1553             Westmorland and Furness         943       Secondary
#> 1554             Westmorland and Furness         943         Special
#> 1555                              Bolton         350         Primary
#> 1556                              Bolton         350       Secondary
#> 1557                              Bolton         350         Special
#> 1558                                Bury         351         Primary
#> 1559                                Bury         351       Secondary
#> 1560                                Bury         351         Special
#> 1561                          Manchester         352         Primary
#> 1562                          Manchester         352       Secondary
#> 1563                          Manchester         352         Special
#> 1564                              Oldham         353         Primary
#> 1565                              Oldham         353       Secondary
#> 1566                              Oldham         353         Special
#> 1567                            Rochdale         354         Primary
#> 1568                            Rochdale         354       Secondary
#> 1569                            Rochdale         354         Special
#> 1570                             Salford         355         Primary
#> 1571                             Salford         355       Secondary
#> 1572                             Salford         355         Special
#> 1573                           Stockport         356         Primary
#> 1574                           Stockport         356       Secondary
#> 1575                           Stockport         356         Special
#> 1576                            Tameside         357         Primary
#> 1577                            Tameside         357       Secondary
#> 1578                            Tameside         357         Special
#> 1579                            Trafford         358         Primary
#> 1580                            Trafford         358       Secondary
#> 1581                            Trafford         358         Special
#> 1582                               Wigan         359         Primary
#> 1583                               Wigan         359       Secondary
#> 1584                               Wigan         359         Special
#> 1585                            Knowsley         340         Primary
#> 1586                            Knowsley         340       Secondary
#> 1587                            Knowsley         340         Special
#> 1588                           Liverpool         341         Primary
#> 1589                           Liverpool         341       Secondary
#> 1590                           Liverpool         341         Special
#> 1591                          St. Helens         342         Primary
#> 1592                          St. Helens         342       Secondary
#> 1593                          St. Helens         342         Special
#> 1594                              Sefton         343         Primary
#> 1595                              Sefton         343       Secondary
#> 1596                              Sefton         343         Special
#> 1597                              Wirral         344         Primary
#> 1598                              Wirral         344       Secondary
#> 1599                              Wirral         344         Special
#> 1600                          Lancashire         888         Primary
#> 1601                          Lancashire         888       Secondary
#> 1602                          Lancashire         888         Special
#> 1603                                <NA>          NA     All schools
#> 1604                                <NA>          NA         Primary
#> 1605                                <NA>          NA       Secondary
#> 1606                                <NA>          NA         Special
#> 1607         Kingston upon Hull, City of         810         Primary
#> 1608         Kingston upon Hull, City of         810       Secondary
#> 1609         Kingston upon Hull, City of         810         Special
#> 1610            East Riding of Yorkshire         811         Primary
#> 1611            East Riding of Yorkshire         811       Secondary
#> 1612            East Riding of Yorkshire         811         Special
#> 1613             North East Lincolnshire         812         Primary
#> 1614             North East Lincolnshire         812       Secondary
#> 1615             North East Lincolnshire         812         Special
#> 1616                  North Lincolnshire         813         Primary
#> 1617                  North Lincolnshire         813       Secondary
#> 1618                  North Lincolnshire         813         Special
#> 1619                                York         816         Primary
#> 1620                                York         816       Secondary
#> 1621                                York         816         Special
#> 1622                     North Yorkshire         815         Primary
#> 1623                     North Yorkshire         815       Secondary
#> 1624                     North Yorkshire         815         Special
#> 1625                            Barnsley         370         Primary
#> 1626                            Barnsley         370       Secondary
#> 1627                            Barnsley         370         Special
#> 1628                           Doncaster         371         Primary
#> 1629                           Doncaster         371       Secondary
#> 1630                           Doncaster         371         Special
#> 1631                           Rotherham         372         Primary
#> 1632                           Rotherham         372       Secondary
#> 1633                           Rotherham         372         Special
#> 1634                           Sheffield         373         Primary
#> 1635                           Sheffield         373       Secondary
#> 1636                           Sheffield         373         Special
#> 1637                            Bradford         380         Primary
#> 1638                            Bradford         380       Secondary
#> 1639                            Bradford         380         Special
#> 1640                          Calderdale         381         Primary
#> 1641                          Calderdale         381       Secondary
#> 1642                          Calderdale         381         Special
#> 1643                            Kirklees         382         Primary
#> 1644                            Kirklees         382       Secondary
#> 1645                            Kirklees         382         Special
#> 1646                               Leeds         383         Primary
#> 1647                               Leeds         383       Secondary
#> 1648                               Leeds         383         Special
#> 1649                           Wakefield         384         Primary
#> 1650                           Wakefield         384       Secondary
#> 1651                           Wakefield         384         Special
#> 1652                                <NA>          NA     All schools
#> 1653                                <NA>          NA         Primary
#> 1654                                <NA>          NA       Secondary
#> 1655                                <NA>          NA         Special
#> 1656                               Derby         831         Primary
#> 1657                               Derby         831       Secondary
#> 1658                               Derby         831         Special
#> 1659                           Leicester         856         Primary
#> 1660                           Leicester         856       Secondary
#> 1661                           Leicester         856         Special
#> 1662                             Rutland         857         Primary
#> 1663                             Rutland         857       Secondary
#> 1664                          Nottingham         892         Primary
#> 1665                          Nottingham         892       Secondary
#> 1666                          Nottingham         892         Special
#> 1667              North Northamptonshire         940         Primary
#> 1668              North Northamptonshire         940       Secondary
#> 1669              North Northamptonshire         940         Special
#> 1670               West Northamptonshire         941         Primary
#> 1671               West Northamptonshire         941       Secondary
#> 1672               West Northamptonshire         941         Special
#> 1673                          Derbyshire         830         Primary
#> 1674                          Derbyshire         830       Secondary
#> 1675                          Derbyshire         830         Special
#> 1676                      Leicestershire         855         Primary
#> 1677                      Leicestershire         855       Secondary
#> 1678                      Leicestershire         855         Special
#> 1679                        Lincolnshire         925         Primary
#> 1680                        Lincolnshire         925       Secondary
#> 1681                        Lincolnshire         925         Special
#> 1682                     Nottinghamshire         891         Primary
#> 1683                     Nottinghamshire         891       Secondary
#> 1684                     Nottinghamshire         891         Special
#> 1685                                <NA>          NA     All schools
#> 1686                                <NA>          NA         Primary
#> 1687                                <NA>          NA       Secondary
#> 1688                                <NA>          NA         Special
#> 1689            Herefordshire, County of         884         Primary
#> 1690            Herefordshire, County of         884       Secondary
#> 1691            Herefordshire, County of         884         Special
#> 1692                  Telford and Wrekin         894         Primary
#> 1693                  Telford and Wrekin         894       Secondary
#> 1694                  Telford and Wrekin         894         Special
#> 1695                      Stoke-on-Trent         861         Primary
#> 1696                      Stoke-on-Trent         861       Secondary
#> 1697                      Stoke-on-Trent         861         Special
#> 1698                          Shropshire         893         Primary
#> 1699                          Shropshire         893       Secondary
#> 1700                          Shropshire         893         Special
#> 1701                          Birmingham         330         Primary
#> 1702                          Birmingham         330       Secondary
#> 1703                          Birmingham         330         Special
#> 1704                            Coventry         331         Primary
#> 1705                            Coventry         331       Secondary
#> 1706                            Coventry         331         Special
#> 1707                              Dudley         332         Primary
#> 1708                              Dudley         332       Secondary
#> 1709                              Dudley         332         Special
#> 1710                            Sandwell         333         Primary
#> 1711                            Sandwell         333       Secondary
#> 1712                            Sandwell         333         Special
#> 1713                            Solihull         334         Primary
#> 1714                            Solihull         334       Secondary
#> 1715                            Solihull         334         Special
#> 1716                             Walsall         335         Primary
#> 1717                             Walsall         335       Secondary
#> 1718                             Walsall         335         Special
#> 1719                       Wolverhampton         336         Primary
#> 1720                       Wolverhampton         336       Secondary
#> 1721                       Wolverhampton         336         Special
#> 1722                       Staffordshire         860         Primary
#> 1723                       Staffordshire         860       Secondary
#> 1724                       Staffordshire         860         Special
#> 1725                        Warwickshire         937         Primary
#> 1726                        Warwickshire         937       Secondary
#> 1727                        Warwickshire         937         Special
#> 1728                      Worcestershire         885         Primary
#> 1729                      Worcestershire         885       Secondary
#> 1730                      Worcestershire         885         Special
#> 1731                                <NA>          NA     All schools
#> 1732                                <NA>          NA         Primary
#> 1733                                <NA>          NA       Secondary
#> 1734                                <NA>          NA         Special
#> 1735                        Peterborough         874         Primary
#> 1736                        Peterborough         874       Secondary
#> 1737                        Peterborough         874         Special
#> 1738                               Luton         821         Primary
#> 1739                               Luton         821       Secondary
#> 1740                               Luton         821         Special
#> 1741                     Southend-on-Sea         882         Primary
#> 1742                     Southend-on-Sea         882       Secondary
#> 1743                     Southend-on-Sea         882         Special
#> 1744                            Thurrock         883         Primary
#> 1745                            Thurrock         883       Secondary
#> 1746                            Thurrock         883         Special
#> 1747                             Bedford         822         Primary
#> 1748                             Bedford         822       Secondary
#> 1749                             Bedford         822         Special
#> 1750                Central Bedfordshire         823         Primary
#> 1751                Central Bedfordshire         823       Secondary
#> 1752                Central Bedfordshire         823         Special
#> 1753                      Cambridgeshire         873         Primary
#> 1754                      Cambridgeshire         873       Secondary
#> 1755                      Cambridgeshire         873         Special
#> 1756                               Essex         881         Primary
#> 1757                               Essex         881       Secondary
#> 1758                               Essex         881         Special
#> 1759                       Hertfordshire         919         Primary
#> 1760                       Hertfordshire         919       Secondary
#> 1761                       Hertfordshire         919         Special
#> 1762                             Norfolk         926         Primary
#> 1763                             Norfolk         926       Secondary
#> 1764                             Norfolk         926         Special
#> 1765                             Suffolk         935         Primary
#> 1766                             Suffolk         935       Secondary
#> 1767                             Suffolk         935         Special
#> 1768                                <NA>          NA     All schools
#> 1769                                <NA>          NA         Primary
#> 1770                                <NA>          NA       Secondary
#> 1771                                <NA>          NA         Special
#> 1772                      City of London         201         Primary
#> 1773                Barking and Dagenham         301         Primary
#> 1774                Barking and Dagenham         301       Secondary
#> 1775                Barking and Dagenham         301         Special
#> 1776                              Barnet         302         Primary
#> 1777                              Barnet         302       Secondary
#> 1778                              Barnet         302         Special
#> 1779                              Bexley         303         Primary
#> 1780                              Bexley         303       Secondary
#> 1781                              Bexley         303         Special
#> 1782                               Brent         304         Primary
#> 1783                               Brent         304       Secondary
#> 1784                               Brent         304         Special
#> 1785                             Bromley         305         Primary
#> 1786                             Bromley         305       Secondary
#> 1787                             Bromley         305         Special
#> 1788                              Camden         202         Primary
#> 1789                              Camden         202       Secondary
#> 1790                              Camden         202         Special
#> 1791                             Croydon         306         Primary
#> 1792                             Croydon         306       Secondary
#> 1793                             Croydon         306         Special
#> 1794                              Ealing         307         Primary
#> 1795                              Ealing         307       Secondary
#> 1796                              Ealing         307         Special
#> 1797                             Enfield         308         Primary
#> 1798                             Enfield         308       Secondary
#> 1799                             Enfield         308         Special
#> 1800                           Greenwich         203         Primary
#> 1801                           Greenwich         203       Secondary
#> 1802                           Greenwich         203         Special
#> 1803                             Hackney         204         Primary
#> 1804                             Hackney         204       Secondary
#> 1805                             Hackney         204         Special
#> 1806              Hammersmith and Fulham         205         Primary
#> 1807              Hammersmith and Fulham         205       Secondary
#> 1808              Hammersmith and Fulham         205         Special
#> 1809                            Haringey         309         Primary
#> 1810                            Haringey         309       Secondary
#> 1811                            Haringey         309         Special
#> 1812                              Harrow         310         Primary
#> 1813                              Harrow         310       Secondary
#> 1814                              Harrow         310         Special
#> 1815                            Havering         311         Primary
#> 1816                            Havering         311       Secondary
#> 1817                            Havering         311         Special
#> 1818                          Hillingdon         312         Primary
#> 1819                          Hillingdon         312       Secondary
#> 1820                          Hillingdon         312         Special
#> 1821                            Hounslow         313         Primary
#> 1822                            Hounslow         313       Secondary
#> 1823                            Hounslow         313         Special
#> 1824                           Islington         206         Primary
#> 1825                           Islington         206       Secondary
#> 1826                           Islington         206         Special
#> 1827              Kensington and Chelsea         207         Primary
#> 1828              Kensington and Chelsea         207       Secondary
#> 1829              Kensington and Chelsea         207         Special
#> 1830                Kingston upon Thames         314         Primary
#> 1831                Kingston upon Thames         314       Secondary
#> 1832                Kingston upon Thames         314         Special
#> 1833                             Lambeth         208         Primary
#> 1834                             Lambeth         208       Secondary
#> 1835                             Lambeth         208         Special
#> 1836                            Lewisham         209         Primary
#> 1837                            Lewisham         209       Secondary
#> 1838                            Lewisham         209         Special
#> 1839                              Merton         315         Primary
#> 1840                              Merton         315       Secondary
#> 1841                              Merton         315         Special
#> 1842                              Newham         316         Primary
#> 1843                              Newham         316       Secondary
#> 1844                              Newham         316         Special
#> 1845                           Redbridge         317         Primary
#> 1846                           Redbridge         317       Secondary
#> 1847                           Redbridge         317         Special
#> 1848                Richmond upon Thames         318         Primary
#> 1849                Richmond upon Thames         318       Secondary
#> 1850                Richmond upon Thames         318         Special
#> 1851                           Southwark         210         Primary
#> 1852                           Southwark         210       Secondary
#> 1853                           Southwark         210         Special
#> 1854                              Sutton         319         Primary
#> 1855                              Sutton         319       Secondary
#> 1856                              Sutton         319         Special
#> 1857                       Tower Hamlets         211         Primary
#> 1858                       Tower Hamlets         211       Secondary
#> 1859                       Tower Hamlets         211         Special
#> 1860                      Waltham Forest         320         Primary
#> 1861                      Waltham Forest         320       Secondary
#> 1862                      Waltham Forest         320         Special
#> 1863                          Wandsworth         212         Primary
#> 1864                          Wandsworth         212       Secondary
#> 1865                          Wandsworth         212         Special
#> 1866                         Westminster         213         Primary
#> 1867                         Westminster         213       Secondary
#> 1868                         Westminster         213         Special
#> 1869                                <NA>          NA     All schools
#> 1870                                <NA>          NA         Primary
#> 1871                                <NA>          NA       Secondary
#> 1872                                <NA>          NA         Special
#> 1873                              Medway         887         Primary
#> 1874                              Medway         887       Secondary
#> 1875                              Medway         887         Special
#> 1876                    Bracknell Forest         867         Primary
#> 1877                    Bracknell Forest         867       Secondary
#> 1878                    Bracknell Forest         867         Special
#> 1879                      West Berkshire         869         Primary
#> 1880                      West Berkshire         869       Secondary
#> 1881                      West Berkshire         869         Special
#> 1882                             Reading         870         Primary
#> 1883                             Reading         870       Secondary
#> 1884                             Reading         870         Special
#> 1885                              Slough         871         Primary
#> 1886                              Slough         871       Secondary
#> 1887                              Slough         871         Special
#> 1888              Windsor and Maidenhead         868         Primary
#> 1889              Windsor and Maidenhead         868       Secondary
#> 1890              Windsor and Maidenhead         868         Special
#> 1891                           Wokingham         872         Primary
#> 1892                           Wokingham         872       Secondary
#> 1893                           Wokingham         872         Special
#> 1894                       Milton Keynes         826         Primary
#> 1895                       Milton Keynes         826       Secondary
#> 1896                       Milton Keynes         826         Special
#> 1897                   Brighton and Hove         846         Primary
#> 1898                   Brighton and Hove         846       Secondary
#> 1899                   Brighton and Hove         846         Special
#> 1900                          Portsmouth         851         Primary
#> 1901                          Portsmouth         851       Secondary
#> 1902                          Portsmouth         851         Special
#> 1903                         Southampton         852         Primary
#> 1904                         Southampton         852       Secondary
#> 1905                         Southampton         852         Special
#> 1906                       Isle of Wight         921         Primary
#> 1907                       Isle of Wight         921       Secondary
#> 1908                       Isle of Wight         921         Special
#> 1909                     Buckinghamshire         825         Primary
#> 1910                     Buckinghamshire         825       Secondary
#> 1911                     Buckinghamshire         825         Special
#> 1912                         East Sussex         845         Primary
#> 1913                         East Sussex         845       Secondary
#> 1914                         East Sussex         845         Special
#> 1915                           Hampshire         850         Primary
#> 1916                           Hampshire         850       Secondary
#> 1917                           Hampshire         850         Special
#> 1918                                Kent         886         Primary
#> 1919                                Kent         886       Secondary
#> 1920                                Kent         886         Special
#> 1921                         Oxfordshire         931         Primary
#> 1922                         Oxfordshire         931       Secondary
#> 1923                         Oxfordshire         931         Special
#> 1924                              Surrey         936         Primary
#> 1925                              Surrey         936       Secondary
#> 1926                              Surrey         936         Special
#> 1927                         West Sussex         938         Primary
#> 1928                         West Sussex         938       Secondary
#> 1929                         West Sussex         938         Special
#> 1930                                <NA>          NA     All schools
#> 1931                                <NA>          NA         Primary
#> 1932                                <NA>          NA       Secondary
#> 1933                                <NA>          NA         Special
#> 1934        Bath and North East Somerset         800         Primary
#> 1935        Bath and North East Somerset         800       Secondary
#> 1936        Bath and North East Somerset         800         Special
#> 1937                    Bristol, City of         801         Primary
#> 1938                    Bristol, City of         801       Secondary
#> 1939                    Bristol, City of         801         Special
#> 1940                      North Somerset         802         Primary
#> 1941                      North Somerset         802       Secondary
#> 1942                      North Somerset         802         Special
#> 1943               South Gloucestershire         803         Primary
#> 1944               South Gloucestershire         803       Secondary
#> 1945               South Gloucestershire         803         Special
#> 1946                            Plymouth         879         Primary
#> 1947                            Plymouth         879       Secondary
#> 1948                            Plymouth         879         Special
#> 1949                              Torbay         880         Primary
#> 1950                              Torbay         880       Secondary
#> 1951                              Torbay         880         Special
#> 1952                             Swindon         866         Primary
#> 1953                             Swindon         866       Secondary
#> 1954                             Swindon         866         Special
#> 1955                            Cornwall         908         Primary
#> 1956                            Cornwall         908       Secondary
#> 1957                            Cornwall         908         Special
#> 1958                     Isles of Scilly         420       Secondary
#> 1959                           Wiltshire         865         Primary
#> 1960                           Wiltshire         865       Secondary
#> 1961                           Wiltshire         865         Special
#> 1962 Bournemouth, Christchurch and Poole         839         Primary
#> 1963 Bournemouth, Christchurch and Poole         839       Secondary
#> 1964 Bournemouth, Christchurch and Poole         839         Special
#> 1965                              Dorset         838         Primary
#> 1966                              Dorset         838       Secondary
#> 1967                              Dorset         838         Special
#> 1968                            Somerset         933         Primary
#> 1969                            Somerset         933       Secondary
#> 1970                            Somerset         933         Special
#> 1971                               Devon         878         Primary
#> 1972                               Devon         878       Secondary
#> 1973                               Devon         878         Special
#> 1974                     Gloucestershire         916         Primary
#> 1975                     Gloucestershire         916       Secondary
#> 1976                     Gloucestershire         916         Special
#> 1977                                <NA>          NA     All schools
#> 1978                                <NA>          NA         Primary
#> 1979                                <NA>          NA       Secondary
#> 1980                                <NA>          NA         Special
#> 1981                                <NA>          NA     All schools
#> 1982                                <NA>          NA         Primary
#> 1983                                <NA>          NA       Secondary
#> 1984                                <NA>          NA         Special
#> 1985                          Hartlepool         805         Primary
#> 1986                          Hartlepool         805       Secondary
#> 1987                          Hartlepool         805         Special
#> 1988                       Middlesbrough         806         Primary
#> 1989                       Middlesbrough         806       Secondary
#> 1990                       Middlesbrough         806         Special
#> 1991                Redcar and Cleveland         807         Primary
#> 1992                Redcar and Cleveland         807       Secondary
#> 1993                Redcar and Cleveland         807         Special
#> 1994                    Stockton-on-Tees         808         Primary
#> 1995                    Stockton-on-Tees         808       Secondary
#> 1996                    Stockton-on-Tees         808         Special
#> 1997                          Darlington         841         Primary
#> 1998                          Darlington         841       Secondary
#> 1999                          Darlington         841         Special
#> 2000                       County Durham         840         Primary
#> 2001                       County Durham         840       Secondary
#> 2002                       County Durham         840         Special
#> 2003                      Northumberland         929         Primary
#> 2004                      Northumberland         929       Secondary
#> 2005                      Northumberland         929         Special
#> 2006                 Newcastle upon Tyne         391         Primary
#> 2007                 Newcastle upon Tyne         391       Secondary
#> 2008                 Newcastle upon Tyne         391         Special
#> 2009                      North Tyneside         392         Primary
#> 2010                      North Tyneside         392       Secondary
#> 2011                      North Tyneside         392         Special
#> 2012                      South Tyneside         393         Primary
#> 2013                      South Tyneside         393       Secondary
#> 2014                      South Tyneside         393         Special
#> 2015                          Sunderland         394         Primary
#> 2016                          Sunderland         394       Secondary
#> 2017                          Sunderland         394         Special
#> 2018                           Gateshead         390         Primary
#> 2019                           Gateshead         390       Secondary
#> 2020                           Gateshead         390         Special
#> 2021                                <NA>          NA     All schools
#> 2022                                <NA>          NA         Primary
#> 2023                                <NA>          NA       Secondary
#> 2024                                <NA>          NA         Special
#> 2025                              Halton         876         Primary
#> 2026                              Halton         876       Secondary
#> 2027                              Halton         876         Special
#> 2028                          Warrington         877         Primary
#> 2029                          Warrington         877       Secondary
#> 2030                          Warrington         877         Special
#> 2031               Blackburn with Darwen         889         Primary
#> 2032               Blackburn with Darwen         889       Secondary
#> 2033               Blackburn with Darwen         889         Special
#> 2034                           Blackpool         890         Primary
#> 2035                           Blackpool         890       Secondary
#> 2036                           Blackpool         890         Special
#> 2037                       Cheshire East         895         Primary
#> 2038                       Cheshire East         895       Secondary
#> 2039                       Cheshire East         895         Special
#> 2040           Cheshire West and Chester         896         Primary
#> 2041           Cheshire West and Chester         896       Secondary
#> 2042           Cheshire West and Chester         896         Special
#> 2043                          Cumberland         942         Primary
#> 2044                          Cumberland         942       Secondary
#> 2045                          Cumberland         942         Special
#> 2046             Westmorland and Furness         943         Primary
#> 2047             Westmorland and Furness         943       Secondary
#> 2048             Westmorland and Furness         943         Special
#> 2049                              Bolton         350         Primary
#> 2050                              Bolton         350       Secondary
#> 2051                              Bolton         350         Special
#> 2052                                Bury         351         Primary
#> 2053                                Bury         351       Secondary
#> 2054                                Bury         351         Special
#> 2055                          Manchester         352         Primary
#> 2056                          Manchester         352       Secondary
#> 2057                          Manchester         352         Special
#> 2058                              Oldham         353         Primary
#> 2059                              Oldham         353       Secondary
#> 2060                              Oldham         353         Special
#> 2061                            Rochdale         354         Primary
#> 2062                            Rochdale         354       Secondary
#> 2063                            Rochdale         354         Special
#> 2064                             Salford         355         Primary
#> 2065                             Salford         355       Secondary
#> 2066                             Salford         355         Special
#> 2067                           Stockport         356         Primary
#> 2068                           Stockport         356       Secondary
#> 2069                           Stockport         356         Special
#> 2070                            Tameside         357         Primary
#> 2071                            Tameside         357       Secondary
#> 2072                            Tameside         357         Special
#> 2073                            Trafford         358         Primary
#> 2074                            Trafford         358       Secondary
#> 2075                            Trafford         358         Special
#> 2076                               Wigan         359         Primary
#> 2077                               Wigan         359       Secondary
#> 2078                               Wigan         359         Special
#> 2079                            Knowsley         340         Primary
#> 2080                            Knowsley         340       Secondary
#> 2081                            Knowsley         340         Special
#> 2082                           Liverpool         341         Primary
#> 2083                           Liverpool         341       Secondary
#> 2084                           Liverpool         341         Special
#> 2085                          St. Helens         342         Primary
#> 2086                          St. Helens         342       Secondary
#> 2087                          St. Helens         342         Special
#> 2088                              Sefton         343         Primary
#> 2089                              Sefton         343       Secondary
#> 2090                              Sefton         343         Special
#> 2091                              Wirral         344         Primary
#> 2092                              Wirral         344       Secondary
#> 2093                              Wirral         344         Special
#> 2094                          Lancashire         888         Primary
#> 2095                          Lancashire         888       Secondary
#> 2096                          Lancashire         888         Special
#> 2097                                <NA>          NA     All schools
#> 2098                                <NA>          NA         Primary
#> 2099                                <NA>          NA       Secondary
#> 2100                                <NA>          NA         Special
#> 2101         Kingston upon Hull, City of         810         Primary
#> 2102         Kingston upon Hull, City of         810       Secondary
#> 2103         Kingston upon Hull, City of         810         Special
#> 2104            East Riding of Yorkshire         811         Primary
#> 2105            East Riding of Yorkshire         811       Secondary
#> 2106            East Riding of Yorkshire         811         Special
#> 2107             North East Lincolnshire         812         Primary
#> 2108             North East Lincolnshire         812       Secondary
#> 2109             North East Lincolnshire         812         Special
#> 2110                  North Lincolnshire         813         Primary
#> 2111                  North Lincolnshire         813       Secondary
#> 2112                  North Lincolnshire         813         Special
#> 2113                                York         816         Primary
#> 2114                                York         816       Secondary
#> 2115                                York         816         Special
#> 2116                     North Yorkshire         815         Primary
#> 2117                     North Yorkshire         815       Secondary
#> 2118                     North Yorkshire         815         Special
#> 2119                            Barnsley         370         Primary
#> 2120                            Barnsley         370       Secondary
#> 2121                            Barnsley         370         Special
#> 2122                           Doncaster         371         Primary
#> 2123                           Doncaster         371       Secondary
#> 2124                           Doncaster         371         Special
#> 2125                           Rotherham         372         Primary
#> 2126                           Rotherham         372       Secondary
#> 2127                           Rotherham         372         Special
#> 2128                           Sheffield         373         Primary
#> 2129                           Sheffield         373       Secondary
#> 2130                           Sheffield         373         Special
#> 2131                            Bradford         380         Primary
#> 2132                            Bradford         380       Secondary
#> 2133                            Bradford         380         Special
#> 2134                          Calderdale         381         Primary
#> 2135                          Calderdale         381       Secondary
#> 2136                          Calderdale         381         Special
#> 2137                            Kirklees         382         Primary
#> 2138                            Kirklees         382       Secondary
#> 2139                            Kirklees         382         Special
#> 2140                               Leeds         383         Primary
#> 2141                               Leeds         383       Secondary
#> 2142                               Leeds         383         Special
#> 2143                           Wakefield         384         Primary
#> 2144                           Wakefield         384       Secondary
#> 2145                           Wakefield         384         Special
#> 2146                                <NA>          NA     All schools
#> 2147                                <NA>          NA         Primary
#> 2148                                <NA>          NA       Secondary
#> 2149                                <NA>          NA         Special
#> 2150                               Derby         831         Primary
#> 2151                               Derby         831       Secondary
#> 2152                               Derby         831         Special
#> 2153                           Leicester         856         Primary
#> 2154                           Leicester         856       Secondary
#> 2155                           Leicester         856         Special
#> 2156                             Rutland         857         Primary
#> 2157                             Rutland         857       Secondary
#> 2158                          Nottingham         892         Primary
#> 2159                          Nottingham         892       Secondary
#> 2160                          Nottingham         892         Special
#> 2161              North Northamptonshire         940         Primary
#> 2162              North Northamptonshire         940       Secondary
#> 2163              North Northamptonshire         940         Special
#> 2164               West Northamptonshire         941         Primary
#> 2165               West Northamptonshire         941       Secondary
#> 2166               West Northamptonshire         941         Special
#> 2167                          Derbyshire         830         Primary
#> 2168                          Derbyshire         830       Secondary
#> 2169                          Derbyshire         830         Special
#> 2170                      Leicestershire         855         Primary
#> 2171                      Leicestershire         855       Secondary
#> 2172                      Leicestershire         855         Special
#> 2173                        Lincolnshire         925         Primary
#> 2174                        Lincolnshire         925       Secondary
#> 2175                        Lincolnshire         925         Special
#> 2176                     Nottinghamshire         891         Primary
#> 2177                     Nottinghamshire         891       Secondary
#> 2178                     Nottinghamshire         891         Special
#> 2179                                <NA>          NA     All schools
#> 2180                                <NA>          NA         Primary
#> 2181                                <NA>          NA       Secondary
#> 2182                                <NA>          NA         Special
#> 2183            Herefordshire, County of         884         Primary
#> 2184            Herefordshire, County of         884       Secondary
#> 2185            Herefordshire, County of         884         Special
#> 2186                  Telford and Wrekin         894         Primary
#> 2187                  Telford and Wrekin         894       Secondary
#> 2188                  Telford and Wrekin         894         Special
#> 2189                      Stoke-on-Trent         861         Primary
#> 2190                      Stoke-on-Trent         861       Secondary
#> 2191                      Stoke-on-Trent         861         Special
#> 2192                          Shropshire         893         Primary
#> 2193                          Shropshire         893       Secondary
#> 2194                          Shropshire         893         Special
#> 2195                          Birmingham         330         Primary
#> 2196                          Birmingham         330       Secondary
#> 2197                          Birmingham         330         Special
#> 2198                            Coventry         331         Primary
#> 2199                            Coventry         331       Secondary
#> 2200                            Coventry         331         Special
#> 2201                              Dudley         332         Primary
#> 2202                              Dudley         332       Secondary
#> 2203                              Dudley         332         Special
#> 2204                            Sandwell         333         Primary
#> 2205                            Sandwell         333       Secondary
#> 2206                            Sandwell         333         Special
#> 2207                            Solihull         334         Primary
#> 2208                            Solihull         334       Secondary
#> 2209                            Solihull         334         Special
#> 2210                             Walsall         335         Primary
#> 2211                             Walsall         335       Secondary
#> 2212                             Walsall         335         Special
#> 2213                       Wolverhampton         336         Primary
#> 2214                       Wolverhampton         336       Secondary
#> 2215                       Wolverhampton         336         Special
#> 2216                       Staffordshire         860         Primary
#> 2217                       Staffordshire         860       Secondary
#> 2218                       Staffordshire         860         Special
#> 2219                        Warwickshire         937         Primary
#> 2220                        Warwickshire         937       Secondary
#> 2221                        Warwickshire         937         Special
#> 2222                      Worcestershire         885         Primary
#> 2223                      Worcestershire         885       Secondary
#> 2224                      Worcestershire         885         Special
#> 2225                                <NA>          NA     All schools
#> 2226                                <NA>          NA         Primary
#> 2227                                <NA>          NA       Secondary
#> 2228                                <NA>          NA         Special
#> 2229                        Peterborough         874         Primary
#> 2230                        Peterborough         874       Secondary
#> 2231                        Peterborough         874         Special
#> 2232                               Luton         821         Primary
#> 2233                               Luton         821       Secondary
#> 2234                               Luton         821         Special
#> 2235                     Southend-on-Sea         882         Primary
#> 2236                     Southend-on-Sea         882       Secondary
#> 2237                     Southend-on-Sea         882         Special
#> 2238                            Thurrock         883         Primary
#> 2239                            Thurrock         883       Secondary
#> 2240                            Thurrock         883         Special
#> 2241                             Bedford         822         Primary
#> 2242                             Bedford         822       Secondary
#> 2243                             Bedford         822         Special
#> 2244                Central Bedfordshire         823         Primary
#> 2245                Central Bedfordshire         823       Secondary
#> 2246                Central Bedfordshire         823         Special
#> 2247                      Cambridgeshire         873         Primary
#> 2248                      Cambridgeshire         873       Secondary
#> 2249                      Cambridgeshire         873         Special
#> 2250                               Essex         881         Primary
#> 2251                               Essex         881       Secondary
#> 2252                               Essex         881         Special
#> 2253                       Hertfordshire         919         Primary
#> 2254                       Hertfordshire         919       Secondary
#> 2255                       Hertfordshire         919         Special
#> 2256                             Norfolk         926         Primary
#> 2257                             Norfolk         926       Secondary
#> 2258                             Norfolk         926         Special
#> 2259                             Suffolk         935         Primary
#> 2260                             Suffolk         935       Secondary
#> 2261                             Suffolk         935         Special
#> 2262                                <NA>          NA     All schools
#> 2263                                <NA>          NA         Primary
#> 2264                                <NA>          NA       Secondary
#> 2265                                <NA>          NA         Special
#> 2266                      City of London         201         Primary
#> 2267                Barking and Dagenham         301         Primary
#> 2268                Barking and Dagenham         301       Secondary
#> 2269                Barking and Dagenham         301         Special
#> 2270                              Barnet         302         Primary
#> 2271                              Barnet         302       Secondary
#> 2272                              Barnet         302         Special
#> 2273                              Bexley         303         Primary
#> 2274                              Bexley         303       Secondary
#> 2275                              Bexley         303         Special
#> 2276                               Brent         304         Primary
#> 2277                               Brent         304       Secondary
#> 2278                               Brent         304         Special
#> 2279                             Bromley         305         Primary
#> 2280                             Bromley         305       Secondary
#> 2281                             Bromley         305         Special
#> 2282                              Camden         202         Primary
#> 2283                              Camden         202       Secondary
#> 2284                              Camden         202         Special
#> 2285                             Croydon         306         Primary
#> 2286                             Croydon         306       Secondary
#> 2287                             Croydon         306         Special
#> 2288                              Ealing         307         Primary
#> 2289                              Ealing         307       Secondary
#> 2290                              Ealing         307         Special
#> 2291                             Enfield         308         Primary
#> 2292                             Enfield         308       Secondary
#> 2293                             Enfield         308         Special
#> 2294                           Greenwich         203         Primary
#> 2295                           Greenwich         203       Secondary
#> 2296                           Greenwich         203         Special
#> 2297                             Hackney         204         Primary
#> 2298                             Hackney         204       Secondary
#> 2299                             Hackney         204         Special
#> 2300              Hammersmith and Fulham         205         Primary
#> 2301              Hammersmith and Fulham         205       Secondary
#> 2302              Hammersmith and Fulham         205         Special
#> 2303                            Haringey         309         Primary
#> 2304                            Haringey         309       Secondary
#> 2305                            Haringey         309         Special
#> 2306                              Harrow         310         Primary
#> 2307                              Harrow         310       Secondary
#> 2308                              Harrow         310         Special
#> 2309                            Havering         311         Primary
#> 2310                            Havering         311       Secondary
#> 2311                            Havering         311         Special
#> 2312                          Hillingdon         312         Primary
#> 2313                          Hillingdon         312       Secondary
#> 2314                          Hillingdon         312         Special
#> 2315                            Hounslow         313         Primary
#> 2316                            Hounslow         313       Secondary
#> 2317                            Hounslow         313         Special
#> 2318                           Islington         206         Primary
#> 2319                           Islington         206       Secondary
#> 2320                           Islington         206         Special
#> 2321              Kensington and Chelsea         207         Primary
#> 2322              Kensington and Chelsea         207       Secondary
#> 2323              Kensington and Chelsea         207         Special
#> 2324                Kingston upon Thames         314         Primary
#> 2325                Kingston upon Thames         314       Secondary
#> 2326                Kingston upon Thames         314         Special
#> 2327                             Lambeth         208         Primary
#> 2328                             Lambeth         208       Secondary
#> 2329                             Lambeth         208         Special
#> 2330                            Lewisham         209         Primary
#> 2331                            Lewisham         209       Secondary
#> 2332                            Lewisham         209         Special
#> 2333                              Merton         315         Primary
#> 2334                              Merton         315       Secondary
#> 2335                              Merton         315         Special
#> 2336                              Newham         316         Primary
#> 2337                              Newham         316       Secondary
#> 2338                              Newham         316         Special
#> 2339                           Redbridge         317         Primary
#> 2340                           Redbridge         317       Secondary
#> 2341                           Redbridge         317         Special
#> 2342                Richmond upon Thames         318         Primary
#> 2343                Richmond upon Thames         318       Secondary
#> 2344                Richmond upon Thames         318         Special
#> 2345                           Southwark         210         Primary
#> 2346                           Southwark         210       Secondary
#> 2347                           Southwark         210         Special
#> 2348                              Sutton         319         Primary
#> 2349                              Sutton         319       Secondary
#> 2350                              Sutton         319         Special
#> 2351                       Tower Hamlets         211         Primary
#> 2352                       Tower Hamlets         211       Secondary
#> 2353                       Tower Hamlets         211         Special
#> 2354                      Waltham Forest         320         Primary
#> 2355                      Waltham Forest         320       Secondary
#> 2356                      Waltham Forest         320         Special
#> 2357                          Wandsworth         212         Primary
#> 2358                          Wandsworth         212       Secondary
#> 2359                          Wandsworth         212         Special
#> 2360                         Westminster         213         Primary
#> 2361                         Westminster         213       Secondary
#> 2362                         Westminster         213         Special
#> 2363                                <NA>          NA     All schools
#> 2364                                <NA>          NA         Primary
#> 2365                                <NA>          NA       Secondary
#> 2366                                <NA>          NA         Special
#> 2367                              Medway         887         Primary
#> 2368                              Medway         887       Secondary
#> 2369                              Medway         887         Special
#> 2370                    Bracknell Forest         867         Primary
#> 2371                    Bracknell Forest         867       Secondary
#> 2372                    Bracknell Forest         867         Special
#> 2373                      West Berkshire         869         Primary
#> 2374                      West Berkshire         869       Secondary
#> 2375                      West Berkshire         869         Special
#> 2376                             Reading         870         Primary
#> 2377                             Reading         870       Secondary
#> 2378                             Reading         870         Special
#> 2379                              Slough         871         Primary
#> 2380                              Slough         871       Secondary
#> 2381                              Slough         871         Special
#> 2382              Windsor and Maidenhead         868         Primary
#> 2383              Windsor and Maidenhead         868       Secondary
#> 2384              Windsor and Maidenhead         868         Special
#> 2385                           Wokingham         872         Primary
#> 2386                           Wokingham         872       Secondary
#> 2387                           Wokingham         872         Special
#> 2388                       Milton Keynes         826         Primary
#> 2389                       Milton Keynes         826       Secondary
#> 2390                       Milton Keynes         826         Special
#> 2391                   Brighton and Hove         846         Primary
#> 2392                   Brighton and Hove         846       Secondary
#> 2393                   Brighton and Hove         846         Special
#> 2394                          Portsmouth         851         Primary
#> 2395                          Portsmouth         851       Secondary
#> 2396                          Portsmouth         851         Special
#> 2397                         Southampton         852         Primary
#> 2398                         Southampton         852       Secondary
#> 2399                         Southampton         852         Special
#> 2400                       Isle of Wight         921         Primary
#> 2401                       Isle of Wight         921       Secondary
#> 2402                       Isle of Wight         921         Special
#> 2403                     Buckinghamshire         825         Primary
#> 2404                     Buckinghamshire         825       Secondary
#> 2405                     Buckinghamshire         825         Special
#> 2406                         East Sussex         845         Primary
#> 2407                         East Sussex         845       Secondary
#> 2408                         East Sussex         845         Special
#> 2409                           Hampshire         850         Primary
#> 2410                           Hampshire         850       Secondary
#> 2411                           Hampshire         850         Special
#> 2412                                Kent         886         Primary
#> 2413                                Kent         886       Secondary
#> 2414                                Kent         886         Special
#> 2415                         Oxfordshire         931         Primary
#> 2416                         Oxfordshire         931       Secondary
#> 2417                         Oxfordshire         931         Special
#> 2418                              Surrey         936         Primary
#> 2419                              Surrey         936       Secondary
#> 2420                              Surrey         936         Special
#> 2421                         West Sussex         938         Primary
#> 2422                         West Sussex         938       Secondary
#> 2423                         West Sussex         938         Special
#> 2424                                <NA>          NA     All schools
#> 2425                                <NA>          NA         Primary
#> 2426                                <NA>          NA       Secondary
#> 2427                                <NA>          NA         Special
#> 2428        Bath and North East Somerset         800         Primary
#> 2429        Bath and North East Somerset         800       Secondary
#> 2430        Bath and North East Somerset         800         Special
#> 2431                    Bristol, City of         801         Primary
#> 2432                    Bristol, City of         801       Secondary
#> 2433                    Bristol, City of         801         Special
#> 2434                      North Somerset         802         Primary
#> 2435                      North Somerset         802       Secondary
#> 2436                      North Somerset         802         Special
#> 2437               South Gloucestershire         803         Primary
#> 2438               South Gloucestershire         803       Secondary
#> 2439               South Gloucestershire         803         Special
#> 2440                            Plymouth         879         Primary
#> 2441                            Plymouth         879       Secondary
#> 2442                            Plymouth         879         Special
#> 2443                              Torbay         880         Primary
#> 2444                              Torbay         880       Secondary
#> 2445                              Torbay         880         Special
#> 2446                             Swindon         866         Primary
#> 2447                             Swindon         866       Secondary
#> 2448                             Swindon         866         Special
#> 2449                            Cornwall         908         Primary
#> 2450                            Cornwall         908       Secondary
#> 2451                            Cornwall         908         Special
#> 2452                     Isles of Scilly         420       Secondary
#> 2453                           Wiltshire         865         Primary
#> 2454                           Wiltshire         865       Secondary
#> 2455                           Wiltshire         865         Special
#> 2456 Bournemouth, Christchurch and Poole         839         Primary
#> 2457 Bournemouth, Christchurch and Poole         839       Secondary
#> 2458 Bournemouth, Christchurch and Poole         839         Special
#> 2459                              Dorset         838         Primary
#> 2460                              Dorset         838       Secondary
#> 2461                              Dorset         838         Special
#> 2462                            Somerset         933         Primary
#> 2463                            Somerset         933       Secondary
#> 2464                            Somerset         933         Special
#> 2465                               Devon         878         Primary
#> 2466                               Devon         878       Secondary
#> 2467                               Devon         878         Special
#> 2468                     Gloucestershire         916         Primary
#> 2469                     Gloucestershire         916       Secondary
#> 2470                     Gloucestershire         916         Special
#> 2471                                <NA>          NA     All schools
#> 2472                                <NA>          NA         Primary
#> 2473                                <NA>          NA       Secondary
#> 2474                                <NA>          NA         Special
#> 2475                                <NA>          NA     All schools
#> 2476                                <NA>          NA         Primary
#> 2477                                <NA>          NA       Secondary
#> 2478                                <NA>          NA         Special
#> 2479                          Hartlepool         805         Primary
#> 2480                          Hartlepool         805       Secondary
#> 2481                          Hartlepool         805         Special
#> 2482                       Middlesbrough         806         Primary
#> 2483                       Middlesbrough         806       Secondary
#> 2484                       Middlesbrough         806         Special
#> 2485                Redcar and Cleveland         807         Primary
#> 2486                Redcar and Cleveland         807       Secondary
#> 2487                Redcar and Cleveland         807         Special
#> 2488                    Stockton-on-Tees         808         Primary
#> 2489                    Stockton-on-Tees         808       Secondary
#> 2490                    Stockton-on-Tees         808         Special
#> 2491                          Darlington         841         Primary
#> 2492                          Darlington         841       Secondary
#> 2493                          Darlington         841         Special
#> 2494                       County Durham         840         Primary
#> 2495                       County Durham         840       Secondary
#> 2496                       County Durham         840         Special
#> 2497                      Northumberland         929         Primary
#> 2498                      Northumberland         929       Secondary
#> 2499                      Northumberland         929         Special
#> 2500                 Newcastle upon Tyne         391         Primary
#> 2501                 Newcastle upon Tyne         391       Secondary
#> 2502                 Newcastle upon Tyne         391         Special
#> 2503                      North Tyneside         392         Primary
#> 2504                      North Tyneside         392       Secondary
#> 2505                      North Tyneside         392         Special
#> 2506                      South Tyneside         393         Primary
#> 2507                      South Tyneside         393       Secondary
#> 2508                      South Tyneside         393         Special
#> 2509                          Sunderland         394         Primary
#> 2510                          Sunderland         394       Secondary
#> 2511                          Sunderland         394         Special
#> 2512                           Gateshead         390         Primary
#> 2513                           Gateshead         390       Secondary
#> 2514                           Gateshead         390         Special
#> 2515                                <NA>          NA     All schools
#> 2516                                <NA>          NA         Primary
#> 2517                                <NA>          NA       Secondary
#> 2518                                <NA>          NA         Special
#> 2519                              Halton         876         Primary
#> 2520                              Halton         876       Secondary
#> 2521                              Halton         876         Special
#> 2522                          Warrington         877         Primary
#> 2523                          Warrington         877       Secondary
#> 2524                          Warrington         877         Special
#> 2525               Blackburn with Darwen         889         Primary
#> 2526               Blackburn with Darwen         889       Secondary
#> 2527               Blackburn with Darwen         889         Special
#> 2528                           Blackpool         890         Primary
#> 2529                           Blackpool         890       Secondary
#> 2530                           Blackpool         890         Special
#> 2531                       Cheshire East         895         Primary
#> 2532                       Cheshire East         895       Secondary
#> 2533                       Cheshire East         895         Special
#> 2534           Cheshire West and Chester         896         Primary
#> 2535           Cheshire West and Chester         896       Secondary
#> 2536           Cheshire West and Chester         896         Special
#> 2537                          Cumberland         942         Primary
#> 2538                          Cumberland         942       Secondary
#> 2539                          Cumberland         942         Special
#> 2540             Westmorland and Furness         943         Primary
#> 2541             Westmorland and Furness         943       Secondary
#> 2542             Westmorland and Furness         943         Special
#> 2543                              Bolton         350         Primary
#> 2544                              Bolton         350       Secondary
#> 2545                              Bolton         350         Special
#> 2546                                Bury         351         Primary
#> 2547                                Bury         351       Secondary
#> 2548                                Bury         351         Special
#> 2549                          Manchester         352         Primary
#> 2550                          Manchester         352       Secondary
#> 2551                          Manchester         352         Special
#> 2552                              Oldham         353         Primary
#> 2553                              Oldham         353       Secondary
#> 2554                              Oldham         353         Special
#> 2555                            Rochdale         354         Primary
#> 2556                            Rochdale         354       Secondary
#> 2557                            Rochdale         354         Special
#> 2558                             Salford         355         Primary
#> 2559                             Salford         355       Secondary
#> 2560                             Salford         355         Special
#> 2561                           Stockport         356         Primary
#> 2562                           Stockport         356       Secondary
#> 2563                           Stockport         356         Special
#> 2564                            Tameside         357         Primary
#> 2565                            Tameside         357       Secondary
#> 2566                            Tameside         357         Special
#> 2567                            Trafford         358         Primary
#> 2568                            Trafford         358       Secondary
#> 2569                            Trafford         358         Special
#> 2570                               Wigan         359         Primary
#> 2571                               Wigan         359       Secondary
#> 2572                               Wigan         359         Special
#> 2573                            Knowsley         340         Primary
#> 2574                            Knowsley         340       Secondary
#> 2575                            Knowsley         340         Special
#> 2576                           Liverpool         341         Primary
#> 2577                           Liverpool         341       Secondary
#> 2578                           Liverpool         341         Special
#> 2579                          St. Helens         342         Primary
#> 2580                          St. Helens         342       Secondary
#> 2581                          St. Helens         342         Special
#> 2582                              Sefton         343         Primary
#> 2583                              Sefton         343       Secondary
#> 2584                              Sefton         343         Special
#> 2585                              Wirral         344         Primary
#> 2586                              Wirral         344       Secondary
#> 2587                              Wirral         344         Special
#> 2588                          Lancashire         888         Primary
#> 2589                          Lancashire         888       Secondary
#> 2590                          Lancashire         888         Special
#> 2591                                <NA>          NA     All schools
#> 2592                                <NA>          NA         Primary
#> 2593                                <NA>          NA       Secondary
#> 2594                                <NA>          NA         Special
#> 2595         Kingston upon Hull, City of         810         Primary
#> 2596         Kingston upon Hull, City of         810       Secondary
#> 2597         Kingston upon Hull, City of         810         Special
#> 2598            East Riding of Yorkshire         811         Primary
#> 2599            East Riding of Yorkshire         811       Secondary
#> 2600            East Riding of Yorkshire         811         Special
#> 2601             North East Lincolnshire         812         Primary
#> 2602             North East Lincolnshire         812       Secondary
#> 2603             North East Lincolnshire         812         Special
#> 2604                  North Lincolnshire         813         Primary
#> 2605                  North Lincolnshire         813       Secondary
#> 2606                  North Lincolnshire         813         Special
#> 2607                                York         816         Primary
#> 2608                                York         816       Secondary
#> 2609                                York         816         Special
#> 2610                     North Yorkshire         815         Primary
#> 2611                     North Yorkshire         815       Secondary
#> 2612                     North Yorkshire         815         Special
#> 2613                            Barnsley         370         Primary
#> 2614                            Barnsley         370       Secondary
#> 2615                            Barnsley         370         Special
#> 2616                           Doncaster         371         Primary
#> 2617                           Doncaster         371       Secondary
#> 2618                           Doncaster         371         Special
#> 2619                           Rotherham         372         Primary
#> 2620                           Rotherham         372       Secondary
#> 2621                           Rotherham         372         Special
#> 2622                           Sheffield         373         Primary
#> 2623                           Sheffield         373       Secondary
#> 2624                           Sheffield         373         Special
#> 2625                            Bradford         380         Primary
#> 2626                            Bradford         380       Secondary
#> 2627                            Bradford         380         Special
#> 2628                          Calderdale         381         Primary
#> 2629                          Calderdale         381       Secondary
#> 2630                          Calderdale         381         Special
#> 2631                            Kirklees         382         Primary
#> 2632                            Kirklees         382       Secondary
#> 2633                            Kirklees         382         Special
#> 2634                               Leeds         383         Primary
#> 2635                               Leeds         383       Secondary
#> 2636                               Leeds         383         Special
#> 2637                           Wakefield         384         Primary
#> 2638                           Wakefield         384       Secondary
#> 2639                           Wakefield         384         Special
#> 2640                                <NA>          NA     All schools
#> 2641                                <NA>          NA         Primary
#> 2642                                <NA>          NA       Secondary
#> 2643                                <NA>          NA         Special
#> 2644                               Derby         831         Primary
#> 2645                               Derby         831       Secondary
#> 2646                               Derby         831         Special
#> 2647                           Leicester         856         Primary
#> 2648                           Leicester         856       Secondary
#> 2649                           Leicester         856         Special
#> 2650                             Rutland         857         Primary
#> 2651                             Rutland         857       Secondary
#> 2652                          Nottingham         892         Primary
#> 2653                          Nottingham         892       Secondary
#> 2654                          Nottingham         892         Special
#> 2655              North Northamptonshire         940         Primary
#> 2656              North Northamptonshire         940       Secondary
#> 2657              North Northamptonshire         940         Special
#> 2658               West Northamptonshire         941         Primary
#> 2659               West Northamptonshire         941       Secondary
#> 2660               West Northamptonshire         941         Special
#> 2661                          Derbyshire         830         Primary
#> 2662                          Derbyshire         830       Secondary
#> 2663                          Derbyshire         830         Special
#> 2664                      Leicestershire         855         Primary
#> 2665                      Leicestershire         855       Secondary
#> 2666                      Leicestershire         855         Special
#> 2667                        Lincolnshire         925         Primary
#> 2668                        Lincolnshire         925       Secondary
#> 2669                        Lincolnshire         925         Special
#> 2670                     Nottinghamshire         891         Primary
#> 2671                     Nottinghamshire         891       Secondary
#> 2672                     Nottinghamshire         891         Special
#> 2673                                <NA>          NA     All schools
#> 2674                                <NA>          NA         Primary
#> 2675                                <NA>          NA       Secondary
#> 2676                                <NA>          NA         Special
#> 2677            Herefordshire, County of         884         Primary
#> 2678            Herefordshire, County of         884       Secondary
#> 2679            Herefordshire, County of         884         Special
#> 2680                  Telford and Wrekin         894         Primary
#> 2681                  Telford and Wrekin         894       Secondary
#> 2682                  Telford and Wrekin         894         Special
#> 2683                      Stoke-on-Trent         861         Primary
#> 2684                      Stoke-on-Trent         861       Secondary
#> 2685                      Stoke-on-Trent         861         Special
#> 2686                          Shropshire         893         Primary
#> 2687                          Shropshire         893       Secondary
#> 2688                          Shropshire         893         Special
#> 2689                          Birmingham         330         Primary
#> 2690                          Birmingham         330       Secondary
#> 2691                          Birmingham         330         Special
#> 2692                            Coventry         331         Primary
#> 2693                            Coventry         331       Secondary
#> 2694                            Coventry         331         Special
#> 2695                              Dudley         332         Primary
#> 2696                              Dudley         332       Secondary
#> 2697                              Dudley         332         Special
#> 2698                            Sandwell         333         Primary
#> 2699                            Sandwell         333       Secondary
#> 2700                            Sandwell         333         Special
#> 2701                            Solihull         334         Primary
#> 2702                            Solihull         334       Secondary
#> 2703                            Solihull         334         Special
#> 2704                             Walsall         335         Primary
#> 2705                             Walsall         335       Secondary
#> 2706                             Walsall         335         Special
#> 2707                       Wolverhampton         336         Primary
#> 2708                       Wolverhampton         336       Secondary
#> 2709                       Wolverhampton         336         Special
#> 2710                       Staffordshire         860         Primary
#> 2711                       Staffordshire         860       Secondary
#> 2712                       Staffordshire         860         Special
#> 2713                        Warwickshire         937         Primary
#> 2714                        Warwickshire         937       Secondary
#> 2715                        Warwickshire         937         Special
#> 2716                      Worcestershire         885         Primary
#> 2717                      Worcestershire         885       Secondary
#> 2718                      Worcestershire         885         Special
#> 2719                                <NA>          NA     All schools
#> 2720                                <NA>          NA         Primary
#> 2721                                <NA>          NA       Secondary
#> 2722                                <NA>          NA         Special
#> 2723                        Peterborough         874         Primary
#> 2724                        Peterborough         874       Secondary
#> 2725                        Peterborough         874         Special
#> 2726                               Luton         821         Primary
#> 2727                               Luton         821       Secondary
#> 2728                               Luton         821         Special
#> 2729                     Southend-on-Sea         882         Primary
#> 2730                     Southend-on-Sea         882       Secondary
#> 2731                     Southend-on-Sea         882         Special
#> 2732                            Thurrock         883         Primary
#> 2733                            Thurrock         883       Secondary
#> 2734                            Thurrock         883         Special
#> 2735                             Bedford         822         Primary
#> 2736                             Bedford         822       Secondary
#> 2737                             Bedford         822         Special
#> 2738                Central Bedfordshire         823         Primary
#> 2739                Central Bedfordshire         823       Secondary
#> 2740                Central Bedfordshire         823         Special
#> 2741                      Cambridgeshire         873         Primary
#> 2742                      Cambridgeshire         873       Secondary
#> 2743                      Cambridgeshire         873         Special
#> 2744                               Essex         881         Primary
#> 2745                               Essex         881       Secondary
#> 2746                               Essex         881         Special
#> 2747                       Hertfordshire         919         Primary
#> 2748                       Hertfordshire         919       Secondary
#> 2749                       Hertfordshire         919         Special
#> 2750                             Norfolk         926         Primary
#> 2751                             Norfolk         926       Secondary
#> 2752                             Norfolk         926         Special
#> 2753                             Suffolk         935         Primary
#> 2754                             Suffolk         935       Secondary
#> 2755                             Suffolk         935         Special
#> 2756                                <NA>          NA     All schools
#> 2757                                <NA>          NA         Primary
#> 2758                                <NA>          NA       Secondary
#> 2759                                <NA>          NA         Special
#> 2760                      City of London         201         Primary
#> 2761                Barking and Dagenham         301         Primary
#> 2762                Barking and Dagenham         301       Secondary
#> 2763                Barking and Dagenham         301         Special
#> 2764                              Barnet         302         Primary
#> 2765                              Barnet         302       Secondary
#> 2766                              Barnet         302         Special
#> 2767                              Bexley         303         Primary
#> 2768                              Bexley         303       Secondary
#> 2769                              Bexley         303         Special
#> 2770                               Brent         304         Primary
#> 2771                               Brent         304       Secondary
#> 2772                               Brent         304         Special
#> 2773                             Bromley         305         Primary
#> 2774                             Bromley         305       Secondary
#> 2775                             Bromley         305         Special
#> 2776                              Camden         202         Primary
#> 2777                              Camden         202       Secondary
#> 2778                              Camden         202         Special
#> 2779                             Croydon         306         Primary
#> 2780                             Croydon         306       Secondary
#> 2781                             Croydon         306         Special
#> 2782                              Ealing         307         Primary
#> 2783                              Ealing         307       Secondary
#> 2784                              Ealing         307         Special
#> 2785                             Enfield         308         Primary
#> 2786                             Enfield         308       Secondary
#> 2787                             Enfield         308         Special
#> 2788                           Greenwich         203         Primary
#> 2789                           Greenwich         203       Secondary
#> 2790                           Greenwich         203         Special
#> 2791                             Hackney         204         Primary
#> 2792                             Hackney         204       Secondary
#> 2793                             Hackney         204         Special
#> 2794              Hammersmith and Fulham         205         Primary
#> 2795              Hammersmith and Fulham         205       Secondary
#> 2796              Hammersmith and Fulham         205         Special
#> 2797                            Haringey         309         Primary
#> 2798                            Haringey         309       Secondary
#> 2799                            Haringey         309         Special
#> 2800                              Harrow         310         Primary
#> 2801                              Harrow         310       Secondary
#> 2802                              Harrow         310         Special
#> 2803                            Havering         311         Primary
#> 2804                            Havering         311       Secondary
#> 2805                            Havering         311         Special
#> 2806                          Hillingdon         312         Primary
#> 2807                          Hillingdon         312       Secondary
#> 2808                          Hillingdon         312         Special
#> 2809                            Hounslow         313         Primary
#> 2810                            Hounslow         313       Secondary
#> 2811                            Hounslow         313         Special
#> 2812                           Islington         206         Primary
#> 2813                           Islington         206       Secondary
#> 2814                           Islington         206         Special
#> 2815              Kensington and Chelsea         207         Primary
#> 2816              Kensington and Chelsea         207       Secondary
#> 2817              Kensington and Chelsea         207         Special
#> 2818                Kingston upon Thames         314         Primary
#> 2819                Kingston upon Thames         314       Secondary
#> 2820                Kingston upon Thames         314         Special
#> 2821                             Lambeth         208         Primary
#> 2822                             Lambeth         208       Secondary
#> 2823                             Lambeth         208         Special
#> 2824                            Lewisham         209         Primary
#> 2825                            Lewisham         209       Secondary
#> 2826                            Lewisham         209         Special
#> 2827                              Merton         315         Primary
#> 2828                              Merton         315       Secondary
#> 2829                              Merton         315         Special
#> 2830                              Newham         316         Primary
#> 2831                              Newham         316       Secondary
#> 2832                              Newham         316         Special
#> 2833                           Redbridge         317         Primary
#> 2834                           Redbridge         317       Secondary
#> 2835                           Redbridge         317         Special
#> 2836                Richmond upon Thames         318         Primary
#> 2837                Richmond upon Thames         318       Secondary
#> 2838                Richmond upon Thames         318         Special
#> 2839                           Southwark         210         Primary
#> 2840                           Southwark         210       Secondary
#> 2841                           Southwark         210         Special
#> 2842                              Sutton         319         Primary
#> 2843                              Sutton         319       Secondary
#> 2844                              Sutton         319         Special
#> 2845                       Tower Hamlets         211         Primary
#> 2846                       Tower Hamlets         211       Secondary
#> 2847                       Tower Hamlets         211         Special
#> 2848                      Waltham Forest         320         Primary
#> 2849                      Waltham Forest         320       Secondary
#> 2850                      Waltham Forest         320         Special
#> 2851                          Wandsworth         212         Primary
#> 2852                          Wandsworth         212       Secondary
#> 2853                          Wandsworth         212         Special
#> 2854                         Westminster         213         Primary
#> 2855                         Westminster         213       Secondary
#> 2856                         Westminster         213         Special
#> 2857                                <NA>          NA     All schools
#> 2858                                <NA>          NA         Primary
#> 2859                                <NA>          NA       Secondary
#> 2860                                <NA>          NA         Special
#> 2861                              Medway         887         Primary
#> 2862                              Medway         887       Secondary
#> 2863                              Medway         887         Special
#> 2864                    Bracknell Forest         867         Primary
#> 2865                    Bracknell Forest         867       Secondary
#> 2866                    Bracknell Forest         867         Special
#> 2867                      West Berkshire         869         Primary
#> 2868                      West Berkshire         869       Secondary
#> 2869                      West Berkshire         869         Special
#> 2870                             Reading         870         Primary
#> 2871                             Reading         870       Secondary
#> 2872                             Reading         870         Special
#> 2873                              Slough         871         Primary
#> 2874                              Slough         871       Secondary
#> 2875                              Slough         871         Special
#> 2876              Windsor and Maidenhead         868         Primary
#> 2877              Windsor and Maidenhead         868       Secondary
#> 2878              Windsor and Maidenhead         868         Special
#> 2879                           Wokingham         872         Primary
#> 2880                           Wokingham         872       Secondary
#> 2881                           Wokingham         872         Special
#> 2882                       Milton Keynes         826         Primary
#> 2883                       Milton Keynes         826       Secondary
#> 2884                       Milton Keynes         826         Special
#> 2885                   Brighton and Hove         846         Primary
#> 2886                   Brighton and Hove         846       Secondary
#> 2887                   Brighton and Hove         846         Special
#> 2888                          Portsmouth         851         Primary
#> 2889                          Portsmouth         851       Secondary
#> 2890                          Portsmouth         851         Special
#> 2891                         Southampton         852         Primary
#> 2892                         Southampton         852       Secondary
#> 2893                         Southampton         852         Special
#> 2894                       Isle of Wight         921         Primary
#> 2895                       Isle of Wight         921       Secondary
#> 2896                       Isle of Wight         921         Special
#> 2897                     Buckinghamshire         825         Primary
#> 2898                     Buckinghamshire         825       Secondary
#> 2899                     Buckinghamshire         825         Special
#> 2900                         East Sussex         845         Primary
#> 2901                         East Sussex         845       Secondary
#> 2902                         East Sussex         845         Special
#> 2903                           Hampshire         850         Primary
#> 2904                           Hampshire         850       Secondary
#> 2905                           Hampshire         850         Special
#> 2906                                Kent         886         Primary
#> 2907                                Kent         886       Secondary
#> 2908                                Kent         886         Special
#> 2909                         Oxfordshire         931         Primary
#> 2910                         Oxfordshire         931       Secondary
#> 2911                         Oxfordshire         931         Special
#> 2912                              Surrey         936         Primary
#> 2913                              Surrey         936       Secondary
#> 2914                              Surrey         936         Special
#> 2915                         West Sussex         938         Primary
#> 2916                         West Sussex         938       Secondary
#> 2917                         West Sussex         938         Special
#> 2918                                <NA>          NA     All schools
#> 2919                                <NA>          NA         Primary
#> 2920                                <NA>          NA       Secondary
#> 2921                                <NA>          NA         Special
#> 2922        Bath and North East Somerset         800         Primary
#> 2923        Bath and North East Somerset         800       Secondary
#> 2924        Bath and North East Somerset         800         Special
#> 2925                    Bristol, City of         801         Primary
#> 2926                    Bristol, City of         801       Secondary
#> 2927                    Bristol, City of         801         Special
#> 2928                      North Somerset         802         Primary
#> 2929                      North Somerset         802       Secondary
#> 2930                      North Somerset         802         Special
#> 2931               South Gloucestershire         803         Primary
#> 2932               South Gloucestershire         803       Secondary
#> 2933               South Gloucestershire         803         Special
#> 2934                            Plymouth         879         Primary
#> 2935                            Plymouth         879       Secondary
#> 2936                            Plymouth         879         Special
#> 2937                              Torbay         880         Primary
#> 2938                              Torbay         880       Secondary
#> 2939                              Torbay         880         Special
#> 2940                             Swindon         866         Primary
#> 2941                             Swindon         866       Secondary
#> 2942                             Swindon         866         Special
#> 2943                            Cornwall         908         Primary
#> 2944                            Cornwall         908       Secondary
#> 2945                            Cornwall         908         Special
#> 2946                     Isles of Scilly         420       Secondary
#> 2947                           Wiltshire         865         Primary
#> 2948                           Wiltshire         865       Secondary
#> 2949                           Wiltshire         865         Special
#> 2950 Bournemouth, Christchurch and Poole         839         Primary
#> 2951 Bournemouth, Christchurch and Poole         839       Secondary
#> 2952 Bournemouth, Christchurch and Poole         839         Special
#> 2953                              Dorset         838         Primary
#> 2954                              Dorset         838       Secondary
#> 2955                              Dorset         838         Special
#> 2956                            Somerset         933         Primary
#> 2957                            Somerset         933       Secondary
#> 2958                            Somerset         933         Special
#> 2959                               Devon         878         Primary
#> 2960                               Devon         878       Secondary
#> 2961                               Devon         878         Special
#> 2962                     Gloucestershire         916         Primary
#> 2963                     Gloucestershire         916       Secondary
#> 2964                     Gloucestershire         916         Special
#> 2965                                <NA>          NA     All schools
#> 2966                                <NA>          NA         Primary
#> 2967                                <NA>          NA       Secondary
#> 2968                                <NA>          NA         Special
#> 2969                                <NA>          NA     All schools
#> 2970                                <NA>          NA         Primary
#> 2971                                <NA>          NA       Secondary
#> 2972                                <NA>          NA         Special
#> 2973                          Hartlepool         805         Primary
#> 2974                          Hartlepool         805       Secondary
#> 2975                          Hartlepool         805         Special
#> 2976                       Middlesbrough         806         Primary
#> 2977                       Middlesbrough         806       Secondary
#> 2978                       Middlesbrough         806         Special
#> 2979                Redcar and Cleveland         807         Primary
#> 2980                Redcar and Cleveland         807       Secondary
#> 2981                Redcar and Cleveland         807         Special
#> 2982                    Stockton-on-Tees         808         Primary
#> 2983                    Stockton-on-Tees         808       Secondary
#> 2984                    Stockton-on-Tees         808         Special
#> 2985                          Darlington         841         Primary
#> 2986                          Darlington         841       Secondary
#> 2987                          Darlington         841         Special
#> 2988                       County Durham         840         Primary
#> 2989                       County Durham         840       Secondary
#> 2990                       County Durham         840         Special
#> 2991                      Northumberland         929         Primary
#> 2992                      Northumberland         929       Secondary
#> 2993                      Northumberland         929         Special
#> 2994                 Newcastle upon Tyne         391         Primary
#> 2995                 Newcastle upon Tyne         391       Secondary
#> 2996                 Newcastle upon Tyne         391         Special
#> 2997                      North Tyneside         392         Primary
#> 2998                      North Tyneside         392       Secondary
#> 2999                      North Tyneside         392         Special
#> 3000                      South Tyneside         393         Primary
#> 3001                      South Tyneside         393       Secondary
#> 3002                      South Tyneside         393         Special
#> 3003                          Sunderland         394         Primary
#> 3004                          Sunderland         394       Secondary
#> 3005                          Sunderland         394         Special
#> 3006                           Gateshead         390         Primary
#> 3007                           Gateshead         390       Secondary
#> 3008                           Gateshead         390         Special
#> 3009                                <NA>          NA     All schools
#> 3010                                <NA>          NA         Primary
#> 3011                                <NA>          NA       Secondary
#> 3012                                <NA>          NA         Special
#> 3013                              Halton         876         Primary
#> 3014                              Halton         876       Secondary
#> 3015                              Halton         876         Special
#> 3016                          Warrington         877         Primary
#> 3017                          Warrington         877       Secondary
#> 3018                          Warrington         877         Special
#> 3019               Blackburn with Darwen         889         Primary
#> 3020               Blackburn with Darwen         889       Secondary
#> 3021               Blackburn with Darwen         889         Special
#> 3022                           Blackpool         890         Primary
#> 3023                           Blackpool         890       Secondary
#> 3024                           Blackpool         890         Special
#> 3025                       Cheshire East         895         Primary
#> 3026                       Cheshire East         895       Secondary
#> 3027                       Cheshire East         895         Special
#> 3028           Cheshire West and Chester         896         Primary
#> 3029           Cheshire West and Chester         896       Secondary
#> 3030           Cheshire West and Chester         896         Special
#> 3031                          Cumberland         942         Primary
#> 3032                          Cumberland         942       Secondary
#> 3033                          Cumberland         942         Special
#> 3034             Westmorland and Furness         943         Primary
#> 3035             Westmorland and Furness         943       Secondary
#> 3036             Westmorland and Furness         943         Special
#> 3037                              Bolton         350         Primary
#> 3038                              Bolton         350       Secondary
#> 3039                              Bolton         350         Special
#> 3040                                Bury         351         Primary
#> 3041                                Bury         351       Secondary
#> 3042                                Bury         351         Special
#> 3043                          Manchester         352         Primary
#> 3044                          Manchester         352       Secondary
#> 3045                          Manchester         352         Special
#> 3046                              Oldham         353         Primary
#> 3047                              Oldham         353       Secondary
#> 3048                              Oldham         353         Special
#> 3049                            Rochdale         354         Primary
#> 3050                            Rochdale         354       Secondary
#> 3051                            Rochdale         354         Special
#> 3052                             Salford         355         Primary
#> 3053                             Salford         355       Secondary
#> 3054                             Salford         355         Special
#> 3055                           Stockport         356         Primary
#> 3056                           Stockport         356       Secondary
#> 3057                           Stockport         356         Special
#> 3058                            Tameside         357         Primary
#> 3059                            Tameside         357       Secondary
#> 3060                            Tameside         357         Special
#> 3061                            Trafford         358         Primary
#> 3062                            Trafford         358       Secondary
#> 3063                            Trafford         358         Special
#> 3064                               Wigan         359         Primary
#> 3065                               Wigan         359       Secondary
#> 3066                               Wigan         359         Special
#> 3067                            Knowsley         340         Primary
#> 3068                            Knowsley         340       Secondary
#> 3069                            Knowsley         340         Special
#> 3070                           Liverpool         341         Primary
#> 3071                           Liverpool         341       Secondary
#> 3072                           Liverpool         341         Special
#> 3073                          St. Helens         342         Primary
#> 3074                          St. Helens         342       Secondary
#> 3075                          St. Helens         342         Special
#> 3076                              Sefton         343         Primary
#> 3077                              Sefton         343       Secondary
#> 3078                              Sefton         343         Special
#> 3079                              Wirral         344         Primary
#> 3080                              Wirral         344       Secondary
#> 3081                              Wirral         344         Special
#> 3082                          Lancashire         888         Primary
#> 3083                          Lancashire         888       Secondary
#> 3084                          Lancashire         888         Special
#> 3085                                <NA>          NA     All schools
#> 3086                                <NA>          NA         Primary
#> 3087                                <NA>          NA       Secondary
#> 3088                                <NA>          NA         Special
#> 3089         Kingston upon Hull, City of         810         Primary
#> 3090         Kingston upon Hull, City of         810       Secondary
#> 3091         Kingston upon Hull, City of         810         Special
#> 3092            East Riding of Yorkshire         811         Primary
#> 3093            East Riding of Yorkshire         811       Secondary
#> 3094            East Riding of Yorkshire         811         Special
#> 3095             North East Lincolnshire         812         Primary
#> 3096             North East Lincolnshire         812       Secondary
#> 3097             North East Lincolnshire         812         Special
#> 3098                  North Lincolnshire         813         Primary
#> 3099                  North Lincolnshire         813       Secondary
#> 3100                  North Lincolnshire         813         Special
#> 3101                                York         816         Primary
#> 3102                                York         816       Secondary
#> 3103                                York         816         Special
#> 3104                     North Yorkshire         815         Primary
#> 3105                     North Yorkshire         815       Secondary
#> 3106                     North Yorkshire         815         Special
#> 3107                            Barnsley         370         Primary
#> 3108                            Barnsley         370       Secondary
#> 3109                            Barnsley         370         Special
#> 3110                           Doncaster         371         Primary
#> 3111                           Doncaster         371       Secondary
#> 3112                           Doncaster         371         Special
#> 3113                           Rotherham         372         Primary
#> 3114                           Rotherham         372       Secondary
#> 3115                           Rotherham         372         Special
#> 3116                           Sheffield         373         Primary
#> 3117                           Sheffield         373       Secondary
#> 3118                           Sheffield         373         Special
#> 3119                            Bradford         380         Primary
#> 3120                            Bradford         380       Secondary
#> 3121                            Bradford         380         Special
#> 3122                          Calderdale         381         Primary
#> 3123                          Calderdale         381       Secondary
#> 3124                          Calderdale         381         Special
#> 3125                            Kirklees         382         Primary
#> 3126                            Kirklees         382       Secondary
#> 3127                            Kirklees         382         Special
#> 3128                               Leeds         383         Primary
#> 3129                               Leeds         383       Secondary
#> 3130                               Leeds         383         Special
#> 3131                           Wakefield         384         Primary
#> 3132                           Wakefield         384       Secondary
#> 3133                           Wakefield         384         Special
#> 3134                                <NA>          NA     All schools
#> 3135                                <NA>          NA         Primary
#> 3136                                <NA>          NA       Secondary
#> 3137                                <NA>          NA         Special
#> 3138                               Derby         831         Primary
#> 3139                               Derby         831       Secondary
#> 3140                               Derby         831         Special
#> 3141                           Leicester         856         Primary
#> 3142                           Leicester         856       Secondary
#> 3143                           Leicester         856         Special
#> 3144                             Rutland         857         Primary
#> 3145                             Rutland         857       Secondary
#> 3146                          Nottingham         892         Primary
#> 3147                          Nottingham         892       Secondary
#> 3148                          Nottingham         892         Special
#> 3149              North Northamptonshire         940         Primary
#> 3150              North Northamptonshire         940       Secondary
#> 3151              North Northamptonshire         940         Special
#> 3152               West Northamptonshire         941         Primary
#> 3153               West Northamptonshire         941       Secondary
#> 3154               West Northamptonshire         941         Special
#> 3155                          Derbyshire         830         Primary
#> 3156                          Derbyshire         830       Secondary
#> 3157                          Derbyshire         830         Special
#> 3158                      Leicestershire         855         Primary
#> 3159                      Leicestershire         855       Secondary
#> 3160                      Leicestershire         855         Special
#> 3161                        Lincolnshire         925         Primary
#> 3162                        Lincolnshire         925       Secondary
#> 3163                        Lincolnshire         925         Special
#> 3164                     Nottinghamshire         891         Primary
#> 3165                     Nottinghamshire         891       Secondary
#> 3166                     Nottinghamshire         891         Special
#> 3167                                <NA>          NA     All schools
#> 3168                                <NA>          NA         Primary
#> 3169                                <NA>          NA       Secondary
#> 3170                                <NA>          NA         Special
#> 3171            Herefordshire, County of         884         Primary
#> 3172            Herefordshire, County of         884       Secondary
#> 3173            Herefordshire, County of         884         Special
#> 3174                  Telford and Wrekin         894         Primary
#> 3175                  Telford and Wrekin         894       Secondary
#> 3176                  Telford and Wrekin         894         Special
#> 3177                      Stoke-on-Trent         861         Primary
#> 3178                      Stoke-on-Trent         861       Secondary
#> 3179                      Stoke-on-Trent         861         Special
#> 3180                          Shropshire         893         Primary
#> 3181                          Shropshire         893       Secondary
#> 3182                          Shropshire         893         Special
#> 3183                          Birmingham         330         Primary
#> 3184                          Birmingham         330       Secondary
#> 3185                          Birmingham         330         Special
#> 3186                            Coventry         331         Primary
#> 3187                            Coventry         331       Secondary
#> 3188                            Coventry         331         Special
#> 3189                              Dudley         332         Primary
#> 3190                              Dudley         332       Secondary
#> 3191                              Dudley         332         Special
#> 3192                            Sandwell         333         Primary
#> 3193                            Sandwell         333       Secondary
#> 3194                            Sandwell         333         Special
#> 3195                            Solihull         334         Primary
#> 3196                            Solihull         334       Secondary
#> 3197                            Solihull         334         Special
#> 3198                             Walsall         335         Primary
#> 3199                             Walsall         335       Secondary
#> 3200                             Walsall         335         Special
#> 3201                       Wolverhampton         336         Primary
#> 3202                       Wolverhampton         336       Secondary
#> 3203                       Wolverhampton         336         Special
#> 3204                       Staffordshire         860         Primary
#> 3205                       Staffordshire         860       Secondary
#> 3206                       Staffordshire         860         Special
#> 3207                        Warwickshire         937         Primary
#> 3208                        Warwickshire         937       Secondary
#> 3209                        Warwickshire         937         Special
#> 3210                      Worcestershire         885         Primary
#> 3211                      Worcestershire         885       Secondary
#> 3212                      Worcestershire         885         Special
#> 3213                                <NA>          NA     All schools
#> 3214                                <NA>          NA         Primary
#> 3215                                <NA>          NA       Secondary
#> 3216                                <NA>          NA         Special
#> 3217                        Peterborough         874         Primary
#> 3218                        Peterborough         874       Secondary
#> 3219                        Peterborough         874         Special
#> 3220                               Luton         821         Primary
#> 3221                               Luton         821       Secondary
#> 3222                               Luton         821         Special
#> 3223                     Southend-on-Sea         882         Primary
#> 3224                     Southend-on-Sea         882       Secondary
#> 3225                     Southend-on-Sea         882         Special
#> 3226                            Thurrock         883         Primary
#> 3227                            Thurrock         883       Secondary
#> 3228                            Thurrock         883         Special
#> 3229                             Bedford         822         Primary
#> 3230                             Bedford         822       Secondary
#> 3231                             Bedford         822         Special
#> 3232                Central Bedfordshire         823         Primary
#> 3233                Central Bedfordshire         823       Secondary
#> 3234                Central Bedfordshire         823         Special
#> 3235                      Cambridgeshire         873         Primary
#> 3236                      Cambridgeshire         873       Secondary
#> 3237                      Cambridgeshire         873         Special
#> 3238                               Essex         881         Primary
#> 3239                               Essex         881       Secondary
#> 3240                               Essex         881         Special
#> 3241                       Hertfordshire         919         Primary
#> 3242                       Hertfordshire         919       Secondary
#> 3243                       Hertfordshire         919         Special
#> 3244                             Norfolk         926         Primary
#> 3245                             Norfolk         926       Secondary
#> 3246                             Norfolk         926         Special
#> 3247                             Suffolk         935         Primary
#> 3248                             Suffolk         935       Secondary
#> 3249                             Suffolk         935         Special
#> 3250                                <NA>          NA     All schools
#> 3251                                <NA>          NA         Primary
#> 3252                                <NA>          NA       Secondary
#> 3253                                <NA>          NA         Special
#> 3254                      City of London         201         Primary
#> 3255                Barking and Dagenham         301         Primary
#> 3256                Barking and Dagenham         301       Secondary
#> 3257                Barking and Dagenham         301         Special
#> 3258                              Barnet         302         Primary
#> 3259                              Barnet         302       Secondary
#> 3260                              Barnet         302         Special
#> 3261                              Bexley         303         Primary
#> 3262                              Bexley         303       Secondary
#> 3263                              Bexley         303         Special
#> 3264                               Brent         304         Primary
#> 3265                               Brent         304       Secondary
#> 3266                               Brent         304         Special
#> 3267                             Bromley         305         Primary
#> 3268                             Bromley         305       Secondary
#> 3269                             Bromley         305         Special
#> 3270                              Camden         202         Primary
#> 3271                              Camden         202       Secondary
#> 3272                              Camden         202         Special
#> 3273                             Croydon         306         Primary
#> 3274                             Croydon         306       Secondary
#> 3275                             Croydon         306         Special
#> 3276                              Ealing         307         Primary
#> 3277                              Ealing         307       Secondary
#> 3278                              Ealing         307         Special
#> 3279                             Enfield         308         Primary
#> 3280                             Enfield         308       Secondary
#> 3281                             Enfield         308         Special
#> 3282                           Greenwich         203         Primary
#> 3283                           Greenwich         203       Secondary
#> 3284                           Greenwich         203         Special
#> 3285                             Hackney         204         Primary
#> 3286                             Hackney         204       Secondary
#> 3287                             Hackney         204         Special
#> 3288              Hammersmith and Fulham         205         Primary
#> 3289              Hammersmith and Fulham         205       Secondary
#> 3290              Hammersmith and Fulham         205         Special
#> 3291                            Haringey         309         Primary
#> 3292                            Haringey         309       Secondary
#> 3293                            Haringey         309         Special
#> 3294                              Harrow         310         Primary
#> 3295                              Harrow         310       Secondary
#> 3296                              Harrow         310         Special
#> 3297                            Havering         311         Primary
#> 3298                            Havering         311       Secondary
#> 3299                            Havering         311         Special
#> 3300                          Hillingdon         312         Primary
#> 3301                          Hillingdon         312       Secondary
#> 3302                          Hillingdon         312         Special
#> 3303                            Hounslow         313         Primary
#> 3304                            Hounslow         313       Secondary
#> 3305                            Hounslow         313         Special
#> 3306                           Islington         206         Primary
#> 3307                           Islington         206       Secondary
#> 3308                           Islington         206         Special
#> 3309              Kensington and Chelsea         207         Primary
#> 3310              Kensington and Chelsea         207       Secondary
#> 3311              Kensington and Chelsea         207         Special
#> 3312                Kingston upon Thames         314         Primary
#> 3313                Kingston upon Thames         314       Secondary
#> 3314                Kingston upon Thames         314         Special
#> 3315                             Lambeth         208         Primary
#> 3316                             Lambeth         208       Secondary
#> 3317                             Lambeth         208         Special
#> 3318                            Lewisham         209         Primary
#> 3319                            Lewisham         209       Secondary
#> 3320                            Lewisham         209         Special
#> 3321                              Merton         315         Primary
#> 3322                              Merton         315       Secondary
#> 3323                              Merton         315         Special
#> 3324                              Newham         316         Primary
#> 3325                              Newham         316       Secondary
#> 3326                              Newham         316         Special
#> 3327                           Redbridge         317         Primary
#> 3328                           Redbridge         317       Secondary
#> 3329                           Redbridge         317         Special
#> 3330                Richmond upon Thames         318         Primary
#> 3331                Richmond upon Thames         318       Secondary
#> 3332                Richmond upon Thames         318         Special
#> 3333                           Southwark         210         Primary
#> 3334                           Southwark         210       Secondary
#> 3335                           Southwark         210         Special
#> 3336                              Sutton         319         Primary
#> 3337                              Sutton         319       Secondary
#> 3338                              Sutton         319         Special
#> 3339                       Tower Hamlets         211         Primary
#> 3340                       Tower Hamlets         211       Secondary
#> 3341                       Tower Hamlets         211         Special
#> 3342                      Waltham Forest         320         Primary
#> 3343                      Waltham Forest         320       Secondary
#> 3344                      Waltham Forest         320         Special
#> 3345                          Wandsworth         212         Primary
#> 3346                          Wandsworth         212       Secondary
#> 3347                          Wandsworth         212         Special
#> 3348                         Westminster         213         Primary
#> 3349                         Westminster         213       Secondary
#> 3350                         Westminster         213         Special
#> 3351                                <NA>          NA     All schools
#> 3352                                <NA>          NA         Primary
#> 3353                                <NA>          NA       Secondary
#> 3354                                <NA>          NA         Special
#> 3355                              Medway         887         Primary
#> 3356                              Medway         887       Secondary
#> 3357                              Medway         887         Special
#> 3358                    Bracknell Forest         867         Primary
#> 3359                    Bracknell Forest         867       Secondary
#> 3360                    Bracknell Forest         867         Special
#> 3361                      West Berkshire         869         Primary
#> 3362                      West Berkshire         869       Secondary
#> 3363                      West Berkshire         869         Special
#> 3364                             Reading         870         Primary
#> 3365                             Reading         870       Secondary
#> 3366                             Reading         870         Special
#> 3367                              Slough         871         Primary
#> 3368                              Slough         871       Secondary
#> 3369                              Slough         871         Special
#> 3370              Windsor and Maidenhead         868         Primary
#> 3371              Windsor and Maidenhead         868       Secondary
#> 3372              Windsor and Maidenhead         868         Special
#> 3373                           Wokingham         872         Primary
#> 3374                           Wokingham         872       Secondary
#> 3375                           Wokingham         872         Special
#> 3376                       Milton Keynes         826         Primary
#> 3377                       Milton Keynes         826       Secondary
#> 3378                       Milton Keynes         826         Special
#> 3379                   Brighton and Hove         846         Primary
#> 3380                   Brighton and Hove         846       Secondary
#> 3381                   Brighton and Hove         846         Special
#> 3382                          Portsmouth         851         Primary
#> 3383                          Portsmouth         851       Secondary
#> 3384                          Portsmouth         851         Special
#> 3385                         Southampton         852         Primary
#> 3386                         Southampton         852       Secondary
#> 3387                         Southampton         852         Special
#> 3388                       Isle of Wight         921         Primary
#> 3389                       Isle of Wight         921       Secondary
#> 3390                       Isle of Wight         921         Special
#> 3391                     Buckinghamshire         825         Primary
#> 3392                     Buckinghamshire         825       Secondary
#> 3393                     Buckinghamshire         825         Special
#> 3394                         East Sussex         845         Primary
#> 3395                         East Sussex         845       Secondary
#> 3396                         East Sussex         845         Special
#> 3397                           Hampshire         850         Primary
#> 3398                           Hampshire         850       Secondary
#> 3399                           Hampshire         850         Special
#> 3400                                Kent         886         Primary
#> 3401                                Kent         886       Secondary
#> 3402                                Kent         886         Special
#> 3403                         Oxfordshire         931         Primary
#> 3404                         Oxfordshire         931       Secondary
#> 3405                         Oxfordshire         931         Special
#> 3406                              Surrey         936         Primary
#> 3407                              Surrey         936       Secondary
#> 3408                              Surrey         936         Special
#> 3409                         West Sussex         938         Primary
#> 3410                         West Sussex         938       Secondary
#> 3411                         West Sussex         938         Special
#> 3412                                <NA>          NA     All schools
#> 3413                                <NA>          NA         Primary
#> 3414                                <NA>          NA       Secondary
#> 3415                                <NA>          NA         Special
#> 3416        Bath and North East Somerset         800         Primary
#> 3417        Bath and North East Somerset         800       Secondary
#> 3418        Bath and North East Somerset         800         Special
#> 3419                    Bristol, City of         801         Primary
#> 3420                    Bristol, City of         801       Secondary
#> 3421                    Bristol, City of         801         Special
#> 3422                      North Somerset         802         Primary
#> 3423                      North Somerset         802       Secondary
#> 3424                      North Somerset         802         Special
#> 3425               South Gloucestershire         803         Primary
#> 3426               South Gloucestershire         803       Secondary
#> 3427               South Gloucestershire         803         Special
#> 3428                            Plymouth         879         Primary
#> 3429                            Plymouth         879       Secondary
#> 3430                            Plymouth         879         Special
#> 3431                              Torbay         880         Primary
#> 3432                              Torbay         880       Secondary
#> 3433                              Torbay         880         Special
#> 3434                             Swindon         866         Primary
#> 3435                             Swindon         866       Secondary
#> 3436                             Swindon         866         Special
#> 3437                            Cornwall         908         Primary
#> 3438                            Cornwall         908       Secondary
#> 3439                            Cornwall         908         Special
#> 3440                     Isles of Scilly         420       Secondary
#> 3441                           Wiltshire         865         Primary
#> 3442                           Wiltshire         865       Secondary
#> 3443                           Wiltshire         865         Special
#> 3444 Bournemouth, Christchurch and Poole         839         Primary
#> 3445 Bournemouth, Christchurch and Poole         839       Secondary
#> 3446 Bournemouth, Christchurch and Poole         839         Special
#> 3447                              Dorset         838         Primary
#> 3448                              Dorset         838       Secondary
#> 3449                              Dorset         838         Special
#> 3450                            Somerset         933         Primary
#> 3451                            Somerset         933       Secondary
#> 3452                            Somerset         933         Special
#> 3453                               Devon         878         Primary
#> 3454                               Devon         878       Secondary
#> 3455                               Devon         878         Special
#> 3456                     Gloucestershire         916         Primary
#> 3457                     Gloucestershire         916       Secondary
#> 3458                     Gloucestershire         916         Special
#> 3459                                <NA>          NA     All schools
#> 3460                                <NA>          NA         Primary
#> 3461                                <NA>          NA       Secondary
#> 3462                                <NA>          NA         Special
#> 3463                                <NA>          NA     All schools
#> 3464                                <NA>          NA         Primary
#> 3465                                <NA>          NA       Secondary
#> 3466                                <NA>          NA         Special
#> 3467                          Hartlepool         805         Primary
#> 3468                          Hartlepool         805       Secondary
#> 3469                          Hartlepool         805         Special
#> 3470                       Middlesbrough         806         Primary
#> 3471                       Middlesbrough         806       Secondary
#> 3472                       Middlesbrough         806         Special
#> 3473                Redcar and Cleveland         807         Primary
#> 3474                Redcar and Cleveland         807       Secondary
#> 3475                Redcar and Cleveland         807         Special
#> 3476                    Stockton-on-Tees         808         Primary
#> 3477                    Stockton-on-Tees         808       Secondary
#> 3478                    Stockton-on-Tees         808         Special
#> 3479                          Darlington         841         Primary
#> 3480                          Darlington         841       Secondary
#> 3481                          Darlington         841         Special
#> 3482                       County Durham         840         Primary
#> 3483                       County Durham         840       Secondary
#> 3484                       County Durham         840         Special
#> 3485                      Northumberland         929         Primary
#> 3486                      Northumberland         929       Secondary
#> 3487                      Northumberland         929         Special
#> 3488                 Newcastle upon Tyne         391         Primary
#> 3489                 Newcastle upon Tyne         391       Secondary
#> 3490                 Newcastle upon Tyne         391         Special
#> 3491                      North Tyneside         392         Primary
#> 3492                      North Tyneside         392       Secondary
#> 3493                      North Tyneside         392         Special
#> 3494                      South Tyneside         393         Primary
#> 3495                      South Tyneside         393       Secondary
#> 3496                      South Tyneside         393         Special
#> 3497                          Sunderland         394         Primary
#> 3498                          Sunderland         394       Secondary
#> 3499                          Sunderland         394         Special
#> 3500                           Gateshead         390         Primary
#> 3501                           Gateshead         390       Secondary
#> 3502                           Gateshead         390         Special
#> 3503                                <NA>          NA     All schools
#> 3504                                <NA>          NA         Primary
#> 3505                                <NA>          NA       Secondary
#> 3506                                <NA>          NA         Special
#> 3507                              Halton         876         Primary
#> 3508                              Halton         876       Secondary
#> 3509                              Halton         876         Special
#> 3510                          Warrington         877         Primary
#> 3511                          Warrington         877       Secondary
#> 3512                          Warrington         877         Special
#> 3513               Blackburn with Darwen         889         Primary
#> 3514               Blackburn with Darwen         889       Secondary
#> 3515               Blackburn with Darwen         889         Special
#> 3516                           Blackpool         890         Primary
#> 3517                           Blackpool         890       Secondary
#> 3518                           Blackpool         890         Special
#> 3519                       Cheshire East         895         Primary
#> 3520                       Cheshire East         895       Secondary
#> 3521                       Cheshire East         895         Special
#> 3522           Cheshire West and Chester         896         Primary
#> 3523           Cheshire West and Chester         896       Secondary
#> 3524           Cheshire West and Chester         896         Special
#> 3525                          Cumberland         942         Primary
#> 3526                          Cumberland         942       Secondary
#> 3527                          Cumberland         942         Special
#> 3528             Westmorland and Furness         943         Primary
#> 3529             Westmorland and Furness         943       Secondary
#> 3530             Westmorland and Furness         943         Special
#> 3531                              Bolton         350         Primary
#> 3532                              Bolton         350       Secondary
#> 3533                              Bolton         350         Special
#> 3534                                Bury         351         Primary
#> 3535                                Bury         351       Secondary
#> 3536                                Bury         351         Special
#> 3537                          Manchester         352         Primary
#> 3538                          Manchester         352       Secondary
#> 3539                          Manchester         352         Special
#> 3540                              Oldham         353         Primary
#> 3541                              Oldham         353       Secondary
#> 3542                              Oldham         353         Special
#> 3543                            Rochdale         354         Primary
#> 3544                            Rochdale         354       Secondary
#> 3545                            Rochdale         354         Special
#> 3546                             Salford         355         Primary
#> 3547                             Salford         355       Secondary
#> 3548                             Salford         355         Special
#> 3549                           Stockport         356         Primary
#> 3550                           Stockport         356       Secondary
#> 3551                           Stockport         356         Special
#> 3552                            Tameside         357         Primary
#> 3553                            Tameside         357       Secondary
#> 3554                            Tameside         357         Special
#> 3555                            Trafford         358         Primary
#> 3556                            Trafford         358       Secondary
#> 3557                            Trafford         358         Special
#> 3558                               Wigan         359         Primary
#> 3559                               Wigan         359       Secondary
#> 3560                               Wigan         359         Special
#> 3561                            Knowsley         340         Primary
#> 3562                            Knowsley         340       Secondary
#> 3563                            Knowsley         340         Special
#> 3564                           Liverpool         341         Primary
#> 3565                           Liverpool         341       Secondary
#> 3566                           Liverpool         341         Special
#> 3567                          St. Helens         342         Primary
#> 3568                          St. Helens         342       Secondary
#> 3569                          St. Helens         342         Special
#> 3570                              Sefton         343         Primary
#> 3571                              Sefton         343       Secondary
#> 3572                              Sefton         343         Special
#> 3573                              Wirral         344         Primary
#> 3574                              Wirral         344       Secondary
#> 3575                              Wirral         344         Special
#> 3576                          Lancashire         888         Primary
#> 3577                          Lancashire         888       Secondary
#> 3578                          Lancashire         888         Special
#> 3579                                <NA>          NA     All schools
#> 3580                                <NA>          NA         Primary
#> 3581                                <NA>          NA       Secondary
#> 3582                                <NA>          NA         Special
#> 3583         Kingston upon Hull, City of         810         Primary
#> 3584         Kingston upon Hull, City of         810       Secondary
#> 3585         Kingston upon Hull, City of         810         Special
#> 3586            East Riding of Yorkshire         811         Primary
#> 3587            East Riding of Yorkshire         811       Secondary
#> 3588            East Riding of Yorkshire         811         Special
#> 3589             North East Lincolnshire         812         Primary
#> 3590             North East Lincolnshire         812       Secondary
#> 3591             North East Lincolnshire         812         Special
#> 3592                  North Lincolnshire         813         Primary
#> 3593                  North Lincolnshire         813       Secondary
#> 3594                  North Lincolnshire         813         Special
#> 3595                                York         816         Primary
#> 3596                                York         816       Secondary
#> 3597                                York         816         Special
#> 3598                     North Yorkshire         815         Primary
#> 3599                     North Yorkshire         815       Secondary
#> 3600                     North Yorkshire         815         Special
#> 3601                            Barnsley         370         Primary
#> 3602                            Barnsley         370       Secondary
#> 3603                            Barnsley         370         Special
#> 3604                           Doncaster         371         Primary
#> 3605                           Doncaster         371       Secondary
#> 3606                           Doncaster         371         Special
#> 3607                           Rotherham         372         Primary
#> 3608                           Rotherham         372       Secondary
#> 3609                           Rotherham         372         Special
#> 3610                           Sheffield         373         Primary
#> 3611                           Sheffield         373       Secondary
#> 3612                           Sheffield         373         Special
#> 3613                            Bradford         380         Primary
#> 3614                            Bradford         380       Secondary
#> 3615                            Bradford         380         Special
#> 3616                          Calderdale         381         Primary
#> 3617                          Calderdale         381       Secondary
#> 3618                          Calderdale         381         Special
#> 3619                            Kirklees         382         Primary
#> 3620                            Kirklees         382       Secondary
#> 3621                            Kirklees         382         Special
#> 3622                               Leeds         383         Primary
#> 3623                               Leeds         383       Secondary
#> 3624                               Leeds         383         Special
#> 3625                           Wakefield         384         Primary
#> 3626                           Wakefield         384       Secondary
#> 3627                           Wakefield         384         Special
#> 3628                                <NA>          NA     All schools
#> 3629                                <NA>          NA         Primary
#> 3630                                <NA>          NA       Secondary
#> 3631                                <NA>          NA         Special
#> 3632                               Derby         831         Primary
#> 3633                               Derby         831       Secondary
#> 3634                               Derby         831         Special
#> 3635                           Leicester         856         Primary
#> 3636                           Leicester         856       Secondary
#> 3637                           Leicester         856         Special
#> 3638                             Rutland         857         Primary
#> 3639                             Rutland         857       Secondary
#> 3640                          Nottingham         892         Primary
#> 3641                          Nottingham         892       Secondary
#> 3642                          Nottingham         892         Special
#> 3643              North Northamptonshire         940         Primary
#> 3644              North Northamptonshire         940       Secondary
#> 3645              North Northamptonshire         940         Special
#> 3646               West Northamptonshire         941         Primary
#> 3647               West Northamptonshire         941       Secondary
#> 3648               West Northamptonshire         941         Special
#> 3649                          Derbyshire         830         Primary
#> 3650                          Derbyshire         830       Secondary
#> 3651                          Derbyshire         830         Special
#> 3652                      Leicestershire         855         Primary
#> 3653                      Leicestershire         855       Secondary
#> 3654                      Leicestershire         855         Special
#> 3655                        Lincolnshire         925         Primary
#> 3656                        Lincolnshire         925       Secondary
#> 3657                        Lincolnshire         925         Special
#> 3658                     Nottinghamshire         891         Primary
#> 3659                     Nottinghamshire         891       Secondary
#> 3660                     Nottinghamshire         891         Special
#> 3661                                <NA>          NA     All schools
#> 3662                                <NA>          NA         Primary
#> 3663                                <NA>          NA       Secondary
#> 3664                                <NA>          NA         Special
#> 3665            Herefordshire, County of         884         Primary
#> 3666            Herefordshire, County of         884       Secondary
#> 3667            Herefordshire, County of         884         Special
#> 3668                  Telford and Wrekin         894         Primary
#> 3669                  Telford and Wrekin         894       Secondary
#> 3670                  Telford and Wrekin         894         Special
#> 3671                      Stoke-on-Trent         861         Primary
#> 3672                      Stoke-on-Trent         861       Secondary
#> 3673                      Stoke-on-Trent         861         Special
#> 3674                          Shropshire         893         Primary
#> 3675                          Shropshire         893       Secondary
#> 3676                          Shropshire         893         Special
#> 3677                          Birmingham         330         Primary
#> 3678                          Birmingham         330       Secondary
#> 3679                          Birmingham         330         Special
#> 3680                            Coventry         331         Primary
#> 3681                            Coventry         331       Secondary
#> 3682                            Coventry         331         Special
#> 3683                              Dudley         332         Primary
#> 3684                              Dudley         332       Secondary
#> 3685                              Dudley         332         Special
#> 3686                            Sandwell         333         Primary
#> 3687                            Sandwell         333       Secondary
#> 3688                            Sandwell         333         Special
#> 3689                            Solihull         334         Primary
#> 3690                            Solihull         334       Secondary
#> 3691                            Solihull         334         Special
#> 3692                             Walsall         335         Primary
#> 3693                             Walsall         335       Secondary
#> 3694                             Walsall         335         Special
#> 3695                       Wolverhampton         336         Primary
#> 3696                       Wolverhampton         336       Secondary
#> 3697                       Wolverhampton         336         Special
#> 3698                       Staffordshire         860         Primary
#> 3699                       Staffordshire         860       Secondary
#> 3700                       Staffordshire         860         Special
#> 3701                        Warwickshire         937         Primary
#> 3702                        Warwickshire         937       Secondary
#> 3703                        Warwickshire         937         Special
#> 3704                      Worcestershire         885         Primary
#> 3705                      Worcestershire         885       Secondary
#> 3706                      Worcestershire         885         Special
#> 3707                                <NA>          NA     All schools
#> 3708                                <NA>          NA         Primary
#> 3709                                <NA>          NA       Secondary
#> 3710                                <NA>          NA         Special
#> 3711                        Peterborough         874         Primary
#> 3712                        Peterborough         874       Secondary
#> 3713                        Peterborough         874         Special
#> 3714                               Luton         821         Primary
#> 3715                               Luton         821       Secondary
#> 3716                               Luton         821         Special
#> 3717                     Southend-on-Sea         882         Primary
#> 3718                     Southend-on-Sea         882       Secondary
#> 3719                     Southend-on-Sea         882         Special
#> 3720                            Thurrock         883         Primary
#> 3721                            Thurrock         883       Secondary
#> 3722                            Thurrock         883         Special
#> 3723                             Bedford         822         Primary
#> 3724                             Bedford         822       Secondary
#> 3725                             Bedford         822         Special
#> 3726                Central Bedfordshire         823         Primary
#> 3727                Central Bedfordshire         823       Secondary
#> 3728                Central Bedfordshire         823         Special
#> 3729                      Cambridgeshire         873         Primary
#> 3730                      Cambridgeshire         873       Secondary
#> 3731                      Cambridgeshire         873         Special
#> 3732                               Essex         881         Primary
#> 3733                               Essex         881       Secondary
#> 3734                               Essex         881         Special
#> 3735                       Hertfordshire         919         Primary
#> 3736                       Hertfordshire         919       Secondary
#> 3737                       Hertfordshire         919         Special
#> 3738                             Norfolk         926         Primary
#> 3739                             Norfolk         926       Secondary
#> 3740                             Norfolk         926         Special
#> 3741                             Suffolk         935         Primary
#> 3742                             Suffolk         935       Secondary
#> 3743                             Suffolk         935         Special
#> 3744                                <NA>          NA     All schools
#> 3745                                <NA>          NA         Primary
#> 3746                                <NA>          NA       Secondary
#> 3747                                <NA>          NA         Special
#> 3748                      City of London         201         Primary
#> 3749                Barking and Dagenham         301         Primary
#> 3750                Barking and Dagenham         301       Secondary
#> 3751                Barking and Dagenham         301         Special
#> 3752                              Barnet         302         Primary
#> 3753                              Barnet         302       Secondary
#> 3754                              Barnet         302         Special
#> 3755                              Bexley         303         Primary
#> 3756                              Bexley         303       Secondary
#> 3757                              Bexley         303         Special
#> 3758                               Brent         304         Primary
#> 3759                               Brent         304       Secondary
#> 3760                               Brent         304         Special
#> 3761                             Bromley         305         Primary
#> 3762                             Bromley         305       Secondary
#> 3763                             Bromley         305         Special
#> 3764                              Camden         202         Primary
#> 3765                              Camden         202       Secondary
#> 3766                              Camden         202         Special
#> 3767                             Croydon         306         Primary
#> 3768                             Croydon         306       Secondary
#> 3769                             Croydon         306         Special
#> 3770                              Ealing         307         Primary
#> 3771                              Ealing         307       Secondary
#> 3772                              Ealing         307         Special
#> 3773                             Enfield         308         Primary
#> 3774                             Enfield         308       Secondary
#> 3775                             Enfield         308         Special
#> 3776                           Greenwich         203         Primary
#> 3777                           Greenwich         203       Secondary
#> 3778                           Greenwich         203         Special
#> 3779                             Hackney         204         Primary
#> 3780                             Hackney         204       Secondary
#> 3781                             Hackney         204         Special
#> 3782              Hammersmith and Fulham         205         Primary
#> 3783              Hammersmith and Fulham         205       Secondary
#> 3784              Hammersmith and Fulham         205         Special
#> 3785                            Haringey         309         Primary
#> 3786                            Haringey         309       Secondary
#> 3787                            Haringey         309         Special
#> 3788                              Harrow         310         Primary
#> 3789                              Harrow         310       Secondary
#> 3790                              Harrow         310         Special
#> 3791                            Havering         311         Primary
#> 3792                            Havering         311       Secondary
#> 3793                            Havering         311         Special
#> 3794                          Hillingdon         312         Primary
#> 3795                          Hillingdon         312       Secondary
#> 3796                          Hillingdon         312         Special
#> 3797                            Hounslow         313         Primary
#> 3798                            Hounslow         313       Secondary
#> 3799                            Hounslow         313         Special
#> 3800                           Islington         206         Primary
#> 3801                           Islington         206       Secondary
#> 3802                           Islington         206         Special
#> 3803              Kensington and Chelsea         207         Primary
#> 3804              Kensington and Chelsea         207       Secondary
#> 3805              Kensington and Chelsea         207         Special
#> 3806                Kingston upon Thames         314         Primary
#> 3807                Kingston upon Thames         314       Secondary
#> 3808                Kingston upon Thames         314         Special
#> 3809                             Lambeth         208         Primary
#> 3810                             Lambeth         208       Secondary
#> 3811                             Lambeth         208         Special
#> 3812                            Lewisham         209         Primary
#> 3813                            Lewisham         209       Secondary
#> 3814                            Lewisham         209         Special
#> 3815                              Merton         315         Primary
#> 3816                              Merton         315       Secondary
#> 3817                              Merton         315         Special
#> 3818                              Newham         316         Primary
#> 3819                              Newham         316       Secondary
#> 3820                              Newham         316         Special
#> 3821                           Redbridge         317         Primary
#> 3822                           Redbridge         317       Secondary
#> 3823                           Redbridge         317         Special
#> 3824                Richmond upon Thames         318         Primary
#> 3825                Richmond upon Thames         318       Secondary
#> 3826                Richmond upon Thames         318         Special
#> 3827                           Southwark         210         Primary
#> 3828                           Southwark         210       Secondary
#> 3829                           Southwark         210         Special
#> 3830                              Sutton         319         Primary
#> 3831                              Sutton         319       Secondary
#> 3832                              Sutton         319         Special
#> 3833                       Tower Hamlets         211         Primary
#> 3834                       Tower Hamlets         211       Secondary
#> 3835                       Tower Hamlets         211         Special
#> 3836                      Waltham Forest         320         Primary
#> 3837                      Waltham Forest         320       Secondary
#> 3838                      Waltham Forest         320         Special
#> 3839                          Wandsworth         212         Primary
#> 3840                          Wandsworth         212       Secondary
#> 3841                          Wandsworth         212         Special
#> 3842                         Westminster         213         Primary
#> 3843                         Westminster         213       Secondary
#> 3844                         Westminster         213         Special
#> 3845                                <NA>          NA     All schools
#> 3846                                <NA>          NA         Primary
#> 3847                                <NA>          NA       Secondary
#> 3848                                <NA>          NA         Special
#> 3849                              Medway         887         Primary
#> 3850                              Medway         887       Secondary
#> 3851                              Medway         887         Special
#> 3852                    Bracknell Forest         867         Primary
#> 3853                    Bracknell Forest         867       Secondary
#> 3854                    Bracknell Forest         867         Special
#> 3855                      West Berkshire         869         Primary
#> 3856                      West Berkshire         869       Secondary
#> 3857                      West Berkshire         869         Special
#> 3858                             Reading         870         Primary
#> 3859                             Reading         870       Secondary
#> 3860                             Reading         870         Special
#> 3861                              Slough         871         Primary
#> 3862                              Slough         871       Secondary
#> 3863                              Slough         871         Special
#> 3864              Windsor and Maidenhead         868         Primary
#> 3865              Windsor and Maidenhead         868       Secondary
#> 3866              Windsor and Maidenhead         868         Special
#> 3867                           Wokingham         872         Primary
#> 3868                           Wokingham         872       Secondary
#> 3869                           Wokingham         872         Special
#> 3870                       Milton Keynes         826         Primary
#> 3871                       Milton Keynes         826       Secondary
#> 3872                       Milton Keynes         826         Special
#> 3873                   Brighton and Hove         846         Primary
#> 3874                   Brighton and Hove         846       Secondary
#> 3875                   Brighton and Hove         846         Special
#> 3876                          Portsmouth         851         Primary
#> 3877                          Portsmouth         851       Secondary
#> 3878                          Portsmouth         851         Special
#> 3879                         Southampton         852         Primary
#> 3880                         Southampton         852       Secondary
#> 3881                         Southampton         852         Special
#> 3882                       Isle of Wight         921         Primary
#> 3883                       Isle of Wight         921       Secondary
#> 3884                       Isle of Wight         921         Special
#> 3885                     Buckinghamshire         825         Primary
#> 3886                     Buckinghamshire         825       Secondary
#> 3887                     Buckinghamshire         825         Special
#> 3888                         East Sussex         845         Primary
#> 3889                         East Sussex         845       Secondary
#> 3890                         East Sussex         845         Special
#> 3891                           Hampshire         850         Primary
#> 3892                           Hampshire         850       Secondary
#> 3893                           Hampshire         850         Special
#> 3894                                Kent         886         Primary
#> 3895                                Kent         886       Secondary
#> 3896                                Kent         886         Special
#> 3897                         Oxfordshire         931         Primary
#> 3898                         Oxfordshire         931       Secondary
#> 3899                         Oxfordshire         931         Special
#> 3900                              Surrey         936         Primary
#> 3901                              Surrey         936       Secondary
#> 3902                              Surrey         936         Special
#> 3903                         West Sussex         938         Primary
#> 3904                         West Sussex         938       Secondary
#> 3905                         West Sussex         938         Special
#> 3906                                <NA>          NA     All schools
#> 3907                                <NA>          NA         Primary
#> 3908                                <NA>          NA       Secondary
#> 3909                                <NA>          NA         Special
#> 3910        Bath and North East Somerset         800         Primary
#> 3911        Bath and North East Somerset         800       Secondary
#> 3912        Bath and North East Somerset         800         Special
#> 3913                    Bristol, City of         801         Primary
#> 3914                    Bristol, City of         801       Secondary
#> 3915                    Bristol, City of         801         Special
#> 3916                      North Somerset         802         Primary
#> 3917                      North Somerset         802       Secondary
#> 3918                      North Somerset         802         Special
#> 3919               South Gloucestershire         803         Primary
#> 3920               South Gloucestershire         803       Secondary
#> 3921               South Gloucestershire         803         Special
#> 3922                            Plymouth         879         Primary
#> 3923                            Plymouth         879       Secondary
#> 3924                            Plymouth         879         Special
#> 3925                              Torbay         880         Primary
#> 3926                              Torbay         880       Secondary
#> 3927                              Torbay         880         Special
#> 3928                             Swindon         866         Primary
#> 3929                             Swindon         866       Secondary
#> 3930                             Swindon         866         Special
#> 3931                            Cornwall         908         Primary
#> 3932                            Cornwall         908       Secondary
#> 3933                            Cornwall         908         Special
#> 3934                     Isles of Scilly         420       Secondary
#> 3935                           Wiltshire         865         Primary
#> 3936                           Wiltshire         865       Secondary
#> 3937                           Wiltshire         865         Special
#> 3938 Bournemouth, Christchurch and Poole         839         Primary
#> 3939 Bournemouth, Christchurch and Poole         839       Secondary
#> 3940 Bournemouth, Christchurch and Poole         839         Special
#> 3941                              Dorset         838         Primary
#> 3942                              Dorset         838       Secondary
#> 3943                              Dorset         838         Special
#> 3944                            Somerset         933         Primary
#> 3945                            Somerset         933       Secondary
#> 3946                            Somerset         933         Special
#> 3947                               Devon         878         Primary
#> 3948                               Devon         878       Secondary
#> 3949                               Devon         878         Special
#> 3950                     Gloucestershire         916         Primary
#> 3951                     Gloucestershire         916       Secondary
#> 3952                     Gloucestershire         916         Special
#>      persistent_absence_percent
#> 1                         18.16
#> 2                         13.42
#> 3                         23.25
#> 4                         35.38
#> 5                         18.55
#> 6                         12.98
#> 7                         24.76
#> 8                         31.44
#> 9                         13.82
#> 10                        25.47
#> 11                        26.81
#> 12                        15.16
#> 13                        28.89
#> 14                        29.86
#> 15                        12.65
#> 16                        24.27
#> 17                        37.04
#> 18                        12.28
#> 19                        26.32
#> 20                        30.26
#> 21                        14.37
#> 22                        24.76
#> 23                        20.67
#> 24                        13.59
#> 25                        24.76
#> 26                        32.21
#> 27                        10.95
#> 28                        21.99
#> 29                        36.04
#> 30                        14.31
#> 31                        25.19
#> 32                        38.54
#> 33                         11.3
#> 34                         20.5
#> 35                         28.2
#> 36                        13.71
#> 37                        27.22
#> 38                        22.64
#> 39                        13.22
#> 40                        26.97
#> 41                        33.97
#> 42                        10.47
#> 43                        23.55
#> 44                        25.33
#> 45                        17.88
#> 46                         13.2
#> 47                        23.33
#> 48                        34.92
#> 49                           15
#> 50                        27.26
#> 51                        31.72
#> 52                         9.04
#> 53                        18.89
#> 54                        38.62
#> 55                        14.16
#> 56                        23.59
#> 57                        37.68
#> 58                        16.85
#> 59                        30.65
#> 60                        31.48
#> 61                         9.65
#> 62                        21.19
#> 63                        33.59
#> 64                        11.73
#> 65                        24.28
#> 66                        31.08
#> 67                        10.65
#> 68                        22.87
#> 69                        24.77
#> 70                         9.05
#> 71                        21.49
#> 72                        32.45
#> 73                        14.08
#> 74                        22.37
#> 75                        35.41
#> 76                        12.05
#> 77                        23.67
#> 78                        40.78
#> 79                         15.7
#> 80                        21.38
#> 81                        41.73
#> 82                        14.81
#> 83                        22.27
#> 84                        41.62
#> 85                        14.21
#> 86                        26.24
#> 87                        46.34
#> 88                        15.83
#> 89                        26.34
#> 90                        35.16
#> 91                        11.65
#> 92                        22.72
#> 93                        34.84
#> 94                        12.28
#> 95                        24.66
#> 96                        30.49
#> 97                         9.63
#> 98                        15.63
#> 99                        29.41
#> 100                       12.28
#> 101                       22.37
#> 102                       30.51
#> 103                       19.64
#> 104                       32.06
#> 105                        38.2
#> 106                        15.3
#> 107                       26.33
#> 108                       37.93
#> 109                       12.76
#> 110                       24.22
#> 111                       35.07
#> 112                       13.48
#> 113                       27.51
#> 114                       31.91
#> 115                       14.68
#> 116                       24.83
#> 117                       34.82
#> 118                       12.73
#> 119                       22.75
#> 120                       29.82
#> 121                       18.86
#> 122                       13.77
#> 123                       24.85
#> 124                       33.98
#> 125                       15.14
#> 126                       25.51
#> 127                       35.09
#> 128                       10.82
#> 129                       22.54
#> 130                       25.82
#> 131                       12.89
#> 132                       27.61
#> 133                       21.15
#> 134                       12.19
#> 135                       24.15
#> 136                       26.71
#> 137                       11.46
#> 138                       23.25
#> 139                       24.19
#> 140                       10.51
#> 141                        23.7
#> 142                          38
#> 143                       12.28
#> 144                       25.48
#> 145                       37.59
#> 146                       13.55
#> 147                       24.01
#> 148                       30.04
#> 149                       14.12
#> 150                       25.25
#> 151                       36.44
#> 152                       15.44
#> 153                       25.74
#> 154                       34.78
#> 155                       16.63
#> 156                       30.52
#> 157                       35.59
#> 158                       12.84
#> 159                       22.82
#> 160                       25.63
#> 161                       13.74
#> 162                       21.55
#> 163                        32.7
#> 164                       14.56
#> 165                       23.29
#> 166                       35.44
#> 167                       13.74
#> 168                       25.87
#> 169                       40.49
#> 170                       17.46
#> 171                       12.65
#> 172                       22.65
#> 173                       35.31
#> 174                       15.21
#> 175                       24.07
#> 176                       39.37
#> 177                       17.09
#> 178                       22.61
#> 179                       51.28
#> 180                        8.98
#> 181                       18.11
#> 182                       16.86
#> 183                       25.26
#> 184                       35.38
#> 185                       12.81
#> 186                       23.27
#> 187                       34.74
#> 188                        11.9
#> 189                        21.6
#> 190                       33.33
#> 191                        10.9
#> 192                       21.81
#> 193                        29.2
#> 194                        10.4
#> 195                       21.36
#> 196                       27.16
#> 197                       12.57
#> 198                       23.87
#> 199                       36.65
#> 200                       11.68
#> 201                       22.41
#> 202                       30.35
#> 203                       18.84
#> 204                        14.2
#> 205                       23.58
#> 206                        36.9
#> 207                       10.61
#> 208                       21.55
#> 209                       36.76
#> 210                       12.52
#> 211                       21.99
#> 212                       28.98
#> 213                       14.53
#> 214                       26.95
#> 215                        39.5
#> 216                       11.79
#> 217                       23.55
#> 218                       43.14
#> 219                       16.98
#> 220                        24.4
#> 221                       46.04
#> 222                       15.94
#> 223                       25.42
#> 224                        32.5
#> 225                       14.64
#> 226                       24.72
#> 227                       30.23
#> 228                       15.69
#> 229                       24.27
#> 230                       36.58
#> 231                       12.56
#> 232                       23.11
#> 233                       42.88
#> 234                       16.45
#> 235                        27.7
#> 236                       31.99
#> 237                        15.4
#> 238                       21.21
#> 239                       32.54
#> 240                       10.66
#> 241                        20.5
#> 242                       28.66
#> 243                       12.72
#> 244                       23.78
#> 245                       33.98
#> 246                       12.33
#> 247                       22.33
#> 248                       34.75
#> 249                       17.62
#> 250                       12.97
#> 251                       22.56
#> 252                       33.39
#> 253                       13.95
#> 254                       23.69
#> 255                        34.9
#> 256                       15.56
#> 257                       21.32
#> 258                       36.61
#> 259                       14.67
#> 260                       20.96
#> 261                       33.93
#> 262                       14.27
#> 263                       21.21
#> 264                       26.61
#> 265                       12.79
#> 266                       24.47
#> 267                       26.97
#> 268                       11.67
#> 269                       19.96
#> 270                       35.18
#> 271                       12.37
#> 272                       21.16
#> 273                       35.91
#> 274                       13.29
#> 275                       23.29
#> 276                       32.28
#> 277                       11.93
#> 278                       22.05
#> 279                       33.74
#> 280                       13.02
#> 281                       23.26
#> 282                       33.16
#> 283                       12.78
#> 284                       24.13
#> 285                        33.2
#> 286                       17.99
#> 287                        14.7
#> 288                       21.12
#> 289                       37.63
#> 290                           x
#> 291                       16.34
#> 292                       19.94
#> 293                          45
#> 294                        11.8
#> 295                       19.27
#> 296                       39.14
#> 297                       11.83
#> 298                       19.83
#> 299                       35.17
#> 300                        14.7
#> 301                        20.6
#> 302                       30.85
#> 303                       11.82
#> 304                       19.74
#> 305                       36.12
#> 306                       16.12
#> 307                       28.94
#> 308                       44.67
#> 309                       15.77
#> 310                       25.87
#> 311                       35.68
#> 312                       14.19
#> 313                       22.68
#> 314                       33.94
#> 315                       14.21
#> 316                       22.73
#> 317                        38.1
#> 318                       14.25
#> 319                       21.62
#> 320                       35.58
#> 321                       14.88
#> 322                       21.74
#> 323                       31.54
#> 324                       15.27
#> 325                       21.59
#> 326                       38.36
#> 327                       15.15
#> 328                       24.27
#> 329                       37.41
#> 330                       12.54
#> 331                       21.44
#> 332                       35.94
#> 333                       12.63
#> 334                       19.47
#> 335                       38.27
#> 336                       17.54
#> 337                       22.84
#> 338                       37.37
#> 339                        15.6
#> 340                       20.89
#> 341                        33.7
#> 342                       18.63
#> 343                       25.56
#> 344                       39.52
#> 345                       16.31
#> 346                       25.74
#> 347                       27.41
#> 348                        11.2
#> 349                       17.22
#> 350                       38.68
#> 351                       16.49
#> 352                       22.44
#> 353                       33.17
#> 354                       14.55
#> 355                       19.65
#> 356                       35.46
#> 357                       11.94
#> 358                       18.37
#> 359                       39.39
#> 360                       19.33
#> 361                       21.17
#> 362                       55.56
#> 363                       16.54
#> 364                       19.79
#> 365                       45.75
#> 366                        8.78
#> 367                       16.65
#> 368                       27.22
#> 369                       14.55
#> 370                       19.72
#> 371                       37.72
#> 372                       11.54
#> 373                       17.31
#> 374                       37.71
#> 375                       18.99
#> 376                       18.27
#> 377                       41.64
#> 378                       14.69
#> 379                       23.32
#> 380                       44.48
#> 381                       13.85
#> 382                       21.06
#> 383                        44.4
#> 384                       19.18
#> 385                       23.52
#> 386                       36.92
#> 387                       17.99
#> 388                       13.01
#> 389                       23.26
#> 390                       36.25
#> 391                        15.4
#> 392                       22.67
#> 393                       32.93
#> 394                          10
#> 395                       20.62
#> 396                           x
#> 397                        11.8
#> 398                       21.71
#> 399                       29.67
#> 400                        16.8
#> 401                       23.57
#> 402                       46.28
#> 403                          16
#> 404                       22.68
#> 405                        37.8
#> 406                       12.51
#> 407                       22.77
#> 408                       31.95
#> 409                       10.08
#> 410                       20.58
#> 411                        31.8
#> 412                       12.79
#> 413                       23.76
#> 414                       35.66
#> 415                       14.14
#> 416                        30.4
#> 417                       32.62
#> 418                       12.95
#> 419                       25.41
#> 420                       55.81
#> 421                       16.52
#> 422                       26.86
#> 423                       34.23
#> 424                       16.48
#> 425                       28.89
#> 426                       34.83
#> 427                       12.26
#> 428                       23.49
#> 429                       36.87
#> 430                       15.17
#> 431                       25.85
#> 432                       38.54
#> 433                       10.29
#> 434                       22.06
#> 435                       33.84
#> 436                       15.19
#> 437                        24.4
#> 438                       39.64
#> 439                       12.61
#> 440                       23.68
#> 441                       32.31
#> 442                       11.13
#> 443                       19.38
#> 444                       31.95
#> 445                       12.43
#> 446                       23.36
#> 447                       35.09
#> 448                       18.62
#> 449                        12.6
#> 450                       25.02
#> 451                       35.72
#> 452                       10.59
#> 453                        22.4
#> 454                       37.03
#> 455                       16.29
#> 456                       29.71
#> 457                       44.65
#> 458                       11.84
#> 459                       24.72
#> 460                       30.37
#> 461                       12.41
#> 462                       23.76
#> 463                       32.02
#> 464                       13.39
#> 465                       28.82
#> 466                       32.43
#> 467                       14.21
#> 468                        23.7
#> 469                       38.74
#> 470                       11.85
#> 471                       25.27
#> 472                       36.68
#> 473                       12.82
#> 474                       26.24
#> 475                       34.17
#> 476                           x
#> 477                       10.94
#> 478                       22.58
#> 479                       33.07
#> 480                       11.57
#> 481                       22.23
#> 482                       37.14
#> 483                       13.33
#> 484                       24.68
#> 485                       32.67
#> 486                       13.54
#> 487                       25.43
#> 488                       41.46
#> 489                       11.74
#> 490                       26.93
#> 491                       33.01
#> 492                       12.09
#> 493                       22.49
#> 494                       32.53
#> 495                       17.99
#> 496                       13.41
#> 497                       22.89
#> 498                       35.31
#> 499                       18.43
#> 500                       12.93
#> 501                       24.55
#> 502                       31.42
#> 503                       13.86
#> 504                       25.24
#> 505                       27.54
#> 506                       15.05
#> 507                        28.6
#> 508                       29.11
#> 509                       12.53
#> 510                       24.03
#> 511                       36.27
#> 512                       12.29
#> 513                       26.23
#> 514                       29.32
#> 515                       14.33
#> 516                       24.51
#> 517                       20.67
#> 518                        13.5
#> 519                        24.6
#> 520                       32.27
#> 521                       11.07
#> 522                       21.77
#> 523                       36.09
#> 524                       14.43
#> 525                       25.03
#> 526                       39.22
#> 527                       11.23
#> 528                       20.32
#> 529                        28.2
#> 530                       13.81
#> 531                       26.72
#> 532                       22.81
#> 533                       12.96
#> 534                       26.75
#> 535                       33.76
#> 536                        10.3
#> 537                       23.45
#> 538                       25.73
#> 539                        17.8
#> 540                       13.18
#> 541                       23.15
#> 542                       34.76
#> 543                       14.92
#> 544                       26.93
#> 545                       31.95
#> 546                        9.23
#> 547                       19.45
#> 548                       38.84
#> 549                       14.02
#> 550                       23.26
#> 551                       36.49
#> 552                       16.63
#> 553                       30.26
#> 554                       30.56
#> 555                        9.66
#> 556                       21.16
#> 557                       33.43
#> 558                       11.72
#> 559                       23.85
#> 560                       31.27
#> 561                       10.74
#> 562                       22.81
#> 563                       24.12
#> 564                           9
#> 565                       21.19
#> 566                       32.95
#> 567                        13.9
#> 568                       22.28
#> 569                       35.12
#> 570                       12.01
#> 571                       23.27
#> 572                       41.15
#> 573                       15.69
#> 574                       21.23
#> 575                       40.36
#> 576                       14.81
#> 577                        22.2
#> 578                       41.47
#> 579                        14.1
#> 580                       26.15
#> 581                          46
#> 582                       15.96
#> 583                       25.99
#> 584                       35.41
#> 585                       11.64
#> 586                       22.47
#> 587                       35.18
#> 588                       12.21
#> 589                       24.87
#> 590                          30
#> 591                        9.64
#> 592                       15.03
#> 593                       29.32
#> 594                       12.31
#> 595                       22.01
#> 596                       31.22
#> 597                       19.63
#> 598                        31.6
#> 599                       37.65
#> 600                       15.17
#> 601                       26.11
#> 602                       37.94
#> 603                       12.77
#> 604                       23.83
#> 605                       34.84
#> 606                       13.39
#> 607                        27.1
#> 608                       31.91
#> 609                       14.77
#> 610                       24.96
#> 611                       34.27
#> 612                        12.7
#> 613                       22.49
#> 614                       30.15
#> 615                       18.66
#> 616                       13.68
#> 617                       24.54
#> 618                       33.87
#> 619                       14.83
#> 620                       25.22
#> 621                       35.57
#> 622                       10.68
#> 623                       22.15
#> 624                       24.63
#> 625                       12.74
#> 626                       27.22
#> 627                       21.15
#> 628                       12.17
#> 629                       24.18
#> 630                       26.41
#> 631                        11.2
#> 632                       23.22
#> 633                       24.19
#> 634                       10.53
#> 635                       23.15
#> 636                       37.71
#> 637                       12.15
#> 638                       24.92
#> 639                       36.43
#> 640                        13.4
#> 641                       23.72
#> 642                       29.91
#> 643                       14.12
#> 644                       24.86
#> 645                       36.53
#> 646                       15.37
#> 647                       25.43
#> 648                        34.9
#> 649                       16.62
#> 650                        30.3
#> 651                       35.44
#> 652                       12.78
#> 653                       22.38
#> 654                       25.24
#> 655                       13.69
#> 656                       21.22
#> 657                       31.95
#> 658                       14.49
#> 659                       23.09
#> 660                       35.49
#> 661                       13.59
#> 662                       25.68
#> 663                       40.85
#> 664                       17.31
#> 665                       12.63
#> 666                       22.35
#> 667                       35.26
#> 668                       15.23
#> 669                       23.85
#> 670                       39.06
#> 671                        17.4
#> 672                       22.68
#> 673                       49.54
#> 674                        8.69
#> 675                       18.12
#> 676                       16.81
#> 677                       25.32
#> 678                       35.53
#> 679                       12.88
#> 680                       22.93
#> 681                       34.69
#> 682                       11.96
#> 683                       21.41
#> 684                       33.24
#> 685                       10.82
#> 686                        21.3
#> 687                       29.02
#> 688                       10.45
#> 689                       21.23
#> 690                       27.58
#> 691                       12.44
#> 692                       23.12
#> 693                       36.79
#> 694                       11.54
#> 695                        22.1
#> 696                       30.31
#> 697                       18.73
#> 698                       14.26
#> 699                       23.28
#> 700                       36.87
#> 701                       10.63
#> 702                       21.39
#> 703                       36.86
#> 704                       12.51
#> 705                       21.29
#> 706                       28.34
#> 707                       14.66
#> 708                       26.99
#> 709                       40.64
#> 710                       11.77
#> 711                       23.24
#> 712                       42.68
#> 713                       17.07
#> 714                       24.11
#> 715                       45.74
#> 716                       16.12
#> 717                       25.31
#> 718                       33.45
#> 719                       14.59
#> 720                       24.66
#> 721                       30.38
#> 722                       15.93
#> 723                       23.86
#> 724                       36.33
#> 725                       12.83
#> 726                       22.74
#> 727                       41.87
#> 728                       16.64
#> 729                       27.43
#> 730                       32.02
#> 731                       15.49
#> 732                       20.97
#> 733                       32.65
#> 734                       10.62
#> 735                       20.23
#> 736                       28.56
#> 737                       12.79
#> 738                        23.2
#> 739                       33.98
#> 740                       12.25
#> 741                       21.98
#> 742                       35.23
#> 743                       17.33
#> 744                       12.91
#> 745                       21.99
#> 746                       33.34
#> 747                       13.99
#> 748                       23.29
#> 749                       35.05
#> 750                       15.75
#> 751                       21.18
#> 752                       36.44
#> 753                       14.67
#> 754                       20.44
#> 755                       33.93
#> 756                        14.2
#> 757                       21.19
#> 758                       27.47
#> 759                       12.93
#> 760                       24.09
#> 761                       27.19
#> 762                       11.54
#> 763                       19.45
#> 764                       34.65
#> 765                       12.32
#> 766                       20.86
#> 767                       35.57
#> 768                       13.16
#> 769                       22.78
#> 770                        32.6
#> 771                       11.88
#> 772                       20.71
#> 773                       33.95
#> 774                       12.95
#> 775                       22.98
#> 776                       31.84
#> 777                       12.65
#> 778                       23.84
#> 779                       33.28
#> 780                       17.91
#> 781                       14.79
#> 782                       20.83
#> 783                       37.52
#> 784                           x
#> 785                       16.57
#> 786                       19.75
#> 787                        44.9
#> 788                        11.9
#> 789                       18.78
#> 790                       39.62
#> 791                       11.77
#> 792                       19.43
#> 793                       34.45
#> 794                       14.78
#> 795                       20.38
#> 796                        31.9
#> 797                       11.84
#> 798                       19.45
#> 799                       35.53
#> 800                       16.15
#> 801                       28.03
#> 802                       44.67
#> 803                       15.81
#> 804                       25.44
#> 805                       35.55
#> 806                       14.45
#> 807                       22.27
#> 808                       34.17
#> 809                       14.27
#> 810                       23.12
#> 811                       37.62
#> 812                       14.14
#> 813                        21.4
#> 814                       35.65
#> 815                          15
#> 816                       21.67
#> 817                       31.78
#> 818                       15.21
#> 819                       20.02
#> 820                       38.94
#> 821                        15.3
#> 822                       23.94
#> 823                       36.98
#> 824                       12.84
#> 825                       20.69
#> 826                       35.71
#> 827                       12.77
#> 828                       19.24
#> 829                        39.2
#> 830                       17.58
#> 831                       22.33
#> 832                       36.59
#> 833                       15.78
#> 834                        20.8
#> 835                       33.94
#> 836                        18.7
#> 837                       25.46
#> 838                       39.68
#> 839                       16.47
#> 840                       25.63
#> 841                        26.4
#> 842                       11.39
#> 843                       17.02
#> 844                        38.9
#> 845                       16.58
#> 846                       22.29
#> 847                       32.85
#> 848                       14.54
#> 849                       19.45
#> 850                       35.36
#> 851                       11.94
#> 852                       18.06
#> 853                       40.16
#> 854                       19.42
#> 855                       21.23
#> 856                       53.85
#> 857                       16.82
#> 858                        19.3
#> 859                       47.35
#> 860                        8.76
#> 861                       15.98
#> 862                       27.51
#> 863                       14.73
#> 864                       19.72
#> 865                       37.93
#> 866                       11.56
#> 867                       16.54
#> 868                        35.2
#> 869                       19.14
#> 870                       18.28
#> 871                       42.02
#> 872                       14.81
#> 873                       23.19
#> 874                       44.25
#> 875                       13.89
#> 876                       20.41
#> 877                       43.83
#> 878                       18.91
#> 879                       23.47
#> 880                       36.56
#> 881                       17.69
#> 882                       12.94
#> 883                       22.65
#> 884                       36.19
#> 885                       15.28
#> 886                       21.94
#> 887                        33.2
#> 888                       10.16
#> 889                       19.92
#> 890                           x
#> 891                       11.61
#> 892                       21.21
#> 893                       29.45
#> 894                       16.67
#> 895                       23.06
#> 896                       46.83
#> 897                       15.92
#> 898                       21.69
#> 899                       38.41
#> 900                       12.24
#> 901                       21.72
#> 902                       31.62
#> 903                       10.05
#> 904                        18.7
#> 905                       30.26
#> 906                        12.7
#> 907                       23.02
#> 908                       35.77
#> 909                       14.17
#> 910                       29.45
#> 911                       30.48
#> 912                       12.71
#> 913                       25.16
#> 914                       55.52
#> 915                       16.46
#> 916                       26.65
#> 917                       34.97
#> 918                       16.41
#> 919                       28.68
#> 920                       33.71
#> 921                       12.31
#> 922                       22.32
#> 923                       36.42
#> 924                       15.08
#> 925                       25.42
#> 926                       37.89
#> 927                       10.17
#> 928                        21.8
#> 929                       33.81
#> 930                        15.1
#> 931                       23.62
#> 932                       39.65
#> 933                       12.73
#> 934                       23.53
#> 935                       32.52
#> 936                       11.09
#> 937                       18.77
#> 938                       32.07
#> 939                       12.31
#> 940                       22.93
#> 941                       35.21
#> 942                       18.42
#> 943                       12.57
#> 944                       24.62
#> 945                       35.69
#> 946                       10.42
#> 947                          22
#> 948                       36.44
#> 949                       16.17
#> 950                        29.2
#> 951                       44.77
#> 952                       11.62
#> 953                       24.05
#> 954                       30.82
#> 955                       12.43
#> 956                       23.37
#> 957                       32.51
#> 958                       13.35
#> 959                       28.46
#> 960                       32.29
#> 961                       14.11
#> 962                        23.6
#> 963                       38.54
#> 964                       11.92
#> 965                       25.17
#> 966                        36.3
#> 967                       12.83
#> 968                       25.88
#> 969                       35.07
#> 970                           x
#> 971                       10.87
#> 972                       22.31
#> 973                       32.47
#> 974                       11.66
#> 975                       22.04
#> 976                       36.96
#> 977                       13.31
#> 978                       24.15
#> 979                       31.79
#> 980                       13.57
#> 981                       25.11
#> 982                       41.62
#> 983                       11.75
#> 984                       26.31
#> 985                       33.33
#> 986                       12.02
#> 987                       21.98
#> 988                        32.6
#> 989                        18.1
#> 990                       13.76
#> 991                        22.7
#> 992                       35.42
#> 993                       18.67
#> 994                       13.28
#> 995                       24.66
#> 996                       31.89
#> 997                       14.27
#> 998                       25.15
#> 999                       28.99
#> 1000                       15.5
#> 1001                       28.8
#> 1002                      30.02
#> 1003                      13.07
#> 1004                      24.06
#> 1005                      36.34
#> 1006                      12.48
#> 1007                      26.27
#> 1008                      30.69
#> 1009                       14.8
#> 1010                      24.61
#> 1011                      21.76
#> 1012                      13.82
#> 1013                      24.66
#> 1014                       32.9
#> 1015                      11.23
#> 1016                      21.87
#> 1017                      36.92
#> 1018                      14.76
#> 1019                      25.42
#> 1020                         38
#> 1021                      11.47
#> 1022                      20.65
#> 1023                      28.11
#> 1024                      14.06
#> 1025                      26.63
#> 1026                      23.47
#> 1027                      13.49
#> 1028                      26.72
#> 1029                      34.26
#> 1030                      10.82
#> 1031                      23.53
#> 1032                      26.44
#> 1033                      18.01
#> 1034                      13.54
#> 1035                      23.16
#> 1036                       34.9
#> 1037                      14.96
#> 1038                       27.1
#> 1039                      31.72
#> 1040                        9.6
#> 1041                      19.67
#> 1042                      38.93
#> 1043                      14.46
#> 1044                      23.42
#> 1045                      37.91
#> 1046                      17.46
#> 1047                      30.09
#> 1048                       30.3
#> 1049                      10.06
#> 1050                      20.96
#> 1051                      33.08
#> 1052                      12.07
#> 1053                      23.66
#> 1054                      31.52
#> 1055                      11.05
#> 1056                      22.89
#> 1057                      24.36
#> 1058                       9.43
#> 1059                      21.15
#> 1060                      33.33
#> 1061                      14.31
#> 1062                      22.34
#> 1063                      35.74
#> 1064                      12.55
#> 1065                      23.39
#> 1066                      40.49
#> 1067                       16.1
#> 1068                       21.3
#> 1069                      40.52
#> 1070                      15.33
#> 1071                      22.33
#> 1072                      41.58
#> 1073                      14.48
#> 1074                      26.25
#> 1075                      47.36
#> 1076                      16.27
#> 1077                      26.06
#> 1078                      35.06
#> 1079                      11.99
#> 1080                      22.24
#> 1081                      35.98
#> 1082                      12.65
#> 1083                      24.96
#> 1084                      31.14
#> 1085                       9.97
#> 1086                      14.63
#> 1087                       29.1
#> 1088                      12.49
#> 1089                      21.97
#> 1090                      31.29
#> 1091                      19.88
#> 1092                      31.75
#> 1093                      37.31
#> 1094                      15.39
#> 1095                      26.14
#> 1096                      37.56
#> 1097                      12.99
#> 1098                       23.9
#> 1099                      33.26
#> 1100                      13.74
#> 1101                      26.94
#> 1102                      31.82
#> 1103                      15.25
#> 1104                      25.12
#> 1105                      34.79
#> 1106                      13.06
#> 1107                      22.51
#> 1108                      30.33
#> 1109                      18.81
#> 1110                      13.97
#> 1111                      24.51
#> 1112                      33.93
#> 1113                      15.05
#> 1114                      25.27
#> 1115                      35.97
#> 1116                         11
#> 1117                      22.14
#> 1118                      25.22
#> 1119                      13.01
#> 1120                      27.21
#> 1121                      20.51
#> 1122                      12.67
#> 1123                      24.41
#> 1124                       27.3
#> 1125                      11.62
#> 1126                      23.29
#> 1127                      23.38
#> 1128                      10.87
#> 1129                       22.9
#> 1130                      37.56
#> 1131                      12.24
#> 1132                      24.89
#> 1133                      36.12
#> 1134                       13.6
#> 1135                      23.52
#> 1136                      29.78
#> 1137                      14.27
#> 1138                      25.12
#> 1139                      36.83
#> 1140                      15.52
#> 1141                      25.24
#> 1142                       35.3
#> 1143                      17.23
#> 1144                      30.35
#> 1145                      35.02
#> 1146                      12.98
#> 1147                      22.51
#> 1148                      25.24
#> 1149                      14.03
#> 1150                      21.37
#> 1151                      32.24
#> 1152                       14.7
#> 1153                      23.02
#> 1154                      35.97
#> 1155                      13.84
#> 1156                      25.47
#> 1157                      39.26
#> 1158                      17.47
#> 1159                      12.96
#> 1160                       22.3
#> 1161                      35.35
#> 1162                      15.52
#> 1163                      24.03
#> 1164                      38.63
#> 1165                      18.17
#> 1166                      22.95
#> 1167                       50.5
#> 1168                       8.75
#> 1169                      18.41
#> 1170                      17.32
#> 1171                      25.35
#> 1172                      35.53
#> 1173                      13.08
#> 1174                      22.72
#> 1175                      35.22
#> 1176                      12.15
#> 1177                      21.43
#> 1178                      33.82
#> 1179                      11.11
#> 1180                      21.11
#> 1181                      29.13
#> 1182                      11.02
#> 1183                      21.31
#> 1184                      27.66
#> 1185                      12.43
#> 1186                      22.72
#> 1187                      36.21
#> 1188                      11.83
#> 1189                      22.15
#> 1190                      30.17
#> 1191                      18.92
#> 1192                      14.69
#> 1193                       23.2
#> 1194                      37.05
#> 1195                      10.93
#> 1196                      21.72
#> 1197                      36.68
#> 1198                      13.09
#> 1199                      21.31
#> 1200                      29.46
#> 1201                      15.14
#> 1202                      26.87
#> 1203                      40.83
#> 1204                      12.03
#> 1205                      23.29
#> 1206                      42.57
#> 1207                      17.57
#> 1208                      23.94
#> 1209                      45.98
#> 1210                      16.46
#> 1211                      25.15
#> 1212                       33.3
#> 1213                       14.9
#> 1214                      24.61
#> 1215                      30.97
#> 1216                      16.49
#> 1217                      24.07
#> 1218                      36.71
#> 1219                      13.37
#> 1220                      22.41
#> 1221                      42.86
#> 1222                      17.23
#> 1223                      27.14
#> 1224                       32.4
#> 1225                       15.8
#> 1226                       20.9
#> 1227                      32.68
#> 1228                      10.97
#> 1229                      20.32
#> 1230                      28.39
#> 1231                      13.19
#> 1232                      22.88
#> 1233                      33.42
#> 1234                      12.58
#> 1235                      22.01
#> 1236                      35.62
#> 1237                      17.27
#> 1238                      13.18
#> 1239                      21.55
#> 1240                      33.45
#> 1241                      14.32
#> 1242                      22.97
#> 1243                      35.51
#> 1244                      16.28
#> 1245                      21.12
#> 1246                       36.8
#> 1247                      15.08
#> 1248                      19.78
#> 1249                      34.32
#> 1250                      14.64
#> 1251                       21.5
#> 1252                      26.82
#> 1253                      13.29
#> 1254                      23.86
#> 1255                      28.14
#> 1256                      11.79
#> 1257                      19.44
#> 1258                      34.78
#> 1259                      12.52
#> 1260                      20.57
#> 1261                      35.29
#> 1262                      13.49
#> 1263                      22.55
#> 1264                      32.44
#> 1265                      12.15
#> 1266                      19.36
#> 1267                      33.92
#> 1268                      12.97
#> 1269                      22.76
#> 1270                      32.33
#> 1271                      12.84
#> 1272                      23.69
#> 1273                       33.6
#> 1274                      18.04
#> 1275                      15.29
#> 1276                      20.53
#> 1277                      37.61
#> 1278                          x
#> 1279                      17.18
#> 1280                      19.68
#> 1281                       44.9
#> 1282                      12.59
#> 1283                      18.36
#> 1284                       39.9
#> 1285                      12.23
#> 1286                      19.07
#> 1287                      33.97
#> 1288                      15.38
#> 1289                      19.96
#> 1290                      32.16
#> 1291                      12.14
#> 1292                      18.89
#> 1293                      36.42
#> 1294                      16.55
#> 1295                      27.41
#> 1296                      44.67
#> 1297                      16.15
#> 1298                      24.54
#> 1299                      34.91
#> 1300                      15.05
#> 1301                      21.54
#> 1302                      33.52
#> 1303                      14.66
#> 1304                      22.32
#> 1305                      37.25
#> 1306                      14.45
#> 1307                      21.17
#> 1308                      34.68
#> 1309                      15.59
#> 1310                      22.18
#> 1311                      31.31
#> 1312                      15.82
#> 1313                      19.15
#> 1314                      38.14
#> 1315                      15.73
#> 1316                      23.96
#> 1317                      37.19
#> 1318                      13.39
#> 1319                      19.82
#> 1320                       37.1
#> 1321                      13.21
#> 1322                       19.1
#> 1323                      39.81
#> 1324                      18.17
#> 1325                      22.07
#> 1326                      36.52
#> 1327                      16.42
#> 1328                      20.57
#> 1329                      35.39
#> 1330                       19.1
#> 1331                      25.53
#> 1332                      40.16
#> 1333                      17.05
#> 1334                      26.33
#> 1335                       26.9
#> 1336                      11.81
#> 1337                      16.49
#> 1338                      39.12
#> 1339                      17.11
#> 1340                      22.18
#> 1341                      33.98
#> 1342                      15.05
#> 1343                       19.5
#> 1344                      35.94
#> 1345                      12.44
#> 1346                      17.87
#> 1347                      40.71
#> 1348                      19.81
#> 1349                      21.25
#> 1350                      54.44
#> 1351                      17.42
#> 1352                      18.78
#> 1353                      49.14
#> 1354                       9.13
#> 1355                      15.53
#> 1356                      28.16
#> 1357                      15.13
#> 1358                      20.03
#> 1359                      38.33
#> 1360                      11.85
#> 1361                      15.53
#> 1362                      31.13
#> 1363                      19.92
#> 1364                      18.68
#> 1365                      41.84
#> 1366                       15.3
#> 1367                      23.49
#> 1368                      44.66
#> 1369                       14.4
#> 1370                      20.08
#> 1371                      45.39
#> 1372                      19.69
#> 1373                       23.5
#> 1374                      37.99
#> 1375                      17.69
#> 1376                      13.29
#> 1377                      22.23
#> 1378                      36.19
#> 1379                      15.54
#> 1380                      21.34
#> 1381                      32.53
#> 1382                       10.4
#> 1383                      19.82
#> 1384                          x
#> 1385                      11.87
#> 1386                         21
#> 1387                      30.62
#> 1388                      17.27
#> 1389                      23.22
#> 1390                      45.73
#> 1391                      16.87
#> 1392                       20.6
#> 1393                      39.94
#> 1394                      12.68
#> 1395                       20.8
#> 1396                      31.68
#> 1397                      10.48
#> 1398                      17.19
#> 1399                      30.04
#> 1400                      13.13
#> 1401                      22.46
#> 1402                      36.16
#> 1403                      14.56
#> 1404                      29.01
#> 1405                      33.16
#> 1406                      13.19
#> 1407                      25.05
#> 1408                      55.79
#> 1409                      16.84
#> 1410                      26.73
#> 1411                      35.71
#> 1412                      16.76
#> 1413                      28.56
#> 1414                       33.8
#> 1415                      12.56
#> 1416                      20.32
#> 1417                      35.91
#> 1418                      15.41
#> 1419                      25.42
#> 1420                      38.09
#> 1421                      10.41
#> 1422                      21.58
#> 1423                      33.46
#> 1424                      15.48
#> 1425                      23.31
#> 1426                      39.46
#> 1427                      12.99
#> 1428                      23.45
#> 1429                      32.21
#> 1430                      11.48
#> 1431                      18.39
#> 1432                      32.28
#> 1433                      12.61
#> 1434                      22.76
#> 1435                      35.73
#> 1436                      18.46
#> 1437                      12.83
#> 1438                       24.4
#> 1439                       35.7
#> 1440                      10.42
#> 1441                      21.52
#> 1442                      36.63
#> 1443                      16.42
#> 1444                      29.02
#> 1445                      44.44
#> 1446                      11.79
#> 1447                      23.79
#> 1448                      31.28
#> 1449                      12.88
#> 1450                      23.25
#> 1451                      31.91
#> 1452                      13.57
#> 1453                      28.11
#> 1454                      33.15
#> 1455                      14.51
#> 1456                      23.46
#> 1457                      39.72
#> 1458                      12.37
#> 1459                      25.49
#> 1460                       35.6
#> 1461                      13.11
#> 1462                      25.72
#> 1463                      35.49
#> 1464                          x
#> 1465                      11.13
#> 1466                      22.17
#> 1467                      32.57
#> 1468                      11.82
#> 1469                      21.86
#> 1470                      37.01
#> 1471                       13.4
#> 1472                      23.65
#> 1473                      32.21
#> 1474                       13.9
#> 1475                      24.88
#> 1476                      42.03
#> 1477                      11.95
#> 1478                       26.1
#> 1479                      33.05
#> 1480                      12.31
#> 1481                      21.69
#> 1482                      32.13
#> 1483                      18.35
#> 1484                       14.1
#> 1485                      22.83
#> 1486                      35.73
#> 1487                      18.71
#> 1488                      13.33
#> 1489                      24.66
#> 1490                      31.92
#> 1491                      14.51
#> 1492                      25.18
#> 1493                      29.56
#> 1494                      15.31
#> 1495                      28.78
#> 1496                      30.56
#> 1497                      13.01
#> 1498                      24.01
#> 1499                      37.53
#> 1500                      12.51
#> 1501                      26.21
#> 1502                      29.26
#> 1503                      14.81
#> 1504                      24.67
#> 1505                      22.08
#> 1506                      13.97
#> 1507                      24.65
#> 1508                      32.86
#> 1509                      11.33
#> 1510                      21.81
#> 1511                      36.83
#> 1512                       14.8
#> 1513                      25.37
#> 1514                      37.77
#> 1515                      11.75
#> 1516                       20.7
#> 1517                      28.72
#> 1518                      14.02
#> 1519                      26.72
#> 1520                      23.97
#> 1521                      13.51
#> 1522                      26.79
#> 1523                      33.72
#> 1524                      10.77
#> 1525                      23.57
#> 1526                      26.54
#> 1527                      18.26
#> 1528                      13.86
#> 1529                      23.31
#> 1530                      35.15
#> 1531                      15.29
#> 1532                      27.08
#> 1533                      30.65
#> 1534                       9.99
#> 1535                      20.59
#> 1536                      39.86
#> 1537                      14.69
#> 1538                      23.32
#> 1539                      36.67
#> 1540                       17.7
#> 1541                       30.6
#> 1542                      31.02
#> 1543                      10.37
#> 1544                      21.06
#> 1545                      33.49
#> 1546                      12.37
#> 1547                      23.65
#> 1548                      31.23
#> 1549                       11.7
#> 1550                      23.27
#> 1551                      24.82
#> 1552                      10.14
#> 1553                      21.61
#> 1554                      32.58
#> 1555                      14.51
#> 1556                      22.92
#> 1557                      35.21
#> 1558                      12.82
#> 1559                      23.62
#> 1560                      39.85
#> 1561                      16.54
#> 1562                      21.42
#> 1563                      42.77
#> 1564                      15.49
#> 1565                      22.54
#> 1566                      40.96
#> 1567                      14.74
#> 1568                      26.35
#> 1569                      46.75
#> 1570                      16.23
#> 1571                      26.04
#> 1572                      35.73
#> 1573                      12.04
#> 1574                      22.34
#> 1575                      35.89
#> 1576                      12.88
#> 1577                      24.38
#> 1578                      31.62
#> 1579                      10.57
#> 1580                      14.87
#> 1581                      29.03
#> 1582                      12.92
#> 1583                      22.17
#> 1584                      31.33
#> 1585                      19.81
#> 1586                      31.54
#> 1587                      37.33
#> 1588                      15.75
#> 1589                      26.19
#> 1590                      37.41
#> 1591                      13.12
#> 1592                         24
#> 1593                      33.03
#> 1594                      13.99
#> 1595                      27.23
#> 1596                      33.08
#> 1597                      15.64
#> 1598                      24.62
#> 1599                      35.87
#> 1600                      13.46
#> 1601                      22.75
#> 1602                      30.44
#> 1603                      19.06
#> 1604                      14.31
#> 1605                      24.65
#> 1606                      34.03
#> 1607                      15.78
#> 1608                      25.27
#> 1609                      36.46
#> 1610                      11.54
#> 1611                       22.5
#> 1612                       25.6
#> 1613                      13.39
#> 1614                      27.25
#> 1615                      20.83
#> 1616                      13.09
#> 1617                      24.82
#> 1618                      29.17
#> 1619                      12.15
#> 1620                      23.57
#> 1621                      24.68
#> 1622                      11.16
#> 1623                      23.13
#> 1624                      36.77
#> 1625                      12.66
#> 1626                       25.1
#> 1627                      36.23
#> 1628                      13.93
#> 1629                      23.51
#> 1630                      29.78
#> 1631                      14.36
#> 1632                      25.12
#> 1633                      36.48
#> 1634                      15.47
#> 1635                      25.12
#> 1636                       35.1
#> 1637                      17.66
#> 1638                      30.44
#> 1639                      35.55
#> 1640                      13.56
#> 1641                      22.23
#> 1642                      25.82
#> 1643                      14.29
#> 1644                      21.45
#> 1645                      33.17
#> 1646                      14.95
#> 1647                      23.38
#> 1648                       36.2
#> 1649                      14.36
#> 1650                      25.54
#> 1651                       38.1
#> 1652                      17.74
#> 1653                      13.33
#> 1654                      22.45
#> 1655                      35.74
#> 1656                      16.06
#> 1657                         24
#> 1658                       38.6
#> 1659                       18.3
#> 1660                         23
#> 1661                       49.9
#> 1662                          9
#> 1663                      18.48
#> 1664                      17.88
#> 1665                      25.48
#> 1666                       36.6
#> 1667                       13.6
#> 1668                      22.96
#> 1669                      35.77
#> 1670                      12.57
#> 1671                      21.58
#> 1672                      34.51
#> 1673                      11.34
#> 1674                      21.12
#> 1675                      30.02
#> 1676                      11.12
#> 1677                      21.48
#> 1678                      27.98
#> 1679                      12.81
#> 1680                      23.14
#> 1681                      36.68
#> 1682                      12.42
#> 1683                      22.22
#> 1684                      31.04
#> 1685                      18.92
#> 1686                      14.69
#> 1687                      23.18
#> 1688                      37.12
#> 1689                      10.99
#> 1690                      21.71
#> 1691                      36.16
#> 1692                      13.09
#> 1693                      21.19
#> 1694                      30.27
#> 1695                      14.98
#> 1696                      26.79
#> 1697                       40.6
#> 1698                      12.15
#> 1699                      23.49
#> 1700                      42.41
#> 1701                      17.62
#> 1702                      23.89
#> 1703                      45.53
#> 1704                      16.41
#> 1705                      25.06
#> 1706                      33.48
#> 1707                      15.05
#> 1708                      24.67
#> 1709                      31.11
#> 1710                      16.44
#> 1711                      24.17
#> 1712                      36.65
#> 1713                      13.27
#> 1714                      22.41
#> 1715                      42.93
#> 1716                       17.1
#> 1717                      26.92
#> 1718                       32.4
#> 1719                      15.88
#> 1720                      21.03
#> 1721                      33.88
#> 1722                      11.13
#> 1723                      20.28
#> 1724                      28.73
#> 1725                      13.06
#> 1726                      22.83
#> 1727                      33.96
#> 1728                      12.53
#> 1729                         22
#> 1730                       36.1
#> 1731                       17.6
#> 1732                      13.61
#> 1733                      21.73
#> 1734                      33.97
#> 1735                      14.46
#> 1736                      22.97
#> 1737                      35.21
#> 1738                      16.74
#> 1739                      21.18
#> 1740                      38.24
#> 1741                      15.43
#> 1742                      19.87
#> 1743                      34.21
#> 1744                      15.24
#> 1745                      21.78
#> 1746                      27.59
#> 1747                       13.7
#> 1748                      23.89
#> 1749                      29.87
#> 1750                       12.6
#> 1751                      19.77
#> 1752                      36.23
#> 1753                      12.88
#> 1754                      20.84
#> 1755                      36.39
#> 1756                      13.95
#> 1757                      22.74
#> 1758                      32.72
#> 1759                      12.59
#> 1760                      19.43
#> 1761                      34.71
#> 1762                      13.42
#> 1763                      22.92
#> 1764                      32.95
#> 1765                      13.24
#> 1766                      24.06
#> 1767                         33
#> 1768                      18.34
#> 1769                      15.76
#> 1770                      20.61
#> 1771                      38.18
#> 1772                          x
#> 1773                      17.63
#> 1774                      19.89
#> 1775                      45.54
#> 1776                      13.02
#> 1777                      18.46
#> 1778                      40.71
#> 1779                      12.62
#> 1780                       19.1
#> 1781                      34.09
#> 1782                      15.78
#> 1783                      20.13
#> 1784                      32.98
#> 1785                      12.54
#> 1786                      19.06
#> 1787                       37.1
#> 1788                      17.31
#> 1789                      27.66
#> 1790                      44.14
#> 1791                      16.63
#> 1792                      24.38
#> 1793                      35.16
#> 1794                      15.62
#> 1795                      21.45
#> 1796                      33.87
#> 1797                         15
#> 1798                      21.34
#> 1799                      37.63
#> 1800                      14.68
#> 1801                       21.3
#> 1802                      35.33
#> 1803                      15.93
#> 1804                      21.75
#> 1805                      31.78
#> 1806                      16.44
#> 1807                      19.18
#> 1808                      38.86
#> 1809                      16.13
#> 1810                      24.03
#> 1811                      37.15
#> 1812                      13.98
#> 1813                      20.07
#> 1814                      37.79
#> 1815                      13.71
#> 1816                      19.41
#> 1817                      39.56
#> 1818                      18.61
#> 1819                      22.44
#> 1820                      37.34
#> 1821                      17.02
#> 1822                      20.96
#> 1823                      34.95
#> 1824                      19.75
#> 1825                      25.28
#> 1826                      40.57
#> 1827                      17.59
#> 1828                      25.55
#> 1829                      28.93
#> 1830                      12.15
#> 1831                      16.62
#> 1832                      38.41
#> 1833                      17.38
#> 1834                      22.67
#> 1835                      35.08
#> 1836                      15.56
#> 1837                       19.9
#> 1838                      35.76
#> 1839                      12.78
#> 1840                      17.84
#> 1841                      41.23
#> 1842                      20.23
#> 1843                      21.66
#> 1844                      54.65
#> 1845                      18.05
#> 1846                      19.02
#> 1847                      51.64
#> 1848                        9.6
#> 1849                      15.72
#> 1850                      28.82
#> 1851                      15.79
#> 1852                      20.32
#> 1853                      38.03
#> 1854                      12.54
#> 1855                      14.69
#> 1856                      37.82
#> 1857                      20.63
#> 1858                      19.08
#> 1859                      40.92
#> 1860                      15.46
#> 1861                      23.52
#> 1862                      44.58
#> 1863                      14.89
#> 1864                       20.1
#> 1865                      45.09
#> 1866                      20.27
#> 1867                       23.8
#> 1868                      35.38
#> 1869                      18.03
#> 1870                      13.76
#> 1871                      22.41
#> 1872                      36.52
#> 1873                      15.94
#> 1874                      21.67
#> 1875                       33.5
#> 1876                      11.19
#> 1877                      20.17
#> 1878                          x
#> 1879                      12.34
#> 1880                      21.28
#> 1881                      30.68
#> 1882                      17.52
#> 1883                      23.24
#> 1884                      45.43
#> 1885                      17.51
#> 1886                       20.8
#> 1887                      39.14
#> 1888                      13.27
#> 1889                      21.07
#> 1890                      32.67
#> 1891                      10.95
#> 1892                      17.29
#> 1893                      31.57
#> 1894                      13.89
#> 1895                      22.59
#> 1896                      36.86
#> 1897                      15.25
#> 1898                      29.12
#> 1899                      32.62
#> 1900                      13.44
#> 1901                      25.23
#> 1902                      55.34
#> 1903                      17.16
#> 1904                      27.01
#> 1905                      37.25
#> 1906                      17.14
#> 1907                      28.82
#> 1908                      34.08
#> 1909                      12.89
#> 1910                      20.34
#> 1911                      36.15
#> 1912                      15.97
#> 1913                      25.57
#> 1914                      38.17
#> 1915                      10.85
#> 1916                      21.72
#> 1917                      33.92
#> 1918                      16.06
#> 1919                      23.51
#> 1920                      39.88
#> 1921                      13.41
#> 1922                      23.51
#> 1923                      32.25
#> 1924                      11.79
#> 1925                      18.66
#> 1926                      32.77
#> 1927                      13.07
#> 1928                      22.96
#> 1929                      35.36
#> 1930                      18.78
#> 1931                      13.16
#> 1932                      24.71
#> 1933                      36.14
#> 1934                      10.91
#> 1935                      21.33
#> 1936                      37.43
#> 1937                      16.57
#> 1938                      31.48
#> 1939                      44.45
#> 1940                      12.28
#> 1941                      23.55
#> 1942                      30.82
#> 1943                      12.97
#> 1944                      23.03
#> 1945                      31.85
#> 1946                      14.01
#> 1947                      27.88
#> 1948                      33.11
#> 1949                      14.75
#> 1950                      23.43
#> 1951                      38.69
#> 1952                      12.64
#> 1953                      25.64
#> 1954                      37.92
#> 1955                      13.64
#> 1956                      25.87
#> 1957                      36.74
#> 1958                          x
#> 1959                      11.57
#> 1960                      22.44
#> 1961                      32.83
#> 1962                      12.19
#> 1963                      22.62
#> 1964                      37.71
#> 1965                      13.77
#> 1966                      23.86
#> 1967                      31.78
#> 1968                      14.39
#> 1969                      25.04
#> 1970                      42.67
#> 1971                      12.25
#> 1972                       26.3
#> 1973                      34.12
#> 1974                      12.44
#> 1975                      21.88
#> 1976                      32.22
#> 1977                      18.38
#> 1978                      14.15
#> 1979                      22.86
#> 1980                       35.8
#> 1981                      18.86
#> 1982                       13.6
#> 1983                      24.69
#> 1984                      32.19
#> 1985                      14.98
#> 1986                      25.09
#> 1987                      29.56
#> 1988                      15.55
#> 1989                      28.65
#> 1990                      30.71
#> 1991                      13.36
#> 1992                      23.83
#> 1993                      37.96
#> 1994                      12.73
#> 1995                      26.21
#> 1996                      30.13
#> 1997                      14.85
#> 1998                      24.85
#> 1999                      22.86
#> 2000                      14.16
#> 2001                      24.71
#> 2002                      32.48
#> 2003                      11.54
#> 2004                      21.89
#> 2005                       37.2
#> 2006                      14.98
#> 2007                      25.43
#> 2008                       38.2
#> 2009                      12.04
#> 2010                       20.9
#> 2011                      29.41
#> 2012                      14.32
#> 2013                      26.64
#> 2014                      23.47
#> 2015                      13.87
#> 2016                      26.68
#> 2017                      34.26
#> 2018                      11.21
#> 2019                      23.84
#> 2020                      26.98
#> 2021                      18.23
#> 2022                      13.84
#> 2023                      23.28
#> 2024                      35.13
#> 2025                       15.2
#> 2026                      27.09
#> 2027                      30.65
#> 2028                       9.86
#> 2029                      20.56
#> 2030                      39.86
#> 2031                      14.58
#> 2032                      23.42
#> 2033                      36.67
#> 2034                      17.83
#> 2035                      30.66
#> 2036                      31.39
#> 2037                      10.35
#> 2038                      21.07
#> 2039                      33.49
#> 2040                       12.4
#> 2041                      24.01
#> 2042                      31.23
#> 2043                       11.7
#> 2044                      23.27
#> 2045                      24.82
#> 2046                      10.14
#> 2047                      21.62
#> 2048                      32.58
#> 2049                       14.6
#> 2050                      22.89
#> 2051                      35.21
#> 2052                      12.72
#> 2053                      23.64
#> 2054                      39.85
#> 2055                      16.47
#> 2056                      21.43
#> 2057                      42.77
#> 2058                      15.46
#> 2059                      22.07
#> 2060                      40.96
#> 2061                      14.68
#> 2062                      26.35
#> 2063                      46.75
#> 2064                      16.29
#> 2065                      26.09
#> 2066                      35.73
#> 2067                      12.08
#> 2068                      23.05
#> 2069                       35.7
#> 2070                       12.8
#> 2071                      24.41
#> 2072                      31.25
#> 2073                      10.58
#> 2074                      14.82
#> 2075                      29.03
#> 2076                       12.9
#> 2077                      22.05
#> 2078                      31.44
#> 2079                      19.81
#> 2080                      31.64
#> 2081                      37.33
#> 2082                      15.78
#> 2083                      25.42
#> 2084                      37.41
#> 2085                      13.11
#> 2086                      23.99
#> 2087                      32.58
#> 2088                      13.96
#> 2089                      27.25
#> 2090                      33.21
#> 2091                      15.65
#> 2092                      24.62
#> 2093                      35.87
#> 2094                      13.39
#> 2095                      22.75
#> 2096                      30.38
#> 2097                      19.07
#> 2098                      14.32
#> 2099                      24.65
#> 2100                      34.09
#> 2101                      15.77
#> 2102                      25.28
#> 2103                      36.46
#> 2104                      11.53
#> 2105                      22.51
#> 2106                       25.6
#> 2107                      13.34
#> 2108                      27.25
#> 2109                      20.83
#> 2110                      13.14
#> 2111                      24.81
#> 2112                      29.17
#> 2113                      12.14
#> 2114                      23.57
#> 2115                      24.68
#> 2116                      11.16
#> 2117                      23.14
#> 2118                      36.77
#> 2119                      12.63
#> 2120                      25.09
#> 2121                      36.23
#> 2122                      14.01
#> 2123                       23.5
#> 2124                      29.72
#> 2125                      14.57
#> 2126                       25.2
#> 2127                       36.4
#> 2128                      15.66
#> 2129                      25.18
#> 2130                       35.6
#> 2131                       17.5
#> 2132                      30.43
#> 2133                      35.48
#> 2134                      13.49
#> 2135                      22.24
#> 2136                      25.82
#> 2137                      14.26
#> 2138                      21.46
#> 2139                      33.17
#> 2140                      14.98
#> 2141                      23.39
#> 2142                       36.2
#> 2143                      14.36
#> 2144                      25.47
#> 2145                       38.1
#> 2146                      17.81
#> 2147                       13.4
#> 2148                      22.52
#> 2149                      35.84
#> 2150                      16.05
#> 2151                      24.02
#> 2152                       38.6
#> 2153                      18.51
#> 2154                      23.13
#> 2155                      51.86
#> 2156                          9
#> 2157                      18.48
#> 2158                      17.89
#> 2159                      25.49
#> 2160                       36.6
#> 2161                       13.6
#> 2162                      22.95
#> 2163                      35.77
#> 2164                      12.58
#> 2165                      21.58
#> 2166                      34.51
#> 2167                      11.34
#> 2168                      21.14
#> 2169                      30.02
#> 2170                      11.41
#> 2171                       21.6
#> 2172                      28.01
#> 2173                      12.81
#> 2174                      23.41
#> 2175                      36.68
#> 2176                      12.47
#> 2177                      22.26
#> 2178                      31.04
#> 2179                      19.05
#> 2180                      14.94
#> 2181                      23.19
#> 2182                      37.32
#> 2183                       11.4
#> 2184                      21.72
#> 2185                      36.99
#> 2186                      13.49
#> 2187                      21.13
#> 2188                      31.35
#> 2189                      15.17
#> 2190                      26.78
#> 2191                      40.49
#> 2192                      12.38
#> 2193                      23.55
#> 2194                      42.04
#> 2195                      17.86
#> 2196                      23.85
#> 2197                      45.72
#> 2198                      16.59
#> 2199                      25.02
#> 2200                      33.99
#> 2201                      15.33
#> 2202                      24.79
#> 2203                      31.78
#> 2204                      16.76
#> 2205                      24.14
#> 2206                      36.77
#> 2207                      13.18
#> 2208                      22.54
#> 2209                      42.99
#> 2210                      17.25
#> 2211                      26.95
#> 2212                      32.92
#> 2213                      16.26
#> 2214                      21.11
#> 2215                      33.66
#> 2216                       11.4
#> 2217                      20.39
#> 2218                      28.81
#> 2219                      13.33
#> 2220                      22.78
#> 2221                      34.03
#> 2222                      12.66
#> 2223                      22.04
#> 2224                      36.16
#> 2225                       17.6
#> 2226                      13.62
#> 2227                      21.75
#> 2228                      33.97
#> 2229                      14.51
#> 2230                      22.97
#> 2231                      35.37
#> 2232                      16.74
#> 2233                      21.17
#> 2234                       38.1
#> 2235                      15.47
#> 2236                      19.87
#> 2237                      34.21
#> 2238                      15.29
#> 2239                      21.73
#> 2240                      27.59
#> 2241                      13.69
#> 2242                       23.9
#> 2243                      30.05
#> 2244                      12.59
#> 2245                      19.79
#> 2246                      36.23
#> 2247                      12.89
#> 2248                      20.85
#> 2249                      36.45
#> 2250                      13.95
#> 2251                      22.87
#> 2252                      32.75
#> 2253                      12.59
#> 2254                      19.42
#> 2255                      34.61
#> 2256                      13.42
#> 2257                      22.92
#> 2258                      32.95
#> 2259                      13.23
#> 2260                      24.04
#> 2261                         33
#> 2262                      18.38
#> 2263                      15.75
#> 2264                      20.71
#> 2265                      38.18
#> 2266                          x
#> 2267                      17.63
#> 2268                      19.93
#> 2269                      45.54
#> 2270                      12.97
#> 2271                       18.6
#> 2272                      40.71
#> 2273                       12.6
#> 2274                      19.11
#> 2275                      34.09
#> 2276                      15.74
#> 2277                      20.11
#> 2278                      32.98
#> 2279                      12.56
#> 2280                      19.07
#> 2281                       37.1
#> 2282                      17.31
#> 2283                      28.69
#> 2284                      44.14
#> 2285                      16.64
#> 2286                      24.41
#> 2287                      35.16
#> 2288                       15.6
#> 2289                      21.47
#> 2290                      33.87
#> 2291                      14.99
#> 2292                      21.33
#> 2293                      37.57
#> 2294                      14.67
#> 2295                      21.32
#> 2296                      35.33
#> 2297                      15.94
#> 2298                      21.68
#> 2299                      31.78
#> 2300                      16.37
#> 2301                      19.18
#> 2302                      38.86
#> 2303                      16.13
#> 2304                      24.42
#> 2305                      37.15
#> 2306                      13.99
#> 2307                       20.1
#> 2308                      37.79
#> 2309                      13.71
#> 2310                      19.42
#> 2311                      39.56
#> 2312                      18.62
#> 2313                      23.23
#> 2314                      37.34
#> 2315                      17.02
#> 2316                      20.97
#> 2317                      34.95
#> 2318                      19.73
#> 2319                      25.28
#> 2320                      40.57
#> 2321                      17.57
#> 2322                      25.55
#> 2323                      28.93
#> 2324                      12.07
#> 2325                      16.64
#> 2326                      38.41
#> 2327                      17.38
#> 2328                      22.68
#> 2329                      35.14
#> 2330                      15.56
#> 2331                      19.91
#> 2332                      35.76
#> 2333                      12.78
#> 2334                      17.88
#> 2335                      41.23
#> 2336                      20.19
#> 2337                      21.69
#> 2338                      54.65
#> 2339                      18.07
#> 2340                      19.02
#> 2341                      51.64
#> 2342                        9.6
#> 2343                      15.95
#> 2344                      29.11
#> 2345                       15.9
#> 2346                      20.33
#> 2347                      38.03
#> 2348                      12.54
#> 2349                       14.7
#> 2350                      37.82
#> 2351                      20.59
#> 2352                      19.13
#> 2353                      40.92
#> 2354                      15.46
#> 2355                      23.81
#> 2356                      44.58
#> 2357                      14.86
#> 2358                       20.2
#> 2359                      45.09
#> 2360                      20.25
#> 2361                       23.8
#> 2362                      35.38
#> 2363                      18.03
#> 2364                      13.76
#> 2365                      22.42
#> 2366                      36.62
#> 2367                         16
#> 2368                       21.7
#> 2369                       33.5
#> 2370                      10.66
#> 2371                      20.16
#> 2372                          x
#> 2373                      12.35
#> 2374                      21.32
#> 2375                      35.77
#> 2376                      17.52
#> 2377                      23.32
#> 2378                      45.43
#> 2379                      17.48
#> 2380                      20.75
#> 2381                      39.14
#> 2382                      13.27
#> 2383                      21.07
#> 2384                      32.67
#> 2385                         11
#> 2386                      17.33
#> 2387                      31.57
#> 2388                      13.87
#> 2389                      22.68
#> 2390                      36.86
#> 2391                      15.25
#> 2392                      29.34
#> 2393                      32.62
#> 2394                      13.42
#> 2395                      25.24
#> 2396                      55.34
#> 2397                      17.16
#> 2398                      27.01
#> 2399                      37.25
#> 2400                      17.13
#> 2401                      28.84
#> 2402                      34.08
#> 2403                       12.9
#> 2404                      20.28
#> 2405                      36.15
#> 2406                         16
#> 2407                      25.57
#> 2408                      38.17
#> 2409                      10.86
#> 2410                      21.73
#> 2411                      33.89
#> 2412                      16.06
#> 2413                      23.51
#> 2414                      39.89
#> 2415                       13.4
#> 2416                      23.53
#> 2417                      32.25
#> 2418                      11.78
#> 2419                      18.65
#> 2420                      32.77
#> 2421                      13.07
#> 2422                      22.96
#> 2423                      35.36
#> 2424                      18.78
#> 2425                      13.17
#> 2426                      24.71
#> 2427                      36.19
#> 2428                      10.84
#> 2429                      21.69
#> 2430                      37.43
#> 2431                      16.57
#> 2432                      31.48
#> 2433                      44.37
#> 2434                       12.3
#> 2435                      23.63
#> 2436                      30.82
#> 2437                      12.99
#> 2438                      23.03
#> 2439                      31.85
#> 2440                      14.01
#> 2441                      27.92
#> 2442                      33.11
#> 2443                      14.78
#> 2444                      23.43
#> 2445                      38.69
#> 2446                      12.66
#> 2447                      25.65
#> 2448                       37.8
#> 2449                      13.64
#> 2450                      25.69
#> 2451                      36.74
#> 2452                          x
#> 2453                      11.56
#> 2454                      22.46
#> 2455                      32.83
#> 2456                      12.19
#> 2457                      22.62
#> 2458                      37.71
#> 2459                      13.81
#> 2460                       23.9
#> 2461                      31.78
#> 2462                       14.4
#> 2463                      25.04
#> 2464                      42.67
#> 2465                      12.19
#> 2466                      26.29
#> 2467                      34.18
#> 2468                      12.59
#> 2469                      21.74
#> 2470                      32.71
#> 2471                      18.15
#> 2472                      14.06
#> 2473                      22.45
#> 2474                      35.51
#> 2475                      18.95
#> 2476                      13.78
#> 2477                      24.64
#> 2478                      32.42
#> 2479                      14.83
#> 2480                      24.76
#> 2481                      31.02
#> 2482                      15.78
#> 2483                      28.21
#> 2484                      31.77
#> 2485                      13.96
#> 2486                      23.96
#> 2487                      39.26
#> 2488                      12.89
#> 2489                      25.86
#> 2490                      30.18
#> 2491                      15.06
#> 2492                      24.83
#> 2493                      21.82
#> 2494                      14.46
#> 2495                      24.81
#> 2496                      32.63
#> 2497                      11.83
#> 2498                      21.97
#> 2499                      37.84
#> 2500                      14.82
#> 2501                      25.16
#> 2502                      37.88
#> 2503                      12.11
#> 2504                      20.88
#> 2505                      29.13
#> 2506                      14.65
#> 2507                      26.68
#> 2508                      23.64
#> 2509                      14.27
#> 2510                      26.77
#> 2511                      34.68
#> 2512                      10.96
#> 2513                      23.79
#> 2514                      26.82
#> 2515                      17.98
#> 2516                      13.74
#> 2517                      22.83
#> 2518                      34.85
#> 2519                      15.49
#> 2520                      26.88
#> 2521                      31.18
#> 2522                       10.3
#> 2523                      20.52
#> 2524                      42.08
#> 2525                      13.81
#> 2526                      22.28
#> 2527                      35.48
#> 2528                      17.98
#> 2529                      30.42
#> 2530                       32.2
#> 2531                      10.57
#> 2532                      21.02
#> 2533                      33.18
#> 2534                      12.42
#> 2535                      23.93
#> 2536                      31.71
#> 2537                      11.92
#> 2538                      23.05
#> 2539                      25.29
#> 2540                      10.28
#> 2541                      21.45
#> 2542                      33.33
#> 2543                      14.32
#> 2544                      22.07
#> 2545                       34.5
#> 2546                       12.3
#> 2547                      22.48
#> 2548                      37.95
#> 2549                      15.78
#> 2550                      20.54
#> 2551                      41.35
#> 2552                      14.79
#> 2553                      21.22
#> 2554                      40.16
#> 2555                      14.38
#> 2556                      24.88
#> 2557                      45.38
#> 2558                      16.04
#> 2559                      25.75
#> 2560                      35.66
#> 2561                      11.86
#> 2562                      22.94
#> 2563                      35.35
#> 2564                      12.67
#> 2565                      23.93
#> 2566                      31.25
#> 2567                      10.34
#> 2568                      14.51
#> 2569                       29.1
#> 2570                      13.04
#> 2571                      21.94
#> 2572                      31.33
#> 2573                      19.97
#> 2574                      31.78
#> 2575                      37.44
#> 2576                      15.62
#> 2577                      25.12
#> 2578                      36.79
#> 2579                      13.54
#> 2580                      23.75
#> 2581                      32.88
#> 2582                      14.52
#> 2583                      26.98
#> 2584                      33.21
#> 2585                      15.88
#> 2586                      24.76
#> 2587                      36.07
#> 2588                      13.28
#> 2589                      22.17
#> 2590                      30.17
#> 2591                      18.75
#> 2592                      14.15
#> 2593                      24.13
#> 2594                      33.95
#> 2595                      15.75
#> 2596                      25.23
#> 2597                      36.42
#> 2598                      11.72
#> 2599                      22.51
#> 2600                      27.68
#> 2601                      13.69
#> 2602                      27.24
#> 2603                      22.44
#> 2604                      13.46
#> 2605                      24.55
#> 2606                      28.57
#> 2607                       11.9
#> 2608                      23.74
#> 2609                      25.32
#> 2610                      11.41
#> 2611                      23.01
#> 2612                      36.83
#> 2613                      13.01
#> 2614                      25.19
#> 2615                      36.17
#> 2616                      14.45
#> 2617                      23.54
#> 2618                      29.97
#> 2619                      14.68
#> 2620                      25.09
#> 2621                      37.47
#> 2622                      15.69
#> 2623                      24.88
#> 2624                      35.01
#> 2625                      16.42
#> 2626                      28.62
#> 2627                      34.22
#> 2628                      13.24
#> 2629                      21.44
#> 2630                      26.25
#> 2631                      13.23
#> 2632                      20.03
#> 2633                      31.02
#> 2634                      14.63
#> 2635                      22.79
#> 2636                      36.04
#> 2637                      14.43
#> 2638                      25.11
#> 2639                      38.45
#> 2640                       17.7
#> 2641                      13.44
#> 2642                      22.23
#> 2643                      35.51
#> 2644                      15.75
#> 2645                      23.33
#> 2646                      37.34
#> 2647                      18.02
#> 2648                      22.59
#> 2649                      50.96
#> 2650                        9.4
#> 2651                       18.4
#> 2652                      17.53
#> 2653                      24.32
#> 2654                      36.65
#> 2655                      13.74
#> 2656                      22.83
#> 2657                      34.58
#> 2658                      12.52
#> 2659                      21.43
#> 2660                      34.91
#> 2661                      11.53
#> 2662                      21.16
#> 2663                       30.1
#> 2664                      11.65
#> 2665                      21.52
#> 2666                      28.04
#> 2667                      13.01
#> 2668                      23.08
#> 2669                      36.33
#> 2670                      12.64
#> 2671                         22
#> 2672                      31.46
#> 2673                      18.74
#> 2674                      14.78
#> 2675                       22.7
#> 2676                      36.78
#> 2677                      11.59
#> 2678                      21.54
#> 2679                      37.46
#> 2680                      13.53
#> 2681                       20.7
#> 2682                      30.95
#> 2683                      14.77
#> 2684                      26.23
#> 2685                      39.93
#> 2686                      12.72
#> 2687                      23.39
#> 2688                      42.41
#> 2689                      17.03
#> 2690                      22.46
#> 2691                      44.42
#> 2692                      16.47
#> 2693                      24.64
#> 2694                       34.2
#> 2695                      15.21
#> 2696                       24.3
#> 2697                      30.89
#> 2698                      16.63
#> 2699                      23.45
#> 2700                      36.27
#> 2701                       13.1
#> 2702                      22.27
#> 2703                      41.91
#> 2704                      17.07
#> 2705                      26.42
#> 2706                      31.43
#> 2707                      16.32
#> 2708                      20.74
#> 2709                      33.95
#> 2710                      11.57
#> 2711                      20.53
#> 2712                      29.26
#> 2713                      13.49
#> 2714                      22.68
#> 2715                      33.72
#> 2716                      12.86
#> 2717                      21.98
#> 2718                      35.84
#> 2719                      17.46
#> 2720                      13.61
#> 2721                      21.47
#> 2722                       33.5
#> 2723                      14.19
#> 2724                       22.3
#> 2725                      33.69
#> 2726                      15.56
#> 2727                      19.39
#> 2728                      34.77
#> 2729                      15.36
#> 2730                      19.58
#> 2731                      33.28
#> 2732                      15.28
#> 2733                      21.31
#> 2734                      27.59
#> 2735                      13.61
#> 2736                      23.44
#> 2737                      28.86
#> 2738                      12.75
#> 2739                      19.63
#> 2740                      34.79
#> 2741                      12.94
#> 2742                      20.66
#> 2743                       36.2
#> 2744                      14.03
#> 2745                       22.7
#> 2746                      32.24
#> 2747                      12.56
#> 2748                       19.2
#> 2749                       34.9
#> 2750                       13.6
#> 2751                       22.8
#> 2752                      33.09
#> 2753                      13.41
#> 2754                      23.95
#> 2755                      32.89
#> 2756                      17.83
#> 2757                      15.39
#> 2758                      19.94
#> 2759                      37.57
#> 2760                          x
#> 2761                      17.03
#> 2762                      19.47
#> 2763                      43.84
#> 2764                       12.8
#> 2765                      18.02
#> 2766                      39.42
#> 2767                       12.7
#> 2768                      19.24
#> 2769                      34.06
#> 2770                      15.25
#> 2771                      18.79
#> 2772                      31.02
#> 2773                       12.7
#> 2774                      18.95
#> 2775                      36.98
#> 2776                       16.4
#> 2777                      26.85
#> 2778                      43.79
#> 2779                      16.33
#> 2780                      23.96
#> 2781                      35.14
#> 2782                      14.89
#> 2783                      20.55
#> 2784                      34.79
#> 2785                      14.92
#> 2786                      21.21
#> 2787                      37.22
#> 2788                      14.54
#> 2789                      20.73
#> 2790                      35.14
#> 2791                      15.64
#> 2792                      20.77
#> 2793                      30.84
#> 2794                      15.72
#> 2795                      18.18
#> 2796                      37.65
#> 2797                       15.9
#> 2798                      23.09
#> 2799                       36.4
#> 2800                      13.74
#> 2801                      18.54
#> 2802                      38.25
#> 2803                      13.54
#> 2804                      19.32
#> 2805                      38.94
#> 2806                      18.13
#> 2807                      22.57
#> 2808                      36.06
#> 2809                       16.5
#> 2810                       19.9
#> 2811                      34.38
#> 2812                      19.05
#> 2813                      24.15
#> 2814                      40.37
#> 2815                      16.86
#> 2816                      23.82
#> 2817                      28.43
#> 2818                      12.05
#> 2819                      16.11
#> 2820                      37.53
#> 2821                      17.27
#> 2822                      21.88
#> 2823                      34.27
#> 2824                      15.53
#> 2825                      19.68
#> 2826                      35.71
#> 2827                      12.74
#> 2828                      17.31
#> 2829                      39.92
#> 2830                      19.22
#> 2831                      20.68
#> 2832                      53.31
#> 2833                      16.77
#> 2834                      17.26
#> 2835                      51.34
#> 2836                       9.76
#> 2837                      15.77
#> 2838                      29.97
#> 2839                      15.62
#> 2840                      19.84
#> 2841                      36.98
#> 2842                      12.44
#> 2843                      14.63
#> 2844                      37.48
#> 2845                      20.64
#> 2846                      18.86
#> 2847                      41.47
#> 2848                      14.85
#> 2849                      22.28
#> 2850                      44.28
#> 2851                       14.4
#> 2852                      19.09
#> 2853                      42.43
#> 2854                      19.01
#> 2855                      21.74
#> 2856                      33.21
#> 2857                      17.89
#> 2858                      13.74
#> 2859                      22.14
#> 2860                      36.48
#> 2861                      16.11
#> 2862                      21.48
#> 2863                       32.9
#> 2864                      10.69
#> 2865                      20.12
#> 2866                          x
#> 2867                      12.53
#> 2868                      21.13
#> 2869                       35.4
#> 2870                      17.08
#> 2871                      22.55
#> 2872                      45.71
#> 2873                      16.55
#> 2874                      19.18
#> 2875                      39.76
#> 2876                      13.14
#> 2877                       20.8
#> 2878                      32.57
#> 2879                      10.62
#> 2880                      17.08
#> 2881                      30.82
#> 2882                      13.68
#> 2883                      22.18
#> 2884                      37.56
#> 2885                      15.06
#> 2886                      29.16
#> 2887                      31.55
#> 2888                      13.51
#> 2889                      25.28
#> 2890                      54.71
#> 2891                       16.7
#> 2892                      26.67
#> 2893                         38
#> 2894                      17.29
#> 2895                      28.78
#> 2896                      33.71
#> 2897                      12.61
#> 2898                      19.53
#> 2899                      35.57
#> 2900                      15.93
#> 2901                      25.63
#> 2902                      38.56
#> 2903                      10.97
#> 2904                      21.77
#> 2905                      33.75
#> 2906                       16.2
#> 2907                      23.31
#> 2908                      39.65
#> 2909                      13.33
#> 2910                      22.83
#> 2911                      32.48
#> 2912                      11.86
#> 2913                       18.4
#> 2914                      32.48
#> 2915                      13.22
#> 2916                       22.8
#> 2917                      35.25
#> 2918                      18.72
#> 2919                      13.21
#> 2920                      24.54
#> 2921                      36.12
#> 2922                      11.08
#> 2923                      21.76
#> 2924                      37.43
#> 2925                      16.23
#> 2926                       30.6
#> 2927                      43.63
#> 2928                       12.2
#> 2929                      23.53
#> 2930                      30.14
#> 2931                      12.91
#> 2932                      22.62
#> 2933                      32.28
#> 2934                      14.08
#> 2935                      27.54
#> 2936                      33.88
#> 2937                      14.95
#> 2938                      23.49
#> 2939                      37.77
#> 2940                      12.72
#> 2941                      25.64
#> 2942                      37.96
#> 2943                      13.76
#> 2944                      25.61
#> 2945                      35.83
#> 2946                          x
#> 2947                      11.61
#> 2948                       22.4
#> 2949                      32.77
#> 2950                      12.34
#> 2951                      22.38
#> 2952                      37.51
#> 2953                      13.76
#> 2954                      23.73
#> 2955                      31.39
#> 2956                      14.37
#> 2957                      24.85
#> 2958                       42.8
#> 2959                      12.21
#> 2960                      26.17
#> 2961                      34.23
#> 2962                      12.81
#> 2963                      21.74
#> 2964                      33.07
#> 2965                      18.39
#> 2966                      14.41
#> 2967                      22.56
#> 2968                      35.64
#> 2969                      19.18
#> 2970                      14.13
#> 2971                      24.72
#> 2972                      32.77
#> 2973                       15.2
#> 2974                      24.98
#> 2975                      32.12
#> 2976                       16.2
#> 2977                      28.48
#> 2978                      32.22
#> 2979                      14.27
#> 2980                      24.23
#> 2981                      38.48
#> 2982                      13.39
#> 2983                      25.99
#> 2984                      29.78
#> 2985                      15.45
#> 2986                      25.23
#> 2987                       22.4
#> 2988                      14.74
#> 2989                      25.06
#> 2990                      34.03
#> 2991                       12.4
#> 2992                      22.03
#> 2993                      37.33
#> 2994                      15.03
#> 2995                      24.74
#> 2996                      38.21
#> 2997                      12.45
#> 2998                      21.03
#> 2999                      29.39
#> 3000                      14.92
#> 3001                      26.67
#> 3002                      23.59
#> 3003                      14.64
#> 3004                      26.85
#> 3005                      35.11
#> 3006                       11.1
#> 3007                      23.69
#> 3008                      27.49
#> 3009                      18.28
#> 3010                      14.13
#> 3011                         23
#> 3012                      35.06
#> 3013                      15.59
#> 3014                      26.93
#> 3015                      32.18
#> 3016                      10.65
#> 3017                      20.68
#> 3018                      40.95
#> 3019                      14.17
#> 3020                      22.14
#> 3021                      35.08
#> 3022                      18.44
#> 3023                      30.35
#> 3024                       31.5
#> 3025                      10.99
#> 3026                      21.27
#> 3027                      33.38
#> 3028                      12.86
#> 3029                      23.98
#> 3030                       32.6
#> 3031                      12.37
#> 3032                      22.94
#> 3033                      25.29
#> 3034                      10.82
#> 3035                      21.82
#> 3036                      36.74
#> 3037                      14.74
#> 3038                      22.01
#> 3039                      34.69
#> 3040                      12.74
#> 3041                      22.86
#> 3042                      38.21
#> 3043                      16.18
#> 3044                      20.73
#> 3045                      41.79
#> 3046                      15.27
#> 3047                      21.64
#> 3048                      40.27
#> 3049                      14.66
#> 3050                      25.28
#> 3051                      46.22
#> 3052                      16.47
#> 3053                      25.83
#> 3054                      36.02
#> 3055                      12.21
#> 3056                      22.44
#> 3057                      36.32
#> 3058                      13.17
#> 3059                      24.02
#> 3060                      31.04
#> 3061                      10.76
#> 3062                      14.59
#> 3063                      28.21
#> 3064                      13.32
#> 3065                      21.91
#> 3066                      32.12
#> 3067                      20.45
#> 3068                      32.35
#> 3069                      37.27
#> 3070                      16.09
#> 3071                      25.27
#> 3072                       37.3
#> 3073                      13.51
#> 3074                      23.99
#> 3075                       32.2
#> 3076                      14.87
#> 3077                      27.18
#> 3078                      32.87
#> 3079                      16.16
#> 3080                      25.22
#> 3081                      36.23
#> 3082                      13.76
#> 3083                      22.57
#> 3084                      30.24
#> 3085                      18.99
#> 3086                      14.52
#> 3087                      24.21
#> 3088                      33.97
#> 3089                      16.06
#> 3090                      25.36
#> 3091                      36.34
#> 3092                       12.1
#> 3093                      22.71
#> 3094                      26.79
#> 3095                      13.84
#> 3096                      27.18
#> 3097                      20.51
#> 3098                      13.81
#> 3099                      24.81
#> 3100                      27.08
#> 3101                      12.15
#> 3102                      23.77
#> 3103                       26.3
#> 3104                      11.72
#> 3105                      23.11
#> 3106                      36.86
#> 3107                      13.56
#> 3108                      25.25
#> 3109                      35.04
#> 3110                      14.85
#> 3111                      23.67
#> 3112                      30.61
#> 3113                      15.17
#> 3114                      25.11
#> 3115                      38.71
#> 3116                      15.96
#> 3117                      24.75
#> 3118                      35.65
#> 3119                      16.74
#> 3120                      28.72
#> 3121                      34.78
#> 3122                      13.62
#> 3123                      21.24
#> 3124                      25.48
#> 3125                      13.71
#> 3126                      20.15
#> 3127                      30.93
#> 3128                      14.97
#> 3129                      22.93
#> 3130                      35.27
#> 3131                      15.03
#> 3132                       25.3
#> 3133                       38.1
#> 3134                      18.01
#> 3135                      13.84
#> 3136                      22.44
#> 3137                       35.8
#> 3138                      16.25
#> 3139                      23.54
#> 3140                       38.1
#> 3141                      18.36
#> 3142                      22.68
#> 3143                      51.23
#> 3144                       9.92
#> 3145                      18.67
#> 3146                      18.04
#> 3147                      24.62
#> 3148                      36.76
#> 3149                      14.16
#> 3150                      22.91
#> 3151                      35.43
#> 3152                      12.81
#> 3153                      21.56
#> 3154                      34.91
#> 3155                      11.92
#> 3156                      21.53
#> 3157                      29.61
#> 3158                      12.06
#> 3159                      21.77
#> 3160                      28.76
#> 3161                      13.31
#> 3162                      23.35
#> 3163                       36.4
#> 3164                      13.13
#> 3165                      22.11
#> 3166                      31.92
#> 3167                      18.97
#> 3168                      15.16
#> 3169                      22.78
#> 3170                      36.62
#> 3171                      12.12
#> 3172                      21.66
#> 3173                      37.57
#> 3174                       13.7
#> 3175                      20.61
#> 3176                      31.94
#> 3177                      15.37
#> 3178                       26.5
#> 3179                       40.8
#> 3180                      13.24
#> 3181                      23.27
#> 3182                      41.98
#> 3183                      17.42
#> 3184                      22.47
#> 3185                      44.34
#> 3186                      16.71
#> 3187                      24.43
#> 3188                       34.2
#> 3189                      15.45
#> 3190                       24.4
#> 3191                      31.29
#> 3192                      17.18
#> 3193                      23.68
#> 3194                      36.19
#> 3195                      13.42
#> 3196                      22.47
#> 3197                      41.89
#> 3198                      17.45
#> 3199                      26.24
#> 3200                       32.4
#> 3201                      16.77
#> 3202                      21.05
#> 3203                      27.75
#> 3204                      11.97
#> 3205                      20.71
#> 3206                      29.34
#> 3207                       13.9
#> 3208                      22.75
#> 3209                      34.21
#> 3210                      13.13
#> 3211                      22.09
#> 3212                       35.9
#> 3213                      17.67
#> 3214                       13.9
#> 3215                      21.57
#> 3216                      33.91
#> 3217                      14.55
#> 3218                      22.55
#> 3219                      33.69
#> 3220                      15.74
#> 3221                      19.42
#> 3222                      36.54
#> 3223                      15.68
#> 3224                      19.49
#> 3225                      33.77
#> 3226                      15.55
#> 3227                      21.53
#> 3228                      27.59
#> 3229                      13.91
#> 3230                      23.46
#> 3231                      29.19
#> 3232                      13.08
#> 3233                      19.88
#> 3234                      39.64
#> 3235                      13.16
#> 3236                      20.78
#> 3237                      36.29
#> 3238                      14.41
#> 3239                      22.73
#> 3240                      32.07
#> 3241                      12.74
#> 3242                      19.32
#> 3243                      34.72
#> 3244                      13.93
#> 3245                      22.97
#> 3246                      33.99
#> 3247                      13.74
#> 3248                      23.92
#> 3249                      33.59
#> 3250                      18.06
#> 3251                       15.8
#> 3252                      19.98
#> 3253                      37.37
#> 3254                          x
#> 3255                      17.51
#> 3256                       19.4
#> 3257                      44.59
#> 3258                      13.14
#> 3259                      17.98
#> 3260                       38.9
#> 3261                      13.33
#> 3262                       19.5
#> 3263                      33.37
#> 3264                      15.74
#> 3265                      18.98
#> 3266                      32.11
#> 3267                      13.05
#> 3268                      19.19
#> 3269                      37.48
#> 3270                      16.92
#> 3271                       26.4
#> 3272                      43.79
#> 3273                      16.71
#> 3274                      24.05
#> 3275                      35.83
#> 3276                      15.31
#> 3277                      20.62
#> 3278                      35.63
#> 3279                         15
#> 3280                       21.5
#> 3281                      36.62
#> 3282                      14.78
#> 3283                      20.64
#> 3284                      35.92
#> 3285                      16.01
#> 3286                      20.72
#> 3287                      31.62
#> 3288                      16.23
#> 3289                      18.32
#> 3290                      37.31
#> 3291                      16.25
#> 3292                      22.45
#> 3293                      35.51
#> 3294                      14.32
#> 3295                      19.01
#> 3296                      38.02
#> 3297                      13.87
#> 3298                      19.48
#> 3299                      39.81
#> 3300                      18.75
#> 3301                      22.59
#> 3302                       35.8
#> 3303                      16.99
#> 3304                      20.11
#> 3305                      34.79
#> 3306                      19.16
#> 3307                      23.86
#> 3308                      39.22
#> 3309                      17.31
#> 3310                      23.29
#> 3311                      27.92
#> 3312                      12.38
#> 3313                      16.28
#> 3314                      36.64
#> 3315                      17.73
#> 3316                      21.82
#> 3317                      34.38
#> 3318                      15.92
#> 3319                      19.74
#> 3320                      35.96
#> 3321                      13.16
#> 3322                      17.51
#> 3323                      41.33
#> 3324                      19.73
#> 3325                      20.55
#> 3326                      54.12
#> 3327                      17.37
#> 3328                      17.36
#> 3329                      41.39
#> 3330                      10.23
#> 3331                      15.78
#> 3332                      30.14
#> 3333                      15.89
#> 3334                      19.96
#> 3335                      37.58
#> 3336                       12.9
#> 3337                       14.8
#> 3338                      36.96
#> 3339                      21.09
#> 3340                      19.09
#> 3341                      41.35
#> 3342                      15.05
#> 3343                      22.44
#> 3344                      44.18
#> 3345                      14.95
#> 3346                      18.86
#> 3347                      42.14
#> 3348                      19.29
#> 3349                      21.48
#> 3350                      35.38
#> 3351                      18.12
#> 3352                      14.04
#> 3353                      22.29
#> 3354                      36.79
#> 3355                      16.15
#> 3356                      21.59
#> 3357                      33.27
#> 3358                      11.41
#> 3359                       20.3
#> 3360                          x
#> 3361                      12.69
#> 3362                       21.2
#> 3363                      32.67
#> 3364                      17.72
#> 3365                      22.53
#> 3366                      44.32
#> 3367                      17.18
#> 3368                      19.73
#> 3369                      39.01
#> 3370                      13.63
#> 3371                      20.94
#> 3372                      32.84
#> 3373                      10.89
#> 3374                       17.5
#> 3375                      32.52
#> 3376                      13.91
#> 3377                      22.15
#> 3378                      38.11
#> 3379                      15.39
#> 3380                      29.24
#> 3381                      30.48
#> 3382                      13.86
#> 3383                      25.34
#> 3384                      54.42
#> 3385                      17.07
#> 3386                      26.84
#> 3387                      38.46
#> 3388                      17.46
#> 3389                      29.31
#> 3390                      35.23
#> 3391                      13.05
#> 3392                      19.86
#> 3393                       35.6
#> 3394                      16.11
#> 3395                      25.47
#> 3396                      38.61
#> 3397                      11.26
#> 3398                      21.75
#> 3399                      34.19
#> 3400                      16.55
#> 3401                      23.57
#> 3402                      40.21
#> 3403                      13.53
#> 3404                      23.21
#> 3405                      32.53
#> 3406                      12.19
#> 3407                      18.49
#> 3408                      33.25
#> 3409                      13.37
#> 3410                      22.88
#> 3411                      35.54
#> 3412                       18.9
#> 3413                      13.49
#> 3414                       24.6
#> 3415                      36.16
#> 3416                      11.31
#> 3417                      22.04
#> 3418                      35.05
#> 3419                      16.43
#> 3420                       30.6
#> 3421                      42.49
#> 3422                      12.38
#> 3423                      23.43
#> 3424                      31.05
#> 3425                      13.32
#> 3426                       22.8
#> 3427                      32.45
#> 3428                      14.31
#> 3429                      27.82
#> 3430                      33.74
#> 3431                      15.25
#> 3432                      23.58
#> 3433                      38.92
#> 3434                      13.15
#> 3435                      25.49
#> 3436                      38.42
#> 3437                      14.07
#> 3438                      25.58
#> 3439                      36.04
#> 3440                          x
#> 3441                      11.79
#> 3442                      22.48
#> 3443                      33.27
#> 3444                      12.79
#> 3445                      22.47
#> 3446                      37.79
#> 3447                      14.29
#> 3448                      23.92
#> 3449                      31.52
#> 3450                      14.58
#> 3451                      24.96
#> 3452                      43.19
#> 3453                      12.45
#> 3454                      26.12
#> 3455                      34.11
#> 3456                      13.09
#> 3457                       21.9
#> 3458                       33.6
#> 3459                      18.82
#> 3460                      14.95
#> 3461                      22.84
#> 3462                      36.02
#> 3463                      19.24
#> 3464                      14.24
#> 3465                      24.74
#> 3466                      32.57
#> 3467                       15.3
#> 3468                      24.96
#> 3469                      27.34
#> 3470                      16.33
#> 3471                      28.26
#> 3472                      32.42
#> 3473                      14.61
#> 3474                      24.33
#> 3475                         39
#> 3476                      13.46
#> 3477                      26.38
#> 3478                      29.45
#> 3479                      15.38
#> 3480                      25.32
#> 3481                      22.51
#> 3482                      14.89
#> 3483                      24.98
#> 3484                       33.6
#> 3485                       12.4
#> 3486                      21.96
#> 3487                       36.5
#> 3488                      15.18
#> 3489                      24.92
#> 3490                      38.61
#> 3491                      12.56
#> 3492                      20.95
#> 3493                      29.84
#> 3494                      15.05
#> 3495                      26.58
#> 3496                       22.8
#> 3497                      14.82
#> 3498                      26.96
#> 3499                      35.57
#> 3500                      11.03
#> 3501                      23.64
#> 3502                       27.6
#> 3503                      18.71
#> 3504                       14.7
#> 3505                      23.25
#> 3506                      35.65
#> 3507                      16.06
#> 3508                      27.16
#> 3509                      32.71
#> 3510                       11.3
#> 3511                       20.9
#> 3512                      42.01
#> 3513                      14.49
#> 3514                      22.11
#> 3515                      36.12
#> 3516                      19.06
#> 3517                      30.76
#> 3518                      31.08
#> 3519                       11.3
#> 3520                      21.75
#> 3521                      34.05
#> 3522                      13.33
#> 3523                      24.12
#> 3524                      33.33
#> 3525                       12.8
#> 3526                      23.33
#> 3527                      25.65
#> 3528                      11.47
#> 3529                      22.12
#> 3530                      36.74
#> 3531                      15.19
#> 3532                      22.39
#> 3533                       35.4
#> 3534                      13.24
#> 3535                      23.11
#> 3536                      40.12
#> 3537                      16.74
#> 3538                      20.79
#> 3539                      41.96
#> 3540                      15.83
#> 3541                      21.93
#> 3542                      40.89
#> 3543                      15.37
#> 3544                       25.4
#> 3545                       48.1
#> 3546                      16.87
#> 3547                      26.05
#> 3548                      36.76
#> 3549                       12.7
#> 3550                      22.85
#> 3551                      36.72
#> 3552                      13.77
#> 3553                      24.29
#> 3554                      31.48
#> 3555                      11.36
#> 3556                      15.01
#> 3557                      29.32
#> 3558                      14.04
#> 3559                       21.9
#> 3560                      33.11
#> 3561                      21.14
#> 3562                      32.76
#> 3563                      36.99
#> 3564                      16.66
#> 3565                      25.58
#> 3566                      38.25
#> 3567                       14.5
#> 3568                      24.22
#> 3569                      31.59
#> 3570                      15.71
#> 3571                      27.63
#> 3572                      34.13
#> 3573                      16.84
#> 3574                      25.21
#> 3575                       36.4
#> 3576                      14.29
#> 3577                      22.84
#> 3578                       30.7
#> 3579                      19.41
#> 3580                      15.08
#> 3581                      24.43
#> 3582                      34.66
#> 3583                      16.65
#> 3584                      25.67
#> 3585                      36.93
#> 3586                      12.91
#> 3587                      23.23
#> 3588                      27.38
#> 3589                      14.45
#> 3590                      27.29
#> 3591                      20.51
#> 3592                      14.43
#> 3593                      25.29
#> 3594                      28.96
#> 3595                       12.7
#> 3596                      23.82
#> 3597                       27.6
#> 3598                      12.27
#> 3599                      23.41
#> 3600                      38.07
#> 3601                      14.34
#> 3602                       25.7
#> 3603                       36.1
#> 3604                      15.44
#> 3605                      23.95
#> 3606                      32.23
#> 3607                      15.75
#> 3608                      25.55
#> 3609                      39.54
#> 3610                      16.59
#> 3611                      25.05
#> 3612                      35.95
#> 3613                      17.05
#> 3614                      28.62
#> 3615                      35.14
#> 3616                      14.37
#> 3617                      21.56
#> 3618                      25.29
#> 3619                      14.31
#> 3620                      20.25
#> 3621                      30.95
#> 3622                      15.39
#> 3623                      22.98
#> 3624                      36.02
#> 3625                      15.64
#> 3626                      25.64
#> 3627                      39.05
#> 3628                      18.42
#> 3629                       14.4
#> 3630                      22.66
#> 3631                         36
#> 3632                      16.97
#> 3633                      24.04
#> 3634                      37.77
#> 3635                      18.38
#> 3636                      22.54
#> 3637                      50.79
#> 3638                       9.88
#> 3639                      19.05
#> 3640                       18.7
#> 3641                      25.01
#> 3642                      36.87
#> 3643                      14.75
#> 3644                      23.04
#> 3645                      36.62
#> 3646                      13.36
#> 3647                      21.66
#> 3648                      35.57
#> 3649                      12.53
#> 3650                      21.41
#> 3651                      29.78
#> 3652                      12.76
#> 3653                      22.14
#> 3654                      29.03
#> 3655                      13.85
#> 3656                      23.66
#> 3657                      36.95
#> 3658                      13.74
#> 3659                       22.5
#> 3660                      31.36
#> 3661                      19.47
#> 3662                      15.79
#> 3663                      23.13
#> 3664                      37.15
#> 3665                      12.24
#> 3666                      22.09
#> 3667                      37.61
#> 3668                      14.07
#> 3669                      20.79
#> 3670                      30.65
#> 3671                      15.95
#> 3672                      26.57
#> 3673                      41.94
#> 3674                      13.73
#> 3675                      23.84
#> 3676                      41.51
#> 3677                      18.08
#> 3678                      22.68
#> 3679                      44.51
#> 3680                      17.28
#> 3681                      24.74
#> 3682                      34.75
#> 3683                      16.32
#> 3684                       25.2
#> 3685                      31.18
#> 3686                      17.68
#> 3687                      24.05
#> 3688                      36.61
#> 3689                      14.15
#> 3690                      22.91
#> 3691                      43.57
#> 3692                      17.97
#> 3693                      26.44
#> 3694                      33.58
#> 3695                      17.26
#> 3696                      21.43
#> 3697                      32.28
#> 3698                      12.84
#> 3699                      21.25
#> 3700                      29.45
#> 3701                      14.43
#> 3702                      22.99
#> 3703                      34.92
#> 3704                      13.82
#> 3705                       22.5
#> 3706                      36.43
#> 3707                       18.1
#> 3708                      14.39
#> 3709                      21.93
#> 3710                      34.22
#> 3711                      15.18
#> 3712                      22.93
#> 3713                      33.84
#> 3714                       16.1
#> 3715                      19.29
#> 3716                      36.88
#> 3717                      16.13
#> 3718                      19.94
#> 3719                      34.16
#> 3720                      16.17
#> 3721                      21.78
#> 3722                      28.04
#> 3723                      14.31
#> 3724                      23.81
#> 3725                      28.02
#> 3726                      13.54
#> 3727                      20.31
#> 3728                      39.52
#> 3729                      13.52
#> 3730                      21.07
#> 3731                      36.47
#> 3732                      14.86
#> 3733                      23.13
#> 3734                      32.28
#> 3735                      13.22
#> 3736                      19.56
#> 3737                      35.04
#> 3738                      14.59
#> 3739                      23.68
#> 3740                      34.62
#> 3741                      14.22
#> 3742                      24.25
#> 3743                      34.23
#> 3744                      18.49
#> 3745                      16.36
#> 3746                      20.26
#> 3747                      37.67
#> 3748                          x
#> 3749                      17.91
#> 3750                      19.75
#> 3751                      44.47
#> 3752                      13.92
#> 3753                      18.24
#> 3754                      39.67
#> 3755                      13.96
#> 3756                       19.8
#> 3757                      34.02
#> 3758                      16.29
#> 3759                      19.09
#> 3760                      32.33
#> 3761                      13.57
#> 3762                      19.64
#> 3763                      38.34
#> 3764                      17.57
#> 3765                      26.61
#> 3766                      44.14
#> 3767                      17.13
#> 3768                      24.14
#> 3769                      35.51
#> 3770                      15.84
#> 3771                      20.98
#> 3772                      36.82
#> 3773                      15.57
#> 3774                      21.93
#> 3775                      37.06
#> 3776                      15.42
#> 3777                      21.02
#> 3778                      35.42
#> 3779                      16.78
#> 3780                      20.99
#> 3781                      33.72
#> 3782                      16.96
#> 3783                      18.45
#> 3784                      38.47
#> 3785                      16.55
#> 3786                      22.69
#> 3787                      34.83
#> 3788                      14.94
#> 3789                      19.31
#> 3790                      39.95
#> 3791                      14.38
#> 3792                      19.93
#> 3793                      39.94
#> 3794                       19.3
#> 3795                      22.67
#> 3796                      36.33
#> 3797                      17.71
#> 3798                      20.53
#> 3799                      35.44
#> 3800                      19.82
#> 3801                      23.87
#> 3802                      40.41
#> 3803                      17.87
#> 3804                      24.88
#> 3805                      28.35
#> 3806                       13.1
#> 3807                      16.53
#> 3808                      37.75
#> 3809                      18.36
#> 3810                      21.98
#> 3811                       34.4
#> 3812                      16.45
#> 3813                      20.91
#> 3814                      35.48
#> 3815                      13.71
#> 3816                      17.69
#> 3817                      40.69
#> 3818                      20.32
#> 3819                      20.58
#> 3820                       55.2
#> 3821                      18.03
#> 3822                      17.73
#> 3823                      42.83
#> 3824                      10.82
#> 3825                       15.8
#> 3826                      29.74
#> 3827                      16.44
#> 3828                      20.21
#> 3829                      37.02
#> 3830                      13.58
#> 3831                      15.18
#> 3832                       37.2
#> 3833                      21.51
#> 3834                      19.35
#> 3835                      41.16
#> 3836                      15.33
#> 3837                      22.24
#> 3838                      44.55
#> 3839                      15.56
#> 3840                      19.13
#> 3841                      41.75
#> 3842                      19.72
#> 3843                      21.71
#> 3844                      34.06
#> 3845                      18.56
#> 3846                       14.6
#> 3847                      22.59
#> 3848                       37.2
#> 3849                      16.64
#> 3850                       21.9
#> 3851                      34.08
#> 3852                      11.99
#> 3853                       20.4
#> 3854                          x
#> 3855                      13.22
#> 3856                      21.37
#> 3857                      32.96
#> 3858                      18.49
#> 3859                      22.83
#> 3860                      43.89
#> 3861                      17.93
#> 3862                      19.89
#> 3863                      40.31
#> 3864                      13.99
#> 3865                      21.02
#> 3866                       32.2
#> 3867                      11.45
#> 3868                      17.51
#> 3869                      32.79
#> 3870                      14.33
#> 3871                      22.24
#> 3872                       38.2
#> 3873                      15.96
#> 3874                      29.12
#> 3875                      31.55
#> 3876                      14.58
#> 3877                      25.25
#> 3878                       54.2
#> 3879                      17.76
#> 3880                      27.13
#> 3881                      37.58
#> 3882                      18.16
#> 3883                      29.48
#> 3884                      36.29
#> 3885                      13.69
#> 3886                      20.13
#> 3887                      36.31
#> 3888                      16.65
#> 3889                      26.03
#> 3890                      39.32
#> 3891                      11.77
#> 3892                      22.11
#> 3893                      35.01
#> 3894                      17.13
#> 3895                      23.96
#> 3896                      40.44
#> 3897                      13.97
#> 3898                      23.47
#> 3899                      32.96
#> 3900                       12.7
#> 3901                      18.77
#> 3902                      33.77
#> 3903                         14
#> 3904                      23.38
#> 3905                      35.87
#> 3906                      19.39
#> 3907                      14.07
#> 3908                      24.99
#> 3909                      36.41
#> 3910                      11.88
#> 3911                      22.43
#> 3912                      35.98
#> 3913                      17.03
#> 3914                      30.98
#> 3915                      43.15
#> 3916                      13.12
#> 3917                      23.99
#> 3918                      31.51
#> 3919                       13.7
#> 3920                      23.54
#> 3921                      33.06
#> 3922                      15.07
#> 3923                      28.19
#> 3924                      35.35
#> 3925                      15.65
#> 3926                       23.8
#> 3927                      38.57
#> 3928                      13.81
#> 3929                      25.97
#> 3930                      38.75
#> 3931                      14.73
#> 3932                      25.97
#> 3933                       35.7
#> 3934                          x
#> 3935                      12.29
#> 3936                      22.84
#> 3937                      32.83
#> 3938                      13.38
#> 3939                      22.54
#> 3940                      37.69
#> 3941                      14.81
#> 3942                      24.33
#> 3943                      31.65
#> 3944                      15.21
#> 3945                      25.27
#> 3946                      43.29
#> 3947                      13.05
#> 3948                      26.52
#> 3949                      34.69
#> 3950                      13.61
#> 3951                      22.32
#> 3952                      33.36