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 30 Year to date         National    E92000001
#> 2         2025         Week 30 Year to date         National    E92000001
#> 3         2025         Week 30 Year to date         National    E92000001
#> 4         2025         Week 30 Year to date         National    E92000001
#> 5         2025         Week 30 Year to date         Regional    E92000001
#> 6         2025         Week 30 Year to date         Regional    E92000001
#> 7         2025         Week 30 Year to date         Regional    E92000001
#> 8         2025         Week 30 Year to date         Regional    E92000001
#> 9         2025         Week 30 Year to date  Local authority    E92000001
#> 10        2025         Week 30 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.70
#> 2          Primary                      13.50
#> 3        Secondary                      24.32
#> 4          Special                      35.80
#> 5      All schools                      19.18
#> 6          Primary                      13.26
#> 7        Secondary                      26.00
#> 8          Special                      32.09
#> 9          Primary                      13.80
#> 10       Secondary                      26.60

# Get 2 rows
preview_dataset(example_id("dataset"), n_max = 2)
#>   time_period time_identifier   time_frame geographic_level country_code
#> 1        2025         Week 30 Year to date         National    E92000001
#> 2        2025         Week 30 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.7
#> 2         Primary                       13.5

# Get all rows
preview_dataset(example_id("dataset"), n_max = Inf)
#>      time_period time_identifier   time_frame geographic_level country_code
#> 1           2025         Week 30 Year to date         National    E92000001
#> 2           2025         Week 30 Year to date         National    E92000001
#> 3           2025         Week 30 Year to date         National    E92000001
#> 4           2025         Week 30 Year to date         National    E92000001
#> 5           2025         Week 30 Year to date         Regional    E92000001
#> 6           2025         Week 30 Year to date         Regional    E92000001
#> 7           2025         Week 30 Year to date         Regional    E92000001
#> 8           2025         Week 30 Year to date         Regional    E92000001
#> 9           2025         Week 30 Year to date  Local authority    E92000001
#> 10          2025         Week 30 Year to date  Local authority    E92000001
#> 11          2025         Week 30 Year to date  Local authority    E92000001
#> 12          2025         Week 30 Year to date  Local authority    E92000001
#> 13          2025         Week 30 Year to date  Local authority    E92000001
#> 14          2025         Week 30 Year to date  Local authority    E92000001
#> 15          2025         Week 30 Year to date  Local authority    E92000001
#> 16          2025         Week 30 Year to date  Local authority    E92000001
#> 17          2025         Week 30 Year to date  Local authority    E92000001
#> 18          2025         Week 30 Year to date  Local authority    E92000001
#> 19          2025         Week 30 Year to date  Local authority    E92000001
#> 20          2025         Week 30 Year to date  Local authority    E92000001
#> 21          2025         Week 30 Year to date  Local authority    E92000001
#> 22          2025         Week 30 Year to date  Local authority    E92000001
#> 23          2025         Week 30 Year to date  Local authority    E92000001
#> 24          2025         Week 30 Year to date  Local authority    E92000001
#> 25          2025         Week 30 Year to date  Local authority    E92000001
#> 26          2025         Week 30 Year to date  Local authority    E92000001
#> 27          2025         Week 30 Year to date  Local authority    E92000001
#> 28          2025         Week 30 Year to date  Local authority    E92000001
#> 29          2025         Week 30 Year to date  Local authority    E92000001
#> 30          2025         Week 30 Year to date  Local authority    E92000001
#> 31          2025         Week 30 Year to date  Local authority    E92000001
#> 32          2025         Week 30 Year to date  Local authority    E92000001
#> 33          2025         Week 30 Year to date  Local authority    E92000001
#> 34          2025         Week 30 Year to date  Local authority    E92000001
#> 35          2025         Week 30 Year to date  Local authority    E92000001
#> 36          2025         Week 30 Year to date  Local authority    E92000001
#> 37          2025         Week 30 Year to date  Local authority    E92000001
#> 38          2025         Week 30 Year to date  Local authority    E92000001
#> 39          2025         Week 30 Year to date  Local authority    E92000001
#> 40          2025         Week 30 Year to date  Local authority    E92000001
#> 41          2025         Week 30 Year to date  Local authority    E92000001
#> 42          2025         Week 30 Year to date  Local authority    E92000001
#> 43          2025         Week 30 Year to date  Local authority    E92000001
#> 44          2025         Week 30 Year to date  Local authority    E92000001
#> 45          2025         Week 30 Year to date         Regional    E92000001
#> 46          2025         Week 30 Year to date         Regional    E92000001
#> 47          2025         Week 30 Year to date         Regional    E92000001
#> 48          2025         Week 30 Year to date         Regional    E92000001
#> 49          2025         Week 30 Year to date  Local authority    E92000001
#> 50          2025         Week 30 Year to date  Local authority    E92000001
#> 51          2025         Week 30 Year to date  Local authority    E92000001
#> 52          2025         Week 30 Year to date  Local authority    E92000001
#> 53          2025         Week 30 Year to date  Local authority    E92000001
#> 54          2025         Week 30 Year to date  Local authority    E92000001
#> 55          2025         Week 30 Year to date  Local authority    E92000001
#> 56          2025         Week 30 Year to date  Local authority    E92000001
#> 57          2025         Week 30 Year to date  Local authority    E92000001
#> 58          2025         Week 30 Year to date  Local authority    E92000001
#> 59          2025         Week 30 Year to date  Local authority    E92000001
#> 60          2025         Week 30 Year to date  Local authority    E92000001
#> 61          2025         Week 30 Year to date  Local authority    E92000001
#> 62          2025         Week 30 Year to date  Local authority    E92000001
#> 63          2025         Week 30 Year to date  Local authority    E92000001
#> 64          2025         Week 30 Year to date  Local authority    E92000001
#> 65          2025         Week 30 Year to date  Local authority    E92000001
#> 66          2025         Week 30 Year to date  Local authority    E92000001
#> 67          2025         Week 30 Year to date  Local authority    E92000001
#> 68          2025         Week 30 Year to date  Local authority    E92000001
#> 69          2025         Week 30 Year to date  Local authority    E92000001
#> 70          2025         Week 30 Year to date  Local authority    E92000001
#> 71          2025         Week 30 Year to date  Local authority    E92000001
#> 72          2025         Week 30 Year to date  Local authority    E92000001
#> 73          2025         Week 30 Year to date  Local authority    E92000001
#> 74          2025         Week 30 Year to date  Local authority    E92000001
#> 75          2025         Week 30 Year to date  Local authority    E92000001
#> 76          2025         Week 30 Year to date  Local authority    E92000001
#> 77          2025         Week 30 Year to date  Local authority    E92000001
#> 78          2025         Week 30 Year to date  Local authority    E92000001
#> 79          2025         Week 30 Year to date  Local authority    E92000001
#> 80          2025         Week 30 Year to date  Local authority    E92000001
#> 81          2025         Week 30 Year to date  Local authority    E92000001
#> 82          2025         Week 30 Year to date  Local authority    E92000001
#> 83          2025         Week 30 Year to date  Local authority    E92000001
#> 84          2025         Week 30 Year to date  Local authority    E92000001
#> 85          2025         Week 30 Year to date  Local authority    E92000001
#> 86          2025         Week 30 Year to date  Local authority    E92000001
#> 87          2025         Week 30 Year to date  Local authority    E92000001
#> 88          2025         Week 30 Year to date  Local authority    E92000001
#> 89          2025         Week 30 Year to date  Local authority    E92000001
#> 90          2025         Week 30 Year to date  Local authority    E92000001
#> 91          2025         Week 30 Year to date  Local authority    E92000001
#> 92          2025         Week 30 Year to date  Local authority    E92000001
#> 93          2025         Week 30 Year to date  Local authority    E92000001
#> 94          2025         Week 30 Year to date  Local authority    E92000001
#> 95          2025         Week 30 Year to date  Local authority    E92000001
#> 96          2025         Week 30 Year to date  Local authority    E92000001
#> 97          2025         Week 30 Year to date  Local authority    E92000001
#> 98          2025         Week 30 Year to date  Local authority    E92000001
#> 99          2025         Week 30 Year to date  Local authority    E92000001
#> 100         2025         Week 30 Year to date  Local authority    E92000001
#> 101         2025         Week 30 Year to date  Local authority    E92000001
#> 102         2025         Week 30 Year to date  Local authority    E92000001
#> 103         2025         Week 30 Year to date  Local authority    E92000001
#> 104         2025         Week 30 Year to date  Local authority    E92000001
#> 105         2025         Week 30 Year to date  Local authority    E92000001
#> 106         2025         Week 30 Year to date  Local authority    E92000001
#> 107         2025         Week 30 Year to date  Local authority    E92000001
#> 108         2025         Week 30 Year to date  Local authority    E92000001
#> 109         2025         Week 30 Year to date  Local authority    E92000001
#> 110         2025         Week 30 Year to date  Local authority    E92000001
#> 111         2025         Week 30 Year to date  Local authority    E92000001
#> 112         2025         Week 30 Year to date  Local authority    E92000001
#> 113         2025         Week 30 Year to date  Local authority    E92000001
#> 114         2025         Week 30 Year to date  Local authority    E92000001
#> 115         2025         Week 30 Year to date  Local authority    E92000001
#> 116         2025         Week 30 Year to date  Local authority    E92000001
#> 117         2025         Week 30 Year to date  Local authority    E92000001
#> 118         2025         Week 30 Year to date  Local authority    E92000001
#> 119         2025         Week 30 Year to date  Local authority    E92000001
#> 120         2025         Week 30 Year to date  Local authority    E92000001
#> 121         2025         Week 30 Year to date         Regional    E92000001
#> 122         2025         Week 30 Year to date         Regional    E92000001
#> 123         2025         Week 30 Year to date         Regional    E92000001
#> 124         2025         Week 30 Year to date         Regional    E92000001
#> 125         2025         Week 30 Year to date  Local authority    E92000001
#> 126         2025         Week 30 Year to date  Local authority    E92000001
#> 127         2025         Week 30 Year to date  Local authority    E92000001
#> 128         2025         Week 30 Year to date  Local authority    E92000001
#> 129         2025         Week 30 Year to date  Local authority    E92000001
#> 130         2025         Week 30 Year to date  Local authority    E92000001
#> 131         2025         Week 30 Year to date  Local authority    E92000001
#> 132         2025         Week 30 Year to date  Local authority    E92000001
#> 133         2025         Week 30 Year to date  Local authority    E92000001
#> 134         2025         Week 30 Year to date  Local authority    E92000001
#> 135         2025         Week 30 Year to date  Local authority    E92000001
#> 136         2025         Week 30 Year to date  Local authority    E92000001
#> 137         2025         Week 30 Year to date  Local authority    E92000001
#> 138         2025         Week 30 Year to date  Local authority    E92000001
#> 139         2025         Week 30 Year to date  Local authority    E92000001
#> 140         2025         Week 30 Year to date  Local authority    E92000001
#> 141         2025         Week 30 Year to date  Local authority    E92000001
#> 142         2025         Week 30 Year to date  Local authority    E92000001
#> 143         2025         Week 30 Year to date  Local authority    E92000001
#> 144         2025         Week 30 Year to date  Local authority    E92000001
#> 145         2025         Week 30 Year to date  Local authority    E92000001
#> 146         2025         Week 30 Year to date  Local authority    E92000001
#> 147         2025         Week 30 Year to date  Local authority    E92000001
#> 148         2025         Week 30 Year to date  Local authority    E92000001
#> 149         2025         Week 30 Year to date  Local authority    E92000001
#> 150         2025         Week 30 Year to date  Local authority    E92000001
#> 151         2025         Week 30 Year to date  Local authority    E92000001
#> 152         2025         Week 30 Year to date  Local authority    E92000001
#> 153         2025         Week 30 Year to date  Local authority    E92000001
#> 154         2025         Week 30 Year to date  Local authority    E92000001
#> 155         2025         Week 30 Year to date  Local authority    E92000001
#> 156         2025         Week 30 Year to date  Local authority    E92000001
#> 157         2025         Week 30 Year to date  Local authority    E92000001
#> 158         2025         Week 30 Year to date  Local authority    E92000001
#> 159         2025         Week 30 Year to date  Local authority    E92000001
#> 160         2025         Week 30 Year to date  Local authority    E92000001
#> 161         2025         Week 30 Year to date  Local authority    E92000001
#> 162         2025         Week 30 Year to date  Local authority    E92000001
#> 163         2025         Week 30 Year to date  Local authority    E92000001
#> 164         2025         Week 30 Year to date  Local authority    E92000001
#> 165         2025         Week 30 Year to date  Local authority    E92000001
#> 166         2025         Week 30 Year to date  Local authority    E92000001
#> 167         2025         Week 30 Year to date  Local authority    E92000001
#> 168         2025         Week 30 Year to date  Local authority    E92000001
#> 169         2025         Week 30 Year to date  Local authority    E92000001
#> 170         2025         Week 30 Year to date         Regional    E92000001
#> 171         2025         Week 30 Year to date         Regional    E92000001
#> 172         2025         Week 30 Year to date         Regional    E92000001
#> 173         2025         Week 30 Year to date         Regional    E92000001
#> 174         2025         Week 30 Year to date  Local authority    E92000001
#> 175         2025         Week 30 Year to date  Local authority    E92000001
#> 176         2025         Week 30 Year to date  Local authority    E92000001
#> 177         2025         Week 30 Year to date  Local authority    E92000001
#> 178         2025         Week 30 Year to date  Local authority    E92000001
#> 179         2025         Week 30 Year to date  Local authority    E92000001
#> 180         2025         Week 30 Year to date  Local authority    E92000001
#> 181         2025         Week 30 Year to date  Local authority    E92000001
#> 182         2025         Week 30 Year to date  Local authority    E92000001
#> 183         2025         Week 30 Year to date  Local authority    E92000001
#> 184         2025         Week 30 Year to date  Local authority    E92000001
#> 185         2025         Week 30 Year to date  Local authority    E92000001
#> 186         2025         Week 30 Year to date  Local authority    E92000001
#> 187         2025         Week 30 Year to date  Local authority    E92000001
#> 188         2025         Week 30 Year to date  Local authority    E92000001
#> 189         2025         Week 30 Year to date  Local authority    E92000001
#> 190         2025         Week 30 Year to date  Local authority    E92000001
#> 191         2025         Week 30 Year to date  Local authority    E92000001
#> 192         2025         Week 30 Year to date  Local authority    E92000001
#> 193         2025         Week 30 Year to date  Local authority    E92000001
#> 194         2025         Week 30 Year to date  Local authority    E92000001
#> 195         2025         Week 30 Year to date  Local authority    E92000001
#> 196         2025         Week 30 Year to date  Local authority    E92000001
#> 197         2025         Week 30 Year to date  Local authority    E92000001
#> 198         2025         Week 30 Year to date  Local authority    E92000001
#> 199         2025         Week 30 Year to date  Local authority    E92000001
#> 200         2025         Week 30 Year to date  Local authority    E92000001
#> 201         2025         Week 30 Year to date  Local authority    E92000001
#> 202         2025         Week 30 Year to date  Local authority    E92000001
#> 203         2025         Week 30 Year to date         Regional    E92000001
#> 204         2025         Week 30 Year to date         Regional    E92000001
#> 205         2025         Week 30 Year to date         Regional    E92000001
#> 206         2025         Week 30 Year to date         Regional    E92000001
#> 207         2025         Week 30 Year to date  Local authority    E92000001
#> 208         2025         Week 30 Year to date  Local authority    E92000001
#> 209         2025         Week 30 Year to date  Local authority    E92000001
#> 210         2025         Week 30 Year to date  Local authority    E92000001
#> 211         2025         Week 30 Year to date  Local authority    E92000001
#> 212         2025         Week 30 Year to date  Local authority    E92000001
#> 213         2025         Week 30 Year to date  Local authority    E92000001
#> 214         2025         Week 30 Year to date  Local authority    E92000001
#> 215         2025         Week 30 Year to date  Local authority    E92000001
#> 216         2025         Week 30 Year to date  Local authority    E92000001
#> 217         2025         Week 30 Year to date  Local authority    E92000001
#> 218         2025         Week 30 Year to date  Local authority    E92000001
#> 219         2025         Week 30 Year to date  Local authority    E92000001
#> 220         2025         Week 30 Year to date  Local authority    E92000001
#> 221         2025         Week 30 Year to date  Local authority    E92000001
#> 222         2025         Week 30 Year to date  Local authority    E92000001
#> 223         2025         Week 30 Year to date  Local authority    E92000001
#> 224         2025         Week 30 Year to date  Local authority    E92000001
#> 225         2025         Week 30 Year to date  Local authority    E92000001
#> 226         2025         Week 30 Year to date  Local authority    E92000001
#> 227         2025         Week 30 Year to date  Local authority    E92000001
#> 228         2025         Week 30 Year to date  Local authority    E92000001
#> 229         2025         Week 30 Year to date  Local authority    E92000001
#> 230         2025         Week 30 Year to date  Local authority    E92000001
#> 231         2025         Week 30 Year to date  Local authority    E92000001
#> 232         2025         Week 30 Year to date  Local authority    E92000001
#> 233         2025         Week 30 Year to date  Local authority    E92000001
#> 234         2025         Week 30 Year to date  Local authority    E92000001
#> 235         2025         Week 30 Year to date  Local authority    E92000001
#> 236         2025         Week 30 Year to date  Local authority    E92000001
#> 237         2025         Week 30 Year to date  Local authority    E92000001
#> 238         2025         Week 30 Year to date  Local authority    E92000001
#> 239         2025         Week 30 Year to date  Local authority    E92000001
#> 240         2025         Week 30 Year to date  Local authority    E92000001
#> 241         2025         Week 30 Year to date  Local authority    E92000001
#> 242         2025         Week 30 Year to date  Local authority    E92000001
#> 243         2025         Week 30 Year to date  Local authority    E92000001
#> 244         2025         Week 30 Year to date  Local authority    E92000001
#> 245         2025         Week 30 Year to date  Local authority    E92000001
#> 246         2025         Week 30 Year to date  Local authority    E92000001
#> 247         2025         Week 30 Year to date  Local authority    E92000001
#> 248         2025         Week 30 Year to date  Local authority    E92000001
#> 249         2025         Week 30 Year to date         Regional    E92000001
#> 250         2025         Week 30 Year to date         Regional    E92000001
#> 251         2025         Week 30 Year to date         Regional    E92000001
#> 252         2025         Week 30 Year to date         Regional    E92000001
#> 253         2025         Week 30 Year to date  Local authority    E92000001
#> 254         2025         Week 30 Year to date  Local authority    E92000001
#> 255         2025         Week 30 Year to date  Local authority    E92000001
#> 256         2025         Week 30 Year to date  Local authority    E92000001
#> 257         2025         Week 30 Year to date  Local authority    E92000001
#> 258         2025         Week 30 Year to date  Local authority    E92000001
#> 259         2025         Week 30 Year to date  Local authority    E92000001
#> 260         2025         Week 30 Year to date  Local authority    E92000001
#> 261         2025         Week 30 Year to date  Local authority    E92000001
#> 262         2025         Week 30 Year to date  Local authority    E92000001
#> 263         2025         Week 30 Year to date  Local authority    E92000001
#> 264         2025         Week 30 Year to date  Local authority    E92000001
#> 265         2025         Week 30 Year to date  Local authority    E92000001
#> 266         2025         Week 30 Year to date  Local authority    E92000001
#> 267         2025         Week 30 Year to date  Local authority    E92000001
#> 268         2025         Week 30 Year to date  Local authority    E92000001
#> 269         2025         Week 30 Year to date  Local authority    E92000001
#> 270         2025         Week 30 Year to date  Local authority    E92000001
#> 271         2025         Week 30 Year to date  Local authority    E92000001
#> 272         2025         Week 30 Year to date  Local authority    E92000001
#> 273         2025         Week 30 Year to date  Local authority    E92000001
#> 274         2025         Week 30 Year to date  Local authority    E92000001
#> 275         2025         Week 30 Year to date  Local authority    E92000001
#> 276         2025         Week 30 Year to date  Local authority    E92000001
#> 277         2025         Week 30 Year to date  Local authority    E92000001
#> 278         2025         Week 30 Year to date  Local authority    E92000001
#> 279         2025         Week 30 Year to date  Local authority    E92000001
#> 280         2025         Week 30 Year to date  Local authority    E92000001
#> 281         2025         Week 30 Year to date  Local authority    E92000001
#> 282         2025         Week 30 Year to date  Local authority    E92000001
#> 283         2025         Week 30 Year to date  Local authority    E92000001
#> 284         2025         Week 30 Year to date  Local authority    E92000001
#> 285         2025         Week 30 Year to date  Local authority    E92000001
#> 286         2025         Week 30 Year to date         Regional    E92000001
#> 287         2025         Week 30 Year to date         Regional    E92000001
#> 288         2025         Week 30 Year to date         Regional    E92000001
#> 289         2025         Week 30 Year to date         Regional    E92000001
#> 290         2025         Week 30 Year to date  Local authority    E92000001
#> 291         2025         Week 30 Year to date  Local authority    E92000001
#> 292         2025         Week 30 Year to date  Local authority    E92000001
#> 293         2025         Week 30 Year to date  Local authority    E92000001
#> 294         2025         Week 30 Year to date  Local authority    E92000001
#> 295         2025         Week 30 Year to date  Local authority    E92000001
#> 296         2025         Week 30 Year to date  Local authority    E92000001
#> 297         2025         Week 30 Year to date  Local authority    E92000001
#> 298         2025         Week 30 Year to date  Local authority    E92000001
#> 299         2025         Week 30 Year to date  Local authority    E92000001
#> 300         2025         Week 30 Year to date  Local authority    E92000001
#> 301         2025         Week 30 Year to date  Local authority    E92000001
#> 302         2025         Week 30 Year to date  Local authority    E92000001
#> 303         2025         Week 30 Year to date  Local authority    E92000001
#> 304         2025         Week 30 Year to date  Local authority    E92000001
#> 305         2025         Week 30 Year to date  Local authority    E92000001
#> 306         2025         Week 30 Year to date  Local authority    E92000001
#> 307         2025         Week 30 Year to date  Local authority    E92000001
#> 308         2025         Week 30 Year to date  Local authority    E92000001
#> 309         2025         Week 30 Year to date  Local authority    E92000001
#> 310         2025         Week 30 Year to date  Local authority    E92000001
#> 311         2025         Week 30 Year to date  Local authority    E92000001
#> 312         2025         Week 30 Year to date  Local authority    E92000001
#> 313         2025         Week 30 Year to date  Local authority    E92000001
#> 314         2025         Week 30 Year to date  Local authority    E92000001
#> 315         2025         Week 30 Year to date  Local authority    E92000001
#> 316         2025         Week 30 Year to date  Local authority    E92000001
#> 317         2025         Week 30 Year to date  Local authority    E92000001
#> 318         2025         Week 30 Year to date  Local authority    E92000001
#> 319         2025         Week 30 Year to date  Local authority    E92000001
#> 320         2025         Week 30 Year to date  Local authority    E92000001
#> 321         2025         Week 30 Year to date  Local authority    E92000001
#> 322         2025         Week 30 Year to date  Local authority    E92000001
#> 323         2025         Week 30 Year to date  Local authority    E92000001
#> 324         2025         Week 30 Year to date  Local authority    E92000001
#> 325         2025         Week 30 Year to date  Local authority    E92000001
#> 326         2025         Week 30 Year to date  Local authority    E92000001
#> 327         2025         Week 30 Year to date  Local authority    E92000001
#> 328         2025         Week 30 Year to date  Local authority    E92000001
#> 329         2025         Week 30 Year to date  Local authority    E92000001
#> 330         2025         Week 30 Year to date  Local authority    E92000001
#> 331         2025         Week 30 Year to date  Local authority    E92000001
#> 332         2025         Week 30 Year to date  Local authority    E92000001
#> 333         2025         Week 30 Year to date  Local authority    E92000001
#> 334         2025         Week 30 Year to date  Local authority    E92000001
#> 335         2025         Week 30 Year to date  Local authority    E92000001
#> 336         2025         Week 30 Year to date  Local authority    E92000001
#> 337         2025         Week 30 Year to date  Local authority    E92000001
#> 338         2025         Week 30 Year to date  Local authority    E92000001
#> 339         2025         Week 30 Year to date  Local authority    E92000001
#> 340         2025         Week 30 Year to date  Local authority    E92000001
#> 341         2025         Week 30 Year to date  Local authority    E92000001
#> 342         2025         Week 30 Year to date  Local authority    E92000001
#> 343         2025         Week 30 Year to date  Local authority    E92000001
#> 344         2025         Week 30 Year to date  Local authority    E92000001
#> 345         2025         Week 30 Year to date  Local authority    E92000001
#> 346         2025         Week 30 Year to date  Local authority    E92000001
#> 347         2025         Week 30 Year to date  Local authority    E92000001
#> 348         2025         Week 30 Year to date  Local authority    E92000001
#> 349         2025         Week 30 Year to date  Local authority    E92000001
#> 350         2025         Week 30 Year to date  Local authority    E92000001
#> 351         2025         Week 30 Year to date  Local authority    E92000001
#> 352         2025         Week 30 Year to date  Local authority    E92000001
#> 353         2025         Week 30 Year to date  Local authority    E92000001
#> 354         2025         Week 30 Year to date  Local authority    E92000001
#> 355         2025         Week 30 Year to date  Local authority    E92000001
#> 356         2025         Week 30 Year to date  Local authority    E92000001
#> 357         2025         Week 30 Year to date  Local authority    E92000001
#> 358         2025         Week 30 Year to date  Local authority    E92000001
#> 359         2025         Week 30 Year to date  Local authority    E92000001
#> 360         2025         Week 30 Year to date  Local authority    E92000001
#> 361         2025         Week 30 Year to date  Local authority    E92000001
#> 362         2025         Week 30 Year to date  Local authority    E92000001
#> 363         2025         Week 30 Year to date  Local authority    E92000001
#> 364         2025         Week 30 Year to date  Local authority    E92000001
#> 365         2025         Week 30 Year to date  Local authority    E92000001
#> 366         2025         Week 30 Year to date  Local authority    E92000001
#> 367         2025         Week 30 Year to date  Local authority    E92000001
#> 368         2025         Week 30 Year to date  Local authority    E92000001
#> 369         2025         Week 30 Year to date  Local authority    E92000001
#> 370         2025         Week 30 Year to date  Local authority    E92000001
#> 371         2025         Week 30 Year to date  Local authority    E92000001
#> 372         2025         Week 30 Year to date  Local authority    E92000001
#> 373         2025         Week 30 Year to date  Local authority    E92000001
#> 374         2025         Week 30 Year to date  Local authority    E92000001
#> 375         2025         Week 30 Year to date  Local authority    E92000001
#> 376         2025         Week 30 Year to date  Local authority    E92000001
#> 377         2025         Week 30 Year to date  Local authority    E92000001
#> 378         2025         Week 30 Year to date  Local authority    E92000001
#> 379         2025         Week 30 Year to date  Local authority    E92000001
#> 380         2025         Week 30 Year to date  Local authority    E92000001
#> 381         2025         Week 30 Year to date  Local authority    E92000001
#> 382         2025         Week 30 Year to date  Local authority    E92000001
#> 383         2025         Week 30 Year to date  Local authority    E92000001
#> 384         2025         Week 30 Year to date  Local authority    E92000001
#> 385         2025         Week 30 Year to date  Local authority    E92000001
#> 386         2025         Week 30 Year to date  Local authority    E92000001
#> 387         2025         Week 30 Year to date         Regional    E92000001
#> 388         2025         Week 30 Year to date         Regional    E92000001
#> 389         2025         Week 30 Year to date         Regional    E92000001
#> 390         2025         Week 30 Year to date         Regional    E92000001
#> 391         2025         Week 30 Year to date  Local authority    E92000001
#> 392         2025         Week 30 Year to date  Local authority    E92000001
#> 393         2025         Week 30 Year to date  Local authority    E92000001
#> 394         2025         Week 30 Year to date  Local authority    E92000001
#> 395         2025         Week 30 Year to date  Local authority    E92000001
#> 396         2025         Week 30 Year to date  Local authority    E92000001
#> 397         2025         Week 30 Year to date  Local authority    E92000001
#> 398         2025         Week 30 Year to date  Local authority    E92000001
#> 399         2025         Week 30 Year to date  Local authority    E92000001
#> 400         2025         Week 30 Year to date  Local authority    E92000001
#> 401         2025         Week 30 Year to date  Local authority    E92000001
#> 402         2025         Week 30 Year to date  Local authority    E92000001
#> 403         2025         Week 30 Year to date  Local authority    E92000001
#> 404         2025         Week 30 Year to date  Local authority    E92000001
#> 405         2025         Week 30 Year to date  Local authority    E92000001
#> 406         2025         Week 30 Year to date  Local authority    E92000001
#> 407         2025         Week 30 Year to date  Local authority    E92000001
#> 408         2025         Week 30 Year to date  Local authority    E92000001
#> 409         2025         Week 30 Year to date  Local authority    E92000001
#> 410         2025         Week 30 Year to date  Local authority    E92000001
#> 411         2025         Week 30 Year to date  Local authority    E92000001
#> 412         2025         Week 30 Year to date  Local authority    E92000001
#> 413         2025         Week 30 Year to date  Local authority    E92000001
#> 414         2025         Week 30 Year to date  Local authority    E92000001
#> 415         2025         Week 30 Year to date  Local authority    E92000001
#> 416         2025         Week 30 Year to date  Local authority    E92000001
#> 417         2025         Week 30 Year to date  Local authority    E92000001
#> 418         2025         Week 30 Year to date  Local authority    E92000001
#> 419         2025         Week 30 Year to date  Local authority    E92000001
#> 420         2025         Week 30 Year to date  Local authority    E92000001
#> 421         2025         Week 30 Year to date  Local authority    E92000001
#> 422         2025         Week 30 Year to date  Local authority    E92000001
#> 423         2025         Week 30 Year to date  Local authority    E92000001
#> 424         2025         Week 30 Year to date  Local authority    E92000001
#> 425         2025         Week 30 Year to date  Local authority    E92000001
#> 426         2025         Week 30 Year to date  Local authority    E92000001
#> 427         2025         Week 30 Year to date  Local authority    E92000001
#> 428         2025         Week 30 Year to date  Local authority    E92000001
#> 429         2025         Week 30 Year to date  Local authority    E92000001
#> 430         2025         Week 30 Year to date  Local authority    E92000001
#> 431         2025         Week 30 Year to date  Local authority    E92000001
#> 432         2025         Week 30 Year to date  Local authority    E92000001
#> 433         2025         Week 30 Year to date  Local authority    E92000001
#> 434         2025         Week 30 Year to date  Local authority    E92000001
#> 435         2025         Week 30 Year to date  Local authority    E92000001
#> 436         2025         Week 30 Year to date  Local authority    E92000001
#> 437         2025         Week 30 Year to date  Local authority    E92000001
#> 438         2025         Week 30 Year to date  Local authority    E92000001
#> 439         2025         Week 30 Year to date  Local authority    E92000001
#> 440         2025         Week 30 Year to date  Local authority    E92000001
#> 441         2025         Week 30 Year to date  Local authority    E92000001
#> 442         2025         Week 30 Year to date  Local authority    E92000001
#> 443         2025         Week 30 Year to date  Local authority    E92000001
#> 444         2025         Week 30 Year to date  Local authority    E92000001
#> 445         2025         Week 30 Year to date  Local authority    E92000001
#> 446         2025         Week 30 Year to date  Local authority    E92000001
#> 447         2025         Week 30 Year to date  Local authority    E92000001
#> 448         2025         Week 30 Year to date         Regional    E92000001
#> 449         2025         Week 30 Year to date         Regional    E92000001
#> 450         2025         Week 30 Year to date         Regional    E92000001
#> 451         2025         Week 30 Year to date         Regional    E92000001
#> 452         2025         Week 30 Year to date  Local authority    E92000001
#> 453         2025         Week 30 Year to date  Local authority    E92000001
#> 454         2025         Week 30 Year to date  Local authority    E92000001
#> 455         2025         Week 30 Year to date  Local authority    E92000001
#> 456         2025         Week 30 Year to date  Local authority    E92000001
#> 457         2025         Week 30 Year to date  Local authority    E92000001
#> 458         2025         Week 30 Year to date  Local authority    E92000001
#> 459         2025         Week 30 Year to date  Local authority    E92000001
#> 460         2025         Week 30 Year to date  Local authority    E92000001
#> 461         2025         Week 30 Year to date  Local authority    E92000001
#> 462         2025         Week 30 Year to date  Local authority    E92000001
#> 463         2025         Week 30 Year to date  Local authority    E92000001
#> 464         2025         Week 30 Year to date  Local authority    E92000001
#> 465         2025         Week 30 Year to date  Local authority    E92000001
#> 466         2025         Week 30 Year to date  Local authority    E92000001
#> 467         2025         Week 30 Year to date  Local authority    E92000001
#> 468         2025         Week 30 Year to date  Local authority    E92000001
#> 469         2025         Week 30 Year to date  Local authority    E92000001
#> 470         2025         Week 30 Year to date  Local authority    E92000001
#> 471         2025         Week 30 Year to date  Local authority    E92000001
#> 472         2025         Week 30 Year to date  Local authority    E92000001
#> 473         2025         Week 30 Year to date  Local authority    E92000001
#> 474         2025         Week 30 Year to date  Local authority    E92000001
#> 475         2025         Week 30 Year to date  Local authority    E92000001
#> 476         2025         Week 30 Year to date  Local authority    E92000001
#> 477         2025         Week 30 Year to date  Local authority    E92000001
#> 478         2025         Week 30 Year to date  Local authority    E92000001
#> 479         2025         Week 30 Year to date  Local authority    E92000001
#> 480         2025         Week 30 Year to date  Local authority    E92000001
#> 481         2025         Week 30 Year to date  Local authority    E92000001
#> 482         2025         Week 30 Year to date  Local authority    E92000001
#> 483         2025         Week 30 Year to date  Local authority    E92000001
#> 484         2025         Week 30 Year to date  Local authority    E92000001
#> 485         2025         Week 30 Year to date  Local authority    E92000001
#> 486         2025         Week 30 Year to date  Local authority    E92000001
#> 487         2025         Week 30 Year to date  Local authority    E92000001
#> 488         2025         Week 30 Year to date  Local authority    E92000001
#> 489         2025         Week 30 Year to date  Local authority    E92000001
#> 490         2025         Week 30 Year to date  Local authority    E92000001
#> 491         2025         Week 30 Year to date  Local authority    E92000001
#> 492         2025         Week 30 Year to date  Local authority    E92000001
#> 493         2025         Week 30 Year to date  Local authority    E92000001
#> 494         2025         Week 30 Year to date  Local authority    E92000001
#> 495         2025         Week 28 Year to date         National    E92000001
#> 496         2025         Week 28 Year to date         National    E92000001
#> 497         2025         Week 28 Year to date         National    E92000001
#> 498         2025         Week 28 Year to date         National    E92000001
#> 499         2025         Week 28 Year to date         Regional    E92000001
#> 500         2025         Week 28 Year to date         Regional    E92000001
#> 501         2025         Week 28 Year to date         Regional    E92000001
#> 502         2025         Week 28 Year to date         Regional    E92000001
#> 503         2025         Week 28 Year to date  Local authority    E92000001
#> 504         2025         Week 28 Year to date  Local authority    E92000001
#> 505         2025         Week 28 Year to date  Local authority    E92000001
#> 506         2025         Week 28 Year to date  Local authority    E92000001
#> 507         2025         Week 28 Year to date  Local authority    E92000001
#> 508         2025         Week 28 Year to date  Local authority    E92000001
#> 509         2025         Week 28 Year to date  Local authority    E92000001
#> 510         2025         Week 28 Year to date  Local authority    E92000001
#> 511         2025         Week 28 Year to date  Local authority    E92000001
#> 512         2025         Week 28 Year to date  Local authority    E92000001
#> 513         2025         Week 28 Year to date  Local authority    E92000001
#> 514         2025         Week 28 Year to date  Local authority    E92000001
#> 515         2025         Week 28 Year to date  Local authority    E92000001
#> 516         2025         Week 28 Year to date  Local authority    E92000001
#> 517         2025         Week 28 Year to date  Local authority    E92000001
#> 518         2025         Week 28 Year to date  Local authority    E92000001
#> 519         2025         Week 28 Year to date  Local authority    E92000001
#> 520         2025         Week 28 Year to date  Local authority    E92000001
#> 521         2025         Week 28 Year to date  Local authority    E92000001
#> 522         2025         Week 28 Year to date  Local authority    E92000001
#> 523         2025         Week 28 Year to date  Local authority    E92000001
#> 524         2025         Week 28 Year to date  Local authority    E92000001
#> 525         2025         Week 28 Year to date  Local authority    E92000001
#> 526         2025         Week 28 Year to date  Local authority    E92000001
#> 527         2025         Week 28 Year to date  Local authority    E92000001
#> 528         2025         Week 28 Year to date  Local authority    E92000001
#> 529         2025         Week 28 Year to date  Local authority    E92000001
#> 530         2025         Week 28 Year to date  Local authority    E92000001
#> 531         2025         Week 28 Year to date  Local authority    E92000001
#> 532         2025         Week 28 Year to date  Local authority    E92000001
#> 533         2025         Week 28 Year to date  Local authority    E92000001
#> 534         2025         Week 28 Year to date  Local authority    E92000001
#> 535         2025         Week 28 Year to date  Local authority    E92000001
#> 536         2025         Week 28 Year to date  Local authority    E92000001
#> 537         2025         Week 28 Year to date  Local authority    E92000001
#> 538         2025         Week 28 Year to date  Local authority    E92000001
#> 539         2025         Week 28 Year to date         Regional    E92000001
#> 540         2025         Week 28 Year to date         Regional    E92000001
#> 541         2025         Week 28 Year to date         Regional    E92000001
#> 542         2025         Week 28 Year to date         Regional    E92000001
#> 543         2025         Week 28 Year to date  Local authority    E92000001
#> 544         2025         Week 28 Year to date  Local authority    E92000001
#> 545         2025         Week 28 Year to date  Local authority    E92000001
#> 546         2025         Week 28 Year to date  Local authority    E92000001
#> 547         2025         Week 28 Year to date  Local authority    E92000001
#> 548         2025         Week 28 Year to date  Local authority    E92000001
#> 549         2025         Week 28 Year to date  Local authority    E92000001
#> 550         2025         Week 28 Year to date  Local authority    E92000001
#> 551         2025         Week 28 Year to date  Local authority    E92000001
#> 552         2025         Week 28 Year to date  Local authority    E92000001
#> 553         2025         Week 28 Year to date  Local authority    E92000001
#> 554         2025         Week 28 Year to date  Local authority    E92000001
#> 555         2025         Week 28 Year to date  Local authority    E92000001
#> 556         2025         Week 28 Year to date  Local authority    E92000001
#> 557         2025         Week 28 Year to date  Local authority    E92000001
#> 558         2025         Week 28 Year to date  Local authority    E92000001
#> 559         2025         Week 28 Year to date  Local authority    E92000001
#> 560         2025         Week 28 Year to date  Local authority    E92000001
#> 561         2025         Week 28 Year to date  Local authority    E92000001
#> 562         2025         Week 28 Year to date  Local authority    E92000001
#> 563         2025         Week 28 Year to date  Local authority    E92000001
#> 564         2025         Week 28 Year to date  Local authority    E92000001
#> 565         2025         Week 28 Year to date  Local authority    E92000001
#> 566         2025         Week 28 Year to date  Local authority    E92000001
#> 567         2025         Week 28 Year to date  Local authority    E92000001
#> 568         2025         Week 28 Year to date  Local authority    E92000001
#> 569         2025         Week 28 Year to date  Local authority    E92000001
#> 570         2025         Week 28 Year to date  Local authority    E92000001
#> 571         2025         Week 28 Year to date  Local authority    E92000001
#> 572         2025         Week 28 Year to date  Local authority    E92000001
#> 573         2025         Week 28 Year to date  Local authority    E92000001
#> 574         2025         Week 28 Year to date  Local authority    E92000001
#> 575         2025         Week 28 Year to date  Local authority    E92000001
#> 576         2025         Week 28 Year to date  Local authority    E92000001
#> 577         2025         Week 28 Year to date  Local authority    E92000001
#> 578         2025         Week 28 Year to date  Local authority    E92000001
#> 579         2025         Week 28 Year to date  Local authority    E92000001
#> 580         2025         Week 28 Year to date  Local authority    E92000001
#> 581         2025         Week 28 Year to date  Local authority    E92000001
#> 582         2025         Week 28 Year to date  Local authority    E92000001
#> 583         2025         Week 28 Year to date  Local authority    E92000001
#> 584         2025         Week 28 Year to date  Local authority    E92000001
#> 585         2025         Week 28 Year to date  Local authority    E92000001
#> 586         2025         Week 28 Year to date  Local authority    E92000001
#> 587         2025         Week 28 Year to date  Local authority    E92000001
#> 588         2025         Week 28 Year to date  Local authority    E92000001
#> 589         2025         Week 28 Year to date  Local authority    E92000001
#> 590         2025         Week 28 Year to date  Local authority    E92000001
#> 591         2025         Week 28 Year to date  Local authority    E92000001
#> 592         2025         Week 28 Year to date  Local authority    E92000001
#> 593         2025         Week 28 Year to date  Local authority    E92000001
#> 594         2025         Week 28 Year to date  Local authority    E92000001
#> 595         2025         Week 28 Year to date  Local authority    E92000001
#> 596         2025         Week 28 Year to date  Local authority    E92000001
#> 597         2025         Week 28 Year to date  Local authority    E92000001
#> 598         2025         Week 28 Year to date  Local authority    E92000001
#> 599         2025         Week 28 Year to date  Local authority    E92000001
#> 600         2025         Week 28 Year to date  Local authority    E92000001
#> 601         2025         Week 28 Year to date  Local authority    E92000001
#> 602         2025         Week 28 Year to date  Local authority    E92000001
#> 603         2025         Week 28 Year to date  Local authority    E92000001
#> 604         2025         Week 28 Year to date  Local authority    E92000001
#> 605         2025         Week 28 Year to date  Local authority    E92000001
#> 606         2025         Week 28 Year to date  Local authority    E92000001
#> 607         2025         Week 28 Year to date  Local authority    E92000001
#> 608         2025         Week 28 Year to date  Local authority    E92000001
#> 609         2025         Week 28 Year to date  Local authority    E92000001
#> 610         2025         Week 28 Year to date  Local authority    E92000001
#> 611         2025         Week 28 Year to date  Local authority    E92000001
#> 612         2025         Week 28 Year to date  Local authority    E92000001
#> 613         2025         Week 28 Year to date  Local authority    E92000001
#> 614         2025         Week 28 Year to date  Local authority    E92000001
#> 615         2025         Week 28 Year to date         Regional    E92000001
#> 616         2025         Week 28 Year to date         Regional    E92000001
#> 617         2025         Week 28 Year to date         Regional    E92000001
#> 618         2025         Week 28 Year to date         Regional    E92000001
#> 619         2025         Week 28 Year to date  Local authority    E92000001
#> 620         2025         Week 28 Year to date  Local authority    E92000001
#> 621         2025         Week 28 Year to date  Local authority    E92000001
#> 622         2025         Week 28 Year to date  Local authority    E92000001
#> 623         2025         Week 28 Year to date  Local authority    E92000001
#> 624         2025         Week 28 Year to date  Local authority    E92000001
#> 625         2025         Week 28 Year to date  Local authority    E92000001
#> 626         2025         Week 28 Year to date  Local authority    E92000001
#> 627         2025         Week 28 Year to date  Local authority    E92000001
#> 628         2025         Week 28 Year to date  Local authority    E92000001
#> 629         2025         Week 28 Year to date  Local authority    E92000001
#> 630         2025         Week 28 Year to date  Local authority    E92000001
#> 631         2025         Week 28 Year to date  Local authority    E92000001
#> 632         2025         Week 28 Year to date  Local authority    E92000001
#> 633         2025         Week 28 Year to date  Local authority    E92000001
#> 634         2025         Week 28 Year to date  Local authority    E92000001
#> 635         2025         Week 28 Year to date  Local authority    E92000001
#> 636         2025         Week 28 Year to date  Local authority    E92000001
#> 637         2025         Week 28 Year to date  Local authority    E92000001
#> 638         2025         Week 28 Year to date  Local authority    E92000001
#> 639         2025         Week 28 Year to date  Local authority    E92000001
#> 640         2025         Week 28 Year to date  Local authority    E92000001
#> 641         2025         Week 28 Year to date  Local authority    E92000001
#> 642         2025         Week 28 Year to date  Local authority    E92000001
#> 643         2025         Week 28 Year to date  Local authority    E92000001
#> 644         2025         Week 28 Year to date  Local authority    E92000001
#> 645         2025         Week 28 Year to date  Local authority    E92000001
#> 646         2025         Week 28 Year to date  Local authority    E92000001
#> 647         2025         Week 28 Year to date  Local authority    E92000001
#> 648         2025         Week 28 Year to date  Local authority    E92000001
#> 649         2025         Week 28 Year to date  Local authority    E92000001
#> 650         2025         Week 28 Year to date  Local authority    E92000001
#> 651         2025         Week 28 Year to date  Local authority    E92000001
#> 652         2025         Week 28 Year to date  Local authority    E92000001
#> 653         2025         Week 28 Year to date  Local authority    E92000001
#> 654         2025         Week 28 Year to date  Local authority    E92000001
#> 655         2025         Week 28 Year to date  Local authority    E92000001
#> 656         2025         Week 28 Year to date  Local authority    E92000001
#> 657         2025         Week 28 Year to date  Local authority    E92000001
#> 658         2025         Week 28 Year to date  Local authority    E92000001
#> 659         2025         Week 28 Year to date  Local authority    E92000001
#> 660         2025         Week 28 Year to date  Local authority    E92000001
#> 661         2025         Week 28 Year to date  Local authority    E92000001
#> 662         2025         Week 28 Year to date  Local authority    E92000001
#> 663         2025         Week 28 Year to date  Local authority    E92000001
#> 664         2025         Week 28 Year to date         Regional    E92000001
#> 665         2025         Week 28 Year to date         Regional    E92000001
#> 666         2025         Week 28 Year to date         Regional    E92000001
#> 667         2025         Week 28 Year to date         Regional    E92000001
#> 668         2025         Week 28 Year to date  Local authority    E92000001
#> 669         2025         Week 28 Year to date  Local authority    E92000001
#> 670         2025         Week 28 Year to date  Local authority    E92000001
#> 671         2025         Week 28 Year to date  Local authority    E92000001
#> 672         2025         Week 28 Year to date  Local authority    E92000001
#> 673         2025         Week 28 Year to date  Local authority    E92000001
#> 674         2025         Week 28 Year to date  Local authority    E92000001
#> 675         2025         Week 28 Year to date  Local authority    E92000001
#> 676         2025         Week 28 Year to date  Local authority    E92000001
#> 677         2025         Week 28 Year to date  Local authority    E92000001
#> 678         2025         Week 28 Year to date  Local authority    E92000001
#> 679         2025         Week 28 Year to date  Local authority    E92000001
#> 680         2025         Week 28 Year to date  Local authority    E92000001
#> 681         2025         Week 28 Year to date  Local authority    E92000001
#> 682         2025         Week 28 Year to date  Local authority    E92000001
#> 683         2025         Week 28 Year to date  Local authority    E92000001
#> 684         2025         Week 28 Year to date  Local authority    E92000001
#> 685         2025         Week 28 Year to date  Local authority    E92000001
#> 686         2025         Week 28 Year to date  Local authority    E92000001
#> 687         2025         Week 28 Year to date  Local authority    E92000001
#> 688         2025         Week 28 Year to date  Local authority    E92000001
#> 689         2025         Week 28 Year to date  Local authority    E92000001
#> 690         2025         Week 28 Year to date  Local authority    E92000001
#> 691         2025         Week 28 Year to date  Local authority    E92000001
#> 692         2025         Week 28 Year to date  Local authority    E92000001
#> 693         2025         Week 28 Year to date  Local authority    E92000001
#> 694         2025         Week 28 Year to date  Local authority    E92000001
#> 695         2025         Week 28 Year to date  Local authority    E92000001
#> 696         2025         Week 28 Year to date  Local authority    E92000001
#> 697         2025         Week 28 Year to date         Regional    E92000001
#> 698         2025         Week 28 Year to date         Regional    E92000001
#> 699         2025         Week 28 Year to date         Regional    E92000001
#> 700         2025         Week 28 Year to date         Regional    E92000001
#> 701         2025         Week 28 Year to date  Local authority    E92000001
#> 702         2025         Week 28 Year to date  Local authority    E92000001
#> 703         2025         Week 28 Year to date  Local authority    E92000001
#> 704         2025         Week 28 Year to date  Local authority    E92000001
#> 705         2025         Week 28 Year to date  Local authority    E92000001
#> 706         2025         Week 28 Year to date  Local authority    E92000001
#> 707         2025         Week 28 Year to date  Local authority    E92000001
#> 708         2025         Week 28 Year to date  Local authority    E92000001
#> 709         2025         Week 28 Year to date  Local authority    E92000001
#> 710         2025         Week 28 Year to date  Local authority    E92000001
#> 711         2025         Week 28 Year to date  Local authority    E92000001
#> 712         2025         Week 28 Year to date  Local authority    E92000001
#> 713         2025         Week 28 Year to date  Local authority    E92000001
#> 714         2025         Week 28 Year to date  Local authority    E92000001
#> 715         2025         Week 28 Year to date  Local authority    E92000001
#> 716         2025         Week 28 Year to date  Local authority    E92000001
#> 717         2025         Week 28 Year to date  Local authority    E92000001
#> 718         2025         Week 28 Year to date  Local authority    E92000001
#> 719         2025         Week 28 Year to date  Local authority    E92000001
#> 720         2025         Week 28 Year to date  Local authority    E92000001
#> 721         2025         Week 28 Year to date  Local authority    E92000001
#> 722         2025         Week 28 Year to date  Local authority    E92000001
#> 723         2025         Week 28 Year to date  Local authority    E92000001
#> 724         2025         Week 28 Year to date  Local authority    E92000001
#> 725         2025         Week 28 Year to date  Local authority    E92000001
#> 726         2025         Week 28 Year to date  Local authority    E92000001
#> 727         2025         Week 28 Year to date  Local authority    E92000001
#> 728         2025         Week 28 Year to date  Local authority    E92000001
#> 729         2025         Week 28 Year to date  Local authority    E92000001
#> 730         2025         Week 28 Year to date  Local authority    E92000001
#> 731         2025         Week 28 Year to date  Local authority    E92000001
#> 732         2025         Week 28 Year to date  Local authority    E92000001
#> 733         2025         Week 28 Year to date  Local authority    E92000001
#> 734         2025         Week 28 Year to date  Local authority    E92000001
#> 735         2025         Week 28 Year to date  Local authority    E92000001
#> 736         2025         Week 28 Year to date  Local authority    E92000001
#> 737         2025         Week 28 Year to date  Local authority    E92000001
#> 738         2025         Week 28 Year to date  Local authority    E92000001
#> 739         2025         Week 28 Year to date  Local authority    E92000001
#> 740         2025         Week 28 Year to date  Local authority    E92000001
#> 741         2025         Week 28 Year to date  Local authority    E92000001
#> 742         2025         Week 28 Year to date  Local authority    E92000001
#> 743         2025         Week 28 Year to date         Regional    E92000001
#> 744         2025         Week 28 Year to date         Regional    E92000001
#> 745         2025         Week 28 Year to date         Regional    E92000001
#> 746         2025         Week 28 Year to date         Regional    E92000001
#> 747         2025         Week 28 Year to date  Local authority    E92000001
#> 748         2025         Week 28 Year to date  Local authority    E92000001
#> 749         2025         Week 28 Year to date  Local authority    E92000001
#> 750         2025         Week 28 Year to date  Local authority    E92000001
#> 751         2025         Week 28 Year to date  Local authority    E92000001
#> 752         2025         Week 28 Year to date  Local authority    E92000001
#> 753         2025         Week 28 Year to date  Local authority    E92000001
#> 754         2025         Week 28 Year to date  Local authority    E92000001
#> 755         2025         Week 28 Year to date  Local authority    E92000001
#> 756         2025         Week 28 Year to date  Local authority    E92000001
#> 757         2025         Week 28 Year to date  Local authority    E92000001
#> 758         2025         Week 28 Year to date  Local authority    E92000001
#> 759         2025         Week 28 Year to date  Local authority    E92000001
#> 760         2025         Week 28 Year to date  Local authority    E92000001
#> 761         2025         Week 28 Year to date  Local authority    E92000001
#> 762         2025         Week 28 Year to date  Local authority    E92000001
#> 763         2025         Week 28 Year to date  Local authority    E92000001
#> 764         2025         Week 28 Year to date  Local authority    E92000001
#> 765         2025         Week 28 Year to date  Local authority    E92000001
#> 766         2025         Week 28 Year to date  Local authority    E92000001
#> 767         2025         Week 28 Year to date  Local authority    E92000001
#> 768         2025         Week 28 Year to date  Local authority    E92000001
#> 769         2025         Week 28 Year to date  Local authority    E92000001
#> 770         2025         Week 28 Year to date  Local authority    E92000001
#> 771         2025         Week 28 Year to date  Local authority    E92000001
#> 772         2025         Week 28 Year to date  Local authority    E92000001
#> 773         2025         Week 28 Year to date  Local authority    E92000001
#> 774         2025         Week 28 Year to date  Local authority    E92000001
#> 775         2025         Week 28 Year to date  Local authority    E92000001
#> 776         2025         Week 28 Year to date  Local authority    E92000001
#> 777         2025         Week 28 Year to date  Local authority    E92000001
#> 778         2025         Week 28 Year to date  Local authority    E92000001
#> 779         2025         Week 28 Year to date  Local authority    E92000001
#> 780         2025         Week 28 Year to date         Regional    E92000001
#> 781         2025         Week 28 Year to date         Regional    E92000001
#> 782         2025         Week 28 Year to date         Regional    E92000001
#> 783         2025         Week 28 Year to date         Regional    E92000001
#> 784         2025         Week 28 Year to date  Local authority    E92000001
#> 785         2025         Week 28 Year to date  Local authority    E92000001
#> 786         2025         Week 28 Year to date  Local authority    E92000001
#> 787         2025         Week 28 Year to date  Local authority    E92000001
#> 788         2025         Week 28 Year to date  Local authority    E92000001
#> 789         2025         Week 28 Year to date  Local authority    E92000001
#> 790         2025         Week 28 Year to date  Local authority    E92000001
#> 791         2025         Week 28 Year to date  Local authority    E92000001
#> 792         2025         Week 28 Year to date  Local authority    E92000001
#> 793         2025         Week 28 Year to date  Local authority    E92000001
#> 794         2025         Week 28 Year to date  Local authority    E92000001
#> 795         2025         Week 28 Year to date  Local authority    E92000001
#> 796         2025         Week 28 Year to date  Local authority    E92000001
#> 797         2025         Week 28 Year to date  Local authority    E92000001
#> 798         2025         Week 28 Year to date  Local authority    E92000001
#> 799         2025         Week 28 Year to date  Local authority    E92000001
#> 800         2025         Week 28 Year to date  Local authority    E92000001
#> 801         2025         Week 28 Year to date  Local authority    E92000001
#> 802         2025         Week 28 Year to date  Local authority    E92000001
#> 803         2025         Week 28 Year to date  Local authority    E92000001
#> 804         2025         Week 28 Year to date  Local authority    E92000001
#> 805         2025         Week 28 Year to date  Local authority    E92000001
#> 806         2025         Week 28 Year to date  Local authority    E92000001
#> 807         2025         Week 28 Year to date  Local authority    E92000001
#> 808         2025         Week 28 Year to date  Local authority    E92000001
#> 809         2025         Week 28 Year to date  Local authority    E92000001
#> 810         2025         Week 28 Year to date  Local authority    E92000001
#> 811         2025         Week 28 Year to date  Local authority    E92000001
#> 812         2025         Week 28 Year to date  Local authority    E92000001
#> 813         2025         Week 28 Year to date  Local authority    E92000001
#> 814         2025         Week 28 Year to date  Local authority    E92000001
#> 815         2025         Week 28 Year to date  Local authority    E92000001
#> 816         2025         Week 28 Year to date  Local authority    E92000001
#> 817         2025         Week 28 Year to date  Local authority    E92000001
#> 818         2025         Week 28 Year to date  Local authority    E92000001
#> 819         2025         Week 28 Year to date  Local authority    E92000001
#> 820         2025         Week 28 Year to date  Local authority    E92000001
#> 821         2025         Week 28 Year to date  Local authority    E92000001
#> 822         2025         Week 28 Year to date  Local authority    E92000001
#> 823         2025         Week 28 Year to date  Local authority    E92000001
#> 824         2025         Week 28 Year to date  Local authority    E92000001
#> 825         2025         Week 28 Year to date  Local authority    E92000001
#> 826         2025         Week 28 Year to date  Local authority    E92000001
#> 827         2025         Week 28 Year to date  Local authority    E92000001
#> 828         2025         Week 28 Year to date  Local authority    E92000001
#> 829         2025         Week 28 Year to date  Local authority    E92000001
#> 830         2025         Week 28 Year to date  Local authority    E92000001
#> 831         2025         Week 28 Year to date  Local authority    E92000001
#> 832         2025         Week 28 Year to date  Local authority    E92000001
#> 833         2025         Week 28 Year to date  Local authority    E92000001
#> 834         2025         Week 28 Year to date  Local authority    E92000001
#> 835         2025         Week 28 Year to date  Local authority    E92000001
#> 836         2025         Week 28 Year to date  Local authority    E92000001
#> 837         2025         Week 28 Year to date  Local authority    E92000001
#> 838         2025         Week 28 Year to date  Local authority    E92000001
#> 839         2025         Week 28 Year to date  Local authority    E92000001
#> 840         2025         Week 28 Year to date  Local authority    E92000001
#> 841         2025         Week 28 Year to date  Local authority    E92000001
#> 842         2025         Week 28 Year to date  Local authority    E92000001
#> 843         2025         Week 28 Year to date  Local authority    E92000001
#> 844         2025         Week 28 Year to date  Local authority    E92000001
#> 845         2025         Week 28 Year to date  Local authority    E92000001
#> 846         2025         Week 28 Year to date  Local authority    E92000001
#> 847         2025         Week 28 Year to date  Local authority    E92000001
#> 848         2025         Week 28 Year to date  Local authority    E92000001
#> 849         2025         Week 28 Year to date  Local authority    E92000001
#> 850         2025         Week 28 Year to date  Local authority    E92000001
#> 851         2025         Week 28 Year to date  Local authority    E92000001
#> 852         2025         Week 28 Year to date  Local authority    E92000001
#> 853         2025         Week 28 Year to date  Local authority    E92000001
#> 854         2025         Week 28 Year to date  Local authority    E92000001
#> 855         2025         Week 28 Year to date  Local authority    E92000001
#> 856         2025         Week 28 Year to date  Local authority    E92000001
#> 857         2025         Week 28 Year to date  Local authority    E92000001
#> 858         2025         Week 28 Year to date  Local authority    E92000001
#> 859         2025         Week 28 Year to date  Local authority    E92000001
#> 860         2025         Week 28 Year to date  Local authority    E92000001
#> 861         2025         Week 28 Year to date  Local authority    E92000001
#> 862         2025         Week 28 Year to date  Local authority    E92000001
#> 863         2025         Week 28 Year to date  Local authority    E92000001
#> 864         2025         Week 28 Year to date  Local authority    E92000001
#> 865         2025         Week 28 Year to date  Local authority    E92000001
#> 866         2025         Week 28 Year to date  Local authority    E92000001
#> 867         2025         Week 28 Year to date  Local authority    E92000001
#> 868         2025         Week 28 Year to date  Local authority    E92000001
#> 869         2025         Week 28 Year to date  Local authority    E92000001
#> 870         2025         Week 28 Year to date  Local authority    E92000001
#> 871         2025         Week 28 Year to date  Local authority    E92000001
#> 872         2025         Week 28 Year to date  Local authority    E92000001
#> 873         2025         Week 28 Year to date  Local authority    E92000001
#> 874         2025         Week 28 Year to date  Local authority    E92000001
#> 875         2025         Week 28 Year to date  Local authority    E92000001
#> 876         2025         Week 28 Year to date  Local authority    E92000001
#> 877         2025         Week 28 Year to date  Local authority    E92000001
#> 878         2025         Week 28 Year to date  Local authority    E92000001
#> 879         2025         Week 28 Year to date  Local authority    E92000001
#> 880         2025         Week 28 Year to date  Local authority    E92000001
#> 881         2025         Week 28 Year to date         Regional    E92000001
#> 882         2025         Week 28 Year to date         Regional    E92000001
#> 883         2025         Week 28 Year to date         Regional    E92000001
#> 884         2025         Week 28 Year to date         Regional    E92000001
#> 885         2025         Week 28 Year to date  Local authority    E92000001
#> 886         2025         Week 28 Year to date  Local authority    E92000001
#> 887         2025         Week 28 Year to date  Local authority    E92000001
#> 888         2025         Week 28 Year to date  Local authority    E92000001
#> 889         2025         Week 28 Year to date  Local authority    E92000001
#> 890         2025         Week 28 Year to date  Local authority    E92000001
#> 891         2025         Week 28 Year to date  Local authority    E92000001
#> 892         2025         Week 28 Year to date  Local authority    E92000001
#> 893         2025         Week 28 Year to date  Local authority    E92000001
#> 894         2025         Week 28 Year to date  Local authority    E92000001
#> 895         2025         Week 28 Year to date  Local authority    E92000001
#> 896         2025         Week 28 Year to date  Local authority    E92000001
#> 897         2025         Week 28 Year to date  Local authority    E92000001
#> 898         2025         Week 28 Year to date  Local authority    E92000001
#> 899         2025         Week 28 Year to date  Local authority    E92000001
#> 900         2025         Week 28 Year to date  Local authority    E92000001
#> 901         2025         Week 28 Year to date  Local authority    E92000001
#> 902         2025         Week 28 Year to date  Local authority    E92000001
#> 903         2025         Week 28 Year to date  Local authority    E92000001
#> 904         2025         Week 28 Year to date  Local authority    E92000001
#> 905         2025         Week 28 Year to date  Local authority    E92000001
#> 906         2025         Week 28 Year to date  Local authority    E92000001
#> 907         2025         Week 28 Year to date  Local authority    E92000001
#> 908         2025         Week 28 Year to date  Local authority    E92000001
#> 909         2025         Week 28 Year to date  Local authority    E92000001
#> 910         2025         Week 28 Year to date  Local authority    E92000001
#> 911         2025         Week 28 Year to date  Local authority    E92000001
#> 912         2025         Week 28 Year to date  Local authority    E92000001
#> 913         2025         Week 28 Year to date  Local authority    E92000001
#> 914         2025         Week 28 Year to date  Local authority    E92000001
#> 915         2025         Week 28 Year to date  Local authority    E92000001
#> 916         2025         Week 28 Year to date  Local authority    E92000001
#> 917         2025         Week 28 Year to date  Local authority    E92000001
#> 918         2025         Week 28 Year to date  Local authority    E92000001
#> 919         2025         Week 28 Year to date  Local authority    E92000001
#> 920         2025         Week 28 Year to date  Local authority    E92000001
#> 921         2025         Week 28 Year to date  Local authority    E92000001
#> 922         2025         Week 28 Year to date  Local authority    E92000001
#> 923         2025         Week 28 Year to date  Local authority    E92000001
#> 924         2025         Week 28 Year to date  Local authority    E92000001
#> 925         2025         Week 28 Year to date  Local authority    E92000001
#> 926         2025         Week 28 Year to date  Local authority    E92000001
#> 927         2025         Week 28 Year to date  Local authority    E92000001
#> 928         2025         Week 28 Year to date  Local authority    E92000001
#> 929         2025         Week 28 Year to date  Local authority    E92000001
#> 930         2025         Week 28 Year to date  Local authority    E92000001
#> 931         2025         Week 28 Year to date  Local authority    E92000001
#> 932         2025         Week 28 Year to date  Local authority    E92000001
#> 933         2025         Week 28 Year to date  Local authority    E92000001
#> 934         2025         Week 28 Year to date  Local authority    E92000001
#> 935         2025         Week 28 Year to date  Local authority    E92000001
#> 936         2025         Week 28 Year to date  Local authority    E92000001
#> 937         2025         Week 28 Year to date  Local authority    E92000001
#> 938         2025         Week 28 Year to date  Local authority    E92000001
#> 939         2025         Week 28 Year to date  Local authority    E92000001
#> 940         2025         Week 28 Year to date  Local authority    E92000001
#> 941         2025         Week 28 Year to date  Local authority    E92000001
#> 942         2025         Week 28 Year to date         Regional    E92000001
#> 943         2025         Week 28 Year to date         Regional    E92000001
#> 944         2025         Week 28 Year to date         Regional    E92000001
#> 945         2025         Week 28 Year to date         Regional    E92000001
#> 946         2025         Week 28 Year to date  Local authority    E92000001
#> 947         2025         Week 28 Year to date  Local authority    E92000001
#> 948         2025         Week 28 Year to date  Local authority    E92000001
#> 949         2025         Week 28 Year to date  Local authority    E92000001
#> 950         2025         Week 28 Year to date  Local authority    E92000001
#> 951         2025         Week 28 Year to date  Local authority    E92000001
#> 952         2025         Week 28 Year to date  Local authority    E92000001
#> 953         2025         Week 28 Year to date  Local authority    E92000001
#> 954         2025         Week 28 Year to date  Local authority    E92000001
#> 955         2025         Week 28 Year to date  Local authority    E92000001
#> 956         2025         Week 28 Year to date  Local authority    E92000001
#> 957         2025         Week 28 Year to date  Local authority    E92000001
#> 958         2025         Week 28 Year to date  Local authority    E92000001
#> 959         2025         Week 28 Year to date  Local authority    E92000001
#> 960         2025         Week 28 Year to date  Local authority    E92000001
#> 961         2025         Week 28 Year to date  Local authority    E92000001
#> 962         2025         Week 28 Year to date  Local authority    E92000001
#> 963         2025         Week 28 Year to date  Local authority    E92000001
#> 964         2025         Week 28 Year to date  Local authority    E92000001
#> 965         2025         Week 28 Year to date  Local authority    E92000001
#> 966         2025         Week 28 Year to date  Local authority    E92000001
#> 967         2025         Week 28 Year to date  Local authority    E92000001
#> 968         2025         Week 28 Year to date  Local authority    E92000001
#> 969         2025         Week 28 Year to date  Local authority    E92000001
#> 970         2025         Week 28 Year to date  Local authority    E92000001
#> 971         2025         Week 28 Year to date  Local authority    E92000001
#> 972         2025         Week 28 Year to date  Local authority    E92000001
#> 973         2025         Week 28 Year to date  Local authority    E92000001
#> 974         2025         Week 28 Year to date  Local authority    E92000001
#> 975         2025         Week 28 Year to date  Local authority    E92000001
#> 976         2025         Week 28 Year to date  Local authority    E92000001
#> 977         2025         Week 28 Year to date  Local authority    E92000001
#> 978         2025         Week 28 Year to date  Local authority    E92000001
#> 979         2025         Week 28 Year to date  Local authority    E92000001
#> 980         2025         Week 28 Year to date  Local authority    E92000001
#> 981         2025         Week 28 Year to date  Local authority    E92000001
#> 982         2025         Week 28 Year to date  Local authority    E92000001
#> 983         2025         Week 28 Year to date  Local authority    E92000001
#> 984         2025         Week 28 Year to date  Local authority    E92000001
#> 985         2025         Week 28 Year to date  Local authority    E92000001
#> 986         2025         Week 28 Year to date  Local authority    E92000001
#> 987         2025         Week 28 Year to date  Local authority    E92000001
#> 988         2025         Week 28 Year to date  Local authority    E92000001
#> 989         2025         Week 26 Year to date         National    E92000001
#> 990         2025         Week 26 Year to date         National    E92000001
#> 991         2025         Week 26 Year to date         National    E92000001
#> 992         2025         Week 26 Year to date         National    E92000001
#> 993         2025         Week 26 Year to date         Regional    E92000001
#> 994         2025         Week 26 Year to date         Regional    E92000001
#> 995         2025         Week 26 Year to date         Regional    E92000001
#> 996         2025         Week 26 Year to date         Regional    E92000001
#> 997         2025         Week 26 Year to date  Local authority    E92000001
#> 998         2025         Week 26 Year to date  Local authority    E92000001
#> 999         2025         Week 26 Year to date  Local authority    E92000001
#> 1000        2025         Week 26 Year to date  Local authority    E92000001
#> 1001        2025         Week 26 Year to date  Local authority    E92000001
#> 1002        2025         Week 26 Year to date  Local authority    E92000001
#> 1003        2025         Week 26 Year to date  Local authority    E92000001
#> 1004        2025         Week 26 Year to date  Local authority    E92000001
#> 1005        2025         Week 26 Year to date  Local authority    E92000001
#> 1006        2025         Week 26 Year to date  Local authority    E92000001
#> 1007        2025         Week 26 Year to date  Local authority    E92000001
#> 1008        2025         Week 26 Year to date  Local authority    E92000001
#> 1009        2025         Week 26 Year to date  Local authority    E92000001
#> 1010        2025         Week 26 Year to date  Local authority    E92000001
#> 1011        2025         Week 26 Year to date  Local authority    E92000001
#> 1012        2025         Week 26 Year to date  Local authority    E92000001
#> 1013        2025         Week 26 Year to date  Local authority    E92000001
#> 1014        2025         Week 26 Year to date  Local authority    E92000001
#> 1015        2025         Week 26 Year to date  Local authority    E92000001
#> 1016        2025         Week 26 Year to date  Local authority    E92000001
#> 1017        2025         Week 26 Year to date  Local authority    E92000001
#> 1018        2025         Week 26 Year to date  Local authority    E92000001
#> 1019        2025         Week 26 Year to date  Local authority    E92000001
#> 1020        2025         Week 26 Year to date  Local authority    E92000001
#> 1021        2025         Week 26 Year to date  Local authority    E92000001
#> 1022        2025         Week 26 Year to date  Local authority    E92000001
#> 1023        2025         Week 26 Year to date  Local authority    E92000001
#> 1024        2025         Week 26 Year to date  Local authority    E92000001
#> 1025        2025         Week 26 Year to date  Local authority    E92000001
#> 1026        2025         Week 26 Year to date  Local authority    E92000001
#> 1027        2025         Week 26 Year to date  Local authority    E92000001
#> 1028        2025         Week 26 Year to date  Local authority    E92000001
#> 1029        2025         Week 26 Year to date  Local authority    E92000001
#> 1030        2025         Week 26 Year to date  Local authority    E92000001
#> 1031        2025         Week 26 Year to date  Local authority    E92000001
#> 1032        2025         Week 26 Year to date  Local authority    E92000001
#> 1033        2025         Week 26 Year to date         Regional    E92000001
#> 1034        2025         Week 26 Year to date         Regional    E92000001
#> 1035        2025         Week 26 Year to date         Regional    E92000001
#> 1036        2025         Week 26 Year to date         Regional    E92000001
#> 1037        2025         Week 26 Year to date  Local authority    E92000001
#> 1038        2025         Week 26 Year to date  Local authority    E92000001
#> 1039        2025         Week 26 Year to date  Local authority    E92000001
#> 1040        2025         Week 26 Year to date  Local authority    E92000001
#> 1041        2025         Week 26 Year to date  Local authority    E92000001
#> 1042        2025         Week 26 Year to date  Local authority    E92000001
#> 1043        2025         Week 26 Year to date  Local authority    E92000001
#> 1044        2025         Week 26 Year to date  Local authority    E92000001
#> 1045        2025         Week 26 Year to date  Local authority    E92000001
#> 1046        2025         Week 26 Year to date  Local authority    E92000001
#> 1047        2025         Week 26 Year to date  Local authority    E92000001
#> 1048        2025         Week 26 Year to date  Local authority    E92000001
#> 1049        2025         Week 26 Year to date  Local authority    E92000001
#> 1050        2025         Week 26 Year to date  Local authority    E92000001
#> 1051        2025         Week 26 Year to date  Local authority    E92000001
#> 1052        2025         Week 26 Year to date  Local authority    E92000001
#> 1053        2025         Week 26 Year to date  Local authority    E92000001
#> 1054        2025         Week 26 Year to date  Local authority    E92000001
#> 1055        2025         Week 26 Year to date  Local authority    E92000001
#> 1056        2025         Week 26 Year to date  Local authority    E92000001
#> 1057        2025         Week 26 Year to date  Local authority    E92000001
#> 1058        2025         Week 26 Year to date  Local authority    E92000001
#> 1059        2025         Week 26 Year to date  Local authority    E92000001
#> 1060        2025         Week 26 Year to date  Local authority    E92000001
#> 1061        2025         Week 26 Year to date  Local authority    E92000001
#> 1062        2025         Week 26 Year to date  Local authority    E92000001
#> 1063        2025         Week 26 Year to date  Local authority    E92000001
#> 1064        2025         Week 26 Year to date  Local authority    E92000001
#> 1065        2025         Week 26 Year to date  Local authority    E92000001
#> 1066        2025         Week 26 Year to date  Local authority    E92000001
#> 1067        2025         Week 26 Year to date  Local authority    E92000001
#> 1068        2025         Week 26 Year to date  Local authority    E92000001
#> 1069        2025         Week 26 Year to date  Local authority    E92000001
#> 1070        2025         Week 26 Year to date  Local authority    E92000001
#> 1071        2025         Week 26 Year to date  Local authority    E92000001
#> 1072        2025         Week 26 Year to date  Local authority    E92000001
#> 1073        2025         Week 26 Year to date  Local authority    E92000001
#> 1074        2025         Week 26 Year to date  Local authority    E92000001
#> 1075        2025         Week 26 Year to date  Local authority    E92000001
#> 1076        2025         Week 26 Year to date  Local authority    E92000001
#> 1077        2025         Week 26 Year to date  Local authority    E92000001
#> 1078        2025         Week 26 Year to date  Local authority    E92000001
#> 1079        2025         Week 26 Year to date  Local authority    E92000001
#> 1080        2025         Week 26 Year to date  Local authority    E92000001
#> 1081        2025         Week 26 Year to date  Local authority    E92000001
#> 1082        2025         Week 26 Year to date  Local authority    E92000001
#> 1083        2025         Week 26 Year to date  Local authority    E92000001
#> 1084        2025         Week 26 Year to date  Local authority    E92000001
#> 1085        2025         Week 26 Year to date  Local authority    E92000001
#> 1086        2025         Week 26 Year to date  Local authority    E92000001
#> 1087        2025         Week 26 Year to date  Local authority    E92000001
#> 1088        2025         Week 26 Year to date  Local authority    E92000001
#> 1089        2025         Week 26 Year to date  Local authority    E92000001
#> 1090        2025         Week 26 Year to date  Local authority    E92000001
#> 1091        2025         Week 26 Year to date  Local authority    E92000001
#> 1092        2025         Week 26 Year to date  Local authority    E92000001
#> 1093        2025         Week 26 Year to date  Local authority    E92000001
#> 1094        2025         Week 26 Year to date  Local authority    E92000001
#> 1095        2025         Week 26 Year to date  Local authority    E92000001
#> 1096        2025         Week 26 Year to date  Local authority    E92000001
#> 1097        2025         Week 26 Year to date  Local authority    E92000001
#> 1098        2025         Week 26 Year to date  Local authority    E92000001
#> 1099        2025         Week 26 Year to date  Local authority    E92000001
#> 1100        2025         Week 26 Year to date  Local authority    E92000001
#> 1101        2025         Week 26 Year to date  Local authority    E92000001
#> 1102        2025         Week 26 Year to date  Local authority    E92000001
#> 1103        2025         Week 26 Year to date  Local authority    E92000001
#> 1104        2025         Week 26 Year to date  Local authority    E92000001
#> 1105        2025         Week 26 Year to date  Local authority    E92000001
#> 1106        2025         Week 26 Year to date  Local authority    E92000001
#> 1107        2025         Week 26 Year to date  Local authority    E92000001
#> 1108        2025         Week 26 Year to date  Local authority    E92000001
#> 1109        2025         Week 26 Year to date         Regional    E92000001
#> 1110        2025         Week 26 Year to date         Regional    E92000001
#> 1111        2025         Week 26 Year to date         Regional    E92000001
#> 1112        2025         Week 26 Year to date         Regional    E92000001
#> 1113        2025         Week 26 Year to date  Local authority    E92000001
#> 1114        2025         Week 26 Year to date  Local authority    E92000001
#> 1115        2025         Week 26 Year to date  Local authority    E92000001
#> 1116        2025         Week 26 Year to date  Local authority    E92000001
#> 1117        2025         Week 26 Year to date  Local authority    E92000001
#> 1118        2025         Week 26 Year to date  Local authority    E92000001
#> 1119        2025         Week 26 Year to date  Local authority    E92000001
#> 1120        2025         Week 26 Year to date  Local authority    E92000001
#> 1121        2025         Week 26 Year to date  Local authority    E92000001
#> 1122        2025         Week 26 Year to date  Local authority    E92000001
#> 1123        2025         Week 26 Year to date  Local authority    E92000001
#> 1124        2025         Week 26 Year to date  Local authority    E92000001
#> 1125        2025         Week 26 Year to date  Local authority    E92000001
#> 1126        2025         Week 26 Year to date  Local authority    E92000001
#> 1127        2025         Week 26 Year to date  Local authority    E92000001
#> 1128        2025         Week 26 Year to date  Local authority    E92000001
#> 1129        2025         Week 26 Year to date  Local authority    E92000001
#> 1130        2025         Week 26 Year to date  Local authority    E92000001
#> 1131        2025         Week 26 Year to date  Local authority    E92000001
#> 1132        2025         Week 26 Year to date  Local authority    E92000001
#> 1133        2025         Week 26 Year to date  Local authority    E92000001
#> 1134        2025         Week 26 Year to date  Local authority    E92000001
#> 1135        2025         Week 26 Year to date  Local authority    E92000001
#> 1136        2025         Week 26 Year to date  Local authority    E92000001
#> 1137        2025         Week 26 Year to date  Local authority    E92000001
#> 1138        2025         Week 26 Year to date  Local authority    E92000001
#> 1139        2025         Week 26 Year to date  Local authority    E92000001
#> 1140        2025         Week 26 Year to date  Local authority    E92000001
#> 1141        2025         Week 26 Year to date  Local authority    E92000001
#> 1142        2025         Week 26 Year to date  Local authority    E92000001
#> 1143        2025         Week 26 Year to date  Local authority    E92000001
#> 1144        2025         Week 26 Year to date  Local authority    E92000001
#> 1145        2025         Week 26 Year to date  Local authority    E92000001
#> 1146        2025         Week 26 Year to date  Local authority    E92000001
#> 1147        2025         Week 26 Year to date  Local authority    E92000001
#> 1148        2025         Week 26 Year to date  Local authority    E92000001
#> 1149        2025         Week 26 Year to date  Local authority    E92000001
#> 1150        2025         Week 26 Year to date  Local authority    E92000001
#> 1151        2025         Week 26 Year to date  Local authority    E92000001
#> 1152        2025         Week 26 Year to date  Local authority    E92000001
#> 1153        2025         Week 26 Year to date  Local authority    E92000001
#> 1154        2025         Week 26 Year to date  Local authority    E92000001
#> 1155        2025         Week 26 Year to date  Local authority    E92000001
#> 1156        2025         Week 26 Year to date  Local authority    E92000001
#> 1157        2025         Week 26 Year to date  Local authority    E92000001
#> 1158        2025         Week 26 Year to date         Regional    E92000001
#> 1159        2025         Week 26 Year to date         Regional    E92000001
#> 1160        2025         Week 26 Year to date         Regional    E92000001
#> 1161        2025         Week 26 Year to date         Regional    E92000001
#> 1162        2025         Week 26 Year to date  Local authority    E92000001
#> 1163        2025         Week 26 Year to date  Local authority    E92000001
#> 1164        2025         Week 26 Year to date  Local authority    E92000001
#> 1165        2025         Week 26 Year to date  Local authority    E92000001
#> 1166        2025         Week 26 Year to date  Local authority    E92000001
#> 1167        2025         Week 26 Year to date  Local authority    E92000001
#> 1168        2025         Week 26 Year to date  Local authority    E92000001
#> 1169        2025         Week 26 Year to date  Local authority    E92000001
#> 1170        2025         Week 26 Year to date  Local authority    E92000001
#> 1171        2025         Week 26 Year to date  Local authority    E92000001
#> 1172        2025         Week 26 Year to date  Local authority    E92000001
#> 1173        2025         Week 26 Year to date  Local authority    E92000001
#> 1174        2025         Week 26 Year to date  Local authority    E92000001
#> 1175        2025         Week 26 Year to date  Local authority    E92000001
#> 1176        2025         Week 26 Year to date  Local authority    E92000001
#> 1177        2025         Week 26 Year to date  Local authority    E92000001
#> 1178        2025         Week 26 Year to date  Local authority    E92000001
#> 1179        2025         Week 26 Year to date  Local authority    E92000001
#> 1180        2025         Week 26 Year to date  Local authority    E92000001
#> 1181        2025         Week 26 Year to date  Local authority    E92000001
#> 1182        2025         Week 26 Year to date  Local authority    E92000001
#> 1183        2025         Week 26 Year to date  Local authority    E92000001
#> 1184        2025         Week 26 Year to date  Local authority    E92000001
#> 1185        2025         Week 26 Year to date  Local authority    E92000001
#> 1186        2025         Week 26 Year to date  Local authority    E92000001
#> 1187        2025         Week 26 Year to date  Local authority    E92000001
#> 1188        2025         Week 26 Year to date  Local authority    E92000001
#> 1189        2025         Week 26 Year to date  Local authority    E92000001
#> 1190        2025         Week 26 Year to date  Local authority    E92000001
#> 1191        2025         Week 26 Year to date         Regional    E92000001
#> 1192        2025         Week 26 Year to date         Regional    E92000001
#> 1193        2025         Week 26 Year to date         Regional    E92000001
#> 1194        2025         Week 26 Year to date         Regional    E92000001
#> 1195        2025         Week 26 Year to date  Local authority    E92000001
#> 1196        2025         Week 26 Year to date  Local authority    E92000001
#> 1197        2025         Week 26 Year to date  Local authority    E92000001
#> 1198        2025         Week 26 Year to date  Local authority    E92000001
#> 1199        2025         Week 26 Year to date  Local authority    E92000001
#> 1200        2025         Week 26 Year to date  Local authority    E92000001
#> 1201        2025         Week 26 Year to date  Local authority    E92000001
#> 1202        2025         Week 26 Year to date  Local authority    E92000001
#> 1203        2025         Week 26 Year to date  Local authority    E92000001
#> 1204        2025         Week 26 Year to date  Local authority    E92000001
#> 1205        2025         Week 26 Year to date  Local authority    E92000001
#> 1206        2025         Week 26 Year to date  Local authority    E92000001
#> 1207        2025         Week 26 Year to date  Local authority    E92000001
#> 1208        2025         Week 26 Year to date  Local authority    E92000001
#> 1209        2025         Week 26 Year to date  Local authority    E92000001
#> 1210        2025         Week 26 Year to date  Local authority    E92000001
#> 1211        2025         Week 26 Year to date  Local authority    E92000001
#> 1212        2025         Week 26 Year to date  Local authority    E92000001
#> 1213        2025         Week 26 Year to date  Local authority    E92000001
#> 1214        2025         Week 26 Year to date  Local authority    E92000001
#> 1215        2025         Week 26 Year to date  Local authority    E92000001
#> 1216        2025         Week 26 Year to date  Local authority    E92000001
#> 1217        2025         Week 26 Year to date  Local authority    E92000001
#> 1218        2025         Week 26 Year to date  Local authority    E92000001
#> 1219        2025         Week 26 Year to date  Local authority    E92000001
#> 1220        2025         Week 26 Year to date  Local authority    E92000001
#> 1221        2025         Week 26 Year to date  Local authority    E92000001
#> 1222        2025         Week 26 Year to date  Local authority    E92000001
#> 1223        2025         Week 26 Year to date  Local authority    E92000001
#> 1224        2025         Week 26 Year to date  Local authority    E92000001
#> 1225        2025         Week 26 Year to date  Local authority    E92000001
#> 1226        2025         Week 26 Year to date  Local authority    E92000001
#> 1227        2025         Week 26 Year to date  Local authority    E92000001
#> 1228        2025         Week 26 Year to date  Local authority    E92000001
#> 1229        2025         Week 26 Year to date  Local authority    E92000001
#> 1230        2025         Week 26 Year to date  Local authority    E92000001
#> 1231        2025         Week 26 Year to date  Local authority    E92000001
#> 1232        2025         Week 26 Year to date  Local authority    E92000001
#> 1233        2025         Week 26 Year to date  Local authority    E92000001
#> 1234        2025         Week 26 Year to date  Local authority    E92000001
#> 1235        2025         Week 26 Year to date  Local authority    E92000001
#> 1236        2025         Week 26 Year to date  Local authority    E92000001
#> 1237        2025         Week 26 Year to date         Regional    E92000001
#> 1238        2025         Week 26 Year to date         Regional    E92000001
#> 1239        2025         Week 26 Year to date         Regional    E92000001
#> 1240        2025         Week 26 Year to date         Regional    E92000001
#> 1241        2025         Week 26 Year to date  Local authority    E92000001
#> 1242        2025         Week 26 Year to date  Local authority    E92000001
#> 1243        2025         Week 26 Year to date  Local authority    E92000001
#> 1244        2025         Week 26 Year to date  Local authority    E92000001
#> 1245        2025         Week 26 Year to date  Local authority    E92000001
#> 1246        2025         Week 26 Year to date  Local authority    E92000001
#> 1247        2025         Week 26 Year to date  Local authority    E92000001
#> 1248        2025         Week 26 Year to date  Local authority    E92000001
#> 1249        2025         Week 26 Year to date  Local authority    E92000001
#> 1250        2025         Week 26 Year to date  Local authority    E92000001
#> 1251        2025         Week 26 Year to date  Local authority    E92000001
#> 1252        2025         Week 26 Year to date  Local authority    E92000001
#> 1253        2025         Week 26 Year to date  Local authority    E92000001
#> 1254        2025         Week 26 Year to date  Local authority    E92000001
#> 1255        2025         Week 26 Year to date  Local authority    E92000001
#> 1256        2025         Week 26 Year to date  Local authority    E92000001
#> 1257        2025         Week 26 Year to date  Local authority    E92000001
#> 1258        2025         Week 26 Year to date  Local authority    E92000001
#> 1259        2025         Week 26 Year to date  Local authority    E92000001
#> 1260        2025         Week 26 Year to date  Local authority    E92000001
#> 1261        2025         Week 26 Year to date  Local authority    E92000001
#> 1262        2025         Week 26 Year to date  Local authority    E92000001
#> 1263        2025         Week 26 Year to date  Local authority    E92000001
#> 1264        2025         Week 26 Year to date  Local authority    E92000001
#> 1265        2025         Week 26 Year to date  Local authority    E92000001
#> 1266        2025         Week 26 Year to date  Local authority    E92000001
#> 1267        2025         Week 26 Year to date  Local authority    E92000001
#> 1268        2025         Week 26 Year to date  Local authority    E92000001
#> 1269        2025         Week 26 Year to date  Local authority    E92000001
#> 1270        2025         Week 26 Year to date  Local authority    E92000001
#> 1271        2025         Week 26 Year to date  Local authority    E92000001
#> 1272        2025         Week 26 Year to date  Local authority    E92000001
#> 1273        2025         Week 26 Year to date  Local authority    E92000001
#> 1274        2025         Week 26 Year to date         Regional    E92000001
#> 1275        2025         Week 26 Year to date         Regional    E92000001
#> 1276        2025         Week 26 Year to date         Regional    E92000001
#> 1277        2025         Week 26 Year to date         Regional    E92000001
#> 1278        2025         Week 26 Year to date  Local authority    E92000001
#> 1279        2025         Week 26 Year to date  Local authority    E92000001
#> 1280        2025         Week 26 Year to date  Local authority    E92000001
#> 1281        2025         Week 26 Year to date  Local authority    E92000001
#> 1282        2025         Week 26 Year to date  Local authority    E92000001
#> 1283        2025         Week 26 Year to date  Local authority    E92000001
#> 1284        2025         Week 26 Year to date  Local authority    E92000001
#> 1285        2025         Week 26 Year to date  Local authority    E92000001
#> 1286        2025         Week 26 Year to date  Local authority    E92000001
#> 1287        2025         Week 26 Year to date  Local authority    E92000001
#> 1288        2025         Week 26 Year to date  Local authority    E92000001
#> 1289        2025         Week 26 Year to date  Local authority    E92000001
#> 1290        2025         Week 26 Year to date  Local authority    E92000001
#> 1291        2025         Week 26 Year to date  Local authority    E92000001
#> 1292        2025         Week 26 Year to date  Local authority    E92000001
#> 1293        2025         Week 26 Year to date  Local authority    E92000001
#> 1294        2025         Week 26 Year to date  Local authority    E92000001
#> 1295        2025         Week 26 Year to date  Local authority    E92000001
#> 1296        2025         Week 26 Year to date  Local authority    E92000001
#> 1297        2025         Week 26 Year to date  Local authority    E92000001
#> 1298        2025         Week 26 Year to date  Local authority    E92000001
#> 1299        2025         Week 26 Year to date  Local authority    E92000001
#> 1300        2025         Week 26 Year to date  Local authority    E92000001
#> 1301        2025         Week 26 Year to date  Local authority    E92000001
#> 1302        2025         Week 26 Year to date  Local authority    E92000001
#> 1303        2025         Week 26 Year to date  Local authority    E92000001
#> 1304        2025         Week 26 Year to date  Local authority    E92000001
#> 1305        2025         Week 26 Year to date  Local authority    E92000001
#> 1306        2025         Week 26 Year to date  Local authority    E92000001
#> 1307        2025         Week 26 Year to date  Local authority    E92000001
#> 1308        2025         Week 26 Year to date  Local authority    E92000001
#> 1309        2025         Week 26 Year to date  Local authority    E92000001
#> 1310        2025         Week 26 Year to date  Local authority    E92000001
#> 1311        2025         Week 26 Year to date  Local authority    E92000001
#> 1312        2025         Week 26 Year to date  Local authority    E92000001
#> 1313        2025         Week 26 Year to date  Local authority    E92000001
#> 1314        2025         Week 26 Year to date  Local authority    E92000001
#> 1315        2025         Week 26 Year to date  Local authority    E92000001
#> 1316        2025         Week 26 Year to date  Local authority    E92000001
#> 1317        2025         Week 26 Year to date  Local authority    E92000001
#> 1318        2025         Week 26 Year to date  Local authority    E92000001
#> 1319        2025         Week 26 Year to date  Local authority    E92000001
#> 1320        2025         Week 26 Year to date  Local authority    E92000001
#> 1321        2025         Week 26 Year to date  Local authority    E92000001
#> 1322        2025         Week 26 Year to date  Local authority    E92000001
#> 1323        2025         Week 26 Year to date  Local authority    E92000001
#> 1324        2025         Week 26 Year to date  Local authority    E92000001
#> 1325        2025         Week 26 Year to date  Local authority    E92000001
#> 1326        2025         Week 26 Year to date  Local authority    E92000001
#> 1327        2025         Week 26 Year to date  Local authority    E92000001
#> 1328        2025         Week 26 Year to date  Local authority    E92000001
#> 1329        2025         Week 26 Year to date  Local authority    E92000001
#> 1330        2025         Week 26 Year to date  Local authority    E92000001
#> 1331        2025         Week 26 Year to date  Local authority    E92000001
#> 1332        2025         Week 26 Year to date  Local authority    E92000001
#> 1333        2025         Week 26 Year to date  Local authority    E92000001
#> 1334        2025         Week 26 Year to date  Local authority    E92000001
#> 1335        2025         Week 26 Year to date  Local authority    E92000001
#> 1336        2025         Week 26 Year to date  Local authority    E92000001
#> 1337        2025         Week 26 Year to date  Local authority    E92000001
#> 1338        2025         Week 26 Year to date  Local authority    E92000001
#> 1339        2025         Week 26 Year to date  Local authority    E92000001
#> 1340        2025         Week 26 Year to date  Local authority    E92000001
#> 1341        2025         Week 26 Year to date  Local authority    E92000001
#> 1342        2025         Week 26 Year to date  Local authority    E92000001
#> 1343        2025         Week 26 Year to date  Local authority    E92000001
#> 1344        2025         Week 26 Year to date  Local authority    E92000001
#> 1345        2025         Week 26 Year to date  Local authority    E92000001
#> 1346        2025         Week 26 Year to date  Local authority    E92000001
#> 1347        2025         Week 26 Year to date  Local authority    E92000001
#> 1348        2025         Week 26 Year to date  Local authority    E92000001
#> 1349        2025         Week 26 Year to date  Local authority    E92000001
#> 1350        2025         Week 26 Year to date  Local authority    E92000001
#> 1351        2025         Week 26 Year to date  Local authority    E92000001
#> 1352        2025         Week 26 Year to date  Local authority    E92000001
#> 1353        2025         Week 26 Year to date  Local authority    E92000001
#> 1354        2025         Week 26 Year to date  Local authority    E92000001
#> 1355        2025         Week 26 Year to date  Local authority    E92000001
#> 1356        2025         Week 26 Year to date  Local authority    E92000001
#> 1357        2025         Week 26 Year to date  Local authority    E92000001
#> 1358        2025         Week 26 Year to date  Local authority    E92000001
#> 1359        2025         Week 26 Year to date  Local authority    E92000001
#> 1360        2025         Week 26 Year to date  Local authority    E92000001
#> 1361        2025         Week 26 Year to date  Local authority    E92000001
#> 1362        2025         Week 26 Year to date  Local authority    E92000001
#> 1363        2025         Week 26 Year to date  Local authority    E92000001
#> 1364        2025         Week 26 Year to date  Local authority    E92000001
#> 1365        2025         Week 26 Year to date  Local authority    E92000001
#> 1366        2025         Week 26 Year to date  Local authority    E92000001
#> 1367        2025         Week 26 Year to date  Local authority    E92000001
#> 1368        2025         Week 26 Year to date  Local authority    E92000001
#> 1369        2025         Week 26 Year to date  Local authority    E92000001
#> 1370        2025         Week 26 Year to date  Local authority    E92000001
#> 1371        2025         Week 26 Year to date  Local authority    E92000001
#> 1372        2025         Week 26 Year to date  Local authority    E92000001
#> 1373        2025         Week 26 Year to date  Local authority    E92000001
#> 1374        2025         Week 26 Year to date  Local authority    E92000001
#> 1375        2025         Week 26 Year to date         Regional    E92000001
#> 1376        2025         Week 26 Year to date         Regional    E92000001
#> 1377        2025         Week 26 Year to date         Regional    E92000001
#> 1378        2025         Week 26 Year to date         Regional    E92000001
#> 1379        2025         Week 26 Year to date  Local authority    E92000001
#> 1380        2025         Week 26 Year to date  Local authority    E92000001
#> 1381        2025         Week 26 Year to date  Local authority    E92000001
#> 1382        2025         Week 26 Year to date  Local authority    E92000001
#> 1383        2025         Week 26 Year to date  Local authority    E92000001
#> 1384        2025         Week 26 Year to date  Local authority    E92000001
#> 1385        2025         Week 26 Year to date  Local authority    E92000001
#> 1386        2025         Week 26 Year to date  Local authority    E92000001
#> 1387        2025         Week 26 Year to date  Local authority    E92000001
#> 1388        2025         Week 26 Year to date  Local authority    E92000001
#> 1389        2025         Week 26 Year to date  Local authority    E92000001
#> 1390        2025         Week 26 Year to date  Local authority    E92000001
#> 1391        2025         Week 26 Year to date  Local authority    E92000001
#> 1392        2025         Week 26 Year to date  Local authority    E92000001
#> 1393        2025         Week 26 Year to date  Local authority    E92000001
#> 1394        2025         Week 26 Year to date  Local authority    E92000001
#> 1395        2025         Week 26 Year to date  Local authority    E92000001
#> 1396        2025         Week 26 Year to date  Local authority    E92000001
#> 1397        2025         Week 26 Year to date  Local authority    E92000001
#> 1398        2025         Week 26 Year to date  Local authority    E92000001
#> 1399        2025         Week 26 Year to date  Local authority    E92000001
#> 1400        2025         Week 26 Year to date  Local authority    E92000001
#> 1401        2025         Week 26 Year to date  Local authority    E92000001
#> 1402        2025         Week 26 Year to date  Local authority    E92000001
#> 1403        2025         Week 26 Year to date  Local authority    E92000001
#> 1404        2025         Week 26 Year to date  Local authority    E92000001
#> 1405        2025         Week 26 Year to date  Local authority    E92000001
#> 1406        2025         Week 26 Year to date  Local authority    E92000001
#> 1407        2025         Week 26 Year to date  Local authority    E92000001
#> 1408        2025         Week 26 Year to date  Local authority    E92000001
#> 1409        2025         Week 26 Year to date  Local authority    E92000001
#> 1410        2025         Week 26 Year to date  Local authority    E92000001
#> 1411        2025         Week 26 Year to date  Local authority    E92000001
#> 1412        2025         Week 26 Year to date  Local authority    E92000001
#> 1413        2025         Week 26 Year to date  Local authority    E92000001
#> 1414        2025         Week 26 Year to date  Local authority    E92000001
#> 1415        2025         Week 26 Year to date  Local authority    E92000001
#> 1416        2025         Week 26 Year to date  Local authority    E92000001
#> 1417        2025         Week 26 Year to date  Local authority    E92000001
#> 1418        2025         Week 26 Year to date  Local authority    E92000001
#> 1419        2025         Week 26 Year to date  Local authority    E92000001
#> 1420        2025         Week 26 Year to date  Local authority    E92000001
#> 1421        2025         Week 26 Year to date  Local authority    E92000001
#> 1422        2025         Week 26 Year to date  Local authority    E92000001
#> 1423        2025         Week 26 Year to date  Local authority    E92000001
#> 1424        2025         Week 26 Year to date  Local authority    E92000001
#> 1425        2025         Week 26 Year to date  Local authority    E92000001
#> 1426        2025         Week 26 Year to date  Local authority    E92000001
#> 1427        2025         Week 26 Year to date  Local authority    E92000001
#> 1428        2025         Week 26 Year to date  Local authority    E92000001
#> 1429        2025         Week 26 Year to date  Local authority    E92000001
#> 1430        2025         Week 26 Year to date  Local authority    E92000001
#> 1431        2025         Week 26 Year to date  Local authority    E92000001
#> 1432        2025         Week 26 Year to date  Local authority    E92000001
#> 1433        2025         Week 26 Year to date  Local authority    E92000001
#> 1434        2025         Week 26 Year to date  Local authority    E92000001
#> 1435        2025         Week 26 Year to date  Local authority    E92000001
#> 1436        2025         Week 26 Year to date         Regional    E92000001
#> 1437        2025         Week 26 Year to date         Regional    E92000001
#> 1438        2025         Week 26 Year to date         Regional    E92000001
#> 1439        2025         Week 26 Year to date         Regional    E92000001
#> 1440        2025         Week 26 Year to date  Local authority    E92000001
#> 1441        2025         Week 26 Year to date  Local authority    E92000001
#> 1442        2025         Week 26 Year to date  Local authority    E92000001
#> 1443        2025         Week 26 Year to date  Local authority    E92000001
#> 1444        2025         Week 26 Year to date  Local authority    E92000001
#> 1445        2025         Week 26 Year to date  Local authority    E92000001
#> 1446        2025         Week 26 Year to date  Local authority    E92000001
#> 1447        2025         Week 26 Year to date  Local authority    E92000001
#> 1448        2025         Week 26 Year to date  Local authority    E92000001
#> 1449        2025         Week 26 Year to date  Local authority    E92000001
#> 1450        2025         Week 26 Year to date  Local authority    E92000001
#> 1451        2025         Week 26 Year to date  Local authority    E92000001
#> 1452        2025         Week 26 Year to date  Local authority    E92000001
#> 1453        2025         Week 26 Year to date  Local authority    E92000001
#> 1454        2025         Week 26 Year to date  Local authority    E92000001
#> 1455        2025         Week 26 Year to date  Local authority    E92000001
#> 1456        2025         Week 26 Year to date  Local authority    E92000001
#> 1457        2025         Week 26 Year to date  Local authority    E92000001
#> 1458        2025         Week 26 Year to date  Local authority    E92000001
#> 1459        2025         Week 26 Year to date  Local authority    E92000001
#> 1460        2025         Week 26 Year to date  Local authority    E92000001
#> 1461        2025         Week 26 Year to date  Local authority    E92000001
#> 1462        2025         Week 26 Year to date  Local authority    E92000001
#> 1463        2025         Week 26 Year to date  Local authority    E92000001
#> 1464        2025         Week 26 Year to date  Local authority    E92000001
#> 1465        2025         Week 26 Year to date  Local authority    E92000001
#> 1466        2025         Week 26 Year to date  Local authority    E92000001
#> 1467        2025         Week 26 Year to date  Local authority    E92000001
#> 1468        2025         Week 26 Year to date  Local authority    E92000001
#> 1469        2025         Week 26 Year to date  Local authority    E92000001
#> 1470        2025         Week 26 Year to date  Local authority    E92000001
#> 1471        2025         Week 26 Year to date  Local authority    E92000001
#> 1472        2025         Week 26 Year to date  Local authority    E92000001
#> 1473        2025         Week 26 Year to date  Local authority    E92000001
#> 1474        2025         Week 26 Year to date  Local authority    E92000001
#> 1475        2025         Week 26 Year to date  Local authority    E92000001
#> 1476        2025         Week 26 Year to date  Local authority    E92000001
#> 1477        2025         Week 26 Year to date  Local authority    E92000001
#> 1478        2025         Week 26 Year to date  Local authority    E92000001
#> 1479        2025         Week 26 Year to date  Local authority    E92000001
#> 1480        2025         Week 26 Year to date  Local authority    E92000001
#> 1481        2025         Week 26 Year to date  Local authority    E92000001
#> 1482        2025         Week 26 Year to date  Local authority    E92000001
#> 1483        2025         Week 24 Year to date         National    E92000001
#> 1484        2025         Week 24 Year to date         National    E92000001
#> 1485        2025         Week 24 Year to date         National    E92000001
#> 1486        2025         Week 24 Year to date         National    E92000001
#> 1487        2025         Week 24 Year to date         Regional    E92000001
#> 1488        2025         Week 24 Year to date         Regional    E92000001
#> 1489        2025         Week 24 Year to date         Regional    E92000001
#> 1490        2025         Week 24 Year to date         Regional    E92000001
#> 1491        2025         Week 24 Year to date  Local authority    E92000001
#> 1492        2025         Week 24 Year to date  Local authority    E92000001
#> 1493        2025         Week 24 Year to date  Local authority    E92000001
#> 1494        2025         Week 24 Year to date  Local authority    E92000001
#> 1495        2025         Week 24 Year to date  Local authority    E92000001
#> 1496        2025         Week 24 Year to date  Local authority    E92000001
#> 1497        2025         Week 24 Year to date  Local authority    E92000001
#> 1498        2025         Week 24 Year to date  Local authority    E92000001
#> 1499        2025         Week 24 Year to date  Local authority    E92000001
#> 1500        2025         Week 24 Year to date  Local authority    E92000001
#> 1501        2025         Week 24 Year to date  Local authority    E92000001
#> 1502        2025         Week 24 Year to date  Local authority    E92000001
#> 1503        2025         Week 24 Year to date  Local authority    E92000001
#> 1504        2025         Week 24 Year to date  Local authority    E92000001
#> 1505        2025         Week 24 Year to date  Local authority    E92000001
#> 1506        2025         Week 24 Year to date  Local authority    E92000001
#> 1507        2025         Week 24 Year to date  Local authority    E92000001
#> 1508        2025         Week 24 Year to date  Local authority    E92000001
#> 1509        2025         Week 24 Year to date  Local authority    E92000001
#> 1510        2025         Week 24 Year to date  Local authority    E92000001
#> 1511        2025         Week 24 Year to date  Local authority    E92000001
#> 1512        2025         Week 24 Year to date  Local authority    E92000001
#> 1513        2025         Week 24 Year to date  Local authority    E92000001
#> 1514        2025         Week 24 Year to date  Local authority    E92000001
#> 1515        2025         Week 24 Year to date  Local authority    E92000001
#> 1516        2025         Week 24 Year to date  Local authority    E92000001
#> 1517        2025         Week 24 Year to date  Local authority    E92000001
#> 1518        2025         Week 24 Year to date  Local authority    E92000001
#> 1519        2025         Week 24 Year to date  Local authority    E92000001
#> 1520        2025         Week 24 Year to date  Local authority    E92000001
#> 1521        2025         Week 24 Year to date  Local authority    E92000001
#> 1522        2025         Week 24 Year to date  Local authority    E92000001
#> 1523        2025         Week 24 Year to date  Local authority    E92000001
#> 1524        2025         Week 24 Year to date  Local authority    E92000001
#> 1525        2025         Week 24 Year to date  Local authority    E92000001
#> 1526        2025         Week 24 Year to date  Local authority    E92000001
#> 1527        2025         Week 24 Year to date         Regional    E92000001
#> 1528        2025         Week 24 Year to date         Regional    E92000001
#> 1529        2025         Week 24 Year to date         Regional    E92000001
#> 1530        2025         Week 24 Year to date         Regional    E92000001
#> 1531        2025         Week 24 Year to date  Local authority    E92000001
#> 1532        2025         Week 24 Year to date  Local authority    E92000001
#> 1533        2025         Week 24 Year to date  Local authority    E92000001
#> 1534        2025         Week 24 Year to date  Local authority    E92000001
#> 1535        2025         Week 24 Year to date  Local authority    E92000001
#> 1536        2025         Week 24 Year to date  Local authority    E92000001
#> 1537        2025         Week 24 Year to date  Local authority    E92000001
#> 1538        2025         Week 24 Year to date  Local authority    E92000001
#> 1539        2025         Week 24 Year to date  Local authority    E92000001
#> 1540        2025         Week 24 Year to date  Local authority    E92000001
#> 1541        2025         Week 24 Year to date  Local authority    E92000001
#> 1542        2025         Week 24 Year to date  Local authority    E92000001
#> 1543        2025         Week 24 Year to date  Local authority    E92000001
#> 1544        2025         Week 24 Year to date  Local authority    E92000001
#> 1545        2025         Week 24 Year to date  Local authority    E92000001
#> 1546        2025         Week 24 Year to date  Local authority    E92000001
#> 1547        2025         Week 24 Year to date  Local authority    E92000001
#> 1548        2025         Week 24 Year to date  Local authority    E92000001
#> 1549        2025         Week 24 Year to date  Local authority    E92000001
#> 1550        2025         Week 24 Year to date  Local authority    E92000001
#> 1551        2025         Week 24 Year to date  Local authority    E92000001
#> 1552        2025         Week 24 Year to date  Local authority    E92000001
#> 1553        2025         Week 24 Year to date  Local authority    E92000001
#> 1554        2025         Week 24 Year to date  Local authority    E92000001
#> 1555        2025         Week 24 Year to date  Local authority    E92000001
#> 1556        2025         Week 24 Year to date  Local authority    E92000001
#> 1557        2025         Week 24 Year to date  Local authority    E92000001
#> 1558        2025         Week 24 Year to date  Local authority    E92000001
#> 1559        2025         Week 24 Year to date  Local authority    E92000001
#> 1560        2025         Week 24 Year to date  Local authority    E92000001
#> 1561        2025         Week 24 Year to date  Local authority    E92000001
#> 1562        2025         Week 24 Year to date  Local authority    E92000001
#> 1563        2025         Week 24 Year to date  Local authority    E92000001
#> 1564        2025         Week 24 Year to date  Local authority    E92000001
#> 1565        2025         Week 24 Year to date  Local authority    E92000001
#> 1566        2025         Week 24 Year to date  Local authority    E92000001
#> 1567        2025         Week 24 Year to date  Local authority    E92000001
#> 1568        2025         Week 24 Year to date  Local authority    E92000001
#> 1569        2025         Week 24 Year to date  Local authority    E92000001
#> 1570        2025         Week 24 Year to date  Local authority    E92000001
#> 1571        2025         Week 24 Year to date  Local authority    E92000001
#> 1572        2025         Week 24 Year to date  Local authority    E92000001
#> 1573        2025         Week 24 Year to date  Local authority    E92000001
#> 1574        2025         Week 24 Year to date  Local authority    E92000001
#> 1575        2025         Week 24 Year to date  Local authority    E92000001
#> 1576        2025         Week 24 Year to date  Local authority    E92000001
#> 1577        2025         Week 24 Year to date  Local authority    E92000001
#> 1578        2025         Week 24 Year to date  Local authority    E92000001
#> 1579        2025         Week 24 Year to date  Local authority    E92000001
#> 1580        2025         Week 24 Year to date  Local authority    E92000001
#> 1581        2025         Week 24 Year to date  Local authority    E92000001
#> 1582        2025         Week 24 Year to date  Local authority    E92000001
#> 1583        2025         Week 24 Year to date  Local authority    E92000001
#> 1584        2025         Week 24 Year to date  Local authority    E92000001
#> 1585        2025         Week 24 Year to date  Local authority    E92000001
#> 1586        2025         Week 24 Year to date  Local authority    E92000001
#> 1587        2025         Week 24 Year to date  Local authority    E92000001
#> 1588        2025         Week 24 Year to date  Local authority    E92000001
#> 1589        2025         Week 24 Year to date  Local authority    E92000001
#> 1590        2025         Week 24 Year to date  Local authority    E92000001
#> 1591        2025         Week 24 Year to date  Local authority    E92000001
#> 1592        2025         Week 24 Year to date  Local authority    E92000001
#> 1593        2025         Week 24 Year to date  Local authority    E92000001
#> 1594        2025         Week 24 Year to date  Local authority    E92000001
#> 1595        2025         Week 24 Year to date  Local authority    E92000001
#> 1596        2025         Week 24 Year to date  Local authority    E92000001
#> 1597        2025         Week 24 Year to date  Local authority    E92000001
#> 1598        2025         Week 24 Year to date  Local authority    E92000001
#> 1599        2025         Week 24 Year to date  Local authority    E92000001
#> 1600        2025         Week 24 Year to date  Local authority    E92000001
#> 1601        2025         Week 24 Year to date  Local authority    E92000001
#> 1602        2025         Week 24 Year to date  Local authority    E92000001
#> 1603        2025         Week 24 Year to date         Regional    E92000001
#> 1604        2025         Week 24 Year to date         Regional    E92000001
#> 1605        2025         Week 24 Year to date         Regional    E92000001
#> 1606        2025         Week 24 Year to date         Regional    E92000001
#> 1607        2025         Week 24 Year to date  Local authority    E92000001
#> 1608        2025         Week 24 Year to date  Local authority    E92000001
#> 1609        2025         Week 24 Year to date  Local authority    E92000001
#> 1610        2025         Week 24 Year to date  Local authority    E92000001
#> 1611        2025         Week 24 Year to date  Local authority    E92000001
#> 1612        2025         Week 24 Year to date  Local authority    E92000001
#> 1613        2025         Week 24 Year to date  Local authority    E92000001
#> 1614        2025         Week 24 Year to date  Local authority    E92000001
#> 1615        2025         Week 24 Year to date  Local authority    E92000001
#> 1616        2025         Week 24 Year to date  Local authority    E92000001
#> 1617        2025         Week 24 Year to date  Local authority    E92000001
#> 1618        2025         Week 24 Year to date  Local authority    E92000001
#> 1619        2025         Week 24 Year to date  Local authority    E92000001
#> 1620        2025         Week 24 Year to date  Local authority    E92000001
#> 1621        2025         Week 24 Year to date  Local authority    E92000001
#> 1622        2025         Week 24 Year to date  Local authority    E92000001
#> 1623        2025         Week 24 Year to date  Local authority    E92000001
#> 1624        2025         Week 24 Year to date  Local authority    E92000001
#> 1625        2025         Week 24 Year to date  Local authority    E92000001
#> 1626        2025         Week 24 Year to date  Local authority    E92000001
#> 1627        2025         Week 24 Year to date  Local authority    E92000001
#> 1628        2025         Week 24 Year to date  Local authority    E92000001
#> 1629        2025         Week 24 Year to date  Local authority    E92000001
#> 1630        2025         Week 24 Year to date  Local authority    E92000001
#> 1631        2025         Week 24 Year to date  Local authority    E92000001
#> 1632        2025         Week 24 Year to date  Local authority    E92000001
#> 1633        2025         Week 24 Year to date  Local authority    E92000001
#> 1634        2025         Week 24 Year to date  Local authority    E92000001
#> 1635        2025         Week 24 Year to date  Local authority    E92000001
#> 1636        2025         Week 24 Year to date  Local authority    E92000001
#> 1637        2025         Week 24 Year to date  Local authority    E92000001
#> 1638        2025         Week 24 Year to date  Local authority    E92000001
#> 1639        2025         Week 24 Year to date  Local authority    E92000001
#> 1640        2025         Week 24 Year to date  Local authority    E92000001
#> 1641        2025         Week 24 Year to date  Local authority    E92000001
#> 1642        2025         Week 24 Year to date  Local authority    E92000001
#> 1643        2025         Week 24 Year to date  Local authority    E92000001
#> 1644        2025         Week 24 Year to date  Local authority    E92000001
#> 1645        2025         Week 24 Year to date  Local authority    E92000001
#> 1646        2025         Week 24 Year to date  Local authority    E92000001
#> 1647        2025         Week 24 Year to date  Local authority    E92000001
#> 1648        2025         Week 24 Year to date  Local authority    E92000001
#> 1649        2025         Week 24 Year to date  Local authority    E92000001
#> 1650        2025         Week 24 Year to date  Local authority    E92000001
#> 1651        2025         Week 24 Year to date  Local authority    E92000001
#> 1652        2025         Week 24 Year to date         Regional    E92000001
#> 1653        2025         Week 24 Year to date         Regional    E92000001
#> 1654        2025         Week 24 Year to date         Regional    E92000001
#> 1655        2025         Week 24 Year to date         Regional    E92000001
#> 1656        2025         Week 24 Year to date  Local authority    E92000001
#> 1657        2025         Week 24 Year to date  Local authority    E92000001
#> 1658        2025         Week 24 Year to date  Local authority    E92000001
#> 1659        2025         Week 24 Year to date  Local authority    E92000001
#> 1660        2025         Week 24 Year to date  Local authority    E92000001
#> 1661        2025         Week 24 Year to date  Local authority    E92000001
#> 1662        2025         Week 24 Year to date  Local authority    E92000001
#> 1663        2025         Week 24 Year to date  Local authority    E92000001
#> 1664        2025         Week 24 Year to date  Local authority    E92000001
#> 1665        2025         Week 24 Year to date  Local authority    E92000001
#> 1666        2025         Week 24 Year to date  Local authority    E92000001
#> 1667        2025         Week 24 Year to date  Local authority    E92000001
#> 1668        2025         Week 24 Year to date  Local authority    E92000001
#> 1669        2025         Week 24 Year to date  Local authority    E92000001
#> 1670        2025         Week 24 Year to date  Local authority    E92000001
#> 1671        2025         Week 24 Year to date  Local authority    E92000001
#> 1672        2025         Week 24 Year to date  Local authority    E92000001
#> 1673        2025         Week 24 Year to date  Local authority    E92000001
#> 1674        2025         Week 24 Year to date  Local authority    E92000001
#> 1675        2025         Week 24 Year to date  Local authority    E92000001
#> 1676        2025         Week 24 Year to date  Local authority    E92000001
#> 1677        2025         Week 24 Year to date  Local authority    E92000001
#> 1678        2025         Week 24 Year to date  Local authority    E92000001
#> 1679        2025         Week 24 Year to date  Local authority    E92000001
#> 1680        2025         Week 24 Year to date  Local authority    E92000001
#> 1681        2025         Week 24 Year to date  Local authority    E92000001
#> 1682        2025         Week 24 Year to date  Local authority    E92000001
#> 1683        2025         Week 24 Year to date  Local authority    E92000001
#> 1684        2025         Week 24 Year to date  Local authority    E92000001
#> 1685        2025         Week 24 Year to date         Regional    E92000001
#> 1686        2025         Week 24 Year to date         Regional    E92000001
#> 1687        2025         Week 24 Year to date         Regional    E92000001
#> 1688        2025         Week 24 Year to date         Regional    E92000001
#> 1689        2025         Week 24 Year to date  Local authority    E92000001
#> 1690        2025         Week 24 Year to date  Local authority    E92000001
#> 1691        2025         Week 24 Year to date  Local authority    E92000001
#> 1692        2025         Week 24 Year to date  Local authority    E92000001
#> 1693        2025         Week 24 Year to date  Local authority    E92000001
#> 1694        2025         Week 24 Year to date  Local authority    E92000001
#> 1695        2025         Week 24 Year to date  Local authority    E92000001
#> 1696        2025         Week 24 Year to date  Local authority    E92000001
#> 1697        2025         Week 24 Year to date  Local authority    E92000001
#> 1698        2025         Week 24 Year to date  Local authority    E92000001
#> 1699        2025         Week 24 Year to date  Local authority    E92000001
#> 1700        2025         Week 24 Year to date  Local authority    E92000001
#> 1701        2025         Week 24 Year to date  Local authority    E92000001
#> 1702        2025         Week 24 Year to date  Local authority    E92000001
#> 1703        2025         Week 24 Year to date  Local authority    E92000001
#> 1704        2025         Week 24 Year to date  Local authority    E92000001
#> 1705        2025         Week 24 Year to date  Local authority    E92000001
#> 1706        2025         Week 24 Year to date  Local authority    E92000001
#> 1707        2025         Week 24 Year to date  Local authority    E92000001
#> 1708        2025         Week 24 Year to date  Local authority    E92000001
#> 1709        2025         Week 24 Year to date  Local authority    E92000001
#> 1710        2025         Week 24 Year to date  Local authority    E92000001
#> 1711        2025         Week 24 Year to date  Local authority    E92000001
#> 1712        2025         Week 24 Year to date  Local authority    E92000001
#> 1713        2025         Week 24 Year to date  Local authority    E92000001
#> 1714        2025         Week 24 Year to date  Local authority    E92000001
#> 1715        2025         Week 24 Year to date  Local authority    E92000001
#> 1716        2025         Week 24 Year to date  Local authority    E92000001
#> 1717        2025         Week 24 Year to date  Local authority    E92000001
#> 1718        2025         Week 24 Year to date  Local authority    E92000001
#> 1719        2025         Week 24 Year to date  Local authority    E92000001
#> 1720        2025         Week 24 Year to date  Local authority    E92000001
#> 1721        2025         Week 24 Year to date  Local authority    E92000001
#> 1722        2025         Week 24 Year to date  Local authority    E92000001
#> 1723        2025         Week 24 Year to date  Local authority    E92000001
#> 1724        2025         Week 24 Year to date  Local authority    E92000001
#> 1725        2025         Week 24 Year to date  Local authority    E92000001
#> 1726        2025         Week 24 Year to date  Local authority    E92000001
#> 1727        2025         Week 24 Year to date  Local authority    E92000001
#> 1728        2025         Week 24 Year to date  Local authority    E92000001
#> 1729        2025         Week 24 Year to date  Local authority    E92000001
#> 1730        2025         Week 24 Year to date  Local authority    E92000001
#> 1731        2025         Week 24 Year to date         Regional    E92000001
#> 1732        2025         Week 24 Year to date         Regional    E92000001
#> 1733        2025         Week 24 Year to date         Regional    E92000001
#> 1734        2025         Week 24 Year to date         Regional    E92000001
#> 1735        2025         Week 24 Year to date  Local authority    E92000001
#> 1736        2025         Week 24 Year to date  Local authority    E92000001
#> 1737        2025         Week 24 Year to date  Local authority    E92000001
#> 1738        2025         Week 24 Year to date  Local authority    E92000001
#> 1739        2025         Week 24 Year to date  Local authority    E92000001
#> 1740        2025         Week 24 Year to date  Local authority    E92000001
#> 1741        2025         Week 24 Year to date  Local authority    E92000001
#> 1742        2025         Week 24 Year to date  Local authority    E92000001
#> 1743        2025         Week 24 Year to date  Local authority    E92000001
#> 1744        2025         Week 24 Year to date  Local authority    E92000001
#> 1745        2025         Week 24 Year to date  Local authority    E92000001
#> 1746        2025         Week 24 Year to date  Local authority    E92000001
#> 1747        2025         Week 24 Year to date  Local authority    E92000001
#> 1748        2025         Week 24 Year to date  Local authority    E92000001
#> 1749        2025         Week 24 Year to date  Local authority    E92000001
#> 1750        2025         Week 24 Year to date  Local authority    E92000001
#> 1751        2025         Week 24 Year to date  Local authority    E92000001
#> 1752        2025         Week 24 Year to date  Local authority    E92000001
#> 1753        2025         Week 24 Year to date  Local authority    E92000001
#> 1754        2025         Week 24 Year to date  Local authority    E92000001
#> 1755        2025         Week 24 Year to date  Local authority    E92000001
#> 1756        2025         Week 24 Year to date  Local authority    E92000001
#> 1757        2025         Week 24 Year to date  Local authority    E92000001
#> 1758        2025         Week 24 Year to date  Local authority    E92000001
#> 1759        2025         Week 24 Year to date  Local authority    E92000001
#> 1760        2025         Week 24 Year to date  Local authority    E92000001
#> 1761        2025         Week 24 Year to date  Local authority    E92000001
#> 1762        2025         Week 24 Year to date  Local authority    E92000001
#> 1763        2025         Week 24 Year to date  Local authority    E92000001
#> 1764        2025         Week 24 Year to date  Local authority    E92000001
#> 1765        2025         Week 24 Year to date  Local authority    E92000001
#> 1766        2025         Week 24 Year to date  Local authority    E92000001
#> 1767        2025         Week 24 Year to date  Local authority    E92000001
#> 1768        2025         Week 24 Year to date         Regional    E92000001
#> 1769        2025         Week 24 Year to date         Regional    E92000001
#> 1770        2025         Week 24 Year to date         Regional    E92000001
#> 1771        2025         Week 24 Year to date         Regional    E92000001
#> 1772        2025         Week 24 Year to date  Local authority    E92000001
#> 1773        2025         Week 24 Year to date  Local authority    E92000001
#> 1774        2025         Week 24 Year to date  Local authority    E92000001
#> 1775        2025         Week 24 Year to date  Local authority    E92000001
#> 1776        2025         Week 24 Year to date  Local authority    E92000001
#> 1777        2025         Week 24 Year to date  Local authority    E92000001
#> 1778        2025         Week 24 Year to date  Local authority    E92000001
#> 1779        2025         Week 24 Year to date  Local authority    E92000001
#> 1780        2025         Week 24 Year to date  Local authority    E92000001
#> 1781        2025         Week 24 Year to date  Local authority    E92000001
#> 1782        2025         Week 24 Year to date  Local authority    E92000001
#> 1783        2025         Week 24 Year to date  Local authority    E92000001
#> 1784        2025         Week 24 Year to date  Local authority    E92000001
#> 1785        2025         Week 24 Year to date  Local authority    E92000001
#> 1786        2025         Week 24 Year to date  Local authority    E92000001
#> 1787        2025         Week 24 Year to date  Local authority    E92000001
#> 1788        2025         Week 24 Year to date  Local authority    E92000001
#> 1789        2025         Week 24 Year to date  Local authority    E92000001
#> 1790        2025         Week 24 Year to date  Local authority    E92000001
#> 1791        2025         Week 24 Year to date  Local authority    E92000001
#> 1792        2025         Week 24 Year to date  Local authority    E92000001
#> 1793        2025         Week 24 Year to date  Local authority    E92000001
#> 1794        2025         Week 24 Year to date  Local authority    E92000001
#> 1795        2025         Week 24 Year to date  Local authority    E92000001
#> 1796        2025         Week 24 Year to date  Local authority    E92000001
#> 1797        2025         Week 24 Year to date  Local authority    E92000001
#> 1798        2025         Week 24 Year to date  Local authority    E92000001
#> 1799        2025         Week 24 Year to date  Local authority    E92000001
#> 1800        2025         Week 24 Year to date  Local authority    E92000001
#> 1801        2025         Week 24 Year to date  Local authority    E92000001
#> 1802        2025         Week 24 Year to date  Local authority    E92000001
#> 1803        2025         Week 24 Year to date  Local authority    E92000001
#> 1804        2025         Week 24 Year to date  Local authority    E92000001
#> 1805        2025         Week 24 Year to date  Local authority    E92000001
#> 1806        2025         Week 24 Year to date  Local authority    E92000001
#> 1807        2025         Week 24 Year to date  Local authority    E92000001
#> 1808        2025         Week 24 Year to date  Local authority    E92000001
#> 1809        2025         Week 24 Year to date  Local authority    E92000001
#> 1810        2025         Week 24 Year to date  Local authority    E92000001
#> 1811        2025         Week 24 Year to date  Local authority    E92000001
#> 1812        2025         Week 24 Year to date  Local authority    E92000001
#> 1813        2025         Week 24 Year to date  Local authority    E92000001
#> 1814        2025         Week 24 Year to date  Local authority    E92000001
#> 1815        2025         Week 24 Year to date  Local authority    E92000001
#> 1816        2025         Week 24 Year to date  Local authority    E92000001
#> 1817        2025         Week 24 Year to date  Local authority    E92000001
#> 1818        2025         Week 24 Year to date  Local authority    E92000001
#> 1819        2025         Week 24 Year to date  Local authority    E92000001
#> 1820        2025         Week 24 Year to date  Local authority    E92000001
#> 1821        2025         Week 24 Year to date  Local authority    E92000001
#> 1822        2025         Week 24 Year to date  Local authority    E92000001
#> 1823        2025         Week 24 Year to date  Local authority    E92000001
#> 1824        2025         Week 24 Year to date  Local authority    E92000001
#> 1825        2025         Week 24 Year to date  Local authority    E92000001
#> 1826        2025         Week 24 Year to date  Local authority    E92000001
#> 1827        2025         Week 24 Year to date  Local authority    E92000001
#> 1828        2025         Week 24 Year to date  Local authority    E92000001
#> 1829        2025         Week 24 Year to date  Local authority    E92000001
#> 1830        2025         Week 24 Year to date  Local authority    E92000001
#> 1831        2025         Week 24 Year to date  Local authority    E92000001
#> 1832        2025         Week 24 Year to date  Local authority    E92000001
#> 1833        2025         Week 24 Year to date  Local authority    E92000001
#> 1834        2025         Week 24 Year to date  Local authority    E92000001
#> 1835        2025         Week 24 Year to date  Local authority    E92000001
#> 1836        2025         Week 24 Year to date  Local authority    E92000001
#> 1837        2025         Week 24 Year to date  Local authority    E92000001
#> 1838        2025         Week 24 Year to date  Local authority    E92000001
#> 1839        2025         Week 24 Year to date  Local authority    E92000001
#> 1840        2025         Week 24 Year to date  Local authority    E92000001
#> 1841        2025         Week 24 Year to date  Local authority    E92000001
#> 1842        2025         Week 24 Year to date  Local authority    E92000001
#> 1843        2025         Week 24 Year to date  Local authority    E92000001
#> 1844        2025         Week 24 Year to date  Local authority    E92000001
#> 1845        2025         Week 24 Year to date  Local authority    E92000001
#> 1846        2025         Week 24 Year to date  Local authority    E92000001
#> 1847        2025         Week 24 Year to date  Local authority    E92000001
#> 1848        2025         Week 24 Year to date  Local authority    E92000001
#> 1849        2025         Week 24 Year to date  Local authority    E92000001
#> 1850        2025         Week 24 Year to date  Local authority    E92000001
#> 1851        2025         Week 24 Year to date  Local authority    E92000001
#> 1852        2025         Week 24 Year to date  Local authority    E92000001
#> 1853        2025         Week 24 Year to date  Local authority    E92000001
#> 1854        2025         Week 24 Year to date  Local authority    E92000001
#> 1855        2025         Week 24 Year to date  Local authority    E92000001
#> 1856        2025         Week 24 Year to date  Local authority    E92000001
#> 1857        2025         Week 24 Year to date  Local authority    E92000001
#> 1858        2025         Week 24 Year to date  Local authority    E92000001
#> 1859        2025         Week 24 Year to date  Local authority    E92000001
#> 1860        2025         Week 24 Year to date  Local authority    E92000001
#> 1861        2025         Week 24 Year to date  Local authority    E92000001
#> 1862        2025         Week 24 Year to date  Local authority    E92000001
#> 1863        2025         Week 24 Year to date  Local authority    E92000001
#> 1864        2025         Week 24 Year to date  Local authority    E92000001
#> 1865        2025         Week 24 Year to date  Local authority    E92000001
#> 1866        2025         Week 24 Year to date  Local authority    E92000001
#> 1867        2025         Week 24 Year to date  Local authority    E92000001
#> 1868        2025         Week 24 Year to date  Local authority    E92000001
#> 1869        2025         Week 24 Year to date         Regional    E92000001
#> 1870        2025         Week 24 Year to date         Regional    E92000001
#> 1871        2025         Week 24 Year to date         Regional    E92000001
#> 1872        2025         Week 24 Year to date         Regional    E92000001
#> 1873        2025         Week 24 Year to date  Local authority    E92000001
#> 1874        2025         Week 24 Year to date  Local authority    E92000001
#> 1875        2025         Week 24 Year to date  Local authority    E92000001
#> 1876        2025         Week 24 Year to date  Local authority    E92000001
#> 1877        2025         Week 24 Year to date  Local authority    E92000001
#> 1878        2025         Week 24 Year to date  Local authority    E92000001
#> 1879        2025         Week 24 Year to date  Local authority    E92000001
#> 1880        2025         Week 24 Year to date  Local authority    E92000001
#> 1881        2025         Week 24 Year to date  Local authority    E92000001
#> 1882        2025         Week 24 Year to date  Local authority    E92000001
#> 1883        2025         Week 24 Year to date  Local authority    E92000001
#> 1884        2025         Week 24 Year to date  Local authority    E92000001
#> 1885        2025         Week 24 Year to date  Local authority    E92000001
#> 1886        2025         Week 24 Year to date  Local authority    E92000001
#> 1887        2025         Week 24 Year to date  Local authority    E92000001
#> 1888        2025         Week 24 Year to date  Local authority    E92000001
#> 1889        2025         Week 24 Year to date  Local authority    E92000001
#> 1890        2025         Week 24 Year to date  Local authority    E92000001
#> 1891        2025         Week 24 Year to date  Local authority    E92000001
#> 1892        2025         Week 24 Year to date  Local authority    E92000001
#> 1893        2025         Week 24 Year to date  Local authority    E92000001
#> 1894        2025         Week 24 Year to date  Local authority    E92000001
#> 1895        2025         Week 24 Year to date  Local authority    E92000001
#> 1896        2025         Week 24 Year to date  Local authority    E92000001
#> 1897        2025         Week 24 Year to date  Local authority    E92000001
#> 1898        2025         Week 24 Year to date  Local authority    E92000001
#> 1899        2025         Week 24 Year to date  Local authority    E92000001
#> 1900        2025         Week 24 Year to date  Local authority    E92000001
#> 1901        2025         Week 24 Year to date  Local authority    E92000001
#> 1902        2025         Week 24 Year to date  Local authority    E92000001
#> 1903        2025         Week 24 Year to date  Local authority    E92000001
#> 1904        2025         Week 24 Year to date  Local authority    E92000001
#> 1905        2025         Week 24 Year to date  Local authority    E92000001
#> 1906        2025         Week 24 Year to date  Local authority    E92000001
#> 1907        2025         Week 24 Year to date  Local authority    E92000001
#> 1908        2025         Week 24 Year to date  Local authority    E92000001
#> 1909        2025         Week 24 Year to date  Local authority    E92000001
#> 1910        2025         Week 24 Year to date  Local authority    E92000001
#> 1911        2025         Week 24 Year to date  Local authority    E92000001
#> 1912        2025         Week 24 Year to date  Local authority    E92000001
#> 1913        2025         Week 24 Year to date  Local authority    E92000001
#> 1914        2025         Week 24 Year to date  Local authority    E92000001
#> 1915        2025         Week 24 Year to date  Local authority    E92000001
#> 1916        2025         Week 24 Year to date  Local authority    E92000001
#> 1917        2025         Week 24 Year to date  Local authority    E92000001
#> 1918        2025         Week 24 Year to date  Local authority    E92000001
#> 1919        2025         Week 24 Year to date  Local authority    E92000001
#> 1920        2025         Week 24 Year to date  Local authority    E92000001
#> 1921        2025         Week 24 Year to date  Local authority    E92000001
#> 1922        2025         Week 24 Year to date  Local authority    E92000001
#> 1923        2025         Week 24 Year to date  Local authority    E92000001
#> 1924        2025         Week 24 Year to date  Local authority    E92000001
#> 1925        2025         Week 24 Year to date  Local authority    E92000001
#> 1926        2025         Week 24 Year to date  Local authority    E92000001
#> 1927        2025         Week 24 Year to date  Local authority    E92000001
#> 1928        2025         Week 24 Year to date  Local authority    E92000001
#> 1929        2025         Week 24 Year to date  Local authority    E92000001
#> 1930        2025         Week 24 Year to date         Regional    E92000001
#> 1931        2025         Week 24 Year to date         Regional    E92000001
#> 1932        2025         Week 24 Year to date         Regional    E92000001
#> 1933        2025         Week 24 Year to date         Regional    E92000001
#> 1934        2025         Week 24 Year to date  Local authority    E92000001
#> 1935        2025         Week 24 Year to date  Local authority    E92000001
#> 1936        2025         Week 24 Year to date  Local authority    E92000001
#> 1937        2025         Week 24 Year to date  Local authority    E92000001
#> 1938        2025         Week 24 Year to date  Local authority    E92000001
#> 1939        2025         Week 24 Year to date  Local authority    E92000001
#> 1940        2025         Week 24 Year to date  Local authority    E92000001
#> 1941        2025         Week 24 Year to date  Local authority    E92000001
#> 1942        2025         Week 24 Year to date  Local authority    E92000001
#> 1943        2025         Week 24 Year to date  Local authority    E92000001
#> 1944        2025         Week 24 Year to date  Local authority    E92000001
#> 1945        2025         Week 24 Year to date  Local authority    E92000001
#> 1946        2025         Week 24 Year to date  Local authority    E92000001
#> 1947        2025         Week 24 Year to date  Local authority    E92000001
#> 1948        2025         Week 24 Year to date  Local authority    E92000001
#> 1949        2025         Week 24 Year to date  Local authority    E92000001
#> 1950        2025         Week 24 Year to date  Local authority    E92000001
#> 1951        2025         Week 24 Year to date  Local authority    E92000001
#> 1952        2025         Week 24 Year to date  Local authority    E92000001
#> 1953        2025         Week 24 Year to date  Local authority    E92000001
#> 1954        2025         Week 24 Year to date  Local authority    E92000001
#> 1955        2025         Week 24 Year to date  Local authority    E92000001
#> 1956        2025         Week 24 Year to date  Local authority    E92000001
#> 1957        2025         Week 24 Year to date  Local authority    E92000001
#> 1958        2025         Week 24 Year to date  Local authority    E92000001
#> 1959        2025         Week 24 Year to date  Local authority    E92000001
#> 1960        2025         Week 24 Year to date  Local authority    E92000001
#> 1961        2025         Week 24 Year to date  Local authority    E92000001
#> 1962        2025         Week 24 Year to date  Local authority    E92000001
#> 1963        2025         Week 24 Year to date  Local authority    E92000001
#> 1964        2025         Week 24 Year to date  Local authority    E92000001
#> 1965        2025         Week 24 Year to date  Local authority    E92000001
#> 1966        2025         Week 24 Year to date  Local authority    E92000001
#> 1967        2025         Week 24 Year to date  Local authority    E92000001
#> 1968        2025         Week 24 Year to date  Local authority    E92000001
#> 1969        2025         Week 24 Year to date  Local authority    E92000001
#> 1970        2025         Week 24 Year to date  Local authority    E92000001
#> 1971        2025         Week 24 Year to date  Local authority    E92000001
#> 1972        2025         Week 24 Year to date  Local authority    E92000001
#> 1973        2025         Week 24 Year to date  Local authority    E92000001
#> 1974        2025         Week 24 Year to date  Local authority    E92000001
#> 1975        2025         Week 24 Year to date  Local authority    E92000001
#> 1976        2025         Week 24 Year to date  Local authority    E92000001
#> 1977        2025         Week 21 Year to date         National    E92000001
#> 1978        2025         Week 21 Year to date         National    E92000001
#> 1979        2025         Week 21 Year to date         National    E92000001
#> 1980        2025         Week 21 Year to date         National    E92000001
#> 1981        2025         Week 21 Year to date         Regional    E92000001
#> 1982        2025         Week 21 Year to date         Regional    E92000001
#> 1983        2025         Week 21 Year to date         Regional    E92000001
#> 1984        2025         Week 21 Year to date         Regional    E92000001
#> 1985        2025         Week 21 Year to date  Local authority    E92000001
#> 1986        2025         Week 21 Year to date  Local authority    E92000001
#> 1987        2025         Week 21 Year to date  Local authority    E92000001
#> 1988        2025         Week 21 Year to date  Local authority    E92000001
#> 1989        2025         Week 21 Year to date  Local authority    E92000001
#> 1990        2025         Week 21 Year to date  Local authority    E92000001
#> 1991        2025         Week 21 Year to date  Local authority    E92000001
#> 1992        2025         Week 21 Year to date  Local authority    E92000001
#> 1993        2025         Week 21 Year to date  Local authority    E92000001
#> 1994        2025         Week 21 Year to date  Local authority    E92000001
#> 1995        2025         Week 21 Year to date  Local authority    E92000001
#> 1996        2025         Week 21 Year to date  Local authority    E92000001
#> 1997        2025         Week 21 Year to date  Local authority    E92000001
#> 1998        2025         Week 21 Year to date  Local authority    E92000001
#> 1999        2025         Week 21 Year to date  Local authority    E92000001
#> 2000        2025         Week 21 Year to date  Local authority    E92000001
#> 2001        2025         Week 21 Year to date  Local authority    E92000001
#> 2002        2025         Week 21 Year to date  Local authority    E92000001
#> 2003        2025         Week 21 Year to date  Local authority    E92000001
#> 2004        2025         Week 21 Year to date  Local authority    E92000001
#> 2005        2025         Week 21 Year to date  Local authority    E92000001
#> 2006        2025         Week 21 Year to date  Local authority    E92000001
#> 2007        2025         Week 21 Year to date  Local authority    E92000001
#> 2008        2025         Week 21 Year to date  Local authority    E92000001
#> 2009        2025         Week 21 Year to date  Local authority    E92000001
#> 2010        2025         Week 21 Year to date  Local authority    E92000001
#> 2011        2025         Week 21 Year to date  Local authority    E92000001
#> 2012        2025         Week 21 Year to date  Local authority    E92000001
#> 2013        2025         Week 21 Year to date  Local authority    E92000001
#> 2014        2025         Week 21 Year to date  Local authority    E92000001
#> 2015        2025         Week 21 Year to date  Local authority    E92000001
#> 2016        2025         Week 21 Year to date  Local authority    E92000001
#> 2017        2025         Week 21 Year to date  Local authority    E92000001
#> 2018        2025         Week 21 Year to date  Local authority    E92000001
#> 2019        2025         Week 21 Year to date  Local authority    E92000001
#> 2020        2025         Week 21 Year to date  Local authority    E92000001
#> 2021        2025         Week 21 Year to date         Regional    E92000001
#> 2022        2025         Week 21 Year to date         Regional    E92000001
#> 2023        2025         Week 21 Year to date         Regional    E92000001
#> 2024        2025         Week 21 Year to date         Regional    E92000001
#> 2025        2025         Week 21 Year to date  Local authority    E92000001
#> 2026        2025         Week 21 Year to date  Local authority    E92000001
#> 2027        2025         Week 21 Year to date  Local authority    E92000001
#> 2028        2025         Week 21 Year to date  Local authority    E92000001
#> 2029        2025         Week 21 Year to date  Local authority    E92000001
#> 2030        2025         Week 21 Year to date  Local authority    E92000001
#> 2031        2025         Week 21 Year to date  Local authority    E92000001
#> 2032        2025         Week 21 Year to date  Local authority    E92000001
#> 2033        2025         Week 21 Year to date  Local authority    E92000001
#> 2034        2025         Week 21 Year to date  Local authority    E92000001
#> 2035        2025         Week 21 Year to date  Local authority    E92000001
#> 2036        2025         Week 21 Year to date  Local authority    E92000001
#> 2037        2025         Week 21 Year to date  Local authority    E92000001
#> 2038        2025         Week 21 Year to date  Local authority    E92000001
#> 2039        2025         Week 21 Year to date  Local authority    E92000001
#> 2040        2025         Week 21 Year to date  Local authority    E92000001
#> 2041        2025         Week 21 Year to date  Local authority    E92000001
#> 2042        2025         Week 21 Year to date  Local authority    E92000001
#> 2043        2025         Week 21 Year to date  Local authority    E92000001
#> 2044        2025         Week 21 Year to date  Local authority    E92000001
#> 2045        2025         Week 21 Year to date  Local authority    E92000001
#> 2046        2025         Week 21 Year to date  Local authority    E92000001
#> 2047        2025         Week 21 Year to date  Local authority    E92000001
#> 2048        2025         Week 21 Year to date  Local authority    E92000001
#> 2049        2025         Week 21 Year to date  Local authority    E92000001
#> 2050        2025         Week 21 Year to date  Local authority    E92000001
#> 2051        2025         Week 21 Year to date  Local authority    E92000001
#> 2052        2025         Week 21 Year to date  Local authority    E92000001
#> 2053        2025         Week 21 Year to date  Local authority    E92000001
#> 2054        2025         Week 21 Year to date  Local authority    E92000001
#> 2055        2025         Week 21 Year to date  Local authority    E92000001
#> 2056        2025         Week 21 Year to date  Local authority    E92000001
#> 2057        2025         Week 21 Year to date  Local authority    E92000001
#> 2058        2025         Week 21 Year to date  Local authority    E92000001
#> 2059        2025         Week 21 Year to date  Local authority    E92000001
#> 2060        2025         Week 21 Year to date  Local authority    E92000001
#> 2061        2025         Week 21 Year to date  Local authority    E92000001
#> 2062        2025         Week 21 Year to date  Local authority    E92000001
#> 2063        2025         Week 21 Year to date  Local authority    E92000001
#> 2064        2025         Week 21 Year to date  Local authority    E92000001
#> 2065        2025         Week 21 Year to date  Local authority    E92000001
#> 2066        2025         Week 21 Year to date  Local authority    E92000001
#> 2067        2025         Week 21 Year to date  Local authority    E92000001
#> 2068        2025         Week 21 Year to date  Local authority    E92000001
#> 2069        2025         Week 21 Year to date  Local authority    E92000001
#> 2070        2025         Week 21 Year to date  Local authority    E92000001
#> 2071        2025         Week 21 Year to date  Local authority    E92000001
#> 2072        2025         Week 21 Year to date  Local authority    E92000001
#> 2073        2025         Week 21 Year to date  Local authority    E92000001
#> 2074        2025         Week 21 Year to date  Local authority    E92000001
#> 2075        2025         Week 21 Year to date  Local authority    E92000001
#> 2076        2025         Week 21 Year to date  Local authority    E92000001
#> 2077        2025         Week 21 Year to date  Local authority    E92000001
#> 2078        2025         Week 21 Year to date  Local authority    E92000001
#> 2079        2025         Week 21 Year to date  Local authority    E92000001
#> 2080        2025         Week 21 Year to date  Local authority    E92000001
#> 2081        2025         Week 21 Year to date  Local authority    E92000001
#> 2082        2025         Week 21 Year to date  Local authority    E92000001
#> 2083        2025         Week 21 Year to date  Local authority    E92000001
#> 2084        2025         Week 21 Year to date  Local authority    E92000001
#> 2085        2025         Week 21 Year to date  Local authority    E92000001
#> 2086        2025         Week 21 Year to date  Local authority    E92000001
#> 2087        2025         Week 21 Year to date  Local authority    E92000001
#> 2088        2025         Week 21 Year to date  Local authority    E92000001
#> 2089        2025         Week 21 Year to date  Local authority    E92000001
#> 2090        2025         Week 21 Year to date  Local authority    E92000001
#> 2091        2025         Week 21 Year to date  Local authority    E92000001
#> 2092        2025         Week 21 Year to date  Local authority    E92000001
#> 2093        2025         Week 21 Year to date  Local authority    E92000001
#> 2094        2025         Week 21 Year to date  Local authority    E92000001
#> 2095        2025         Week 21 Year to date  Local authority    E92000001
#> 2096        2025         Week 21 Year to date  Local authority    E92000001
#> 2097        2025         Week 21 Year to date         Regional    E92000001
#> 2098        2025         Week 21 Year to date         Regional    E92000001
#> 2099        2025         Week 21 Year to date         Regional    E92000001
#> 2100        2025         Week 21 Year to date         Regional    E92000001
#> 2101        2025         Week 21 Year to date  Local authority    E92000001
#> 2102        2025         Week 21 Year to date  Local authority    E92000001
#> 2103        2025         Week 21 Year to date  Local authority    E92000001
#> 2104        2025         Week 21 Year to date  Local authority    E92000001
#> 2105        2025         Week 21 Year to date  Local authority    E92000001
#> 2106        2025         Week 21 Year to date  Local authority    E92000001
#> 2107        2025         Week 21 Year to date  Local authority    E92000001
#> 2108        2025         Week 21 Year to date  Local authority    E92000001
#> 2109        2025         Week 21 Year to date  Local authority    E92000001
#> 2110        2025         Week 21 Year to date  Local authority    E92000001
#> 2111        2025         Week 21 Year to date  Local authority    E92000001
#> 2112        2025         Week 21 Year to date  Local authority    E92000001
#> 2113        2025         Week 21 Year to date  Local authority    E92000001
#> 2114        2025         Week 21 Year to date  Local authority    E92000001
#> 2115        2025         Week 21 Year to date  Local authority    E92000001
#> 2116        2025         Week 21 Year to date  Local authority    E92000001
#> 2117        2025         Week 21 Year to date  Local authority    E92000001
#> 2118        2025         Week 21 Year to date  Local authority    E92000001
#> 2119        2025         Week 21 Year to date  Local authority    E92000001
#> 2120        2025         Week 21 Year to date  Local authority    E92000001
#> 2121        2025         Week 21 Year to date  Local authority    E92000001
#> 2122        2025         Week 21 Year to date  Local authority    E92000001
#> 2123        2025         Week 21 Year to date  Local authority    E92000001
#> 2124        2025         Week 21 Year to date  Local authority    E92000001
#> 2125        2025         Week 21 Year to date  Local authority    E92000001
#> 2126        2025         Week 21 Year to date  Local authority    E92000001
#> 2127        2025         Week 21 Year to date  Local authority    E92000001
#> 2128        2025         Week 21 Year to date  Local authority    E92000001
#> 2129        2025         Week 21 Year to date  Local authority    E92000001
#> 2130        2025         Week 21 Year to date  Local authority    E92000001
#> 2131        2025         Week 21 Year to date  Local authority    E92000001
#> 2132        2025         Week 21 Year to date  Local authority    E92000001
#> 2133        2025         Week 21 Year to date  Local authority    E92000001
#> 2134        2025         Week 21 Year to date  Local authority    E92000001
#> 2135        2025         Week 21 Year to date  Local authority    E92000001
#> 2136        2025         Week 21 Year to date  Local authority    E92000001
#> 2137        2025         Week 21 Year to date  Local authority    E92000001
#> 2138        2025         Week 21 Year to date  Local authority    E92000001
#> 2139        2025         Week 21 Year to date  Local authority    E92000001
#> 2140        2025         Week 21 Year to date  Local authority    E92000001
#> 2141        2025         Week 21 Year to date  Local authority    E92000001
#> 2142        2025         Week 21 Year to date  Local authority    E92000001
#> 2143        2025         Week 21 Year to date  Local authority    E92000001
#> 2144        2025         Week 21 Year to date  Local authority    E92000001
#> 2145        2025         Week 21 Year to date  Local authority    E92000001
#> 2146        2025         Week 21 Year to date         Regional    E92000001
#> 2147        2025         Week 21 Year to date         Regional    E92000001
#> 2148        2025         Week 21 Year to date         Regional    E92000001
#> 2149        2025         Week 21 Year to date         Regional    E92000001
#> 2150        2025         Week 21 Year to date  Local authority    E92000001
#> 2151        2025         Week 21 Year to date  Local authority    E92000001
#> 2152        2025         Week 21 Year to date  Local authority    E92000001
#> 2153        2025         Week 21 Year to date  Local authority    E92000001
#> 2154        2025         Week 21 Year to date  Local authority    E92000001
#> 2155        2025         Week 21 Year to date  Local authority    E92000001
#> 2156        2025         Week 21 Year to date  Local authority    E92000001
#> 2157        2025         Week 21 Year to date  Local authority    E92000001
#> 2158        2025         Week 21 Year to date  Local authority    E92000001
#> 2159        2025         Week 21 Year to date  Local authority    E92000001
#> 2160        2025         Week 21 Year to date  Local authority    E92000001
#> 2161        2025         Week 21 Year to date  Local authority    E92000001
#> 2162        2025         Week 21 Year to date  Local authority    E92000001
#> 2163        2025         Week 21 Year to date  Local authority    E92000001
#> 2164        2025         Week 21 Year to date  Local authority    E92000001
#> 2165        2025         Week 21 Year to date  Local authority    E92000001
#> 2166        2025         Week 21 Year to date  Local authority    E92000001
#> 2167        2025         Week 21 Year to date  Local authority    E92000001
#> 2168        2025         Week 21 Year to date  Local authority    E92000001
#> 2169        2025         Week 21 Year to date  Local authority    E92000001
#> 2170        2025         Week 21 Year to date  Local authority    E92000001
#> 2171        2025         Week 21 Year to date  Local authority    E92000001
#> 2172        2025         Week 21 Year to date  Local authority    E92000001
#> 2173        2025         Week 21 Year to date  Local authority    E92000001
#> 2174        2025         Week 21 Year to date  Local authority    E92000001
#> 2175        2025         Week 21 Year to date  Local authority    E92000001
#> 2176        2025         Week 21 Year to date  Local authority    E92000001
#> 2177        2025         Week 21 Year to date  Local authority    E92000001
#> 2178        2025         Week 21 Year to date  Local authority    E92000001
#> 2179        2025         Week 21 Year to date         Regional    E92000001
#> 2180        2025         Week 21 Year to date         Regional    E92000001
#> 2181        2025         Week 21 Year to date         Regional    E92000001
#> 2182        2025         Week 21 Year to date         Regional    E92000001
#> 2183        2025         Week 21 Year to date  Local authority    E92000001
#> 2184        2025         Week 21 Year to date  Local authority    E92000001
#> 2185        2025         Week 21 Year to date  Local authority    E92000001
#> 2186        2025         Week 21 Year to date  Local authority    E92000001
#> 2187        2025         Week 21 Year to date  Local authority    E92000001
#> 2188        2025         Week 21 Year to date  Local authority    E92000001
#> 2189        2025         Week 21 Year to date  Local authority    E92000001
#> 2190        2025         Week 21 Year to date  Local authority    E92000001
#> 2191        2025         Week 21 Year to date  Local authority    E92000001
#> 2192        2025         Week 21 Year to date  Local authority    E92000001
#> 2193        2025         Week 21 Year to date  Local authority    E92000001
#> 2194        2025         Week 21 Year to date  Local authority    E92000001
#> 2195        2025         Week 21 Year to date  Local authority    E92000001
#> 2196        2025         Week 21 Year to date  Local authority    E92000001
#> 2197        2025         Week 21 Year to date  Local authority    E92000001
#> 2198        2025         Week 21 Year to date  Local authority    E92000001
#> 2199        2025         Week 21 Year to date  Local authority    E92000001
#> 2200        2025         Week 21 Year to date  Local authority    E92000001
#> 2201        2025         Week 21 Year to date  Local authority    E92000001
#> 2202        2025         Week 21 Year to date  Local authority    E92000001
#> 2203        2025         Week 21 Year to date  Local authority    E92000001
#> 2204        2025         Week 21 Year to date  Local authority    E92000001
#> 2205        2025         Week 21 Year to date  Local authority    E92000001
#> 2206        2025         Week 21 Year to date  Local authority    E92000001
#> 2207        2025         Week 21 Year to date  Local authority    E92000001
#> 2208        2025         Week 21 Year to date  Local authority    E92000001
#> 2209        2025         Week 21 Year to date  Local authority    E92000001
#> 2210        2025         Week 21 Year to date  Local authority    E92000001
#> 2211        2025         Week 21 Year to date  Local authority    E92000001
#> 2212        2025         Week 21 Year to date  Local authority    E92000001
#> 2213        2025         Week 21 Year to date  Local authority    E92000001
#> 2214        2025         Week 21 Year to date  Local authority    E92000001
#> 2215        2025         Week 21 Year to date  Local authority    E92000001
#> 2216        2025         Week 21 Year to date  Local authority    E92000001
#> 2217        2025         Week 21 Year to date  Local authority    E92000001
#> 2218        2025         Week 21 Year to date  Local authority    E92000001
#> 2219        2025         Week 21 Year to date  Local authority    E92000001
#> 2220        2025         Week 21 Year to date  Local authority    E92000001
#> 2221        2025         Week 21 Year to date  Local authority    E92000001
#> 2222        2025         Week 21 Year to date  Local authority    E92000001
#> 2223        2025         Week 21 Year to date  Local authority    E92000001
#> 2224        2025         Week 21 Year to date  Local authority    E92000001
#> 2225        2025         Week 21 Year to date         Regional    E92000001
#> 2226        2025         Week 21 Year to date         Regional    E92000001
#> 2227        2025         Week 21 Year to date         Regional    E92000001
#> 2228        2025         Week 21 Year to date         Regional    E92000001
#> 2229        2025         Week 21 Year to date  Local authority    E92000001
#> 2230        2025         Week 21 Year to date  Local authority    E92000001
#> 2231        2025         Week 21 Year to date  Local authority    E92000001
#> 2232        2025         Week 21 Year to date  Local authority    E92000001
#> 2233        2025         Week 21 Year to date  Local authority    E92000001
#> 2234        2025         Week 21 Year to date  Local authority    E92000001
#> 2235        2025         Week 21 Year to date  Local authority    E92000001
#> 2236        2025         Week 21 Year to date  Local authority    E92000001
#> 2237        2025         Week 21 Year to date  Local authority    E92000001
#> 2238        2025         Week 21 Year to date  Local authority    E92000001
#> 2239        2025         Week 21 Year to date  Local authority    E92000001
#> 2240        2025         Week 21 Year to date  Local authority    E92000001
#> 2241        2025         Week 21 Year to date  Local authority    E92000001
#> 2242        2025         Week 21 Year to date  Local authority    E92000001
#> 2243        2025         Week 21 Year to date  Local authority    E92000001
#> 2244        2025         Week 21 Year to date  Local authority    E92000001
#> 2245        2025         Week 21 Year to date  Local authority    E92000001
#> 2246        2025         Week 21 Year to date  Local authority    E92000001
#> 2247        2025         Week 21 Year to date  Local authority    E92000001
#> 2248        2025         Week 21 Year to date  Local authority    E92000001
#> 2249        2025         Week 21 Year to date  Local authority    E92000001
#> 2250        2025         Week 21 Year to date  Local authority    E92000001
#> 2251        2025         Week 21 Year to date  Local authority    E92000001
#> 2252        2025         Week 21 Year to date  Local authority    E92000001
#> 2253        2025         Week 21 Year to date  Local authority    E92000001
#> 2254        2025         Week 21 Year to date  Local authority    E92000001
#> 2255        2025         Week 21 Year to date  Local authority    E92000001
#> 2256        2025         Week 21 Year to date  Local authority    E92000001
#> 2257        2025         Week 21 Year to date  Local authority    E92000001
#> 2258        2025         Week 21 Year to date  Local authority    E92000001
#> 2259        2025         Week 21 Year to date  Local authority    E92000001
#> 2260        2025         Week 21 Year to date  Local authority    E92000001
#> 2261        2025         Week 21 Year to date  Local authority    E92000001
#> 2262        2025         Week 21 Year to date         Regional    E92000001
#> 2263        2025         Week 21 Year to date         Regional    E92000001
#> 2264        2025         Week 21 Year to date         Regional    E92000001
#> 2265        2025         Week 21 Year to date         Regional    E92000001
#> 2266        2025         Week 21 Year to date  Local authority    E92000001
#> 2267        2025         Week 21 Year to date  Local authority    E92000001
#> 2268        2025         Week 21 Year to date  Local authority    E92000001
#> 2269        2025         Week 21 Year to date  Local authority    E92000001
#> 2270        2025         Week 21 Year to date  Local authority    E92000001
#> 2271        2025         Week 21 Year to date  Local authority    E92000001
#> 2272        2025         Week 21 Year to date  Local authority    E92000001
#> 2273        2025         Week 21 Year to date  Local authority    E92000001
#> 2274        2025         Week 21 Year to date  Local authority    E92000001
#> 2275        2025         Week 21 Year to date  Local authority    E92000001
#> 2276        2025         Week 21 Year to date  Local authority    E92000001
#> 2277        2025         Week 21 Year to date  Local authority    E92000001
#> 2278        2025         Week 21 Year to date  Local authority    E92000001
#> 2279        2025         Week 21 Year to date  Local authority    E92000001
#> 2280        2025         Week 21 Year to date  Local authority    E92000001
#> 2281        2025         Week 21 Year to date  Local authority    E92000001
#> 2282        2025         Week 21 Year to date  Local authority    E92000001
#> 2283        2025         Week 21 Year to date  Local authority    E92000001
#> 2284        2025         Week 21 Year to date  Local authority    E92000001
#> 2285        2025         Week 21 Year to date  Local authority    E92000001
#> 2286        2025         Week 21 Year to date  Local authority    E92000001
#> 2287        2025         Week 21 Year to date  Local authority    E92000001
#> 2288        2025         Week 21 Year to date  Local authority    E92000001
#> 2289        2025         Week 21 Year to date  Local authority    E92000001
#> 2290        2025         Week 21 Year to date  Local authority    E92000001
#> 2291        2025         Week 21 Year to date  Local authority    E92000001
#> 2292        2025         Week 21 Year to date  Local authority    E92000001
#> 2293        2025         Week 21 Year to date  Local authority    E92000001
#> 2294        2025         Week 21 Year to date  Local authority    E92000001
#> 2295        2025         Week 21 Year to date  Local authority    E92000001
#> 2296        2025         Week 21 Year to date  Local authority    E92000001
#> 2297        2025         Week 21 Year to date  Local authority    E92000001
#> 2298        2025         Week 21 Year to date  Local authority    E92000001
#> 2299        2025         Week 21 Year to date  Local authority    E92000001
#> 2300        2025         Week 21 Year to date  Local authority    E92000001
#> 2301        2025         Week 21 Year to date  Local authority    E92000001
#> 2302        2025         Week 21 Year to date  Local authority    E92000001
#> 2303        2025         Week 21 Year to date  Local authority    E92000001
#> 2304        2025         Week 21 Year to date  Local authority    E92000001
#> 2305        2025         Week 21 Year to date  Local authority    E92000001
#> 2306        2025         Week 21 Year to date  Local authority    E92000001
#> 2307        2025         Week 21 Year to date  Local authority    E92000001
#> 2308        2025         Week 21 Year to date  Local authority    E92000001
#> 2309        2025         Week 21 Year to date  Local authority    E92000001
#> 2310        2025         Week 21 Year to date  Local authority    E92000001
#> 2311        2025         Week 21 Year to date  Local authority    E92000001
#> 2312        2025         Week 21 Year to date  Local authority    E92000001
#> 2313        2025         Week 21 Year to date  Local authority    E92000001
#> 2314        2025         Week 21 Year to date  Local authority    E92000001
#> 2315        2025         Week 21 Year to date  Local authority    E92000001
#> 2316        2025         Week 21 Year to date  Local authority    E92000001
#> 2317        2025         Week 21 Year to date  Local authority    E92000001
#> 2318        2025         Week 21 Year to date  Local authority    E92000001
#> 2319        2025         Week 21 Year to date  Local authority    E92000001
#> 2320        2025         Week 21 Year to date  Local authority    E92000001
#> 2321        2025         Week 21 Year to date  Local authority    E92000001
#> 2322        2025         Week 21 Year to date  Local authority    E92000001
#> 2323        2025         Week 21 Year to date  Local authority    E92000001
#> 2324        2025         Week 21 Year to date  Local authority    E92000001
#> 2325        2025         Week 21 Year to date  Local authority    E92000001
#> 2326        2025         Week 21 Year to date  Local authority    E92000001
#> 2327        2025         Week 21 Year to date  Local authority    E92000001
#> 2328        2025         Week 21 Year to date  Local authority    E92000001
#> 2329        2025         Week 21 Year to date  Local authority    E92000001
#> 2330        2025         Week 21 Year to date  Local authority    E92000001
#> 2331        2025         Week 21 Year to date  Local authority    E92000001
#> 2332        2025         Week 21 Year to date  Local authority    E92000001
#> 2333        2025         Week 21 Year to date  Local authority    E92000001
#> 2334        2025         Week 21 Year to date  Local authority    E92000001
#> 2335        2025         Week 21 Year to date  Local authority    E92000001
#> 2336        2025         Week 21 Year to date  Local authority    E92000001
#> 2337        2025         Week 21 Year to date  Local authority    E92000001
#> 2338        2025         Week 21 Year to date  Local authority    E92000001
#> 2339        2025         Week 21 Year to date  Local authority    E92000001
#> 2340        2025         Week 21 Year to date  Local authority    E92000001
#> 2341        2025         Week 21 Year to date  Local authority    E92000001
#> 2342        2025         Week 21 Year to date  Local authority    E92000001
#> 2343        2025         Week 21 Year to date  Local authority    E92000001
#> 2344        2025         Week 21 Year to date  Local authority    E92000001
#> 2345        2025         Week 21 Year to date  Local authority    E92000001
#> 2346        2025         Week 21 Year to date  Local authority    E92000001
#> 2347        2025         Week 21 Year to date  Local authority    E92000001
#> 2348        2025         Week 21 Year to date  Local authority    E92000001
#> 2349        2025         Week 21 Year to date  Local authority    E92000001
#> 2350        2025         Week 21 Year to date  Local authority    E92000001
#> 2351        2025         Week 21 Year to date  Local authority    E92000001
#> 2352        2025         Week 21 Year to date  Local authority    E92000001
#> 2353        2025         Week 21 Year to date  Local authority    E92000001
#> 2354        2025         Week 21 Year to date  Local authority    E92000001
#> 2355        2025         Week 21 Year to date  Local authority    E92000001
#> 2356        2025         Week 21 Year to date  Local authority    E92000001
#> 2357        2025         Week 21 Year to date  Local authority    E92000001
#> 2358        2025         Week 21 Year to date  Local authority    E92000001
#> 2359        2025         Week 21 Year to date  Local authority    E92000001
#> 2360        2025         Week 21 Year to date  Local authority    E92000001
#> 2361        2025         Week 21 Year to date  Local authority    E92000001
#> 2362        2025         Week 21 Year to date  Local authority    E92000001
#> 2363        2025         Week 21 Year to date         Regional    E92000001
#> 2364        2025         Week 21 Year to date         Regional    E92000001
#> 2365        2025         Week 21 Year to date         Regional    E92000001
#> 2366        2025         Week 21 Year to date         Regional    E92000001
#> 2367        2025         Week 21 Year to date  Local authority    E92000001
#> 2368        2025         Week 21 Year to date  Local authority    E92000001
#> 2369        2025         Week 21 Year to date  Local authority    E92000001
#> 2370        2025         Week 21 Year to date  Local authority    E92000001
#> 2371        2025         Week 21 Year to date  Local authority    E92000001
#> 2372        2025         Week 21 Year to date  Local authority    E92000001
#> 2373        2025         Week 21 Year to date  Local authority    E92000001
#> 2374        2025         Week 21 Year to date  Local authority    E92000001
#> 2375        2025         Week 21 Year to date  Local authority    E92000001
#> 2376        2025         Week 21 Year to date  Local authority    E92000001
#> 2377        2025         Week 21 Year to date  Local authority    E92000001
#> 2378        2025         Week 21 Year to date  Local authority    E92000001
#> 2379        2025         Week 21 Year to date  Local authority    E92000001
#> 2380        2025         Week 21 Year to date  Local authority    E92000001
#> 2381        2025         Week 21 Year to date  Local authority    E92000001
#> 2382        2025         Week 21 Year to date  Local authority    E92000001
#> 2383        2025         Week 21 Year to date  Local authority    E92000001
#> 2384        2025         Week 21 Year to date  Local authority    E92000001
#> 2385        2025         Week 21 Year to date  Local authority    E92000001
#> 2386        2025         Week 21 Year to date  Local authority    E92000001
#> 2387        2025         Week 21 Year to date  Local authority    E92000001
#> 2388        2025         Week 21 Year to date  Local authority    E92000001
#> 2389        2025         Week 21 Year to date  Local authority    E92000001
#> 2390        2025         Week 21 Year to date  Local authority    E92000001
#> 2391        2025         Week 21 Year to date  Local authority    E92000001
#> 2392        2025         Week 21 Year to date  Local authority    E92000001
#> 2393        2025         Week 21 Year to date  Local authority    E92000001
#> 2394        2025         Week 21 Year to date  Local authority    E92000001
#> 2395        2025         Week 21 Year to date  Local authority    E92000001
#> 2396        2025         Week 21 Year to date  Local authority    E92000001
#> 2397        2025         Week 21 Year to date  Local authority    E92000001
#> 2398        2025         Week 21 Year to date  Local authority    E92000001
#> 2399        2025         Week 21 Year to date  Local authority    E92000001
#> 2400        2025         Week 21 Year to date  Local authority    E92000001
#> 2401        2025         Week 21 Year to date  Local authority    E92000001
#> 2402        2025         Week 21 Year to date  Local authority    E92000001
#> 2403        2025         Week 21 Year to date  Local authority    E92000001
#> 2404        2025         Week 21 Year to date  Local authority    E92000001
#> 2405        2025         Week 21 Year to date  Local authority    E92000001
#> 2406        2025         Week 21 Year to date  Local authority    E92000001
#> 2407        2025         Week 21 Year to date  Local authority    E92000001
#> 2408        2025         Week 21 Year to date  Local authority    E92000001
#> 2409        2025         Week 21 Year to date  Local authority    E92000001
#> 2410        2025         Week 21 Year to date  Local authority    E92000001
#> 2411        2025         Week 21 Year to date  Local authority    E92000001
#> 2412        2025         Week 21 Year to date  Local authority    E92000001
#> 2413        2025         Week 21 Year to date  Local authority    E92000001
#> 2414        2025         Week 21 Year to date  Local authority    E92000001
#> 2415        2025         Week 21 Year to date  Local authority    E92000001
#> 2416        2025         Week 21 Year to date  Local authority    E92000001
#> 2417        2025         Week 21 Year to date  Local authority    E92000001
#> 2418        2025         Week 21 Year to date  Local authority    E92000001
#> 2419        2025         Week 21 Year to date  Local authority    E92000001
#> 2420        2025         Week 21 Year to date  Local authority    E92000001
#> 2421        2025         Week 21 Year to date  Local authority    E92000001
#> 2422        2025         Week 21 Year to date  Local authority    E92000001
#> 2423        2025         Week 21 Year to date  Local authority    E92000001
#> 2424        2025         Week 21 Year to date         Regional    E92000001
#> 2425        2025         Week 21 Year to date         Regional    E92000001
#> 2426        2025         Week 21 Year to date         Regional    E92000001
#> 2427        2025         Week 21 Year to date         Regional    E92000001
#> 2428        2025         Week 21 Year to date  Local authority    E92000001
#> 2429        2025         Week 21 Year to date  Local authority    E92000001
#> 2430        2025         Week 21 Year to date  Local authority    E92000001
#> 2431        2025         Week 21 Year to date  Local authority    E92000001
#> 2432        2025         Week 21 Year to date  Local authority    E92000001
#> 2433        2025         Week 21 Year to date  Local authority    E92000001
#> 2434        2025         Week 21 Year to date  Local authority    E92000001
#> 2435        2025         Week 21 Year to date  Local authority    E92000001
#> 2436        2025         Week 21 Year to date  Local authority    E92000001
#> 2437        2025         Week 21 Year to date  Local authority    E92000001
#> 2438        2025         Week 21 Year to date  Local authority    E92000001
#> 2439        2025         Week 21 Year to date  Local authority    E92000001
#> 2440        2025         Week 21 Year to date  Local authority    E92000001
#> 2441        2025         Week 21 Year to date  Local authority    E92000001
#> 2442        2025         Week 21 Year to date  Local authority    E92000001
#> 2443        2025         Week 21 Year to date  Local authority    E92000001
#> 2444        2025         Week 21 Year to date  Local authority    E92000001
#> 2445        2025         Week 21 Year to date  Local authority    E92000001
#> 2446        2025         Week 21 Year to date  Local authority    E92000001
#> 2447        2025         Week 21 Year to date  Local authority    E92000001
#> 2448        2025         Week 21 Year to date  Local authority    E92000001
#> 2449        2025         Week 21 Year to date  Local authority    E92000001
#> 2450        2025         Week 21 Year to date  Local authority    E92000001
#> 2451        2025         Week 21 Year to date  Local authority    E92000001
#> 2452        2025         Week 21 Year to date  Local authority    E92000001
#> 2453        2025         Week 21 Year to date  Local authority    E92000001
#> 2454        2025         Week 21 Year to date  Local authority    E92000001
#> 2455        2025         Week 21 Year to date  Local authority    E92000001
#> 2456        2025         Week 21 Year to date  Local authority    E92000001
#> 2457        2025         Week 21 Year to date  Local authority    E92000001
#> 2458        2025         Week 21 Year to date  Local authority    E92000001
#> 2459        2025         Week 21 Year to date  Local authority    E92000001
#> 2460        2025         Week 21 Year to date  Local authority    E92000001
#> 2461        2025         Week 21 Year to date  Local authority    E92000001
#> 2462        2025         Week 21 Year to date  Local authority    E92000001
#> 2463        2025         Week 21 Year to date  Local authority    E92000001
#> 2464        2025         Week 21 Year to date  Local authority    E92000001
#> 2465        2025         Week 21 Year to date  Local authority    E92000001
#> 2466        2025         Week 21 Year to date  Local authority    E92000001
#> 2467        2025         Week 21 Year to date  Local authority    E92000001
#> 2468        2025         Week 21 Year to date  Local authority    E92000001
#> 2469        2025         Week 21 Year to date  Local authority    E92000001
#> 2470        2025         Week 21 Year to date  Local authority    E92000001
#> 2471        2025         Week 20 Year to date         National    E92000001
#> 2472        2025         Week 20 Year to date         National    E92000001
#> 2473        2025         Week 20 Year to date         National    E92000001
#> 2474        2025         Week 20 Year to date         National    E92000001
#> 2475        2025         Week 20 Year to date         Regional    E92000001
#> 2476        2025         Week 20 Year to date         Regional    E92000001
#> 2477        2025         Week 20 Year to date         Regional    E92000001
#> 2478        2025         Week 20 Year to date         Regional    E92000001
#> 2479        2025         Week 20 Year to date  Local authority    E92000001
#> 2480        2025         Week 20 Year to date  Local authority    E92000001
#> 2481        2025         Week 20 Year to date  Local authority    E92000001
#> 2482        2025         Week 20 Year to date  Local authority    E92000001
#> 2483        2025         Week 20 Year to date  Local authority    E92000001
#> 2484        2025         Week 20 Year to date  Local authority    E92000001
#> 2485        2025         Week 20 Year to date  Local authority    E92000001
#> 2486        2025         Week 20 Year to date  Local authority    E92000001
#> 2487        2025         Week 20 Year to date  Local authority    E92000001
#> 2488        2025         Week 20 Year to date  Local authority    E92000001
#> 2489        2025         Week 20 Year to date  Local authority    E92000001
#> 2490        2025         Week 20 Year to date  Local authority    E92000001
#> 2491        2025         Week 20 Year to date  Local authority    E92000001
#> 2492        2025         Week 20 Year to date  Local authority    E92000001
#> 2493        2025         Week 20 Year to date  Local authority    E92000001
#> 2494        2025         Week 20 Year to date  Local authority    E92000001
#> 2495        2025         Week 20 Year to date  Local authority    E92000001
#> 2496        2025         Week 20 Year to date  Local authority    E92000001
#> 2497        2025         Week 20 Year to date  Local authority    E92000001
#> 2498        2025         Week 20 Year to date  Local authority    E92000001
#> 2499        2025         Week 20 Year to date  Local authority    E92000001
#> 2500        2025         Week 20 Year to date  Local authority    E92000001
#> 2501        2025         Week 20 Year to date  Local authority    E92000001
#> 2502        2025         Week 20 Year to date  Local authority    E92000001
#> 2503        2025         Week 20 Year to date  Local authority    E92000001
#> 2504        2025         Week 20 Year to date  Local authority    E92000001
#> 2505        2025         Week 20 Year to date  Local authority    E92000001
#> 2506        2025         Week 20 Year to date  Local authority    E92000001
#> 2507        2025         Week 20 Year to date  Local authority    E92000001
#> 2508        2025         Week 20 Year to date  Local authority    E92000001
#> 2509        2025         Week 20 Year to date  Local authority    E92000001
#> 2510        2025         Week 20 Year to date  Local authority    E92000001
#> 2511        2025         Week 20 Year to date  Local authority    E92000001
#> 2512        2025         Week 20 Year to date  Local authority    E92000001
#> 2513        2025         Week 20 Year to date  Local authority    E92000001
#> 2514        2025         Week 20 Year to date  Local authority    E92000001
#> 2515        2025         Week 20 Year to date         Regional    E92000001
#> 2516        2025         Week 20 Year to date         Regional    E92000001
#> 2517        2025         Week 20 Year to date         Regional    E92000001
#> 2518        2025         Week 20 Year to date         Regional    E92000001
#> 2519        2025         Week 20 Year to date  Local authority    E92000001
#> 2520        2025         Week 20 Year to date  Local authority    E92000001
#> 2521        2025         Week 20 Year to date  Local authority    E92000001
#> 2522        2025         Week 20 Year to date  Local authority    E92000001
#> 2523        2025         Week 20 Year to date  Local authority    E92000001
#> 2524        2025         Week 20 Year to date  Local authority    E92000001
#> 2525        2025         Week 20 Year to date  Local authority    E92000001
#> 2526        2025         Week 20 Year to date  Local authority    E92000001
#> 2527        2025         Week 20 Year to date  Local authority    E92000001
#> 2528        2025         Week 20 Year to date  Local authority    E92000001
#> 2529        2025         Week 20 Year to date  Local authority    E92000001
#> 2530        2025         Week 20 Year to date  Local authority    E92000001
#> 2531        2025         Week 20 Year to date  Local authority    E92000001
#> 2532        2025         Week 20 Year to date  Local authority    E92000001
#> 2533        2025         Week 20 Year to date  Local authority    E92000001
#> 2534        2025         Week 20 Year to date  Local authority    E92000001
#> 2535        2025         Week 20 Year to date  Local authority    E92000001
#> 2536        2025         Week 20 Year to date  Local authority    E92000001
#> 2537        2025         Week 20 Year to date  Local authority    E92000001
#> 2538        2025         Week 20 Year to date  Local authority    E92000001
#> 2539        2025         Week 20 Year to date  Local authority    E92000001
#> 2540        2025         Week 20 Year to date  Local authority    E92000001
#> 2541        2025         Week 20 Year to date  Local authority    E92000001
#> 2542        2025         Week 20 Year to date  Local authority    E92000001
#> 2543        2025         Week 20 Year to date  Local authority    E92000001
#> 2544        2025         Week 20 Year to date  Local authority    E92000001
#> 2545        2025         Week 20 Year to date  Local authority    E92000001
#> 2546        2025         Week 20 Year to date  Local authority    E92000001
#> 2547        2025         Week 20 Year to date  Local authority    E92000001
#> 2548        2025         Week 20 Year to date  Local authority    E92000001
#> 2549        2025         Week 20 Year to date  Local authority    E92000001
#> 2550        2025         Week 20 Year to date  Local authority    E92000001
#> 2551        2025         Week 20 Year to date  Local authority    E92000001
#> 2552        2025         Week 20 Year to date  Local authority    E92000001
#> 2553        2025         Week 20 Year to date  Local authority    E92000001
#> 2554        2025         Week 20 Year to date  Local authority    E92000001
#> 2555        2025         Week 20 Year to date  Local authority    E92000001
#> 2556        2025         Week 20 Year to date  Local authority    E92000001
#> 2557        2025         Week 20 Year to date  Local authority    E92000001
#> 2558        2025         Week 20 Year to date  Local authority    E92000001
#> 2559        2025         Week 20 Year to date  Local authority    E92000001
#> 2560        2025         Week 20 Year to date  Local authority    E92000001
#> 2561        2025         Week 20 Year to date  Local authority    E92000001
#> 2562        2025         Week 20 Year to date  Local authority    E92000001
#> 2563        2025         Week 20 Year to date  Local authority    E92000001
#> 2564        2025         Week 20 Year to date  Local authority    E92000001
#> 2565        2025         Week 20 Year to date  Local authority    E92000001
#> 2566        2025         Week 20 Year to date  Local authority    E92000001
#> 2567        2025         Week 20 Year to date  Local authority    E92000001
#> 2568        2025         Week 20 Year to date  Local authority    E92000001
#> 2569        2025         Week 20 Year to date  Local authority    E92000001
#> 2570        2025         Week 20 Year to date  Local authority    E92000001
#> 2571        2025         Week 20 Year to date  Local authority    E92000001
#> 2572        2025         Week 20 Year to date  Local authority    E92000001
#> 2573        2025         Week 20 Year to date  Local authority    E92000001
#> 2574        2025         Week 20 Year to date  Local authority    E92000001
#> 2575        2025         Week 20 Year to date  Local authority    E92000001
#> 2576        2025         Week 20 Year to date  Local authority    E92000001
#> 2577        2025         Week 20 Year to date  Local authority    E92000001
#> 2578        2025         Week 20 Year to date  Local authority    E92000001
#> 2579        2025         Week 20 Year to date  Local authority    E92000001
#> 2580        2025         Week 20 Year to date  Local authority    E92000001
#> 2581        2025         Week 20 Year to date  Local authority    E92000001
#> 2582        2025         Week 20 Year to date  Local authority    E92000001
#> 2583        2025         Week 20 Year to date  Local authority    E92000001
#> 2584        2025         Week 20 Year to date  Local authority    E92000001
#> 2585        2025         Week 20 Year to date  Local authority    E92000001
#> 2586        2025         Week 20 Year to date  Local authority    E92000001
#> 2587        2025         Week 20 Year to date  Local authority    E92000001
#> 2588        2025         Week 20 Year to date  Local authority    E92000001
#> 2589        2025         Week 20 Year to date  Local authority    E92000001
#> 2590        2025         Week 20 Year to date  Local authority    E92000001
#> 2591        2025         Week 20 Year to date         Regional    E92000001
#> 2592        2025         Week 20 Year to date         Regional    E92000001
#> 2593        2025         Week 20 Year to date         Regional    E92000001
#> 2594        2025         Week 20 Year to date         Regional    E92000001
#> 2595        2025         Week 20 Year to date  Local authority    E92000001
#> 2596        2025         Week 20 Year to date  Local authority    E92000001
#> 2597        2025         Week 20 Year to date  Local authority    E92000001
#> 2598        2025         Week 20 Year to date  Local authority    E92000001
#> 2599        2025         Week 20 Year to date  Local authority    E92000001
#> 2600        2025         Week 20 Year to date  Local authority    E92000001
#> 2601        2025         Week 20 Year to date  Local authority    E92000001
#> 2602        2025         Week 20 Year to date  Local authority    E92000001
#> 2603        2025         Week 20 Year to date  Local authority    E92000001
#> 2604        2025         Week 20 Year to date  Local authority    E92000001
#> 2605        2025         Week 20 Year to date  Local authority    E92000001
#> 2606        2025         Week 20 Year to date  Local authority    E92000001
#> 2607        2025         Week 20 Year to date  Local authority    E92000001
#> 2608        2025         Week 20 Year to date  Local authority    E92000001
#> 2609        2025         Week 20 Year to date  Local authority    E92000001
#> 2610        2025         Week 20 Year to date  Local authority    E92000001
#> 2611        2025         Week 20 Year to date  Local authority    E92000001
#> 2612        2025         Week 20 Year to date  Local authority    E92000001
#> 2613        2025         Week 20 Year to date  Local authority    E92000001
#> 2614        2025         Week 20 Year to date  Local authority    E92000001
#> 2615        2025         Week 20 Year to date  Local authority    E92000001
#> 2616        2025         Week 20 Year to date  Local authority    E92000001
#> 2617        2025         Week 20 Year to date  Local authority    E92000001
#> 2618        2025         Week 20 Year to date  Local authority    E92000001
#> 2619        2025         Week 20 Year to date  Local authority    E92000001
#> 2620        2025         Week 20 Year to date  Local authority    E92000001
#> 2621        2025         Week 20 Year to date  Local authority    E92000001
#> 2622        2025         Week 20 Year to date  Local authority    E92000001
#> 2623        2025         Week 20 Year to date  Local authority    E92000001
#> 2624        2025         Week 20 Year to date  Local authority    E92000001
#> 2625        2025         Week 20 Year to date  Local authority    E92000001
#> 2626        2025         Week 20 Year to date  Local authority    E92000001
#> 2627        2025         Week 20 Year to date  Local authority    E92000001
#> 2628        2025         Week 20 Year to date  Local authority    E92000001
#> 2629        2025         Week 20 Year to date  Local authority    E92000001
#> 2630        2025         Week 20 Year to date  Local authority    E92000001
#> 2631        2025         Week 20 Year to date  Local authority    E92000001
#> 2632        2025         Week 20 Year to date  Local authority    E92000001
#> 2633        2025         Week 20 Year to date  Local authority    E92000001
#> 2634        2025         Week 20 Year to date  Local authority    E92000001
#> 2635        2025         Week 20 Year to date  Local authority    E92000001
#> 2636        2025         Week 20 Year to date  Local authority    E92000001
#> 2637        2025         Week 20 Year to date  Local authority    E92000001
#> 2638        2025         Week 20 Year to date  Local authority    E92000001
#> 2639        2025         Week 20 Year to date  Local authority    E92000001
#> 2640        2025         Week 20 Year to date         Regional    E92000001
#> 2641        2025         Week 20 Year to date         Regional    E92000001
#> 2642        2025         Week 20 Year to date         Regional    E92000001
#> 2643        2025         Week 20 Year to date         Regional    E92000001
#> 2644        2025         Week 20 Year to date  Local authority    E92000001
#> 2645        2025         Week 20 Year to date  Local authority    E92000001
#> 2646        2025         Week 20 Year to date  Local authority    E92000001
#> 2647        2025         Week 20 Year to date  Local authority    E92000001
#> 2648        2025         Week 20 Year to date  Local authority    E92000001
#> 2649        2025         Week 20 Year to date  Local authority    E92000001
#> 2650        2025         Week 20 Year to date  Local authority    E92000001
#> 2651        2025         Week 20 Year to date  Local authority    E92000001
#> 2652        2025         Week 20 Year to date  Local authority    E92000001
#> 2653        2025         Week 20 Year to date  Local authority    E92000001
#> 2654        2025         Week 20 Year to date  Local authority    E92000001
#> 2655        2025         Week 20 Year to date  Local authority    E92000001
#> 2656        2025         Week 20 Year to date  Local authority    E92000001
#> 2657        2025         Week 20 Year to date  Local authority    E92000001
#> 2658        2025         Week 20 Year to date  Local authority    E92000001
#> 2659        2025         Week 20 Year to date  Local authority    E92000001
#> 2660        2025         Week 20 Year to date  Local authority    E92000001
#> 2661        2025         Week 20 Year to date  Local authority    E92000001
#> 2662        2025         Week 20 Year to date  Local authority    E92000001
#> 2663        2025         Week 20 Year to date  Local authority    E92000001
#> 2664        2025         Week 20 Year to date  Local authority    E92000001
#> 2665        2025         Week 20 Year to date  Local authority    E92000001
#> 2666        2025         Week 20 Year to date  Local authority    E92000001
#> 2667        2025         Week 20 Year to date  Local authority    E92000001
#> 2668        2025         Week 20 Year to date  Local authority    E92000001
#> 2669        2025         Week 20 Year to date  Local authority    E92000001
#> 2670        2025         Week 20 Year to date  Local authority    E92000001
#> 2671        2025         Week 20 Year to date  Local authority    E92000001
#> 2672        2025         Week 20 Year to date  Local authority    E92000001
#> 2673        2025         Week 20 Year to date         Regional    E92000001
#> 2674        2025         Week 20 Year to date         Regional    E92000001
#> 2675        2025         Week 20 Year to date         Regional    E92000001
#> 2676        2025         Week 20 Year to date         Regional    E92000001
#> 2677        2025         Week 20 Year to date  Local authority    E92000001
#> 2678        2025         Week 20 Year to date  Local authority    E92000001
#> 2679        2025         Week 20 Year to date  Local authority    E92000001
#> 2680        2025         Week 20 Year to date  Local authority    E92000001
#> 2681        2025         Week 20 Year to date  Local authority    E92000001
#> 2682        2025         Week 20 Year to date  Local authority    E92000001
#> 2683        2025         Week 20 Year to date  Local authority    E92000001
#> 2684        2025         Week 20 Year to date  Local authority    E92000001
#> 2685        2025         Week 20 Year to date  Local authority    E92000001
#> 2686        2025         Week 20 Year to date  Local authority    E92000001
#> 2687        2025         Week 20 Year to date  Local authority    E92000001
#> 2688        2025         Week 20 Year to date  Local authority    E92000001
#> 2689        2025         Week 20 Year to date  Local authority    E92000001
#> 2690        2025         Week 20 Year to date  Local authority    E92000001
#> 2691        2025         Week 20 Year to date  Local authority    E92000001
#> 2692        2025         Week 20 Year to date  Local authority    E92000001
#> 2693        2025         Week 20 Year to date  Local authority    E92000001
#> 2694        2025         Week 20 Year to date  Local authority    E92000001
#> 2695        2025         Week 20 Year to date  Local authority    E92000001
#> 2696        2025         Week 20 Year to date  Local authority    E92000001
#> 2697        2025         Week 20 Year to date  Local authority    E92000001
#> 2698        2025         Week 20 Year to date  Local authority    E92000001
#> 2699        2025         Week 20 Year to date  Local authority    E92000001
#> 2700        2025         Week 20 Year to date  Local authority    E92000001
#> 2701        2025         Week 20 Year to date  Local authority    E92000001
#> 2702        2025         Week 20 Year to date  Local authority    E92000001
#> 2703        2025         Week 20 Year to date  Local authority    E92000001
#> 2704        2025         Week 20 Year to date  Local authority    E92000001
#> 2705        2025         Week 20 Year to date  Local authority    E92000001
#> 2706        2025         Week 20 Year to date  Local authority    E92000001
#> 2707        2025         Week 20 Year to date  Local authority    E92000001
#> 2708        2025         Week 20 Year to date  Local authority    E92000001
#> 2709        2025         Week 20 Year to date  Local authority    E92000001
#> 2710        2025         Week 20 Year to date  Local authority    E92000001
#> 2711        2025         Week 20 Year to date  Local authority    E92000001
#> 2712        2025         Week 20 Year to date  Local authority    E92000001
#> 2713        2025         Week 20 Year to date  Local authority    E92000001
#> 2714        2025         Week 20 Year to date  Local authority    E92000001
#> 2715        2025         Week 20 Year to date  Local authority    E92000001
#> 2716        2025         Week 20 Year to date  Local authority    E92000001
#> 2717        2025         Week 20 Year to date  Local authority    E92000001
#> 2718        2025         Week 20 Year to date  Local authority    E92000001
#> 2719        2025         Week 20 Year to date         Regional    E92000001
#> 2720        2025         Week 20 Year to date         Regional    E92000001
#> 2721        2025         Week 20 Year to date         Regional    E92000001
#> 2722        2025         Week 20 Year to date         Regional    E92000001
#> 2723        2025         Week 20 Year to date  Local authority    E92000001
#> 2724        2025         Week 20 Year to date  Local authority    E92000001
#> 2725        2025         Week 20 Year to date  Local authority    E92000001
#> 2726        2025         Week 20 Year to date  Local authority    E92000001
#> 2727        2025         Week 20 Year to date  Local authority    E92000001
#> 2728        2025         Week 20 Year to date  Local authority    E92000001
#> 2729        2025         Week 20 Year to date  Local authority    E92000001
#> 2730        2025         Week 20 Year to date  Local authority    E92000001
#> 2731        2025         Week 20 Year to date  Local authority    E92000001
#> 2732        2025         Week 20 Year to date  Local authority    E92000001
#> 2733        2025         Week 20 Year to date  Local authority    E92000001
#> 2734        2025         Week 20 Year to date  Local authority    E92000001
#> 2735        2025         Week 20 Year to date  Local authority    E92000001
#> 2736        2025         Week 20 Year to date  Local authority    E92000001
#> 2737        2025         Week 20 Year to date  Local authority    E92000001
#> 2738        2025         Week 20 Year to date  Local authority    E92000001
#> 2739        2025         Week 20 Year to date  Local authority    E92000001
#> 2740        2025         Week 20 Year to date  Local authority    E92000001
#> 2741        2025         Week 20 Year to date  Local authority    E92000001
#> 2742        2025         Week 20 Year to date  Local authority    E92000001
#> 2743        2025         Week 20 Year to date  Local authority    E92000001
#> 2744        2025         Week 20 Year to date  Local authority    E92000001
#> 2745        2025         Week 20 Year to date  Local authority    E92000001
#> 2746        2025         Week 20 Year to date  Local authority    E92000001
#> 2747        2025         Week 20 Year to date  Local authority    E92000001
#> 2748        2025         Week 20 Year to date  Local authority    E92000001
#> 2749        2025         Week 20 Year to date  Local authority    E92000001
#> 2750        2025         Week 20 Year to date  Local authority    E92000001
#> 2751        2025         Week 20 Year to date  Local authority    E92000001
#> 2752        2025         Week 20 Year to date  Local authority    E92000001
#> 2753        2025         Week 20 Year to date  Local authority    E92000001
#> 2754        2025         Week 20 Year to date  Local authority    E92000001
#> 2755        2025         Week 20 Year to date  Local authority    E92000001
#> 2756        2025         Week 20 Year to date         Regional    E92000001
#> 2757        2025         Week 20 Year to date         Regional    E92000001
#> 2758        2025         Week 20 Year to date         Regional    E92000001
#> 2759        2025         Week 20 Year to date         Regional    E92000001
#> 2760        2025         Week 20 Year to date  Local authority    E92000001
#> 2761        2025         Week 20 Year to date  Local authority    E92000001
#> 2762        2025         Week 20 Year to date  Local authority    E92000001
#> 2763        2025         Week 20 Year to date  Local authority    E92000001
#> 2764        2025         Week 20 Year to date  Local authority    E92000001
#> 2765        2025         Week 20 Year to date  Local authority    E92000001
#> 2766        2025         Week 20 Year to date  Local authority    E92000001
#> 2767        2025         Week 20 Year to date  Local authority    E92000001
#> 2768        2025         Week 20 Year to date  Local authority    E92000001
#> 2769        2025         Week 20 Year to date  Local authority    E92000001
#> 2770        2025         Week 20 Year to date  Local authority    E92000001
#> 2771        2025         Week 20 Year to date  Local authority    E92000001
#> 2772        2025         Week 20 Year to date  Local authority    E92000001
#> 2773        2025         Week 20 Year to date  Local authority    E92000001
#> 2774        2025         Week 20 Year to date  Local authority    E92000001
#> 2775        2025         Week 20 Year to date  Local authority    E92000001
#> 2776        2025         Week 20 Year to date  Local authority    E92000001
#> 2777        2025         Week 20 Year to date  Local authority    E92000001
#> 2778        2025         Week 20 Year to date  Local authority    E92000001
#> 2779        2025         Week 20 Year to date  Local authority    E92000001
#> 2780        2025         Week 20 Year to date  Local authority    E92000001
#> 2781        2025         Week 20 Year to date  Local authority    E92000001
#> 2782        2025         Week 20 Year to date  Local authority    E92000001
#> 2783        2025         Week 20 Year to date  Local authority    E92000001
#> 2784        2025         Week 20 Year to date  Local authority    E92000001
#> 2785        2025         Week 20 Year to date  Local authority    E92000001
#> 2786        2025         Week 20 Year to date  Local authority    E92000001
#> 2787        2025         Week 20 Year to date  Local authority    E92000001
#> 2788        2025         Week 20 Year to date  Local authority    E92000001
#> 2789        2025         Week 20 Year to date  Local authority    E92000001
#> 2790        2025         Week 20 Year to date  Local authority    E92000001
#> 2791        2025         Week 20 Year to date  Local authority    E92000001
#> 2792        2025         Week 20 Year to date  Local authority    E92000001
#> 2793        2025         Week 20 Year to date  Local authority    E92000001
#> 2794        2025         Week 20 Year to date  Local authority    E92000001
#> 2795        2025         Week 20 Year to date  Local authority    E92000001
#> 2796        2025         Week 20 Year to date  Local authority    E92000001
#> 2797        2025         Week 20 Year to date  Local authority    E92000001
#> 2798        2025         Week 20 Year to date  Local authority    E92000001
#> 2799        2025         Week 20 Year to date  Local authority    E92000001
#> 2800        2025         Week 20 Year to date  Local authority    E92000001
#> 2801        2025         Week 20 Year to date  Local authority    E92000001
#> 2802        2025         Week 20 Year to date  Local authority    E92000001
#> 2803        2025         Week 20 Year to date  Local authority    E92000001
#> 2804        2025         Week 20 Year to date  Local authority    E92000001
#> 2805        2025         Week 20 Year to date  Local authority    E92000001
#> 2806        2025         Week 20 Year to date  Local authority    E92000001
#> 2807        2025         Week 20 Year to date  Local authority    E92000001
#> 2808        2025         Week 20 Year to date  Local authority    E92000001
#> 2809        2025         Week 20 Year to date  Local authority    E92000001
#> 2810        2025         Week 20 Year to date  Local authority    E92000001
#> 2811        2025         Week 20 Year to date  Local authority    E92000001
#> 2812        2025         Week 20 Year to date  Local authority    E92000001
#> 2813        2025         Week 20 Year to date  Local authority    E92000001
#> 2814        2025         Week 20 Year to date  Local authority    E92000001
#> 2815        2025         Week 20 Year to date  Local authority    E92000001
#> 2816        2025         Week 20 Year to date  Local authority    E92000001
#> 2817        2025         Week 20 Year to date  Local authority    E92000001
#> 2818        2025         Week 20 Year to date  Local authority    E92000001
#> 2819        2025         Week 20 Year to date  Local authority    E92000001
#> 2820        2025         Week 20 Year to date  Local authority    E92000001
#> 2821        2025         Week 20 Year to date  Local authority    E92000001
#> 2822        2025         Week 20 Year to date  Local authority    E92000001
#> 2823        2025         Week 20 Year to date  Local authority    E92000001
#> 2824        2025         Week 20 Year to date  Local authority    E92000001
#> 2825        2025         Week 20 Year to date  Local authority    E92000001
#> 2826        2025         Week 20 Year to date  Local authority    E92000001
#> 2827        2025         Week 20 Year to date  Local authority    E92000001
#> 2828        2025         Week 20 Year to date  Local authority    E92000001
#> 2829        2025         Week 20 Year to date  Local authority    E92000001
#> 2830        2025         Week 20 Year to date  Local authority    E92000001
#> 2831        2025         Week 20 Year to date  Local authority    E92000001
#> 2832        2025         Week 20 Year to date  Local authority    E92000001
#> 2833        2025         Week 20 Year to date  Local authority    E92000001
#> 2834        2025         Week 20 Year to date  Local authority    E92000001
#> 2835        2025         Week 20 Year to date  Local authority    E92000001
#> 2836        2025         Week 20 Year to date  Local authority    E92000001
#> 2837        2025         Week 20 Year to date  Local authority    E92000001
#> 2838        2025         Week 20 Year to date  Local authority    E92000001
#> 2839        2025         Week 20 Year to date  Local authority    E92000001
#> 2840        2025         Week 20 Year to date  Local authority    E92000001
#> 2841        2025         Week 20 Year to date  Local authority    E92000001
#> 2842        2025         Week 20 Year to date  Local authority    E92000001
#> 2843        2025         Week 20 Year to date  Local authority    E92000001
#> 2844        2025         Week 20 Year to date  Local authority    E92000001
#> 2845        2025         Week 20 Year to date  Local authority    E92000001
#> 2846        2025         Week 20 Year to date  Local authority    E92000001
#> 2847        2025         Week 20 Year to date  Local authority    E92000001
#> 2848        2025         Week 20 Year to date  Local authority    E92000001
#> 2849        2025         Week 20 Year to date  Local authority    E92000001
#> 2850        2025         Week 20 Year to date  Local authority    E92000001
#> 2851        2025         Week 20 Year to date  Local authority    E92000001
#> 2852        2025         Week 20 Year to date  Local authority    E92000001
#> 2853        2025         Week 20 Year to date  Local authority    E92000001
#> 2854        2025         Week 20 Year to date  Local authority    E92000001
#> 2855        2025         Week 20 Year to date  Local authority    E92000001
#> 2856        2025         Week 20 Year to date  Local authority    E92000001
#> 2857        2025         Week 20 Year to date         Regional    E92000001
#> 2858        2025         Week 20 Year to date         Regional    E92000001
#> 2859        2025         Week 20 Year to date         Regional    E92000001
#> 2860        2025         Week 20 Year to date         Regional    E92000001
#> 2861        2025         Week 20 Year to date  Local authority    E92000001
#> 2862        2025         Week 20 Year to date  Local authority    E92000001
#> 2863        2025         Week 20 Year to date  Local authority    E92000001
#> 2864        2025         Week 20 Year to date  Local authority    E92000001
#> 2865        2025         Week 20 Year to date  Local authority    E92000001
#> 2866        2025         Week 20 Year to date  Local authority    E92000001
#> 2867        2025         Week 20 Year to date  Local authority    E92000001
#> 2868        2025         Week 20 Year to date  Local authority    E92000001
#> 2869        2025         Week 20 Year to date  Local authority    E92000001
#> 2870        2025         Week 20 Year to date  Local authority    E92000001
#> 2871        2025         Week 20 Year to date  Local authority    E92000001
#> 2872        2025         Week 20 Year to date  Local authority    E92000001
#> 2873        2025         Week 20 Year to date  Local authority    E92000001
#> 2874        2025         Week 20 Year to date  Local authority    E92000001
#> 2875        2025         Week 20 Year to date  Local authority    E92000001
#> 2876        2025         Week 20 Year to date  Local authority    E92000001
#> 2877        2025         Week 20 Year to date  Local authority    E92000001
#> 2878        2025         Week 20 Year to date  Local authority    E92000001
#> 2879        2025         Week 20 Year to date  Local authority    E92000001
#> 2880        2025         Week 20 Year to date  Local authority    E92000001
#> 2881        2025         Week 20 Year to date  Local authority    E92000001
#> 2882        2025         Week 20 Year to date  Local authority    E92000001
#> 2883        2025         Week 20 Year to date  Local authority    E92000001
#> 2884        2025         Week 20 Year to date  Local authority    E92000001
#> 2885        2025         Week 20 Year to date  Local authority    E92000001
#> 2886        2025         Week 20 Year to date  Local authority    E92000001
#> 2887        2025         Week 20 Year to date  Local authority    E92000001
#> 2888        2025         Week 20 Year to date  Local authority    E92000001
#> 2889        2025         Week 20 Year to date  Local authority    E92000001
#> 2890        2025         Week 20 Year to date  Local authority    E92000001
#> 2891        2025         Week 20 Year to date  Local authority    E92000001
#> 2892        2025         Week 20 Year to date  Local authority    E92000001
#> 2893        2025         Week 20 Year to date  Local authority    E92000001
#> 2894        2025         Week 20 Year to date  Local authority    E92000001
#> 2895        2025         Week 20 Year to date  Local authority    E92000001
#> 2896        2025         Week 20 Year to date  Local authority    E92000001
#> 2897        2025         Week 20 Year to date  Local authority    E92000001
#> 2898        2025         Week 20 Year to date  Local authority    E92000001
#> 2899        2025         Week 20 Year to date  Local authority    E92000001
#> 2900        2025         Week 20 Year to date  Local authority    E92000001
#> 2901        2025         Week 20 Year to date  Local authority    E92000001
#> 2902        2025         Week 20 Year to date  Local authority    E92000001
#> 2903        2025         Week 20 Year to date  Local authority    E92000001
#> 2904        2025         Week 20 Year to date  Local authority    E92000001
#> 2905        2025         Week 20 Year to date  Local authority    E92000001
#> 2906        2025         Week 20 Year to date  Local authority    E92000001
#> 2907        2025         Week 20 Year to date  Local authority    E92000001
#> 2908        2025         Week 20 Year to date  Local authority    E92000001
#> 2909        2025         Week 20 Year to date  Local authority    E92000001
#> 2910        2025         Week 20 Year to date  Local authority    E92000001
#> 2911        2025         Week 20 Year to date  Local authority    E92000001
#> 2912        2025         Week 20 Year to date  Local authority    E92000001
#> 2913        2025         Week 20 Year to date  Local authority    E92000001
#> 2914        2025         Week 20 Year to date  Local authority    E92000001
#> 2915        2025         Week 20 Year to date  Local authority    E92000001
#> 2916        2025         Week 20 Year to date  Local authority    E92000001
#> 2917        2025         Week 20 Year to date  Local authority    E92000001
#> 2918        2025         Week 20 Year to date         Regional    E92000001
#> 2919        2025         Week 20 Year to date         Regional    E92000001
#> 2920        2025         Week 20 Year to date         Regional    E92000001
#> 2921        2025         Week 20 Year to date         Regional    E92000001
#> 2922        2025         Week 20 Year to date  Local authority    E92000001
#> 2923        2025         Week 20 Year to date  Local authority    E92000001
#> 2924        2025         Week 20 Year to date  Local authority    E92000001
#> 2925        2025         Week 20 Year to date  Local authority    E92000001
#> 2926        2025         Week 20 Year to date  Local authority    E92000001
#> 2927        2025         Week 20 Year to date  Local authority    E92000001
#> 2928        2025         Week 20 Year to date  Local authority    E92000001
#> 2929        2025         Week 20 Year to date  Local authority    E92000001
#> 2930        2025         Week 20 Year to date  Local authority    E92000001
#> 2931        2025         Week 20 Year to date  Local authority    E92000001
#> 2932        2025         Week 20 Year to date  Local authority    E92000001
#> 2933        2025         Week 20 Year to date  Local authority    E92000001
#> 2934        2025         Week 20 Year to date  Local authority    E92000001
#> 2935        2025         Week 20 Year to date  Local authority    E92000001
#> 2936        2025         Week 20 Year to date  Local authority    E92000001
#> 2937        2025         Week 20 Year to date  Local authority    E92000001
#> 2938        2025         Week 20 Year to date  Local authority    E92000001
#> 2939        2025         Week 20 Year to date  Local authority    E92000001
#> 2940        2025         Week 20 Year to date  Local authority    E92000001
#> 2941        2025         Week 20 Year to date  Local authority    E92000001
#> 2942        2025         Week 20 Year to date  Local authority    E92000001
#> 2943        2025         Week 20 Year to date  Local authority    E92000001
#> 2944        2025         Week 20 Year to date  Local authority    E92000001
#> 2945        2025         Week 20 Year to date  Local authority    E92000001
#> 2946        2025         Week 20 Year to date  Local authority    E92000001
#> 2947        2025         Week 20 Year to date  Local authority    E92000001
#> 2948        2025         Week 20 Year to date  Local authority    E92000001
#> 2949        2025         Week 20 Year to date  Local authority    E92000001
#> 2950        2025         Week 20 Year to date  Local authority    E92000001
#> 2951        2025         Week 20 Year to date  Local authority    E92000001
#> 2952        2025         Week 20 Year to date  Local authority    E92000001
#> 2953        2025         Week 20 Year to date  Local authority    E92000001
#> 2954        2025         Week 20 Year to date  Local authority    E92000001
#> 2955        2025         Week 20 Year to date  Local authority    E92000001
#> 2956        2025         Week 20 Year to date  Local authority    E92000001
#> 2957        2025         Week 20 Year to date  Local authority    E92000001
#> 2958        2025         Week 20 Year to date  Local authority    E92000001
#> 2959        2025         Week 20 Year to date  Local authority    E92000001
#> 2960        2025         Week 20 Year to date  Local authority    E92000001
#> 2961        2025         Week 20 Year to date  Local authority    E92000001
#> 2962        2025         Week 20 Year to date  Local authority    E92000001
#> 2963        2025         Week 20 Year to date  Local authority    E92000001
#> 2964        2025         Week 20 Year to date  Local authority    E92000001
#> 2965        2025         Week 18 Year to date         National    E92000001
#> 2966        2025         Week 18 Year to date         National    E92000001
#> 2967        2025         Week 18 Year to date         National    E92000001
#> 2968        2025         Week 18 Year to date         National    E92000001
#> 2969        2025         Week 18 Year to date         Regional    E92000001
#> 2970        2025         Week 18 Year to date         Regional    E92000001
#> 2971        2025         Week 18 Year to date         Regional    E92000001
#> 2972        2025         Week 18 Year to date         Regional    E92000001
#> 2973        2025         Week 18 Year to date  Local authority    E92000001
#> 2974        2025         Week 18 Year to date  Local authority    E92000001
#> 2975        2025         Week 18 Year to date  Local authority    E92000001
#> 2976        2025         Week 18 Year to date  Local authority    E92000001
#> 2977        2025         Week 18 Year to date  Local authority    E92000001
#> 2978        2025         Week 18 Year to date  Local authority    E92000001
#> 2979        2025         Week 18 Year to date  Local authority    E92000001
#> 2980        2025         Week 18 Year to date  Local authority    E92000001
#> 2981        2025         Week 18 Year to date  Local authority    E92000001
#> 2982        2025         Week 18 Year to date  Local authority    E92000001
#> 2983        2025         Week 18 Year to date  Local authority    E92000001
#> 2984        2025         Week 18 Year to date  Local authority    E92000001
#> 2985        2025         Week 18 Year to date  Local authority    E92000001
#> 2986        2025         Week 18 Year to date  Local authority    E92000001
#> 2987        2025         Week 18 Year to date  Local authority    E92000001
#> 2988        2025         Week 18 Year to date  Local authority    E92000001
#> 2989        2025         Week 18 Year to date  Local authority    E92000001
#> 2990        2025         Week 18 Year to date  Local authority    E92000001
#> 2991        2025         Week 18 Year to date  Local authority    E92000001
#> 2992        2025         Week 18 Year to date  Local authority    E92000001
#> 2993        2025         Week 18 Year to date  Local authority    E92000001
#> 2994        2025         Week 18 Year to date  Local authority    E92000001
#> 2995        2025         Week 18 Year to date  Local authority    E92000001
#> 2996        2025         Week 18 Year to date  Local authority    E92000001
#> 2997        2025         Week 18 Year to date  Local authority    E92000001
#> 2998        2025         Week 18 Year to date  Local authority    E92000001
#> 2999        2025         Week 18 Year to date  Local authority    E92000001
#> 3000        2025         Week 18 Year to date  Local authority    E92000001
#> 3001        2025         Week 18 Year to date  Local authority    E92000001
#> 3002        2025         Week 18 Year to date  Local authority    E92000001
#> 3003        2025         Week 18 Year to date  Local authority    E92000001
#> 3004        2025         Week 18 Year to date  Local authority    E92000001
#> 3005        2025         Week 18 Year to date  Local authority    E92000001
#> 3006        2025         Week 18 Year to date  Local authority    E92000001
#> 3007        2025         Week 18 Year to date  Local authority    E92000001
#> 3008        2025         Week 18 Year to date  Local authority    E92000001
#> 3009        2025         Week 18 Year to date         Regional    E92000001
#> 3010        2025         Week 18 Year to date         Regional    E92000001
#> 3011        2025         Week 18 Year to date         Regional    E92000001
#> 3012        2025         Week 18 Year to date         Regional    E92000001
#> 3013        2025         Week 18 Year to date  Local authority    E92000001
#> 3014        2025         Week 18 Year to date  Local authority    E92000001
#> 3015        2025         Week 18 Year to date  Local authority    E92000001
#> 3016        2025         Week 18 Year to date  Local authority    E92000001
#> 3017        2025         Week 18 Year to date  Local authority    E92000001
#> 3018        2025         Week 18 Year to date  Local authority    E92000001
#> 3019        2025         Week 18 Year to date  Local authority    E92000001
#> 3020        2025         Week 18 Year to date  Local authority    E92000001
#> 3021        2025         Week 18 Year to date  Local authority    E92000001
#> 3022        2025         Week 18 Year to date  Local authority    E92000001
#> 3023        2025         Week 18 Year to date  Local authority    E92000001
#> 3024        2025         Week 18 Year to date  Local authority    E92000001
#> 3025        2025         Week 18 Year to date  Local authority    E92000001
#> 3026        2025         Week 18 Year to date  Local authority    E92000001
#> 3027        2025         Week 18 Year to date  Local authority    E92000001
#> 3028        2025         Week 18 Year to date  Local authority    E92000001
#> 3029        2025         Week 18 Year to date  Local authority    E92000001
#> 3030        2025         Week 18 Year to date  Local authority    E92000001
#> 3031        2025         Week 18 Year to date  Local authority    E92000001
#> 3032        2025         Week 18 Year to date  Local authority    E92000001
#> 3033        2025         Week 18 Year to date  Local authority    E92000001
#> 3034        2025         Week 18 Year to date  Local authority    E92000001
#> 3035        2025         Week 18 Year to date  Local authority    E92000001
#> 3036        2025         Week 18 Year to date  Local authority    E92000001
#> 3037        2025         Week 18 Year to date  Local authority    E92000001
#> 3038        2025         Week 18 Year to date  Local authority    E92000001
#> 3039        2025         Week 18 Year to date  Local authority    E92000001
#> 3040        2025         Week 18 Year to date  Local authority    E92000001
#> 3041        2025         Week 18 Year to date  Local authority    E92000001
#> 3042        2025         Week 18 Year to date  Local authority    E92000001
#> 3043        2025         Week 18 Year to date  Local authority    E92000001
#> 3044        2025         Week 18 Year to date  Local authority    E92000001
#> 3045        2025         Week 18 Year to date  Local authority    E92000001
#> 3046        2025         Week 18 Year to date  Local authority    E92000001
#> 3047        2025         Week 18 Year to date  Local authority    E92000001
#> 3048        2025         Week 18 Year to date  Local authority    E92000001
#> 3049        2025         Week 18 Year to date  Local authority    E92000001
#> 3050        2025         Week 18 Year to date  Local authority    E92000001
#> 3051        2025         Week 18 Year to date  Local authority    E92000001
#> 3052        2025         Week 18 Year to date  Local authority    E92000001
#> 3053        2025         Week 18 Year to date  Local authority    E92000001
#> 3054        2025         Week 18 Year to date  Local authority    E92000001
#> 3055        2025         Week 18 Year to date  Local authority    E92000001
#> 3056        2025         Week 18 Year to date  Local authority    E92000001
#> 3057        2025         Week 18 Year to date  Local authority    E92000001
#> 3058        2025         Week 18 Year to date  Local authority    E92000001
#> 3059        2025         Week 18 Year to date  Local authority    E92000001
#> 3060        2025         Week 18 Year to date  Local authority    E92000001
#> 3061        2025         Week 18 Year to date  Local authority    E92000001
#> 3062        2025         Week 18 Year to date  Local authority    E92000001
#> 3063        2025         Week 18 Year to date  Local authority    E92000001
#> 3064        2025         Week 18 Year to date  Local authority    E92000001
#> 3065        2025         Week 18 Year to date  Local authority    E92000001
#> 3066        2025         Week 18 Year to date  Local authority    E92000001
#> 3067        2025         Week 18 Year to date  Local authority    E92000001
#> 3068        2025         Week 18 Year to date  Local authority    E92000001
#> 3069        2025         Week 18 Year to date  Local authority    E92000001
#> 3070        2025         Week 18 Year to date  Local authority    E92000001
#> 3071        2025         Week 18 Year to date  Local authority    E92000001
#> 3072        2025         Week 18 Year to date  Local authority    E92000001
#> 3073        2025         Week 18 Year to date  Local authority    E92000001
#> 3074        2025         Week 18 Year to date  Local authority    E92000001
#> 3075        2025         Week 18 Year to date  Local authority    E92000001
#> 3076        2025         Week 18 Year to date  Local authority    E92000001
#> 3077        2025         Week 18 Year to date  Local authority    E92000001
#> 3078        2025         Week 18 Year to date  Local authority    E92000001
#> 3079        2025         Week 18 Year to date  Local authority    E92000001
#> 3080        2025         Week 18 Year to date  Local authority    E92000001
#> 3081        2025         Week 18 Year to date  Local authority    E92000001
#> 3082        2025         Week 18 Year to date  Local authority    E92000001
#> 3083        2025         Week 18 Year to date  Local authority    E92000001
#> 3084        2025         Week 18 Year to date  Local authority    E92000001
#> 3085        2025         Week 18 Year to date         Regional    E92000001
#> 3086        2025         Week 18 Year to date         Regional    E92000001
#> 3087        2025         Week 18 Year to date         Regional    E92000001
#> 3088        2025         Week 18 Year to date         Regional    E92000001
#> 3089        2025         Week 18 Year to date  Local authority    E92000001
#> 3090        2025         Week 18 Year to date  Local authority    E92000001
#> 3091        2025         Week 18 Year to date  Local authority    E92000001
#> 3092        2025         Week 18 Year to date  Local authority    E92000001
#> 3093        2025         Week 18 Year to date  Local authority    E92000001
#> 3094        2025         Week 18 Year to date  Local authority    E92000001
#> 3095        2025         Week 18 Year to date  Local authority    E92000001
#> 3096        2025         Week 18 Year to date  Local authority    E92000001
#> 3097        2025         Week 18 Year to date  Local authority    E92000001
#> 3098        2025         Week 18 Year to date  Local authority    E92000001
#> 3099        2025         Week 18 Year to date  Local authority    E92000001
#> 3100        2025         Week 18 Year to date  Local authority    E92000001
#> 3101        2025         Week 18 Year to date  Local authority    E92000001
#> 3102        2025         Week 18 Year to date  Local authority    E92000001
#> 3103        2025         Week 18 Year to date  Local authority    E92000001
#> 3104        2025         Week 18 Year to date  Local authority    E92000001
#> 3105        2025         Week 18 Year to date  Local authority    E92000001
#> 3106        2025         Week 18 Year to date  Local authority    E92000001
#> 3107        2025         Week 18 Year to date  Local authority    E92000001
#> 3108        2025         Week 18 Year to date  Local authority    E92000001
#> 3109        2025         Week 18 Year to date  Local authority    E92000001
#> 3110        2025         Week 18 Year to date  Local authority    E92000001
#> 3111        2025         Week 18 Year to date  Local authority    E92000001
#> 3112        2025         Week 18 Year to date  Local authority    E92000001
#> 3113        2025         Week 18 Year to date  Local authority    E92000001
#> 3114        2025         Week 18 Year to date  Local authority    E92000001
#> 3115        2025         Week 18 Year to date  Local authority    E92000001
#> 3116        2025         Week 18 Year to date  Local authority    E92000001
#> 3117        2025         Week 18 Year to date  Local authority    E92000001
#> 3118        2025         Week 18 Year to date  Local authority    E92000001
#> 3119        2025         Week 18 Year to date  Local authority    E92000001
#> 3120        2025         Week 18 Year to date  Local authority    E92000001
#> 3121        2025         Week 18 Year to date  Local authority    E92000001
#> 3122        2025         Week 18 Year to date  Local authority    E92000001
#> 3123        2025         Week 18 Year to date  Local authority    E92000001
#> 3124        2025         Week 18 Year to date  Local authority    E92000001
#> 3125        2025         Week 18 Year to date  Local authority    E92000001
#> 3126        2025         Week 18 Year to date  Local authority    E92000001
#> 3127        2025         Week 18 Year to date  Local authority    E92000001
#> 3128        2025         Week 18 Year to date  Local authority    E92000001
#> 3129        2025         Week 18 Year to date  Local authority    E92000001
#> 3130        2025         Week 18 Year to date  Local authority    E92000001
#> 3131        2025         Week 18 Year to date  Local authority    E92000001
#> 3132        2025         Week 18 Year to date  Local authority    E92000001
#> 3133        2025         Week 18 Year to date  Local authority    E92000001
#> 3134        2025         Week 18 Year to date         Regional    E92000001
#> 3135        2025         Week 18 Year to date         Regional    E92000001
#> 3136        2025         Week 18 Year to date         Regional    E92000001
#> 3137        2025         Week 18 Year to date         Regional    E92000001
#> 3138        2025         Week 18 Year to date  Local authority    E92000001
#> 3139        2025         Week 18 Year to date  Local authority    E92000001
#> 3140        2025         Week 18 Year to date  Local authority    E92000001
#> 3141        2025         Week 18 Year to date  Local authority    E92000001
#> 3142        2025         Week 18 Year to date  Local authority    E92000001
#> 3143        2025         Week 18 Year to date  Local authority    E92000001
#> 3144        2025         Week 18 Year to date  Local authority    E92000001
#> 3145        2025         Week 18 Year to date  Local authority    E92000001
#> 3146        2025         Week 18 Year to date  Local authority    E92000001
#> 3147        2025         Week 18 Year to date  Local authority    E92000001
#> 3148        2025         Week 18 Year to date  Local authority    E92000001
#> 3149        2025         Week 18 Year to date  Local authority    E92000001
#> 3150        2025         Week 18 Year to date  Local authority    E92000001
#> 3151        2025         Week 18 Year to date  Local authority    E92000001
#> 3152        2025         Week 18 Year to date  Local authority    E92000001
#> 3153        2025         Week 18 Year to date  Local authority    E92000001
#> 3154        2025         Week 18 Year to date  Local authority    E92000001
#> 3155        2025         Week 18 Year to date  Local authority    E92000001
#> 3156        2025         Week 18 Year to date  Local authority    E92000001
#> 3157        2025         Week 18 Year to date  Local authority    E92000001
#> 3158        2025         Week 18 Year to date  Local authority    E92000001
#> 3159        2025         Week 18 Year to date  Local authority    E92000001
#> 3160        2025         Week 18 Year to date  Local authority    E92000001
#> 3161        2025         Week 18 Year to date  Local authority    E92000001
#> 3162        2025         Week 18 Year to date  Local authority    E92000001
#> 3163        2025         Week 18 Year to date  Local authority    E92000001
#> 3164        2025         Week 18 Year to date  Local authority    E92000001
#> 3165        2025         Week 18 Year to date  Local authority    E92000001
#> 3166        2025         Week 18 Year to date  Local authority    E92000001
#> 3167        2025         Week 18 Year to date         Regional    E92000001
#> 3168        2025         Week 18 Year to date         Regional    E92000001
#> 3169        2025         Week 18 Year to date         Regional    E92000001
#> 3170        2025         Week 18 Year to date         Regional    E92000001
#> 3171        2025         Week 18 Year to date  Local authority    E92000001
#> 3172        2025         Week 18 Year to date  Local authority    E92000001
#> 3173        2025         Week 18 Year to date  Local authority    E92000001
#> 3174        2025         Week 18 Year to date  Local authority    E92000001
#> 3175        2025         Week 18 Year to date  Local authority    E92000001
#> 3176        2025         Week 18 Year to date  Local authority    E92000001
#> 3177        2025         Week 18 Year to date  Local authority    E92000001
#> 3178        2025         Week 18 Year to date  Local authority    E92000001
#> 3179        2025         Week 18 Year to date  Local authority    E92000001
#> 3180        2025         Week 18 Year to date  Local authority    E92000001
#> 3181        2025         Week 18 Year to date  Local authority    E92000001
#> 3182        2025         Week 18 Year to date  Local authority    E92000001
#> 3183        2025         Week 18 Year to date  Local authority    E92000001
#> 3184        2025         Week 18 Year to date  Local authority    E92000001
#> 3185        2025         Week 18 Year to date  Local authority    E92000001
#> 3186        2025         Week 18 Year to date  Local authority    E92000001
#> 3187        2025         Week 18 Year to date  Local authority    E92000001
#> 3188        2025         Week 18 Year to date  Local authority    E92000001
#> 3189        2025         Week 18 Year to date  Local authority    E92000001
#> 3190        2025         Week 18 Year to date  Local authority    E92000001
#> 3191        2025         Week 18 Year to date  Local authority    E92000001
#> 3192        2025         Week 18 Year to date  Local authority    E92000001
#> 3193        2025         Week 18 Year to date  Local authority    E92000001
#> 3194        2025         Week 18 Year to date  Local authority    E92000001
#> 3195        2025         Week 18 Year to date  Local authority    E92000001
#> 3196        2025         Week 18 Year to date  Local authority    E92000001
#> 3197        2025         Week 18 Year to date  Local authority    E92000001
#> 3198        2025         Week 18 Year to date  Local authority    E92000001
#> 3199        2025         Week 18 Year to date  Local authority    E92000001
#> 3200        2025         Week 18 Year to date  Local authority    E92000001
#> 3201        2025         Week 18 Year to date  Local authority    E92000001
#> 3202        2025         Week 18 Year to date  Local authority    E92000001
#> 3203        2025         Week 18 Year to date  Local authority    E92000001
#> 3204        2025         Week 18 Year to date  Local authority    E92000001
#> 3205        2025         Week 18 Year to date  Local authority    E92000001
#> 3206        2025         Week 18 Year to date  Local authority    E92000001
#> 3207        2025         Week 18 Year to date  Local authority    E92000001
#> 3208        2025         Week 18 Year to date  Local authority    E92000001
#> 3209        2025         Week 18 Year to date  Local authority    E92000001
#> 3210        2025         Week 18 Year to date  Local authority    E92000001
#> 3211        2025         Week 18 Year to date  Local authority    E92000001
#> 3212        2025         Week 18 Year to date  Local authority    E92000001
#> 3213        2025         Week 18 Year to date         Regional    E92000001
#> 3214        2025         Week 18 Year to date         Regional    E92000001
#> 3215        2025         Week 18 Year to date         Regional    E92000001
#> 3216        2025         Week 18 Year to date         Regional    E92000001
#> 3217        2025         Week 18 Year to date  Local authority    E92000001
#> 3218        2025         Week 18 Year to date  Local authority    E92000001
#> 3219        2025         Week 18 Year to date  Local authority    E92000001
#> 3220        2025         Week 18 Year to date  Local authority    E92000001
#> 3221        2025         Week 18 Year to date  Local authority    E92000001
#> 3222        2025         Week 18 Year to date  Local authority    E92000001
#> 3223        2025         Week 18 Year to date  Local authority    E92000001
#> 3224        2025         Week 18 Year to date  Local authority    E92000001
#> 3225        2025         Week 18 Year to date  Local authority    E92000001
#> 3226        2025         Week 18 Year to date  Local authority    E92000001
#> 3227        2025         Week 18 Year to date  Local authority    E92000001
#> 3228        2025         Week 18 Year to date  Local authority    E92000001
#> 3229        2025         Week 18 Year to date  Local authority    E92000001
#> 3230        2025         Week 18 Year to date  Local authority    E92000001
#> 3231        2025         Week 18 Year to date  Local authority    E92000001
#> 3232        2025         Week 18 Year to date  Local authority    E92000001
#> 3233        2025         Week 18 Year to date  Local authority    E92000001
#> 3234        2025         Week 18 Year to date  Local authority    E92000001
#> 3235        2025         Week 18 Year to date  Local authority    E92000001
#> 3236        2025         Week 18 Year to date  Local authority    E92000001
#> 3237        2025         Week 18 Year to date  Local authority    E92000001
#> 3238        2025         Week 18 Year to date  Local authority    E92000001
#> 3239        2025         Week 18 Year to date  Local authority    E92000001
#> 3240        2025         Week 18 Year to date  Local authority    E92000001
#> 3241        2025         Week 18 Year to date  Local authority    E92000001
#> 3242        2025         Week 18 Year to date  Local authority    E92000001
#> 3243        2025         Week 18 Year to date  Local authority    E92000001
#> 3244        2025         Week 18 Year to date  Local authority    E92000001
#> 3245        2025         Week 18 Year to date  Local authority    E92000001
#> 3246        2025         Week 18 Year to date  Local authority    E92000001
#> 3247        2025         Week 18 Year to date  Local authority    E92000001
#> 3248        2025         Week 18 Year to date  Local authority    E92000001
#> 3249        2025         Week 18 Year to date  Local authority    E92000001
#> 3250        2025         Week 18 Year to date         Regional    E92000001
#> 3251        2025         Week 18 Year to date         Regional    E92000001
#> 3252        2025         Week 18 Year to date         Regional    E92000001
#> 3253        2025         Week 18 Year to date         Regional    E92000001
#> 3254        2025         Week 18 Year to date  Local authority    E92000001
#> 3255        2025         Week 18 Year to date  Local authority    E92000001
#> 3256        2025         Week 18 Year to date  Local authority    E92000001
#> 3257        2025         Week 18 Year to date  Local authority    E92000001
#> 3258        2025         Week 18 Year to date  Local authority    E92000001
#> 3259        2025         Week 18 Year to date  Local authority    E92000001
#> 3260        2025         Week 18 Year to date  Local authority    E92000001
#> 3261        2025         Week 18 Year to date  Local authority    E92000001
#> 3262        2025         Week 18 Year to date  Local authority    E92000001
#> 3263        2025         Week 18 Year to date  Local authority    E92000001
#> 3264        2025         Week 18 Year to date  Local authority    E92000001
#> 3265        2025         Week 18 Year to date  Local authority    E92000001
#> 3266        2025         Week 18 Year to date  Local authority    E92000001
#> 3267        2025         Week 18 Year to date  Local authority    E92000001
#> 3268        2025         Week 18 Year to date  Local authority    E92000001
#> 3269        2025         Week 18 Year to date  Local authority    E92000001
#> 3270        2025         Week 18 Year to date  Local authority    E92000001
#> 3271        2025         Week 18 Year to date  Local authority    E92000001
#> 3272        2025         Week 18 Year to date  Local authority    E92000001
#> 3273        2025         Week 18 Year to date  Local authority    E92000001
#> 3274        2025         Week 18 Year to date  Local authority    E92000001
#> 3275        2025         Week 18 Year to date  Local authority    E92000001
#> 3276        2025         Week 18 Year to date  Local authority    E92000001
#> 3277        2025         Week 18 Year to date  Local authority    E92000001
#> 3278        2025         Week 18 Year to date  Local authority    E92000001
#> 3279        2025         Week 18 Year to date  Local authority    E92000001
#> 3280        2025         Week 18 Year to date  Local authority    E92000001
#> 3281        2025         Week 18 Year to date  Local authority    E92000001
#> 3282        2025         Week 18 Year to date  Local authority    E92000001
#> 3283        2025         Week 18 Year to date  Local authority    E92000001
#> 3284        2025         Week 18 Year to date  Local authority    E92000001
#> 3285        2025         Week 18 Year to date  Local authority    E92000001
#> 3286        2025         Week 18 Year to date  Local authority    E92000001
#> 3287        2025         Week 18 Year to date  Local authority    E92000001
#> 3288        2025         Week 18 Year to date  Local authority    E92000001
#> 3289        2025         Week 18 Year to date  Local authority    E92000001
#> 3290        2025         Week 18 Year to date  Local authority    E92000001
#> 3291        2025         Week 18 Year to date  Local authority    E92000001
#> 3292        2025         Week 18 Year to date  Local authority    E92000001
#> 3293        2025         Week 18 Year to date  Local authority    E92000001
#> 3294        2025         Week 18 Year to date  Local authority    E92000001
#> 3295        2025         Week 18 Year to date  Local authority    E92000001
#> 3296        2025         Week 18 Year to date  Local authority    E92000001
#> 3297        2025         Week 18 Year to date  Local authority    E92000001
#> 3298        2025         Week 18 Year to date  Local authority    E92000001
#> 3299        2025         Week 18 Year to date  Local authority    E92000001
#> 3300        2025         Week 18 Year to date  Local authority    E92000001
#> 3301        2025         Week 18 Year to date  Local authority    E92000001
#> 3302        2025         Week 18 Year to date  Local authority    E92000001
#> 3303        2025         Week 18 Year to date  Local authority    E92000001
#> 3304        2025         Week 18 Year to date  Local authority    E92000001
#> 3305        2025         Week 18 Year to date  Local authority    E92000001
#> 3306        2025         Week 18 Year to date  Local authority    E92000001
#> 3307        2025         Week 18 Year to date  Local authority    E92000001
#> 3308        2025         Week 18 Year to date  Local authority    E92000001
#> 3309        2025         Week 18 Year to date  Local authority    E92000001
#> 3310        2025         Week 18 Year to date  Local authority    E92000001
#> 3311        2025         Week 18 Year to date  Local authority    E92000001
#> 3312        2025         Week 18 Year to date  Local authority    E92000001
#> 3313        2025         Week 18 Year to date  Local authority    E92000001
#> 3314        2025         Week 18 Year to date  Local authority    E92000001
#> 3315        2025         Week 18 Year to date  Local authority    E92000001
#> 3316        2025         Week 18 Year to date  Local authority    E92000001
#> 3317        2025         Week 18 Year to date  Local authority    E92000001
#> 3318        2025         Week 18 Year to date  Local authority    E92000001
#> 3319        2025         Week 18 Year to date  Local authority    E92000001
#> 3320        2025         Week 18 Year to date  Local authority    E92000001
#> 3321        2025         Week 18 Year to date  Local authority    E92000001
#> 3322        2025         Week 18 Year to date  Local authority    E92000001
#> 3323        2025         Week 18 Year to date  Local authority    E92000001
#> 3324        2025         Week 18 Year to date  Local authority    E92000001
#> 3325        2025         Week 18 Year to date  Local authority    E92000001
#> 3326        2025         Week 18 Year to date  Local authority    E92000001
#> 3327        2025         Week 18 Year to date  Local authority    E92000001
#> 3328        2025         Week 18 Year to date  Local authority    E92000001
#> 3329        2025         Week 18 Year to date  Local authority    E92000001
#> 3330        2025         Week 18 Year to date  Local authority    E92000001
#> 3331        2025         Week 18 Year to date  Local authority    E92000001
#> 3332        2025         Week 18 Year to date  Local authority    E92000001
#> 3333        2025         Week 18 Year to date  Local authority    E92000001
#> 3334        2025         Week 18 Year to date  Local authority    E92000001
#> 3335        2025         Week 18 Year to date  Local authority    E92000001
#> 3336        2025         Week 18 Year to date  Local authority    E92000001
#> 3337        2025         Week 18 Year to date  Local authority    E92000001
#> 3338        2025         Week 18 Year to date  Local authority    E92000001
#> 3339        2025         Week 18 Year to date  Local authority    E92000001
#> 3340        2025         Week 18 Year to date  Local authority    E92000001
#> 3341        2025         Week 18 Year to date  Local authority    E92000001
#> 3342        2025         Week 18 Year to date  Local authority    E92000001
#> 3343        2025         Week 18 Year to date  Local authority    E92000001
#> 3344        2025         Week 18 Year to date  Local authority    E92000001
#> 3345        2025         Week 18 Year to date  Local authority    E92000001
#> 3346        2025         Week 18 Year to date  Local authority    E92000001
#> 3347        2025         Week 18 Year to date  Local authority    E92000001
#> 3348        2025         Week 18 Year to date  Local authority    E92000001
#> 3349        2025         Week 18 Year to date  Local authority    E92000001
#> 3350        2025         Week 18 Year to date  Local authority    E92000001
#> 3351        2025         Week 18 Year to date         Regional    E92000001
#> 3352        2025         Week 18 Year to date         Regional    E92000001
#> 3353        2025         Week 18 Year to date         Regional    E92000001
#> 3354        2025         Week 18 Year to date         Regional    E92000001
#> 3355        2025         Week 18 Year to date  Local authority    E92000001
#> 3356        2025         Week 18 Year to date  Local authority    E92000001
#> 3357        2025         Week 18 Year to date  Local authority    E92000001
#> 3358        2025         Week 18 Year to date  Local authority    E92000001
#> 3359        2025         Week 18 Year to date  Local authority    E92000001
#> 3360        2025         Week 18 Year to date  Local authority    E92000001
#> 3361        2025         Week 18 Year to date  Local authority    E92000001
#> 3362        2025         Week 18 Year to date  Local authority    E92000001
#> 3363        2025         Week 18 Year to date  Local authority    E92000001
#> 3364        2025         Week 18 Year to date  Local authority    E92000001
#> 3365        2025         Week 18 Year to date  Local authority    E92000001
#> 3366        2025         Week 18 Year to date  Local authority    E92000001
#> 3367        2025         Week 18 Year to date  Local authority    E92000001
#> 3368        2025         Week 18 Year to date  Local authority    E92000001
#> 3369        2025         Week 18 Year to date  Local authority    E92000001
#> 3370        2025         Week 18 Year to date  Local authority    E92000001
#> 3371        2025         Week 18 Year to date  Local authority    E92000001
#> 3372        2025         Week 18 Year to date  Local authority    E92000001
#> 3373        2025         Week 18 Year to date  Local authority    E92000001
#> 3374        2025         Week 18 Year to date  Local authority    E92000001
#> 3375        2025         Week 18 Year to date  Local authority    E92000001
#> 3376        2025         Week 18 Year to date  Local authority    E92000001
#> 3377        2025         Week 18 Year to date  Local authority    E92000001
#> 3378        2025         Week 18 Year to date  Local authority    E92000001
#> 3379        2025         Week 18 Year to date  Local authority    E92000001
#> 3380        2025         Week 18 Year to date  Local authority    E92000001
#> 3381        2025         Week 18 Year to date  Local authority    E92000001
#> 3382        2025         Week 18 Year to date  Local authority    E92000001
#> 3383        2025         Week 18 Year to date  Local authority    E92000001
#> 3384        2025         Week 18 Year to date  Local authority    E92000001
#> 3385        2025         Week 18 Year to date  Local authority    E92000001
#> 3386        2025         Week 18 Year to date  Local authority    E92000001
#> 3387        2025         Week 18 Year to date  Local authority    E92000001
#> 3388        2025         Week 18 Year to date  Local authority    E92000001
#> 3389        2025         Week 18 Year to date  Local authority    E92000001
#> 3390        2025         Week 18 Year to date  Local authority    E92000001
#> 3391        2025         Week 18 Year to date  Local authority    E92000001
#> 3392        2025         Week 18 Year to date  Local authority    E92000001
#> 3393        2025         Week 18 Year to date  Local authority    E92000001
#> 3394        2025         Week 18 Year to date  Local authority    E92000001
#> 3395        2025         Week 18 Year to date  Local authority    E92000001
#> 3396        2025         Week 18 Year to date  Local authority    E92000001
#> 3397        2025         Week 18 Year to date  Local authority    E92000001
#> 3398        2025         Week 18 Year to date  Local authority    E92000001
#> 3399        2025         Week 18 Year to date  Local authority    E92000001
#> 3400        2025         Week 18 Year to date  Local authority    E92000001
#> 3401        2025         Week 18 Year to date  Local authority    E92000001
#> 3402        2025         Week 18 Year to date  Local authority    E92000001
#> 3403        2025         Week 18 Year to date  Local authority    E92000001
#> 3404        2025         Week 18 Year to date  Local authority    E92000001
#> 3405        2025         Week 18 Year to date  Local authority    E92000001
#> 3406        2025         Week 18 Year to date  Local authority    E92000001
#> 3407        2025         Week 18 Year to date  Local authority    E92000001
#> 3408        2025         Week 18 Year to date  Local authority    E92000001
#> 3409        2025         Week 18 Year to date  Local authority    E92000001
#> 3410        2025         Week 18 Year to date  Local authority    E92000001
#> 3411        2025         Week 18 Year to date  Local authority    E92000001
#> 3412        2025         Week 18 Year to date         Regional    E92000001
#> 3413        2025         Week 18 Year to date         Regional    E92000001
#> 3414        2025         Week 18 Year to date         Regional    E92000001
#> 3415        2025         Week 18 Year to date         Regional    E92000001
#> 3416        2025         Week 18 Year to date  Local authority    E92000001
#> 3417        2025         Week 18 Year to date  Local authority    E92000001
#> 3418        2025         Week 18 Year to date  Local authority    E92000001
#> 3419        2025         Week 18 Year to date  Local authority    E92000001
#> 3420        2025         Week 18 Year to date  Local authority    E92000001
#> 3421        2025         Week 18 Year to date  Local authority    E92000001
#> 3422        2025         Week 18 Year to date  Local authority    E92000001
#> 3423        2025         Week 18 Year to date  Local authority    E92000001
#> 3424        2025         Week 18 Year to date  Local authority    E92000001
#> 3425        2025         Week 18 Year to date  Local authority    E92000001
#> 3426        2025         Week 18 Year to date  Local authority    E92000001
#> 3427        2025         Week 18 Year to date  Local authority    E92000001
#> 3428        2025         Week 18 Year to date  Local authority    E92000001
#> 3429        2025         Week 18 Year to date  Local authority    E92000001
#> 3430        2025         Week 18 Year to date  Local authority    E92000001
#> 3431        2025         Week 18 Year to date  Local authority    E92000001
#> 3432        2025         Week 18 Year to date  Local authority    E92000001
#> 3433        2025         Week 18 Year to date  Local authority    E92000001
#> 3434        2025         Week 18 Year to date  Local authority    E92000001
#> 3435        2025         Week 18 Year to date  Local authority    E92000001
#> 3436        2025         Week 18 Year to date  Local authority    E92000001
#> 3437        2025         Week 18 Year to date  Local authority    E92000001
#> 3438        2025         Week 18 Year to date  Local authority    E92000001
#> 3439        2025         Week 18 Year to date  Local authority    E92000001
#> 3440        2025         Week 18 Year to date  Local authority    E92000001
#> 3441        2025         Week 18 Year to date  Local authority    E92000001
#> 3442        2025         Week 18 Year to date  Local authority    E92000001
#> 3443        2025         Week 18 Year to date  Local authority    E92000001
#> 3444        2025         Week 18 Year to date  Local authority    E92000001
#> 3445        2025         Week 18 Year to date  Local authority    E92000001
#> 3446        2025         Week 18 Year to date  Local authority    E92000001
#> 3447        2025         Week 18 Year to date  Local authority    E92000001
#> 3448        2025         Week 18 Year to date  Local authority    E92000001
#> 3449        2025         Week 18 Year to date  Local authority    E92000001
#> 3450        2025         Week 18 Year to date  Local authority    E92000001
#> 3451        2025         Week 18 Year to date  Local authority    E92000001
#> 3452        2025         Week 18 Year to date  Local authority    E92000001
#> 3453        2025         Week 18 Year to date  Local authority    E92000001
#> 3454        2025         Week 18 Year to date  Local authority    E92000001
#> 3455        2025         Week 18 Year to date  Local authority    E92000001
#> 3456        2025         Week 18 Year to date  Local authority    E92000001
#> 3457        2025         Week 18 Year to date  Local authority    E92000001
#> 3458        2025         Week 18 Year to date  Local authority    E92000001
#> 3459        2025         Week 15 Year to date         National    E92000001
#> 3460        2025         Week 15 Year to date         National    E92000001
#> 3461        2025         Week 15 Year to date         National    E92000001
#> 3462        2025         Week 15 Year to date         National    E92000001
#> 3463        2025         Week 15 Year to date         Regional    E92000001
#> 3464        2025         Week 15 Year to date         Regional    E92000001
#> 3465        2025         Week 15 Year to date         Regional    E92000001
#> 3466        2025         Week 15 Year to date         Regional    E92000001
#> 3467        2025         Week 15 Year to date  Local authority    E92000001
#> 3468        2025         Week 15 Year to date  Local authority    E92000001
#> 3469        2025         Week 15 Year to date  Local authority    E92000001
#> 3470        2025         Week 15 Year to date  Local authority    E92000001
#> 3471        2025         Week 15 Year to date  Local authority    E92000001
#> 3472        2025         Week 15 Year to date  Local authority    E92000001
#> 3473        2025         Week 15 Year to date  Local authority    E92000001
#> 3474        2025         Week 15 Year to date  Local authority    E92000001
#> 3475        2025         Week 15 Year to date  Local authority    E92000001
#> 3476        2025         Week 15 Year to date  Local authority    E92000001
#> 3477        2025         Week 15 Year to date  Local authority    E92000001
#> 3478        2025         Week 15 Year to date  Local authority    E92000001
#> 3479        2025         Week 15 Year to date  Local authority    E92000001
#> 3480        2025         Week 15 Year to date  Local authority    E92000001
#> 3481        2025         Week 15 Year to date  Local authority    E92000001
#> 3482        2025         Week 15 Year to date  Local authority    E92000001
#> 3483        2025         Week 15 Year to date  Local authority    E92000001
#> 3484        2025         Week 15 Year to date  Local authority    E92000001
#> 3485        2025         Week 15 Year to date  Local authority    E92000001
#> 3486        2025         Week 15 Year to date  Local authority    E92000001
#> 3487        2025         Week 15 Year to date  Local authority    E92000001
#> 3488        2025         Week 15 Year to date  Local authority    E92000001
#> 3489        2025         Week 15 Year to date  Local authority    E92000001
#> 3490        2025         Week 15 Year to date  Local authority    E92000001
#> 3491        2025         Week 15 Year to date  Local authority    E92000001
#> 3492        2025         Week 15 Year to date  Local authority    E92000001
#> 3493        2025         Week 15 Year to date  Local authority    E92000001
#> 3494        2025         Week 15 Year to date  Local authority    E92000001
#> 3495        2025         Week 15 Year to date  Local authority    E92000001
#> 3496        2025         Week 15 Year to date  Local authority    E92000001
#> 3497        2025         Week 15 Year to date  Local authority    E92000001
#> 3498        2025         Week 15 Year to date  Local authority    E92000001
#> 3499        2025         Week 15 Year to date  Local authority    E92000001
#> 3500        2025         Week 15 Year to date  Local authority    E92000001
#> 3501        2025         Week 15 Year to date  Local authority    E92000001
#> 3502        2025         Week 15 Year to date  Local authority    E92000001
#> 3503        2025         Week 15 Year to date         Regional    E92000001
#> 3504        2025         Week 15 Year to date         Regional    E92000001
#> 3505        2025         Week 15 Year to date         Regional    E92000001
#> 3506        2025         Week 15 Year to date         Regional    E92000001
#> 3507        2025         Week 15 Year to date  Local authority    E92000001
#> 3508        2025         Week 15 Year to date  Local authority    E92000001
#> 3509        2025         Week 15 Year to date  Local authority    E92000001
#> 3510        2025         Week 15 Year to date  Local authority    E92000001
#> 3511        2025         Week 15 Year to date  Local authority    E92000001
#> 3512        2025         Week 15 Year to date  Local authority    E92000001
#> 3513        2025         Week 15 Year to date  Local authority    E92000001
#> 3514        2025         Week 15 Year to date  Local authority    E92000001
#> 3515        2025         Week 15 Year to date  Local authority    E92000001
#> 3516        2025         Week 15 Year to date  Local authority    E92000001
#> 3517        2025         Week 15 Year to date  Local authority    E92000001
#> 3518        2025         Week 15 Year to date  Local authority    E92000001
#> 3519        2025         Week 15 Year to date  Local authority    E92000001
#> 3520        2025         Week 15 Year to date  Local authority    E92000001
#> 3521        2025         Week 15 Year to date  Local authority    E92000001
#> 3522        2025         Week 15 Year to date  Local authority    E92000001
#> 3523        2025         Week 15 Year to date  Local authority    E92000001
#> 3524        2025         Week 15 Year to date  Local authority    E92000001
#> 3525        2025         Week 15 Year to date  Local authority    E92000001
#> 3526        2025         Week 15 Year to date  Local authority    E92000001
#> 3527        2025         Week 15 Year to date  Local authority    E92000001
#> 3528        2025         Week 15 Year to date  Local authority    E92000001
#> 3529        2025         Week 15 Year to date  Local authority    E92000001
#> 3530        2025         Week 15 Year to date  Local authority    E92000001
#> 3531        2025         Week 15 Year to date  Local authority    E92000001
#> 3532        2025         Week 15 Year to date  Local authority    E92000001
#> 3533        2025         Week 15 Year to date  Local authority    E92000001
#> 3534        2025         Week 15 Year to date  Local authority    E92000001
#> 3535        2025         Week 15 Year to date  Local authority    E92000001
#> 3536        2025         Week 15 Year to date  Local authority    E92000001
#> 3537        2025         Week 15 Year to date  Local authority    E92000001
#> 3538        2025         Week 15 Year to date  Local authority    E92000001
#> 3539        2025         Week 15 Year to date  Local authority    E92000001
#> 3540        2025         Week 15 Year to date  Local authority    E92000001
#> 3541        2025         Week 15 Year to date  Local authority    E92000001
#> 3542        2025         Week 15 Year to date  Local authority    E92000001
#> 3543        2025         Week 15 Year to date  Local authority    E92000001
#> 3544        2025         Week 15 Year to date  Local authority    E92000001
#> 3545        2025         Week 15 Year to date  Local authority    E92000001
#> 3546        2025         Week 15 Year to date  Local authority    E92000001
#> 3547        2025         Week 15 Year to date  Local authority    E92000001
#> 3548        2025         Week 15 Year to date  Local authority    E92000001
#> 3549        2025         Week 15 Year to date  Local authority    E92000001
#> 3550        2025         Week 15 Year to date  Local authority    E92000001
#> 3551        2025         Week 15 Year to date  Local authority    E92000001
#> 3552        2025         Week 15 Year to date  Local authority    E92000001
#> 3553        2025         Week 15 Year to date  Local authority    E92000001
#> 3554        2025         Week 15 Year to date  Local authority    E92000001
#> 3555        2025         Week 15 Year to date  Local authority    E92000001
#> 3556        2025         Week 15 Year to date  Local authority    E92000001
#> 3557        2025         Week 15 Year to date  Local authority    E92000001
#> 3558        2025         Week 15 Year to date  Local authority    E92000001
#> 3559        2025         Week 15 Year to date  Local authority    E92000001
#> 3560        2025         Week 15 Year to date  Local authority    E92000001
#> 3561        2025         Week 15 Year to date  Local authority    E92000001
#> 3562        2025         Week 15 Year to date  Local authority    E92000001
#> 3563        2025         Week 15 Year to date  Local authority    E92000001
#> 3564        2025         Week 15 Year to date  Local authority    E92000001
#> 3565        2025         Week 15 Year to date  Local authority    E92000001
#> 3566        2025         Week 15 Year to date  Local authority    E92000001
#> 3567        2025         Week 15 Year to date  Local authority    E92000001
#> 3568        2025         Week 15 Year to date  Local authority    E92000001
#> 3569        2025         Week 15 Year to date  Local authority    E92000001
#> 3570        2025         Week 15 Year to date  Local authority    E92000001
#> 3571        2025         Week 15 Year to date  Local authority    E92000001
#> 3572        2025         Week 15 Year to date  Local authority    E92000001
#> 3573        2025         Week 15 Year to date  Local authority    E92000001
#> 3574        2025         Week 15 Year to date  Local authority    E92000001
#> 3575        2025         Week 15 Year to date  Local authority    E92000001
#> 3576        2025         Week 15 Year to date  Local authority    E92000001
#> 3577        2025         Week 15 Year to date  Local authority    E92000001
#> 3578        2025         Week 15 Year to date  Local authority    E92000001
#> 3579        2025         Week 15 Year to date         Regional    E92000001
#> 3580        2025         Week 15 Year to date         Regional    E92000001
#> 3581        2025         Week 15 Year to date         Regional    E92000001
#> 3582        2025         Week 15 Year to date         Regional    E92000001
#> 3583        2025         Week 15 Year to date  Local authority    E92000001
#> 3584        2025         Week 15 Year to date  Local authority    E92000001
#> 3585        2025         Week 15 Year to date  Local authority    E92000001
#> 3586        2025         Week 15 Year to date  Local authority    E92000001
#> 3587        2025         Week 15 Year to date  Local authority    E92000001
#> 3588        2025         Week 15 Year to date  Local authority    E92000001
#> 3589        2025         Week 15 Year to date  Local authority    E92000001
#> 3590        2025         Week 15 Year to date  Local authority    E92000001
#> 3591        2025         Week 15 Year to date  Local authority    E92000001
#> 3592        2025         Week 15 Year to date  Local authority    E92000001
#> 3593        2025         Week 15 Year to date  Local authority    E92000001
#> 3594        2025         Week 15 Year to date  Local authority    E92000001
#> 3595        2025         Week 15 Year to date  Local authority    E92000001
#> 3596        2025         Week 15 Year to date  Local authority    E92000001
#> 3597        2025         Week 15 Year to date  Local authority    E92000001
#> 3598        2025         Week 15 Year to date  Local authority    E92000001
#> 3599        2025         Week 15 Year to date  Local authority    E92000001
#> 3600        2025         Week 15 Year to date  Local authority    E92000001
#> 3601        2025         Week 15 Year to date  Local authority    E92000001
#> 3602        2025         Week 15 Year to date  Local authority    E92000001
#> 3603        2025         Week 15 Year to date  Local authority    E92000001
#> 3604        2025         Week 15 Year to date  Local authority    E92000001
#> 3605        2025         Week 15 Year to date  Local authority    E92000001
#> 3606        2025         Week 15 Year to date  Local authority    E92000001
#> 3607        2025         Week 15 Year to date  Local authority    E92000001
#> 3608        2025         Week 15 Year to date  Local authority    E92000001
#> 3609        2025         Week 15 Year to date  Local authority    E92000001
#> 3610        2025         Week 15 Year to date  Local authority    E92000001
#> 3611        2025         Week 15 Year to date  Local authority    E92000001
#> 3612        2025         Week 15 Year to date  Local authority    E92000001
#> 3613        2025         Week 15 Year to date  Local authority    E92000001
#> 3614        2025         Week 15 Year to date  Local authority    E92000001
#> 3615        2025         Week 15 Year to date  Local authority    E92000001
#> 3616        2025         Week 15 Year to date  Local authority    E92000001
#> 3617        2025         Week 15 Year to date  Local authority    E92000001
#> 3618        2025         Week 15 Year to date  Local authority    E92000001
#> 3619        2025         Week 15 Year to date  Local authority    E92000001
#> 3620        2025         Week 15 Year to date  Local authority    E92000001
#> 3621        2025         Week 15 Year to date  Local authority    E92000001
#> 3622        2025         Week 15 Year to date  Local authority    E92000001
#> 3623        2025         Week 15 Year to date  Local authority    E92000001
#> 3624        2025         Week 15 Year to date  Local authority    E92000001
#> 3625        2025         Week 15 Year to date  Local authority    E92000001
#> 3626        2025         Week 15 Year to date  Local authority    E92000001
#> 3627        2025         Week 15 Year to date  Local authority    E92000001
#> 3628        2025         Week 15 Year to date         Regional    E92000001
#> 3629        2025         Week 15 Year to date         Regional    E92000001
#> 3630        2025         Week 15 Year to date         Regional    E92000001
#> 3631        2025         Week 15 Year to date         Regional    E92000001
#> 3632        2025         Week 15 Year to date  Local authority    E92000001
#> 3633        2025         Week 15 Year to date  Local authority    E92000001
#> 3634        2025         Week 15 Year to date  Local authority    E92000001
#> 3635        2025         Week 15 Year to date  Local authority    E92000001
#> 3636        2025         Week 15 Year to date  Local authority    E92000001
#> 3637        2025         Week 15 Year to date  Local authority    E92000001
#> 3638        2025         Week 15 Year to date  Local authority    E92000001
#> 3639        2025         Week 15 Year to date  Local authority    E92000001
#> 3640        2025         Week 15 Year to date  Local authority    E92000001
#> 3641        2025         Week 15 Year to date  Local authority    E92000001
#> 3642        2025         Week 15 Year to date  Local authority    E92000001
#> 3643        2025         Week 15 Year to date  Local authority    E92000001
#> 3644        2025         Week 15 Year to date  Local authority    E92000001
#> 3645        2025         Week 15 Year to date  Local authority    E92000001
#> 3646        2025         Week 15 Year to date  Local authority    E92000001
#> 3647        2025         Week 15 Year to date  Local authority    E92000001
#> 3648        2025         Week 15 Year to date  Local authority    E92000001
#> 3649        2025         Week 15 Year to date  Local authority    E92000001
#> 3650        2025         Week 15 Year to date  Local authority    E92000001
#> 3651        2025         Week 15 Year to date  Local authority    E92000001
#> 3652        2025         Week 15 Year to date  Local authority    E92000001
#> 3653        2025         Week 15 Year to date  Local authority    E92000001
#> 3654        2025         Week 15 Year to date  Local authority    E92000001
#> 3655        2025         Week 15 Year to date  Local authority    E92000001
#> 3656        2025         Week 15 Year to date  Local authority    E92000001
#> 3657        2025         Week 15 Year to date  Local authority    E92000001
#> 3658        2025         Week 15 Year to date  Local authority    E92000001
#> 3659        2025         Week 15 Year to date  Local authority    E92000001
#> 3660        2025         Week 15 Year to date  Local authority    E92000001
#> 3661        2025         Week 15 Year to date         Regional    E92000001
#> 3662        2025         Week 15 Year to date         Regional    E92000001
#> 3663        2025         Week 15 Year to date         Regional    E92000001
#> 3664        2025         Week 15 Year to date         Regional    E92000001
#> 3665        2025         Week 15 Year to date  Local authority    E92000001
#> 3666        2025         Week 15 Year to date  Local authority    E92000001
#> 3667        2025         Week 15 Year to date  Local authority    E92000001
#> 3668        2025         Week 15 Year to date  Local authority    E92000001
#> 3669        2025         Week 15 Year to date  Local authority    E92000001
#> 3670        2025         Week 15 Year to date  Local authority    E92000001
#> 3671        2025         Week 15 Year to date  Local authority    E92000001
#> 3672        2025         Week 15 Year to date  Local authority    E92000001
#> 3673        2025         Week 15 Year to date  Local authority    E92000001
#> 3674        2025         Week 15 Year to date  Local authority    E92000001
#> 3675        2025         Week 15 Year to date  Local authority    E92000001
#> 3676        2025         Week 15 Year to date  Local authority    E92000001
#> 3677        2025         Week 15 Year to date  Local authority    E92000001
#> 3678        2025         Week 15 Year to date  Local authority    E92000001
#> 3679        2025         Week 15 Year to date  Local authority    E92000001
#> 3680        2025         Week 15 Year to date  Local authority    E92000001
#> 3681        2025         Week 15 Year to date  Local authority    E92000001
#> 3682        2025         Week 15 Year to date  Local authority    E92000001
#> 3683        2025         Week 15 Year to date  Local authority    E92000001
#> 3684        2025         Week 15 Year to date  Local authority    E92000001
#> 3685        2025         Week 15 Year to date  Local authority    E92000001
#> 3686        2025         Week 15 Year to date  Local authority    E92000001
#> 3687        2025         Week 15 Year to date  Local authority    E92000001
#> 3688        2025         Week 15 Year to date  Local authority    E92000001
#> 3689        2025         Week 15 Year to date  Local authority    E92000001
#> 3690        2025         Week 15 Year to date  Local authority    E92000001
#> 3691        2025         Week 15 Year to date  Local authority    E92000001
#> 3692        2025         Week 15 Year to date  Local authority    E92000001
#> 3693        2025         Week 15 Year to date  Local authority    E92000001
#> 3694        2025         Week 15 Year to date  Local authority    E92000001
#> 3695        2025         Week 15 Year to date  Local authority    E92000001
#> 3696        2025         Week 15 Year to date  Local authority    E92000001
#> 3697        2025         Week 15 Year to date  Local authority    E92000001
#> 3698        2025         Week 15 Year to date  Local authority    E92000001
#> 3699        2025         Week 15 Year to date  Local authority    E92000001
#> 3700        2025         Week 15 Year to date  Local authority    E92000001
#> 3701        2025         Week 15 Year to date  Local authority    E92000001
#> 3702        2025         Week 15 Year to date  Local authority    E92000001
#> 3703        2025         Week 15 Year to date  Local authority    E92000001
#> 3704        2025         Week 15 Year to date  Local authority    E92000001
#> 3705        2025         Week 15 Year to date  Local authority    E92000001
#> 3706        2025         Week 15 Year to date  Local authority    E92000001
#> 3707        2025         Week 15 Year to date         Regional    E92000001
#> 3708        2025         Week 15 Year to date         Regional    E92000001
#> 3709        2025         Week 15 Year to date         Regional    E92000001
#> 3710        2025         Week 15 Year to date         Regional    E92000001
#> 3711        2025         Week 15 Year to date  Local authority    E92000001
#> 3712        2025         Week 15 Year to date  Local authority    E92000001
#> 3713        2025         Week 15 Year to date  Local authority    E92000001
#> 3714        2025         Week 15 Year to date  Local authority    E92000001
#> 3715        2025         Week 15 Year to date  Local authority    E92000001
#> 3716        2025         Week 15 Year to date  Local authority    E92000001
#> 3717        2025         Week 15 Year to date  Local authority    E92000001
#> 3718        2025         Week 15 Year to date  Local authority    E92000001
#> 3719        2025         Week 15 Year to date  Local authority    E92000001
#> 3720        2025         Week 15 Year to date  Local authority    E92000001
#> 3721        2025         Week 15 Year to date  Local authority    E92000001
#> 3722        2025         Week 15 Year to date  Local authority    E92000001
#> 3723        2025         Week 15 Year to date  Local authority    E92000001
#> 3724        2025         Week 15 Year to date  Local authority    E92000001
#> 3725        2025         Week 15 Year to date  Local authority    E92000001
#> 3726        2025         Week 15 Year to date  Local authority    E92000001
#> 3727        2025         Week 15 Year to date  Local authority    E92000001
#> 3728        2025         Week 15 Year to date  Local authority    E92000001
#> 3729        2025         Week 15 Year to date  Local authority    E92000001
#> 3730        2025         Week 15 Year to date  Local authority    E92000001
#> 3731        2025         Week 15 Year to date  Local authority    E92000001
#> 3732        2025         Week 15 Year to date  Local authority    E92000001
#> 3733        2025         Week 15 Year to date  Local authority    E92000001
#> 3734        2025         Week 15 Year to date  Local authority    E92000001
#> 3735        2025         Week 15 Year to date  Local authority    E92000001
#> 3736        2025         Week 15 Year to date  Local authority    E92000001
#> 3737        2025         Week 15 Year to date  Local authority    E92000001
#> 3738        2025         Week 15 Year to date  Local authority    E92000001
#> 3739        2025         Week 15 Year to date  Local authority    E92000001
#> 3740        2025         Week 15 Year to date  Local authority    E92000001
#> 3741        2025         Week 15 Year to date  Local authority    E92000001
#> 3742        2025         Week 15 Year to date  Local authority    E92000001
#> 3743        2025         Week 15 Year to date  Local authority    E92000001
#> 3744        2025         Week 15 Year to date         Regional    E92000001
#> 3745        2025         Week 15 Year to date         Regional    E92000001
#> 3746        2025         Week 15 Year to date         Regional    E92000001
#> 3747        2025         Week 15 Year to date         Regional    E92000001
#> 3748        2025         Week 15 Year to date  Local authority    E92000001
#> 3749        2025         Week 15 Year to date  Local authority    E92000001
#> 3750        2025         Week 15 Year to date  Local authority    E92000001
#> 3751        2025         Week 15 Year to date  Local authority    E92000001
#> 3752        2025         Week 15 Year to date  Local authority    E92000001
#> 3753        2025         Week 15 Year to date  Local authority    E92000001
#> 3754        2025         Week 15 Year to date  Local authority    E92000001
#> 3755        2025         Week 15 Year to date  Local authority    E92000001
#> 3756        2025         Week 15 Year to date  Local authority    E92000001
#> 3757        2025         Week 15 Year to date  Local authority    E92000001
#> 3758        2025         Week 15 Year to date  Local authority    E92000001
#> 3759        2025         Week 15 Year to date  Local authority    E92000001
#> 3760        2025         Week 15 Year to date  Local authority    E92000001
#> 3761        2025         Week 15 Year to date  Local authority    E92000001
#> 3762        2025         Week 15 Year to date  Local authority    E92000001
#> 3763        2025         Week 15 Year to date  Local authority    E92000001
#> 3764        2025         Week 15 Year to date  Local authority    E92000001
#> 3765        2025         Week 15 Year to date  Local authority    E92000001
#> 3766        2025         Week 15 Year to date  Local authority    E92000001
#> 3767        2025         Week 15 Year to date  Local authority    E92000001
#> 3768        2025         Week 15 Year to date  Local authority    E92000001
#> 3769        2025         Week 15 Year to date  Local authority    E92000001
#> 3770        2025         Week 15 Year to date  Local authority    E92000001
#> 3771        2025         Week 15 Year to date  Local authority    E92000001
#> 3772        2025         Week 15 Year to date  Local authority    E92000001
#> 3773        2025         Week 15 Year to date  Local authority    E92000001
#> 3774        2025         Week 15 Year to date  Local authority    E92000001
#> 3775        2025         Week 15 Year to date  Local authority    E92000001
#> 3776        2025         Week 15 Year to date  Local authority    E92000001
#> 3777        2025         Week 15 Year to date  Local authority    E92000001
#> 3778        2025         Week 15 Year to date  Local authority    E92000001
#> 3779        2025         Week 15 Year to date  Local authority    E92000001
#> 3780        2025         Week 15 Year to date  Local authority    E92000001
#> 3781        2025         Week 15 Year to date  Local authority    E92000001
#> 3782        2025         Week 15 Year to date  Local authority    E92000001
#> 3783        2025         Week 15 Year to date  Local authority    E92000001
#> 3784        2025         Week 15 Year to date  Local authority    E92000001
#> 3785        2025         Week 15 Year to date  Local authority    E92000001
#> 3786        2025         Week 15 Year to date  Local authority    E92000001
#> 3787        2025         Week 15 Year to date  Local authority    E92000001
#> 3788        2025         Week 15 Year to date  Local authority    E92000001
#> 3789        2025         Week 15 Year to date  Local authority    E92000001
#> 3790        2025         Week 15 Year to date  Local authority    E92000001
#> 3791        2025         Week 15 Year to date  Local authority    E92000001
#> 3792        2025         Week 15 Year to date  Local authority    E92000001
#> 3793        2025         Week 15 Year to date  Local authority    E92000001
#> 3794        2025         Week 15 Year to date  Local authority    E92000001
#> 3795        2025         Week 15 Year to date  Local authority    E92000001
#> 3796        2025         Week 15 Year to date  Local authority    E92000001
#> 3797        2025         Week 15 Year to date  Local authority    E92000001
#> 3798        2025         Week 15 Year to date  Local authority    E92000001
#> 3799        2025         Week 15 Year to date  Local authority    E92000001
#> 3800        2025         Week 15 Year to date  Local authority    E92000001
#> 3801        2025         Week 15 Year to date  Local authority    E92000001
#> 3802        2025         Week 15 Year to date  Local authority    E92000001
#> 3803        2025         Week 15 Year to date  Local authority    E92000001
#> 3804        2025         Week 15 Year to date  Local authority    E92000001
#> 3805        2025         Week 15 Year to date  Local authority    E92000001
#> 3806        2025         Week 15 Year to date  Local authority    E92000001
#> 3807        2025         Week 15 Year to date  Local authority    E92000001
#> 3808        2025         Week 15 Year to date  Local authority    E92000001
#> 3809        2025         Week 15 Year to date  Local authority    E92000001
#> 3810        2025         Week 15 Year to date  Local authority    E92000001
#> 3811        2025         Week 15 Year to date  Local authority    E92000001
#> 3812        2025         Week 15 Year to date  Local authority    E92000001
#> 3813        2025         Week 15 Year to date  Local authority    E92000001
#> 3814        2025         Week 15 Year to date  Local authority    E92000001
#> 3815        2025         Week 15 Year to date  Local authority    E92000001
#> 3816        2025         Week 15 Year to date  Local authority    E92000001
#> 3817        2025         Week 15 Year to date  Local authority    E92000001
#> 3818        2025         Week 15 Year to date  Local authority    E92000001
#> 3819        2025         Week 15 Year to date  Local authority    E92000001
#> 3820        2025         Week 15 Year to date  Local authority    E92000001
#> 3821        2025         Week 15 Year to date  Local authority    E92000001
#> 3822        2025         Week 15 Year to date  Local authority    E92000001
#> 3823        2025         Week 15 Year to date  Local authority    E92000001
#> 3824        2025         Week 15 Year to date  Local authority    E92000001
#> 3825        2025         Week 15 Year to date  Local authority    E92000001
#> 3826        2025         Week 15 Year to date  Local authority    E92000001
#> 3827        2025         Week 15 Year to date  Local authority    E92000001
#> 3828        2025         Week 15 Year to date  Local authority    E92000001
#> 3829        2025         Week 15 Year to date  Local authority    E92000001
#> 3830        2025         Week 15 Year to date  Local authority    E92000001
#> 3831        2025         Week 15 Year to date  Local authority    E92000001
#> 3832        2025         Week 15 Year to date  Local authority    E92000001
#> 3833        2025         Week 15 Year to date  Local authority    E92000001
#> 3834        2025         Week 15 Year to date  Local authority    E92000001
#> 3835        2025         Week 15 Year to date  Local authority    E92000001
#> 3836        2025         Week 15 Year to date  Local authority    E92000001
#> 3837        2025         Week 15 Year to date  Local authority    E92000001
#> 3838        2025         Week 15 Year to date  Local authority    E92000001
#> 3839        2025         Week 15 Year to date  Local authority    E92000001
#> 3840        2025         Week 15 Year to date  Local authority    E92000001
#> 3841        2025         Week 15 Year to date  Local authority    E92000001
#> 3842        2025         Week 15 Year to date  Local authority    E92000001
#> 3843        2025         Week 15 Year to date  Local authority    E92000001
#> 3844        2025         Week 15 Year to date  Local authority    E92000001
#> 3845        2025         Week 15 Year to date         Regional    E92000001
#> 3846        2025         Week 15 Year to date         Regional    E92000001
#> 3847        2025         Week 15 Year to date         Regional    E92000001
#> 3848        2025         Week 15 Year to date         Regional    E92000001
#> 3849        2025         Week 15 Year to date  Local authority    E92000001
#> 3850        2025         Week 15 Year to date  Local authority    E92000001
#> 3851        2025         Week 15 Year to date  Local authority    E92000001
#> 3852        2025         Week 15 Year to date  Local authority    E92000001
#> 3853        2025         Week 15 Year to date  Local authority    E92000001
#> 3854        2025         Week 15 Year to date  Local authority    E92000001
#> 3855        2025         Week 15 Year to date  Local authority    E92000001
#> 3856        2025         Week 15 Year to date  Local authority    E92000001
#> 3857        2025         Week 15 Year to date  Local authority    E92000001
#> 3858        2025         Week 15 Year to date  Local authority    E92000001
#> 3859        2025         Week 15 Year to date  Local authority    E92000001
#> 3860        2025         Week 15 Year to date  Local authority    E92000001
#> 3861        2025         Week 15 Year to date  Local authority    E92000001
#> 3862        2025         Week 15 Year to date  Local authority    E92000001
#> 3863        2025         Week 15 Year to date  Local authority    E92000001
#> 3864        2025         Week 15 Year to date  Local authority    E92000001
#> 3865        2025         Week 15 Year to date  Local authority    E92000001
#> 3866        2025         Week 15 Year to date  Local authority    E92000001
#> 3867        2025         Week 15 Year to date  Local authority    E92000001
#> 3868        2025         Week 15 Year to date  Local authority    E92000001
#> 3869        2025         Week 15 Year to date  Local authority    E92000001
#> 3870        2025         Week 15 Year to date  Local authority    E92000001
#> 3871        2025         Week 15 Year to date  Local authority    E92000001
#> 3872        2025         Week 15 Year to date  Local authority    E92000001
#> 3873        2025         Week 15 Year to date  Local authority    E92000001
#> 3874        2025         Week 15 Year to date  Local authority    E92000001
#> 3875        2025         Week 15 Year to date  Local authority    E92000001
#> 3876        2025         Week 15 Year to date  Local authority    E92000001
#> 3877        2025         Week 15 Year to date  Local authority    E92000001
#> 3878        2025         Week 15 Year to date  Local authority    E92000001
#> 3879        2025         Week 15 Year to date  Local authority    E92000001
#> 3880        2025         Week 15 Year to date  Local authority    E92000001
#> 3881        2025         Week 15 Year to date  Local authority    E92000001
#> 3882        2025         Week 15 Year to date  Local authority    E92000001
#> 3883        2025         Week 15 Year to date  Local authority    E92000001
#> 3884        2025         Week 15 Year to date  Local authority    E92000001
#> 3885        2025         Week 15 Year to date  Local authority    E92000001
#> 3886        2025         Week 15 Year to date  Local authority    E92000001
#> 3887        2025         Week 15 Year to date  Local authority    E92000001
#> 3888        2025         Week 15 Year to date  Local authority    E92000001
#> 3889        2025         Week 15 Year to date  Local authority    E92000001
#> 3890        2025         Week 15 Year to date  Local authority    E92000001
#> 3891        2025         Week 15 Year to date  Local authority    E92000001
#> 3892        2025         Week 15 Year to date  Local authority    E92000001
#> 3893        2025         Week 15 Year to date  Local authority    E92000001
#> 3894        2025         Week 15 Year to date  Local authority    E92000001
#> 3895        2025         Week 15 Year to date  Local authority    E92000001
#> 3896        2025         Week 15 Year to date  Local authority    E92000001
#> 3897        2025         Week 15 Year to date  Local authority    E92000001
#> 3898        2025         Week 15 Year to date  Local authority    E92000001
#> 3899        2025         Week 15 Year to date  Local authority    E92000001
#> 3900        2025         Week 15 Year to date  Local authority    E92000001
#> 3901        2025         Week 15 Year to date  Local authority    E92000001
#> 3902        2025         Week 15 Year to date  Local authority    E92000001
#> 3903        2025         Week 15 Year to date  Local authority    E92000001
#> 3904        2025         Week 15 Year to date  Local authority    E92000001
#> 3905        2025         Week 15 Year to date  Local authority    E92000001
#> 3906        2025         Week 15 Year to date         Regional    E92000001
#> 3907        2025         Week 15 Year to date         Regional    E92000001
#> 3908        2025         Week 15 Year to date         Regional    E92000001
#> 3909        2025         Week 15 Year to date         Regional    E92000001
#> 3910        2025         Week 15 Year to date  Local authority    E92000001
#> 3911        2025         Week 15 Year to date  Local authority    E92000001
#> 3912        2025         Week 15 Year to date  Local authority    E92000001
#> 3913        2025         Week 15 Year to date  Local authority    E92000001
#> 3914        2025         Week 15 Year to date  Local authority    E92000001
#> 3915        2025         Week 15 Year to date  Local authority    E92000001
#> 3916        2025         Week 15 Year to date  Local authority    E92000001
#> 3917        2025         Week 15 Year to date  Local authority    E92000001
#> 3918        2025         Week 15 Year to date  Local authority    E92000001
#> 3919        2025         Week 15 Year to date  Local authority    E92000001
#> 3920        2025         Week 15 Year to date  Local authority    E92000001
#> 3921        2025         Week 15 Year to date  Local authority    E92000001
#> 3922        2025         Week 15 Year to date  Local authority    E92000001
#> 3923        2025         Week 15 Year to date  Local authority    E92000001
#> 3924        2025         Week 15 Year to date  Local authority    E92000001
#> 3925        2025         Week 15 Year to date  Local authority    E92000001
#> 3926        2025         Week 15 Year to date  Local authority    E92000001
#> 3927        2025         Week 15 Year to date  Local authority    E92000001
#> 3928        2025         Week 15 Year to date  Local authority    E92000001
#> 3929        2025         Week 15 Year to date  Local authority    E92000001
#> 3930        2025         Week 15 Year to date  Local authority    E92000001
#> 3931        2025         Week 15 Year to date  Local authority    E92000001
#> 3932        2025         Week 15 Year to date  Local authority    E92000001
#> 3933        2025         Week 15 Year to date  Local authority    E92000001
#> 3934        2025         Week 15 Year to date  Local authority    E92000001
#> 3935        2025         Week 15 Year to date  Local authority    E92000001
#> 3936        2025         Week 15 Year to date  Local authority    E92000001
#> 3937        2025         Week 15 Year to date  Local authority    E92000001
#> 3938        2025         Week 15 Year to date  Local authority    E92000001
#> 3939        2025         Week 15 Year to date  Local authority    E92000001
#> 3940        2025         Week 15 Year to date  Local authority    E92000001
#> 3941        2025         Week 15 Year to date  Local authority    E92000001
#> 3942        2025         Week 15 Year to date  Local authority    E92000001
#> 3943        2025         Week 15 Year to date  Local authority    E92000001
#> 3944        2025         Week 15 Year to date  Local authority    E92000001
#> 3945        2025         Week 15 Year to date  Local authority    E92000001
#> 3946        2025         Week 15 Year to date  Local authority    E92000001
#> 3947        2025         Week 15 Year to date  Local authority    E92000001
#> 3948        2025         Week 15 Year to date  Local authority    E92000001
#> 3949        2025         Week 15 Year to date  Local authority    E92000001
#> 3950        2025         Week 15 Year to date  Local authority    E92000001
#> 3951        2025         Week 15 Year to date  Local authority    E92000001
#> 3952        2025         Week 15 Year to date  Local authority    E92000001
#> 3953        2025         Week 14 Year to date         National    E92000001
#> 3954        2025         Week 14 Year to date         National    E92000001
#> 3955        2025         Week 14 Year to date         National    E92000001
#> 3956        2025         Week 14 Year to date         National    E92000001
#> 3957        2025         Week 14 Year to date         Regional    E92000001
#> 3958        2025         Week 14 Year to date         Regional    E92000001
#> 3959        2025         Week 14 Year to date         Regional    E92000001
#> 3960        2025         Week 14 Year to date         Regional    E92000001
#> 3961        2025         Week 14 Year to date  Local authority    E92000001
#> 3962        2025         Week 14 Year to date  Local authority    E92000001
#> 3963        2025         Week 14 Year to date  Local authority    E92000001
#> 3964        2025         Week 14 Year to date  Local authority    E92000001
#> 3965        2025         Week 14 Year to date  Local authority    E92000001
#> 3966        2025         Week 14 Year to date  Local authority    E92000001
#> 3967        2025         Week 14 Year to date  Local authority    E92000001
#> 3968        2025         Week 14 Year to date  Local authority    E92000001
#> 3969        2025         Week 14 Year to date  Local authority    E92000001
#> 3970        2025         Week 14 Year to date  Local authority    E92000001
#> 3971        2025         Week 14 Year to date  Local authority    E92000001
#> 3972        2025         Week 14 Year to date  Local authority    E92000001
#> 3973        2025         Week 14 Year to date  Local authority    E92000001
#> 3974        2025         Week 14 Year to date  Local authority    E92000001
#> 3975        2025         Week 14 Year to date  Local authority    E92000001
#> 3976        2025         Week 14 Year to date  Local authority    E92000001
#> 3977        2025         Week 14 Year to date  Local authority    E92000001
#> 3978        2025         Week 14 Year to date  Local authority    E92000001
#> 3979        2025         Week 14 Year to date  Local authority    E92000001
#> 3980        2025         Week 14 Year to date  Local authority    E92000001
#> 3981        2025         Week 14 Year to date  Local authority    E92000001
#> 3982        2025         Week 14 Year to date  Local authority    E92000001
#> 3983        2025         Week 14 Year to date  Local authority    E92000001
#> 3984        2025         Week 14 Year to date  Local authority    E92000001
#> 3985        2025         Week 14 Year to date  Local authority    E92000001
#> 3986        2025         Week 14 Year to date  Local authority    E92000001
#> 3987        2025         Week 14 Year to date  Local authority    E92000001
#> 3988        2025         Week 14 Year to date  Local authority    E92000001
#> 3989        2025         Week 14 Year to date  Local authority    E92000001
#> 3990        2025         Week 14 Year to date  Local authority    E92000001
#> 3991        2025         Week 14 Year to date  Local authority    E92000001
#> 3992        2025         Week 14 Year to date  Local authority    E92000001
#> 3993        2025         Week 14 Year to date  Local authority    E92000001
#> 3994        2025         Week 14 Year to date  Local authority    E92000001
#> 3995        2025         Week 14 Year to date  Local authority    E92000001
#> 3996        2025         Week 14 Year to date  Local authority    E92000001
#> 3997        2025         Week 14 Year to date         Regional    E92000001
#> 3998        2025         Week 14 Year to date         Regional    E92000001
#> 3999        2025         Week 14 Year to date         Regional    E92000001
#> 4000        2025         Week 14 Year to date         Regional    E92000001
#> 4001        2025         Week 14 Year to date  Local authority    E92000001
#> 4002        2025         Week 14 Year to date  Local authority    E92000001
#> 4003        2025         Week 14 Year to date  Local authority    E92000001
#> 4004        2025         Week 14 Year to date  Local authority    E92000001
#> 4005        2025         Week 14 Year to date  Local authority    E92000001
#> 4006        2025         Week 14 Year to date  Local authority    E92000001
#> 4007        2025         Week 14 Year to date  Local authority    E92000001
#> 4008        2025         Week 14 Year to date  Local authority    E92000001
#> 4009        2025         Week 14 Year to date  Local authority    E92000001
#> 4010        2025         Week 14 Year to date  Local authority    E92000001
#> 4011        2025         Week 14 Year to date  Local authority    E92000001
#> 4012        2025         Week 14 Year to date  Local authority    E92000001
#> 4013        2025         Week 14 Year to date  Local authority    E92000001
#> 4014        2025         Week 14 Year to date  Local authority    E92000001
#> 4015        2025         Week 14 Year to date  Local authority    E92000001
#> 4016        2025         Week 14 Year to date  Local authority    E92000001
#> 4017        2025         Week 14 Year to date  Local authority    E92000001
#> 4018        2025         Week 14 Year to date  Local authority    E92000001
#> 4019        2025         Week 14 Year to date  Local authority    E92000001
#> 4020        2025         Week 14 Year to date  Local authority    E92000001
#> 4021        2025         Week 14 Year to date  Local authority    E92000001
#> 4022        2025         Week 14 Year to date  Local authority    E92000001
#> 4023        2025         Week 14 Year to date  Local authority    E92000001
#> 4024        2025         Week 14 Year to date  Local authority    E92000001
#> 4025        2025         Week 14 Year to date  Local authority    E92000001
#> 4026        2025         Week 14 Year to date  Local authority    E92000001
#> 4027        2025         Week 14 Year to date  Local authority    E92000001
#> 4028        2025         Week 14 Year to date  Local authority    E92000001
#> 4029        2025         Week 14 Year to date  Local authority    E92000001
#> 4030        2025         Week 14 Year to date  Local authority    E92000001
#> 4031        2025         Week 14 Year to date  Local authority    E92000001
#> 4032        2025         Week 14 Year to date  Local authority    E92000001
#> 4033        2025         Week 14 Year to date  Local authority    E92000001
#> 4034        2025         Week 14 Year to date  Local authority    E92000001
#> 4035        2025         Week 14 Year to date  Local authority    E92000001
#> 4036        2025         Week 14 Year to date  Local authority    E92000001
#> 4037        2025         Week 14 Year to date  Local authority    E92000001
#> 4038        2025         Week 14 Year to date  Local authority    E92000001
#> 4039        2025         Week 14 Year to date  Local authority    E92000001
#> 4040        2025         Week 14 Year to date  Local authority    E92000001
#> 4041        2025         Week 14 Year to date  Local authority    E92000001
#> 4042        2025         Week 14 Year to date  Local authority    E92000001
#> 4043        2025         Week 14 Year to date  Local authority    E92000001
#> 4044        2025         Week 14 Year to date  Local authority    E92000001
#> 4045        2025         Week 14 Year to date  Local authority    E92000001
#> 4046        2025         Week 14 Year to date  Local authority    E92000001
#> 4047        2025         Week 14 Year to date  Local authority    E92000001
#> 4048        2025         Week 14 Year to date  Local authority    E92000001
#> 4049        2025         Week 14 Year to date  Local authority    E92000001
#> 4050        2025         Week 14 Year to date  Local authority    E92000001
#> 4051        2025         Week 14 Year to date  Local authority    E92000001
#> 4052        2025         Week 14 Year to date  Local authority    E92000001
#> 4053        2025         Week 14 Year to date  Local authority    E92000001
#> 4054        2025         Week 14 Year to date  Local authority    E92000001
#> 4055        2025         Week 14 Year to date  Local authority    E92000001
#> 4056        2025         Week 14 Year to date  Local authority    E92000001
#> 4057        2025         Week 14 Year to date  Local authority    E92000001
#> 4058        2025         Week 14 Year to date  Local authority    E92000001
#> 4059        2025         Week 14 Year to date  Local authority    E92000001
#> 4060        2025         Week 14 Year to date  Local authority    E92000001
#> 4061        2025         Week 14 Year to date  Local authority    E92000001
#> 4062        2025         Week 14 Year to date  Local authority    E92000001
#> 4063        2025         Week 14 Year to date  Local authority    E92000001
#> 4064        2025         Week 14 Year to date  Local authority    E92000001
#> 4065        2025         Week 14 Year to date  Local authority    E92000001
#> 4066        2025         Week 14 Year to date  Local authority    E92000001
#> 4067        2025         Week 14 Year to date  Local authority    E92000001
#> 4068        2025         Week 14 Year to date  Local authority    E92000001
#> 4069        2025         Week 14 Year to date  Local authority    E92000001
#> 4070        2025         Week 14 Year to date  Local authority    E92000001
#> 4071        2025         Week 14 Year to date  Local authority    E92000001
#> 4072        2025         Week 14 Year to date  Local authority    E92000001
#> 4073        2025         Week 14 Year to date         Regional    E92000001
#> 4074        2025         Week 14 Year to date         Regional    E92000001
#> 4075        2025         Week 14 Year to date         Regional    E92000001
#> 4076        2025         Week 14 Year to date         Regional    E92000001
#> 4077        2025         Week 14 Year to date  Local authority    E92000001
#> 4078        2025         Week 14 Year to date  Local authority    E92000001
#> 4079        2025         Week 14 Year to date  Local authority    E92000001
#> 4080        2025         Week 14 Year to date  Local authority    E92000001
#> 4081        2025         Week 14 Year to date  Local authority    E92000001
#> 4082        2025         Week 14 Year to date  Local authority    E92000001
#> 4083        2025         Week 14 Year to date  Local authority    E92000001
#> 4084        2025         Week 14 Year to date  Local authority    E92000001
#> 4085        2025         Week 14 Year to date  Local authority    E92000001
#> 4086        2025         Week 14 Year to date  Local authority    E92000001
#> 4087        2025         Week 14 Year to date  Local authority    E92000001
#> 4088        2025         Week 14 Year to date  Local authority    E92000001
#> 4089        2025         Week 14 Year to date  Local authority    E92000001
#> 4090        2025         Week 14 Year to date  Local authority    E92000001
#> 4091        2025         Week 14 Year to date  Local authority    E92000001
#> 4092        2025         Week 14 Year to date  Local authority    E92000001
#> 4093        2025         Week 14 Year to date  Local authority    E92000001
#> 4094        2025         Week 14 Year to date  Local authority    E92000001
#> 4095        2025         Week 14 Year to date  Local authority    E92000001
#> 4096        2025         Week 14 Year to date  Local authority    E92000001
#> 4097        2025         Week 14 Year to date  Local authority    E92000001
#> 4098        2025         Week 14 Year to date  Local authority    E92000001
#> 4099        2025         Week 14 Year to date  Local authority    E92000001
#> 4100        2025         Week 14 Year to date  Local authority    E92000001
#> 4101        2025         Week 14 Year to date  Local authority    E92000001
#> 4102        2025         Week 14 Year to date  Local authority    E92000001
#> 4103        2025         Week 14 Year to date  Local authority    E92000001
#> 4104        2025         Week 14 Year to date  Local authority    E92000001
#> 4105        2025         Week 14 Year to date  Local authority    E92000001
#> 4106        2025         Week 14 Year to date  Local authority    E92000001
#> 4107        2025         Week 14 Year to date  Local authority    E92000001
#> 4108        2025         Week 14 Year to date  Local authority    E92000001
#> 4109        2025         Week 14 Year to date  Local authority    E92000001
#> 4110        2025         Week 14 Year to date  Local authority    E92000001
#> 4111        2025         Week 14 Year to date  Local authority    E92000001
#> 4112        2025         Week 14 Year to date  Local authority    E92000001
#> 4113        2025         Week 14 Year to date  Local authority    E92000001
#> 4114        2025         Week 14 Year to date  Local authority    E92000001
#> 4115        2025         Week 14 Year to date  Local authority    E92000001
#> 4116        2025         Week 14 Year to date  Local authority    E92000001
#> 4117        2025         Week 14 Year to date  Local authority    E92000001
#> 4118        2025         Week 14 Year to date  Local authority    E92000001
#> 4119        2025         Week 14 Year to date  Local authority    E92000001
#> 4120        2025         Week 14 Year to date  Local authority    E92000001
#> 4121        2025         Week 14 Year to date  Local authority    E92000001
#> 4122        2025         Week 14 Year to date         Regional    E92000001
#> 4123        2025         Week 14 Year to date         Regional    E92000001
#> 4124        2025         Week 14 Year to date         Regional    E92000001
#> 4125        2025         Week 14 Year to date         Regional    E92000001
#> 4126        2025         Week 14 Year to date  Local authority    E92000001
#> 4127        2025         Week 14 Year to date  Local authority    E92000001
#> 4128        2025         Week 14 Year to date  Local authority    E92000001
#> 4129        2025         Week 14 Year to date  Local authority    E92000001
#> 4130        2025         Week 14 Year to date  Local authority    E92000001
#> 4131        2025         Week 14 Year to date  Local authority    E92000001
#> 4132        2025         Week 14 Year to date  Local authority    E92000001
#> 4133        2025         Week 14 Year to date  Local authority    E92000001
#> 4134        2025         Week 14 Year to date  Local authority    E92000001
#> 4135        2025         Week 14 Year to date  Local authority    E92000001
#> 4136        2025         Week 14 Year to date  Local authority    E92000001
#> 4137        2025         Week 14 Year to date  Local authority    E92000001
#> 4138        2025         Week 14 Year to date  Local authority    E92000001
#> 4139        2025         Week 14 Year to date  Local authority    E92000001
#> 4140        2025         Week 14 Year to date  Local authority    E92000001
#> 4141        2025         Week 14 Year to date  Local authority    E92000001
#> 4142        2025         Week 14 Year to date  Local authority    E92000001
#> 4143        2025         Week 14 Year to date  Local authority    E92000001
#> 4144        2025         Week 14 Year to date  Local authority    E92000001
#> 4145        2025         Week 14 Year to date  Local authority    E92000001
#> 4146        2025         Week 14 Year to date  Local authority    E92000001
#> 4147        2025         Week 14 Year to date  Local authority    E92000001
#> 4148        2025         Week 14 Year to date  Local authority    E92000001
#> 4149        2025         Week 14 Year to date  Local authority    E92000001
#> 4150        2025         Week 14 Year to date  Local authority    E92000001
#> 4151        2025         Week 14 Year to date  Local authority    E92000001
#> 4152        2025         Week 14 Year to date  Local authority    E92000001
#> 4153        2025         Week 14 Year to date  Local authority    E92000001
#> 4154        2025         Week 14 Year to date  Local authority    E92000001
#> 4155        2025         Week 14 Year to date         Regional    E92000001
#> 4156        2025         Week 14 Year to date         Regional    E92000001
#> 4157        2025         Week 14 Year to date         Regional    E92000001
#> 4158        2025         Week 14 Year to date         Regional    E92000001
#> 4159        2025         Week 14 Year to date  Local authority    E92000001
#> 4160        2025         Week 14 Year to date  Local authority    E92000001
#> 4161        2025         Week 14 Year to date  Local authority    E92000001
#> 4162        2025         Week 14 Year to date  Local authority    E92000001
#> 4163        2025         Week 14 Year to date  Local authority    E92000001
#> 4164        2025         Week 14 Year to date  Local authority    E92000001
#> 4165        2025         Week 14 Year to date  Local authority    E92000001
#> 4166        2025         Week 14 Year to date  Local authority    E92000001
#> 4167        2025         Week 14 Year to date  Local authority    E92000001
#> 4168        2025         Week 14 Year to date  Local authority    E92000001
#> 4169        2025         Week 14 Year to date  Local authority    E92000001
#> 4170        2025         Week 14 Year to date  Local authority    E92000001
#> 4171        2025         Week 14 Year to date  Local authority    E92000001
#> 4172        2025         Week 14 Year to date  Local authority    E92000001
#> 4173        2025         Week 14 Year to date  Local authority    E92000001
#> 4174        2025         Week 14 Year to date  Local authority    E92000001
#> 4175        2025         Week 14 Year to date  Local authority    E92000001
#> 4176        2025         Week 14 Year to date  Local authority    E92000001
#> 4177        2025         Week 14 Year to date  Local authority    E92000001
#> 4178        2025         Week 14 Year to date  Local authority    E92000001
#> 4179        2025         Week 14 Year to date  Local authority    E92000001
#> 4180        2025         Week 14 Year to date  Local authority    E92000001
#> 4181        2025         Week 14 Year to date  Local authority    E92000001
#> 4182        2025         Week 14 Year to date  Local authority    E92000001
#> 4183        2025         Week 14 Year to date  Local authority    E92000001
#> 4184        2025         Week 14 Year to date  Local authority    E92000001
#> 4185        2025         Week 14 Year to date  Local authority    E92000001
#> 4186        2025         Week 14 Year to date  Local authority    E92000001
#> 4187        2025         Week 14 Year to date  Local authority    E92000001
#> 4188        2025         Week 14 Year to date  Local authority    E92000001
#> 4189        2025         Week 14 Year to date  Local authority    E92000001
#> 4190        2025         Week 14 Year to date  Local authority    E92000001
#> 4191        2025         Week 14 Year to date  Local authority    E92000001
#> 4192        2025         Week 14 Year to date  Local authority    E92000001
#> 4193        2025         Week 14 Year to date  Local authority    E92000001
#> 4194        2025         Week 14 Year to date  Local authority    E92000001
#> 4195        2025         Week 14 Year to date  Local authority    E92000001
#> 4196        2025         Week 14 Year to date  Local authority    E92000001
#> 4197        2025         Week 14 Year to date  Local authority    E92000001
#> 4198        2025         Week 14 Year to date  Local authority    E92000001
#> 4199        2025         Week 14 Year to date  Local authority    E92000001
#> 4200        2025         Week 14 Year to date  Local authority    E92000001
#> 4201        2025         Week 14 Year to date         Regional    E92000001
#> 4202        2025         Week 14 Year to date         Regional    E92000001
#> 4203        2025         Week 14 Year to date         Regional    E92000001
#> 4204        2025         Week 14 Year to date         Regional    E92000001
#> 4205        2025         Week 14 Year to date  Local authority    E92000001
#> 4206        2025         Week 14 Year to date  Local authority    E92000001
#> 4207        2025         Week 14 Year to date  Local authority    E92000001
#> 4208        2025         Week 14 Year to date  Local authority    E92000001
#> 4209        2025         Week 14 Year to date  Local authority    E92000001
#> 4210        2025         Week 14 Year to date  Local authority    E92000001
#> 4211        2025         Week 14 Year to date  Local authority    E92000001
#> 4212        2025         Week 14 Year to date  Local authority    E92000001
#> 4213        2025         Week 14 Year to date  Local authority    E92000001
#> 4214        2025         Week 14 Year to date  Local authority    E92000001
#> 4215        2025         Week 14 Year to date  Local authority    E92000001
#> 4216        2025         Week 14 Year to date  Local authority    E92000001
#> 4217        2025         Week 14 Year to date  Local authority    E92000001
#> 4218        2025         Week 14 Year to date  Local authority    E92000001
#> 4219        2025         Week 14 Year to date  Local authority    E92000001
#> 4220        2025         Week 14 Year to date  Local authority    E92000001
#> 4221        2025         Week 14 Year to date  Local authority    E92000001
#> 4222        2025         Week 14 Year to date  Local authority    E92000001
#> 4223        2025         Week 14 Year to date  Local authority    E92000001
#> 4224        2025         Week 14 Year to date  Local authority    E92000001
#> 4225        2025         Week 14 Year to date  Local authority    E92000001
#> 4226        2025         Week 14 Year to date  Local authority    E92000001
#> 4227        2025         Week 14 Year to date  Local authority    E92000001
#> 4228        2025         Week 14 Year to date  Local authority    E92000001
#> 4229        2025         Week 14 Year to date  Local authority    E92000001
#> 4230        2025         Week 14 Year to date  Local authority    E92000001
#> 4231        2025         Week 14 Year to date  Local authority    E92000001
#> 4232        2025         Week 14 Year to date  Local authority    E92000001
#> 4233        2025         Week 14 Year to date  Local authority    E92000001
#> 4234        2025         Week 14 Year to date  Local authority    E92000001
#> 4235        2025         Week 14 Year to date  Local authority    E92000001
#> 4236        2025         Week 14 Year to date  Local authority    E92000001
#> 4237        2025         Week 14 Year to date  Local authority    E92000001
#> 4238        2025         Week 14 Year to date         Regional    E92000001
#> 4239        2025         Week 14 Year to date         Regional    E92000001
#> 4240        2025         Week 14 Year to date         Regional    E92000001
#> 4241        2025         Week 14 Year to date         Regional    E92000001
#> 4242        2025         Week 14 Year to date  Local authority    E92000001
#> 4243        2025         Week 14 Year to date  Local authority    E92000001
#> 4244        2025         Week 14 Year to date  Local authority    E92000001
#> 4245        2025         Week 14 Year to date  Local authority    E92000001
#> 4246        2025         Week 14 Year to date  Local authority    E92000001
#> 4247        2025         Week 14 Year to date  Local authority    E92000001
#> 4248        2025         Week 14 Year to date  Local authority    E92000001
#> 4249        2025         Week 14 Year to date  Local authority    E92000001
#> 4250        2025         Week 14 Year to date  Local authority    E92000001
#> 4251        2025         Week 14 Year to date  Local authority    E92000001
#> 4252        2025         Week 14 Year to date  Local authority    E92000001
#> 4253        2025         Week 14 Year to date  Local authority    E92000001
#> 4254        2025         Week 14 Year to date  Local authority    E92000001
#> 4255        2025         Week 14 Year to date  Local authority    E92000001
#> 4256        2025         Week 14 Year to date  Local authority    E92000001
#> 4257        2025         Week 14 Year to date  Local authority    E92000001
#> 4258        2025         Week 14 Year to date  Local authority    E92000001
#> 4259        2025         Week 14 Year to date  Local authority    E92000001
#> 4260        2025         Week 14 Year to date  Local authority    E92000001
#> 4261        2025         Week 14 Year to date  Local authority    E92000001
#> 4262        2025         Week 14 Year to date  Local authority    E92000001
#> 4263        2025         Week 14 Year to date  Local authority    E92000001
#> 4264        2025         Week 14 Year to date  Local authority    E92000001
#> 4265        2025         Week 14 Year to date  Local authority    E92000001
#> 4266        2025         Week 14 Year to date  Local authority    E92000001
#> 4267        2025         Week 14 Year to date  Local authority    E92000001
#> 4268        2025         Week 14 Year to date  Local authority    E92000001
#> 4269        2025         Week 14 Year to date  Local authority    E92000001
#> 4270        2025         Week 14 Year to date  Local authority    E92000001
#> 4271        2025         Week 14 Year to date  Local authority    E92000001
#> 4272        2025         Week 14 Year to date  Local authority    E92000001
#> 4273        2025         Week 14 Year to date  Local authority    E92000001
#> 4274        2025         Week 14 Year to date  Local authority    E92000001
#> 4275        2025         Week 14 Year to date  Local authority    E92000001
#> 4276        2025         Week 14 Year to date  Local authority    E92000001
#> 4277        2025         Week 14 Year to date  Local authority    E92000001
#> 4278        2025         Week 14 Year to date  Local authority    E92000001
#> 4279        2025         Week 14 Year to date  Local authority    E92000001
#> 4280        2025         Week 14 Year to date  Local authority    E92000001
#> 4281        2025         Week 14 Year to date  Local authority    E92000001
#> 4282        2025         Week 14 Year to date  Local authority    E92000001
#> 4283        2025         Week 14 Year to date  Local authority    E92000001
#> 4284        2025         Week 14 Year to date  Local authority    E92000001
#> 4285        2025         Week 14 Year to date  Local authority    E92000001
#> 4286        2025         Week 14 Year to date  Local authority    E92000001
#> 4287        2025         Week 14 Year to date  Local authority    E92000001
#> 4288        2025         Week 14 Year to date  Local authority    E92000001
#> 4289        2025         Week 14 Year to date  Local authority    E92000001
#> 4290        2025         Week 14 Year to date  Local authority    E92000001
#> 4291        2025         Week 14 Year to date  Local authority    E92000001
#> 4292        2025         Week 14 Year to date  Local authority    E92000001
#> 4293        2025         Week 14 Year to date  Local authority    E92000001
#> 4294        2025         Week 14 Year to date  Local authority    E92000001
#> 4295        2025         Week 14 Year to date  Local authority    E92000001
#> 4296        2025         Week 14 Year to date  Local authority    E92000001
#> 4297        2025         Week 14 Year to date  Local authority    E92000001
#> 4298        2025         Week 14 Year to date  Local authority    E92000001
#> 4299        2025         Week 14 Year to date  Local authority    E92000001
#> 4300        2025         Week 14 Year to date  Local authority    E92000001
#> 4301        2025         Week 14 Year to date  Local authority    E92000001
#> 4302        2025         Week 14 Year to date  Local authority    E92000001
#> 4303        2025         Week 14 Year to date  Local authority    E92000001
#> 4304        2025         Week 14 Year to date  Local authority    E92000001
#> 4305        2025         Week 14 Year to date  Local authority    E92000001
#> 4306        2025         Week 14 Year to date  Local authority    E92000001
#> 4307        2025         Week 14 Year to date  Local authority    E92000001
#> 4308        2025         Week 14 Year to date  Local authority    E92000001
#> 4309        2025         Week 14 Year to date  Local authority    E92000001
#> 4310        2025         Week 14 Year to date  Local authority    E92000001
#> 4311        2025         Week 14 Year to date  Local authority    E92000001
#> 4312        2025         Week 14 Year to date  Local authority    E92000001
#> 4313        2025         Week 14 Year to date  Local authority    E92000001
#> 4314        2025         Week 14 Year to date  Local authority    E92000001
#> 4315        2025         Week 14 Year to date  Local authority    E92000001
#> 4316        2025         Week 14 Year to date  Local authority    E92000001
#> 4317        2025         Week 14 Year to date  Local authority    E92000001
#> 4318        2025         Week 14 Year to date  Local authority    E92000001
#> 4319        2025         Week 14 Year to date  Local authority    E92000001
#> 4320        2025         Week 14 Year to date  Local authority    E92000001
#> 4321        2025         Week 14 Year to date  Local authority    E92000001
#> 4322        2025         Week 14 Year to date  Local authority    E92000001
#> 4323        2025         Week 14 Year to date  Local authority    E92000001
#> 4324        2025         Week 14 Year to date  Local authority    E92000001
#> 4325        2025         Week 14 Year to date  Local authority    E92000001
#> 4326        2025         Week 14 Year to date  Local authority    E92000001
#> 4327        2025         Week 14 Year to date  Local authority    E92000001
#> 4328        2025         Week 14 Year to date  Local authority    E92000001
#> 4329        2025         Week 14 Year to date  Local authority    E92000001
#> 4330        2025         Week 14 Year to date  Local authority    E92000001
#> 4331        2025         Week 14 Year to date  Local authority    E92000001
#> 4332        2025         Week 14 Year to date  Local authority    E92000001
#> 4333        2025         Week 14 Year to date  Local authority    E92000001
#> 4334        2025         Week 14 Year to date  Local authority    E92000001
#> 4335        2025         Week 14 Year to date  Local authority    E92000001
#> 4336        2025         Week 14 Year to date  Local authority    E92000001
#> 4337        2025         Week 14 Year to date  Local authority    E92000001
#> 4338        2025         Week 14 Year to date  Local authority    E92000001
#> 4339        2025         Week 14 Year to date         Regional    E92000001
#> 4340        2025         Week 14 Year to date         Regional    E92000001
#> 4341        2025         Week 14 Year to date         Regional    E92000001
#> 4342        2025         Week 14 Year to date         Regional    E92000001
#> 4343        2025         Week 14 Year to date  Local authority    E92000001
#> 4344        2025         Week 14 Year to date  Local authority    E92000001
#> 4345        2025         Week 14 Year to date  Local authority    E92000001
#> 4346        2025         Week 14 Year to date  Local authority    E92000001
#> 4347        2025         Week 14 Year to date  Local authority    E92000001
#> 4348        2025         Week 14 Year to date  Local authority    E92000001
#> 4349        2025         Week 14 Year to date  Local authority    E92000001
#> 4350        2025         Week 14 Year to date  Local authority    E92000001
#> 4351        2025         Week 14 Year to date  Local authority    E92000001
#> 4352        2025         Week 14 Year to date  Local authority    E92000001
#> 4353        2025         Week 14 Year to date  Local authority    E92000001
#> 4354        2025         Week 14 Year to date  Local authority    E92000001
#> 4355        2025         Week 14 Year to date  Local authority    E92000001
#> 4356        2025         Week 14 Year to date  Local authority    E92000001
#> 4357        2025         Week 14 Year to date  Local authority    E92000001
#> 4358        2025         Week 14 Year to date  Local authority    E92000001
#> 4359        2025         Week 14 Year to date  Local authority    E92000001
#> 4360        2025         Week 14 Year to date  Local authority    E92000001
#> 4361        2025         Week 14 Year to date  Local authority    E92000001
#> 4362        2025         Week 14 Year to date  Local authority    E92000001
#> 4363        2025         Week 14 Year to date  Local authority    E92000001
#> 4364        2025         Week 14 Year to date  Local authority    E92000001
#> 4365        2025         Week 14 Year to date  Local authority    E92000001
#> 4366        2025         Week 14 Year to date  Local authority    E92000001
#> 4367        2025         Week 14 Year to date  Local authority    E92000001
#> 4368        2025         Week 14 Year to date  Local authority    E92000001
#> 4369        2025         Week 14 Year to date  Local authority    E92000001
#> 4370        2025         Week 14 Year to date  Local authority    E92000001
#> 4371        2025         Week 14 Year to date  Local authority    E92000001
#> 4372        2025         Week 14 Year to date  Local authority    E92000001
#> 4373        2025         Week 14 Year to date  Local authority    E92000001
#> 4374        2025         Week 14 Year to date  Local authority    E92000001
#> 4375        2025         Week 14 Year to date  Local authority    E92000001
#> 4376        2025         Week 14 Year to date  Local authority    E92000001
#> 4377        2025         Week 14 Year to date  Local authority    E92000001
#> 4378        2025         Week 14 Year to date  Local authority    E92000001
#> 4379        2025         Week 14 Year to date  Local authority    E92000001
#> 4380        2025         Week 14 Year to date  Local authority    E92000001
#> 4381        2025         Week 14 Year to date  Local authority    E92000001
#> 4382        2025         Week 14 Year to date  Local authority    E92000001
#> 4383        2025         Week 14 Year to date  Local authority    E92000001
#> 4384        2025         Week 14 Year to date  Local authority    E92000001
#> 4385        2025         Week 14 Year to date  Local authority    E92000001
#> 4386        2025         Week 14 Year to date  Local authority    E92000001
#> 4387        2025         Week 14 Year to date  Local authority    E92000001
#> 4388        2025         Week 14 Year to date  Local authority    E92000001
#> 4389        2025         Week 14 Year to date  Local authority    E92000001
#> 4390        2025         Week 14 Year to date  Local authority    E92000001
#> 4391        2025         Week 14 Year to date  Local authority    E92000001
#> 4392        2025         Week 14 Year to date  Local authority    E92000001
#> 4393        2025         Week 14 Year to date  Local authority    E92000001
#> 4394        2025         Week 14 Year to date  Local authority    E92000001
#> 4395        2025         Week 14 Year to date  Local authority    E92000001
#> 4396        2025         Week 14 Year to date  Local authority    E92000001
#> 4397        2025         Week 14 Year to date  Local authority    E92000001
#> 4398        2025         Week 14 Year to date  Local authority    E92000001
#> 4399        2025         Week 14 Year to date  Local authority    E92000001
#> 4400        2025         Week 14 Year to date         Regional    E92000001
#> 4401        2025         Week 14 Year to date         Regional    E92000001
#> 4402        2025         Week 14 Year to date         Regional    E92000001
#> 4403        2025         Week 14 Year to date         Regional    E92000001
#> 4404        2025         Week 14 Year to date  Local authority    E92000001
#> 4405        2025         Week 14 Year to date  Local authority    E92000001
#> 4406        2025         Week 14 Year to date  Local authority    E92000001
#> 4407        2025         Week 14 Year to date  Local authority    E92000001
#> 4408        2025         Week 14 Year to date  Local authority    E92000001
#> 4409        2025         Week 14 Year to date  Local authority    E92000001
#> 4410        2025         Week 14 Year to date  Local authority    E92000001
#> 4411        2025         Week 14 Year to date  Local authority    E92000001
#> 4412        2025         Week 14 Year to date  Local authority    E92000001
#> 4413        2025         Week 14 Year to date  Local authority    E92000001
#> 4414        2025         Week 14 Year to date  Local authority    E92000001
#> 4415        2025         Week 14 Year to date  Local authority    E92000001
#> 4416        2025         Week 14 Year to date  Local authority    E92000001
#> 4417        2025         Week 14 Year to date  Local authority    E92000001
#> 4418        2025         Week 14 Year to date  Local authority    E92000001
#> 4419        2025         Week 14 Year to date  Local authority    E92000001
#> 4420        2025         Week 14 Year to date  Local authority    E92000001
#> 4421        2025         Week 14 Year to date  Local authority    E92000001
#> 4422        2025         Week 14 Year to date  Local authority    E92000001
#> 4423        2025         Week 14 Year to date  Local authority    E92000001
#> 4424        2025         Week 14 Year to date  Local authority    E92000001
#> 4425        2025         Week 14 Year to date  Local authority    E92000001
#> 4426        2025         Week 14 Year to date  Local authority    E92000001
#> 4427        2025         Week 14 Year to date  Local authority    E92000001
#> 4428        2025         Week 14 Year to date  Local authority    E92000001
#> 4429        2025         Week 14 Year to date  Local authority    E92000001
#> 4430        2025         Week 14 Year to date  Local authority    E92000001
#> 4431        2025         Week 14 Year to date  Local authority    E92000001
#> 4432        2025         Week 14 Year to date  Local authority    E92000001
#> 4433        2025         Week 14 Year to date  Local authority    E92000001
#> 4434        2025         Week 14 Year to date  Local authority    E92000001
#> 4435        2025         Week 14 Year to date  Local authority    E92000001
#> 4436        2025         Week 14 Year to date  Local authority    E92000001
#> 4437        2025         Week 14 Year to date  Local authority    E92000001
#> 4438        2025         Week 14 Year to date  Local authority    E92000001
#> 4439        2025         Week 14 Year to date  Local authority    E92000001
#> 4440        2025         Week 14 Year to date  Local authority    E92000001
#> 4441        2025         Week 14 Year to date  Local authority    E92000001
#> 4442        2025         Week 14 Year to date  Local authority    E92000001
#> 4443        2025         Week 14 Year to date  Local authority    E92000001
#> 4444        2025         Week 14 Year to date  Local authority    E92000001
#> 4445        2025         Week 14 Year to date  Local authority    E92000001
#> 4446        2025         Week 14 Year to date  Local authority    E92000001
#> 4447        2025         Week 12 Year to date         National    E92000001
#> 4448        2025         Week 12 Year to date         National    E92000001
#> 4449        2025         Week 12 Year to date         National    E92000001
#> 4450        2025         Week 12 Year to date         National    E92000001
#> 4451        2025         Week 12 Year to date         Regional    E92000001
#> 4452        2025         Week 12 Year to date         Regional    E92000001
#> 4453        2025         Week 12 Year to date         Regional    E92000001
#> 4454        2025         Week 12 Year to date         Regional    E92000001
#> 4455        2025         Week 12 Year to date  Local authority    E92000001
#> 4456        2025         Week 12 Year to date  Local authority    E92000001
#> 4457        2025         Week 12 Year to date  Local authority    E92000001
#> 4458        2025         Week 12 Year to date  Local authority    E92000001
#> 4459        2025         Week 12 Year to date  Local authority    E92000001
#> 4460        2025         Week 12 Year to date  Local authority    E92000001
#> 4461        2025         Week 12 Year to date  Local authority    E92000001
#> 4462        2025         Week 12 Year to date  Local authority    E92000001
#> 4463        2025         Week 12 Year to date  Local authority    E92000001
#> 4464        2025         Week 12 Year to date  Local authority    E92000001
#> 4465        2025         Week 12 Year to date  Local authority    E92000001
#> 4466        2025         Week 12 Year to date  Local authority    E92000001
#> 4467        2025         Week 12 Year to date  Local authority    E92000001
#> 4468        2025         Week 12 Year to date  Local authority    E92000001
#> 4469        2025         Week 12 Year to date  Local authority    E92000001
#> 4470        2025         Week 12 Year to date  Local authority    E92000001
#> 4471        2025         Week 12 Year to date  Local authority    E92000001
#> 4472        2025         Week 12 Year to date  Local authority    E92000001
#> 4473        2025         Week 12 Year to date  Local authority    E92000001
#> 4474        2025         Week 12 Year to date  Local authority    E92000001
#> 4475        2025         Week 12 Year to date  Local authority    E92000001
#> 4476        2025         Week 12 Year to date  Local authority    E92000001
#> 4477        2025         Week 12 Year to date  Local authority    E92000001
#> 4478        2025         Week 12 Year to date  Local authority    E92000001
#> 4479        2025         Week 12 Year to date  Local authority    E92000001
#> 4480        2025         Week 12 Year to date  Local authority    E92000001
#> 4481        2025         Week 12 Year to date  Local authority    E92000001
#> 4482        2025         Week 12 Year to date  Local authority    E92000001
#> 4483        2025         Week 12 Year to date  Local authority    E92000001
#> 4484        2025         Week 12 Year to date  Local authority    E92000001
#> 4485        2025         Week 12 Year to date  Local authority    E92000001
#> 4486        2025         Week 12 Year to date  Local authority    E92000001
#> 4487        2025         Week 12 Year to date  Local authority    E92000001
#> 4488        2025         Week 12 Year to date  Local authority    E92000001
#> 4489        2025         Week 12 Year to date  Local authority    E92000001
#> 4490        2025         Week 12 Year to date  Local authority    E92000001
#> 4491        2025         Week 12 Year to date         Regional    E92000001
#> 4492        2025         Week 12 Year to date         Regional    E92000001
#> 4493        2025         Week 12 Year to date         Regional    E92000001
#> 4494        2025         Week 12 Year to date         Regional    E92000001
#> 4495        2025         Week 12 Year to date  Local authority    E92000001
#> 4496        2025         Week 12 Year to date  Local authority    E92000001
#> 4497        2025         Week 12 Year to date  Local authority    E92000001
#> 4498        2025         Week 12 Year to date  Local authority    E92000001
#> 4499        2025         Week 12 Year to date  Local authority    E92000001
#> 4500        2025         Week 12 Year to date  Local authority    E92000001
#> 4501        2025         Week 12 Year to date  Local authority    E92000001
#> 4502        2025         Week 12 Year to date  Local authority    E92000001
#> 4503        2025         Week 12 Year to date  Local authority    E92000001
#> 4504        2025         Week 12 Year to date  Local authority    E92000001
#> 4505        2025         Week 12 Year to date  Local authority    E92000001
#> 4506        2025         Week 12 Year to date  Local authority    E92000001
#> 4507        2025         Week 12 Year to date  Local authority    E92000001
#> 4508        2025         Week 12 Year to date  Local authority    E92000001
#> 4509        2025         Week 12 Year to date  Local authority    E92000001
#> 4510        2025         Week 12 Year to date  Local authority    E92000001
#> 4511        2025         Week 12 Year to date  Local authority    E92000001
#> 4512        2025         Week 12 Year to date  Local authority    E92000001
#> 4513        2025         Week 12 Year to date  Local authority    E92000001
#> 4514        2025         Week 12 Year to date  Local authority    E92000001
#> 4515        2025         Week 12 Year to date  Local authority    E92000001
#> 4516        2025         Week 12 Year to date  Local authority    E92000001
#> 4517        2025         Week 12 Year to date  Local authority    E92000001
#> 4518        2025         Week 12 Year to date  Local authority    E92000001
#> 4519        2025         Week 12 Year to date  Local authority    E92000001
#> 4520        2025         Week 12 Year to date  Local authority    E92000001
#> 4521        2025         Week 12 Year to date  Local authority    E92000001
#> 4522        2025         Week 12 Year to date  Local authority    E92000001
#> 4523        2025         Week 12 Year to date  Local authority    E92000001
#> 4524        2025         Week 12 Year to date  Local authority    E92000001
#> 4525        2025         Week 12 Year to date  Local authority    E92000001
#> 4526        2025         Week 12 Year to date  Local authority    E92000001
#> 4527        2025         Week 12 Year to date  Local authority    E92000001
#> 4528        2025         Week 12 Year to date  Local authority    E92000001
#> 4529        2025         Week 12 Year to date  Local authority    E92000001
#> 4530        2025         Week 12 Year to date  Local authority    E92000001
#> 4531        2025         Week 12 Year to date  Local authority    E92000001
#> 4532        2025         Week 12 Year to date  Local authority    E92000001
#> 4533        2025         Week 12 Year to date  Local authority    E92000001
#> 4534        2025         Week 12 Year to date  Local authority    E92000001
#> 4535        2025         Week 12 Year to date  Local authority    E92000001
#> 4536        2025         Week 12 Year to date  Local authority    E92000001
#> 4537        2025         Week 12 Year to date  Local authority    E92000001
#> 4538        2025         Week 12 Year to date  Local authority    E92000001
#> 4539        2025         Week 12 Year to date  Local authority    E92000001
#> 4540        2025         Week 12 Year to date  Local authority    E92000001
#> 4541        2025         Week 12 Year to date  Local authority    E92000001
#> 4542        2025         Week 12 Year to date  Local authority    E92000001
#> 4543        2025         Week 12 Year to date  Local authority    E92000001
#> 4544        2025         Week 12 Year to date  Local authority    E92000001
#> 4545        2025         Week 12 Year to date  Local authority    E92000001
#> 4546        2025         Week 12 Year to date  Local authority    E92000001
#> 4547        2025         Week 12 Year to date  Local authority    E92000001
#> 4548        2025         Week 12 Year to date  Local authority    E92000001
#> 4549        2025         Week 12 Year to date  Local authority    E92000001
#> 4550        2025         Week 12 Year to date  Local authority    E92000001
#> 4551        2025         Week 12 Year to date  Local authority    E92000001
#> 4552        2025         Week 12 Year to date  Local authority    E92000001
#> 4553        2025         Week 12 Year to date  Local authority    E92000001
#> 4554        2025         Week 12 Year to date  Local authority    E92000001
#> 4555        2025         Week 12 Year to date  Local authority    E92000001
#> 4556        2025         Week 12 Year to date  Local authority    E92000001
#> 4557        2025         Week 12 Year to date  Local authority    E92000001
#> 4558        2025         Week 12 Year to date  Local authority    E92000001
#> 4559        2025         Week 12 Year to date  Local authority    E92000001
#> 4560        2025         Week 12 Year to date  Local authority    E92000001
#> 4561        2025         Week 12 Year to date  Local authority    E92000001
#> 4562        2025         Week 12 Year to date  Local authority    E92000001
#> 4563        2025         Week 12 Year to date  Local authority    E92000001
#> 4564        2025         Week 12 Year to date  Local authority    E92000001
#> 4565        2025         Week 12 Year to date  Local authority    E92000001
#> 4566        2025         Week 12 Year to date  Local authority    E92000001
#> 4567        2025         Week 12 Year to date         Regional    E92000001
#> 4568        2025         Week 12 Year to date         Regional    E92000001
#> 4569        2025         Week 12 Year to date         Regional    E92000001
#> 4570        2025         Week 12 Year to date         Regional    E92000001
#> 4571        2025         Week 12 Year to date  Local authority    E92000001
#> 4572        2025         Week 12 Year to date  Local authority    E92000001
#> 4573        2025         Week 12 Year to date  Local authority    E92000001
#> 4574        2025         Week 12 Year to date  Local authority    E92000001
#> 4575        2025         Week 12 Year to date  Local authority    E92000001
#> 4576        2025         Week 12 Year to date  Local authority    E92000001
#> 4577        2025         Week 12 Year to date  Local authority    E92000001
#> 4578        2025         Week 12 Year to date  Local authority    E92000001
#> 4579        2025         Week 12 Year to date  Local authority    E92000001
#> 4580        2025         Week 12 Year to date  Local authority    E92000001
#> 4581        2025         Week 12 Year to date  Local authority    E92000001
#> 4582        2025         Week 12 Year to date  Local authority    E92000001
#> 4583        2025         Week 12 Year to date  Local authority    E92000001
#> 4584        2025         Week 12 Year to date  Local authority    E92000001
#> 4585        2025         Week 12 Year to date  Local authority    E92000001
#> 4586        2025         Week 12 Year to date  Local authority    E92000001
#> 4587        2025         Week 12 Year to date  Local authority    E92000001
#> 4588        2025         Week 12 Year to date  Local authority    E92000001
#> 4589        2025         Week 12 Year to date  Local authority    E92000001
#> 4590        2025         Week 12 Year to date  Local authority    E92000001
#> 4591        2025         Week 12 Year to date  Local authority    E92000001
#> 4592        2025         Week 12 Year to date  Local authority    E92000001
#> 4593        2025         Week 12 Year to date  Local authority    E92000001
#> 4594        2025         Week 12 Year to date  Local authority    E92000001
#> 4595        2025         Week 12 Year to date  Local authority    E92000001
#> 4596        2025         Week 12 Year to date  Local authority    E92000001
#> 4597        2025         Week 12 Year to date  Local authority    E92000001
#> 4598        2025         Week 12 Year to date  Local authority    E92000001
#> 4599        2025         Week 12 Year to date  Local authority    E92000001
#> 4600        2025         Week 12 Year to date  Local authority    E92000001
#> 4601        2025         Week 12 Year to date  Local authority    E92000001
#> 4602        2025         Week 12 Year to date  Local authority    E92000001
#> 4603        2025         Week 12 Year to date  Local authority    E92000001
#> 4604        2025         Week 12 Year to date  Local authority    E92000001
#> 4605        2025         Week 12 Year to date  Local authority    E92000001
#> 4606        2025         Week 12 Year to date  Local authority    E92000001
#> 4607        2025         Week 12 Year to date  Local authority    E92000001
#> 4608        2025         Week 12 Year to date  Local authority    E92000001
#> 4609        2025         Week 12 Year to date  Local authority    E92000001
#> 4610        2025         Week 12 Year to date  Local authority    E92000001
#> 4611        2025         Week 12 Year to date  Local authority    E92000001
#> 4612        2025         Week 12 Year to date  Local authority    E92000001
#> 4613        2025         Week 12 Year to date  Local authority    E92000001
#> 4614        2025         Week 12 Year to date  Local authority    E92000001
#> 4615        2025         Week 12 Year to date  Local authority    E92000001
#> 4616        2025         Week 12 Year to date         Regional    E92000001
#> 4617        2025         Week 12 Year to date         Regional    E92000001
#> 4618        2025         Week 12 Year to date         Regional    E92000001
#> 4619        2025         Week 12 Year to date         Regional    E92000001
#> 4620        2025         Week 12 Year to date  Local authority    E92000001
#> 4621        2025         Week 12 Year to date  Local authority    E92000001
#> 4622        2025         Week 12 Year to date  Local authority    E92000001
#> 4623        2025         Week 12 Year to date  Local authority    E92000001
#> 4624        2025         Week 12 Year to date  Local authority    E92000001
#> 4625        2025         Week 12 Year to date  Local authority    E92000001
#> 4626        2025         Week 12 Year to date  Local authority    E92000001
#> 4627        2025         Week 12 Year to date  Local authority    E92000001
#> 4628        2025         Week 12 Year to date  Local authority    E92000001
#> 4629        2025         Week 12 Year to date  Local authority    E92000001
#> 4630        2025         Week 12 Year to date  Local authority    E92000001
#> 4631        2025         Week 12 Year to date  Local authority    E92000001
#> 4632        2025         Week 12 Year to date  Local authority    E92000001
#> 4633        2025         Week 12 Year to date  Local authority    E92000001
#> 4634        2025         Week 12 Year to date  Local authority    E92000001
#> 4635        2025         Week 12 Year to date  Local authority    E92000001
#> 4636        2025         Week 12 Year to date  Local authority    E92000001
#> 4637        2025         Week 12 Year to date  Local authority    E92000001
#> 4638        2025         Week 12 Year to date  Local authority    E92000001
#> 4639        2025         Week 12 Year to date  Local authority    E92000001
#> 4640        2025         Week 12 Year to date  Local authority    E92000001
#> 4641        2025         Week 12 Year to date  Local authority    E92000001
#> 4642        2025         Week 12 Year to date  Local authority    E92000001
#> 4643        2025         Week 12 Year to date  Local authority    E92000001
#> 4644        2025         Week 12 Year to date  Local authority    E92000001
#> 4645        2025         Week 12 Year to date  Local authority    E92000001
#> 4646        2025         Week 12 Year to date  Local authority    E92000001
#> 4647        2025         Week 12 Year to date  Local authority    E92000001
#> 4648        2025         Week 12 Year to date  Local authority    E92000001
#> 4649        2025         Week 12 Year to date         Regional    E92000001
#> 4650        2025         Week 12 Year to date         Regional    E92000001
#> 4651        2025         Week 12 Year to date         Regional    E92000001
#> 4652        2025         Week 12 Year to date         Regional    E92000001
#> 4653        2025         Week 12 Year to date  Local authority    E92000001
#> 4654        2025         Week 12 Year to date  Local authority    E92000001
#> 4655        2025         Week 12 Year to date  Local authority    E92000001
#> 4656        2025         Week 12 Year to date  Local authority    E92000001
#> 4657        2025         Week 12 Year to date  Local authority    E92000001
#> 4658        2025         Week 12 Year to date  Local authority    E92000001
#> 4659        2025         Week 12 Year to date  Local authority    E92000001
#> 4660        2025         Week 12 Year to date  Local authority    E92000001
#> 4661        2025         Week 12 Year to date  Local authority    E92000001
#> 4662        2025         Week 12 Year to date  Local authority    E92000001
#> 4663        2025         Week 12 Year to date  Local authority    E92000001
#> 4664        2025         Week 12 Year to date  Local authority    E92000001
#> 4665        2025         Week 12 Year to date  Local authority    E92000001
#> 4666        2025         Week 12 Year to date  Local authority    E92000001
#> 4667        2025         Week 12 Year to date  Local authority    E92000001
#> 4668        2025         Week 12 Year to date  Local authority    E92000001
#> 4669        2025         Week 12 Year to date  Local authority    E92000001
#> 4670        2025         Week 12 Year to date  Local authority    E92000001
#> 4671        2025         Week 12 Year to date  Local authority    E92000001
#> 4672        2025         Week 12 Year to date  Local authority    E92000001
#> 4673        2025         Week 12 Year to date  Local authority    E92000001
#> 4674        2025         Week 12 Year to date  Local authority    E92000001
#> 4675        2025         Week 12 Year to date  Local authority    E92000001
#> 4676        2025         Week 12 Year to date  Local authority    E92000001
#> 4677        2025         Week 12 Year to date  Local authority    E92000001
#> 4678        2025         Week 12 Year to date  Local authority    E92000001
#> 4679        2025         Week 12 Year to date  Local authority    E92000001
#> 4680        2025         Week 12 Year to date  Local authority    E92000001
#> 4681        2025         Week 12 Year to date  Local authority    E92000001
#> 4682        2025         Week 12 Year to date  Local authority    E92000001
#> 4683        2025         Week 12 Year to date  Local authority    E92000001
#> 4684        2025         Week 12 Year to date  Local authority    E92000001
#> 4685        2025         Week 12 Year to date  Local authority    E92000001
#> 4686        2025         Week 12 Year to date  Local authority    E92000001
#> 4687        2025         Week 12 Year to date  Local authority    E92000001
#> 4688        2025         Week 12 Year to date  Local authority    E92000001
#> 4689        2025         Week 12 Year to date  Local authority    E92000001
#> 4690        2025         Week 12 Year to date  Local authority    E92000001
#> 4691        2025         Week 12 Year to date  Local authority    E92000001
#> 4692        2025         Week 12 Year to date  Local authority    E92000001
#> 4693        2025         Week 12 Year to date  Local authority    E92000001
#> 4694        2025         Week 12 Year to date  Local authority    E92000001
#> 4695        2025         Week 12 Year to date         Regional    E92000001
#> 4696        2025         Week 12 Year to date         Regional    E92000001
#> 4697        2025         Week 12 Year to date         Regional    E92000001
#> 4698        2025         Week 12 Year to date         Regional    E92000001
#> 4699        2025         Week 12 Year to date  Local authority    E92000001
#> 4700        2025         Week 12 Year to date  Local authority    E92000001
#> 4701        2025         Week 12 Year to date  Local authority    E92000001
#> 4702        2025         Week 12 Year to date  Local authority    E92000001
#> 4703        2025         Week 12 Year to date  Local authority    E92000001
#> 4704        2025         Week 12 Year to date  Local authority    E92000001
#> 4705        2025         Week 12 Year to date  Local authority    E92000001
#> 4706        2025         Week 12 Year to date  Local authority    E92000001
#> 4707        2025         Week 12 Year to date  Local authority    E92000001
#> 4708        2025         Week 12 Year to date  Local authority    E92000001
#> 4709        2025         Week 12 Year to date  Local authority    E92000001
#> 4710        2025         Week 12 Year to date  Local authority    E92000001
#> 4711        2025         Week 12 Year to date  Local authority    E92000001
#> 4712        2025         Week 12 Year to date  Local authority    E92000001
#> 4713        2025         Week 12 Year to date  Local authority    E92000001
#> 4714        2025         Week 12 Year to date  Local authority    E92000001
#> 4715        2025         Week 12 Year to date  Local authority    E92000001
#> 4716        2025         Week 12 Year to date  Local authority    E92000001
#> 4717        2025         Week 12 Year to date  Local authority    E92000001
#> 4718        2025         Week 12 Year to date  Local authority    E92000001
#> 4719        2025         Week 12 Year to date  Local authority    E92000001
#> 4720        2025         Week 12 Year to date  Local authority    E92000001
#> 4721        2025         Week 12 Year to date  Local authority    E92000001
#> 4722        2025         Week 12 Year to date  Local authority    E92000001
#> 4723        2025         Week 12 Year to date  Local authority    E92000001
#> 4724        2025         Week 12 Year to date  Local authority    E92000001
#> 4725        2025         Week 12 Year to date  Local authority    E92000001
#> 4726        2025         Week 12 Year to date  Local authority    E92000001
#> 4727        2025         Week 12 Year to date  Local authority    E92000001
#> 4728        2025         Week 12 Year to date  Local authority    E92000001
#> 4729        2025         Week 12 Year to date  Local authority    E92000001
#> 4730        2025         Week 12 Year to date  Local authority    E92000001
#> 4731        2025         Week 12 Year to date  Local authority    E92000001
#> 4732        2025         Week 12 Year to date         Regional    E92000001
#> 4733        2025         Week 12 Year to date         Regional    E92000001
#> 4734        2025         Week 12 Year to date         Regional    E92000001
#> 4735        2025         Week 12 Year to date         Regional    E92000001
#> 4736        2025         Week 12 Year to date  Local authority    E92000001
#> 4737        2025         Week 12 Year to date  Local authority    E92000001
#> 4738        2025         Week 12 Year to date  Local authority    E92000001
#> 4739        2025         Week 12 Year to date  Local authority    E92000001
#> 4740        2025         Week 12 Year to date  Local authority    E92000001
#> 4741        2025         Week 12 Year to date  Local authority    E92000001
#> 4742        2025         Week 12 Year to date  Local authority    E92000001
#> 4743        2025         Week 12 Year to date  Local authority    E92000001
#> 4744        2025         Week 12 Year to date  Local authority    E92000001
#> 4745        2025         Week 12 Year to date  Local authority    E92000001
#> 4746        2025         Week 12 Year to date  Local authority    E92000001
#> 4747        2025         Week 12 Year to date  Local authority    E92000001
#> 4748        2025         Week 12 Year to date  Local authority    E92000001
#> 4749        2025         Week 12 Year to date  Local authority    E92000001
#> 4750        2025         Week 12 Year to date  Local authority    E92000001
#> 4751        2025         Week 12 Year to date  Local authority    E92000001
#> 4752        2025         Week 12 Year to date  Local authority    E92000001
#> 4753        2025         Week 12 Year to date  Local authority    E92000001
#> 4754        2025         Week 12 Year to date  Local authority    E92000001
#> 4755        2025         Week 12 Year to date  Local authority    E92000001
#> 4756        2025         Week 12 Year to date  Local authority    E92000001
#> 4757        2025         Week 12 Year to date  Local authority    E92000001
#> 4758        2025         Week 12 Year to date  Local authority    E92000001
#> 4759        2025         Week 12 Year to date  Local authority    E92000001
#> 4760        2025         Week 12 Year to date  Local authority    E92000001
#> 4761        2025         Week 12 Year to date  Local authority    E92000001
#> 4762        2025         Week 12 Year to date  Local authority    E92000001
#> 4763        2025         Week 12 Year to date  Local authority    E92000001
#> 4764        2025         Week 12 Year to date  Local authority    E92000001
#> 4765        2025         Week 12 Year to date  Local authority    E92000001
#> 4766        2025         Week 12 Year to date  Local authority    E92000001
#> 4767        2025         Week 12 Year to date  Local authority    E92000001
#> 4768        2025         Week 12 Year to date  Local authority    E92000001
#> 4769        2025         Week 12 Year to date  Local authority    E92000001
#> 4770        2025         Week 12 Year to date  Local authority    E92000001
#> 4771        2025         Week 12 Year to date  Local authority    E92000001
#> 4772        2025         Week 12 Year to date  Local authority    E92000001
#> 4773        2025         Week 12 Year to date  Local authority    E92000001
#> 4774        2025         Week 12 Year to date  Local authority    E92000001
#> 4775        2025         Week 12 Year to date  Local authority    E92000001
#> 4776        2025         Week 12 Year to date  Local authority    E92000001
#> 4777        2025         Week 12 Year to date  Local authority    E92000001
#> 4778        2025         Week 12 Year to date  Local authority    E92000001
#> 4779        2025         Week 12 Year to date  Local authority    E92000001
#> 4780        2025         Week 12 Year to date  Local authority    E92000001
#> 4781        2025         Week 12 Year to date  Local authority    E92000001
#> 4782        2025         Week 12 Year to date  Local authority    E92000001
#> 4783        2025         Week 12 Year to date  Local authority    E92000001
#> 4784        2025         Week 12 Year to date  Local authority    E92000001
#> 4785        2025         Week 12 Year to date  Local authority    E92000001
#> 4786        2025         Week 12 Year to date  Local authority    E92000001
#> 4787        2025         Week 12 Year to date  Local authority    E92000001
#> 4788        2025         Week 12 Year to date  Local authority    E92000001
#> 4789        2025         Week 12 Year to date  Local authority    E92000001
#> 4790        2025         Week 12 Year to date  Local authority    E92000001
#> 4791        2025         Week 12 Year to date  Local authority    E92000001
#> 4792        2025         Week 12 Year to date  Local authority    E92000001
#> 4793        2025         Week 12 Year to date  Local authority    E92000001
#> 4794        2025         Week 12 Year to date  Local authority    E92000001
#> 4795        2025         Week 12 Year to date  Local authority    E92000001
#> 4796        2025         Week 12 Year to date  Local authority    E92000001
#> 4797        2025         Week 12 Year to date  Local authority    E92000001
#> 4798        2025         Week 12 Year to date  Local authority    E92000001
#> 4799        2025         Week 12 Year to date  Local authority    E92000001
#> 4800        2025         Week 12 Year to date  Local authority    E92000001
#> 4801        2025         Week 12 Year to date  Local authority    E92000001
#> 4802        2025         Week 12 Year to date  Local authority    E92000001
#> 4803        2025         Week 12 Year to date  Local authority    E92000001
#> 4804        2025         Week 12 Year to date  Local authority    E92000001
#> 4805        2025         Week 12 Year to date  Local authority    E92000001
#> 4806        2025         Week 12 Year to date  Local authority    E92000001
#> 4807        2025         Week 12 Year to date  Local authority    E92000001
#> 4808        2025         Week 12 Year to date  Local authority    E92000001
#> 4809        2025         Week 12 Year to date  Local authority    E92000001
#> 4810        2025         Week 12 Year to date  Local authority    E92000001
#> 4811        2025         Week 12 Year to date  Local authority    E92000001
#> 4812        2025         Week 12 Year to date  Local authority    E92000001
#> 4813        2025         Week 12 Year to date  Local authority    E92000001
#> 4814        2025         Week 12 Year to date  Local authority    E92000001
#> 4815        2025         Week 12 Year to date  Local authority    E92000001
#> 4816        2025         Week 12 Year to date  Local authority    E92000001
#> 4817        2025         Week 12 Year to date  Local authority    E92000001
#> 4818        2025         Week 12 Year to date  Local authority    E92000001
#> 4819        2025         Week 12 Year to date  Local authority    E92000001
#> 4820        2025         Week 12 Year to date  Local authority    E92000001
#> 4821        2025         Week 12 Year to date  Local authority    E92000001
#> 4822        2025         Week 12 Year to date  Local authority    E92000001
#> 4823        2025         Week 12 Year to date  Local authority    E92000001
#> 4824        2025         Week 12 Year to date  Local authority    E92000001
#> 4825        2025         Week 12 Year to date  Local authority    E92000001
#> 4826        2025         Week 12 Year to date  Local authority    E92000001
#> 4827        2025         Week 12 Year to date  Local authority    E92000001
#> 4828        2025         Week 12 Year to date  Local authority    E92000001
#> 4829        2025         Week 12 Year to date  Local authority    E92000001
#> 4830        2025         Week 12 Year to date  Local authority    E92000001
#> 4831        2025         Week 12 Year to date  Local authority    E92000001
#> 4832        2025         Week 12 Year to date  Local authority    E92000001
#> 4833        2025         Week 12 Year to date         Regional    E92000001
#> 4834        2025         Week 12 Year to date         Regional    E92000001
#> 4835        2025         Week 12 Year to date         Regional    E92000001
#> 4836        2025         Week 12 Year to date         Regional    E92000001
#> 4837        2025         Week 12 Year to date  Local authority    E92000001
#> 4838        2025         Week 12 Year to date  Local authority    E92000001
#> 4839        2025         Week 12 Year to date  Local authority    E92000001
#> 4840        2025         Week 12 Year to date  Local authority    E92000001
#> 4841        2025         Week 12 Year to date  Local authority    E92000001
#> 4842        2025         Week 12 Year to date  Local authority    E92000001
#> 4843        2025         Week 12 Year to date  Local authority    E92000001
#> 4844        2025         Week 12 Year to date  Local authority    E92000001
#> 4845        2025         Week 12 Year to date  Local authority    E92000001
#> 4846        2025         Week 12 Year to date  Local authority    E92000001
#> 4847        2025         Week 12 Year to date  Local authority    E92000001
#> 4848        2025         Week 12 Year to date  Local authority    E92000001
#> 4849        2025         Week 12 Year to date  Local authority    E92000001
#> 4850        2025         Week 12 Year to date  Local authority    E92000001
#> 4851        2025         Week 12 Year to date  Local authority    E92000001
#> 4852        2025         Week 12 Year to date  Local authority    E92000001
#> 4853        2025         Week 12 Year to date  Local authority    E92000001
#> 4854        2025         Week 12 Year to date  Local authority    E92000001
#> 4855        2025         Week 12 Year to date  Local authority    E92000001
#> 4856        2025         Week 12 Year to date  Local authority    E92000001
#> 4857        2025         Week 12 Year to date  Local authority    E92000001
#> 4858        2025         Week 12 Year to date  Local authority    E92000001
#> 4859        2025         Week 12 Year to date  Local authority    E92000001
#> 4860        2025         Week 12 Year to date  Local authority    E92000001
#> 4861        2025         Week 12 Year to date  Local authority    E92000001
#> 4862        2025         Week 12 Year to date  Local authority    E92000001
#> 4863        2025         Week 12 Year to date  Local authority    E92000001
#> 4864        2025         Week 12 Year to date  Local authority    E92000001
#> 4865        2025         Week 12 Year to date  Local authority    E92000001
#> 4866        2025         Week 12 Year to date  Local authority    E92000001
#> 4867        2025         Week 12 Year to date  Local authority    E92000001
#> 4868        2025         Week 12 Year to date  Local authority    E92000001
#> 4869        2025         Week 12 Year to date  Local authority    E92000001
#> 4870        2025         Week 12 Year to date  Local authority    E92000001
#> 4871        2025         Week 12 Year to date  Local authority    E92000001
#> 4872        2025         Week 12 Year to date  Local authority    E92000001
#> 4873        2025         Week 12 Year to date  Local authority    E92000001
#> 4874        2025         Week 12 Year to date  Local authority    E92000001
#> 4875        2025         Week 12 Year to date  Local authority    E92000001
#> 4876        2025         Week 12 Year to date  Local authority    E92000001
#> 4877        2025         Week 12 Year to date  Local authority    E92000001
#> 4878        2025         Week 12 Year to date  Local authority    E92000001
#> 4879        2025         Week 12 Year to date  Local authority    E92000001
#> 4880        2025         Week 12 Year to date  Local authority    E92000001
#> 4881        2025         Week 12 Year to date  Local authority    E92000001
#> 4882        2025         Week 12 Year to date  Local authority    E92000001
#> 4883        2025         Week 12 Year to date  Local authority    E92000001
#> 4884        2025         Week 12 Year to date  Local authority    E92000001
#> 4885        2025         Week 12 Year to date  Local authority    E92000001
#> 4886        2025         Week 12 Year to date  Local authority    E92000001
#> 4887        2025         Week 12 Year to date  Local authority    E92000001
#> 4888        2025         Week 12 Year to date  Local authority    E92000001
#> 4889        2025         Week 12 Year to date  Local authority    E92000001
#> 4890        2025         Week 12 Year to date  Local authority    E92000001
#> 4891        2025         Week 12 Year to date  Local authority    E92000001
#> 4892        2025         Week 12 Year to date  Local authority    E92000001
#> 4893        2025         Week 12 Year to date  Local authority    E92000001
#> 4894        2025         Week 12 Year to date         Regional    E92000001
#> 4895        2025         Week 12 Year to date         Regional    E92000001
#> 4896        2025         Week 12 Year to date         Regional    E92000001
#> 4897        2025         Week 12 Year to date         Regional    E92000001
#> 4898        2025         Week 12 Year to date  Local authority    E92000001
#> 4899        2025         Week 12 Year to date  Local authority    E92000001
#> 4900        2025         Week 12 Year to date  Local authority    E92000001
#> 4901        2025         Week 12 Year to date  Local authority    E92000001
#> 4902        2025         Week 12 Year to date  Local authority    E92000001
#> 4903        2025         Week 12 Year to date  Local authority    E92000001
#> 4904        2025         Week 12 Year to date  Local authority    E92000001
#> 4905        2025         Week 12 Year to date  Local authority    E92000001
#> 4906        2025         Week 12 Year to date  Local authority    E92000001
#> 4907        2025         Week 12 Year to date  Local authority    E92000001
#> 4908        2025         Week 12 Year to date  Local authority    E92000001
#> 4909        2025         Week 12 Year to date  Local authority    E92000001
#> 4910        2025         Week 12 Year to date  Local authority    E92000001
#> 4911        2025         Week 12 Year to date  Local authority    E92000001
#> 4912        2025         Week 12 Year to date  Local authority    E92000001
#> 4913        2025         Week 12 Year to date  Local authority    E92000001
#> 4914        2025         Week 12 Year to date  Local authority    E92000001
#> 4915        2025         Week 12 Year to date  Local authority    E92000001
#> 4916        2025         Week 12 Year to date  Local authority    E92000001
#> 4917        2025         Week 12 Year to date  Local authority    E92000001
#> 4918        2025         Week 12 Year to date  Local authority    E92000001
#> 4919        2025         Week 12 Year to date  Local authority    E92000001
#> 4920        2025         Week 12 Year to date  Local authority    E92000001
#> 4921        2025         Week 12 Year to date  Local authority    E92000001
#> 4922        2025         Week 12 Year to date  Local authority    E92000001
#> 4923        2025         Week 12 Year to date  Local authority    E92000001
#> 4924        2025         Week 12 Year to date  Local authority    E92000001
#> 4925        2025         Week 12 Year to date  Local authority    E92000001
#> 4926        2025         Week 12 Year to date  Local authority    E92000001
#> 4927        2025         Week 12 Year to date  Local authority    E92000001
#> 4928        2025         Week 12 Year to date  Local authority    E92000001
#> 4929        2025         Week 12 Year to date  Local authority    E92000001
#> 4930        2025         Week 12 Year to date  Local authority    E92000001
#> 4931        2025         Week 12 Year to date  Local authority    E92000001
#> 4932        2025         Week 12 Year to date  Local authority    E92000001
#> 4933        2025         Week 12 Year to date  Local authority    E92000001
#> 4934        2025         Week 12 Year to date  Local authority    E92000001
#> 4935        2025         Week 12 Year to date  Local authority    E92000001
#> 4936        2025         Week 12 Year to date  Local authority    E92000001
#> 4937        2025         Week 12 Year to date  Local authority    E92000001
#> 4938        2025         Week 12 Year to date  Local authority    E92000001
#> 4939        2025         Week 12 Year to date  Local authority    E92000001
#> 4940        2025         Week 12 Year to date  Local authority    E92000001
#> 4941        2025         Week 10 Year to date         National    E92000001
#> 4942        2025         Week 10 Year to date         National    E92000001
#> 4943        2025         Week 10 Year to date         National    E92000001
#> 4944        2025         Week 10 Year to date         National    E92000001
#> 4945        2025         Week 10 Year to date         Regional    E92000001
#> 4946        2025         Week 10 Year to date         Regional    E92000001
#> 4947        2025         Week 10 Year to date         Regional    E92000001
#> 4948        2025         Week 10 Year to date         Regional    E92000001
#> 4949        2025         Week 10 Year to date  Local authority    E92000001
#> 4950        2025         Week 10 Year to date  Local authority    E92000001
#> 4951        2025         Week 10 Year to date  Local authority    E92000001
#> 4952        2025         Week 10 Year to date  Local authority    E92000001
#> 4953        2025         Week 10 Year to date  Local authority    E92000001
#> 4954        2025         Week 10 Year to date  Local authority    E92000001
#> 4955        2025         Week 10 Year to date  Local authority    E92000001
#> 4956        2025         Week 10 Year to date  Local authority    E92000001
#> 4957        2025         Week 10 Year to date  Local authority    E92000001
#> 4958        2025         Week 10 Year to date  Local authority    E92000001
#> 4959        2025         Week 10 Year to date  Local authority    E92000001
#> 4960        2025         Week 10 Year to date  Local authority    E92000001
#> 4961        2025         Week 10 Year to date  Local authority    E92000001
#> 4962        2025         Week 10 Year to date  Local authority    E92000001
#> 4963        2025         Week 10 Year to date  Local authority    E92000001
#> 4964        2025         Week 10 Year to date  Local authority    E92000001
#> 4965        2025         Week 10 Year to date  Local authority    E92000001
#> 4966        2025         Week 10 Year to date  Local authority    E92000001
#> 4967        2025         Week 10 Year to date  Local authority    E92000001
#> 4968        2025         Week 10 Year to date  Local authority    E92000001
#> 4969        2025         Week 10 Year to date  Local authority    E92000001
#> 4970        2025         Week 10 Year to date  Local authority    E92000001
#> 4971        2025         Week 10 Year to date  Local authority    E92000001
#> 4972        2025         Week 10 Year to date  Local authority    E92000001
#> 4973        2025         Week 10 Year to date  Local authority    E92000001
#> 4974        2025         Week 10 Year to date  Local authority    E92000001
#> 4975        2025         Week 10 Year to date  Local authority    E92000001
#> 4976        2025         Week 10 Year to date  Local authority    E92000001
#> 4977        2025         Week 10 Year to date  Local authority    E92000001
#> 4978        2025         Week 10 Year to date  Local authority    E92000001
#> 4979        2025         Week 10 Year to date  Local authority    E92000001
#> 4980        2025         Week 10 Year to date  Local authority    E92000001
#> 4981        2025         Week 10 Year to date  Local authority    E92000001
#> 4982        2025         Week 10 Year to date  Local authority    E92000001
#> 4983        2025         Week 10 Year to date  Local authority    E92000001
#> 4984        2025         Week 10 Year to date  Local authority    E92000001
#> 4985        2025         Week 10 Year to date         Regional    E92000001
#> 4986        2025         Week 10 Year to date         Regional    E92000001
#> 4987        2025         Week 10 Year to date         Regional    E92000001
#> 4988        2025         Week 10 Year to date         Regional    E92000001
#> 4989        2025         Week 10 Year to date  Local authority    E92000001
#> 4990        2025         Week 10 Year to date  Local authority    E92000001
#> 4991        2025         Week 10 Year to date  Local authority    E92000001
#> 4992        2025         Week 10 Year to date  Local authority    E92000001
#> 4993        2025         Week 10 Year to date  Local authority    E92000001
#> 4994        2025         Week 10 Year to date  Local authority    E92000001
#> 4995        2025         Week 10 Year to date  Local authority    E92000001
#> 4996        2025         Week 10 Year to date  Local authority    E92000001
#> 4997        2025         Week 10 Year to date  Local authority    E92000001
#> 4998        2025         Week 10 Year to date  Local authority    E92000001
#> 4999        2025         Week 10 Year to date  Local authority    E92000001
#> 5000        2025         Week 10 Year to date  Local authority    E92000001
#> 5001        2025         Week 10 Year to date  Local authority    E92000001
#> 5002        2025         Week 10 Year to date  Local authority    E92000001
#> 5003        2025         Week 10 Year to date  Local authority    E92000001
#> 5004        2025         Week 10 Year to date  Local authority    E92000001
#> 5005        2025         Week 10 Year to date  Local authority    E92000001
#> 5006        2025         Week 10 Year to date  Local authority    E92000001
#> 5007        2025         Week 10 Year to date  Local authority    E92000001
#> 5008        2025         Week 10 Year to date  Local authority    E92000001
#> 5009        2025         Week 10 Year to date  Local authority    E92000001
#> 5010        2025         Week 10 Year to date  Local authority    E92000001
#> 5011        2025         Week 10 Year to date  Local authority    E92000001
#> 5012        2025         Week 10 Year to date  Local authority    E92000001
#> 5013        2025         Week 10 Year to date  Local authority    E92000001
#> 5014        2025         Week 10 Year to date  Local authority    E92000001
#> 5015        2025         Week 10 Year to date  Local authority    E92000001
#> 5016        2025         Week 10 Year to date  Local authority    E92000001
#> 5017        2025         Week 10 Year to date  Local authority    E92000001
#> 5018        2025         Week 10 Year to date  Local authority    E92000001
#> 5019        2025         Week 10 Year to date  Local authority    E92000001
#> 5020        2025         Week 10 Year to date  Local authority    E92000001
#> 5021        2025         Week 10 Year to date  Local authority    E92000001
#> 5022        2025         Week 10 Year to date  Local authority    E92000001
#> 5023        2025         Week 10 Year to date  Local authority    E92000001
#> 5024        2025         Week 10 Year to date  Local authority    E92000001
#> 5025        2025         Week 10 Year to date  Local authority    E92000001
#> 5026        2025         Week 10 Year to date  Local authority    E92000001
#> 5027        2025         Week 10 Year to date  Local authority    E92000001
#> 5028        2025         Week 10 Year to date  Local authority    E92000001
#> 5029        2025         Week 10 Year to date  Local authority    E92000001
#> 5030        2025         Week 10 Year to date  Local authority    E92000001
#> 5031        2025         Week 10 Year to date  Local authority    E92000001
#> 5032        2025         Week 10 Year to date  Local authority    E92000001
#> 5033        2025         Week 10 Year to date  Local authority    E92000001
#> 5034        2025         Week 10 Year to date  Local authority    E92000001
#> 5035        2025         Week 10 Year to date  Local authority    E92000001
#> 5036        2025         Week 10 Year to date  Local authority    E92000001
#> 5037        2025         Week 10 Year to date  Local authority    E92000001
#> 5038        2025         Week 10 Year to date  Local authority    E92000001
#> 5039        2025         Week 10 Year to date  Local authority    E92000001
#> 5040        2025         Week 10 Year to date  Local authority    E92000001
#> 5041        2025         Week 10 Year to date  Local authority    E92000001
#> 5042        2025         Week 10 Year to date  Local authority    E92000001
#> 5043        2025         Week 10 Year to date  Local authority    E92000001
#> 5044        2025         Week 10 Year to date  Local authority    E92000001
#> 5045        2025         Week 10 Year to date  Local authority    E92000001
#> 5046        2025         Week 10 Year to date  Local authority    E92000001
#> 5047        2025         Week 10 Year to date  Local authority    E92000001
#> 5048        2025         Week 10 Year to date  Local authority    E92000001
#> 5049        2025         Week 10 Year to date  Local authority    E92000001
#> 5050        2025         Week 10 Year to date  Local authority    E92000001
#> 5051        2025         Week 10 Year to date  Local authority    E92000001
#> 5052        2025         Week 10 Year to date  Local authority    E92000001
#> 5053        2025         Week 10 Year to date  Local authority    E92000001
#> 5054        2025         Week 10 Year to date  Local authority    E92000001
#> 5055        2025         Week 10 Year to date  Local authority    E92000001
#> 5056        2025         Week 10 Year to date  Local authority    E92000001
#> 5057        2025         Week 10 Year to date  Local authority    E92000001
#> 5058        2025         Week 10 Year to date  Local authority    E92000001
#> 5059        2025         Week 10 Year to date  Local authority    E92000001
#> 5060        2025         Week 10 Year to date  Local authority    E92000001
#> 5061        2025         Week 10 Year to date         Regional    E92000001
#> 5062        2025         Week 10 Year to date         Regional    E92000001
#> 5063        2025         Week 10 Year to date         Regional    E92000001
#> 5064        2025         Week 10 Year to date         Regional    E92000001
#> 5065        2025         Week 10 Year to date  Local authority    E92000001
#> 5066        2025         Week 10 Year to date  Local authority    E92000001
#> 5067        2025         Week 10 Year to date  Local authority    E92000001
#> 5068        2025         Week 10 Year to date  Local authority    E92000001
#> 5069        2025         Week 10 Year to date  Local authority    E92000001
#> 5070        2025         Week 10 Year to date  Local authority    E92000001
#> 5071        2025         Week 10 Year to date  Local authority    E92000001
#> 5072        2025         Week 10 Year to date  Local authority    E92000001
#> 5073        2025         Week 10 Year to date  Local authority    E92000001
#> 5074        2025         Week 10 Year to date  Local authority    E92000001
#> 5075        2025         Week 10 Year to date  Local authority    E92000001
#> 5076        2025         Week 10 Year to date  Local authority    E92000001
#> 5077        2025         Week 10 Year to date  Local authority    E92000001
#> 5078        2025         Week 10 Year to date  Local authority    E92000001
#> 5079        2025         Week 10 Year to date  Local authority    E92000001
#> 5080        2025         Week 10 Year to date  Local authority    E92000001
#> 5081        2025         Week 10 Year to date  Local authority    E92000001
#> 5082        2025         Week 10 Year to date  Local authority    E92000001
#> 5083        2025         Week 10 Year to date  Local authority    E92000001
#> 5084        2025         Week 10 Year to date  Local authority    E92000001
#> 5085        2025         Week 10 Year to date  Local authority    E92000001
#> 5086        2025         Week 10 Year to date  Local authority    E92000001
#> 5087        2025         Week 10 Year to date  Local authority    E92000001
#> 5088        2025         Week 10 Year to date  Local authority    E92000001
#> 5089        2025         Week 10 Year to date  Local authority    E92000001
#> 5090        2025         Week 10 Year to date  Local authority    E92000001
#> 5091        2025         Week 10 Year to date  Local authority    E92000001
#> 5092        2025         Week 10 Year to date  Local authority    E92000001
#> 5093        2025         Week 10 Year to date  Local authority    E92000001
#> 5094        2025         Week 10 Year to date  Local authority    E92000001
#> 5095        2025         Week 10 Year to date  Local authority    E92000001
#> 5096        2025         Week 10 Year to date  Local authority    E92000001
#> 5097        2025         Week 10 Year to date  Local authority    E92000001
#> 5098        2025         Week 10 Year to date  Local authority    E92000001
#> 5099        2025         Week 10 Year to date  Local authority    E92000001
#> 5100        2025         Week 10 Year to date  Local authority    E92000001
#> 5101        2025         Week 10 Year to date  Local authority    E92000001
#> 5102        2025         Week 10 Year to date  Local authority    E92000001
#> 5103        2025         Week 10 Year to date  Local authority    E92000001
#> 5104        2025         Week 10 Year to date  Local authority    E92000001
#> 5105        2025         Week 10 Year to date  Local authority    E92000001
#> 5106        2025         Week 10 Year to date  Local authority    E92000001
#> 5107        2025         Week 10 Year to date  Local authority    E92000001
#> 5108        2025         Week 10 Year to date  Local authority    E92000001
#> 5109        2025         Week 10 Year to date  Local authority    E92000001
#> 5110        2025         Week 10 Year to date         Regional    E92000001
#> 5111        2025         Week 10 Year to date         Regional    E92000001
#> 5112        2025         Week 10 Year to date         Regional    E92000001
#> 5113        2025         Week 10 Year to date         Regional    E92000001
#> 5114        2025         Week 10 Year to date  Local authority    E92000001
#> 5115        2025         Week 10 Year to date  Local authority    E92000001
#> 5116        2025         Week 10 Year to date  Local authority    E92000001
#> 5117        2025         Week 10 Year to date  Local authority    E92000001
#> 5118        2025         Week 10 Year to date  Local authority    E92000001
#> 5119        2025         Week 10 Year to date  Local authority    E92000001
#> 5120        2025         Week 10 Year to date  Local authority    E92000001
#> 5121        2025         Week 10 Year to date  Local authority    E92000001
#> 5122        2025         Week 10 Year to date  Local authority    E92000001
#> 5123        2025         Week 10 Year to date  Local authority    E92000001
#> 5124        2025         Week 10 Year to date  Local authority    E92000001
#> 5125        2025         Week 10 Year to date  Local authority    E92000001
#> 5126        2025         Week 10 Year to date  Local authority    E92000001
#> 5127        2025         Week 10 Year to date  Local authority    E92000001
#> 5128        2025         Week 10 Year to date  Local authority    E92000001
#> 5129        2025         Week 10 Year to date  Local authority    E92000001
#> 5130        2025         Week 10 Year to date  Local authority    E92000001
#> 5131        2025         Week 10 Year to date  Local authority    E92000001
#> 5132        2025         Week 10 Year to date  Local authority    E92000001
#> 5133        2025         Week 10 Year to date  Local authority    E92000001
#> 5134        2025         Week 10 Year to date  Local authority    E92000001
#> 5135        2025         Week 10 Year to date  Local authority    E92000001
#> 5136        2025         Week 10 Year to date  Local authority    E92000001
#> 5137        2025         Week 10 Year to date  Local authority    E92000001
#> 5138        2025         Week 10 Year to date  Local authority    E92000001
#> 5139        2025         Week 10 Year to date  Local authority    E92000001
#> 5140        2025         Week 10 Year to date  Local authority    E92000001
#> 5141        2025         Week 10 Year to date  Local authority    E92000001
#> 5142        2025         Week 10 Year to date  Local authority    E92000001
#> 5143        2025         Week 10 Year to date         Regional    E92000001
#> 5144        2025         Week 10 Year to date         Regional    E92000001
#> 5145        2025         Week 10 Year to date         Regional    E92000001
#> 5146        2025         Week 10 Year to date         Regional    E92000001
#> 5147        2025         Week 10 Year to date  Local authority    E92000001
#> 5148        2025         Week 10 Year to date  Local authority    E92000001
#> 5149        2025         Week 10 Year to date  Local authority    E92000001
#> 5150        2025         Week 10 Year to date  Local authority    E92000001
#> 5151        2025         Week 10 Year to date  Local authority    E92000001
#> 5152        2025         Week 10 Year to date  Local authority    E92000001
#> 5153        2025         Week 10 Year to date  Local authority    E92000001
#> 5154        2025         Week 10 Year to date  Local authority    E92000001
#> 5155        2025         Week 10 Year to date  Local authority    E92000001
#> 5156        2025         Week 10 Year to date  Local authority    E92000001
#> 5157        2025         Week 10 Year to date  Local authority    E92000001
#> 5158        2025         Week 10 Year to date  Local authority    E92000001
#> 5159        2025         Week 10 Year to date  Local authority    E92000001
#> 5160        2025         Week 10 Year to date  Local authority    E92000001
#> 5161        2025         Week 10 Year to date  Local authority    E92000001
#> 5162        2025         Week 10 Year to date  Local authority    E92000001
#> 5163        2025         Week 10 Year to date  Local authority    E92000001
#> 5164        2025         Week 10 Year to date  Local authority    E92000001
#> 5165        2025         Week 10 Year to date  Local authority    E92000001
#> 5166        2025         Week 10 Year to date  Local authority    E92000001
#> 5167        2025         Week 10 Year to date  Local authority    E92000001
#> 5168        2025         Week 10 Year to date  Local authority    E92000001
#> 5169        2025         Week 10 Year to date  Local authority    E92000001
#> 5170        2025         Week 10 Year to date  Local authority    E92000001
#> 5171        2025         Week 10 Year to date  Local authority    E92000001
#> 5172        2025         Week 10 Year to date  Local authority    E92000001
#> 5173        2025         Week 10 Year to date  Local authority    E92000001
#> 5174        2025         Week 10 Year to date  Local authority    E92000001
#> 5175        2025         Week 10 Year to date  Local authority    E92000001
#> 5176        2025         Week 10 Year to date  Local authority    E92000001
#> 5177        2025         Week 10 Year to date  Local authority    E92000001
#> 5178        2025         Week 10 Year to date  Local authority    E92000001
#> 5179        2025         Week 10 Year to date  Local authority    E92000001
#> 5180        2025         Week 10 Year to date  Local authority    E92000001
#> 5181        2025         Week 10 Year to date  Local authority    E92000001
#> 5182        2025         Week 10 Year to date  Local authority    E92000001
#> 5183        2025         Week 10 Year to date  Local authority    E92000001
#> 5184        2025         Week 10 Year to date  Local authority    E92000001
#> 5185        2025         Week 10 Year to date  Local authority    E92000001
#> 5186        2025         Week 10 Year to date  Local authority    E92000001
#> 5187        2025         Week 10 Year to date  Local authority    E92000001
#> 5188        2025         Week 10 Year to date  Local authority    E92000001
#> 5189        2025         Week 10 Year to date         Regional    E92000001
#> 5190        2025         Week 10 Year to date         Regional    E92000001
#> 5191        2025         Week 10 Year to date         Regional    E92000001
#> 5192        2025         Week 10 Year to date         Regional    E92000001
#> 5193        2025         Week 10 Year to date  Local authority    E92000001
#> 5194        2025         Week 10 Year to date  Local authority    E92000001
#> 5195        2025         Week 10 Year to date  Local authority    E92000001
#> 5196        2025         Week 10 Year to date  Local authority    E92000001
#> 5197        2025         Week 10 Year to date  Local authority    E92000001
#> 5198        2025         Week 10 Year to date  Local authority    E92000001
#> 5199        2025         Week 10 Year to date  Local authority    E92000001
#> 5200        2025         Week 10 Year to date  Local authority    E92000001
#> 5201        2025         Week 10 Year to date  Local authority    E92000001
#> 5202        2025         Week 10 Year to date  Local authority    E92000001
#> 5203        2025         Week 10 Year to date  Local authority    E92000001
#> 5204        2025         Week 10 Year to date  Local authority    E92000001
#> 5205        2025         Week 10 Year to date  Local authority    E92000001
#> 5206        2025         Week 10 Year to date  Local authority    E92000001
#> 5207        2025         Week 10 Year to date  Local authority    E92000001
#> 5208        2025         Week 10 Year to date  Local authority    E92000001
#> 5209        2025         Week 10 Year to date  Local authority    E92000001
#> 5210        2025         Week 10 Year to date  Local authority    E92000001
#> 5211        2025         Week 10 Year to date  Local authority    E92000001
#> 5212        2025         Week 10 Year to date  Local authority    E92000001
#> 5213        2025         Week 10 Year to date  Local authority    E92000001
#> 5214        2025         Week 10 Year to date  Local authority    E92000001
#> 5215        2025         Week 10 Year to date  Local authority    E92000001
#> 5216        2025         Week 10 Year to date  Local authority    E92000001
#> 5217        2025         Week 10 Year to date  Local authority    E92000001
#> 5218        2025         Week 10 Year to date  Local authority    E92000001
#> 5219        2025         Week 10 Year to date  Local authority    E92000001
#> 5220        2025         Week 10 Year to date  Local authority    E92000001
#> 5221        2025         Week 10 Year to date  Local authority    E92000001
#> 5222        2025         Week 10 Year to date  Local authority    E92000001
#> 5223        2025         Week 10 Year to date  Local authority    E92000001
#> 5224        2025         Week 10 Year to date  Local authority    E92000001
#> 5225        2025         Week 10 Year to date  Local authority    E92000001
#> 5226        2025         Week 10 Year to date         Regional    E92000001
#> 5227        2025         Week 10 Year to date         Regional    E92000001
#> 5228        2025         Week 10 Year to date         Regional    E92000001
#> 5229        2025         Week 10 Year to date         Regional    E92000001
#> 5230        2025         Week 10 Year to date  Local authority    E92000001
#> 5231        2025         Week 10 Year to date  Local authority    E92000001
#> 5232        2025         Week 10 Year to date  Local authority    E92000001
#> 5233        2025         Week 10 Year to date  Local authority    E92000001
#> 5234        2025         Week 10 Year to date  Local authority    E92000001
#> 5235        2025         Week 10 Year to date  Local authority    E92000001
#> 5236        2025         Week 10 Year to date  Local authority    E92000001
#> 5237        2025         Week 10 Year to date  Local authority    E92000001
#> 5238        2025         Week 10 Year to date  Local authority    E92000001
#> 5239        2025         Week 10 Year to date  Local authority    E92000001
#> 5240        2025         Week 10 Year to date  Local authority    E92000001
#> 5241        2025         Week 10 Year to date  Local authority    E92000001
#> 5242        2025         Week 10 Year to date  Local authority    E92000001
#> 5243        2025         Week 10 Year to date  Local authority    E92000001
#> 5244        2025         Week 10 Year to date  Local authority    E92000001
#> 5245        2025         Week 10 Year to date  Local authority    E92000001
#> 5246        2025         Week 10 Year to date  Local authority    E92000001
#> 5247        2025         Week 10 Year to date  Local authority    E92000001
#> 5248        2025         Week 10 Year to date  Local authority    E92000001
#> 5249        2025         Week 10 Year to date  Local authority    E92000001
#> 5250        2025         Week 10 Year to date  Local authority    E92000001
#> 5251        2025         Week 10 Year to date  Local authority    E92000001
#> 5252        2025         Week 10 Year to date  Local authority    E92000001
#> 5253        2025         Week 10 Year to date  Local authority    E92000001
#> 5254        2025         Week 10 Year to date  Local authority    E92000001
#> 5255        2025         Week 10 Year to date  Local authority    E92000001
#> 5256        2025         Week 10 Year to date  Local authority    E92000001
#> 5257        2025         Week 10 Year to date  Local authority    E92000001
#> 5258        2025         Week 10 Year to date  Local authority    E92000001
#> 5259        2025         Week 10 Year to date  Local authority    E92000001
#> 5260        2025         Week 10 Year to date  Local authority    E92000001
#> 5261        2025         Week 10 Year to date  Local authority    E92000001
#> 5262        2025         Week 10 Year to date  Local authority    E92000001
#> 5263        2025         Week 10 Year to date  Local authority    E92000001
#> 5264        2025         Week 10 Year to date  Local authority    E92000001
#> 5265        2025         Week 10 Year to date  Local authority    E92000001
#> 5266        2025         Week 10 Year to date  Local authority    E92000001
#> 5267        2025         Week 10 Year to date  Local authority    E92000001
#> 5268        2025         Week 10 Year to date  Local authority    E92000001
#> 5269        2025         Week 10 Year to date  Local authority    E92000001
#> 5270        2025         Week 10 Year to date  Local authority    E92000001
#> 5271        2025         Week 10 Year to date  Local authority    E92000001
#> 5272        2025         Week 10 Year to date  Local authority    E92000001
#> 5273        2025         Week 10 Year to date  Local authority    E92000001
#> 5274        2025         Week 10 Year to date  Local authority    E92000001
#> 5275        2025         Week 10 Year to date  Local authority    E92000001
#> 5276        2025         Week 10 Year to date  Local authority    E92000001
#> 5277        2025         Week 10 Year to date  Local authority    E92000001
#> 5278        2025         Week 10 Year to date  Local authority    E92000001
#> 5279        2025         Week 10 Year to date  Local authority    E92000001
#> 5280        2025         Week 10 Year to date  Local authority    E92000001
#> 5281        2025         Week 10 Year to date  Local authority    E92000001
#> 5282        2025         Week 10 Year to date  Local authority    E92000001
#> 5283        2025         Week 10 Year to date  Local authority    E92000001
#> 5284        2025         Week 10 Year to date  Local authority    E92000001
#> 5285        2025         Week 10 Year to date  Local authority    E92000001
#> 5286        2025         Week 10 Year to date  Local authority    E92000001
#> 5287        2025         Week 10 Year to date  Local authority    E92000001
#> 5288        2025         Week 10 Year to date  Local authority    E92000001
#> 5289        2025         Week 10 Year to date  Local authority    E92000001
#> 5290        2025         Week 10 Year to date  Local authority    E92000001
#> 5291        2025         Week 10 Year to date  Local authority    E92000001
#> 5292        2025         Week 10 Year to date  Local authority    E92000001
#> 5293        2025         Week 10 Year to date  Local authority    E92000001
#> 5294        2025         Week 10 Year to date  Local authority    E92000001
#> 5295        2025         Week 10 Year to date  Local authority    E92000001
#> 5296        2025         Week 10 Year to date  Local authority    E92000001
#> 5297        2025         Week 10 Year to date  Local authority    E92000001
#> 5298        2025         Week 10 Year to date  Local authority    E92000001
#> 5299        2025         Week 10 Year to date  Local authority    E92000001
#> 5300        2025         Week 10 Year to date  Local authority    E92000001
#> 5301        2025         Week 10 Year to date  Local authority    E92000001
#> 5302        2025         Week 10 Year to date  Local authority    E92000001
#> 5303        2025         Week 10 Year to date  Local authority    E92000001
#> 5304        2025         Week 10 Year to date  Local authority    E92000001
#> 5305        2025         Week 10 Year to date  Local authority    E92000001
#> 5306        2025         Week 10 Year to date  Local authority    E92000001
#> 5307        2025         Week 10 Year to date  Local authority    E92000001
#> 5308        2025         Week 10 Year to date  Local authority    E92000001
#> 5309        2025         Week 10 Year to date  Local authority    E92000001
#> 5310        2025         Week 10 Year to date  Local authority    E92000001
#> 5311        2025         Week 10 Year to date  Local authority    E92000001
#> 5312        2025         Week 10 Year to date  Local authority    E92000001
#> 5313        2025         Week 10 Year to date  Local authority    E92000001
#> 5314        2025         Week 10 Year to date  Local authority    E92000001
#> 5315        2025         Week 10 Year to date  Local authority    E92000001
#> 5316        2025         Week 10 Year to date  Local authority    E92000001
#> 5317        2025         Week 10 Year to date  Local authority    E92000001
#> 5318        2025         Week 10 Year to date  Local authority    E92000001
#> 5319        2025         Week 10 Year to date  Local authority    E92000001
#> 5320        2025         Week 10 Year to date  Local authority    E92000001
#> 5321        2025         Week 10 Year to date  Local authority    E92000001
#> 5322        2025         Week 10 Year to date  Local authority    E92000001
#> 5323        2025         Week 10 Year to date  Local authority    E92000001
#> 5324        2025         Week 10 Year to date  Local authority    E92000001
#> 5325        2025         Week 10 Year to date  Local authority    E92000001
#> 5326        2025         Week 10 Year to date  Local authority    E92000001
#> 5327        2025         Week 10 Year to date         Regional    E92000001
#> 5328        2025         Week 10 Year to date         Regional    E92000001
#> 5329        2025         Week 10 Year to date         Regional    E92000001
#> 5330        2025         Week 10 Year to date         Regional    E92000001
#> 5331        2025         Week 10 Year to date  Local authority    E92000001
#> 5332        2025         Week 10 Year to date  Local authority    E92000001
#> 5333        2025         Week 10 Year to date  Local authority    E92000001
#> 5334        2025         Week 10 Year to date  Local authority    E92000001
#> 5335        2025         Week 10 Year to date  Local authority    E92000001
#> 5336        2025         Week 10 Year to date  Local authority    E92000001
#> 5337        2025         Week 10 Year to date  Local authority    E92000001
#> 5338        2025         Week 10 Year to date  Local authority    E92000001
#> 5339        2025         Week 10 Year to date  Local authority    E92000001
#> 5340        2025         Week 10 Year to date  Local authority    E92000001
#> 5341        2025         Week 10 Year to date  Local authority    E92000001
#> 5342        2025         Week 10 Year to date  Local authority    E92000001
#> 5343        2025         Week 10 Year to date  Local authority    E92000001
#> 5344        2025         Week 10 Year to date  Local authority    E92000001
#> 5345        2025         Week 10 Year to date  Local authority    E92000001
#> 5346        2025         Week 10 Year to date  Local authority    E92000001
#> 5347        2025         Week 10 Year to date  Local authority    E92000001
#> 5348        2025         Week 10 Year to date  Local authority    E92000001
#> 5349        2025         Week 10 Year to date  Local authority    E92000001
#> 5350        2025         Week 10 Year to date  Local authority    E92000001
#> 5351        2025         Week 10 Year to date  Local authority    E92000001
#> 5352        2025         Week 10 Year to date  Local authority    E92000001
#> 5353        2025         Week 10 Year to date  Local authority    E92000001
#> 5354        2025         Week 10 Year to date  Local authority    E92000001
#> 5355        2025         Week 10 Year to date  Local authority    E92000001
#> 5356        2025         Week 10 Year to date  Local authority    E92000001
#> 5357        2025         Week 10 Year to date  Local authority    E92000001
#> 5358        2025         Week 10 Year to date  Local authority    E92000001
#> 5359        2025         Week 10 Year to date  Local authority    E92000001
#> 5360        2025         Week 10 Year to date  Local authority    E92000001
#> 5361        2025         Week 10 Year to date  Local authority    E92000001
#> 5362        2025         Week 10 Year to date  Local authority    E92000001
#> 5363        2025         Week 10 Year to date  Local authority    E92000001
#> 5364        2025         Week 10 Year to date  Local authority    E92000001
#> 5365        2025         Week 10 Year to date  Local authority    E92000001
#> 5366        2025         Week 10 Year to date  Local authority    E92000001
#> 5367        2025         Week 10 Year to date  Local authority    E92000001
#> 5368        2025         Week 10 Year to date  Local authority    E92000001
#> 5369        2025         Week 10 Year to date  Local authority    E92000001
#> 5370        2025         Week 10 Year to date  Local authority    E92000001
#> 5371        2025         Week 10 Year to date  Local authority    E92000001
#> 5372        2025         Week 10 Year to date  Local authority    E92000001
#> 5373        2025         Week 10 Year to date  Local authority    E92000001
#> 5374        2025         Week 10 Year to date  Local authority    E92000001
#> 5375        2025         Week 10 Year to date  Local authority    E92000001
#> 5376        2025         Week 10 Year to date  Local authority    E92000001
#> 5377        2025         Week 10 Year to date  Local authority    E92000001
#> 5378        2025         Week 10 Year to date  Local authority    E92000001
#> 5379        2025         Week 10 Year to date  Local authority    E92000001
#> 5380        2025         Week 10 Year to date  Local authority    E92000001
#> 5381        2025         Week 10 Year to date  Local authority    E92000001
#> 5382        2025         Week 10 Year to date  Local authority    E92000001
#> 5383        2025         Week 10 Year to date  Local authority    E92000001
#> 5384        2025         Week 10 Year to date  Local authority    E92000001
#> 5385        2025         Week 10 Year to date  Local authority    E92000001
#> 5386        2025         Week 10 Year to date  Local authority    E92000001
#> 5387        2025         Week 10 Year to date  Local authority    E92000001
#> 5388        2025         Week 10 Year to date         Regional    E92000001
#> 5389        2025         Week 10 Year to date         Regional    E92000001
#> 5390        2025         Week 10 Year to date         Regional    E92000001
#> 5391        2025         Week 10 Year to date         Regional    E92000001
#> 5392        2025         Week 10 Year to date  Local authority    E92000001
#> 5393        2025         Week 10 Year to date  Local authority    E92000001
#> 5394        2025         Week 10 Year to date  Local authority    E92000001
#> 5395        2025         Week 10 Year to date  Local authority    E92000001
#> 5396        2025         Week 10 Year to date  Local authority    E92000001
#> 5397        2025         Week 10 Year to date  Local authority    E92000001
#> 5398        2025         Week 10 Year to date  Local authority    E92000001
#> 5399        2025         Week 10 Year to date  Local authority    E92000001
#> 5400        2025         Week 10 Year to date  Local authority    E92000001
#> 5401        2025         Week 10 Year to date  Local authority    E92000001
#> 5402        2025         Week 10 Year to date  Local authority    E92000001
#> 5403        2025         Week 10 Year to date  Local authority    E92000001
#> 5404        2025         Week 10 Year to date  Local authority    E92000001
#> 5405        2025         Week 10 Year to date  Local authority    E92000001
#> 5406        2025         Week 10 Year to date  Local authority    E92000001
#> 5407        2025         Week 10 Year to date  Local authority    E92000001
#> 5408        2025         Week 10 Year to date  Local authority    E92000001
#> 5409        2025         Week 10 Year to date  Local authority    E92000001
#> 5410        2025         Week 10 Year to date  Local authority    E92000001
#> 5411        2025         Week 10 Year to date  Local authority    E92000001
#> 5412        2025         Week 10 Year to date  Local authority    E92000001
#> 5413        2025         Week 10 Year to date  Local authority    E92000001
#> 5414        2025         Week 10 Year to date  Local authority    E92000001
#> 5415        2025         Week 10 Year to date  Local authority    E92000001
#> 5416        2025         Week 10 Year to date  Local authority    E92000001
#> 5417        2025         Week 10 Year to date  Local authority    E92000001
#> 5418        2025         Week 10 Year to date  Local authority    E92000001
#> 5419        2025         Week 10 Year to date  Local authority    E92000001
#> 5420        2025         Week 10 Year to date  Local authority    E92000001
#> 5421        2025         Week 10 Year to date  Local authority    E92000001
#> 5422        2025         Week 10 Year to date  Local authority    E92000001
#> 5423        2025         Week 10 Year to date  Local authority    E92000001
#> 5424        2025         Week 10 Year to date  Local authority    E92000001
#> 5425        2025         Week 10 Year to date  Local authority    E92000001
#> 5426        2025         Week 10 Year to date  Local authority    E92000001
#> 5427        2025         Week 10 Year to date  Local authority    E92000001
#> 5428        2025         Week 10 Year to date  Local authority    E92000001
#> 5429        2025         Week 10 Year to date  Local authority    E92000001
#> 5430        2025         Week 10 Year to date  Local authority    E92000001
#> 5431        2025         Week 10 Year to date  Local authority    E92000001
#> 5432        2025         Week 10 Year to date  Local authority    E92000001
#> 5433        2025         Week 10 Year to date  Local authority    E92000001
#> 5434        2025         Week 10 Year to date  Local authority    E92000001
#> 5435        2025          Week 8 Year to date         National    E92000001
#> 5436        2025          Week 8 Year to date         National    E92000001
#> 5437        2025          Week 8 Year to date         National    E92000001
#> 5438        2025          Week 8 Year to date         National    E92000001
#> 5439        2025          Week 8 Year to date         Regional    E92000001
#> 5440        2025          Week 8 Year to date         Regional    E92000001
#> 5441        2025          Week 8 Year to date         Regional    E92000001
#> 5442        2025          Week 8 Year to date         Regional    E92000001
#> 5443        2025          Week 8 Year to date  Local authority    E92000001
#> 5444        2025          Week 8 Year to date  Local authority    E92000001
#> 5445        2025          Week 8 Year to date  Local authority    E92000001
#> 5446        2025          Week 8 Year to date  Local authority    E92000001
#> 5447        2025          Week 8 Year to date  Local authority    E92000001
#> 5448        2025          Week 8 Year to date  Local authority    E92000001
#> 5449        2025          Week 8 Year to date  Local authority    E92000001
#> 5450        2025          Week 8 Year to date  Local authority    E92000001
#> 5451        2025          Week 8 Year to date  Local authority    E92000001
#> 5452        2025          Week 8 Year to date  Local authority    E92000001
#> 5453        2025          Week 8 Year to date  Local authority    E92000001
#> 5454        2025          Week 8 Year to date  Local authority    E92000001
#> 5455        2025          Week 8 Year to date  Local authority    E92000001
#> 5456        2025          Week 8 Year to date  Local authority    E92000001
#> 5457        2025          Week 8 Year to date  Local authority    E92000001
#> 5458        2025          Week 8 Year to date  Local authority    E92000001
#> 5459        2025          Week 8 Year to date  Local authority    E92000001
#> 5460        2025          Week 8 Year to date  Local authority    E92000001
#> 5461        2025          Week 8 Year to date  Local authority    E92000001
#> 5462        2025          Week 8 Year to date  Local authority    E92000001
#> 5463        2025          Week 8 Year to date  Local authority    E92000001
#> 5464        2025          Week 8 Year to date  Local authority    E92000001
#> 5465        2025          Week 8 Year to date  Local authority    E92000001
#> 5466        2025          Week 8 Year to date  Local authority    E92000001
#> 5467        2025          Week 8 Year to date  Local authority    E92000001
#> 5468        2025          Week 8 Year to date  Local authority    E92000001
#> 5469        2025          Week 8 Year to date  Local authority    E92000001
#> 5470        2025          Week 8 Year to date  Local authority    E92000001
#> 5471        2025          Week 8 Year to date  Local authority    E92000001
#> 5472        2025          Week 8 Year to date  Local authority    E92000001
#> 5473        2025          Week 8 Year to date  Local authority    E92000001
#> 5474        2025          Week 8 Year to date  Local authority    E92000001
#> 5475        2025          Week 8 Year to date  Local authority    E92000001
#> 5476        2025          Week 8 Year to date  Local authority    E92000001
#> 5477        2025          Week 8 Year to date  Local authority    E92000001
#> 5478        2025          Week 8 Year to date  Local authority    E92000001
#> 5479        2025          Week 8 Year to date         Regional    E92000001
#> 5480        2025          Week 8 Year to date         Regional    E92000001
#> 5481        2025          Week 8 Year to date         Regional    E92000001
#> 5482        2025          Week 8 Year to date         Regional    E92000001
#> 5483        2025          Week 8 Year to date  Local authority    E92000001
#> 5484        2025          Week 8 Year to date  Local authority    E92000001
#> 5485        2025          Week 8 Year to date  Local authority    E92000001
#> 5486        2025          Week 8 Year to date  Local authority    E92000001
#> 5487        2025          Week 8 Year to date  Local authority    E92000001
#> 5488        2025          Week 8 Year to date  Local authority    E92000001
#> 5489        2025          Week 8 Year to date  Local authority    E92000001
#> 5490        2025          Week 8 Year to date  Local authority    E92000001
#> 5491        2025          Week 8 Year to date  Local authority    E92000001
#> 5492        2025          Week 8 Year to date  Local authority    E92000001
#> 5493        2025          Week 8 Year to date  Local authority    E92000001
#> 5494        2025          Week 8 Year to date  Local authority    E92000001
#> 5495        2025          Week 8 Year to date  Local authority    E92000001
#> 5496        2025          Week 8 Year to date  Local authority    E92000001
#> 5497        2025          Week 8 Year to date  Local authority    E92000001
#> 5498        2025          Week 8 Year to date  Local authority    E92000001
#> 5499        2025          Week 8 Year to date  Local authority    E92000001
#> 5500        2025          Week 8 Year to date  Local authority    E92000001
#> 5501        2025          Week 8 Year to date  Local authority    E92000001
#> 5502        2025          Week 8 Year to date  Local authority    E92000001
#> 5503        2025          Week 8 Year to date  Local authority    E92000001
#> 5504        2025          Week 8 Year to date  Local authority    E92000001
#> 5505        2025          Week 8 Year to date  Local authority    E92000001
#> 5506        2025          Week 8 Year to date  Local authority    E92000001
#> 5507        2025          Week 8 Year to date  Local authority    E92000001
#> 5508        2025          Week 8 Year to date  Local authority    E92000001
#> 5509        2025          Week 8 Year to date  Local authority    E92000001
#> 5510        2025          Week 8 Year to date  Local authority    E92000001
#> 5511        2025          Week 8 Year to date  Local authority    E92000001
#> 5512        2025          Week 8 Year to date  Local authority    E92000001
#> 5513        2025          Week 8 Year to date  Local authority    E92000001
#> 5514        2025          Week 8 Year to date  Local authority    E92000001
#> 5515        2025          Week 8 Year to date  Local authority    E92000001
#> 5516        2025          Week 8 Year to date  Local authority    E92000001
#> 5517        2025          Week 8 Year to date  Local authority    E92000001
#> 5518        2025          Week 8 Year to date  Local authority    E92000001
#> 5519        2025          Week 8 Year to date  Local authority    E92000001
#> 5520        2025          Week 8 Year to date  Local authority    E92000001
#> 5521        2025          Week 8 Year to date  Local authority    E92000001
#> 5522        2025          Week 8 Year to date  Local authority    E92000001
#> 5523        2025          Week 8 Year to date  Local authority    E92000001
#> 5524        2025          Week 8 Year to date  Local authority    E92000001
#> 5525        2025          Week 8 Year to date  Local authority    E92000001
#> 5526        2025          Week 8 Year to date  Local authority    E92000001
#> 5527        2025          Week 8 Year to date  Local authority    E92000001
#> 5528        2025          Week 8 Year to date  Local authority    E92000001
#> 5529        2025          Week 8 Year to date  Local authority    E92000001
#> 5530        2025          Week 8 Year to date  Local authority    E92000001
#> 5531        2025          Week 8 Year to date  Local authority    E92000001
#> 5532        2025          Week 8 Year to date  Local authority    E92000001
#> 5533        2025          Week 8 Year to date  Local authority    E92000001
#> 5534        2025          Week 8 Year to date  Local authority    E92000001
#> 5535        2025          Week 8 Year to date  Local authority    E92000001
#> 5536        2025          Week 8 Year to date  Local authority    E92000001
#> 5537        2025          Week 8 Year to date  Local authority    E92000001
#> 5538        2025          Week 8 Year to date  Local authority    E92000001
#> 5539        2025          Week 8 Year to date  Local authority    E92000001
#> 5540        2025          Week 8 Year to date  Local authority    E92000001
#> 5541        2025          Week 8 Year to date  Local authority    E92000001
#> 5542        2025          Week 8 Year to date  Local authority    E92000001
#> 5543        2025          Week 8 Year to date  Local authority    E92000001
#> 5544        2025          Week 8 Year to date  Local authority    E92000001
#> 5545        2025          Week 8 Year to date  Local authority    E92000001
#> 5546        2025          Week 8 Year to date  Local authority    E92000001
#> 5547        2025          Week 8 Year to date  Local authority    E92000001
#> 5548        2025          Week 8 Year to date  Local authority    E92000001
#> 5549        2025          Week 8 Year to date  Local authority    E92000001
#> 5550        2025          Week 8 Year to date  Local authority    E92000001
#> 5551        2025          Week 8 Year to date  Local authority    E92000001
#> 5552        2025          Week 8 Year to date  Local authority    E92000001
#> 5553        2025          Week 8 Year to date  Local authority    E92000001
#> 5554        2025          Week 8 Year to date  Local authority    E92000001
#> 5555        2025          Week 8 Year to date         Regional    E92000001
#> 5556        2025          Week 8 Year to date         Regional    E92000001
#> 5557        2025          Week 8 Year to date         Regional    E92000001
#> 5558        2025          Week 8 Year to date         Regional    E92000001
#> 5559        2025          Week 8 Year to date  Local authority    E92000001
#> 5560        2025          Week 8 Year to date  Local authority    E92000001
#> 5561        2025          Week 8 Year to date  Local authority    E92000001
#> 5562        2025          Week 8 Year to date  Local authority    E92000001
#> 5563        2025          Week 8 Year to date  Local authority    E92000001
#> 5564        2025          Week 8 Year to date  Local authority    E92000001
#> 5565        2025          Week 8 Year to date  Local authority    E92000001
#> 5566        2025          Week 8 Year to date  Local authority    E92000001
#> 5567        2025          Week 8 Year to date  Local authority    E92000001
#> 5568        2025          Week 8 Year to date  Local authority    E92000001
#> 5569        2025          Week 8 Year to date  Local authority    E92000001
#> 5570        2025          Week 8 Year to date  Local authority    E92000001
#> 5571        2025          Week 8 Year to date  Local authority    E92000001
#> 5572        2025          Week 8 Year to date  Local authority    E92000001
#> 5573        2025          Week 8 Year to date  Local authority    E92000001
#> 5574        2025          Week 8 Year to date  Local authority    E92000001
#> 5575        2025          Week 8 Year to date  Local authority    E92000001
#> 5576        2025          Week 8 Year to date  Local authority    E92000001
#> 5577        2025          Week 8 Year to date  Local authority    E92000001
#> 5578        2025          Week 8 Year to date  Local authority    E92000001
#> 5579        2025          Week 8 Year to date  Local authority    E92000001
#> 5580        2025          Week 8 Year to date  Local authority    E92000001
#> 5581        2025          Week 8 Year to date  Local authority    E92000001
#> 5582        2025          Week 8 Year to date  Local authority    E92000001
#> 5583        2025          Week 8 Year to date  Local authority    E92000001
#> 5584        2025          Week 8 Year to date  Local authority    E92000001
#> 5585        2025          Week 8 Year to date  Local authority    E92000001
#> 5586        2025          Week 8 Year to date  Local authority    E92000001
#> 5587        2025          Week 8 Year to date  Local authority    E92000001
#> 5588        2025          Week 8 Year to date  Local authority    E92000001
#> 5589        2025          Week 8 Year to date  Local authority    E92000001
#> 5590        2025          Week 8 Year to date  Local authority    E92000001
#> 5591        2025          Week 8 Year to date  Local authority    E92000001
#> 5592        2025          Week 8 Year to date  Local authority    E92000001
#> 5593        2025          Week 8 Year to date  Local authority    E92000001
#> 5594        2025          Week 8 Year to date  Local authority    E92000001
#> 5595        2025          Week 8 Year to date  Local authority    E92000001
#> 5596        2025          Week 8 Year to date  Local authority    E92000001
#> 5597        2025          Week 8 Year to date  Local authority    E92000001
#> 5598        2025          Week 8 Year to date  Local authority    E92000001
#> 5599        2025          Week 8 Year to date  Local authority    E92000001
#> 5600        2025          Week 8 Year to date  Local authority    E92000001
#> 5601        2025          Week 8 Year to date  Local authority    E92000001
#> 5602        2025          Week 8 Year to date  Local authority    E92000001
#> 5603        2025          Week 8 Year to date  Local authority    E92000001
#> 5604        2025          Week 8 Year to date         Regional    E92000001
#> 5605        2025          Week 8 Year to date         Regional    E92000001
#> 5606        2025          Week 8 Year to date         Regional    E92000001
#> 5607        2025          Week 8 Year to date         Regional    E92000001
#> 5608        2025          Week 8 Year to date  Local authority    E92000001
#> 5609        2025          Week 8 Year to date  Local authority    E92000001
#> 5610        2025          Week 8 Year to date  Local authority    E92000001
#> 5611        2025          Week 8 Year to date  Local authority    E92000001
#> 5612        2025          Week 8 Year to date  Local authority    E92000001
#> 5613        2025          Week 8 Year to date  Local authority    E92000001
#> 5614        2025          Week 8 Year to date  Local authority    E92000001
#> 5615        2025          Week 8 Year to date  Local authority    E92000001
#> 5616        2025          Week 8 Year to date  Local authority    E92000001
#> 5617        2025          Week 8 Year to date  Local authority    E92000001
#> 5618        2025          Week 8 Year to date  Local authority    E92000001
#> 5619        2025          Week 8 Year to date  Local authority    E92000001
#> 5620        2025          Week 8 Year to date  Local authority    E92000001
#> 5621        2025          Week 8 Year to date  Local authority    E92000001
#> 5622        2025          Week 8 Year to date  Local authority    E92000001
#> 5623        2025          Week 8 Year to date  Local authority    E92000001
#> 5624        2025          Week 8 Year to date  Local authority    E92000001
#> 5625        2025          Week 8 Year to date  Local authority    E92000001
#> 5626        2025          Week 8 Year to date  Local authority    E92000001
#> 5627        2025          Week 8 Year to date  Local authority    E92000001
#> 5628        2025          Week 8 Year to date  Local authority    E92000001
#> 5629        2025          Week 8 Year to date  Local authority    E92000001
#> 5630        2025          Week 8 Year to date  Local authority    E92000001
#> 5631        2025          Week 8 Year to date  Local authority    E92000001
#> 5632        2025          Week 8 Year to date  Local authority    E92000001
#> 5633        2025          Week 8 Year to date  Local authority    E92000001
#> 5634        2025          Week 8 Year to date  Local authority    E92000001
#> 5635        2025          Week 8 Year to date  Local authority    E92000001
#> 5636        2025          Week 8 Year to date  Local authority    E92000001
#> 5637        2025          Week 8 Year to date         Regional    E92000001
#> 5638        2025          Week 8 Year to date         Regional    E92000001
#> 5639        2025          Week 8 Year to date         Regional    E92000001
#> 5640        2025          Week 8 Year to date         Regional    E92000001
#> 5641        2025          Week 8 Year to date  Local authority    E92000001
#> 5642        2025          Week 8 Year to date  Local authority    E92000001
#> 5643        2025          Week 8 Year to date  Local authority    E92000001
#> 5644        2025          Week 8 Year to date  Local authority    E92000001
#> 5645        2025          Week 8 Year to date  Local authority    E92000001
#> 5646        2025          Week 8 Year to date  Local authority    E92000001
#> 5647        2025          Week 8 Year to date  Local authority    E92000001
#> 5648        2025          Week 8 Year to date  Local authority    E92000001
#> 5649        2025          Week 8 Year to date  Local authority    E92000001
#> 5650        2025          Week 8 Year to date  Local authority    E92000001
#> 5651        2025          Week 8 Year to date  Local authority    E92000001
#> 5652        2025          Week 8 Year to date  Local authority    E92000001
#> 5653        2025          Week 8 Year to date  Local authority    E92000001
#> 5654        2025          Week 8 Year to date  Local authority    E92000001
#> 5655        2025          Week 8 Year to date  Local authority    E92000001
#> 5656        2025          Week 8 Year to date  Local authority    E92000001
#> 5657        2025          Week 8 Year to date  Local authority    E92000001
#> 5658        2025          Week 8 Year to date  Local authority    E92000001
#> 5659        2025          Week 8 Year to date  Local authority    E92000001
#> 5660        2025          Week 8 Year to date  Local authority    E92000001
#> 5661        2025          Week 8 Year to date  Local authority    E92000001
#> 5662        2025          Week 8 Year to date  Local authority    E92000001
#> 5663        2025          Week 8 Year to date  Local authority    E92000001
#> 5664        2025          Week 8 Year to date  Local authority    E92000001
#> 5665        2025          Week 8 Year to date  Local authority    E92000001
#> 5666        2025          Week 8 Year to date  Local authority    E92000001
#> 5667        2025          Week 8 Year to date  Local authority    E92000001
#> 5668        2025          Week 8 Year to date  Local authority    E92000001
#> 5669        2025          Week 8 Year to date  Local authority    E92000001
#> 5670        2025          Week 8 Year to date  Local authority    E92000001
#> 5671        2025          Week 8 Year to date  Local authority    E92000001
#> 5672        2025          Week 8 Year to date  Local authority    E92000001
#> 5673        2025          Week 8 Year to date  Local authority    E92000001
#> 5674        2025          Week 8 Year to date  Local authority    E92000001
#> 5675        2025          Week 8 Year to date  Local authority    E92000001
#> 5676        2025          Week 8 Year to date  Local authority    E92000001
#> 5677        2025          Week 8 Year to date  Local authority    E92000001
#> 5678        2025          Week 8 Year to date  Local authority    E92000001
#> 5679        2025          Week 8 Year to date  Local authority    E92000001
#> 5680        2025          Week 8 Year to date  Local authority    E92000001
#> 5681        2025          Week 8 Year to date  Local authority    E92000001
#> 5682        2025          Week 8 Year to date  Local authority    E92000001
#> 5683        2025          Week 8 Year to date         Regional    E92000001
#> 5684        2025          Week 8 Year to date         Regional    E92000001
#> 5685        2025          Week 8 Year to date         Regional    E92000001
#> 5686        2025          Week 8 Year to date         Regional    E92000001
#> 5687        2025          Week 8 Year to date  Local authority    E92000001
#> 5688        2025          Week 8 Year to date  Local authority    E92000001
#> 5689        2025          Week 8 Year to date  Local authority    E92000001
#> 5690        2025          Week 8 Year to date  Local authority    E92000001
#> 5691        2025          Week 8 Year to date  Local authority    E92000001
#> 5692        2025          Week 8 Year to date  Local authority    E92000001
#> 5693        2025          Week 8 Year to date  Local authority    E92000001
#> 5694        2025          Week 8 Year to date  Local authority    E92000001
#> 5695        2025          Week 8 Year to date  Local authority    E92000001
#> 5696        2025          Week 8 Year to date  Local authority    E92000001
#> 5697        2025          Week 8 Year to date  Local authority    E92000001
#> 5698        2025          Week 8 Year to date  Local authority    E92000001
#> 5699        2025          Week 8 Year to date  Local authority    E92000001
#> 5700        2025          Week 8 Year to date  Local authority    E92000001
#> 5701        2025          Week 8 Year to date  Local authority    E92000001
#> 5702        2025          Week 8 Year to date  Local authority    E92000001
#> 5703        2025          Week 8 Year to date  Local authority    E92000001
#> 5704        2025          Week 8 Year to date  Local authority    E92000001
#> 5705        2025          Week 8 Year to date  Local authority    E92000001
#> 5706        2025          Week 8 Year to date  Local authority    E92000001
#> 5707        2025          Week 8 Year to date  Local authority    E92000001
#> 5708        2025          Week 8 Year to date  Local authority    E92000001
#> 5709        2025          Week 8 Year to date  Local authority    E92000001
#> 5710        2025          Week 8 Year to date  Local authority    E92000001
#> 5711        2025          Week 8 Year to date  Local authority    E92000001
#> 5712        2025          Week 8 Year to date  Local authority    E92000001
#> 5713        2025          Week 8 Year to date  Local authority    E92000001
#> 5714        2025          Week 8 Year to date  Local authority    E92000001
#> 5715        2025          Week 8 Year to date  Local authority    E92000001
#> 5716        2025          Week 8 Year to date  Local authority    E92000001
#> 5717        2025          Week 8 Year to date  Local authority    E92000001
#> 5718        2025          Week 8 Year to date  Local authority    E92000001
#> 5719        2025          Week 8 Year to date  Local authority    E92000001
#> 5720        2025          Week 8 Year to date         Regional    E92000001
#> 5721        2025          Week 8 Year to date         Regional    E92000001
#> 5722        2025          Week 8 Year to date         Regional    E92000001
#> 5723        2025          Week 8 Year to date         Regional    E92000001
#> 5724        2025          Week 8 Year to date  Local authority    E92000001
#> 5725        2025          Week 8 Year to date  Local authority    E92000001
#> 5726        2025          Week 8 Year to date  Local authority    E92000001
#> 5727        2025          Week 8 Year to date  Local authority    E92000001
#> 5728        2025          Week 8 Year to date  Local authority    E92000001
#> 5729        2025          Week 8 Year to date  Local authority    E92000001
#> 5730        2025          Week 8 Year to date  Local authority    E92000001
#> 5731        2025          Week 8 Year to date  Local authority    E92000001
#> 5732        2025          Week 8 Year to date  Local authority    E92000001
#> 5733        2025          Week 8 Year to date  Local authority    E92000001
#> 5734        2025          Week 8 Year to date  Local authority    E92000001
#> 5735        2025          Week 8 Year to date  Local authority    E92000001
#> 5736        2025          Week 8 Year to date  Local authority    E92000001
#> 5737        2025          Week 8 Year to date  Local authority    E92000001
#> 5738        2025          Week 8 Year to date  Local authority    E92000001
#> 5739        2025          Week 8 Year to date  Local authority    E92000001
#> 5740        2025          Week 8 Year to date  Local authority    E92000001
#> 5741        2025          Week 8 Year to date  Local authority    E92000001
#> 5742        2025          Week 8 Year to date  Local authority    E92000001
#> 5743        2025          Week 8 Year to date  Local authority    E92000001
#> 5744        2025          Week 8 Year to date  Local authority    E92000001
#> 5745        2025          Week 8 Year to date  Local authority    E92000001
#> 5746        2025          Week 8 Year to date  Local authority    E92000001
#> 5747        2025          Week 8 Year to date  Local authority    E92000001
#> 5748        2025          Week 8 Year to date  Local authority    E92000001
#> 5749        2025          Week 8 Year to date  Local authority    E92000001
#> 5750        2025          Week 8 Year to date  Local authority    E92000001
#> 5751        2025          Week 8 Year to date  Local authority    E92000001
#> 5752        2025          Week 8 Year to date  Local authority    E92000001
#> 5753        2025          Week 8 Year to date  Local authority    E92000001
#> 5754        2025          Week 8 Year to date  Local authority    E92000001
#> 5755        2025          Week 8 Year to date  Local authority    E92000001
#> 5756        2025          Week 8 Year to date  Local authority    E92000001
#> 5757        2025          Week 8 Year to date  Local authority    E92000001
#> 5758        2025          Week 8 Year to date  Local authority    E92000001
#> 5759        2025          Week 8 Year to date  Local authority    E92000001
#> 5760        2025          Week 8 Year to date  Local authority    E92000001
#> 5761        2025          Week 8 Year to date  Local authority    E92000001
#> 5762        2025          Week 8 Year to date  Local authority    E92000001
#> 5763        2025          Week 8 Year to date  Local authority    E92000001
#> 5764        2025          Week 8 Year to date  Local authority    E92000001
#> 5765        2025          Week 8 Year to date  Local authority    E92000001
#> 5766        2025          Week 8 Year to date  Local authority    E92000001
#> 5767        2025          Week 8 Year to date  Local authority    E92000001
#> 5768        2025          Week 8 Year to date  Local authority    E92000001
#> 5769        2025          Week 8 Year to date  Local authority    E92000001
#> 5770        2025          Week 8 Year to date  Local authority    E92000001
#> 5771        2025          Week 8 Year to date  Local authority    E92000001
#> 5772        2025          Week 8 Year to date  Local authority    E92000001
#> 5773        2025          Week 8 Year to date  Local authority    E92000001
#> 5774        2025          Week 8 Year to date  Local authority    E92000001
#> 5775        2025          Week 8 Year to date  Local authority    E92000001
#> 5776        2025          Week 8 Year to date  Local authority    E92000001
#> 5777        2025          Week 8 Year to date  Local authority    E92000001
#> 5778        2025          Week 8 Year to date  Local authority    E92000001
#> 5779        2025          Week 8 Year to date  Local authority    E92000001
#> 5780        2025          Week 8 Year to date  Local authority    E92000001
#> 5781        2025          Week 8 Year to date  Local authority    E92000001
#> 5782        2025          Week 8 Year to date  Local authority    E92000001
#> 5783        2025          Week 8 Year to date  Local authority    E92000001
#> 5784        2025          Week 8 Year to date  Local authority    E92000001
#> 5785        2025          Week 8 Year to date  Local authority    E92000001
#> 5786        2025          Week 8 Year to date  Local authority    E92000001
#> 5787        2025          Week 8 Year to date  Local authority    E92000001
#> 5788        2025          Week 8 Year to date  Local authority    E92000001
#> 5789        2025          Week 8 Year to date  Local authority    E92000001
#> 5790        2025          Week 8 Year to date  Local authority    E92000001
#> 5791        2025          Week 8 Year to date  Local authority    E92000001
#> 5792        2025          Week 8 Year to date  Local authority    E92000001
#> 5793        2025          Week 8 Year to date  Local authority    E92000001
#> 5794        2025          Week 8 Year to date  Local authority    E92000001
#> 5795        2025          Week 8 Year to date  Local authority    E92000001
#> 5796        2025          Week 8 Year to date  Local authority    E92000001
#> 5797        2025          Week 8 Year to date  Local authority    E92000001
#> 5798        2025          Week 8 Year to date  Local authority    E92000001
#> 5799        2025          Week 8 Year to date  Local authority    E92000001
#> 5800        2025          Week 8 Year to date  Local authority    E92000001
#> 5801        2025          Week 8 Year to date  Local authority    E92000001
#> 5802        2025          Week 8 Year to date  Local authority    E92000001
#> 5803        2025          Week 8 Year to date  Local authority    E92000001
#> 5804        2025          Week 8 Year to date  Local authority    E92000001
#> 5805        2025          Week 8 Year to date  Local authority    E92000001
#> 5806        2025          Week 8 Year to date  Local authority    E92000001
#> 5807        2025          Week 8 Year to date  Local authority    E92000001
#> 5808        2025          Week 8 Year to date  Local authority    E92000001
#> 5809        2025          Week 8 Year to date  Local authority    E92000001
#> 5810        2025          Week 8 Year to date  Local authority    E92000001
#> 5811        2025          Week 8 Year to date  Local authority    E92000001
#> 5812        2025          Week 8 Year to date  Local authority    E92000001
#> 5813        2025          Week 8 Year to date  Local authority    E92000001
#> 5814        2025          Week 8 Year to date  Local authority    E92000001
#> 5815        2025          Week 8 Year to date  Local authority    E92000001
#> 5816        2025          Week 8 Year to date  Local authority    E92000001
#> 5817        2025          Week 8 Year to date  Local authority    E92000001
#> 5818        2025          Week 8 Year to date  Local authority    E92000001
#> 5819        2025          Week 8 Year to date  Local authority    E92000001
#> 5820        2025          Week 8 Year to date  Local authority    E92000001
#> 5821        2025          Week 8 Year to date         Regional    E92000001
#> 5822        2025          Week 8 Year to date         Regional    E92000001
#> 5823        2025          Week 8 Year to date         Regional    E92000001
#> 5824        2025          Week 8 Year to date         Regional    E92000001
#> 5825        2025          Week 8 Year to date  Local authority    E92000001
#> 5826        2025          Week 8 Year to date  Local authority    E92000001
#> 5827        2025          Week 8 Year to date  Local authority    E92000001
#> 5828        2025          Week 8 Year to date  Local authority    E92000001
#> 5829        2025          Week 8 Year to date  Local authority    E92000001
#> 5830        2025          Week 8 Year to date  Local authority    E92000001
#> 5831        2025          Week 8 Year to date  Local authority    E92000001
#> 5832        2025          Week 8 Year to date  Local authority    E92000001
#> 5833        2025          Week 8 Year to date  Local authority    E92000001
#> 5834        2025          Week 8 Year to date  Local authority    E92000001
#> 5835        2025          Week 8 Year to date  Local authority    E92000001
#> 5836        2025          Week 8 Year to date  Local authority    E92000001
#> 5837        2025          Week 8 Year to date  Local authority    E92000001
#> 5838        2025          Week 8 Year to date  Local authority    E92000001
#> 5839        2025          Week 8 Year to date  Local authority    E92000001
#> 5840        2025          Week 8 Year to date  Local authority    E92000001
#> 5841        2025          Week 8 Year to date  Local authority    E92000001
#> 5842        2025          Week 8 Year to date  Local authority    E92000001
#> 5843        2025          Week 8 Year to date  Local authority    E92000001
#> 5844        2025          Week 8 Year to date  Local authority    E92000001
#> 5845        2025          Week 8 Year to date  Local authority    E92000001
#> 5846        2025          Week 8 Year to date  Local authority    E92000001
#> 5847        2025          Week 8 Year to date  Local authority    E92000001
#> 5848        2025          Week 8 Year to date  Local authority    E92000001
#> 5849        2025          Week 8 Year to date  Local authority    E92000001
#> 5850        2025          Week 8 Year to date  Local authority    E92000001
#> 5851        2025          Week 8 Year to date  Local authority    E92000001
#> 5852        2025          Week 8 Year to date  Local authority    E92000001
#> 5853        2025          Week 8 Year to date  Local authority    E92000001
#> 5854        2025          Week 8 Year to date  Local authority    E92000001
#> 5855        2025          Week 8 Year to date  Local authority    E92000001
#> 5856        2025          Week 8 Year to date  Local authority    E92000001
#> 5857        2025          Week 8 Year to date  Local authority    E92000001
#> 5858        2025          Week 8 Year to date  Local authority    E92000001
#> 5859        2025          Week 8 Year to date  Local authority    E92000001
#> 5860        2025          Week 8 Year to date  Local authority    E92000001
#> 5861        2025          Week 8 Year to date  Local authority    E92000001
#> 5862        2025          Week 8 Year to date  Local authority    E92000001
#> 5863        2025          Week 8 Year to date  Local authority    E92000001
#> 5864        2025          Week 8 Year to date  Local authority    E92000001
#> 5865        2025          Week 8 Year to date  Local authority    E92000001
#> 5866        2025          Week 8 Year to date  Local authority    E92000001
#> 5867        2025          Week 8 Year to date  Local authority    E92000001
#> 5868        2025          Week 8 Year to date  Local authority    E92000001
#> 5869        2025          Week 8 Year to date  Local authority    E92000001
#> 5870        2025          Week 8 Year to date  Local authority    E92000001
#> 5871        2025          Week 8 Year to date  Local authority    E92000001
#> 5872        2025          Week 8 Year to date  Local authority    E92000001
#> 5873        2025          Week 8 Year to date  Local authority    E92000001
#> 5874        2025          Week 8 Year to date  Local authority    E92000001
#> 5875        2025          Week 8 Year to date  Local authority    E92000001
#> 5876        2025          Week 8 Year to date  Local authority    E92000001
#> 5877        2025          Week 8 Year to date  Local authority    E92000001
#> 5878        2025          Week 8 Year to date  Local authority    E92000001
#> 5879        2025          Week 8 Year to date  Local authority    E92000001
#> 5880        2025          Week 8 Year to date  Local authority    E92000001
#> 5881        2025          Week 8 Year to date  Local authority    E92000001
#> 5882        2025          Week 8 Year to date         Regional    E92000001
#> 5883        2025          Week 8 Year to date         Regional    E92000001
#> 5884        2025          Week 8 Year to date         Regional    E92000001
#> 5885        2025          Week 8 Year to date         Regional    E92000001
#> 5886        2025          Week 8 Year to date  Local authority    E92000001
#> 5887        2025          Week 8 Year to date  Local authority    E92000001
#> 5888        2025          Week 8 Year to date  Local authority    E92000001
#> 5889        2025          Week 8 Year to date  Local authority    E92000001
#> 5890        2025          Week 8 Year to date  Local authority    E92000001
#> 5891        2025          Week 8 Year to date  Local authority    E92000001
#> 5892        2025          Week 8 Year to date  Local authority    E92000001
#> 5893        2025          Week 8 Year to date  Local authority    E92000001
#> 5894        2025          Week 8 Year to date  Local authority    E92000001
#> 5895        2025          Week 8 Year to date  Local authority    E92000001
#> 5896        2025          Week 8 Year to date  Local authority    E92000001
#> 5897        2025          Week 8 Year to date  Local authority    E92000001
#> 5898        2025          Week 8 Year to date  Local authority    E92000001
#> 5899        2025          Week 8 Year to date  Local authority    E92000001
#> 5900        2025          Week 8 Year to date  Local authority    E92000001
#> 5901        2025          Week 8 Year to date  Local authority    E92000001
#> 5902        2025          Week 8 Year to date  Local authority    E92000001
#> 5903        2025          Week 8 Year to date  Local authority    E92000001
#> 5904        2025          Week 8 Year to date  Local authority    E92000001
#> 5905        2025          Week 8 Year to date  Local authority    E92000001
#> 5906        2025          Week 8 Year to date  Local authority    E92000001
#> 5907        2025          Week 8 Year to date  Local authority    E92000001
#> 5908        2025          Week 8 Year to date  Local authority    E92000001
#> 5909        2025          Week 8 Year to date  Local authority    E92000001
#> 5910        2025          Week 8 Year to date  Local authority    E92000001
#> 5911        2025          Week 8 Year to date  Local authority    E92000001
#> 5912        2025          Week 8 Year to date  Local authority    E92000001
#> 5913        2025          Week 8 Year to date  Local authority    E92000001
#> 5914        2025          Week 8 Year to date  Local authority    E92000001
#> 5915        2025          Week 8 Year to date  Local authority    E92000001
#> 5916        2025          Week 8 Year to date  Local authority    E92000001
#> 5917        2025          Week 8 Year to date  Local authority    E92000001
#> 5918        2025          Week 8 Year to date  Local authority    E92000001
#> 5919        2025          Week 8 Year to date  Local authority    E92000001
#> 5920        2025          Week 8 Year to date  Local authority    E92000001
#> 5921        2025          Week 8 Year to date  Local authority    E92000001
#> 5922        2025          Week 8 Year to date  Local authority    E92000001
#> 5923        2025          Week 8 Year to date  Local authority    E92000001
#> 5924        2025          Week 8 Year to date  Local authority    E92000001
#> 5925        2025          Week 8 Year to date  Local authority    E92000001
#> 5926        2025          Week 8 Year to date  Local authority    E92000001
#> 5927        2025          Week 8 Year to date  Local authority    E92000001
#> 5928        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
#> 3953      England        <NA>                     <NA>        <NA>
#> 3954      England        <NA>                     <NA>        <NA>
#> 3955      England        <NA>                     <NA>        <NA>
#> 3956      England        <NA>                     <NA>        <NA>
#> 3957      England   E12000001               North East        <NA>
#> 3958      England   E12000001               North East        <NA>
#> 3959      England   E12000001               North East        <NA>
#> 3960      England   E12000001               North East        <NA>
#> 3961      England   E12000001               North East   E06000001
#> 3962      England   E12000001               North East   E06000001
#> 3963      England   E12000001               North East   E06000001
#> 3964      England   E12000001               North East   E06000002
#> 3965      England   E12000001               North East   E06000002
#> 3966      England   E12000001               North East   E06000002
#> 3967      England   E12000001               North East   E06000003
#> 3968      England   E12000001               North East   E06000003
#> 3969      England   E12000001               North East   E06000003
#> 3970      England   E12000001               North East   E06000004
#> 3971      England   E12000001               North East   E06000004
#> 3972      England   E12000001               North East   E06000004
#> 3973      England   E12000001               North East   E06000005
#> 3974      England   E12000001               North East   E06000005
#> 3975      England   E12000001               North East   E06000005
#> 3976      England   E12000001               North East   E06000047
#> 3977      England   E12000001               North East   E06000047
#> 3978      England   E12000001               North East   E06000047
#> 3979      England   E12000001               North East   E06000057
#> 3980      England   E12000001               North East   E06000057
#> 3981      England   E12000001               North East   E06000057
#> 3982      England   E12000001               North East   E08000021
#> 3983      England   E12000001               North East   E08000021
#> 3984      England   E12000001               North East   E08000021
#> 3985      England   E12000001               North East   E08000022
#> 3986      England   E12000001               North East   E08000022
#> 3987      England   E12000001               North East   E08000022
#> 3988      England   E12000001               North East   E08000023
#> 3989      England   E12000001               North East   E08000023
#> 3990      England   E12000001               North East   E08000023
#> 3991      England   E12000001               North East   E08000024
#> 3992      England   E12000001               North East   E08000024
#> 3993      England   E12000001               North East   E08000024
#> 3994      England   E12000001               North East   E08000037
#> 3995      England   E12000001               North East   E08000037
#> 3996      England   E12000001               North East   E08000037
#> 3997      England   E12000002               North West        <NA>
#> 3998      England   E12000002               North West        <NA>
#> 3999      England   E12000002               North West        <NA>
#> 4000      England   E12000002               North West        <NA>
#> 4001      England   E12000002               North West   E06000006
#> 4002      England   E12000002               North West   E06000006
#> 4003      England   E12000002               North West   E06000006
#> 4004      England   E12000002               North West   E06000007
#> 4005      England   E12000002               North West   E06000007
#> 4006      England   E12000002               North West   E06000007
#> 4007      England   E12000002               North West   E06000008
#> 4008      England   E12000002               North West   E06000008
#> 4009      England   E12000002               North West   E06000008
#> 4010      England   E12000002               North West   E06000009
#> 4011      England   E12000002               North West   E06000009
#> 4012      England   E12000002               North West   E06000009
#> 4013      England   E12000002               North West   E06000049
#> 4014      England   E12000002               North West   E06000049
#> 4015      England   E12000002               North West   E06000049
#> 4016      England   E12000002               North West   E06000050
#> 4017      England   E12000002               North West   E06000050
#> 4018      England   E12000002               North West   E06000050
#> 4019      England   E12000002               North West   E06000063
#> 4020      England   E12000002               North West   E06000063
#> 4021      England   E12000002               North West   E06000063
#> 4022      England   E12000002               North West   E06000064
#> 4023      England   E12000002               North West   E06000064
#> 4024      England   E12000002               North West   E06000064
#> 4025      England   E12000002               North West   E08000001
#> 4026      England   E12000002               North West   E08000001
#> 4027      England   E12000002               North West   E08000001
#> 4028      England   E12000002               North West   E08000002
#> 4029      England   E12000002               North West   E08000002
#> 4030      England   E12000002               North West   E08000002
#> 4031      England   E12000002               North West   E08000003
#> 4032      England   E12000002               North West   E08000003
#> 4033      England   E12000002               North West   E08000003
#> 4034      England   E12000002               North West   E08000004
#> 4035      England   E12000002               North West   E08000004
#> 4036      England   E12000002               North West   E08000004
#> 4037      England   E12000002               North West   E08000005
#> 4038      England   E12000002               North West   E08000005
#> 4039      England   E12000002               North West   E08000005
#> 4040      England   E12000002               North West   E08000006
#> 4041      England   E12000002               North West   E08000006
#> 4042      England   E12000002               North West   E08000006
#> 4043      England   E12000002               North West   E08000007
#> 4044      England   E12000002               North West   E08000007
#> 4045      England   E12000002               North West   E08000007
#> 4046      England   E12000002               North West   E08000008
#> 4047      England   E12000002               North West   E08000008
#> 4048      England   E12000002               North West   E08000008
#> 4049      England   E12000002               North West   E08000009
#> 4050      England   E12000002               North West   E08000009
#> 4051      England   E12000002               North West   E08000009
#> 4052      England   E12000002               North West   E08000010
#> 4053      England   E12000002               North West   E08000010
#> 4054      England   E12000002               North West   E08000010
#> 4055      England   E12000002               North West   E08000011
#> 4056      England   E12000002               North West   E08000011
#> 4057      England   E12000002               North West   E08000011
#> 4058      England   E12000002               North West   E08000012
#> 4059      England   E12000002               North West   E08000012
#> 4060      England   E12000002               North West   E08000012
#> 4061      England   E12000002               North West   E08000013
#> 4062      England   E12000002               North West   E08000013
#> 4063      England   E12000002               North West   E08000013
#> 4064      England   E12000002               North West   E08000014
#> 4065      England   E12000002               North West   E08000014
#> 4066      England   E12000002               North West   E08000014
#> 4067      England   E12000002               North West   E08000015
#> 4068      England   E12000002               North West   E08000015
#> 4069      England   E12000002               North West   E08000015
#> 4070      England   E12000002               North West   E10000017
#> 4071      England   E12000002               North West   E10000017
#> 4072      England   E12000002               North West   E10000017
#> 4073      England   E12000003 Yorkshire and The Humber        <NA>
#> 4074      England   E12000003 Yorkshire and The Humber        <NA>
#> 4075      England   E12000003 Yorkshire and The Humber        <NA>
#> 4076      England   E12000003 Yorkshire and The Humber        <NA>
#> 4077      England   E12000003 Yorkshire and The Humber   E06000010
#> 4078      England   E12000003 Yorkshire and The Humber   E06000010
#> 4079      England   E12000003 Yorkshire and The Humber   E06000010
#> 4080      England   E12000003 Yorkshire and The Humber   E06000011
#> 4081      England   E12000003 Yorkshire and The Humber   E06000011
#> 4082      England   E12000003 Yorkshire and The Humber   E06000011
#> 4083      England   E12000003 Yorkshire and The Humber   E06000012
#> 4084      England   E12000003 Yorkshire and The Humber   E06000012
#> 4085      England   E12000003 Yorkshire and The Humber   E06000012
#> 4086      England   E12000003 Yorkshire and The Humber   E06000013
#> 4087      England   E12000003 Yorkshire and The Humber   E06000013
#> 4088      England   E12000003 Yorkshire and The Humber   E06000013
#> 4089      England   E12000003 Yorkshire and The Humber   E06000014
#> 4090      England   E12000003 Yorkshire and The Humber   E06000014
#> 4091      England   E12000003 Yorkshire and The Humber   E06000014
#> 4092      England   E12000003 Yorkshire and The Humber   E06000065
#> 4093      England   E12000003 Yorkshire and The Humber   E06000065
#> 4094      England   E12000003 Yorkshire and The Humber   E06000065
#> 4095      England   E12000003 Yorkshire and The Humber   E08000016
#> 4096      England   E12000003 Yorkshire and The Humber   E08000016
#> 4097      England   E12000003 Yorkshire and The Humber   E08000016
#> 4098      England   E12000003 Yorkshire and The Humber   E08000017
#> 4099      England   E12000003 Yorkshire and The Humber   E08000017
#> 4100      England   E12000003 Yorkshire and The Humber   E08000017
#> 4101      England   E12000003 Yorkshire and The Humber   E08000018
#> 4102      England   E12000003 Yorkshire and The Humber   E08000018
#> 4103      England   E12000003 Yorkshire and The Humber   E08000018
#> 4104      England   E12000003 Yorkshire and The Humber   E08000019
#> 4105      England   E12000003 Yorkshire and The Humber   E08000019
#> 4106      England   E12000003 Yorkshire and The Humber   E08000019
#> 4107      England   E12000003 Yorkshire and The Humber   E08000032
#> 4108      England   E12000003 Yorkshire and The Humber   E08000032
#> 4109      England   E12000003 Yorkshire and The Humber   E08000032
#> 4110      England   E12000003 Yorkshire and The Humber   E08000033
#> 4111      England   E12000003 Yorkshire and The Humber   E08000033
#> 4112      England   E12000003 Yorkshire and The Humber   E08000033
#> 4113      England   E12000003 Yorkshire and The Humber   E08000034
#> 4114      England   E12000003 Yorkshire and The Humber   E08000034
#> 4115      England   E12000003 Yorkshire and The Humber   E08000034
#> 4116      England   E12000003 Yorkshire and The Humber   E08000035
#> 4117      England   E12000003 Yorkshire and The Humber   E08000035
#> 4118      England   E12000003 Yorkshire and The Humber   E08000035
#> 4119      England   E12000003 Yorkshire and The Humber   E08000036
#> 4120      England   E12000003 Yorkshire and The Humber   E08000036
#> 4121      England   E12000003 Yorkshire and The Humber   E08000036
#> 4122      England   E12000004            East Midlands        <NA>
#> 4123      England   E12000004            East Midlands        <NA>
#> 4124      England   E12000004            East Midlands        <NA>
#> 4125      England   E12000004            East Midlands        <NA>
#> 4126      England   E12000004            East Midlands   E06000015
#> 4127      England   E12000004            East Midlands   E06000015
#> 4128      England   E12000004            East Midlands   E06000015
#> 4129      England   E12000004            East Midlands   E06000016
#> 4130      England   E12000004            East Midlands   E06000016
#> 4131      England   E12000004            East Midlands   E06000016
#> 4132      England   E12000004            East Midlands   E06000017
#> 4133      England   E12000004            East Midlands   E06000017
#> 4134      England   E12000004            East Midlands   E06000018
#> 4135      England   E12000004            East Midlands   E06000018
#> 4136      England   E12000004            East Midlands   E06000018
#> 4137      England   E12000004            East Midlands   E06000061
#> 4138      England   E12000004            East Midlands   E06000061
#> 4139      England   E12000004            East Midlands   E06000061
#> 4140      England   E12000004            East Midlands   E06000062
#> 4141      England   E12000004            East Midlands   E06000062
#> 4142      England   E12000004            East Midlands   E06000062
#> 4143      England   E12000004            East Midlands   E10000007
#> 4144      England   E12000004            East Midlands   E10000007
#> 4145      England   E12000004            East Midlands   E10000007
#> 4146      England   E12000004            East Midlands   E10000018
#> 4147      England   E12000004            East Midlands   E10000018
#> 4148      England   E12000004            East Midlands   E10000018
#> 4149      England   E12000004            East Midlands   E10000019
#> 4150      England   E12000004            East Midlands   E10000019
#> 4151      England   E12000004            East Midlands   E10000019
#> 4152      England   E12000004            East Midlands   E10000024
#> 4153      England   E12000004            East Midlands   E10000024
#> 4154      England   E12000004            East Midlands   E10000024
#> 4155      England   E12000005            West Midlands        <NA>
#> 4156      England   E12000005            West Midlands        <NA>
#> 4157      England   E12000005            West Midlands        <NA>
#> 4158      England   E12000005            West Midlands        <NA>
#> 4159      England   E12000005            West Midlands   E06000019
#> 4160      England   E12000005            West Midlands   E06000019
#> 4161      England   E12000005            West Midlands   E06000019
#> 4162      England   E12000005            West Midlands   E06000020
#> 4163      England   E12000005            West Midlands   E06000020
#> 4164      England   E12000005            West Midlands   E06000020
#> 4165      England   E12000005            West Midlands   E06000021
#> 4166      England   E12000005            West Midlands   E06000021
#> 4167      England   E12000005            West Midlands   E06000021
#> 4168      England   E12000005            West Midlands   E06000051
#> 4169      England   E12000005            West Midlands   E06000051
#> 4170      England   E12000005            West Midlands   E06000051
#> 4171      England   E12000005            West Midlands   E08000025
#> 4172      England   E12000005            West Midlands   E08000025
#> 4173      England   E12000005            West Midlands   E08000025
#> 4174      England   E12000005            West Midlands   E08000026
#> 4175      England   E12000005            West Midlands   E08000026
#> 4176      England   E12000005            West Midlands   E08000026
#> 4177      England   E12000005            West Midlands   E08000027
#> 4178      England   E12000005            West Midlands   E08000027
#> 4179      England   E12000005            West Midlands   E08000027
#> 4180      England   E12000005            West Midlands   E08000028
#> 4181      England   E12000005            West Midlands   E08000028
#> 4182      England   E12000005            West Midlands   E08000028
#> 4183      England   E12000005            West Midlands   E08000029
#> 4184      England   E12000005            West Midlands   E08000029
#> 4185      England   E12000005            West Midlands   E08000029
#> 4186      England   E12000005            West Midlands   E08000030
#> 4187      England   E12000005            West Midlands   E08000030
#> 4188      England   E12000005            West Midlands   E08000030
#> 4189      England   E12000005            West Midlands   E08000031
#> 4190      England   E12000005            West Midlands   E08000031
#> 4191      England   E12000005            West Midlands   E08000031
#> 4192      England   E12000005            West Midlands   E10000028
#> 4193      England   E12000005            West Midlands   E10000028
#> 4194      England   E12000005            West Midlands   E10000028
#> 4195      England   E12000005            West Midlands   E10000031
#> 4196      England   E12000005            West Midlands   E10000031
#> 4197      England   E12000005            West Midlands   E10000031
#> 4198      England   E12000005            West Midlands   E10000034
#> 4199      England   E12000005            West Midlands   E10000034
#> 4200      England   E12000005            West Midlands   E10000034
#> 4201      England   E12000006          East of England        <NA>
#> 4202      England   E12000006          East of England        <NA>
#> 4203      England   E12000006          East of England        <NA>
#> 4204      England   E12000006          East of England        <NA>
#> 4205      England   E12000006          East of England   E06000031
#> 4206      England   E12000006          East of England   E06000031
#> 4207      England   E12000006          East of England   E06000031
#> 4208      England   E12000006          East of England   E06000032
#> 4209      England   E12000006          East of England   E06000032
#> 4210      England   E12000006          East of England   E06000032
#> 4211      England   E12000006          East of England   E06000033
#> 4212      England   E12000006          East of England   E06000033
#> 4213      England   E12000006          East of England   E06000033
#> 4214      England   E12000006          East of England   E06000034
#> 4215      England   E12000006          East of England   E06000034
#> 4216      England   E12000006          East of England   E06000034
#> 4217      England   E12000006          East of England   E06000055
#> 4218      England   E12000006          East of England   E06000055
#> 4219      England   E12000006          East of England   E06000055
#> 4220      England   E12000006          East of England   E06000056
#> 4221      England   E12000006          East of England   E06000056
#> 4222      England   E12000006          East of England   E06000056
#> 4223      England   E12000006          East of England   E10000003
#> 4224      England   E12000006          East of England   E10000003
#> 4225      England   E12000006          East of England   E10000003
#> 4226      England   E12000006          East of England   E10000012
#> 4227      England   E12000006          East of England   E10000012
#> 4228      England   E12000006          East of England   E10000012
#> 4229      England   E12000006          East of England   E10000015
#> 4230      England   E12000006          East of England   E10000015
#> 4231      England   E12000006          East of England   E10000015
#> 4232      England   E12000006          East of England   E10000020
#> 4233      England   E12000006          East of England   E10000020
#> 4234      England   E12000006          East of England   E10000020
#> 4235      England   E12000006          East of England   E10000029
#> 4236      England   E12000006          East of England   E10000029
#> 4237      England   E12000006          East of England   E10000029
#> 4238      England   E12000007                   London        <NA>
#> 4239      England   E12000007                   London        <NA>
#> 4240      England   E12000007                   London        <NA>
#> 4241      England   E12000007                   London        <NA>
#> 4242      England   E12000007                   London   E09000001
#> 4243      England   E12000007                   London   E09000002
#> 4244      England   E12000007                   London   E09000002
#> 4245      England   E12000007                   London   E09000002
#> 4246      England   E12000007                   London   E09000003
#> 4247      England   E12000007                   London   E09000003
#> 4248      England   E12000007                   London   E09000003
#> 4249      England   E12000007                   London   E09000004
#> 4250      England   E12000007                   London   E09000004
#> 4251      England   E12000007                   London   E09000004
#> 4252      England   E12000007                   London   E09000005
#> 4253      England   E12000007                   London   E09000005
#> 4254      England   E12000007                   London   E09000005
#> 4255      England   E12000007                   London   E09000006
#> 4256      England   E12000007                   London   E09000006
#> 4257      England   E12000007                   London   E09000006
#> 4258      England   E12000007                   London   E09000007
#> 4259      England   E12000007                   London   E09000007
#> 4260      England   E12000007                   London   E09000007
#> 4261      England   E12000007                   London   E09000008
#> 4262      England   E12000007                   London   E09000008
#> 4263      England   E12000007                   London   E09000008
#> 4264      England   E12000007                   London   E09000009
#> 4265      England   E12000007                   London   E09000009
#> 4266      England   E12000007                   London   E09000009
#> 4267      England   E12000007                   London   E09000010
#> 4268      England   E12000007                   London   E09000010
#> 4269      England   E12000007                   London   E09000010
#> 4270      England   E12000007                   London   E09000011
#> 4271      England   E12000007                   London   E09000011
#> 4272      England   E12000007                   London   E09000011
#> 4273      England   E12000007                   London   E09000012
#> 4274      England   E12000007                   London   E09000012
#> 4275      England   E12000007                   London   E09000012
#> 4276      England   E12000007                   London   E09000013
#> 4277      England   E12000007                   London   E09000013
#> 4278      England   E12000007                   London   E09000013
#> 4279      England   E12000007                   London   E09000014
#> 4280      England   E12000007                   London   E09000014
#> 4281      England   E12000007                   London   E09000014
#> 4282      England   E12000007                   London   E09000015
#> 4283      England   E12000007                   London   E09000015
#> 4284      England   E12000007                   London   E09000015
#> 4285      England   E12000007                   London   E09000016
#> 4286      England   E12000007                   London   E09000016
#> 4287      England   E12000007                   London   E09000016
#> 4288      England   E12000007                   London   E09000017
#> 4289      England   E12000007                   London   E09000017
#> 4290      England   E12000007                   London   E09000017
#> 4291      England   E12000007                   London   E09000018
#> 4292      England   E12000007                   London   E09000018
#> 4293      England   E12000007                   London   E09000018
#> 4294      England   E12000007                   London   E09000019
#> 4295      England   E12000007                   London   E09000019
#> 4296      England   E12000007                   London   E09000019
#> 4297      England   E12000007                   London   E09000020
#> 4298      England   E12000007                   London   E09000020
#> 4299      England   E12000007                   London   E09000020
#> 4300      England   E12000007                   London   E09000021
#> 4301      England   E12000007                   London   E09000021
#> 4302      England   E12000007                   London   E09000021
#> 4303      England   E12000007                   London   E09000022
#> 4304      England   E12000007                   London   E09000022
#> 4305      England   E12000007                   London   E09000022
#> 4306      England   E12000007                   London   E09000023
#> 4307      England   E12000007                   London   E09000023
#> 4308      England   E12000007                   London   E09000023
#> 4309      England   E12000007                   London   E09000024
#> 4310      England   E12000007                   London   E09000024
#> 4311      England   E12000007                   London   E09000024
#> 4312      England   E12000007                   London   E09000025
#> 4313      England   E12000007                   London   E09000025
#> 4314      England   E12000007                   London   E09000025
#> 4315      England   E12000007                   London   E09000026
#> 4316      England   E12000007                   London   E09000026
#> 4317      England   E12000007                   London   E09000026
#> 4318      England   E12000007                   London   E09000027
#> 4319      England   E12000007                   London   E09000027
#> 4320      England   E12000007                   London   E09000027
#> 4321      England   E12000007                   London   E09000028
#> 4322      England   E12000007                   London   E09000028
#> 4323      England   E12000007                   London   E09000028
#> 4324      England   E12000007                   London   E09000029
#> 4325      England   E12000007                   London   E09000029
#> 4326      England   E12000007                   London   E09000029
#> 4327      England   E12000007                   London   E09000030
#> 4328      England   E12000007                   London   E09000030
#> 4329      England   E12000007                   London   E09000030
#> 4330      England   E12000007                   London   E09000031
#> 4331      England   E12000007                   London   E09000031
#> 4332      England   E12000007                   London   E09000031
#> 4333      England   E12000007                   London   E09000032
#> 4334      England   E12000007                   London   E09000032
#> 4335      England   E12000007                   London   E09000032
#> 4336      England   E12000007                   London   E09000033
#> 4337      England   E12000007                   London   E09000033
#> 4338      England   E12000007                   London   E09000033
#> 4339      England   E12000008               South East        <NA>
#> 4340      England   E12000008               South East        <NA>
#> 4341      England   E12000008               South East        <NA>
#> 4342      England   E12000008               South East        <NA>
#> 4343      England   E12000008               South East   E06000035
#> 4344      England   E12000008               South East   E06000035
#> 4345      England   E12000008               South East   E06000035
#> 4346      England   E12000008               South East   E06000036
#> 4347      England   E12000008               South East   E06000036
#> 4348      England   E12000008               South East   E06000036
#> 4349      England   E12000008               South East   E06000037
#> 4350      England   E12000008               South East   E06000037
#> 4351      England   E12000008               South East   E06000037
#> 4352      England   E12000008               South East   E06000038
#> 4353      England   E12000008               South East   E06000038
#> 4354      England   E12000008               South East   E06000038
#> 4355      England   E12000008               South East   E06000039
#> 4356      England   E12000008               South East   E06000039
#> 4357      England   E12000008               South East   E06000039
#> 4358      England   E12000008               South East   E06000040
#> 4359      England   E12000008               South East   E06000040
#> 4360      England   E12000008               South East   E06000040
#> 4361      England   E12000008               South East   E06000041
#> 4362      England   E12000008               South East   E06000041
#> 4363      England   E12000008               South East   E06000041
#> 4364      England   E12000008               South East   E06000042
#> 4365      England   E12000008               South East   E06000042
#> 4366      England   E12000008               South East   E06000042
#> 4367      England   E12000008               South East   E06000043
#> 4368      England   E12000008               South East   E06000043
#> 4369      England   E12000008               South East   E06000043
#> 4370      England   E12000008               South East   E06000044
#> 4371      England   E12000008               South East   E06000044
#> 4372      England   E12000008               South East   E06000044
#> 4373      England   E12000008               South East   E06000045
#> 4374      England   E12000008               South East   E06000045
#> 4375      England   E12000008               South East   E06000045
#> 4376      England   E12000008               South East   E06000046
#> 4377      England   E12000008               South East   E06000046
#> 4378      England   E12000008               South East   E06000046
#> 4379      England   E12000008               South East   E06000060
#> 4380      England   E12000008               South East   E06000060
#> 4381      England   E12000008               South East   E06000060
#> 4382      England   E12000008               South East   E10000011
#> 4383      England   E12000008               South East   E10000011
#> 4384      England   E12000008               South East   E10000011
#> 4385      England   E12000008               South East   E10000014
#> 4386      England   E12000008               South East   E10000014
#> 4387      England   E12000008               South East   E10000014
#> 4388      England   E12000008               South East   E10000016
#> 4389      England   E12000008               South East   E10000016
#> 4390      England   E12000008               South East   E10000016
#> 4391      England   E12000008               South East   E10000025
#> 4392      England   E12000008               South East   E10000025
#> 4393      England   E12000008               South East   E10000025
#> 4394      England   E12000008               South East   E10000030
#> 4395      England   E12000008               South East   E10000030
#> 4396      England   E12000008               South East   E10000030
#> 4397      England   E12000008               South East   E10000032
#> 4398      England   E12000008               South East   E10000032
#> 4399      England   E12000008               South East   E10000032
#> 4400      England   E12000009               South West        <NA>
#> 4401      England   E12000009               South West        <NA>
#> 4402      England   E12000009               South West        <NA>
#> 4403      England   E12000009               South West        <NA>
#> 4404      England   E12000009               South West   E06000022
#> 4405      England   E12000009               South West   E06000022
#> 4406      England   E12000009               South West   E06000022
#> 4407      England   E12000009               South West   E06000023
#> 4408      England   E12000009               South West   E06000023
#> 4409      England   E12000009               South West   E06000023
#> 4410      England   E12000009               South West   E06000024
#> 4411      England   E12000009               South West   E06000024
#> 4412      England   E12000009               South West   E06000024
#> 4413      England   E12000009               South West   E06000025
#> 4414      England   E12000009               South West   E06000025
#> 4415      England   E12000009               South West   E06000025
#> 4416      England   E12000009               South West   E06000026
#> 4417      England   E12000009               South West   E06000026
#> 4418      England   E12000009               South West   E06000026
#> 4419      England   E12000009               South West   E06000027
#> 4420      England   E12000009               South West   E06000027
#> 4421      England   E12000009               South West   E06000027
#> 4422      England   E12000009               South West   E06000030
#> 4423      England   E12000009               South West   E06000030
#> 4424      England   E12000009               South West   E06000030
#> 4425      England   E12000009               South West   E06000052
#> 4426      England   E12000009               South West   E06000052
#> 4427      England   E12000009               South West   E06000052
#> 4428      England   E12000009               South West   E06000053
#> 4429      England   E12000009               South West   E06000054
#> 4430      England   E12000009               South West   E06000054
#> 4431      England   E12000009               South West   E06000054
#> 4432      England   E12000009               South West   E06000058
#> 4433      England   E12000009               South West   E06000058
#> 4434      England   E12000009               South West   E06000058
#> 4435      England   E12000009               South West   E06000059
#> 4436      England   E12000009               South West   E06000059
#> 4437      England   E12000009               South West   E06000059
#> 4438      England   E12000009               South West   E06000066
#> 4439      England   E12000009               South West   E06000066
#> 4440      England   E12000009               South West   E06000066
#> 4441      England   E12000009               South West   E10000008
#> 4442      England   E12000009               South West   E10000008
#> 4443      England   E12000009               South West   E10000008
#> 4444      England   E12000009               South West   E10000013
#> 4445      England   E12000009               South West   E10000013
#> 4446      England   E12000009               South West   E10000013
#> 4447      England        <NA>                     <NA>        <NA>
#> 4448      England        <NA>                     <NA>        <NA>
#> 4449      England        <NA>                     <NA>        <NA>
#> 4450      England        <NA>                     <NA>        <NA>
#> 4451      England   E12000001               North East        <NA>
#> 4452      England   E12000001               North East        <NA>
#> 4453      England   E12000001               North East        <NA>
#> 4454      England   E12000001               North East        <NA>
#> 4455      England   E12000001               North East   E06000001
#> 4456      England   E12000001               North East   E06000001
#> 4457      England   E12000001               North East   E06000001
#> 4458      England   E12000001               North East   E06000002
#> 4459      England   E12000001               North East   E06000002
#> 4460      England   E12000001               North East   E06000002
#> 4461      England   E12000001               North East   E06000003
#> 4462      England   E12000001               North East   E06000003
#> 4463      England   E12000001               North East   E06000003
#> 4464      England   E12000001               North East   E06000004
#> 4465      England   E12000001               North East   E06000004
#> 4466      England   E12000001               North East   E06000004
#> 4467      England   E12000001               North East   E06000005
#> 4468      England   E12000001               North East   E06000005
#> 4469      England   E12000001               North East   E06000005
#> 4470      England   E12000001               North East   E06000047
#> 4471      England   E12000001               North East   E06000047
#> 4472      England   E12000001               North East   E06000047
#> 4473      England   E12000001               North East   E06000057
#> 4474      England   E12000001               North East   E06000057
#> 4475      England   E12000001               North East   E06000057
#> 4476      England   E12000001               North East   E08000021
#> 4477      England   E12000001               North East   E08000021
#> 4478      England   E12000001               North East   E08000021
#> 4479      England   E12000001               North East   E08000022
#> 4480      England   E12000001               North East   E08000022
#> 4481      England   E12000001               North East   E08000022
#> 4482      England   E12000001               North East   E08000023
#> 4483      England   E12000001               North East   E08000023
#> 4484      England   E12000001               North East   E08000023
#> 4485      England   E12000001               North East   E08000024
#> 4486      England   E12000001               North East   E08000024
#> 4487      England   E12000001               North East   E08000024
#> 4488      England   E12000001               North East   E08000037
#> 4489      England   E12000001               North East   E08000037
#> 4490      England   E12000001               North East   E08000037
#> 4491      England   E12000002               North West        <NA>
#> 4492      England   E12000002               North West        <NA>
#> 4493      England   E12000002               North West        <NA>
#> 4494      England   E12000002               North West        <NA>
#> 4495      England   E12000002               North West   E06000006
#> 4496      England   E12000002               North West   E06000006
#> 4497      England   E12000002               North West   E06000006
#> 4498      England   E12000002               North West   E06000007
#> 4499      England   E12000002               North West   E06000007
#> 4500      England   E12000002               North West   E06000007
#> 4501      England   E12000002               North West   E06000008
#> 4502      England   E12000002               North West   E06000008
#> 4503      England   E12000002               North West   E06000008
#> 4504      England   E12000002               North West   E06000009
#> 4505      England   E12000002               North West   E06000009
#> 4506      England   E12000002               North West   E06000009
#> 4507      England   E12000002               North West   E06000049
#> 4508      England   E12000002               North West   E06000049
#> 4509      England   E12000002               North West   E06000049
#> 4510      England   E12000002               North West   E06000050
#> 4511      England   E12000002               North West   E06000050
#> 4512      England   E12000002               North West   E06000050
#> 4513      England   E12000002               North West   E06000063
#> 4514      England   E12000002               North West   E06000063
#> 4515      England   E12000002               North West   E06000063
#> 4516      England   E12000002               North West   E06000064
#> 4517      England   E12000002               North West   E06000064
#> 4518      England   E12000002               North West   E06000064
#> 4519      England   E12000002               North West   E08000001
#> 4520      England   E12000002               North West   E08000001
#> 4521      England   E12000002               North West   E08000001
#> 4522      England   E12000002               North West   E08000002
#> 4523      England   E12000002               North West   E08000002
#> 4524      England   E12000002               North West   E08000002
#> 4525      England   E12000002               North West   E08000003
#> 4526      England   E12000002               North West   E08000003
#> 4527      England   E12000002               North West   E08000003
#> 4528      England   E12000002               North West   E08000004
#> 4529      England   E12000002               North West   E08000004
#> 4530      England   E12000002               North West   E08000004
#> 4531      England   E12000002               North West   E08000005
#> 4532      England   E12000002               North West   E08000005
#> 4533      England   E12000002               North West   E08000005
#> 4534      England   E12000002               North West   E08000006
#> 4535      England   E12000002               North West   E08000006
#> 4536      England   E12000002               North West   E08000006
#> 4537      England   E12000002               North West   E08000007
#> 4538      England   E12000002               North West   E08000007
#> 4539      England   E12000002               North West   E08000007
#> 4540      England   E12000002               North West   E08000008
#> 4541      England   E12000002               North West   E08000008
#> 4542      England   E12000002               North West   E08000008
#> 4543      England   E12000002               North West   E08000009
#> 4544      England   E12000002               North West   E08000009
#> 4545      England   E12000002               North West   E08000009
#> 4546      England   E12000002               North West   E08000010
#> 4547      England   E12000002               North West   E08000010
#> 4548      England   E12000002               North West   E08000010
#> 4549      England   E12000002               North West   E08000011
#> 4550      England   E12000002               North West   E08000011
#> 4551      England   E12000002               North West   E08000011
#> 4552      England   E12000002               North West   E08000012
#> 4553      England   E12000002               North West   E08000012
#> 4554      England   E12000002               North West   E08000012
#> 4555      England   E12000002               North West   E08000013
#> 4556      England   E12000002               North West   E08000013
#> 4557      England   E12000002               North West   E08000013
#> 4558      England   E12000002               North West   E08000014
#> 4559      England   E12000002               North West   E08000014
#> 4560      England   E12000002               North West   E08000014
#> 4561      England   E12000002               North West   E08000015
#> 4562      England   E12000002               North West   E08000015
#> 4563      England   E12000002               North West   E08000015
#> 4564      England   E12000002               North West   E10000017
#> 4565      England   E12000002               North West   E10000017
#> 4566      England   E12000002               North West   E10000017
#> 4567      England   E12000003 Yorkshire and The Humber        <NA>
#> 4568      England   E12000003 Yorkshire and The Humber        <NA>
#> 4569      England   E12000003 Yorkshire and The Humber        <NA>
#> 4570      England   E12000003 Yorkshire and The Humber        <NA>
#> 4571      England   E12000003 Yorkshire and The Humber   E06000010
#> 4572      England   E12000003 Yorkshire and The Humber   E06000010
#> 4573      England   E12000003 Yorkshire and The Humber   E06000010
#> 4574      England   E12000003 Yorkshire and The Humber   E06000011
#> 4575      England   E12000003 Yorkshire and The Humber   E06000011
#> 4576      England   E12000003 Yorkshire and The Humber   E06000011
#> 4577      England   E12000003 Yorkshire and The Humber   E06000012
#> 4578      England   E12000003 Yorkshire and The Humber   E06000012
#> 4579      England   E12000003 Yorkshire and The Humber   E06000012
#> 4580      England   E12000003 Yorkshire and The Humber   E06000013
#> 4581      England   E12000003 Yorkshire and The Humber   E06000013
#> 4582      England   E12000003 Yorkshire and The Humber   E06000013
#> 4583      England   E12000003 Yorkshire and The Humber   E06000014
#> 4584      England   E12000003 Yorkshire and The Humber   E06000014
#> 4585      England   E12000003 Yorkshire and The Humber   E06000014
#> 4586      England   E12000003 Yorkshire and The Humber   E06000065
#> 4587      England   E12000003 Yorkshire and The Humber   E06000065
#> 4588      England   E12000003 Yorkshire and The Humber   E06000065
#> 4589      England   E12000003 Yorkshire and The Humber   E08000016
#> 4590      England   E12000003 Yorkshire and The Humber   E08000016
#> 4591      England   E12000003 Yorkshire and The Humber   E08000016
#> 4592      England   E12000003 Yorkshire and The Humber   E08000017
#> 4593      England   E12000003 Yorkshire and The Humber   E08000017
#> 4594      England   E12000003 Yorkshire and The Humber   E08000017
#> 4595      England   E12000003 Yorkshire and The Humber   E08000018
#> 4596      England   E12000003 Yorkshire and The Humber   E08000018
#> 4597      England   E12000003 Yorkshire and The Humber   E08000018
#> 4598      England   E12000003 Yorkshire and The Humber   E08000019
#> 4599      England   E12000003 Yorkshire and The Humber   E08000019
#> 4600      England   E12000003 Yorkshire and The Humber   E08000019
#> 4601      England   E12000003 Yorkshire and The Humber   E08000032
#> 4602      England   E12000003 Yorkshire and The Humber   E08000032
#> 4603      England   E12000003 Yorkshire and The Humber   E08000032
#> 4604      England   E12000003 Yorkshire and The Humber   E08000033
#> 4605      England   E12000003 Yorkshire and The Humber   E08000033
#> 4606      England   E12000003 Yorkshire and The Humber   E08000033
#> 4607      England   E12000003 Yorkshire and The Humber   E08000034
#> 4608      England   E12000003 Yorkshire and The Humber   E08000034
#> 4609      England   E12000003 Yorkshire and The Humber   E08000034
#> 4610      England   E12000003 Yorkshire and The Humber   E08000035
#> 4611      England   E12000003 Yorkshire and The Humber   E08000035
#> 4612      England   E12000003 Yorkshire and The Humber   E08000035
#> 4613      England   E12000003 Yorkshire and The Humber   E08000036
#> 4614      England   E12000003 Yorkshire and The Humber   E08000036
#> 4615      England   E12000003 Yorkshire and The Humber   E08000036
#> 4616      England   E12000004            East Midlands        <NA>
#> 4617      England   E12000004            East Midlands        <NA>
#> 4618      England   E12000004            East Midlands        <NA>
#> 4619      England   E12000004            East Midlands        <NA>
#> 4620      England   E12000004            East Midlands   E06000015
#> 4621      England   E12000004            East Midlands   E06000015
#> 4622      England   E12000004            East Midlands   E06000015
#> 4623      England   E12000004            East Midlands   E06000016
#> 4624      England   E12000004            East Midlands   E06000016
#> 4625      England   E12000004            East Midlands   E06000016
#> 4626      England   E12000004            East Midlands   E06000017
#> 4627      England   E12000004            East Midlands   E06000017
#> 4628      England   E12000004            East Midlands   E06000018
#> 4629      England   E12000004            East Midlands   E06000018
#> 4630      England   E12000004            East Midlands   E06000018
#> 4631      England   E12000004            East Midlands   E06000061
#> 4632      England   E12000004            East Midlands   E06000061
#> 4633      England   E12000004            East Midlands   E06000061
#> 4634      England   E12000004            East Midlands   E06000062
#> 4635      England   E12000004            East Midlands   E06000062
#> 4636      England   E12000004            East Midlands   E06000062
#> 4637      England   E12000004            East Midlands   E10000007
#> 4638      England   E12000004            East Midlands   E10000007
#> 4639      England   E12000004            East Midlands   E10000007
#> 4640      England   E12000004            East Midlands   E10000018
#> 4641      England   E12000004            East Midlands   E10000018
#> 4642      England   E12000004            East Midlands   E10000018
#> 4643      England   E12000004            East Midlands   E10000019
#> 4644      England   E12000004            East Midlands   E10000019
#> 4645      England   E12000004            East Midlands   E10000019
#> 4646      England   E12000004            East Midlands   E10000024
#> 4647      England   E12000004            East Midlands   E10000024
#> 4648      England   E12000004            East Midlands   E10000024
#> 4649      England   E12000005            West Midlands        <NA>
#> 4650      England   E12000005            West Midlands        <NA>
#> 4651      England   E12000005            West Midlands        <NA>
#> 4652      England   E12000005            West Midlands        <NA>
#> 4653      England   E12000005            West Midlands   E06000019
#> 4654      England   E12000005            West Midlands   E06000019
#> 4655      England   E12000005            West Midlands   E06000019
#> 4656      England   E12000005            West Midlands   E06000020
#> 4657      England   E12000005            West Midlands   E06000020
#> 4658      England   E12000005            West Midlands   E06000020
#> 4659      England   E12000005            West Midlands   E06000021
#> 4660      England   E12000005            West Midlands   E06000021
#> 4661      England   E12000005            West Midlands   E06000021
#> 4662      England   E12000005            West Midlands   E06000051
#> 4663      England   E12000005            West Midlands   E06000051
#> 4664      England   E12000005            West Midlands   E06000051
#> 4665      England   E12000005            West Midlands   E08000025
#> 4666      England   E12000005            West Midlands   E08000025
#> 4667      England   E12000005            West Midlands   E08000025
#> 4668      England   E12000005            West Midlands   E08000026
#> 4669      England   E12000005            West Midlands   E08000026
#> 4670      England   E12000005            West Midlands   E08000026
#> 4671      England   E12000005            West Midlands   E08000027
#> 4672      England   E12000005            West Midlands   E08000027
#> 4673      England   E12000005            West Midlands   E08000027
#> 4674      England   E12000005            West Midlands   E08000028
#> 4675      England   E12000005            West Midlands   E08000028
#> 4676      England   E12000005            West Midlands   E08000028
#> 4677      England   E12000005            West Midlands   E08000029
#> 4678      England   E12000005            West Midlands   E08000029
#> 4679      England   E12000005            West Midlands   E08000029
#> 4680      England   E12000005            West Midlands   E08000030
#> 4681      England   E12000005            West Midlands   E08000030
#> 4682      England   E12000005            West Midlands   E08000030
#> 4683      England   E12000005            West Midlands   E08000031
#> 4684      England   E12000005            West Midlands   E08000031
#> 4685      England   E12000005            West Midlands   E08000031
#> 4686      England   E12000005            West Midlands   E10000028
#> 4687      England   E12000005            West Midlands   E10000028
#> 4688      England   E12000005            West Midlands   E10000028
#> 4689      England   E12000005            West Midlands   E10000031
#> 4690      England   E12000005            West Midlands   E10000031
#> 4691      England   E12000005            West Midlands   E10000031
#> 4692      England   E12000005            West Midlands   E10000034
#> 4693      England   E12000005            West Midlands   E10000034
#> 4694      England   E12000005            West Midlands   E10000034
#> 4695      England   E12000006          East of England        <NA>
#> 4696      England   E12000006          East of England        <NA>
#> 4697      England   E12000006          East of England        <NA>
#> 4698      England   E12000006          East of England        <NA>
#> 4699      England   E12000006          East of England   E06000031
#> 4700      England   E12000006          East of England   E06000031
#> 4701      England   E12000006          East of England   E06000031
#> 4702      England   E12000006          East of England   E06000032
#> 4703      England   E12000006          East of England   E06000032
#> 4704      England   E12000006          East of England   E06000032
#> 4705      England   E12000006          East of England   E06000033
#> 4706      England   E12000006          East of England   E06000033
#> 4707      England   E12000006          East of England   E06000033
#> 4708      England   E12000006          East of England   E06000034
#> 4709      England   E12000006          East of England   E06000034
#> 4710      England   E12000006          East of England   E06000034
#> 4711      England   E12000006          East of England   E06000055
#> 4712      England   E12000006          East of England   E06000055
#> 4713      England   E12000006          East of England   E06000055
#> 4714      England   E12000006          East of England   E06000056
#> 4715      England   E12000006          East of England   E06000056
#> 4716      England   E12000006          East of England   E06000056
#> 4717      England   E12000006          East of England   E10000003
#> 4718      England   E12000006          East of England   E10000003
#> 4719      England   E12000006          East of England   E10000003
#> 4720      England   E12000006          East of England   E10000012
#> 4721      England   E12000006          East of England   E10000012
#> 4722      England   E12000006          East of England   E10000012
#> 4723      England   E12000006          East of England   E10000015
#> 4724      England   E12000006          East of England   E10000015
#> 4725      England   E12000006          East of England   E10000015
#> 4726      England   E12000006          East of England   E10000020
#> 4727      England   E12000006          East of England   E10000020
#> 4728      England   E12000006          East of England   E10000020
#> 4729      England   E12000006          East of England   E10000029
#> 4730      England   E12000006          East of England   E10000029
#> 4731      England   E12000006          East of England   E10000029
#> 4732      England   E12000007                   London        <NA>
#> 4733      England   E12000007                   London        <NA>
#> 4734      England   E12000007                   London        <NA>
#> 4735      England   E12000007                   London        <NA>
#> 4736      England   E12000007                   London   E09000001
#> 4737      England   E12000007                   London   E09000002
#> 4738      England   E12000007                   London   E09000002
#> 4739      England   E12000007                   London   E09000002
#> 4740      England   E12000007                   London   E09000003
#> 4741      England   E12000007                   London   E09000003
#> 4742      England   E12000007                   London   E09000003
#> 4743      England   E12000007                   London   E09000004
#> 4744      England   E12000007                   London   E09000004
#> 4745      England   E12000007                   London   E09000004
#> 4746      England   E12000007                   London   E09000005
#> 4747      England   E12000007                   London   E09000005
#> 4748      England   E12000007                   London   E09000005
#> 4749      England   E12000007                   London   E09000006
#> 4750      England   E12000007                   London   E09000006
#> 4751      England   E12000007                   London   E09000006
#> 4752      England   E12000007                   London   E09000007
#> 4753      England   E12000007                   London   E09000007
#> 4754      England   E12000007                   London   E09000007
#> 4755      England   E12000007                   London   E09000008
#> 4756      England   E12000007                   London   E09000008
#> 4757      England   E12000007                   London   E09000008
#> 4758      England   E12000007                   London   E09000009
#> 4759      England   E12000007                   London   E09000009
#> 4760      England   E12000007                   London   E09000009
#> 4761      England   E12000007                   London   E09000010
#> 4762      England   E12000007                   London   E09000010
#> 4763      England   E12000007                   London   E09000010
#> 4764      England   E12000007                   London   E09000011
#> 4765      England   E12000007                   London   E09000011
#> 4766      England   E12000007                   London   E09000011
#> 4767      England   E12000007                   London   E09000012
#> 4768      England   E12000007                   London   E09000012
#> 4769      England   E12000007                   London   E09000012
#> 4770      England   E12000007                   London   E09000013
#> 4771      England   E12000007                   London   E09000013
#> 4772      England   E12000007                   London   E09000013
#> 4773      England   E12000007                   London   E09000014
#> 4774      England   E12000007                   London   E09000014
#> 4775      England   E12000007                   London   E09000014
#> 4776      England   E12000007                   London   E09000015
#> 4777      England   E12000007                   London   E09000015
#> 4778      England   E12000007                   London   E09000015
#> 4779      England   E12000007                   London   E09000016
#> 4780      England   E12000007                   London   E09000016
#> 4781      England   E12000007                   London   E09000016
#> 4782      England   E12000007                   London   E09000017
#> 4783      England   E12000007                   London   E09000017
#> 4784      England   E12000007                   London   E09000017
#> 4785      England   E12000007                   London   E09000018
#> 4786      England   E12000007                   London   E09000018
#> 4787      England   E12000007                   London   E09000018
#> 4788      England   E12000007                   London   E09000019
#> 4789      England   E12000007                   London   E09000019
#> 4790      England   E12000007                   London   E09000019
#> 4791      England   E12000007                   London   E09000020
#> 4792      England   E12000007                   London   E09000020
#> 4793      England   E12000007                   London   E09000020
#> 4794      England   E12000007                   London   E09000021
#> 4795      England   E12000007                   London   E09000021
#> 4796      England   E12000007                   London   E09000021
#> 4797      England   E12000007                   London   E09000022
#> 4798      England   E12000007                   London   E09000022
#> 4799      England   E12000007                   London   E09000022
#> 4800      England   E12000007                   London   E09000023
#> 4801      England   E12000007                   London   E09000023
#> 4802      England   E12000007                   London   E09000023
#> 4803      England   E12000007                   London   E09000024
#> 4804      England   E12000007                   London   E09000024
#> 4805      England   E12000007                   London   E09000024
#> 4806      England   E12000007                   London   E09000025
#> 4807      England   E12000007                   London   E09000025
#> 4808      England   E12000007                   London   E09000025
#> 4809      England   E12000007                   London   E09000026
#> 4810      England   E12000007                   London   E09000026
#> 4811      England   E12000007                   London   E09000026
#> 4812      England   E12000007                   London   E09000027
#> 4813      England   E12000007                   London   E09000027
#> 4814      England   E12000007                   London   E09000027
#> 4815      England   E12000007                   London   E09000028
#> 4816      England   E12000007                   London   E09000028
#> 4817      England   E12000007                   London   E09000028
#> 4818      England   E12000007                   London   E09000029
#> 4819      England   E12000007                   London   E09000029
#> 4820      England   E12000007                   London   E09000029
#> 4821      England   E12000007                   London   E09000030
#> 4822      England   E12000007                   London   E09000030
#> 4823      England   E12000007                   London   E09000030
#> 4824      England   E12000007                   London   E09000031
#> 4825      England   E12000007                   London   E09000031
#> 4826      England   E12000007                   London   E09000031
#> 4827      England   E12000007                   London   E09000032
#> 4828      England   E12000007                   London   E09000032
#> 4829      England   E12000007                   London   E09000032
#> 4830      England   E12000007                   London   E09000033
#> 4831      England   E12000007                   London   E09000033
#> 4832      England   E12000007                   London   E09000033
#> 4833      England   E12000008               South East        <NA>
#> 4834      England   E12000008               South East        <NA>
#> 4835      England   E12000008               South East        <NA>
#> 4836      England   E12000008               South East        <NA>
#> 4837      England   E12000008               South East   E06000035
#> 4838      England   E12000008               South East   E06000035
#> 4839      England   E12000008               South East   E06000035
#> 4840      England   E12000008               South East   E06000036
#> 4841      England   E12000008               South East   E06000036
#> 4842      England   E12000008               South East   E06000036
#> 4843      England   E12000008               South East   E06000037
#> 4844      England   E12000008               South East   E06000037
#> 4845      England   E12000008               South East   E06000037
#> 4846      England   E12000008               South East   E06000038
#> 4847      England   E12000008               South East   E06000038
#> 4848      England   E12000008               South East   E06000038
#> 4849      England   E12000008               South East   E06000039
#> 4850      England   E12000008               South East   E06000039
#> 4851      England   E12000008               South East   E06000039
#> 4852      England   E12000008               South East   E06000040
#> 4853      England   E12000008               South East   E06000040
#> 4854      England   E12000008               South East   E06000040
#> 4855      England   E12000008               South East   E06000041
#> 4856      England   E12000008               South East   E06000041
#> 4857      England   E12000008               South East   E06000041
#> 4858      England   E12000008               South East   E06000042
#> 4859      England   E12000008               South East   E06000042
#> 4860      England   E12000008               South East   E06000042
#> 4861      England   E12000008               South East   E06000043
#> 4862      England   E12000008               South East   E06000043
#> 4863      England   E12000008               South East   E06000043
#> 4864      England   E12000008               South East   E06000044
#> 4865      England   E12000008               South East   E06000044
#> 4866      England   E12000008               South East   E06000044
#> 4867      England   E12000008               South East   E06000045
#> 4868      England   E12000008               South East   E06000045
#> 4869      England   E12000008               South East   E06000045
#> 4870      England   E12000008               South East   E06000046
#> 4871      England   E12000008               South East   E06000046
#> 4872      England   E12000008               South East   E06000046
#> 4873      England   E12000008               South East   E06000060
#> 4874      England   E12000008               South East   E06000060
#> 4875      England   E12000008               South East   E06000060
#> 4876      England   E12000008               South East   E10000011
#> 4877      England   E12000008               South East   E10000011
#> 4878      England   E12000008               South East   E10000011
#> 4879      England   E12000008               South East   E10000014
#> 4880      England   E12000008               South East   E10000014
#> 4881      England   E12000008               South East   E10000014
#> 4882      England   E12000008               South East   E10000016
#> 4883      England   E12000008               South East   E10000016
#> 4884      England   E12000008               South East   E10000016
#> 4885      England   E12000008               South East   E10000025
#> 4886      England   E12000008               South East   E10000025
#> 4887      England   E12000008               South East   E10000025
#> 4888      England   E12000008               South East   E10000030
#> 4889      England   E12000008               South East   E10000030
#> 4890      England   E12000008               South East   E10000030
#> 4891      England   E12000008               South East   E10000032
#> 4892      England   E12000008               South East   E10000032
#> 4893      England   E12000008               South East   E10000032
#> 4894      England   E12000009               South West        <NA>
#> 4895      England   E12000009               South West        <NA>
#> 4896      England   E12000009               South West        <NA>
#> 4897      England   E12000009               South West        <NA>
#> 4898      England   E12000009               South West   E06000022
#> 4899      England   E12000009               South West   E06000022
#> 4900      England   E12000009               South West   E06000022
#> 4901      England   E12000009               South West   E06000023
#> 4902      England   E12000009               South West   E06000023
#> 4903      England   E12000009               South West   E06000023
#> 4904      England   E12000009               South West   E06000024
#> 4905      England   E12000009               South West   E06000024
#> 4906      England   E12000009               South West   E06000024
#> 4907      England   E12000009               South West   E06000025
#> 4908      England   E12000009               South West   E06000025
#> 4909      England   E12000009               South West   E06000025
#> 4910      England   E12000009               South West   E06000026
#> 4911      England   E12000009               South West   E06000026
#> 4912      England   E12000009               South West   E06000026
#> 4913      England   E12000009               South West   E06000027
#> 4914      England   E12000009               South West   E06000027
#> 4915      England   E12000009               South West   E06000027
#> 4916      England   E12000009               South West   E06000030
#> 4917      England   E12000009               South West   E06000030
#> 4918      England   E12000009               South West   E06000030
#> 4919      England   E12000009               South West   E06000052
#> 4920      England   E12000009               South West   E06000052
#> 4921      England   E12000009               South West   E06000052
#> 4922      England   E12000009               South West   E06000053
#> 4923      England   E12000009               South West   E06000054
#> 4924      England   E12000009               South West   E06000054
#> 4925      England   E12000009               South West   E06000054
#> 4926      England   E12000009               South West   E06000058
#> 4927      England   E12000009               South West   E06000058
#> 4928      England   E12000009               South West   E06000058
#> 4929      England   E12000009               South West   E06000059
#> 4930      England   E12000009               South West   E06000059
#> 4931      England   E12000009               South West   E06000059
#> 4932      England   E12000009               South West   E06000066
#> 4933      England   E12000009               South West   E06000066
#> 4934      England   E12000009               South West   E06000066
#> 4935      England   E12000009               South West   E10000008
#> 4936      England   E12000009               South West   E10000008
#> 4937      England   E12000009               South West   E10000008
#> 4938      England   E12000009               South West   E10000013
#> 4939      England   E12000009               South West   E10000013
#> 4940      England   E12000009               South West   E10000013
#> 4941      England        <NA>                     <NA>        <NA>
#> 4942      England        <NA>                     <NA>        <NA>
#> 4943      England        <NA>                     <NA>        <NA>
#> 4944      England        <NA>                     <NA>        <NA>
#> 4945      England   E12000001               North East        <NA>
#> 4946      England   E12000001               North East        <NA>
#> 4947      England   E12000001               North East        <NA>
#> 4948      England   E12000001               North East        <NA>
#> 4949      England   E12000001               North East   E06000001
#> 4950      England   E12000001               North East   E06000001
#> 4951      England   E12000001               North East   E06000001
#> 4952      England   E12000001               North East   E06000002
#> 4953      England   E12000001               North East   E06000002
#> 4954      England   E12000001               North East   E06000002
#> 4955      England   E12000001               North East   E06000003
#> 4956      England   E12000001               North East   E06000003
#> 4957      England   E12000001               North East   E06000003
#> 4958      England   E12000001               North East   E06000004
#> 4959      England   E12000001               North East   E06000004
#> 4960      England   E12000001               North East   E06000004
#> 4961      England   E12000001               North East   E06000005
#> 4962      England   E12000001               North East   E06000005
#> 4963      England   E12000001               North East   E06000005
#> 4964      England   E12000001               North East   E06000047
#> 4965      England   E12000001               North East   E06000047
#> 4966      England   E12000001               North East   E06000047
#> 4967      England   E12000001               North East   E06000057
#> 4968      England   E12000001               North East   E06000057
#> 4969      England   E12000001               North East   E06000057
#> 4970      England   E12000001               North East   E08000021
#> 4971      England   E12000001               North East   E08000021
#> 4972      England   E12000001               North East   E08000021
#> 4973      England   E12000001               North East   E08000022
#> 4974      England   E12000001               North East   E08000022
#> 4975      England   E12000001               North East   E08000022
#> 4976      England   E12000001               North East   E08000023
#> 4977      England   E12000001               North East   E08000023
#> 4978      England   E12000001               North East   E08000023
#> 4979      England   E12000001               North East   E08000024
#> 4980      England   E12000001               North East   E08000024
#> 4981      England   E12000001               North East   E08000024
#> 4982      England   E12000001               North East   E08000037
#> 4983      England   E12000001               North East   E08000037
#> 4984      England   E12000001               North East   E08000037
#> 4985      England   E12000002               North West        <NA>
#> 4986      England   E12000002               North West        <NA>
#> 4987      England   E12000002               North West        <NA>
#> 4988      England   E12000002               North West        <NA>
#> 4989      England   E12000002               North West   E06000006
#> 4990      England   E12000002               North West   E06000006
#> 4991      England   E12000002               North West   E06000006
#> 4992      England   E12000002               North West   E06000007
#> 4993      England   E12000002               North West   E06000007
#> 4994      England   E12000002               North West   E06000007
#> 4995      England   E12000002               North West   E06000008
#> 4996      England   E12000002               North West   E06000008
#> 4997      England   E12000002               North West   E06000008
#> 4998      England   E12000002               North West   E06000009
#> 4999      England   E12000002               North West   E06000009
#> 5000      England   E12000002               North West   E06000009
#> 5001      England   E12000002               North West   E06000049
#> 5002      England   E12000002               North West   E06000049
#> 5003      England   E12000002               North West   E06000049
#> 5004      England   E12000002               North West   E06000050
#> 5005      England   E12000002               North West   E06000050
#> 5006      England   E12000002               North West   E06000050
#> 5007      England   E12000002               North West   E06000063
#> 5008      England   E12000002               North West   E06000063
#> 5009      England   E12000002               North West   E06000063
#> 5010      England   E12000002               North West   E06000064
#> 5011      England   E12000002               North West   E06000064
#> 5012      England   E12000002               North West   E06000064
#> 5013      England   E12000002               North West   E08000001
#> 5014      England   E12000002               North West   E08000001
#> 5015      England   E12000002               North West   E08000001
#> 5016      England   E12000002               North West   E08000002
#> 5017      England   E12000002               North West   E08000002
#> 5018      England   E12000002               North West   E08000002
#> 5019      England   E12000002               North West   E08000003
#> 5020      England   E12000002               North West   E08000003
#> 5021      England   E12000002               North West   E08000003
#> 5022      England   E12000002               North West   E08000004
#> 5023      England   E12000002               North West   E08000004
#> 5024      England   E12000002               North West   E08000004
#> 5025      England   E12000002               North West   E08000005
#> 5026      England   E12000002               North West   E08000005
#> 5027      England   E12000002               North West   E08000005
#> 5028      England   E12000002               North West   E08000006
#> 5029      England   E12000002               North West   E08000006
#> 5030      England   E12000002               North West   E08000006
#> 5031      England   E12000002               North West   E08000007
#> 5032      England   E12000002               North West   E08000007
#> 5033      England   E12000002               North West   E08000007
#> 5034      England   E12000002               North West   E08000008
#> 5035      England   E12000002               North West   E08000008
#> 5036      England   E12000002               North West   E08000008
#> 5037      England   E12000002               North West   E08000009
#> 5038      England   E12000002               North West   E08000009
#> 5039      England   E12000002               North West   E08000009
#> 5040      England   E12000002               North West   E08000010
#> 5041      England   E12000002               North West   E08000010
#> 5042      England   E12000002               North West   E08000010
#> 5043      England   E12000002               North West   E08000011
#> 5044      England   E12000002               North West   E08000011
#> 5045      England   E12000002               North West   E08000011
#> 5046      England   E12000002               North West   E08000012
#> 5047      England   E12000002               North West   E08000012
#> 5048      England   E12000002               North West   E08000012
#> 5049      England   E12000002               North West   E08000013
#> 5050      England   E12000002               North West   E08000013
#> 5051      England   E12000002               North West   E08000013
#> 5052      England   E12000002               North West   E08000014
#> 5053      England   E12000002               North West   E08000014
#> 5054      England   E12000002               North West   E08000014
#> 5055      England   E12000002               North West   E08000015
#> 5056      England   E12000002               North West   E08000015
#> 5057      England   E12000002               North West   E08000015
#> 5058      England   E12000002               North West   E10000017
#> 5059      England   E12000002               North West   E10000017
#> 5060      England   E12000002               North West   E10000017
#> 5061      England   E12000003 Yorkshire and The Humber        <NA>
#> 5062      England   E12000003 Yorkshire and The Humber        <NA>
#> 5063      England   E12000003 Yorkshire and The Humber        <NA>
#> 5064      England   E12000003 Yorkshire and The Humber        <NA>
#> 5065      England   E12000003 Yorkshire and The Humber   E06000010
#> 5066      England   E12000003 Yorkshire and The Humber   E06000010
#> 5067      England   E12000003 Yorkshire and The Humber   E06000010
#> 5068      England   E12000003 Yorkshire and The Humber   E06000011
#> 5069      England   E12000003 Yorkshire and The Humber   E06000011
#> 5070      England   E12000003 Yorkshire and The Humber   E06000011
#> 5071      England   E12000003 Yorkshire and The Humber   E06000012
#> 5072      England   E12000003 Yorkshire and The Humber   E06000012
#> 5073      England   E12000003 Yorkshire and The Humber   E06000012
#> 5074      England   E12000003 Yorkshire and The Humber   E06000013
#> 5075      England   E12000003 Yorkshire and The Humber   E06000013
#> 5076      England   E12000003 Yorkshire and The Humber   E06000013
#> 5077      England   E12000003 Yorkshire and The Humber   E06000014
#> 5078      England   E12000003 Yorkshire and The Humber   E06000014
#> 5079      England   E12000003 Yorkshire and The Humber   E06000014
#> 5080      England   E12000003 Yorkshire and The Humber   E06000065
#> 5081      England   E12000003 Yorkshire and The Humber   E06000065
#> 5082      England   E12000003 Yorkshire and The Humber   E06000065
#> 5083      England   E12000003 Yorkshire and The Humber   E08000016
#> 5084      England   E12000003 Yorkshire and The Humber   E08000016
#> 5085      England   E12000003 Yorkshire and The Humber   E08000016
#> 5086      England   E12000003 Yorkshire and The Humber   E08000017
#> 5087      England   E12000003 Yorkshire and The Humber   E08000017
#> 5088      England   E12000003 Yorkshire and The Humber   E08000017
#> 5089      England   E12000003 Yorkshire and The Humber   E08000018
#> 5090      England   E12000003 Yorkshire and The Humber   E08000018
#> 5091      England   E12000003 Yorkshire and The Humber   E08000018
#> 5092      England   E12000003 Yorkshire and The Humber   E08000019
#> 5093      England   E12000003 Yorkshire and The Humber   E08000019
#> 5094      England   E12000003 Yorkshire and The Humber   E08000019
#> 5095      England   E12000003 Yorkshire and The Humber   E08000032
#> 5096      England   E12000003 Yorkshire and The Humber   E08000032
#> 5097      England   E12000003 Yorkshire and The Humber   E08000032
#> 5098      England   E12000003 Yorkshire and The Humber   E08000033
#> 5099      England   E12000003 Yorkshire and The Humber   E08000033
#> 5100      England   E12000003 Yorkshire and The Humber   E08000033
#> 5101      England   E12000003 Yorkshire and The Humber   E08000034
#> 5102      England   E12000003 Yorkshire and The Humber   E08000034
#> 5103      England   E12000003 Yorkshire and The Humber   E08000034
#> 5104      England   E12000003 Yorkshire and The Humber   E08000035
#> 5105      England   E12000003 Yorkshire and The Humber   E08000035
#> 5106      England   E12000003 Yorkshire and The Humber   E08000035
#> 5107      England   E12000003 Yorkshire and The Humber   E08000036
#> 5108      England   E12000003 Yorkshire and The Humber   E08000036
#> 5109      England   E12000003 Yorkshire and The Humber   E08000036
#> 5110      England   E12000004            East Midlands        <NA>
#> 5111      England   E12000004            East Midlands        <NA>
#> 5112      England   E12000004            East Midlands        <NA>
#> 5113      England   E12000004            East Midlands        <NA>
#> 5114      England   E12000004            East Midlands   E06000015
#> 5115      England   E12000004            East Midlands   E06000015
#> 5116      England   E12000004            East Midlands   E06000015
#> 5117      England   E12000004            East Midlands   E06000016
#> 5118      England   E12000004            East Midlands   E06000016
#> 5119      England   E12000004            East Midlands   E06000016
#> 5120      England   E12000004            East Midlands   E06000017
#> 5121      England   E12000004            East Midlands   E06000017
#> 5122      England   E12000004            East Midlands   E06000018
#> 5123      England   E12000004            East Midlands   E06000018
#> 5124      England   E12000004            East Midlands   E06000018
#> 5125      England   E12000004            East Midlands   E06000061
#> 5126      England   E12000004            East Midlands   E06000061
#> 5127      England   E12000004            East Midlands   E06000061
#> 5128      England   E12000004            East Midlands   E06000062
#> 5129      England   E12000004            East Midlands   E06000062
#> 5130      England   E12000004            East Midlands   E06000062
#> 5131      England   E12000004            East Midlands   E10000007
#> 5132      England   E12000004            East Midlands   E10000007
#> 5133      England   E12000004            East Midlands   E10000007
#> 5134      England   E12000004            East Midlands   E10000018
#> 5135      England   E12000004            East Midlands   E10000018
#> 5136      England   E12000004            East Midlands   E10000018
#> 5137      England   E12000004            East Midlands   E10000019
#> 5138      England   E12000004            East Midlands   E10000019
#> 5139      England   E12000004            East Midlands   E10000019
#> 5140      England   E12000004            East Midlands   E10000024
#> 5141      England   E12000004            East Midlands   E10000024
#> 5142      England   E12000004            East Midlands   E10000024
#> 5143      England   E12000005            West Midlands        <NA>
#> 5144      England   E12000005            West Midlands        <NA>
#> 5145      England   E12000005            West Midlands        <NA>
#> 5146      England   E12000005            West Midlands        <NA>
#> 5147      England   E12000005            West Midlands   E06000019
#> 5148      England   E12000005            West Midlands   E06000019
#> 5149      England   E12000005            West Midlands   E06000019
#> 5150      England   E12000005            West Midlands   E06000020
#> 5151      England   E12000005            West Midlands   E06000020
#> 5152      England   E12000005            West Midlands   E06000020
#> 5153      England   E12000005            West Midlands   E06000021
#> 5154      England   E12000005            West Midlands   E06000021
#> 5155      England   E12000005            West Midlands   E06000021
#> 5156      England   E12000005            West Midlands   E06000051
#> 5157      England   E12000005            West Midlands   E06000051
#> 5158      England   E12000005            West Midlands   E06000051
#> 5159      England   E12000005            West Midlands   E08000025
#> 5160      England   E12000005            West Midlands   E08000025
#> 5161      England   E12000005            West Midlands   E08000025
#> 5162      England   E12000005            West Midlands   E08000026
#> 5163      England   E12000005            West Midlands   E08000026
#> 5164      England   E12000005            West Midlands   E08000026
#> 5165      England   E12000005            West Midlands   E08000027
#> 5166      England   E12000005            West Midlands   E08000027
#> 5167      England   E12000005            West Midlands   E08000027
#> 5168      England   E12000005            West Midlands   E08000028
#> 5169      England   E12000005            West Midlands   E08000028
#> 5170      England   E12000005            West Midlands   E08000028
#> 5171      England   E12000005            West Midlands   E08000029
#> 5172      England   E12000005            West Midlands   E08000029
#> 5173      England   E12000005            West Midlands   E08000029
#> 5174      England   E12000005            West Midlands   E08000030
#> 5175      England   E12000005            West Midlands   E08000030
#> 5176      England   E12000005            West Midlands   E08000030
#> 5177      England   E12000005            West Midlands   E08000031
#> 5178      England   E12000005            West Midlands   E08000031
#> 5179      England   E12000005            West Midlands   E08000031
#> 5180      England   E12000005            West Midlands   E10000028
#> 5181      England   E12000005            West Midlands   E10000028
#> 5182      England   E12000005            West Midlands   E10000028
#> 5183      England   E12000005            West Midlands   E10000031
#> 5184      England   E12000005            West Midlands   E10000031
#> 5185      England   E12000005            West Midlands   E10000031
#> 5186      England   E12000005            West Midlands   E10000034
#> 5187      England   E12000005            West Midlands   E10000034
#> 5188      England   E12000005            West Midlands   E10000034
#> 5189      England   E12000006          East of England        <NA>
#> 5190      England   E12000006          East of England        <NA>
#> 5191      England   E12000006          East of England        <NA>
#> 5192      England   E12000006          East of England        <NA>
#> 5193      England   E12000006          East of England   E06000031
#> 5194      England   E12000006          East of England   E06000031
#> 5195      England   E12000006          East of England   E06000031
#> 5196      England   E12000006          East of England   E06000032
#> 5197      England   E12000006          East of England   E06000032
#> 5198      England   E12000006          East of England   E06000032
#> 5199      England   E12000006          East of England   E06000033
#> 5200      England   E12000006          East of England   E06000033
#> 5201      England   E12000006          East of England   E06000033
#> 5202      England   E12000006          East of England   E06000034
#> 5203      England   E12000006          East of England   E06000034
#> 5204      England   E12000006          East of England   E06000034
#> 5205      England   E12000006          East of England   E06000055
#> 5206      England   E12000006          East of England   E06000055
#> 5207      England   E12000006          East of England   E06000055
#> 5208      England   E12000006          East of England   E06000056
#> 5209      England   E12000006          East of England   E06000056
#> 5210      England   E12000006          East of England   E06000056
#> 5211      England   E12000006          East of England   E10000003
#> 5212      England   E12000006          East of England   E10000003
#> 5213      England   E12000006          East of England   E10000003
#> 5214      England   E12000006          East of England   E10000012
#> 5215      England   E12000006          East of England   E10000012
#> 5216      England   E12000006          East of England   E10000012
#> 5217      England   E12000006          East of England   E10000015
#> 5218      England   E12000006          East of England   E10000015
#> 5219      England   E12000006          East of England   E10000015
#> 5220      England   E12000006          East of England   E10000020
#> 5221      England   E12000006          East of England   E10000020
#> 5222      England   E12000006          East of England   E10000020
#> 5223      England   E12000006          East of England   E10000029
#> 5224      England   E12000006          East of England   E10000029
#> 5225      England   E12000006          East of England   E10000029
#> 5226      England   E12000007                   London        <NA>
#> 5227      England   E12000007                   London        <NA>
#> 5228      England   E12000007                   London        <NA>
#> 5229      England   E12000007                   London        <NA>
#> 5230      England   E12000007                   London   E09000001
#> 5231      England   E12000007                   London   E09000002
#> 5232      England   E12000007                   London   E09000002
#> 5233      England   E12000007                   London   E09000002
#> 5234      England   E12000007                   London   E09000003
#> 5235      England   E12000007                   London   E09000003
#> 5236      England   E12000007                   London   E09000003
#> 5237      England   E12000007                   London   E09000004
#> 5238      England   E12000007                   London   E09000004
#> 5239      England   E12000007                   London   E09000004
#> 5240      England   E12000007                   London   E09000005
#> 5241      England   E12000007                   London   E09000005
#> 5242      England   E12000007                   London   E09000005
#> 5243      England   E12000007                   London   E09000006
#> 5244      England   E12000007                   London   E09000006
#> 5245      England   E12000007                   London   E09000006
#> 5246      England   E12000007                   London   E09000007
#> 5247      England   E12000007                   London   E09000007
#> 5248      England   E12000007                   London   E09000007
#> 5249      England   E12000007                   London   E09000008
#> 5250      England   E12000007                   London   E09000008
#> 5251      England   E12000007                   London   E09000008
#> 5252      England   E12000007                   London   E09000009
#> 5253      England   E12000007                   London   E09000009
#> 5254      England   E12000007                   London   E09000009
#> 5255      England   E12000007                   London   E09000010
#> 5256      England   E12000007                   London   E09000010
#> 5257      England   E12000007                   London   E09000010
#> 5258      England   E12000007                   London   E09000011
#> 5259      England   E12000007                   London   E09000011
#> 5260      England   E12000007                   London   E09000011
#> 5261      England   E12000007                   London   E09000012
#> 5262      England   E12000007                   London   E09000012
#> 5263      England   E12000007                   London   E09000012
#> 5264      England   E12000007                   London   E09000013
#> 5265      England   E12000007                   London   E09000013
#> 5266      England   E12000007                   London   E09000013
#> 5267      England   E12000007                   London   E09000014
#> 5268      England   E12000007                   London   E09000014
#> 5269      England   E12000007                   London   E09000014
#> 5270      England   E12000007                   London   E09000015
#> 5271      England   E12000007                   London   E09000015
#> 5272      England   E12000007                   London   E09000015
#> 5273      England   E12000007                   London   E09000016
#> 5274      England   E12000007                   London   E09000016
#> 5275      England   E12000007                   London   E09000016
#> 5276      England   E12000007                   London   E09000017
#> 5277      England   E12000007                   London   E09000017
#> 5278      England   E12000007                   London   E09000017
#> 5279      England   E12000007                   London   E09000018
#> 5280      England   E12000007                   London   E09000018
#> 5281      England   E12000007                   London   E09000018
#> 5282      England   E12000007                   London   E09000019
#> 5283      England   E12000007                   London   E09000019
#> 5284      England   E12000007                   London   E09000019
#> 5285      England   E12000007                   London   E09000020
#> 5286      England   E12000007                   London   E09000020
#> 5287      England   E12000007                   London   E09000020
#> 5288      England   E12000007                   London   E09000021
#> 5289      England   E12000007                   London   E09000021
#> 5290      England   E12000007                   London   E09000021
#> 5291      England   E12000007                   London   E09000022
#> 5292      England   E12000007                   London   E09000022
#> 5293      England   E12000007                   London   E09000022
#> 5294      England   E12000007                   London   E09000023
#> 5295      England   E12000007                   London   E09000023
#> 5296      England   E12000007                   London   E09000023
#> 5297      England   E12000007                   London   E09000024
#> 5298      England   E12000007                   London   E09000024
#> 5299      England   E12000007                   London   E09000024
#> 5300      England   E12000007                   London   E09000025
#> 5301      England   E12000007                   London   E09000025
#> 5302      England   E12000007                   London   E09000025
#> 5303      England   E12000007                   London   E09000026
#> 5304      England   E12000007                   London   E09000026
#> 5305      England   E12000007                   London   E09000026
#> 5306      England   E12000007                   London   E09000027
#> 5307      England   E12000007                   London   E09000027
#> 5308      England   E12000007                   London   E09000027
#> 5309      England   E12000007                   London   E09000028
#> 5310      England   E12000007                   London   E09000028
#> 5311      England   E12000007                   London   E09000028
#> 5312      England   E12000007                   London   E09000029
#> 5313      England   E12000007                   London   E09000029
#> 5314      England   E12000007                   London   E09000029
#> 5315      England   E12000007                   London   E09000030
#> 5316      England   E12000007                   London   E09000030
#> 5317      England   E12000007                   London   E09000030
#> 5318      England   E12000007                   London   E09000031
#> 5319      England   E12000007                   London   E09000031
#> 5320      England   E12000007                   London   E09000031
#> 5321      England   E12000007                   London   E09000032
#> 5322      England   E12000007                   London   E09000032
#> 5323      England   E12000007                   London   E09000032
#> 5324      England   E12000007                   London   E09000033
#> 5325      England   E12000007                   London   E09000033
#> 5326      England   E12000007                   London   E09000033
#> 5327      England   E12000008               South East        <NA>
#> 5328      England   E12000008               South East        <NA>
#> 5329      England   E12000008               South East        <NA>
#> 5330      England   E12000008               South East        <NA>
#> 5331      England   E12000008               South East   E06000035
#> 5332      England   E12000008               South East   E06000035
#> 5333      England   E12000008               South East   E06000035
#> 5334      England   E12000008               South East   E06000036
#> 5335      England   E12000008               South East   E06000036
#> 5336      England   E12000008               South East   E06000036
#> 5337      England   E12000008               South East   E06000037
#> 5338      England   E12000008               South East   E06000037
#> 5339      England   E12000008               South East   E06000037
#> 5340      England   E12000008               South East   E06000038
#> 5341      England   E12000008               South East   E06000038
#> 5342      England   E12000008               South East   E06000038
#> 5343      England   E12000008               South East   E06000039
#> 5344      England   E12000008               South East   E06000039
#> 5345      England   E12000008               South East   E06000039
#> 5346      England   E12000008               South East   E06000040
#> 5347      England   E12000008               South East   E06000040
#> 5348      England   E12000008               South East   E06000040
#> 5349      England   E12000008               South East   E06000041
#> 5350      England   E12000008               South East   E06000041
#> 5351      England   E12000008               South East   E06000041
#> 5352      England   E12000008               South East   E06000042
#> 5353      England   E12000008               South East   E06000042
#> 5354      England   E12000008               South East   E06000042
#> 5355      England   E12000008               South East   E06000043
#> 5356      England   E12000008               South East   E06000043
#> 5357      England   E12000008               South East   E06000043
#> 5358      England   E12000008               South East   E06000044
#> 5359      England   E12000008               South East   E06000044
#> 5360      England   E12000008               South East   E06000044
#> 5361      England   E12000008               South East   E06000045
#> 5362      England   E12000008               South East   E06000045
#> 5363      England   E12000008               South East   E06000045
#> 5364      England   E12000008               South East   E06000046
#> 5365      England   E12000008               South East   E06000046
#> 5366      England   E12000008               South East   E06000046
#> 5367      England   E12000008               South East   E06000060
#> 5368      England   E12000008               South East   E06000060
#> 5369      England   E12000008               South East   E06000060
#> 5370      England   E12000008               South East   E10000011
#> 5371      England   E12000008               South East   E10000011
#> 5372      England   E12000008               South East   E10000011
#> 5373      England   E12000008               South East   E10000014
#> 5374      England   E12000008               South East   E10000014
#> 5375      England   E12000008               South East   E10000014
#> 5376      England   E12000008               South East   E10000016
#> 5377      England   E12000008               South East   E10000016
#> 5378      England   E12000008               South East   E10000016
#> 5379      England   E12000008               South East   E10000025
#> 5380      England   E12000008               South East   E10000025
#> 5381      England   E12000008               South East   E10000025
#> 5382      England   E12000008               South East   E10000030
#> 5383      England   E12000008               South East   E10000030
#> 5384      England   E12000008               South East   E10000030
#> 5385      England   E12000008               South East   E10000032
#> 5386      England   E12000008               South East   E10000032
#> 5387      England   E12000008               South East   E10000032
#> 5388      England   E12000009               South West        <NA>
#> 5389      England   E12000009               South West        <NA>
#> 5390      England   E12000009               South West        <NA>
#> 5391      England   E12000009               South West        <NA>
#> 5392      England   E12000009               South West   E06000022
#> 5393      England   E12000009               South West   E06000022
#> 5394      England   E12000009               South West   E06000022
#> 5395      England   E12000009               South West   E06000023
#> 5396      England   E12000009               South West   E06000023
#> 5397      England   E12000009               South West   E06000023
#> 5398      England   E12000009               South West   E06000024
#> 5399      England   E12000009               South West   E06000024
#> 5400      England   E12000009               South West   E06000024
#> 5401      England   E12000009               South West   E06000025
#> 5402      England   E12000009               South West   E06000025
#> 5403      England   E12000009               South West   E06000025
#> 5404      England   E12000009               South West   E06000026
#> 5405      England   E12000009               South West   E06000026
#> 5406      England   E12000009               South West   E06000026
#> 5407      England   E12000009               South West   E06000027
#> 5408      England   E12000009               South West   E06000027
#> 5409      England   E12000009               South West   E06000027
#> 5410      England   E12000009               South West   E06000030
#> 5411      England   E12000009               South West   E06000030
#> 5412      England   E12000009               South West   E06000030
#> 5413      England   E12000009               South West   E06000052
#> 5414      England   E12000009               South West   E06000052
#> 5415      England   E12000009               South West   E06000052
#> 5416      England   E12000009               South West   E06000053
#> 5417      England   E12000009               South West   E06000054
#> 5418      England   E12000009               South West   E06000054
#> 5419      England   E12000009               South West   E06000054
#> 5420      England   E12000009               South West   E06000058
#> 5421      England   E12000009               South West   E06000058
#> 5422      England   E12000009               South West   E06000058
#> 5423      England   E12000009               South West   E06000059
#> 5424      England   E12000009               South West   E06000059
#> 5425      England   E12000009               South West   E06000059
#> 5426      England   E12000009               South West   E06000066
#> 5427      England   E12000009               South West   E06000066
#> 5428      England   E12000009               South West   E06000066
#> 5429      England   E12000009               South West   E10000008
#> 5430      England   E12000009               South West   E10000008
#> 5431      England   E12000009               South West   E10000008
#> 5432      England   E12000009               South West   E10000013
#> 5433      England   E12000009               South West   E10000013
#> 5434      England   E12000009               South West   E10000013
#> 5435      England        <NA>                     <NA>        <NA>
#> 5436      England        <NA>                     <NA>        <NA>
#> 5437      England        <NA>                     <NA>        <NA>
#> 5438      England        <NA>                     <NA>        <NA>
#> 5439      England   E12000001               North East        <NA>
#> 5440      England   E12000001               North East        <NA>
#> 5441      England   E12000001               North East        <NA>
#> 5442      England   E12000001               North East        <NA>
#> 5443      England   E12000001               North East   E06000001
#> 5444      England   E12000001               North East   E06000001
#> 5445      England   E12000001               North East   E06000001
#> 5446      England   E12000001               North East   E06000002
#> 5447      England   E12000001               North East   E06000002
#> 5448      England   E12000001               North East   E06000002
#> 5449      England   E12000001               North East   E06000003
#> 5450      England   E12000001               North East   E06000003
#> 5451      England   E12000001               North East   E06000003
#> 5452      England   E12000001               North East   E06000004
#> 5453      England   E12000001               North East   E06000004
#> 5454      England   E12000001               North East   E06000004
#> 5455      England   E12000001               North East   E06000005
#> 5456      England   E12000001               North East   E06000005
#> 5457      England   E12000001               North East   E06000005
#> 5458      England   E12000001               North East   E06000047
#> 5459      England   E12000001               North East   E06000047
#> 5460      England   E12000001               North East   E06000047
#> 5461      England   E12000001               North East   E06000057
#> 5462      England   E12000001               North East   E06000057
#> 5463      England   E12000001               North East   E06000057
#> 5464      England   E12000001               North East   E08000021
#> 5465      England   E12000001               North East   E08000021
#> 5466      England   E12000001               North East   E08000021
#> 5467      England   E12000001               North East   E08000022
#> 5468      England   E12000001               North East   E08000022
#> 5469      England   E12000001               North East   E08000022
#> 5470      England   E12000001               North East   E08000023
#> 5471      England   E12000001               North East   E08000023
#> 5472      England   E12000001               North East   E08000023
#> 5473      England   E12000001               North East   E08000024
#> 5474      England   E12000001               North East   E08000024
#> 5475      England   E12000001               North East   E08000024
#> 5476      England   E12000001               North East   E08000037
#> 5477      England   E12000001               North East   E08000037
#> 5478      England   E12000001               North East   E08000037
#> 5479      England   E12000002               North West        <NA>
#> 5480      England   E12000002               North West        <NA>
#> 5481      England   E12000002               North West        <NA>
#> 5482      England   E12000002               North West        <NA>
#> 5483      England   E12000002               North West   E06000006
#> 5484      England   E12000002               North West   E06000006
#> 5485      England   E12000002               North West   E06000006
#> 5486      England   E12000002               North West   E06000007
#> 5487      England   E12000002               North West   E06000007
#> 5488      England   E12000002               North West   E06000007
#> 5489      England   E12000002               North West   E06000008
#> 5490      England   E12000002               North West   E06000008
#> 5491      England   E12000002               North West   E06000008
#> 5492      England   E12000002               North West   E06000009
#> 5493      England   E12000002               North West   E06000009
#> 5494      England   E12000002               North West   E06000009
#> 5495      England   E12000002               North West   E06000049
#> 5496      England   E12000002               North West   E06000049
#> 5497      England   E12000002               North West   E06000049
#> 5498      England   E12000002               North West   E06000050
#> 5499      England   E12000002               North West   E06000050
#> 5500      England   E12000002               North West   E06000050
#> 5501      England   E12000002               North West   E06000063
#> 5502      England   E12000002               North West   E06000063
#> 5503      England   E12000002               North West   E06000063
#> 5504      England   E12000002               North West   E06000064
#> 5505      England   E12000002               North West   E06000064
#> 5506      England   E12000002               North West   E06000064
#> 5507      England   E12000002               North West   E08000001
#> 5508      England   E12000002               North West   E08000001
#> 5509      England   E12000002               North West   E08000001
#> 5510      England   E12000002               North West   E08000002
#> 5511      England   E12000002               North West   E08000002
#> 5512      England   E12000002               North West   E08000002
#> 5513      England   E12000002               North West   E08000003
#> 5514      England   E12000002               North West   E08000003
#> 5515      England   E12000002               North West   E08000003
#> 5516      England   E12000002               North West   E08000004
#> 5517      England   E12000002               North West   E08000004
#> 5518      England   E12000002               North West   E08000004
#> 5519      England   E12000002               North West   E08000005
#> 5520      England   E12000002               North West   E08000005
#> 5521      England   E12000002               North West   E08000005
#> 5522      England   E12000002               North West   E08000006
#> 5523      England   E12000002               North West   E08000006
#> 5524      England   E12000002               North West   E08000006
#> 5525      England   E12000002               North West   E08000007
#> 5526      England   E12000002               North West   E08000007
#> 5527      England   E12000002               North West   E08000007
#> 5528      England   E12000002               North West   E08000008
#> 5529      England   E12000002               North West   E08000008
#> 5530      England   E12000002               North West   E08000008
#> 5531      England   E12000002               North West   E08000009
#> 5532      England   E12000002               North West   E08000009
#> 5533      England   E12000002               North West   E08000009
#> 5534      England   E12000002               North West   E08000010
#> 5535      England   E12000002               North West   E08000010
#> 5536      England   E12000002               North West   E08000010
#> 5537      England   E12000002               North West   E08000011
#> 5538      England   E12000002               North West   E08000011
#> 5539      England   E12000002               North West   E08000011
#> 5540      England   E12000002               North West   E08000012
#> 5541      England   E12000002               North West   E08000012
#> 5542      England   E12000002               North West   E08000012
#> 5543      England   E12000002               North West   E08000013
#> 5544      England   E12000002               North West   E08000013
#> 5545      England   E12000002               North West   E08000013
#> 5546      England   E12000002               North West   E08000014
#> 5547      England   E12000002               North West   E08000014
#> 5548      England   E12000002               North West   E08000014
#> 5549      England   E12000002               North West   E08000015
#> 5550      England   E12000002               North West   E08000015
#> 5551      England   E12000002               North West   E08000015
#> 5552      England   E12000002               North West   E10000017
#> 5553      England   E12000002               North West   E10000017
#> 5554      England   E12000002               North West   E10000017
#> 5555      England   E12000003 Yorkshire and The Humber        <NA>
#> 5556      England   E12000003 Yorkshire and The Humber        <NA>
#> 5557      England   E12000003 Yorkshire and The Humber        <NA>
#> 5558      England   E12000003 Yorkshire and The Humber        <NA>
#> 5559      England   E12000003 Yorkshire and The Humber   E06000010
#> 5560      England   E12000003 Yorkshire and The Humber   E06000010
#> 5561      England   E12000003 Yorkshire and The Humber   E06000010
#> 5562      England   E12000003 Yorkshire and The Humber   E06000011
#> 5563      England   E12000003 Yorkshire and The Humber   E06000011
#> 5564      England   E12000003 Yorkshire and The Humber   E06000011
#> 5565      England   E12000003 Yorkshire and The Humber   E06000012
#> 5566      England   E12000003 Yorkshire and The Humber   E06000012
#> 5567      England   E12000003 Yorkshire and The Humber   E06000012
#> 5568      England   E12000003 Yorkshire and The Humber   E06000013
#> 5569      England   E12000003 Yorkshire and The Humber   E06000013
#> 5570      England   E12000003 Yorkshire and The Humber   E06000013
#> 5571      England   E12000003 Yorkshire and The Humber   E06000014
#> 5572      England   E12000003 Yorkshire and The Humber   E06000014
#> 5573      England   E12000003 Yorkshire and The Humber   E06000014
#> 5574      England   E12000003 Yorkshire and The Humber   E06000065
#> 5575      England   E12000003 Yorkshire and The Humber   E06000065
#> 5576      England   E12000003 Yorkshire and The Humber   E06000065
#> 5577      England   E12000003 Yorkshire and The Humber   E08000016
#> 5578      England   E12000003 Yorkshire and The Humber   E08000016
#> 5579      England   E12000003 Yorkshire and The Humber   E08000016
#> 5580      England   E12000003 Yorkshire and The Humber   E08000017
#> 5581      England   E12000003 Yorkshire and The Humber   E08000017
#> 5582      England   E12000003 Yorkshire and The Humber   E08000017
#> 5583      England   E12000003 Yorkshire and The Humber   E08000018
#> 5584      England   E12000003 Yorkshire and The Humber   E08000018
#> 5585      England   E12000003 Yorkshire and The Humber   E08000018
#> 5586      England   E12000003 Yorkshire and The Humber   E08000019
#> 5587      England   E12000003 Yorkshire and The Humber   E08000019
#> 5588      England   E12000003 Yorkshire and The Humber   E08000019
#> 5589      England   E12000003 Yorkshire and The Humber   E08000032
#> 5590      England   E12000003 Yorkshire and The Humber   E08000032
#> 5591      England   E12000003 Yorkshire and The Humber   E08000032
#> 5592      England   E12000003 Yorkshire and The Humber   E08000033
#> 5593      England   E12000003 Yorkshire and The Humber   E08000033
#> 5594      England   E12000003 Yorkshire and The Humber   E08000033
#> 5595      England   E12000003 Yorkshire and The Humber   E08000034
#> 5596      England   E12000003 Yorkshire and The Humber   E08000034
#> 5597      England   E12000003 Yorkshire and The Humber   E08000034
#> 5598      England   E12000003 Yorkshire and The Humber   E08000035
#> 5599      England   E12000003 Yorkshire and The Humber   E08000035
#> 5600      England   E12000003 Yorkshire and The Humber   E08000035
#> 5601      England   E12000003 Yorkshire and The Humber   E08000036
#> 5602      England   E12000003 Yorkshire and The Humber   E08000036
#> 5603      England   E12000003 Yorkshire and The Humber   E08000036
#> 5604      England   E12000004            East Midlands        <NA>
#> 5605      England   E12000004            East Midlands        <NA>
#> 5606      England   E12000004            East Midlands        <NA>
#> 5607      England   E12000004            East Midlands        <NA>
#> 5608      England   E12000004            East Midlands   E06000015
#> 5609      England   E12000004            East Midlands   E06000015
#> 5610      England   E12000004            East Midlands   E06000015
#> 5611      England   E12000004            East Midlands   E06000016
#> 5612      England   E12000004            East Midlands   E06000016
#> 5613      England   E12000004            East Midlands   E06000016
#> 5614      England   E12000004            East Midlands   E06000017
#> 5615      England   E12000004            East Midlands   E06000017
#> 5616      England   E12000004            East Midlands   E06000018
#> 5617      England   E12000004            East Midlands   E06000018
#> 5618      England   E12000004            East Midlands   E06000018
#> 5619      England   E12000004            East Midlands   E06000061
#> 5620      England   E12000004            East Midlands   E06000061
#> 5621      England   E12000004            East Midlands   E06000061
#> 5622      England   E12000004            East Midlands   E06000062
#> 5623      England   E12000004            East Midlands   E06000062
#> 5624      England   E12000004            East Midlands   E06000062
#> 5625      England   E12000004            East Midlands   E10000007
#> 5626      England   E12000004            East Midlands   E10000007
#> 5627      England   E12000004            East Midlands   E10000007
#> 5628      England   E12000004            East Midlands   E10000018
#> 5629      England   E12000004            East Midlands   E10000018
#> 5630      England   E12000004            East Midlands   E10000018
#> 5631      England   E12000004            East Midlands   E10000019
#> 5632      England   E12000004            East Midlands   E10000019
#> 5633      England   E12000004            East Midlands   E10000019
#> 5634      England   E12000004            East Midlands   E10000024
#> 5635      England   E12000004            East Midlands   E10000024
#> 5636      England   E12000004            East Midlands   E10000024
#> 5637      England   E12000005            West Midlands        <NA>
#> 5638      England   E12000005            West Midlands        <NA>
#> 5639      England   E12000005            West Midlands        <NA>
#> 5640      England   E12000005            West Midlands        <NA>
#> 5641      England   E12000005            West Midlands   E06000019
#> 5642      England   E12000005            West Midlands   E06000019
#> 5643      England   E12000005            West Midlands   E06000019
#> 5644      England   E12000005            West Midlands   E06000020
#> 5645      England   E12000005            West Midlands   E06000020
#> 5646      England   E12000005            West Midlands   E06000020
#> 5647      England   E12000005            West Midlands   E06000021
#> 5648      England   E12000005            West Midlands   E06000021
#> 5649      England   E12000005            West Midlands   E06000021
#> 5650      England   E12000005            West Midlands   E06000051
#> 5651      England   E12000005            West Midlands   E06000051
#> 5652      England   E12000005            West Midlands   E06000051
#> 5653      England   E12000005            West Midlands   E08000025
#> 5654      England   E12000005            West Midlands   E08000025
#> 5655      England   E12000005            West Midlands   E08000025
#> 5656      England   E12000005            West Midlands   E08000026
#> 5657      England   E12000005            West Midlands   E08000026
#> 5658      England   E12000005            West Midlands   E08000026
#> 5659      England   E12000005            West Midlands   E08000027
#> 5660      England   E12000005            West Midlands   E08000027
#> 5661      England   E12000005            West Midlands   E08000027
#> 5662      England   E12000005            West Midlands   E08000028
#> 5663      England   E12000005            West Midlands   E08000028
#> 5664      England   E12000005            West Midlands   E08000028
#> 5665      England   E12000005            West Midlands   E08000029
#> 5666      England   E12000005            West Midlands   E08000029
#> 5667      England   E12000005            West Midlands   E08000029
#> 5668      England   E12000005            West Midlands   E08000030
#> 5669      England   E12000005            West Midlands   E08000030
#> 5670      England   E12000005            West Midlands   E08000030
#> 5671      England   E12000005            West Midlands   E08000031
#> 5672      England   E12000005            West Midlands   E08000031
#> 5673      England   E12000005            West Midlands   E08000031
#> 5674      England   E12000005            West Midlands   E10000028
#> 5675      England   E12000005            West Midlands   E10000028
#> 5676      England   E12000005            West Midlands   E10000028
#> 5677      England   E12000005            West Midlands   E10000031
#> 5678      England   E12000005            West Midlands   E10000031
#> 5679      England   E12000005            West Midlands   E10000031
#> 5680      England   E12000005            West Midlands   E10000034
#> 5681      England   E12000005            West Midlands   E10000034
#> 5682      England   E12000005            West Midlands   E10000034
#> 5683      England   E12000006          East of England        <NA>
#> 5684      England   E12000006          East of England        <NA>
#> 5685      England   E12000006          East of England        <NA>
#> 5686      England   E12000006          East of England        <NA>
#> 5687      England   E12000006          East of England   E06000031
#> 5688      England   E12000006          East of England   E06000031
#> 5689      England   E12000006          East of England   E06000031
#> 5690      England   E12000006          East of England   E06000032
#> 5691      England   E12000006          East of England   E06000032
#> 5692      England   E12000006          East of England   E06000032
#> 5693      England   E12000006          East of England   E06000033
#> 5694      England   E12000006          East of England   E06000033
#> 5695      England   E12000006          East of England   E06000033
#> 5696      England   E12000006          East of England   E06000034
#> 5697      England   E12000006          East of England   E06000034
#> 5698      England   E12000006          East of England   E06000034
#> 5699      England   E12000006          East of England   E06000055
#> 5700      England   E12000006          East of England   E06000055
#> 5701      England   E12000006          East of England   E06000055
#> 5702      England   E12000006          East of England   E06000056
#> 5703      England   E12000006          East of England   E06000056
#> 5704      England   E12000006          East of England   E06000056
#> 5705      England   E12000006          East of England   E10000003
#> 5706      England   E12000006          East of England   E10000003
#> 5707      England   E12000006          East of England   E10000003
#> 5708      England   E12000006          East of England   E10000012
#> 5709      England   E12000006          East of England   E10000012
#> 5710      England   E12000006          East of England   E10000012
#> 5711      England   E12000006          East of England   E10000015
#> 5712      England   E12000006          East of England   E10000015
#> 5713      England   E12000006          East of England   E10000015
#> 5714      England   E12000006          East of England   E10000020
#> 5715      England   E12000006          East of England   E10000020
#> 5716      England   E12000006          East of England   E10000020
#> 5717      England   E12000006          East of England   E10000029
#> 5718      England   E12000006          East of England   E10000029
#> 5719      England   E12000006          East of England   E10000029
#> 5720      England   E12000007                   London        <NA>
#> 5721      England   E12000007                   London        <NA>
#> 5722      England   E12000007                   London        <NA>
#> 5723      England   E12000007                   London        <NA>
#> 5724      England   E12000007                   London   E09000001
#> 5725      England   E12000007                   London   E09000002
#> 5726      England   E12000007                   London   E09000002
#> 5727      England   E12000007                   London   E09000002
#> 5728      England   E12000007                   London   E09000003
#> 5729      England   E12000007                   London   E09000003
#> 5730      England   E12000007                   London   E09000003
#> 5731      England   E12000007                   London   E09000004
#> 5732      England   E12000007                   London   E09000004
#> 5733      England   E12000007                   London   E09000004
#> 5734      England   E12000007                   London   E09000005
#> 5735      England   E12000007                   London   E09000005
#> 5736      England   E12000007                   London   E09000005
#> 5737      England   E12000007                   London   E09000006
#> 5738      England   E12000007                   London   E09000006
#> 5739      England   E12000007                   London   E09000006
#> 5740      England   E12000007                   London   E09000007
#> 5741      England   E12000007                   London   E09000007
#> 5742      England   E12000007                   London   E09000007
#> 5743      England   E12000007                   London   E09000008
#> 5744      England   E12000007                   London   E09000008
#> 5745      England   E12000007                   London   E09000008
#> 5746      England   E12000007                   London   E09000009
#> 5747      England   E12000007                   London   E09000009
#> 5748      England   E12000007                   London   E09000009
#> 5749      England   E12000007                   London   E09000010
#> 5750      England   E12000007                   London   E09000010
#> 5751      England   E12000007                   London   E09000010
#> 5752      England   E12000007                   London   E09000011
#> 5753      England   E12000007                   London   E09000011
#> 5754      England   E12000007                   London   E09000011
#> 5755      England   E12000007                   London   E09000012
#> 5756      England   E12000007                   London   E09000012
#> 5757      England   E12000007                   London   E09000012
#> 5758      England   E12000007                   London   E09000013
#> 5759      England   E12000007                   London   E09000013
#> 5760      England   E12000007                   London   E09000013
#> 5761      England   E12000007                   London   E09000014
#> 5762      England   E12000007                   London   E09000014
#> 5763      England   E12000007                   London   E09000014
#> 5764      England   E12000007                   London   E09000015
#> 5765      England   E12000007                   London   E09000015
#> 5766      England   E12000007                   London   E09000015
#> 5767      England   E12000007                   London   E09000016
#> 5768      England   E12000007                   London   E09000016
#> 5769      England   E12000007                   London   E09000016
#> 5770      England   E12000007                   London   E09000017
#> 5771      England   E12000007                   London   E09000017
#> 5772      England   E12000007                   London   E09000017
#> 5773      England   E12000007                   London   E09000018
#> 5774      England   E12000007                   London   E09000018
#> 5775      England   E12000007                   London   E09000018
#> 5776      England   E12000007                   London   E09000019
#> 5777      England   E12000007                   London   E09000019
#> 5778      England   E12000007                   London   E09000019
#> 5779      England   E12000007                   London   E09000020
#> 5780      England   E12000007                   London   E09000020
#> 5781      England   E12000007                   London   E09000020
#> 5782      England   E12000007                   London   E09000021
#> 5783      England   E12000007                   London   E09000021
#> 5784      England   E12000007                   London   E09000021
#> 5785      England   E12000007                   London   E09000022
#> 5786      England   E12000007                   London   E09000022
#> 5787      England   E12000007                   London   E09000022
#> 5788      England   E12000007                   London   E09000023
#> 5789      England   E12000007                   London   E09000023
#> 5790      England   E12000007                   London   E09000023
#> 5791      England   E12000007                   London   E09000024
#> 5792      England   E12000007                   London   E09000024
#> 5793      England   E12000007                   London   E09000024
#> 5794      England   E12000007                   London   E09000025
#> 5795      England   E12000007                   London   E09000025
#> 5796      England   E12000007                   London   E09000025
#> 5797      England   E12000007                   London   E09000026
#> 5798      England   E12000007                   London   E09000026
#> 5799      England   E12000007                   London   E09000026
#> 5800      England   E12000007                   London   E09000027
#> 5801      England   E12000007                   London   E09000027
#> 5802      England   E12000007                   London   E09000027
#> 5803      England   E12000007                   London   E09000028
#> 5804      England   E12000007                   London   E09000028
#> 5805      England   E12000007                   London   E09000028
#> 5806      England   E12000007                   London   E09000029
#> 5807      England   E12000007                   London   E09000029
#> 5808      England   E12000007                   London   E09000029
#> 5809      England   E12000007                   London   E09000030
#> 5810      England   E12000007                   London   E09000030
#> 5811      England   E12000007                   London   E09000030
#> 5812      England   E12000007                   London   E09000031
#> 5813      England   E12000007                   London   E09000031
#> 5814      England   E12000007                   London   E09000031
#> 5815      England   E12000007                   London   E09000032
#> 5816      England   E12000007                   London   E09000032
#> 5817      England   E12000007                   London   E09000032
#> 5818      England   E12000007                   London   E09000033
#> 5819      England   E12000007                   London   E09000033
#> 5820      England   E12000007                   London   E09000033
#> 5821      England   E12000008               South East        <NA>
#> 5822      England   E12000008               South East        <NA>
#> 5823      England   E12000008               South East        <NA>
#> 5824      England   E12000008               South East        <NA>
#> 5825      England   E12000008               South East   E06000035
#> 5826      England   E12000008               South East   E06000035
#> 5827      England   E12000008               South East   E06000035
#> 5828      England   E12000008               South East   E06000036
#> 5829      England   E12000008               South East   E06000036
#> 5830      England   E12000008               South East   E06000036
#> 5831      England   E12000008               South East   E06000037
#> 5832      England   E12000008               South East   E06000037
#> 5833      England   E12000008               South East   E06000037
#> 5834      England   E12000008               South East   E06000038
#> 5835      England   E12000008               South East   E06000038
#> 5836      England   E12000008               South East   E06000038
#> 5837      England   E12000008               South East   E06000039
#> 5838      England   E12000008               South East   E06000039
#> 5839      England   E12000008               South East   E06000039
#> 5840      England   E12000008               South East   E06000040
#> 5841      England   E12000008               South East   E06000040
#> 5842      England   E12000008               South East   E06000040
#> 5843      England   E12000008               South East   E06000041
#> 5844      England   E12000008               South East   E06000041
#> 5845      England   E12000008               South East   E06000041
#> 5846      England   E12000008               South East   E06000042
#> 5847      England   E12000008               South East   E06000042
#> 5848      England   E12000008               South East   E06000042
#> 5849      England   E12000008               South East   E06000043
#> 5850      England   E12000008               South East   E06000043
#> 5851      England   E12000008               South East   E06000043
#> 5852      England   E12000008               South East   E06000044
#> 5853      England   E12000008               South East   E06000044
#> 5854      England   E12000008               South East   E06000044
#> 5855      England   E12000008               South East   E06000045
#> 5856      England   E12000008               South East   E06000045
#> 5857      England   E12000008               South East   E06000045
#> 5858      England   E12000008               South East   E06000046
#> 5859      England   E12000008               South East   E06000046
#> 5860      England   E12000008               South East   E06000046
#> 5861      England   E12000008               South East   E06000060
#> 5862      England   E12000008               South East   E06000060
#> 5863      England   E12000008               South East   E06000060
#> 5864      England   E12000008               South East   E10000011
#> 5865      England   E12000008               South East   E10000011
#> 5866      England   E12000008               South East   E10000011
#> 5867      England   E12000008               South East   E10000014
#> 5868      England   E12000008               South East   E10000014
#> 5869      England   E12000008               South East   E10000014
#> 5870      England   E12000008               South East   E10000016
#> 5871      England   E12000008               South East   E10000016
#> 5872      England   E12000008               South East   E10000016
#> 5873      England   E12000008               South East   E10000025
#> 5874      England   E12000008               South East   E10000025
#> 5875      England   E12000008               South East   E10000025
#> 5876      England   E12000008               South East   E10000030
#> 5877      England   E12000008               South East   E10000030
#> 5878      England   E12000008               South East   E10000030
#> 5879      England   E12000008               South East   E10000032
#> 5880      England   E12000008               South East   E10000032
#> 5881      England   E12000008               South East   E10000032
#> 5882      England   E12000009               South West        <NA>
#> 5883      England   E12000009               South West        <NA>
#> 5884      England   E12000009               South West        <NA>
#> 5885      England   E12000009               South West        <NA>
#> 5886      England   E12000009               South West   E06000022
#> 5887      England   E12000009               South West   E06000022
#> 5888      England   E12000009               South West   E06000022
#> 5889      England   E12000009               South West   E06000023
#> 5890      England   E12000009               South West   E06000023
#> 5891      England   E12000009               South West   E06000023
#> 5892      England   E12000009               South West   E06000024
#> 5893      England   E12000009               South West   E06000024
#> 5894      England   E12000009               South West   E06000024
#> 5895      England   E12000009               South West   E06000025
#> 5896      England   E12000009               South West   E06000025
#> 5897      England   E12000009               South West   E06000025
#> 5898      England   E12000009               South West   E06000026
#> 5899      England   E12000009               South West   E06000026
#> 5900      England   E12000009               South West   E06000026
#> 5901      England   E12000009               South West   E06000027
#> 5902      England   E12000009               South West   E06000027
#> 5903      England   E12000009               South West   E06000027
#> 5904      England   E12000009               South West   E06000030
#> 5905      England   E12000009               South West   E06000030
#> 5906      England   E12000009               South West   E06000030
#> 5907      England   E12000009               South West   E06000052
#> 5908      England   E12000009               South West   E06000052
#> 5909      England   E12000009               South West   E06000052
#> 5910      England   E12000009               South West   E06000053
#> 5911      England   E12000009               South West   E06000054
#> 5912      England   E12000009               South West   E06000054
#> 5913      England   E12000009               South West   E06000054
#> 5914      England   E12000009               South West   E06000058
#> 5915      England   E12000009               South West   E06000058
#> 5916      England   E12000009               South West   E06000058
#> 5917      England   E12000009               South West   E06000059
#> 5918      England   E12000009               South West   E06000059
#> 5919      England   E12000009               South West   E06000059
#> 5920      England   E12000009               South West   E06000066
#> 5921      England   E12000009               South West   E06000066
#> 5922      England   E12000009               South West   E06000066
#> 5923      England   E12000009               South West   E10000008
#> 5924      England   E12000009               South West   E10000008
#> 5925      England   E12000009               South West   E10000008
#> 5926      England   E12000009               South West   E10000013
#> 5927      England   E12000009               South West   E10000013
#> 5928      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
#> 3953                                <NA>          NA     All schools
#> 3954                                <NA>          NA         Primary
#> 3955                                <NA>          NA       Secondary
#> 3956                                <NA>          NA         Special
#> 3957                                <NA>          NA     All schools
#> 3958                                <NA>          NA         Primary
#> 3959                                <NA>          NA       Secondary
#> 3960                                <NA>          NA         Special
#> 3961                          Hartlepool         805         Primary
#> 3962                          Hartlepool         805       Secondary
#> 3963                          Hartlepool         805         Special
#> 3964                       Middlesbrough         806         Primary
#> 3965                       Middlesbrough         806       Secondary
#> 3966                       Middlesbrough         806         Special
#> 3967                Redcar and Cleveland         807         Primary
#> 3968                Redcar and Cleveland         807       Secondary
#> 3969                Redcar and Cleveland         807         Special
#> 3970                    Stockton-on-Tees         808         Primary
#> 3971                    Stockton-on-Tees         808       Secondary
#> 3972                    Stockton-on-Tees         808         Special
#> 3973                          Darlington         841         Primary
#> 3974                          Darlington         841       Secondary
#> 3975                          Darlington         841         Special
#> 3976                       County Durham         840         Primary
#> 3977                       County Durham         840       Secondary
#> 3978                       County Durham         840         Special
#> 3979                      Northumberland         929         Primary
#> 3980                      Northumberland         929       Secondary
#> 3981                      Northumberland         929         Special
#> 3982                 Newcastle upon Tyne         391         Primary
#> 3983                 Newcastle upon Tyne         391       Secondary
#> 3984                 Newcastle upon Tyne         391         Special
#> 3985                      North Tyneside         392         Primary
#> 3986                      North Tyneside         392       Secondary
#> 3987                      North Tyneside         392         Special
#> 3988                      South Tyneside         393         Primary
#> 3989                      South Tyneside         393       Secondary
#> 3990                      South Tyneside         393         Special
#> 3991                          Sunderland         394         Primary
#> 3992                          Sunderland         394       Secondary
#> 3993                          Sunderland         394         Special
#> 3994                           Gateshead         390         Primary
#> 3995                           Gateshead         390       Secondary
#> 3996                           Gateshead         390         Special
#> 3997                                <NA>          NA     All schools
#> 3998                                <NA>          NA         Primary
#> 3999                                <NA>          NA       Secondary
#> 4000                                <NA>          NA         Special
#> 4001                              Halton         876         Primary
#> 4002                              Halton         876       Secondary
#> 4003                              Halton         876         Special
#> 4004                          Warrington         877         Primary
#> 4005                          Warrington         877       Secondary
#> 4006                          Warrington         877         Special
#> 4007               Blackburn with Darwen         889         Primary
#> 4008               Blackburn with Darwen         889       Secondary
#> 4009               Blackburn with Darwen         889         Special
#> 4010                           Blackpool         890         Primary
#> 4011                           Blackpool         890       Secondary
#> 4012                           Blackpool         890         Special
#> 4013                       Cheshire East         895         Primary
#> 4014                       Cheshire East         895       Secondary
#> 4015                       Cheshire East         895         Special
#> 4016           Cheshire West and Chester         896         Primary
#> 4017           Cheshire West and Chester         896       Secondary
#> 4018           Cheshire West and Chester         896         Special
#> 4019                          Cumberland         942         Primary
#> 4020                          Cumberland         942       Secondary
#> 4021                          Cumberland         942         Special
#> 4022             Westmorland and Furness         943         Primary
#> 4023             Westmorland and Furness         943       Secondary
#> 4024             Westmorland and Furness         943         Special
#> 4025                              Bolton         350         Primary
#> 4026                              Bolton         350       Secondary
#> 4027                              Bolton         350         Special
#> 4028                                Bury         351         Primary
#> 4029                                Bury         351       Secondary
#> 4030                                Bury         351         Special
#> 4031                          Manchester         352         Primary
#> 4032                          Manchester         352       Secondary
#> 4033                          Manchester         352         Special
#> 4034                              Oldham         353         Primary
#> 4035                              Oldham         353       Secondary
#> 4036                              Oldham         353         Special
#> 4037                            Rochdale         354         Primary
#> 4038                            Rochdale         354       Secondary
#> 4039                            Rochdale         354         Special
#> 4040                             Salford         355         Primary
#> 4041                             Salford         355       Secondary
#> 4042                             Salford         355         Special
#> 4043                           Stockport         356         Primary
#> 4044                           Stockport         356       Secondary
#> 4045                           Stockport         356         Special
#> 4046                            Tameside         357         Primary
#> 4047                            Tameside         357       Secondary
#> 4048                            Tameside         357         Special
#> 4049                            Trafford         358         Primary
#> 4050                            Trafford         358       Secondary
#> 4051                            Trafford         358         Special
#> 4052                               Wigan         359         Primary
#> 4053                               Wigan         359       Secondary
#> 4054                               Wigan         359         Special
#> 4055                            Knowsley         340         Primary
#> 4056                            Knowsley         340       Secondary
#> 4057                            Knowsley         340         Special
#> 4058                           Liverpool         341         Primary
#> 4059                           Liverpool         341       Secondary
#> 4060                           Liverpool         341         Special
#> 4061                          St. Helens         342         Primary
#> 4062                          St. Helens         342       Secondary
#> 4063                          St. Helens         342         Special
#> 4064                              Sefton         343         Primary
#> 4065                              Sefton         343       Secondary
#> 4066                              Sefton         343         Special
#> 4067                              Wirral         344         Primary
#> 4068                              Wirral         344       Secondary
#> 4069                              Wirral         344         Special
#> 4070                          Lancashire         888         Primary
#> 4071                          Lancashire         888       Secondary
#> 4072                          Lancashire         888         Special
#> 4073                                <NA>          NA     All schools
#> 4074                                <NA>          NA         Primary
#> 4075                                <NA>          NA       Secondary
#> 4076                                <NA>          NA         Special
#> 4077         Kingston upon Hull, City of         810         Primary
#> 4078         Kingston upon Hull, City of         810       Secondary
#> 4079         Kingston upon Hull, City of         810         Special
#> 4080            East Riding of Yorkshire         811         Primary
#> 4081            East Riding of Yorkshire         811       Secondary
#> 4082            East Riding of Yorkshire         811         Special
#> 4083             North East Lincolnshire         812         Primary
#> 4084             North East Lincolnshire         812       Secondary
#> 4085             North East Lincolnshire         812         Special
#> 4086                  North Lincolnshire         813         Primary
#> 4087                  North Lincolnshire         813       Secondary
#> 4088                  North Lincolnshire         813         Special
#> 4089                                York         816         Primary
#> 4090                                York         816       Secondary
#> 4091                                York         816         Special
#> 4092                     North Yorkshire         815         Primary
#> 4093                     North Yorkshire         815       Secondary
#> 4094                     North Yorkshire         815         Special
#> 4095                            Barnsley         370         Primary
#> 4096                            Barnsley         370       Secondary
#> 4097                            Barnsley         370         Special
#> 4098                           Doncaster         371         Primary
#> 4099                           Doncaster         371       Secondary
#> 4100                           Doncaster         371         Special
#> 4101                           Rotherham         372         Primary
#> 4102                           Rotherham         372       Secondary
#> 4103                           Rotherham         372         Special
#> 4104                           Sheffield         373         Primary
#> 4105                           Sheffield         373       Secondary
#> 4106                           Sheffield         373         Special
#> 4107                            Bradford         380         Primary
#> 4108                            Bradford         380       Secondary
#> 4109                            Bradford         380         Special
#> 4110                          Calderdale         381         Primary
#> 4111                          Calderdale         381       Secondary
#> 4112                          Calderdale         381         Special
#> 4113                            Kirklees         382         Primary
#> 4114                            Kirklees         382       Secondary
#> 4115                            Kirklees         382         Special
#> 4116                               Leeds         383         Primary
#> 4117                               Leeds         383       Secondary
#> 4118                               Leeds         383         Special
#> 4119                           Wakefield         384         Primary
#> 4120                           Wakefield         384       Secondary
#> 4121                           Wakefield         384         Special
#> 4122                                <NA>          NA     All schools
#> 4123                                <NA>          NA         Primary
#> 4124                                <NA>          NA       Secondary
#> 4125                                <NA>          NA         Special
#> 4126                               Derby         831         Primary
#> 4127                               Derby         831       Secondary
#> 4128                               Derby         831         Special
#> 4129                           Leicester         856         Primary
#> 4130                           Leicester         856       Secondary
#> 4131                           Leicester         856         Special
#> 4132                             Rutland         857         Primary
#> 4133                             Rutland         857       Secondary
#> 4134                          Nottingham         892         Primary
#> 4135                          Nottingham         892       Secondary
#> 4136                          Nottingham         892         Special
#> 4137              North Northamptonshire         940         Primary
#> 4138              North Northamptonshire         940       Secondary
#> 4139              North Northamptonshire         940         Special
#> 4140               West Northamptonshire         941         Primary
#> 4141               West Northamptonshire         941       Secondary
#> 4142               West Northamptonshire         941         Special
#> 4143                          Derbyshire         830         Primary
#> 4144                          Derbyshire         830       Secondary
#> 4145                          Derbyshire         830         Special
#> 4146                      Leicestershire         855         Primary
#> 4147                      Leicestershire         855       Secondary
#> 4148                      Leicestershire         855         Special
#> 4149                        Lincolnshire         925         Primary
#> 4150                        Lincolnshire         925       Secondary
#> 4151                        Lincolnshire         925         Special
#> 4152                     Nottinghamshire         891         Primary
#> 4153                     Nottinghamshire         891       Secondary
#> 4154                     Nottinghamshire         891         Special
#> 4155                                <NA>          NA     All schools
#> 4156                                <NA>          NA         Primary
#> 4157                                <NA>          NA       Secondary
#> 4158                                <NA>          NA         Special
#> 4159            Herefordshire, County of         884         Primary
#> 4160            Herefordshire, County of         884       Secondary
#> 4161            Herefordshire, County of         884         Special
#> 4162                  Telford and Wrekin         894         Primary
#> 4163                  Telford and Wrekin         894       Secondary
#> 4164                  Telford and Wrekin         894         Special
#> 4165                      Stoke-on-Trent         861         Primary
#> 4166                      Stoke-on-Trent         861       Secondary
#> 4167                      Stoke-on-Trent         861         Special
#> 4168                          Shropshire         893         Primary
#> 4169                          Shropshire         893       Secondary
#> 4170                          Shropshire         893         Special
#> 4171                          Birmingham         330         Primary
#> 4172                          Birmingham         330       Secondary
#> 4173                          Birmingham         330         Special
#> 4174                            Coventry         331         Primary
#> 4175                            Coventry         331       Secondary
#> 4176                            Coventry         331         Special
#> 4177                              Dudley         332         Primary
#> 4178                              Dudley         332       Secondary
#> 4179                              Dudley         332         Special
#> 4180                            Sandwell         333         Primary
#> 4181                            Sandwell         333       Secondary
#> 4182                            Sandwell         333         Special
#> 4183                            Solihull         334         Primary
#> 4184                            Solihull         334       Secondary
#> 4185                            Solihull         334         Special
#> 4186                             Walsall         335         Primary
#> 4187                             Walsall         335       Secondary
#> 4188                             Walsall         335         Special
#> 4189                       Wolverhampton         336         Primary
#> 4190                       Wolverhampton         336       Secondary
#> 4191                       Wolverhampton         336         Special
#> 4192                       Staffordshire         860         Primary
#> 4193                       Staffordshire         860       Secondary
#> 4194                       Staffordshire         860         Special
#> 4195                        Warwickshire         937         Primary
#> 4196                        Warwickshire         937       Secondary
#> 4197                        Warwickshire         937         Special
#> 4198                      Worcestershire         885         Primary
#> 4199                      Worcestershire         885       Secondary
#> 4200                      Worcestershire         885         Special
#> 4201                                <NA>          NA     All schools
#> 4202                                <NA>          NA         Primary
#> 4203                                <NA>          NA       Secondary
#> 4204                                <NA>          NA         Special
#> 4205                        Peterborough         874         Primary
#> 4206                        Peterborough         874       Secondary
#> 4207                        Peterborough         874         Special
#> 4208                               Luton         821         Primary
#> 4209                               Luton         821       Secondary
#> 4210                               Luton         821         Special
#> 4211                     Southend-on-Sea         882         Primary
#> 4212                     Southend-on-Sea         882       Secondary
#> 4213                     Southend-on-Sea         882         Special
#> 4214                            Thurrock         883         Primary
#> 4215                            Thurrock         883       Secondary
#> 4216                            Thurrock         883         Special
#> 4217                             Bedford         822         Primary
#> 4218                             Bedford         822       Secondary
#> 4219                             Bedford         822         Special
#> 4220                Central Bedfordshire         823         Primary
#> 4221                Central Bedfordshire         823       Secondary
#> 4222                Central Bedfordshire         823         Special
#> 4223                      Cambridgeshire         873         Primary
#> 4224                      Cambridgeshire         873       Secondary
#> 4225                      Cambridgeshire         873         Special
#> 4226                               Essex         881         Primary
#> 4227                               Essex         881       Secondary
#> 4228                               Essex         881         Special
#> 4229                       Hertfordshire         919         Primary
#> 4230                       Hertfordshire         919       Secondary
#> 4231                       Hertfordshire         919         Special
#> 4232                             Norfolk         926         Primary
#> 4233                             Norfolk         926       Secondary
#> 4234                             Norfolk         926         Special
#> 4235                             Suffolk         935         Primary
#> 4236                             Suffolk         935       Secondary
#> 4237                             Suffolk         935         Special
#> 4238                                <NA>          NA     All schools
#> 4239                                <NA>          NA         Primary
#> 4240                                <NA>          NA       Secondary
#> 4241                                <NA>          NA         Special
#> 4242                      City of London         201         Primary
#> 4243                Barking and Dagenham         301         Primary
#> 4244                Barking and Dagenham         301       Secondary
#> 4245                Barking and Dagenham         301         Special
#> 4246                              Barnet         302         Primary
#> 4247                              Barnet         302       Secondary
#> 4248                              Barnet         302         Special
#> 4249                              Bexley         303         Primary
#> 4250                              Bexley         303       Secondary
#> 4251                              Bexley         303         Special
#> 4252                               Brent         304         Primary
#> 4253                               Brent         304       Secondary
#> 4254                               Brent         304         Special
#> 4255                             Bromley         305         Primary
#> 4256                             Bromley         305       Secondary
#> 4257                             Bromley         305         Special
#> 4258                              Camden         202         Primary
#> 4259                              Camden         202       Secondary
#> 4260                              Camden         202         Special
#> 4261                             Croydon         306         Primary
#> 4262                             Croydon         306       Secondary
#> 4263                             Croydon         306         Special
#> 4264                              Ealing         307         Primary
#> 4265                              Ealing         307       Secondary
#> 4266                              Ealing         307         Special
#> 4267                             Enfield         308         Primary
#> 4268                             Enfield         308       Secondary
#> 4269                             Enfield         308         Special
#> 4270                           Greenwich         203         Primary
#> 4271                           Greenwich         203       Secondary
#> 4272                           Greenwich         203         Special
#> 4273                             Hackney         204         Primary
#> 4274                             Hackney         204       Secondary
#> 4275                             Hackney         204         Special
#> 4276              Hammersmith and Fulham         205         Primary
#> 4277              Hammersmith and Fulham         205       Secondary
#> 4278              Hammersmith and Fulham         205         Special
#> 4279                            Haringey         309         Primary
#> 4280                            Haringey         309       Secondary
#> 4281                            Haringey         309         Special
#> 4282                              Harrow         310         Primary
#> 4283                              Harrow         310       Secondary
#> 4284                              Harrow         310         Special
#> 4285                            Havering         311         Primary
#> 4286                            Havering         311       Secondary
#> 4287                            Havering         311         Special
#> 4288                          Hillingdon         312         Primary
#> 4289                          Hillingdon         312       Secondary
#> 4290                          Hillingdon         312         Special
#> 4291                            Hounslow         313         Primary
#> 4292                            Hounslow         313       Secondary
#> 4293                            Hounslow         313         Special
#> 4294                           Islington         206         Primary
#> 4295                           Islington         206       Secondary
#> 4296                           Islington         206         Special
#> 4297              Kensington and Chelsea         207         Primary
#> 4298              Kensington and Chelsea         207       Secondary
#> 4299              Kensington and Chelsea         207         Special
#> 4300                Kingston upon Thames         314         Primary
#> 4301                Kingston upon Thames         314       Secondary
#> 4302                Kingston upon Thames         314         Special
#> 4303                             Lambeth         208         Primary
#> 4304                             Lambeth         208       Secondary
#> 4305                             Lambeth         208         Special
#> 4306                            Lewisham         209         Primary
#> 4307                            Lewisham         209       Secondary
#> 4308                            Lewisham         209         Special
#> 4309                              Merton         315         Primary
#> 4310                              Merton         315       Secondary
#> 4311                              Merton         315         Special
#> 4312                              Newham         316         Primary
#> 4313                              Newham         316       Secondary
#> 4314                              Newham         316         Special
#> 4315                           Redbridge         317         Primary
#> 4316                           Redbridge         317       Secondary
#> 4317                           Redbridge         317         Special
#> 4318                Richmond upon Thames         318         Primary
#> 4319                Richmond upon Thames         318       Secondary
#> 4320                Richmond upon Thames         318         Special
#> 4321                           Southwark         210         Primary
#> 4322                           Southwark         210       Secondary
#> 4323                           Southwark         210         Special
#> 4324                              Sutton         319         Primary
#> 4325                              Sutton         319       Secondary
#> 4326                              Sutton         319         Special
#> 4327                       Tower Hamlets         211         Primary
#> 4328                       Tower Hamlets         211       Secondary
#> 4329                       Tower Hamlets         211         Special
#> 4330                      Waltham Forest         320         Primary
#> 4331                      Waltham Forest         320       Secondary
#> 4332                      Waltham Forest         320         Special
#> 4333                          Wandsworth         212         Primary
#> 4334                          Wandsworth         212       Secondary
#> 4335                          Wandsworth         212         Special
#> 4336                         Westminster         213         Primary
#> 4337                         Westminster         213       Secondary
#> 4338                         Westminster         213         Special
#> 4339                                <NA>          NA     All schools
#> 4340                                <NA>          NA         Primary
#> 4341                                <NA>          NA       Secondary
#> 4342                                <NA>          NA         Special
#> 4343                              Medway         887         Primary
#> 4344                              Medway         887       Secondary
#> 4345                              Medway         887         Special
#> 4346                    Bracknell Forest         867         Primary
#> 4347                    Bracknell Forest         867       Secondary
#> 4348                    Bracknell Forest         867         Special
#> 4349                      West Berkshire         869         Primary
#> 4350                      West Berkshire         869       Secondary
#> 4351                      West Berkshire         869         Special
#> 4352                             Reading         870         Primary
#> 4353                             Reading         870       Secondary
#> 4354                             Reading         870         Special
#> 4355                              Slough         871         Primary
#> 4356                              Slough         871       Secondary
#> 4357                              Slough         871         Special
#> 4358              Windsor and Maidenhead         868         Primary
#> 4359              Windsor and Maidenhead         868       Secondary
#> 4360              Windsor and Maidenhead         868         Special
#> 4361                           Wokingham         872         Primary
#> 4362                           Wokingham         872       Secondary
#> 4363                           Wokingham         872         Special
#> 4364                       Milton Keynes         826         Primary
#> 4365                       Milton Keynes         826       Secondary
#> 4366                       Milton Keynes         826         Special
#> 4367                   Brighton and Hove         846         Primary
#> 4368                   Brighton and Hove         846       Secondary
#> 4369                   Brighton and Hove         846         Special
#> 4370                          Portsmouth         851         Primary
#> 4371                          Portsmouth         851       Secondary
#> 4372                          Portsmouth         851         Special
#> 4373                         Southampton         852         Primary
#> 4374                         Southampton         852       Secondary
#> 4375                         Southampton         852         Special
#> 4376                       Isle of Wight         921         Primary
#> 4377                       Isle of Wight         921       Secondary
#> 4378                       Isle of Wight         921         Special
#> 4379                     Buckinghamshire         825         Primary
#> 4380                     Buckinghamshire         825       Secondary
#> 4381                     Buckinghamshire         825         Special
#> 4382                         East Sussex         845         Primary
#> 4383                         East Sussex         845       Secondary
#> 4384                         East Sussex         845         Special
#> 4385                           Hampshire         850         Primary
#> 4386                           Hampshire         850       Secondary
#> 4387                           Hampshire         850         Special
#> 4388                                Kent         886         Primary
#> 4389                                Kent         886       Secondary
#> 4390                                Kent         886         Special
#> 4391                         Oxfordshire         931         Primary
#> 4392                         Oxfordshire         931       Secondary
#> 4393                         Oxfordshire         931         Special
#> 4394                              Surrey         936         Primary
#> 4395                              Surrey         936       Secondary
#> 4396                              Surrey         936         Special
#> 4397                         West Sussex         938         Primary
#> 4398                         West Sussex         938       Secondary
#> 4399                         West Sussex         938         Special
#> 4400                                <NA>          NA     All schools
#> 4401                                <NA>          NA         Primary
#> 4402                                <NA>          NA       Secondary
#> 4403                                <NA>          NA         Special
#> 4404        Bath and North East Somerset         800         Primary
#> 4405        Bath and North East Somerset         800       Secondary
#> 4406        Bath and North East Somerset         800         Special
#> 4407                    Bristol, City of         801         Primary
#> 4408                    Bristol, City of         801       Secondary
#> 4409                    Bristol, City of         801         Special
#> 4410                      North Somerset         802         Primary
#> 4411                      North Somerset         802       Secondary
#> 4412                      North Somerset         802         Special
#> 4413               South Gloucestershire         803         Primary
#> 4414               South Gloucestershire         803       Secondary
#> 4415               South Gloucestershire         803         Special
#> 4416                            Plymouth         879         Primary
#> 4417                            Plymouth         879       Secondary
#> 4418                            Plymouth         879         Special
#> 4419                              Torbay         880         Primary
#> 4420                              Torbay         880       Secondary
#> 4421                              Torbay         880         Special
#> 4422                             Swindon         866         Primary
#> 4423                             Swindon         866       Secondary
#> 4424                             Swindon         866         Special
#> 4425                            Cornwall         908         Primary
#> 4426                            Cornwall         908       Secondary
#> 4427                            Cornwall         908         Special
#> 4428                     Isles of Scilly         420       Secondary
#> 4429                           Wiltshire         865         Primary
#> 4430                           Wiltshire         865       Secondary
#> 4431                           Wiltshire         865         Special
#> 4432 Bournemouth, Christchurch and Poole         839         Primary
#> 4433 Bournemouth, Christchurch and Poole         839       Secondary
#> 4434 Bournemouth, Christchurch and Poole         839         Special
#> 4435                              Dorset         838         Primary
#> 4436                              Dorset         838       Secondary
#> 4437                              Dorset         838         Special
#> 4438                            Somerset         933         Primary
#> 4439                            Somerset         933       Secondary
#> 4440                            Somerset         933         Special
#> 4441                               Devon         878         Primary
#> 4442                               Devon         878       Secondary
#> 4443                               Devon         878         Special
#> 4444                     Gloucestershire         916         Primary
#> 4445                     Gloucestershire         916       Secondary
#> 4446                     Gloucestershire         916         Special
#> 4447                                <NA>          NA     All schools
#> 4448                                <NA>          NA         Primary
#> 4449                                <NA>          NA       Secondary
#> 4450                                <NA>          NA         Special
#> 4451                                <NA>          NA     All schools
#> 4452                                <NA>          NA         Primary
#> 4453                                <NA>          NA       Secondary
#> 4454                                <NA>          NA         Special
#> 4455                          Hartlepool         805         Primary
#> 4456                          Hartlepool         805       Secondary
#> 4457                          Hartlepool         805         Special
#> 4458                       Middlesbrough         806         Primary
#> 4459                       Middlesbrough         806       Secondary
#> 4460                       Middlesbrough         806         Special
#> 4461                Redcar and Cleveland         807         Primary
#> 4462                Redcar and Cleveland         807       Secondary
#> 4463                Redcar and Cleveland         807         Special
#> 4464                    Stockton-on-Tees         808         Primary
#> 4465                    Stockton-on-Tees         808       Secondary
#> 4466                    Stockton-on-Tees         808         Special
#> 4467                          Darlington         841         Primary
#> 4468                          Darlington         841       Secondary
#> 4469                          Darlington         841         Special
#> 4470                       County Durham         840         Primary
#> 4471                       County Durham         840       Secondary
#> 4472                       County Durham         840         Special
#> 4473                      Northumberland         929         Primary
#> 4474                      Northumberland         929       Secondary
#> 4475                      Northumberland         929         Special
#> 4476                 Newcastle upon Tyne         391         Primary
#> 4477                 Newcastle upon Tyne         391       Secondary
#> 4478                 Newcastle upon Tyne         391         Special
#> 4479                      North Tyneside         392         Primary
#> 4480                      North Tyneside         392       Secondary
#> 4481                      North Tyneside         392         Special
#> 4482                      South Tyneside         393         Primary
#> 4483                      South Tyneside         393       Secondary
#> 4484                      South Tyneside         393         Special
#> 4485                          Sunderland         394         Primary
#> 4486                          Sunderland         394       Secondary
#> 4487                          Sunderland         394         Special
#> 4488                           Gateshead         390         Primary
#> 4489                           Gateshead         390       Secondary
#> 4490                           Gateshead         390         Special
#> 4491                                <NA>          NA     All schools
#> 4492                                <NA>          NA         Primary
#> 4493                                <NA>          NA       Secondary
#> 4494                                <NA>          NA         Special
#> 4495                              Halton         876         Primary
#> 4496                              Halton         876       Secondary
#> 4497                              Halton         876         Special
#> 4498                          Warrington         877         Primary
#> 4499                          Warrington         877       Secondary
#> 4500                          Warrington         877         Special
#> 4501               Blackburn with Darwen         889         Primary
#> 4502               Blackburn with Darwen         889       Secondary
#> 4503               Blackburn with Darwen         889         Special
#> 4504                           Blackpool         890         Primary
#> 4505                           Blackpool         890       Secondary
#> 4506                           Blackpool         890         Special
#> 4507                       Cheshire East         895         Primary
#> 4508                       Cheshire East         895       Secondary
#> 4509                       Cheshire East         895         Special
#> 4510           Cheshire West and Chester         896         Primary
#> 4511           Cheshire West and Chester         896       Secondary
#> 4512           Cheshire West and Chester         896         Special
#> 4513                          Cumberland         942         Primary
#> 4514                          Cumberland         942       Secondary
#> 4515                          Cumberland         942         Special
#> 4516             Westmorland and Furness         943         Primary
#> 4517             Westmorland and Furness         943       Secondary
#> 4518             Westmorland and Furness         943         Special
#> 4519                              Bolton         350         Primary
#> 4520                              Bolton         350       Secondary
#> 4521                              Bolton         350         Special
#> 4522                                Bury         351         Primary
#> 4523                                Bury         351       Secondary
#> 4524                                Bury         351         Special
#> 4525                          Manchester         352         Primary
#> 4526                          Manchester         352       Secondary
#> 4527                          Manchester         352         Special
#> 4528                              Oldham         353         Primary
#> 4529                              Oldham         353       Secondary
#> 4530                              Oldham         353         Special
#> 4531                            Rochdale         354         Primary
#> 4532                            Rochdale         354       Secondary
#> 4533                            Rochdale         354         Special
#> 4534                             Salford         355         Primary
#> 4535                             Salford         355       Secondary
#> 4536                             Salford         355         Special
#> 4537                           Stockport         356         Primary
#> 4538                           Stockport         356       Secondary
#> 4539                           Stockport         356         Special
#> 4540                            Tameside         357         Primary
#> 4541                            Tameside         357       Secondary
#> 4542                            Tameside         357         Special
#> 4543                            Trafford         358         Primary
#> 4544                            Trafford         358       Secondary
#> 4545                            Trafford         358         Special
#> 4546                               Wigan         359         Primary
#> 4547                               Wigan         359       Secondary
#> 4548                               Wigan         359         Special
#> 4549                            Knowsley         340         Primary
#> 4550                            Knowsley         340       Secondary
#> 4551                            Knowsley         340         Special
#> 4552                           Liverpool         341         Primary
#> 4553                           Liverpool         341       Secondary
#> 4554                           Liverpool         341         Special
#> 4555                          St. Helens         342         Primary
#> 4556                          St. Helens         342       Secondary
#> 4557                          St. Helens         342         Special
#> 4558                              Sefton         343         Primary
#> 4559                              Sefton         343       Secondary
#> 4560                              Sefton         343         Special
#> 4561                              Wirral         344         Primary
#> 4562                              Wirral         344       Secondary
#> 4563                              Wirral         344         Special
#> 4564                          Lancashire         888         Primary
#> 4565                          Lancashire         888       Secondary
#> 4566                          Lancashire         888         Special
#> 4567                                <NA>          NA     All schools
#> 4568                                <NA>          NA         Primary
#> 4569                                <NA>          NA       Secondary
#> 4570                                <NA>          NA         Special
#> 4571         Kingston upon Hull, City of         810         Primary
#> 4572         Kingston upon Hull, City of         810       Secondary
#> 4573         Kingston upon Hull, City of         810         Special
#> 4574            East Riding of Yorkshire         811         Primary
#> 4575            East Riding of Yorkshire         811       Secondary
#> 4576            East Riding of Yorkshire         811         Special
#> 4577             North East Lincolnshire         812         Primary
#> 4578             North East Lincolnshire         812       Secondary
#> 4579             North East Lincolnshire         812         Special
#> 4580                  North Lincolnshire         813         Primary
#> 4581                  North Lincolnshire         813       Secondary
#> 4582                  North Lincolnshire         813         Special
#> 4583                                York         816         Primary
#> 4584                                York         816       Secondary
#> 4585                                York         816         Special
#> 4586                     North Yorkshire         815         Primary
#> 4587                     North Yorkshire         815       Secondary
#> 4588                     North Yorkshire         815         Special
#> 4589                            Barnsley         370         Primary
#> 4590                            Barnsley         370       Secondary
#> 4591                            Barnsley         370         Special
#> 4592                           Doncaster         371         Primary
#> 4593                           Doncaster         371       Secondary
#> 4594                           Doncaster         371         Special
#> 4595                           Rotherham         372         Primary
#> 4596                           Rotherham         372       Secondary
#> 4597                           Rotherham         372         Special
#> 4598                           Sheffield         373         Primary
#> 4599                           Sheffield         373       Secondary
#> 4600                           Sheffield         373         Special
#> 4601                            Bradford         380         Primary
#> 4602                            Bradford         380       Secondary
#> 4603                            Bradford         380         Special
#> 4604                          Calderdale         381         Primary
#> 4605                          Calderdale         381       Secondary
#> 4606                          Calderdale         381         Special
#> 4607                            Kirklees         382         Primary
#> 4608                            Kirklees         382       Secondary
#> 4609                            Kirklees         382         Special
#> 4610                               Leeds         383         Primary
#> 4611                               Leeds         383       Secondary
#> 4612                               Leeds         383         Special
#> 4613                           Wakefield         384         Primary
#> 4614                           Wakefield         384       Secondary
#> 4615                           Wakefield         384         Special
#> 4616                                <NA>          NA     All schools
#> 4617                                <NA>          NA         Primary
#> 4618                                <NA>          NA       Secondary
#> 4619                                <NA>          NA         Special
#> 4620                               Derby         831         Primary
#> 4621                               Derby         831       Secondary
#> 4622                               Derby         831         Special
#> 4623                           Leicester         856         Primary
#> 4624                           Leicester         856       Secondary
#> 4625                           Leicester         856         Special
#> 4626                             Rutland         857         Primary
#> 4627                             Rutland         857       Secondary
#> 4628                          Nottingham         892         Primary
#> 4629                          Nottingham         892       Secondary
#> 4630                          Nottingham         892         Special
#> 4631              North Northamptonshire         940         Primary
#> 4632              North Northamptonshire         940       Secondary
#> 4633              North Northamptonshire         940         Special
#> 4634               West Northamptonshire         941         Primary
#> 4635               West Northamptonshire         941       Secondary
#> 4636               West Northamptonshire         941         Special
#> 4637                          Derbyshire         830         Primary
#> 4638                          Derbyshire         830       Secondary
#> 4639                          Derbyshire         830         Special
#> 4640                      Leicestershire         855         Primary
#> 4641                      Leicestershire         855       Secondary
#> 4642                      Leicestershire         855         Special
#> 4643                        Lincolnshire         925         Primary
#> 4644                        Lincolnshire         925       Secondary
#> 4645                        Lincolnshire         925         Special
#> 4646                     Nottinghamshire         891         Primary
#> 4647                     Nottinghamshire         891       Secondary
#> 4648                     Nottinghamshire         891         Special
#> 4649                                <NA>          NA     All schools
#> 4650                                <NA>          NA         Primary
#> 4651                                <NA>          NA       Secondary
#> 4652                                <NA>          NA         Special
#> 4653            Herefordshire, County of         884         Primary
#> 4654            Herefordshire, County of         884       Secondary
#> 4655            Herefordshire, County of         884         Special
#> 4656                  Telford and Wrekin         894         Primary
#> 4657                  Telford and Wrekin         894       Secondary
#> 4658                  Telford and Wrekin         894         Special
#> 4659                      Stoke-on-Trent         861         Primary
#> 4660                      Stoke-on-Trent         861       Secondary
#> 4661                      Stoke-on-Trent         861         Special
#> 4662                          Shropshire         893         Primary
#> 4663                          Shropshire         893       Secondary
#> 4664                          Shropshire         893         Special
#> 4665                          Birmingham         330         Primary
#> 4666                          Birmingham         330       Secondary
#> 4667                          Birmingham         330         Special
#> 4668                            Coventry         331         Primary
#> 4669                            Coventry         331       Secondary
#> 4670                            Coventry         331         Special
#> 4671                              Dudley         332         Primary
#> 4672                              Dudley         332       Secondary
#> 4673                              Dudley         332         Special
#> 4674                            Sandwell         333         Primary
#> 4675                            Sandwell         333       Secondary
#> 4676                            Sandwell         333         Special
#> 4677                            Solihull         334         Primary
#> 4678                            Solihull         334       Secondary
#> 4679                            Solihull         334         Special
#> 4680                             Walsall         335         Primary
#> 4681                             Walsall         335       Secondary
#> 4682                             Walsall         335         Special
#> 4683                       Wolverhampton         336         Primary
#> 4684                       Wolverhampton         336       Secondary
#> 4685                       Wolverhampton         336         Special
#> 4686                       Staffordshire         860         Primary
#> 4687                       Staffordshire         860       Secondary
#> 4688                       Staffordshire         860         Special
#> 4689                        Warwickshire         937         Primary
#> 4690                        Warwickshire         937       Secondary
#> 4691                        Warwickshire         937         Special
#> 4692                      Worcestershire         885         Primary
#> 4693                      Worcestershire         885       Secondary
#> 4694                      Worcestershire         885         Special
#> 4695                                <NA>          NA     All schools
#> 4696                                <NA>          NA         Primary
#> 4697                                <NA>          NA       Secondary
#> 4698                                <NA>          NA         Special
#> 4699                        Peterborough         874         Primary
#> 4700                        Peterborough         874       Secondary
#> 4701                        Peterborough         874         Special
#> 4702                               Luton         821         Primary
#> 4703                               Luton         821       Secondary
#> 4704                               Luton         821         Special
#> 4705                     Southend-on-Sea         882         Primary
#> 4706                     Southend-on-Sea         882       Secondary
#> 4707                     Southend-on-Sea         882         Special
#> 4708                            Thurrock         883         Primary
#> 4709                            Thurrock         883       Secondary
#> 4710                            Thurrock         883         Special
#> 4711                             Bedford         822         Primary
#> 4712                             Bedford         822       Secondary
#> 4713                             Bedford         822         Special
#> 4714                Central Bedfordshire         823         Primary
#> 4715                Central Bedfordshire         823       Secondary
#> 4716                Central Bedfordshire         823         Special
#> 4717                      Cambridgeshire         873         Primary
#> 4718                      Cambridgeshire         873       Secondary
#> 4719                      Cambridgeshire         873         Special
#> 4720                               Essex         881         Primary
#> 4721                               Essex         881       Secondary
#> 4722                               Essex         881         Special
#> 4723                       Hertfordshire         919         Primary
#> 4724                       Hertfordshire         919       Secondary
#> 4725                       Hertfordshire         919         Special
#> 4726                             Norfolk         926         Primary
#> 4727                             Norfolk         926       Secondary
#> 4728                             Norfolk         926         Special
#> 4729                             Suffolk         935         Primary
#> 4730                             Suffolk         935       Secondary
#> 4731                             Suffolk         935         Special
#> 4732                                <NA>          NA     All schools
#> 4733                                <NA>          NA         Primary
#> 4734                                <NA>          NA       Secondary
#> 4735                                <NA>          NA         Special
#> 4736                      City of London         201         Primary
#> 4737                Barking and Dagenham         301         Primary
#> 4738                Barking and Dagenham         301       Secondary
#> 4739                Barking and Dagenham         301         Special
#> 4740                              Barnet         302         Primary
#> 4741                              Barnet         302       Secondary
#> 4742                              Barnet         302         Special
#> 4743                              Bexley         303         Primary
#> 4744                              Bexley         303       Secondary
#> 4745                              Bexley         303         Special
#> 4746                               Brent         304         Primary
#> 4747                               Brent         304       Secondary
#> 4748                               Brent         304         Special
#> 4749                             Bromley         305         Primary
#> 4750                             Bromley         305       Secondary
#> 4751                             Bromley         305         Special
#> 4752                              Camden         202         Primary
#> 4753                              Camden         202       Secondary
#> 4754                              Camden         202         Special
#> 4755                             Croydon         306         Primary
#> 4756                             Croydon         306       Secondary
#> 4757                             Croydon         306         Special
#> 4758                              Ealing         307         Primary
#> 4759                              Ealing         307       Secondary
#> 4760                              Ealing         307         Special
#> 4761                             Enfield         308         Primary
#> 4762                             Enfield         308       Secondary
#> 4763                             Enfield         308         Special
#> 4764                           Greenwich         203         Primary
#> 4765                           Greenwich         203       Secondary
#> 4766                           Greenwich         203         Special
#> 4767                             Hackney         204         Primary
#> 4768                             Hackney         204       Secondary
#> 4769                             Hackney         204         Special
#> 4770              Hammersmith and Fulham         205         Primary
#> 4771              Hammersmith and Fulham         205       Secondary
#> 4772              Hammersmith and Fulham         205         Special
#> 4773                            Haringey         309         Primary
#> 4774                            Haringey         309       Secondary
#> 4775                            Haringey         309         Special
#> 4776                              Harrow         310         Primary
#> 4777                              Harrow         310       Secondary
#> 4778                              Harrow         310         Special
#> 4779                            Havering         311         Primary
#> 4780                            Havering         311       Secondary
#> 4781                            Havering         311         Special
#> 4782                          Hillingdon         312         Primary
#> 4783                          Hillingdon         312       Secondary
#> 4784                          Hillingdon         312         Special
#> 4785                            Hounslow         313         Primary
#> 4786                            Hounslow         313       Secondary
#> 4787                            Hounslow         313         Special
#> 4788                           Islington         206         Primary
#> 4789                           Islington         206       Secondary
#> 4790                           Islington         206         Special
#> 4791              Kensington and Chelsea         207         Primary
#> 4792              Kensington and Chelsea         207       Secondary
#> 4793              Kensington and Chelsea         207         Special
#> 4794                Kingston upon Thames         314         Primary
#> 4795                Kingston upon Thames         314       Secondary
#> 4796                Kingston upon Thames         314         Special
#> 4797                             Lambeth         208         Primary
#> 4798                             Lambeth         208       Secondary
#> 4799                             Lambeth         208         Special
#> 4800                            Lewisham         209         Primary
#> 4801                            Lewisham         209       Secondary
#> 4802                            Lewisham         209         Special
#> 4803                              Merton         315         Primary
#> 4804                              Merton         315       Secondary
#> 4805                              Merton         315         Special
#> 4806                              Newham         316         Primary
#> 4807                              Newham         316       Secondary
#> 4808                              Newham         316         Special
#> 4809                           Redbridge         317         Primary
#> 4810                           Redbridge         317       Secondary
#> 4811                           Redbridge         317         Special
#> 4812                Richmond upon Thames         318         Primary
#> 4813                Richmond upon Thames         318       Secondary
#> 4814                Richmond upon Thames         318         Special
#> 4815                           Southwark         210         Primary
#> 4816                           Southwark         210       Secondary
#> 4817                           Southwark         210         Special
#> 4818                              Sutton         319         Primary
#> 4819                              Sutton         319       Secondary
#> 4820                              Sutton         319         Special
#> 4821                       Tower Hamlets         211         Primary
#> 4822                       Tower Hamlets         211       Secondary
#> 4823                       Tower Hamlets         211         Special
#> 4824                      Waltham Forest         320         Primary
#> 4825                      Waltham Forest         320       Secondary
#> 4826                      Waltham Forest         320         Special
#> 4827                          Wandsworth         212         Primary
#> 4828                          Wandsworth         212       Secondary
#> 4829                          Wandsworth         212         Special
#> 4830                         Westminster         213         Primary
#> 4831                         Westminster         213       Secondary
#> 4832                         Westminster         213         Special
#> 4833                                <NA>          NA     All schools
#> 4834                                <NA>          NA         Primary
#> 4835                                <NA>          NA       Secondary
#> 4836                                <NA>          NA         Special
#> 4837                              Medway         887         Primary
#> 4838                              Medway         887       Secondary
#> 4839                              Medway         887         Special
#> 4840                    Bracknell Forest         867         Primary
#> 4841                    Bracknell Forest         867       Secondary
#> 4842                    Bracknell Forest         867         Special
#> 4843                      West Berkshire         869         Primary
#> 4844                      West Berkshire         869       Secondary
#> 4845                      West Berkshire         869         Special
#> 4846                             Reading         870         Primary
#> 4847                             Reading         870       Secondary
#> 4848                             Reading         870         Special
#> 4849                              Slough         871         Primary
#> 4850                              Slough         871       Secondary
#> 4851                              Slough         871         Special
#> 4852              Windsor and Maidenhead         868         Primary
#> 4853              Windsor and Maidenhead         868       Secondary
#> 4854              Windsor and Maidenhead         868         Special
#> 4855                           Wokingham         872         Primary
#> 4856                           Wokingham         872       Secondary
#> 4857                           Wokingham         872         Special
#> 4858                       Milton Keynes         826         Primary
#> 4859                       Milton Keynes         826       Secondary
#> 4860                       Milton Keynes         826         Special
#> 4861                   Brighton and Hove         846         Primary
#> 4862                   Brighton and Hove         846       Secondary
#> 4863                   Brighton and Hove         846         Special
#> 4864                          Portsmouth         851         Primary
#> 4865                          Portsmouth         851       Secondary
#> 4866                          Portsmouth         851         Special
#> 4867                         Southampton         852         Primary
#> 4868                         Southampton         852       Secondary
#> 4869                         Southampton         852         Special
#> 4870                       Isle of Wight         921         Primary
#> 4871                       Isle of Wight         921       Secondary
#> 4872                       Isle of Wight         921         Special
#> 4873                     Buckinghamshire         825         Primary
#> 4874                     Buckinghamshire         825       Secondary
#> 4875                     Buckinghamshire         825         Special
#> 4876                         East Sussex         845         Primary
#> 4877                         East Sussex         845       Secondary
#> 4878                         East Sussex         845         Special
#> 4879                           Hampshire         850         Primary
#> 4880                           Hampshire         850       Secondary
#> 4881                           Hampshire         850         Special
#> 4882                                Kent         886         Primary
#> 4883                                Kent         886       Secondary
#> 4884                                Kent         886         Special
#> 4885                         Oxfordshire         931         Primary
#> 4886                         Oxfordshire         931       Secondary
#> 4887                         Oxfordshire         931         Special
#> 4888                              Surrey         936         Primary
#> 4889                              Surrey         936       Secondary
#> 4890                              Surrey         936         Special
#> 4891                         West Sussex         938         Primary
#> 4892                         West Sussex         938       Secondary
#> 4893                         West Sussex         938         Special
#> 4894                                <NA>          NA     All schools
#> 4895                                <NA>          NA         Primary
#> 4896                                <NA>          NA       Secondary
#> 4897                                <NA>          NA         Special
#> 4898        Bath and North East Somerset         800         Primary
#> 4899        Bath and North East Somerset         800       Secondary
#> 4900        Bath and North East Somerset         800         Special
#> 4901                    Bristol, City of         801         Primary
#> 4902                    Bristol, City of         801       Secondary
#> 4903                    Bristol, City of         801         Special
#> 4904                      North Somerset         802         Primary
#> 4905                      North Somerset         802       Secondary
#> 4906                      North Somerset         802         Special
#> 4907               South Gloucestershire         803         Primary
#> 4908               South Gloucestershire         803       Secondary
#> 4909               South Gloucestershire         803         Special
#> 4910                            Plymouth         879         Primary
#> 4911                            Plymouth         879       Secondary
#> 4912                            Plymouth         879         Special
#> 4913                              Torbay         880         Primary
#> 4914                              Torbay         880       Secondary
#> 4915                              Torbay         880         Special
#> 4916                             Swindon         866         Primary
#> 4917                             Swindon         866       Secondary
#> 4918                             Swindon         866         Special
#> 4919                            Cornwall         908         Primary
#> 4920                            Cornwall         908       Secondary
#> 4921                            Cornwall         908         Special
#> 4922                     Isles of Scilly         420       Secondary
#> 4923                           Wiltshire         865         Primary
#> 4924                           Wiltshire         865       Secondary
#> 4925                           Wiltshire         865         Special
#> 4926 Bournemouth, Christchurch and Poole         839         Primary
#> 4927 Bournemouth, Christchurch and Poole         839       Secondary
#> 4928 Bournemouth, Christchurch and Poole         839         Special
#> 4929                              Dorset         838         Primary
#> 4930                              Dorset         838       Secondary
#> 4931                              Dorset         838         Special
#> 4932                            Somerset         933         Primary
#> 4933                            Somerset         933       Secondary
#> 4934                            Somerset         933         Special
#> 4935                               Devon         878         Primary
#> 4936                               Devon         878       Secondary
#> 4937                               Devon         878         Special
#> 4938                     Gloucestershire         916         Primary
#> 4939                     Gloucestershire         916       Secondary
#> 4940                     Gloucestershire         916         Special
#> 4941                                <NA>          NA     All schools
#> 4942                                <NA>          NA         Primary
#> 4943                                <NA>          NA       Secondary
#> 4944                                <NA>          NA         Special
#> 4945                                <NA>          NA     All schools
#> 4946                                <NA>          NA         Primary
#> 4947                                <NA>          NA       Secondary
#> 4948                                <NA>          NA         Special
#> 4949                          Hartlepool         805         Primary
#> 4950                          Hartlepool         805       Secondary
#> 4951                          Hartlepool         805         Special
#> 4952                       Middlesbrough         806         Primary
#> 4953                       Middlesbrough         806       Secondary
#> 4954                       Middlesbrough         806         Special
#> 4955                Redcar and Cleveland         807         Primary
#> 4956                Redcar and Cleveland         807       Secondary
#> 4957                Redcar and Cleveland         807         Special
#> 4958                    Stockton-on-Tees         808         Primary
#> 4959                    Stockton-on-Tees         808       Secondary
#> 4960                    Stockton-on-Tees         808         Special
#> 4961                          Darlington         841         Primary
#> 4962                          Darlington         841       Secondary
#> 4963                          Darlington         841         Special
#> 4964                       County Durham         840         Primary
#> 4965                       County Durham         840       Secondary
#> 4966                       County Durham         840         Special
#> 4967                      Northumberland         929         Primary
#> 4968                      Northumberland         929       Secondary
#> 4969                      Northumberland         929         Special
#> 4970                 Newcastle upon Tyne         391         Primary
#> 4971                 Newcastle upon Tyne         391       Secondary
#> 4972                 Newcastle upon Tyne         391         Special
#> 4973                      North Tyneside         392         Primary
#> 4974                      North Tyneside         392       Secondary
#> 4975                      North Tyneside         392         Special
#> 4976                      South Tyneside         393         Primary
#> 4977                      South Tyneside         393       Secondary
#> 4978                      South Tyneside         393         Special
#> 4979                          Sunderland         394         Primary
#> 4980                          Sunderland         394       Secondary
#> 4981                          Sunderland         394         Special
#> 4982                           Gateshead         390         Primary
#> 4983                           Gateshead         390       Secondary
#> 4984                           Gateshead         390         Special
#> 4985                                <NA>          NA     All schools
#> 4986                                <NA>          NA         Primary
#> 4987                                <NA>          NA       Secondary
#> 4988                                <NA>          NA         Special
#> 4989                              Halton         876         Primary
#> 4990                              Halton         876       Secondary
#> 4991                              Halton         876         Special
#> 4992                          Warrington         877         Primary
#> 4993                          Warrington         877       Secondary
#> 4994                          Warrington         877         Special
#> 4995               Blackburn with Darwen         889         Primary
#> 4996               Blackburn with Darwen         889       Secondary
#> 4997               Blackburn with Darwen         889         Special
#> 4998                           Blackpool         890         Primary
#> 4999                           Blackpool         890       Secondary
#> 5000                           Blackpool         890         Special
#> 5001                       Cheshire East         895         Primary
#> 5002                       Cheshire East         895       Secondary
#> 5003                       Cheshire East         895         Special
#> 5004           Cheshire West and Chester         896         Primary
#> 5005           Cheshire West and Chester         896       Secondary
#> 5006           Cheshire West and Chester         896         Special
#> 5007                          Cumberland         942         Primary
#> 5008                          Cumberland         942       Secondary
#> 5009                          Cumberland         942         Special
#> 5010             Westmorland and Furness         943         Primary
#> 5011             Westmorland and Furness         943       Secondary
#> 5012             Westmorland and Furness         943         Special
#> 5013                              Bolton         350         Primary
#> 5014                              Bolton         350       Secondary
#> 5015                              Bolton         350         Special
#> 5016                                Bury         351         Primary
#> 5017                                Bury         351       Secondary
#> 5018                                Bury         351         Special
#> 5019                          Manchester         352         Primary
#> 5020                          Manchester         352       Secondary
#> 5021                          Manchester         352         Special
#> 5022                              Oldham         353         Primary
#> 5023                              Oldham         353       Secondary
#> 5024                              Oldham         353         Special
#> 5025                            Rochdale         354         Primary
#> 5026                            Rochdale         354       Secondary
#> 5027                            Rochdale         354         Special
#> 5028                             Salford         355         Primary
#> 5029                             Salford         355       Secondary
#> 5030                             Salford         355         Special
#> 5031                           Stockport         356         Primary
#> 5032                           Stockport         356       Secondary
#> 5033                           Stockport         356         Special
#> 5034                            Tameside         357         Primary
#> 5035                            Tameside         357       Secondary
#> 5036                            Tameside         357         Special
#> 5037                            Trafford         358         Primary
#> 5038                            Trafford         358       Secondary
#> 5039                            Trafford         358         Special
#> 5040                               Wigan         359         Primary
#> 5041                               Wigan         359       Secondary
#> 5042                               Wigan         359         Special
#> 5043                            Knowsley         340         Primary
#> 5044                            Knowsley         340       Secondary
#> 5045                            Knowsley         340         Special
#> 5046                           Liverpool         341         Primary
#> 5047                           Liverpool         341       Secondary
#> 5048                           Liverpool         341         Special
#> 5049                          St. Helens         342         Primary
#> 5050                          St. Helens         342       Secondary
#> 5051                          St. Helens         342         Special
#> 5052                              Sefton         343         Primary
#> 5053                              Sefton         343       Secondary
#> 5054                              Sefton         343         Special
#> 5055                              Wirral         344         Primary
#> 5056                              Wirral         344       Secondary
#> 5057                              Wirral         344         Special
#> 5058                          Lancashire         888         Primary
#> 5059                          Lancashire         888       Secondary
#> 5060                          Lancashire         888         Special
#> 5061                                <NA>          NA     All schools
#> 5062                                <NA>          NA         Primary
#> 5063                                <NA>          NA       Secondary
#> 5064                                <NA>          NA         Special
#> 5065         Kingston upon Hull, City of         810         Primary
#> 5066         Kingston upon Hull, City of         810       Secondary
#> 5067         Kingston upon Hull, City of         810         Special
#> 5068            East Riding of Yorkshire         811         Primary
#> 5069            East Riding of Yorkshire         811       Secondary
#> 5070            East Riding of Yorkshire         811         Special
#> 5071             North East Lincolnshire         812         Primary
#> 5072             North East Lincolnshire         812       Secondary
#> 5073             North East Lincolnshire         812         Special
#> 5074                  North Lincolnshire         813         Primary
#> 5075                  North Lincolnshire         813       Secondary
#> 5076                  North Lincolnshire         813         Special
#> 5077                                York         816         Primary
#> 5078                                York         816       Secondary
#> 5079                                York         816         Special
#> 5080                     North Yorkshire         815         Primary
#> 5081                     North Yorkshire         815       Secondary
#> 5082                     North Yorkshire         815         Special
#> 5083                            Barnsley         370         Primary
#> 5084                            Barnsley         370       Secondary
#> 5085                            Barnsley         370         Special
#> 5086                           Doncaster         371         Primary
#> 5087                           Doncaster         371       Secondary
#> 5088                           Doncaster         371         Special
#> 5089                           Rotherham         372         Primary
#> 5090                           Rotherham         372       Secondary
#> 5091                           Rotherham         372         Special
#> 5092                           Sheffield         373         Primary
#> 5093                           Sheffield         373       Secondary
#> 5094                           Sheffield         373         Special
#> 5095                            Bradford         380         Primary
#> 5096                            Bradford         380       Secondary
#> 5097                            Bradford         380         Special
#> 5098                          Calderdale         381         Primary
#> 5099                          Calderdale         381       Secondary
#> 5100                          Calderdale         381         Special
#> 5101                            Kirklees         382         Primary
#> 5102                            Kirklees         382       Secondary
#> 5103                            Kirklees         382         Special
#> 5104                               Leeds         383         Primary
#> 5105                               Leeds         383       Secondary
#> 5106                               Leeds         383         Special
#> 5107                           Wakefield         384         Primary
#> 5108                           Wakefield         384       Secondary
#> 5109                           Wakefield         384         Special
#> 5110                                <NA>          NA     All schools
#> 5111                                <NA>          NA         Primary
#> 5112                                <NA>          NA       Secondary
#> 5113                                <NA>          NA         Special
#> 5114                               Derby         831         Primary
#> 5115                               Derby         831       Secondary
#> 5116                               Derby         831         Special
#> 5117                           Leicester         856         Primary
#> 5118                           Leicester         856       Secondary
#> 5119                           Leicester         856         Special
#> 5120                             Rutland         857         Primary
#> 5121                             Rutland         857       Secondary
#> 5122                          Nottingham         892         Primary
#> 5123                          Nottingham         892       Secondary
#> 5124                          Nottingham         892         Special
#> 5125              North Northamptonshire         940         Primary
#> 5126              North Northamptonshire         940       Secondary
#> 5127              North Northamptonshire         940         Special
#> 5128               West Northamptonshire         941         Primary
#> 5129               West Northamptonshire         941       Secondary
#> 5130               West Northamptonshire         941         Special
#> 5131                          Derbyshire         830         Primary
#> 5132                          Derbyshire         830       Secondary
#> 5133                          Derbyshire         830         Special
#> 5134                      Leicestershire         855         Primary
#> 5135                      Leicestershire         855       Secondary
#> 5136                      Leicestershire         855         Special
#> 5137                        Lincolnshire         925         Primary
#> 5138                        Lincolnshire         925       Secondary
#> 5139                        Lincolnshire         925         Special
#> 5140                     Nottinghamshire         891         Primary
#> 5141                     Nottinghamshire         891       Secondary
#> 5142                     Nottinghamshire         891         Special
#> 5143                                <NA>          NA     All schools
#> 5144                                <NA>          NA         Primary
#> 5145                                <NA>          NA       Secondary
#> 5146                                <NA>          NA         Special
#> 5147            Herefordshire, County of         884         Primary
#> 5148            Herefordshire, County of         884       Secondary
#> 5149            Herefordshire, County of         884         Special
#> 5150                  Telford and Wrekin         894         Primary
#> 5151                  Telford and Wrekin         894       Secondary
#> 5152                  Telford and Wrekin         894         Special
#> 5153                      Stoke-on-Trent         861         Primary
#> 5154                      Stoke-on-Trent         861       Secondary
#> 5155                      Stoke-on-Trent         861         Special
#> 5156                          Shropshire         893         Primary
#> 5157                          Shropshire         893       Secondary
#> 5158                          Shropshire         893         Special
#> 5159                          Birmingham         330         Primary
#> 5160                          Birmingham         330       Secondary
#> 5161                          Birmingham         330         Special
#> 5162                            Coventry         331         Primary
#> 5163                            Coventry         331       Secondary
#> 5164                            Coventry         331         Special
#> 5165                              Dudley         332         Primary
#> 5166                              Dudley         332       Secondary
#> 5167                              Dudley         332         Special
#> 5168                            Sandwell         333         Primary
#> 5169                            Sandwell         333       Secondary
#> 5170                            Sandwell         333         Special
#> 5171                            Solihull         334         Primary
#> 5172                            Solihull         334       Secondary
#> 5173                            Solihull         334         Special
#> 5174                             Walsall         335         Primary
#> 5175                             Walsall         335       Secondary
#> 5176                             Walsall         335         Special
#> 5177                       Wolverhampton         336         Primary
#> 5178                       Wolverhampton         336       Secondary
#> 5179                       Wolverhampton         336         Special
#> 5180                       Staffordshire         860         Primary
#> 5181                       Staffordshire         860       Secondary
#> 5182                       Staffordshire         860         Special
#> 5183                        Warwickshire         937         Primary
#> 5184                        Warwickshire         937       Secondary
#> 5185                        Warwickshire         937         Special
#> 5186                      Worcestershire         885         Primary
#> 5187                      Worcestershire         885       Secondary
#> 5188                      Worcestershire         885         Special
#> 5189                                <NA>          NA     All schools
#> 5190                                <NA>          NA         Primary
#> 5191                                <NA>          NA       Secondary
#> 5192                                <NA>          NA         Special
#> 5193                        Peterborough         874         Primary
#> 5194                        Peterborough         874       Secondary
#> 5195                        Peterborough         874         Special
#> 5196                               Luton         821         Primary
#> 5197                               Luton         821       Secondary
#> 5198                               Luton         821         Special
#> 5199                     Southend-on-Sea         882         Primary
#> 5200                     Southend-on-Sea         882       Secondary
#> 5201                     Southend-on-Sea         882         Special
#> 5202                            Thurrock         883         Primary
#> 5203                            Thurrock         883       Secondary
#> 5204                            Thurrock         883         Special
#> 5205                             Bedford         822         Primary
#> 5206                             Bedford         822       Secondary
#> 5207                             Bedford         822         Special
#> 5208                Central Bedfordshire         823         Primary
#> 5209                Central Bedfordshire         823       Secondary
#> 5210                Central Bedfordshire         823         Special
#> 5211                      Cambridgeshire         873         Primary
#> 5212                      Cambridgeshire         873       Secondary
#> 5213                      Cambridgeshire         873         Special
#> 5214                               Essex         881         Primary
#> 5215                               Essex         881       Secondary
#> 5216                               Essex         881         Special
#> 5217                       Hertfordshire         919         Primary
#> 5218                       Hertfordshire         919       Secondary
#> 5219                       Hertfordshire         919         Special
#> 5220                             Norfolk         926         Primary
#> 5221                             Norfolk         926       Secondary
#> 5222                             Norfolk         926         Special
#> 5223                             Suffolk         935         Primary
#> 5224                             Suffolk         935       Secondary
#> 5225                             Suffolk         935         Special
#> 5226                                <NA>          NA     All schools
#> 5227                                <NA>          NA         Primary
#> 5228                                <NA>          NA       Secondary
#> 5229                                <NA>          NA         Special
#> 5230                      City of London         201         Primary
#> 5231                Barking and Dagenham         301         Primary
#> 5232                Barking and Dagenham         301       Secondary
#> 5233                Barking and Dagenham         301         Special
#> 5234                              Barnet         302         Primary
#> 5235                              Barnet         302       Secondary
#> 5236                              Barnet         302         Special
#> 5237                              Bexley         303         Primary
#> 5238                              Bexley         303       Secondary
#> 5239                              Bexley         303         Special
#> 5240                               Brent         304         Primary
#> 5241                               Brent         304       Secondary
#> 5242                               Brent         304         Special
#> 5243                             Bromley         305         Primary
#> 5244                             Bromley         305       Secondary
#> 5245                             Bromley         305         Special
#> 5246                              Camden         202         Primary
#> 5247                              Camden         202       Secondary
#> 5248                              Camden         202         Special
#> 5249                             Croydon         306         Primary
#> 5250                             Croydon         306       Secondary
#> 5251                             Croydon         306         Special
#> 5252                              Ealing         307         Primary
#> 5253                              Ealing         307       Secondary
#> 5254                              Ealing         307         Special
#> 5255                             Enfield         308         Primary
#> 5256                             Enfield         308       Secondary
#> 5257                             Enfield         308         Special
#> 5258                           Greenwich         203         Primary
#> 5259                           Greenwich         203       Secondary
#> 5260                           Greenwich         203         Special
#> 5261                             Hackney         204         Primary
#> 5262                             Hackney         204       Secondary
#> 5263                             Hackney         204         Special
#> 5264              Hammersmith and Fulham         205         Primary
#> 5265              Hammersmith and Fulham         205       Secondary
#> 5266              Hammersmith and Fulham         205         Special
#> 5267                            Haringey         309         Primary
#> 5268                            Haringey         309       Secondary
#> 5269                            Haringey         309         Special
#> 5270                              Harrow         310         Primary
#> 5271                              Harrow         310       Secondary
#> 5272                              Harrow         310         Special
#> 5273                            Havering         311         Primary
#> 5274                            Havering         311       Secondary
#> 5275                            Havering         311         Special
#> 5276                          Hillingdon         312         Primary
#> 5277                          Hillingdon         312       Secondary
#> 5278                          Hillingdon         312         Special
#> 5279                            Hounslow         313         Primary
#> 5280                            Hounslow         313       Secondary
#> 5281                            Hounslow         313         Special
#> 5282                           Islington         206         Primary
#> 5283                           Islington         206       Secondary
#> 5284                           Islington         206         Special
#> 5285              Kensington and Chelsea         207         Primary
#> 5286              Kensington and Chelsea         207       Secondary
#> 5287              Kensington and Chelsea         207         Special
#> 5288                Kingston upon Thames         314         Primary
#> 5289                Kingston upon Thames         314       Secondary
#> 5290                Kingston upon Thames         314         Special
#> 5291                             Lambeth         208         Primary
#> 5292                             Lambeth         208       Secondary
#> 5293                             Lambeth         208         Special
#> 5294                            Lewisham         209         Primary
#> 5295                            Lewisham         209       Secondary
#> 5296                            Lewisham         209         Special
#> 5297                              Merton         315         Primary
#> 5298                              Merton         315       Secondary
#> 5299                              Merton         315         Special
#> 5300                              Newham         316         Primary
#> 5301                              Newham         316       Secondary
#> 5302                              Newham         316         Special
#> 5303                           Redbridge         317         Primary
#> 5304                           Redbridge         317       Secondary
#> 5305                           Redbridge         317         Special
#> 5306                Richmond upon Thames         318         Primary
#> 5307                Richmond upon Thames         318       Secondary
#> 5308                Richmond upon Thames         318         Special
#> 5309                           Southwark         210         Primary
#> 5310                           Southwark         210       Secondary
#> 5311                           Southwark         210         Special
#> 5312                              Sutton         319         Primary
#> 5313                              Sutton         319       Secondary
#> 5314                              Sutton         319         Special
#> 5315                       Tower Hamlets         211         Primary
#> 5316                       Tower Hamlets         211       Secondary
#> 5317                       Tower Hamlets         211         Special
#> 5318                      Waltham Forest         320         Primary
#> 5319                      Waltham Forest         320       Secondary
#> 5320                      Waltham Forest         320         Special
#> 5321                          Wandsworth         212         Primary
#> 5322                          Wandsworth         212       Secondary
#> 5323                          Wandsworth         212         Special
#> 5324                         Westminster         213         Primary
#> 5325                         Westminster         213       Secondary
#> 5326                         Westminster         213         Special
#> 5327                                <NA>          NA     All schools
#> 5328                                <NA>          NA         Primary
#> 5329                                <NA>          NA       Secondary
#> 5330                                <NA>          NA         Special
#> 5331                              Medway         887         Primary
#> 5332                              Medway         887       Secondary
#> 5333                              Medway         887         Special
#> 5334                    Bracknell Forest         867         Primary
#> 5335                    Bracknell Forest         867       Secondary
#> 5336                    Bracknell Forest         867         Special
#> 5337                      West Berkshire         869         Primary
#> 5338                      West Berkshire         869       Secondary
#> 5339                      West Berkshire         869         Special
#> 5340                             Reading         870         Primary
#> 5341                             Reading         870       Secondary
#> 5342                             Reading         870         Special
#> 5343                              Slough         871         Primary
#> 5344                              Slough         871       Secondary
#> 5345                              Slough         871         Special
#> 5346              Windsor and Maidenhead         868         Primary
#> 5347              Windsor and Maidenhead         868       Secondary
#> 5348              Windsor and Maidenhead         868         Special
#> 5349                           Wokingham         872         Primary
#> 5350                           Wokingham         872       Secondary
#> 5351                           Wokingham         872         Special
#> 5352                       Milton Keynes         826         Primary
#> 5353                       Milton Keynes         826       Secondary
#> 5354                       Milton Keynes         826         Special
#> 5355                   Brighton and Hove         846         Primary
#> 5356                   Brighton and Hove         846       Secondary
#> 5357                   Brighton and Hove         846         Special
#> 5358                          Portsmouth         851         Primary
#> 5359                          Portsmouth         851       Secondary
#> 5360                          Portsmouth         851         Special
#> 5361                         Southampton         852         Primary
#> 5362                         Southampton         852       Secondary
#> 5363                         Southampton         852         Special
#> 5364                       Isle of Wight         921         Primary
#> 5365                       Isle of Wight         921       Secondary
#> 5366                       Isle of Wight         921         Special
#> 5367                     Buckinghamshire         825         Primary
#> 5368                     Buckinghamshire         825       Secondary
#> 5369                     Buckinghamshire         825         Special
#> 5370                         East Sussex         845         Primary
#> 5371                         East Sussex         845       Secondary
#> 5372                         East Sussex         845         Special
#> 5373                           Hampshire         850         Primary
#> 5374                           Hampshire         850       Secondary
#> 5375                           Hampshire         850         Special
#> 5376                                Kent         886         Primary
#> 5377                                Kent         886       Secondary
#> 5378                                Kent         886         Special
#> 5379                         Oxfordshire         931         Primary
#> 5380                         Oxfordshire         931       Secondary
#> 5381                         Oxfordshire         931         Special
#> 5382                              Surrey         936         Primary
#> 5383                              Surrey         936       Secondary
#> 5384                              Surrey         936         Special
#> 5385                         West Sussex         938         Primary
#> 5386                         West Sussex         938       Secondary
#> 5387                         West Sussex         938         Special
#> 5388                                <NA>          NA     All schools
#> 5389                                <NA>          NA         Primary
#> 5390                                <NA>          NA       Secondary
#> 5391                                <NA>          NA         Special
#> 5392        Bath and North East Somerset         800         Primary
#> 5393        Bath and North East Somerset         800       Secondary
#> 5394        Bath and North East Somerset         800         Special
#> 5395                    Bristol, City of         801         Primary
#> 5396                    Bristol, City of         801       Secondary
#> 5397                    Bristol, City of         801         Special
#> 5398                      North Somerset         802         Primary
#> 5399                      North Somerset         802       Secondary
#> 5400                      North Somerset         802         Special
#> 5401               South Gloucestershire         803         Primary
#> 5402               South Gloucestershire         803       Secondary
#> 5403               South Gloucestershire         803         Special
#> 5404                            Plymouth         879         Primary
#> 5405                            Plymouth         879       Secondary
#> 5406                            Plymouth         879         Special
#> 5407                              Torbay         880         Primary
#> 5408                              Torbay         880       Secondary
#> 5409                              Torbay         880         Special
#> 5410                             Swindon         866         Primary
#> 5411                             Swindon         866       Secondary
#> 5412                             Swindon         866         Special
#> 5413                            Cornwall         908         Primary
#> 5414                            Cornwall         908       Secondary
#> 5415                            Cornwall         908         Special
#> 5416                     Isles of Scilly         420       Secondary
#> 5417                           Wiltshire         865         Primary
#> 5418                           Wiltshire         865       Secondary
#> 5419                           Wiltshire         865         Special
#> 5420 Bournemouth, Christchurch and Poole         839         Primary
#> 5421 Bournemouth, Christchurch and Poole         839       Secondary
#> 5422 Bournemouth, Christchurch and Poole         839         Special
#> 5423                              Dorset         838         Primary
#> 5424                              Dorset         838       Secondary
#> 5425                              Dorset         838         Special
#> 5426                            Somerset         933         Primary
#> 5427                            Somerset         933       Secondary
#> 5428                            Somerset         933         Special
#> 5429                               Devon         878         Primary
#> 5430                               Devon         878       Secondary
#> 5431                               Devon         878         Special
#> 5432                     Gloucestershire         916         Primary
#> 5433                     Gloucestershire         916       Secondary
#> 5434                     Gloucestershire         916         Special
#> 5435                                <NA>          NA     All schools
#> 5436                                <NA>          NA         Primary
#> 5437                                <NA>          NA       Secondary
#> 5438                                <NA>          NA         Special
#> 5439                                <NA>          NA     All schools
#> 5440                                <NA>          NA         Primary
#> 5441                                <NA>          NA       Secondary
#> 5442                                <NA>          NA         Special
#> 5443                          Hartlepool         805         Primary
#> 5444                          Hartlepool         805       Secondary
#> 5445                          Hartlepool         805         Special
#> 5446                       Middlesbrough         806         Primary
#> 5447                       Middlesbrough         806       Secondary
#> 5448                       Middlesbrough         806         Special
#> 5449                Redcar and Cleveland         807         Primary
#> 5450                Redcar and Cleveland         807       Secondary
#> 5451                Redcar and Cleveland         807         Special
#> 5452                    Stockton-on-Tees         808         Primary
#> 5453                    Stockton-on-Tees         808       Secondary
#> 5454                    Stockton-on-Tees         808         Special
#> 5455                          Darlington         841         Primary
#> 5456                          Darlington         841       Secondary
#> 5457                          Darlington         841         Special
#> 5458                       County Durham         840         Primary
#> 5459                       County Durham         840       Secondary
#> 5460                       County Durham         840         Special
#> 5461                      Northumberland         929         Primary
#> 5462                      Northumberland         929       Secondary
#> 5463                      Northumberland         929         Special
#> 5464                 Newcastle upon Tyne         391         Primary
#> 5465                 Newcastle upon Tyne         391       Secondary
#> 5466                 Newcastle upon Tyne         391         Special
#> 5467                      North Tyneside         392         Primary
#> 5468                      North Tyneside         392       Secondary
#> 5469                      North Tyneside         392         Special
#> 5470                      South Tyneside         393         Primary
#> 5471                      South Tyneside         393       Secondary
#> 5472                      South Tyneside         393         Special
#> 5473                          Sunderland         394         Primary
#> 5474                          Sunderland         394       Secondary
#> 5475                          Sunderland         394         Special
#> 5476                           Gateshead         390         Primary
#> 5477                           Gateshead         390       Secondary
#> 5478                           Gateshead         390         Special
#> 5479                                <NA>          NA     All schools
#> 5480                                <NA>          NA         Primary
#> 5481                                <NA>          NA       Secondary
#> 5482                                <NA>          NA         Special
#> 5483                              Halton         876         Primary
#> 5484                              Halton         876       Secondary
#> 5485                              Halton         876         Special
#> 5486                          Warrington         877         Primary
#> 5487                          Warrington         877       Secondary
#> 5488                          Warrington         877         Special
#> 5489               Blackburn with Darwen         889         Primary
#> 5490               Blackburn with Darwen         889       Secondary
#> 5491               Blackburn with Darwen         889         Special
#> 5492                           Blackpool         890         Primary
#> 5493                           Blackpool         890       Secondary
#> 5494                           Blackpool         890         Special
#> 5495                       Cheshire East         895         Primary
#> 5496                       Cheshire East         895       Secondary
#> 5497                       Cheshire East         895         Special
#> 5498           Cheshire West and Chester         896         Primary
#> 5499           Cheshire West and Chester         896       Secondary
#> 5500           Cheshire West and Chester         896         Special
#> 5501                          Cumberland         942         Primary
#> 5502                          Cumberland         942       Secondary
#> 5503                          Cumberland         942         Special
#> 5504             Westmorland and Furness         943         Primary
#> 5505             Westmorland and Furness         943       Secondary
#> 5506             Westmorland and Furness         943         Special
#> 5507                              Bolton         350         Primary
#> 5508                              Bolton         350       Secondary
#> 5509                              Bolton         350         Special
#> 5510                                Bury         351         Primary
#> 5511                                Bury         351       Secondary
#> 5512                                Bury         351         Special
#> 5513                          Manchester         352         Primary
#> 5514                          Manchester         352       Secondary
#> 5515                          Manchester         352         Special
#> 5516                              Oldham         353         Primary
#> 5517                              Oldham         353       Secondary
#> 5518                              Oldham         353         Special
#> 5519                            Rochdale         354         Primary
#> 5520                            Rochdale         354       Secondary
#> 5521                            Rochdale         354         Special
#> 5522                             Salford         355         Primary
#> 5523                             Salford         355       Secondary
#> 5524                             Salford         355         Special
#> 5525                           Stockport         356         Primary
#> 5526                           Stockport         356       Secondary
#> 5527                           Stockport         356         Special
#> 5528                            Tameside         357         Primary
#> 5529                            Tameside         357       Secondary
#> 5530                            Tameside         357         Special
#> 5531                            Trafford         358         Primary
#> 5532                            Trafford         358       Secondary
#> 5533                            Trafford         358         Special
#> 5534                               Wigan         359         Primary
#> 5535                               Wigan         359       Secondary
#> 5536                               Wigan         359         Special
#> 5537                            Knowsley         340         Primary
#> 5538                            Knowsley         340       Secondary
#> 5539                            Knowsley         340         Special
#> 5540                           Liverpool         341         Primary
#> 5541                           Liverpool         341       Secondary
#> 5542                           Liverpool         341         Special
#> 5543                          St. Helens         342         Primary
#> 5544                          St. Helens         342       Secondary
#> 5545                          St. Helens         342         Special
#> 5546                              Sefton         343         Primary
#> 5547                              Sefton         343       Secondary
#> 5548                              Sefton         343         Special
#> 5549                              Wirral         344         Primary
#> 5550                              Wirral         344       Secondary
#> 5551                              Wirral         344         Special
#> 5552                          Lancashire         888         Primary
#> 5553                          Lancashire         888       Secondary
#> 5554                          Lancashire         888         Special
#> 5555                                <NA>          NA     All schools
#> 5556                                <NA>          NA         Primary
#> 5557                                <NA>          NA       Secondary
#> 5558                                <NA>          NA         Special
#> 5559         Kingston upon Hull, City of         810         Primary
#> 5560         Kingston upon Hull, City of         810       Secondary
#> 5561         Kingston upon Hull, City of         810         Special
#> 5562            East Riding of Yorkshire         811         Primary
#> 5563            East Riding of Yorkshire         811       Secondary
#> 5564            East Riding of Yorkshire         811         Special
#> 5565             North East Lincolnshire         812         Primary
#> 5566             North East Lincolnshire         812       Secondary
#> 5567             North East Lincolnshire         812         Special
#> 5568                  North Lincolnshire         813         Primary
#> 5569                  North Lincolnshire         813       Secondary
#> 5570                  North Lincolnshire         813         Special
#> 5571                                York         816         Primary
#> 5572                                York         816       Secondary
#> 5573                                York         816         Special
#> 5574                     North Yorkshire         815         Primary
#> 5575                     North Yorkshire         815       Secondary
#> 5576                     North Yorkshire         815         Special
#> 5577                            Barnsley         370         Primary
#> 5578                            Barnsley         370       Secondary
#> 5579                            Barnsley         370         Special
#> 5580                           Doncaster         371         Primary
#> 5581                           Doncaster         371       Secondary
#> 5582                           Doncaster         371         Special
#> 5583                           Rotherham         372         Primary
#> 5584                           Rotherham         372       Secondary
#> 5585                           Rotherham         372         Special
#> 5586                           Sheffield         373         Primary
#> 5587                           Sheffield         373       Secondary
#> 5588                           Sheffield         373         Special
#> 5589                            Bradford         380         Primary
#> 5590                            Bradford         380       Secondary
#> 5591                            Bradford         380         Special
#> 5592                          Calderdale         381         Primary
#> 5593                          Calderdale         381       Secondary
#> 5594                          Calderdale         381         Special
#> 5595                            Kirklees         382         Primary
#> 5596                            Kirklees         382       Secondary
#> 5597                            Kirklees         382         Special
#> 5598                               Leeds         383         Primary
#> 5599                               Leeds         383       Secondary
#> 5600                               Leeds         383         Special
#> 5601                           Wakefield         384         Primary
#> 5602                           Wakefield         384       Secondary
#> 5603                           Wakefield         384         Special
#> 5604                                <NA>          NA     All schools
#> 5605                                <NA>          NA         Primary
#> 5606                                <NA>          NA       Secondary
#> 5607                                <NA>          NA         Special
#> 5608                               Derby         831         Primary
#> 5609                               Derby         831       Secondary
#> 5610                               Derby         831         Special
#> 5611                           Leicester         856         Primary
#> 5612                           Leicester         856       Secondary
#> 5613                           Leicester         856         Special
#> 5614                             Rutland         857         Primary
#> 5615                             Rutland         857       Secondary
#> 5616                          Nottingham         892         Primary
#> 5617                          Nottingham         892       Secondary
#> 5618                          Nottingham         892         Special
#> 5619              North Northamptonshire         940         Primary
#> 5620              North Northamptonshire         940       Secondary
#> 5621              North Northamptonshire         940         Special
#> 5622               West Northamptonshire         941         Primary
#> 5623               West Northamptonshire         941       Secondary
#> 5624               West Northamptonshire         941         Special
#> 5625                          Derbyshire         830         Primary
#> 5626                          Derbyshire         830       Secondary
#> 5627                          Derbyshire         830         Special
#> 5628                      Leicestershire         855         Primary
#> 5629                      Leicestershire         855       Secondary
#> 5630                      Leicestershire         855         Special
#> 5631                        Lincolnshire         925         Primary
#> 5632                        Lincolnshire         925       Secondary
#> 5633                        Lincolnshire         925         Special
#> 5634                     Nottinghamshire         891         Primary
#> 5635                     Nottinghamshire         891       Secondary
#> 5636                     Nottinghamshire         891         Special
#> 5637                                <NA>          NA     All schools
#> 5638                                <NA>          NA         Primary
#> 5639                                <NA>          NA       Secondary
#> 5640                                <NA>          NA         Special
#> 5641            Herefordshire, County of         884         Primary
#> 5642            Herefordshire, County of         884       Secondary
#> 5643            Herefordshire, County of         884         Special
#> 5644                  Telford and Wrekin         894         Primary
#> 5645                  Telford and Wrekin         894       Secondary
#> 5646                  Telford and Wrekin         894         Special
#> 5647                      Stoke-on-Trent         861         Primary
#> 5648                      Stoke-on-Trent         861       Secondary
#> 5649                      Stoke-on-Trent         861         Special
#> 5650                          Shropshire         893         Primary
#> 5651                          Shropshire         893       Secondary
#> 5652                          Shropshire         893         Special
#> 5653                          Birmingham         330         Primary
#> 5654                          Birmingham         330       Secondary
#> 5655                          Birmingham         330         Special
#> 5656                            Coventry         331         Primary
#> 5657                            Coventry         331       Secondary
#> 5658                            Coventry         331         Special
#> 5659                              Dudley         332         Primary
#> 5660                              Dudley         332       Secondary
#> 5661                              Dudley         332         Special
#> 5662                            Sandwell         333         Primary
#> 5663                            Sandwell         333       Secondary
#> 5664                            Sandwell         333         Special
#> 5665                            Solihull         334         Primary
#> 5666                            Solihull         334       Secondary
#> 5667                            Solihull         334         Special
#> 5668                             Walsall         335         Primary
#> 5669                             Walsall         335       Secondary
#> 5670                             Walsall         335         Special
#> 5671                       Wolverhampton         336         Primary
#> 5672                       Wolverhampton         336       Secondary
#> 5673                       Wolverhampton         336         Special
#> 5674                       Staffordshire         860         Primary
#> 5675                       Staffordshire         860       Secondary
#> 5676                       Staffordshire         860         Special
#> 5677                        Warwickshire         937         Primary
#> 5678                        Warwickshire         937       Secondary
#> 5679                        Warwickshire         937         Special
#> 5680                      Worcestershire         885         Primary
#> 5681                      Worcestershire         885       Secondary
#> 5682                      Worcestershire         885         Special
#> 5683                                <NA>          NA     All schools
#> 5684                                <NA>          NA         Primary
#> 5685                                <NA>          NA       Secondary
#> 5686                                <NA>          NA         Special
#> 5687                        Peterborough         874         Primary
#> 5688                        Peterborough         874       Secondary
#> 5689                        Peterborough         874         Special
#> 5690                               Luton         821         Primary
#> 5691                               Luton         821       Secondary
#> 5692                               Luton         821         Special
#> 5693                     Southend-on-Sea         882         Primary
#> 5694                     Southend-on-Sea         882       Secondary
#> 5695                     Southend-on-Sea         882         Special
#> 5696                            Thurrock         883         Primary
#> 5697                            Thurrock         883       Secondary
#> 5698                            Thurrock         883         Special
#> 5699                             Bedford         822         Primary
#> 5700                             Bedford         822       Secondary
#> 5701                             Bedford         822         Special
#> 5702                Central Bedfordshire         823         Primary
#> 5703                Central Bedfordshire         823       Secondary
#> 5704                Central Bedfordshire         823         Special
#> 5705                      Cambridgeshire         873         Primary
#> 5706                      Cambridgeshire         873       Secondary
#> 5707                      Cambridgeshire         873         Special
#> 5708                               Essex         881         Primary
#> 5709                               Essex         881       Secondary
#> 5710                               Essex         881         Special
#> 5711                       Hertfordshire         919         Primary
#> 5712                       Hertfordshire         919       Secondary
#> 5713                       Hertfordshire         919         Special
#> 5714                             Norfolk         926         Primary
#> 5715                             Norfolk         926       Secondary
#> 5716                             Norfolk         926         Special
#> 5717                             Suffolk         935         Primary
#> 5718                             Suffolk         935       Secondary
#> 5719                             Suffolk         935         Special
#> 5720                                <NA>          NA     All schools
#> 5721                                <NA>          NA         Primary
#> 5722                                <NA>          NA       Secondary
#> 5723                                <NA>          NA         Special
#> 5724                      City of London         201         Primary
#> 5725                Barking and Dagenham         301         Primary
#> 5726                Barking and Dagenham         301       Secondary
#> 5727                Barking and Dagenham         301         Special
#> 5728                              Barnet         302         Primary
#> 5729                              Barnet         302       Secondary
#> 5730                              Barnet         302         Special
#> 5731                              Bexley         303         Primary
#> 5732                              Bexley         303       Secondary
#> 5733                              Bexley         303         Special
#> 5734                               Brent         304         Primary
#> 5735                               Brent         304       Secondary
#> 5736                               Brent         304         Special
#> 5737                             Bromley         305         Primary
#> 5738                             Bromley         305       Secondary
#> 5739                             Bromley         305         Special
#> 5740                              Camden         202         Primary
#> 5741                              Camden         202       Secondary
#> 5742                              Camden         202         Special
#> 5743                             Croydon         306         Primary
#> 5744                             Croydon         306       Secondary
#> 5745                             Croydon         306         Special
#> 5746                              Ealing         307         Primary
#> 5747                              Ealing         307       Secondary
#> 5748                              Ealing         307         Special
#> 5749                             Enfield         308         Primary
#> 5750                             Enfield         308       Secondary
#> 5751                             Enfield         308         Special
#> 5752                           Greenwich         203         Primary
#> 5753                           Greenwich         203       Secondary
#> 5754                           Greenwich         203         Special
#> 5755                             Hackney         204         Primary
#> 5756                             Hackney         204       Secondary
#> 5757                             Hackney         204         Special
#> 5758              Hammersmith and Fulham         205         Primary
#> 5759              Hammersmith and Fulham         205       Secondary
#> 5760              Hammersmith and Fulham         205         Special
#> 5761                            Haringey         309         Primary
#> 5762                            Haringey         309       Secondary
#> 5763                            Haringey         309         Special
#> 5764                              Harrow         310         Primary
#> 5765                              Harrow         310       Secondary
#> 5766                              Harrow         310         Special
#> 5767                            Havering         311         Primary
#> 5768                            Havering         311       Secondary
#> 5769                            Havering         311         Special
#> 5770                          Hillingdon         312         Primary
#> 5771                          Hillingdon         312       Secondary
#> 5772                          Hillingdon         312         Special
#> 5773                            Hounslow         313         Primary
#> 5774                            Hounslow         313       Secondary
#> 5775                            Hounslow         313         Special
#> 5776                           Islington         206         Primary
#> 5777                           Islington         206       Secondary
#> 5778                           Islington         206         Special
#> 5779              Kensington and Chelsea         207         Primary
#> 5780              Kensington and Chelsea         207       Secondary
#> 5781              Kensington and Chelsea         207         Special
#> 5782                Kingston upon Thames         314         Primary
#> 5783                Kingston upon Thames         314       Secondary
#> 5784                Kingston upon Thames         314         Special
#> 5785                             Lambeth         208         Primary
#> 5786                             Lambeth         208       Secondary
#> 5787                             Lambeth         208         Special
#> 5788                            Lewisham         209         Primary
#> 5789                            Lewisham         209       Secondary
#> 5790                            Lewisham         209         Special
#> 5791                              Merton         315         Primary
#> 5792                              Merton         315       Secondary
#> 5793                              Merton         315         Special
#> 5794                              Newham         316         Primary
#> 5795                              Newham         316       Secondary
#> 5796                              Newham         316         Special
#> 5797                           Redbridge         317         Primary
#> 5798                           Redbridge         317       Secondary
#> 5799                           Redbridge         317         Special
#> 5800                Richmond upon Thames         318         Primary
#> 5801                Richmond upon Thames         318       Secondary
#> 5802                Richmond upon Thames         318         Special
#> 5803                           Southwark         210         Primary
#> 5804                           Southwark         210       Secondary
#> 5805                           Southwark         210         Special
#> 5806                              Sutton         319         Primary
#> 5807                              Sutton         319       Secondary
#> 5808                              Sutton         319         Special
#> 5809                       Tower Hamlets         211         Primary
#> 5810                       Tower Hamlets         211       Secondary
#> 5811                       Tower Hamlets         211         Special
#> 5812                      Waltham Forest         320         Primary
#> 5813                      Waltham Forest         320       Secondary
#> 5814                      Waltham Forest         320         Special
#> 5815                          Wandsworth         212         Primary
#> 5816                          Wandsworth         212       Secondary
#> 5817                          Wandsworth         212         Special
#> 5818                         Westminster         213         Primary
#> 5819                         Westminster         213       Secondary
#> 5820                         Westminster         213         Special
#> 5821                                <NA>          NA     All schools
#> 5822                                <NA>          NA         Primary
#> 5823                                <NA>          NA       Secondary
#> 5824                                <NA>          NA         Special
#> 5825                              Medway         887         Primary
#> 5826                              Medway         887       Secondary
#> 5827                              Medway         887         Special
#> 5828                    Bracknell Forest         867         Primary
#> 5829                    Bracknell Forest         867       Secondary
#> 5830                    Bracknell Forest         867         Special
#> 5831                      West Berkshire         869         Primary
#> 5832                      West Berkshire         869       Secondary
#> 5833                      West Berkshire         869         Special
#> 5834                             Reading         870         Primary
#> 5835                             Reading         870       Secondary
#> 5836                             Reading         870         Special
#> 5837                              Slough         871         Primary
#> 5838                              Slough         871       Secondary
#> 5839                              Slough         871         Special
#> 5840              Windsor and Maidenhead         868         Primary
#> 5841              Windsor and Maidenhead         868       Secondary
#> 5842              Windsor and Maidenhead         868         Special
#> 5843                           Wokingham         872         Primary
#> 5844                           Wokingham         872       Secondary
#> 5845                           Wokingham         872         Special
#> 5846                       Milton Keynes         826         Primary
#> 5847                       Milton Keynes         826       Secondary
#> 5848                       Milton Keynes         826         Special
#> 5849                   Brighton and Hove         846         Primary
#> 5850                   Brighton and Hove         846       Secondary
#> 5851                   Brighton and Hove         846         Special
#> 5852                          Portsmouth         851         Primary
#> 5853                          Portsmouth         851       Secondary
#> 5854                          Portsmouth         851         Special
#> 5855                         Southampton         852         Primary
#> 5856                         Southampton         852       Secondary
#> 5857                         Southampton         852         Special
#> 5858                       Isle of Wight         921         Primary
#> 5859                       Isle of Wight         921       Secondary
#> 5860                       Isle of Wight         921         Special
#> 5861                     Buckinghamshire         825         Primary
#> 5862                     Buckinghamshire         825       Secondary
#> 5863                     Buckinghamshire         825         Special
#> 5864                         East Sussex         845         Primary
#> 5865                         East Sussex         845       Secondary
#> 5866                         East Sussex         845         Special
#> 5867                           Hampshire         850         Primary
#> 5868                           Hampshire         850       Secondary
#> 5869                           Hampshire         850         Special
#> 5870                                Kent         886         Primary
#> 5871                                Kent         886       Secondary
#> 5872                                Kent         886         Special
#> 5873                         Oxfordshire         931         Primary
#> 5874                         Oxfordshire         931       Secondary
#> 5875                         Oxfordshire         931         Special
#> 5876                              Surrey         936         Primary
#> 5877                              Surrey         936       Secondary
#> 5878                              Surrey         936         Special
#> 5879                         West Sussex         938         Primary
#> 5880                         West Sussex         938       Secondary
#> 5881                         West Sussex         938         Special
#> 5882                                <NA>          NA     All schools
#> 5883                                <NA>          NA         Primary
#> 5884                                <NA>          NA       Secondary
#> 5885                                <NA>          NA         Special
#> 5886        Bath and North East Somerset         800         Primary
#> 5887        Bath and North East Somerset         800       Secondary
#> 5888        Bath and North East Somerset         800         Special
#> 5889                    Bristol, City of         801         Primary
#> 5890                    Bristol, City of         801       Secondary
#> 5891                    Bristol, City of         801         Special
#> 5892                      North Somerset         802         Primary
#> 5893                      North Somerset         802       Secondary
#> 5894                      North Somerset         802         Special
#> 5895               South Gloucestershire         803         Primary
#> 5896               South Gloucestershire         803       Secondary
#> 5897               South Gloucestershire         803         Special
#> 5898                            Plymouth         879         Primary
#> 5899                            Plymouth         879       Secondary
#> 5900                            Plymouth         879         Special
#> 5901                              Torbay         880         Primary
#> 5902                              Torbay         880       Secondary
#> 5903                              Torbay         880         Special
#> 5904                             Swindon         866         Primary
#> 5905                             Swindon         866       Secondary
#> 5906                             Swindon         866         Special
#> 5907                            Cornwall         908         Primary
#> 5908                            Cornwall         908       Secondary
#> 5909                            Cornwall         908         Special
#> 5910                     Isles of Scilly         420       Secondary
#> 5911                           Wiltshire         865         Primary
#> 5912                           Wiltshire         865       Secondary
#> 5913                           Wiltshire         865         Special
#> 5914 Bournemouth, Christchurch and Poole         839         Primary
#> 5915 Bournemouth, Christchurch and Poole         839       Secondary
#> 5916 Bournemouth, Christchurch and Poole         839         Special
#> 5917                              Dorset         838         Primary
#> 5918                              Dorset         838       Secondary
#> 5919                              Dorset         838         Special
#> 5920                            Somerset         933         Primary
#> 5921                            Somerset         933       Secondary
#> 5922                            Somerset         933         Special
#> 5923                               Devon         878         Primary
#> 5924                               Devon         878       Secondary
#> 5925                               Devon         878         Special
#> 5926                     Gloucestershire         916         Primary
#> 5927                     Gloucestershire         916       Secondary
#> 5928                     Gloucestershire         916         Special
#>      persistent_absence_percent
#> 1                          18.7
#> 2                          13.5
#> 3                         24.32
#> 4                          35.8
#> 5                         19.18
#> 6                         13.26
#> 7                            26
#> 8                         32.09
#> 9                          13.8
#> 10                         26.6
#> 11                        28.32
#> 12                        15.99
#> 13                        30.76
#> 14                        29.41
#> 15                        13.21
#> 16                        26.14
#> 17                        36.67
#> 18                        12.53
#> 19                        27.81
#> 20                        29.93
#> 21                        14.71
#> 22                         26.2
#> 23                        22.56
#> 24                        13.82
#> 25                        25.66
#> 26                        33.59
#> 27                        10.91
#> 28                        22.88
#> 29                        37.42
#> 30                        14.87
#> 31                        26.67
#> 32                        38.65
#> 33                        11.35
#> 34                        21.36
#> 35                        27.68
#> 36                        13.61
#> 37                         28.5
#> 38                        24.79
#> 39                         13.8
#> 40                        28.77
#> 41                        34.15
#> 42                        10.54
#> 43                        24.19
#> 44                        25.93
#> 45                        18.48
#> 46                        13.29
#> 47                        24.53
#> 48                        35.43
#> 49                        15.24
#> 50                        29.56
#> 51                        33.26
#> 52                         9.09
#> 53                        20.54
#> 54                        37.61
#> 55                        14.56
#> 56                        24.89
#> 57                        37.88
#> 58                        16.35
#> 59                        30.39
#> 60                        30.57
#> 61                         9.86
#> 62                        22.05
#> 63                        35.76
#> 64                        11.42
#> 65                        25.23
#> 66                        31.18
#> 67                        10.46
#> 68                        23.66
#> 69                        24.01
#> 70                          8.8
#> 71                        22.15
#> 72                        30.19
#> 73                         14.1
#> 74                        23.96
#> 75                         34.7
#> 76                         12.3
#> 77                        25.66
#> 78                        41.85
#> 79                        16.11
#> 80                        22.78
#> 81                        42.51
#> 82                        15.05
#> 83                        23.54
#> 84                        41.89
#> 85                        14.72
#> 86                        27.48
#> 87                        47.28
#> 88                        16.15
#> 89                        27.82
#> 90                        36.85
#> 91                        11.65
#> 92                        23.43
#> 93                        34.42
#> 94                        12.48
#> 95                        25.92
#> 96                        32.56
#> 97                         9.42
#> 98                        16.35
#> 99                        28.59
#> 100                       12.41
#> 101                       23.81
#> 102                       30.47
#> 103                       19.71
#> 104                       32.73
#> 105                       40.18
#> 106                        15.7
#> 107                        27.7
#> 108                       38.26
#> 109                       12.82
#> 110                       25.49
#> 111                       35.52
#> 112                       13.37
#> 113                       28.59
#> 114                       32.83
#> 115                       14.67
#> 116                       25.96
#> 117                       36.39
#> 118                        12.7
#> 119                       23.84
#> 120                       30.11
#> 121                       19.55
#> 122                       13.99
#> 123                       26.11
#> 124                       34.32
#> 125                       15.09
#> 126                       26.82
#> 127                       35.55
#> 128                       10.63
#> 129                       24.17
#> 130                       24.56
#> 131                       12.91
#> 132                       29.63
#> 133                       18.91
#> 134                       12.69
#> 135                       25.17
#> 136                       26.92
#> 137                       11.89
#> 138                       24.62
#> 139                       24.44
#> 140                       10.69
#> 141                       24.61
#> 142                       39.11
#> 143                       12.33
#> 144                       26.94
#> 145                       37.79
#> 146                       13.95
#> 147                       25.47
#> 148                       30.34
#> 149                       14.51
#> 150                       26.01
#> 151                       36.68
#> 152                       16.03
#> 153                       27.41
#> 154                       34.75
#> 155                       16.91
#> 156                       32.15
#> 157                       36.86
#> 158                       12.51
#> 159                       23.18
#> 160                       25.86
#> 161                       13.86
#> 162                       22.44
#> 163                       33.67
#> 164                       14.87
#> 165                       24.51
#> 166                       36.06
#> 167                        13.9
#> 168                       27.23
#> 169                       38.73
#> 170                       17.85
#> 171                       12.58
#> 172                       23.63
#> 173                       35.59
#> 174                       15.35
#> 175                       25.16
#> 176                       38.74
#> 177                       16.98
#> 178                       23.57
#> 179                       52.47
#> 180                        9.23
#> 181                       18.58
#> 182                       17.36
#> 183                       26.62
#> 184                       36.87
#> 185                       12.69
#> 186                       24.27
#> 187                       35.52
#> 188                       11.75
#> 189                       22.43
#> 190                       33.43
#> 191                       10.64
#> 192                       22.49
#> 193                       29.08
#> 194                       10.21
#> 195                       22.54
#> 196                       27.02
#> 197                       12.46
#> 198                       24.75
#> 199                       36.54
#> 200                       11.64
#> 201                       23.43
#> 202                       30.66
#> 203                       19.47
#> 204                       14.41
#> 205                       24.79
#> 206                       37.79
#> 207                       10.34
#> 208                       22.39
#> 209                        34.5
#> 210                       12.36
#> 211                       22.77
#> 212                       30.03
#> 213                       14.41
#> 214                       28.59
#> 215                       39.63
#> 216                       11.66
#> 217                       24.45
#> 218                        45.2
#> 219                       17.58
#> 220                       26.04
#> 221                       47.54
#> 222                        16.5
#> 223                       26.66
#> 224                       32.85
#> 225                       14.83
#> 226                       26.36
#> 227                       30.62
#> 228                       16.01
#> 229                        25.6
#> 230                       37.89
#> 231                       12.76
#> 232                       23.93
#> 233                       43.75
#> 234                       16.53
#> 235                       28.71
#> 236                       32.82
#> 237                       15.49
#> 238                        21.9
#> 239                       33.15
#> 240                       10.53
#> 241                       21.41
#> 242                       28.63
#> 243                       12.87
#> 244                       24.83
#> 245                       34.09
#> 246                       12.54
#> 247                       23.61
#> 248                       36.48
#> 249                       17.97
#> 250                       12.91
#> 251                        23.4
#> 252                       33.54
#> 253                       14.23
#> 254                       24.82
#> 255                        35.5
#> 256                          16
#> 257                       22.99
#> 258                       37.62
#> 259                       14.99
#> 260                       22.04
#> 261                       33.01
#> 262                       14.58
#> 263                       22.43
#> 264                       27.04
#> 265                       12.91
#> 266                       25.26
#> 267                       26.42
#> 268                       11.56
#> 269                       20.65
#> 270                       34.91
#> 271                       12.31
#> 272                        21.7
#> 273                       35.84
#> 274                       13.31
#> 275                       24.16
#> 276                       32.56
#> 277                       11.72
#> 278                       22.68
#> 279                       34.03
#> 280                       12.69
#> 281                       24.15
#> 282                        32.3
#> 283                       12.45
#> 284                       25.04
#> 285                       34.31
#> 286                        18.8
#> 287                        15.1
#> 288                       22.31
#> 289                       38.15
#> 290                           c
#> 291                       17.02
#> 292                       21.21
#> 293                       46.14
#> 294                       11.72
#> 295                       20.92
#> 296                       40.25
#> 297                       12.27
#> 298                       20.86
#> 299                        36.2
#> 300                       15.09
#> 301                        22.3
#> 302                       32.59
#> 303                        11.9
#> 304                          21
#> 305                       36.66
#> 306                        16.1
#> 307                       30.78
#> 308                       46.42
#> 309                       16.25
#> 310                       27.23
#> 311                       35.82
#> 312                       14.71
#> 313                       24.31
#> 314                       32.27
#> 315                          15
#> 316                       24.16
#> 317                       39.18
#> 318                        14.9
#> 319                       22.76
#> 320                       36.28
#> 321                       15.38
#> 322                       23.16
#> 323                       30.61
#> 324                       15.99
#> 325                        22.7
#> 326                       38.46
#> 327                       15.78
#> 328                       24.47
#> 329                       38.09
#> 330                       12.84
#> 331                       22.74
#> 332                       36.87
#> 333                       12.89
#> 334                       20.29
#> 335                       37.85
#> 336                       17.85
#> 337                       24.26
#> 338                       37.75
#> 339                       15.61
#> 340                       21.86
#> 341                        34.5
#> 342                       19.74
#> 343                       26.88
#> 344                       40.28
#> 345                       17.12
#> 346                       27.07
#> 347                       28.28
#> 348                       11.57
#> 349                        18.4
#> 350                       38.68
#> 351                          17
#> 352                       23.61
#> 353                        33.5
#> 354                       14.83
#> 355                       20.44
#> 356                       34.88
#> 357                          12
#> 358                       19.46
#> 359                       41.45
#> 360                       20.24
#> 361                       22.37
#> 362                       54.55
#> 363                       17.07
#> 364                       20.83
#> 365                       47.35
#> 366                        8.71
#> 367                       17.48
#> 368                       29.14
#> 369                          15
#> 370                       21.27
#> 371                       38.39
#> 372                       11.59
#> 373                       17.31
#> 374                       37.76
#> 375                        18.8
#> 376                       18.85
#> 377                       41.44
#> 378                       15.28
#> 379                       25.18
#> 380                       45.32
#> 381                       14.24
#> 382                       21.07
#> 383                       45.04
#> 384                       20.02
#> 385                       25.05
#> 386                       37.28
#> 387                       18.33
#> 388                       12.87
#> 389                       24.06
#> 390                       36.68
#> 391                       15.95
#> 392                       23.96
#> 393                       34.16
#> 394                       10.16
#> 395                       21.37
#> 396                           c
#> 397                       11.29
#> 398                       22.27
#> 399                       29.54
#> 400                       16.79
#> 401                       25.16
#> 402                       43.99
#> 403                       16.53
#> 404                       23.75
#> 405                        38.3
#> 406                       12.35
#> 407                       23.57
#> 408                       34.56
#> 409                        9.78
#> 410                        21.2
#> 411                          32
#> 412                        12.5
#> 413                       24.06
#> 414                       35.99
#> 415                       14.11
#> 416                       31.25
#> 417                       36.71
#> 418                       13.17
#> 419                       26.46
#> 420                       56.29
#> 421                        16.7
#> 422                       28.32
#> 423                       35.13
#> 424                       15.48
#> 425                       29.95
#> 426                       32.68
#> 427                       12.26
#> 428                       23.92
#> 429                       36.93
#> 430                       14.89
#> 431                       26.75
#> 432                       39.78
#> 433                       10.01
#> 434                       22.82
#> 435                       34.44
#> 436                       15.04
#> 437                       25.15
#> 438                       40.44
#> 439                       12.36
#> 440                       24.54
#> 441                       31.81
#> 442                       11.07
#> 443                       20.03
#> 444                       31.84
#> 445                       11.98
#> 446                       24.29
#> 447                       34.82
#> 448                       18.94
#> 449                       12.45
#> 450                       25.97
#> 451                       35.38
#> 452                       10.39
#> 453                       23.69
#> 454                       36.76
#> 455                       16.72
#> 456                       30.99
#> 457                       44.77
#> 458                       11.66
#> 459                       25.82
#> 460                       29.45
#> 461                        12.4
#> 462                       24.82
#> 463                       32.03
#> 464                       13.32
#> 465                       29.68
#> 466                       32.52
#> 467                       14.48
#> 468                       24.28
#> 469                       40.35
#> 470                       11.27
#> 471                       25.75
#> 472                       34.66
#> 473                       12.43
#> 474                       27.68
#> 475                       32.51
#> 476                           c
#> 477                       10.63
#> 478                       23.43
#> 479                       32.25
#> 480                       11.26
#> 481                       22.96
#> 482                       36.22
#> 483                       13.19
#> 484                       25.17
#> 485                       30.21
#> 486                       13.32
#> 487                       26.48
#> 488                       41.65
#> 489                       11.46
#> 490                       27.77
#> 491                       33.35
#> 492                       12.14
#> 493                       23.43
#> 494                       32.91
#> 495                       18.42
#> 496                       13.41
#> 497                       23.84
#> 498                       35.66
#> 499                       18.96
#> 500                       13.09
#> 501                       25.52
#> 502                       31.95
#> 503                       13.59
#> 504                       26.53
#> 505                       27.34
#> 506                       15.52
#> 507                       30.19
#> 508                       29.86
#> 509                       12.97
#> 510                       25.45
#> 511                       36.46
#> 512                       12.46
#> 513                       27.36
#> 514                        30.1
#> 515                       14.42
#> 516                       25.78
#> 517                       21.79
#> 518                       13.68
#> 519                       25.34
#> 520                       33.29
#> 521                          11
#> 522                       22.54
#> 523                       37.49
#> 524                       14.63
#> 525                       26.02
#> 526                       38.16
#> 527                        11.3
#> 528                       20.93
#> 529                       27.37
#> 530                       13.58
#> 531                          28
#> 532                       25.29
#> 533                       13.38
#> 534                       28.01
#> 535                       34.15
#> 536                       10.38
#> 537                       23.64
#> 538                       25.66
#> 539                       18.14
#> 540                       13.17
#> 541                       23.98
#> 542                       35.12
#> 543                       15.15
#> 544                       28.49
#> 545                       32.05
#> 546                        8.93
#> 547                       19.78
#> 548                       37.03
#> 549                       14.18
#> 550                        24.4
#> 551                       37.18
#> 552                       16.39
#> 553                       29.68
#> 554                       30.94
#> 555                        9.78
#> 556                       21.66
#> 557                       34.63
#> 558                       11.44
#> 559                       24.83
#> 560                       30.32
#> 561                       10.33
#> 562                       23.12
#> 563                       23.78
#> 564                        8.62
#> 565                       21.77
#> 566                       30.19
#> 567                       14.01
#> 568                       23.42
#> 569                       35.08
#> 570                       12.25
#> 571                       24.64
#> 572                       41.49
#> 573                       15.88
#> 574                       22.16
#> 575                       42.12
#> 576                       14.84
#> 577                        22.9
#> 578                       41.74
#> 579                       14.44
#> 580                       27.02
#> 581                       47.28
#> 582                       16.19
#> 583                       27.14
#> 584                       36.96
#> 585                        11.6
#> 586                       23.21
#> 587                       34.79
#> 588                       12.37
#> 589                       25.49
#> 590                       31.83
#> 591                         9.4
#> 592                       16.01
#> 593                       28.25
#> 594                       12.18
#> 595                       22.89
#> 596                       29.91
#> 597                       19.57
#> 598                       32.29
#> 599                       38.82
#> 600                        15.4
#> 601                       27.15
#> 602                       38.13
#> 603                       12.84
#> 604                       24.87
#> 605                       35.52
#> 606                       13.27
#> 607                       28.22
#> 608                       33.46
#> 609                        14.7
#> 610                       25.59
#> 611                       36.22
#> 612                       12.57
#> 613                       23.25
#> 614                       29.58
#> 615                       19.22
#> 616                       13.88
#> 617                       25.56
#> 618                       34.13
#> 619                       15.03
#> 620                       26.07
#> 621                       36.08
#> 622                       10.57
#> 623                       23.31
#> 624                       25.74
#> 625                        12.9
#> 626                       28.77
#> 627                       20.19
#> 628                       12.56
#> 629                       24.55
#> 630                       26.41
#> 631                       11.79
#> 632                        24.2
#> 633                       23.79
#> 634                       10.67
#> 635                       24.22
#> 636                        39.1
#> 637                       12.16
#> 638                       26.26
#> 639                       37.56
#> 640                       13.81
#> 641                       25.02
#> 642                       29.96
#> 643                       14.31
#> 644                       25.78
#> 645                       36.06
#> 646                       15.93
#> 647                       26.79
#> 648                       34.22
#> 649                       16.73
#> 650                       31.42
#> 651                       36.24
#> 652                       12.33
#> 653                       22.75
#> 654                        26.3
#> 655                       13.74
#> 656                       22.12
#> 657                       33.92
#> 658                       14.68
#> 659                       23.95
#> 660                       35.69
#> 661                        13.9
#> 662                       26.69
#> 663                       39.08
#> 664                        17.7
#> 665                       12.57
#> 666                       23.28
#> 667                        35.6
#> 668                       15.18
#> 669                       24.46
#> 670                       38.52
#> 671                       16.98
#> 672                       23.62
#> 673                        52.4
#> 674                        9.02
#> 675                       18.58
#> 676                        17.1
#> 677                       25.96
#> 678                       36.42
#> 679                        12.6
#> 680                       23.73
#> 681                       35.63
#> 682                       11.75
#> 683                       22.01
#> 684                       33.27
#> 685                       10.81
#> 686                       22.14
#> 687                       29.59
#> 688                        10.2
#> 689                       22.53
#> 690                       27.02
#> 691                       12.57
#> 692                       24.39
#> 693                       36.57
#> 694                       11.61
#> 695                       22.97
#> 696                       30.74
#> 697                        19.2
#> 698                       14.24
#> 699                       24.29
#> 700                       37.67
#> 701                       10.21
#> 702                       22.04
#> 703                        34.5
#> 704                       12.15
#> 705                       22.49
#> 706                       30.16
#> 707                       14.23
#> 708                       27.87
#> 709                       39.41
#> 710                       11.68
#> 711                       23.86
#> 712                       43.54
#> 713                       17.32
#> 714                       25.41
#> 715                       47.48
#> 716                       16.21
#> 717                       26.08
#> 718                       32.67
#> 719                       14.75
#> 720                       25.69
#> 721                       30.43
#> 722                       15.84
#> 723                       25.13
#> 724                       37.62
#> 725                       12.65
#> 726                       23.54
#> 727                       43.28
#> 728                       16.22
#> 729                       28.36
#> 730                       32.82
#> 731                       15.35
#> 732                       21.52
#> 733                       33.05
#> 734                       10.53
#> 735                       20.95
#> 736                        28.6
#> 737                        12.7
#> 738                       24.38
#> 739                       33.82
#> 740                       12.46
#> 741                       23.22
#> 742                       36.93
#> 743                       17.78
#> 744                        12.9
#> 745                       22.99
#> 746                       33.44
#> 747                       14.18
#> 748                       24.26
#> 749                       35.05
#> 750                       15.72
#> 751                       22.32
#> 752                       37.42
#> 753                       14.88
#> 754                       21.42
#> 755                       32.74
#> 756                        14.3
#> 757                       21.99
#> 758                       26.39
#> 759                        12.8
#> 760                       24.74
#> 761                       26.86
#> 762                       11.62
#> 763                       20.44
#> 764                       34.65
#> 765                       12.29
#> 766                       21.43
#> 767                        35.1
#> 768                       13.33
#> 769                       23.76
#> 770                       32.77
#> 771                       11.66
#> 772                       22.24
#> 773                          34
#> 774                       12.85
#> 775                       23.76
#> 776                       32.53
#> 777                       12.52
#> 778                       24.68
#> 779                       34.02
#> 780                       18.36
#> 781                       14.86
#> 782                       21.74
#> 783                       37.96
#> 784                           c
#> 785                       16.69
#> 786                       20.68
#> 787                       45.32
#> 788                       11.65
#> 789                        20.4
#> 790                       40.41
#> 791                       12.02
#> 792                       20.42
#> 793                       36.56
#> 794                       14.76
#> 795                       21.57
#> 796                       31.68
#> 797                       11.83
#> 798                       20.35
#> 799                       36.28
#> 800                          16
#> 801                       29.93
#> 802                       46.76
#> 803                       15.97
#> 804                       26.71
#> 805                       36.12
#> 806                       14.29
#> 807                       23.49
#> 808                        33.3
#> 809                       14.57
#> 810                       23.25
#> 811                       39.26
#> 812                       14.65
#> 813                       22.38
#> 814                       36.85
#> 815                        15.1
#> 816                       22.63
#> 817                       30.84
#> 818                        15.6
#> 819                        22.3
#> 820                       38.97
#> 821                        15.3
#> 822                       23.63
#> 823                       38.09
#> 824                       12.65
#> 825                        22.2
#> 826                       36.18
#> 827                       12.85
#> 828                        19.9
#> 829                       37.85
#> 830                       17.64
#> 831                       23.56
#> 832                       37.75
#> 833                       15.59
#> 834                       21.39
#> 835                       33.66
#> 836                       19.44
#> 837                       26.49
#> 838                       39.48
#> 839                        16.6
#> 840                       26.04
#> 841                       25.76
#> 842                       11.35
#> 843                       17.93
#> 844                       38.24
#> 845                       16.76
#> 846                       23.16
#> 847                       32.85
#> 848                       14.69
#> 849                       19.73
#> 850                       34.44
#> 851                       11.96
#> 852                          19
#> 853                       40.61
#> 854                       19.81
#> 855                       21.81
#> 856                       54.17
#> 857                       16.73
#> 858                       20.58
#> 859                       46.96
#> 860                        8.71
#> 861                       17.07
#> 862                       27.43
#> 863                       14.66
#> 864                       20.72
#> 865                       37.83
#> 866                       11.51
#> 867                       17.01
#> 868                       37.41
#> 869                       18.91
#> 870                       18.39
#> 871                       41.44
#> 872                       14.81
#> 873                       24.25
#> 874                       45.47
#> 875                       13.96
#> 876                       20.51
#> 877                       44.48
#> 878                       19.76
#> 879                       24.05
#> 880                        36.2
#> 881                        18.1
#> 882                       12.85
#> 883                       23.69
#> 884                        36.6
#> 885                       15.75
#> 886                       23.43
#> 887                        33.6
#> 888                       10.13
#> 889                       21.09
#> 890                           c
#> 891                        11.6
#> 892                       21.87
#> 893                       29.39
#> 894                       16.66
#> 895                       24.23
#> 896                       43.72
#> 897                       16.19
#> 898                       23.12
#> 899                       37.99
#> 900                       12.32
#> 901                       22.97
#> 902                       34.44
#> 903                        9.81
#> 904                       20.99
#> 905                        32.4
#> 906                       12.38
#> 907                       23.73
#> 908                       36.23
#> 909                       13.88
#> 910                       30.96
#> 911                       35.59
#> 912                        13.1
#> 913                       26.14
#> 914                          56
#> 915                        16.5
#> 916                       27.69
#> 917                       35.62
#> 918                        15.6
#> 919                       29.57
#> 920                        33.8
#> 921                       12.21
#> 922                        23.8
#> 923                       36.86
#> 924                       14.93
#> 925                       26.31
#> 926                       39.55
#> 927                       10.16
#> 928                       22.55
#> 929                       34.45
#> 930                       14.97
#> 931                       24.74
#> 932                       40.36
#> 933                       12.32
#> 934                       24.09
#> 935                       31.69
#> 936                       10.99
#> 937                       19.66
#> 938                       31.83
#> 939                       12.07
#> 940                       24.01
#> 941                       34.62
#> 942                       18.75
#> 943                       12.44
#> 944                       25.51
#> 945                       35.31
#> 946                       10.37
#> 947                       23.12
#> 948                       36.17
#> 949                       16.57
#> 950                       30.37
#> 951                       43.96
#> 952                        11.7
#> 953                       25.04
#> 954                       30.14
#> 955                       12.33
#> 956                       24.23
#> 957                       32.19
#> 958                        13.3
#> 959                        29.3
#> 960                       32.52
#> 961                       14.25
#> 962                       24.01
#> 963                       39.37
#> 964                       11.43
#> 965                       25.47
#> 966                       35.01
#> 967                       12.52
#> 968                       26.75
#> 969                       33.13
#> 970                           c
#> 971                       10.72
#> 972                       23.14
#> 973                       32.09
#> 974                       11.28
#> 975                       22.65
#> 976                       35.86
#> 977                       13.09
#> 978                       24.88
#> 979                       31.34
#> 980                        13.5
#> 981                       26.05
#> 982                       41.82
#> 983                       11.39
#> 984                       27.34
#> 985                       33.41
#> 986                       12.03
#> 987                       23.12
#> 988                        32.4
#> 989                       18.34
#> 990                       13.46
#> 991                       23.58
#> 992                        35.6
#> 993                        18.9
#> 994                       13.16
#> 995                        25.3
#> 996                       31.87
#> 997                       13.69
#> 998                        26.1
#> 999                        27.7
#> 1000                      15.39
#> 1001                      29.84
#> 1002                      29.56
#> 1003                      13.06
#> 1004                      25.09
#> 1005                      36.32
#> 1006                      12.46
#> 1007                       26.9
#> 1008                       30.1
#> 1009                      14.82
#> 1010                       25.2
#> 1011                      21.34
#> 1012                      13.69
#> 1013                      25.13
#> 1014                      33.67
#> 1015                      11.06
#> 1016                       22.4
#> 1017                      37.11
#> 1018                      14.77
#> 1019                      25.66
#> 1020                      38.26
#> 1021                       11.5
#> 1022                      20.93
#> 1023                      27.85
#> 1024                      13.92
#> 1025                      27.74
#> 1026                      24.96
#> 1027                      13.47
#> 1028                      27.72
#> 1029                      33.72
#> 1030                      10.27
#> 1031                      24.04
#> 1032                      25.03
#> 1033                      18.13
#> 1034                      13.33
#> 1035                      23.73
#> 1036                      35.09
#> 1037                      15.27
#> 1038                      27.84
#> 1039                      32.35
#> 1040                       9.09
#> 1041                      19.38
#> 1042                      37.25
#> 1043                      14.43
#> 1044                      23.98
#> 1045                      37.74
#> 1046                      16.59
#> 1047                      29.75
#> 1048                      30.63
#> 1049                       9.85
#> 1050                      21.44
#> 1051                      35.07
#> 1052                      11.63
#> 1053                      24.61
#> 1054                      31.27
#> 1055                      10.57
#> 1056                      22.97
#> 1057                      23.54
#> 1058                       8.87
#> 1059                      21.49
#> 1060                      30.19
#> 1061                      14.05
#> 1062                      22.98
#> 1063                      35.08
#> 1064                      12.33
#> 1065                      24.34
#> 1066                      41.53
#> 1067                      15.95
#> 1068                         22
#> 1069                      42.09
#> 1070                       15.1
#> 1071                      22.72
#> 1072                      41.82
#> 1073                      14.65
#> 1074                      26.83
#> 1075                       46.6
#> 1076                      16.29
#> 1077                      27.05
#> 1078                      36.22
#> 1079                      12.62
#> 1080                      22.93
#> 1081                      35.17
#> 1082                      12.44
#> 1083                      25.34
#> 1084                       31.1
#> 1085                       9.45
#> 1086                      15.93
#> 1087                      29.19
#> 1088                      12.28
#> 1089                      22.64
#> 1090                      30.25
#> 1091                      19.65
#> 1092                      32.35
#> 1093                      38.58
#> 1094                      15.49
#> 1095                      26.75
#> 1096                      38.06
#> 1097                      12.82
#> 1098                      24.55
#> 1099                      35.97
#> 1100                      13.44
#> 1101                      28.05
#> 1102                      32.96
#> 1103                      14.84
#> 1104                      25.15
#> 1105                       35.4
#> 1106                      12.73
#> 1107                      23.03
#> 1108                      29.58
#> 1109                      19.15
#> 1110                      13.94
#> 1111                      25.31
#> 1112                      34.25
#> 1113                      15.24
#> 1114                      25.84
#> 1115                      35.69
#> 1116                      10.78
#> 1117                      23.09
#> 1118                      26.04
#> 1119                      12.87
#> 1120                      28.34
#> 1121                      20.19
#> 1122                      12.25
#> 1123                      24.23
#> 1124                      26.71
#> 1125                      11.68
#> 1126                      23.77
#> 1127                      24.12
#> 1128                      10.59
#> 1129                      23.95
#> 1130                      38.71
#> 1131                      12.11
#> 1132                      26.05
#> 1133                      36.71
#> 1134                      13.83
#> 1135                      24.56
#> 1136                         30
#> 1137                      14.47
#> 1138                      25.61
#> 1139                      36.59
#> 1140                      15.75
#> 1141                      26.45
#> 1142                      34.32
#> 1143                      16.96
#> 1144                      31.18
#> 1145                      35.66
#> 1146                      12.74
#> 1147                      22.95
#> 1148                       26.3
#> 1149                      14.06
#> 1150                         22
#> 1151                       34.8
#> 1152                      14.68
#> 1153                      23.75
#> 1154                      36.48
#> 1155                      13.94
#> 1156                      26.24
#> 1157                      39.26
#> 1158                      17.57
#> 1159                       12.6
#> 1160                      22.94
#> 1161                      35.51
#> 1162                      15.31
#> 1163                      24.24
#> 1164                      38.76
#> 1165                      16.91
#> 1166                      22.95
#> 1167                      51.92
#> 1168                       9.11
#> 1169                      18.47
#> 1170                      17.08
#> 1171                      25.67
#> 1172                      36.47
#> 1173                      12.66
#> 1174                      23.47
#> 1175                      35.24
#> 1176                      11.88
#> 1177                      21.78
#> 1178                      32.68
#> 1179                      10.84
#> 1180                      22.08
#> 1181                      29.56
#> 1182                      10.14
#> 1183                      21.71
#> 1184                      27.02
#> 1185                      12.57
#> 1186                      24.16
#> 1187                      36.67
#> 1188                      11.69
#> 1189                      22.72
#> 1190                      30.98
#> 1191                      19.13
#> 1192                      14.33
#> 1193                      24.03
#> 1194                      37.65
#> 1195                      10.43
#> 1196                       21.7
#> 1197                      36.12
#> 1198                      12.39
#> 1199                      22.32
#> 1200                      28.82
#> 1201                      14.42
#> 1202                      27.59
#> 1203                      39.57
#> 1204                      11.75
#> 1205                      23.76
#> 1206                      44.07
#> 1207                      17.45
#> 1208                       25.1
#> 1209                      47.35
#> 1210                      16.26
#> 1211                      25.85
#> 1212                      33.05
#> 1213                      14.77
#> 1214                      25.26
#> 1215                      30.13
#> 1216                         16
#> 1217                      25.07
#> 1218                      37.45
#> 1219                      12.56
#> 1220                      23.45
#> 1221                      43.14
#> 1222                      16.29
#> 1223                      28.12
#> 1224                      33.44
#> 1225                      15.27
#> 1226                      21.33
#> 1227                      33.59
#> 1228                      10.64
#> 1229                      20.66
#> 1230                      28.81
#> 1231                      12.76
#> 1232                      24.11
#> 1233                      33.89
#> 1234                      12.43
#> 1235                      22.87
#> 1236                      36.33
#> 1237                      17.69
#> 1238                      12.95
#> 1239                      22.74
#> 1240                      33.41
#> 1241                      14.11
#> 1242                      24.01
#> 1243                      34.14
#> 1244                      15.86
#> 1245                      22.05
#> 1246                      36.81
#> 1247                      14.72
#> 1248                       21.2
#> 1249                      33.17
#> 1250                       14.4
#> 1251                      21.69
#> 1252                      27.25
#> 1253                      12.87
#> 1254                      24.48
#> 1255                      27.35
#> 1256                       11.7
#> 1257                      20.29
#> 1258                       35.3
#> 1259                      12.35
#> 1260                      21.23
#> 1261                      35.34
#> 1262                      13.33
#> 1263                      23.39
#> 1264                      32.54
#> 1265                      11.72
#> 1266                      22.08
#> 1267                      33.83
#> 1268                      12.98
#> 1269                      23.55
#> 1270                      32.84
#> 1271                      12.64
#> 1272                      24.38
#> 1273                      33.74
#> 1274                      18.15
#> 1275                      14.77
#> 1276                       21.4
#> 1277                      37.65
#> 1278                          c
#> 1279                      16.55
#> 1280                      20.32
#> 1281                      44.75
#> 1282                      11.55
#> 1283                       20.1
#> 1284                      39.59
#> 1285                      11.73
#> 1286                         20
#> 1287                      35.36
#> 1288                      14.67
#> 1289                      21.03
#> 1290                      31.16
#> 1291                      11.79
#> 1292                      20.12
#> 1293                      36.28
#> 1294                      16.19
#> 1295                      29.52
#> 1296                      46.76
#> 1297                      15.84
#> 1298                      26.12
#> 1299                      35.99
#> 1300                      14.15
#> 1301                      23.25
#> 1302                      33.98
#> 1303                      14.57
#> 1304                      22.97
#> 1305                       38.2
#> 1306                      14.48
#> 1307                      21.89
#> 1308                      35.51
#> 1309                      14.96
#> 1310                      22.37
#> 1311                      31.31
#> 1312                      15.41
#> 1313                       21.8
#> 1314                      38.46
#> 1315                      15.17
#> 1316                      23.19
#> 1317                      37.06
#> 1318                      12.62
#> 1319                      21.98
#> 1320                      35.48
#> 1321                      12.85
#> 1322                      19.59
#> 1323                      37.85
#> 1324                      17.59
#> 1325                      23.23
#> 1326                      37.27
#> 1327                      15.65
#> 1328                      21.14
#> 1329                      33.53
#> 1330                      19.07
#> 1331                      26.01
#> 1332                      39.44
#> 1333                      16.26
#> 1334                      25.19
#> 1335                      26.77
#> 1336                      11.33
#> 1337                      17.39
#> 1338                      38.02
#> 1339                      16.53
#> 1340                       22.7
#> 1341                      32.85
#> 1342                       14.6
#> 1343                      19.59
#> 1344                      35.31
#> 1345                         12
#> 1346                       18.7
#> 1347                      40.85
#> 1348                      19.85
#> 1349                      21.36
#> 1350                      55.13
#> 1351                      16.87
#> 1352                       20.4
#> 1353                      45.88
#> 1354                       8.51
#> 1355                      16.57
#> 1356                      27.43
#> 1357                      14.59
#> 1358                      20.27
#> 1359                      37.42
#> 1360                      11.34
#> 1361                      17.29
#> 1362                      37.24
#> 1363                      18.77
#> 1364                      17.96
#> 1365                      41.26
#> 1366                      14.72
#> 1367                      23.76
#> 1368                      45.01
#> 1369                      13.86
#> 1370                       20.5
#> 1371                      43.77
#> 1372                      19.45
#> 1373                      23.91
#> 1374                      37.28
#> 1375                      18.03
#> 1376                      12.92
#> 1377                      23.46
#> 1378                      36.46
#> 1379                      15.57
#> 1380                         23
#> 1381                      32.94
#> 1382                      10.01
#> 1383                      20.89
#> 1384                          c
#> 1385                      11.76
#> 1386                      21.48
#> 1387                      30.04
#> 1388                      16.78
#> 1389                      23.96
#> 1390                      43.72
#> 1391                      16.28
#> 1392                      22.97
#> 1393                       38.3
#> 1394                      12.42
#> 1395                      22.72
#> 1396                      32.94
#> 1397                       9.93
#> 1398                      20.86
#> 1399                       32.4
#> 1400                      12.49
#> 1401                      23.92
#> 1402                      36.23
#> 1403                      14.16
#> 1404                      30.42
#> 1405                      35.36
#> 1406                      13.17
#> 1407                      25.72
#> 1408                      55.66
#> 1409                      16.81
#> 1410                      27.45
#> 1411                      35.66
#> 1412                      15.88
#> 1413                       29.6
#> 1414                      34.64
#> 1415                      12.31
#> 1416                      23.54
#> 1417                      36.73
#> 1418                      15.02
#> 1419                      25.98
#> 1420                      39.39
#> 1421                      10.21
#> 1422                      22.37
#> 1423                      34.22
#> 1424                      15.02
#> 1425                      24.45
#> 1426                      40.26
#> 1427                      12.41
#> 1428                      23.87
#> 1429                      31.71
#> 1430                      10.96
#> 1431                      19.59
#> 1432                      31.61
#> 1433                      12.24
#> 1434                      23.71
#> 1435                      34.77
#> 1436                      18.72
#> 1437                      12.54
#> 1438                      25.32
#> 1439                      35.52
#> 1440                      10.59
#> 1441                      22.76
#> 1442                      36.76
#> 1443                      16.59
#> 1444                      30.35
#> 1445                      44.26
#> 1446                      11.69
#> 1447                      24.93
#> 1448                      30.37
#> 1449                      12.53
#> 1450                      24.23
#> 1451                      32.35
#> 1452                      13.38
#> 1453                      29.03
#> 1454                      32.38
#> 1455                      14.34
#> 1456                      23.83
#> 1457                      38.46
#> 1458                      11.68
#> 1459                      25.29
#> 1460                      35.59
#> 1461                       12.7
#> 1462                      26.82
#> 1463                      33.33
#> 1464                          c
#> 1465                      10.82
#> 1466                      22.88
#> 1467                      32.58
#> 1468                      11.31
#> 1469                      22.52
#> 1470                      36.52
#> 1471                      13.35
#> 1472                       24.7
#> 1473                      32.21
#> 1474                      13.45
#> 1475                      25.62
#> 1476                      42.57
#> 1477                      11.47
#> 1478                       27.1
#> 1479                      33.33
#> 1480                      12.09
#> 1481                      22.84
#> 1482                       31.8
#> 1483                      18.37
#> 1484                      13.57
#> 1485                      23.54
#> 1486                      35.55
#> 1487                      18.76
#> 1488                       13.1
#> 1489                      25.08
#> 1490                      31.37
#> 1491                         14
#> 1492                      25.95
#> 1493                      26.98
#> 1494                      15.43
#> 1495                      29.66
#> 1496                      29.11
#> 1497                      12.78
#> 1498                      24.77
#> 1499                       35.9
#> 1500                      12.36
#> 1501                      26.55
#> 1502                      29.77
#> 1503                       14.6
#> 1504                      24.96
#> 1505                      20.62
#> 1506                      13.55
#> 1507                      24.91
#> 1508                      32.39
#> 1509                      11.03
#> 1510                      22.16
#> 1511                      36.71
#> 1512                      14.66
#> 1513                      25.61
#> 1514                      38.76
#> 1515                       11.4
#> 1516                      20.96
#> 1517                      27.17
#> 1518                      14.02
#> 1519                      27.35
#> 1520                      24.13
#> 1521                      13.32
#> 1522                      27.48
#> 1523                      33.76
#> 1524                       10.5
#> 1525                      23.78
#> 1526                      24.54
#> 1527                      18.12
#> 1528                      13.34
#> 1529                      23.69
#> 1530                      35.18
#> 1531                      14.91
#> 1532                      27.78
#> 1533                      32.27
#> 1534                       9.07
#> 1535                      19.36
#> 1536                      37.78
#> 1537                      14.68
#> 1538                       24.1
#> 1539                      38.77
#> 1540                      16.76
#> 1541                      29.63
#> 1542                      31.37
#> 1543                       9.72
#> 1544                      21.33
#> 1545                      34.53
#> 1546                      11.72
#> 1547                       24.3
#> 1548                      30.38
#> 1549                      10.48
#> 1550                      22.89
#> 1551                      25.64
#> 1552                       8.93
#> 1553                      21.54
#> 1554                      31.32
#> 1555                       14.2
#> 1556                      23.13
#> 1557                      35.49
#> 1558                      12.35
#> 1559                       24.2
#> 1560                      41.25
#> 1561                       16.1
#> 1562                      22.07
#> 1563                      42.19
#> 1564                      15.33
#> 1565                      22.71
#> 1566                      42.22
#> 1567                      14.64
#> 1568                      26.69
#> 1569                      46.85
#> 1570                      16.13
#> 1571                      26.73
#> 1572                      35.92
#> 1573                       11.7
#> 1574                      22.93
#> 1575                      35.21
#> 1576                      12.36
#> 1577                      25.32
#> 1578                      31.22
#> 1579                       9.57
#> 1580                      15.98
#> 1581                       30.1
#> 1582                      12.24
#> 1583                      22.41
#> 1584                      30.36
#> 1585                      19.97
#> 1586                      32.45
#> 1587                       38.3
#> 1588                      15.41
#> 1589                      26.68
#> 1590                      38.16
#> 1591                      12.87
#> 1592                      24.53
#> 1593                      35.97
#> 1594                      13.41
#> 1595                      27.98
#> 1596                      32.25
#> 1597                      14.66
#> 1598                      25.06
#> 1599                      35.24
#> 1600                      12.87
#> 1601                      23.07
#> 1602                       29.6
#> 1603                      19.16
#> 1604                      13.99
#> 1605                      25.27
#> 1606                      34.15
#> 1607                      15.17
#> 1608                      25.71
#> 1609                      35.17
#> 1610                      10.88
#> 1611                       22.7
#> 1612                      26.92
#> 1613                      12.89
#> 1614                      27.98
#> 1615                      21.47
#> 1616                      12.34
#> 1617                      24.17
#> 1618                      26.71
#> 1619                      11.71
#> 1620                      23.77
#> 1621                      24.76
#> 1622                      10.56
#> 1623                      23.91
#> 1624                      38.78
#> 1625                      12.18
#> 1626                      25.89
#> 1627                      36.79
#> 1628                      13.74
#> 1629                      24.19
#> 1630                      29.87
#> 1631                      14.36
#> 1632                      25.61
#> 1633                      36.06
#> 1634                      15.84
#> 1635                      26.35
#> 1636                      34.68
#> 1637                      17.13
#> 1638                      31.35
#> 1639                      35.46
#> 1640                      12.92
#> 1641                      23.12
#> 1642                       26.1
#> 1643                      14.24
#> 1644                      22.15
#> 1645                      33.42
#> 1646                      14.74
#> 1647                      23.78
#> 1648                      35.95
#> 1649                      13.96
#> 1650                      26.15
#> 1651                      40.32
#> 1652                      17.62
#> 1653                      12.75
#> 1654                      22.88
#> 1655                      35.33
#> 1656                      15.61
#> 1657                      24.38
#> 1658                      39.33
#> 1659                      17.36
#> 1660                      23.06
#> 1661                      51.58
#> 1662                       8.87
#> 1663                      18.39
#> 1664                       17.3
#> 1665                      25.86
#> 1666                      35.87
#> 1667                      12.71
#> 1668                      23.32
#> 1669                      34.51
#> 1670                      12.04
#> 1671                      21.75
#> 1672                      32.49
#> 1673                       10.9
#> 1674                      22.02
#> 1675                      29.21
#> 1676                      10.36
#> 1677                      21.57
#> 1678                      26.89
#> 1679                      12.63
#> 1680                         24
#> 1681                      36.76
#> 1682                      11.76
#> 1683                      22.56
#> 1684                      30.91
#> 1685                      19.15
#> 1686                      14.42
#> 1687                      23.98
#> 1688                      37.36
#> 1689                       10.5
#> 1690                      21.49
#> 1691                      36.22
#> 1692                      12.55
#> 1693                      22.17
#> 1694                      29.26
#> 1695                      14.67
#> 1696                      27.48
#> 1697                      40.61
#> 1698                      11.72
#> 1699                       23.5
#> 1700                      42.93
#> 1701                      17.63
#> 1702                      25.15
#> 1703                      46.88
#> 1704                       16.3
#> 1705                      25.82
#> 1706                      33.05
#> 1707                      14.85
#> 1708                      25.28
#> 1709                      30.72
#> 1710                      15.99
#> 1711                      24.97
#> 1712                      37.38
#> 1713                      12.78
#> 1714                      23.59
#> 1715                      43.01
#> 1716                      16.51
#> 1717                         28
#> 1718                      32.61
#> 1719                      15.39
#> 1720                      21.37
#> 1721                      33.15
#> 1722                      10.63
#> 1723                      20.65
#> 1724                      28.54
#> 1725                      12.86
#> 1726                      23.99
#> 1727                         34
#> 1728                       12.4
#> 1729                      22.69
#> 1730                      35.07
#> 1731                      17.74
#> 1732                      13.06
#> 1733                      22.71
#> 1734                      33.48
#> 1735                      14.16
#> 1736                      24.08
#> 1737                      34.74
#> 1738                      16.43
#> 1739                      22.35
#> 1740                       37.3
#> 1741                      14.63
#> 1742                      21.06
#> 1743                      33.33
#> 1744                      14.44
#> 1745                      21.54
#> 1746                      27.47
#> 1747                      13.08
#> 1748                      24.65
#> 1749                      26.91
#> 1750                      11.68
#> 1751                      20.12
#> 1752                      35.66
#> 1753                      12.48
#> 1754                      21.27
#> 1755                      35.28
#> 1756                      13.36
#> 1757                      23.29
#> 1758                      32.42
#> 1759                      11.94
#> 1760                      22.15
#> 1761                      34.19
#> 1762                      13.03
#> 1763                      23.35
#> 1764                      32.74
#> 1765                      12.71
#> 1766                       24.3
#> 1767                      33.51
#> 1768                      18.35
#> 1769                      15.03
#> 1770                      21.52
#> 1771                      37.88
#> 1772                          c
#> 1773                         17
#> 1774                       20.5
#> 1775                      44.94
#> 1776                      11.94
#> 1777                      20.12
#> 1778                      39.17
#> 1779                      11.86
#> 1780                         20
#> 1781                      35.13
#> 1782                      15.04
#> 1783                      21.16
#> 1784                       31.5
#> 1785                      11.85
#> 1786                      19.94
#> 1787                      35.99
#> 1788                       16.8
#> 1789                      29.74
#> 1790                      45.73
#> 1791                      15.96
#> 1792                      25.98
#> 1793                      35.84
#> 1794                      14.58
#> 1795                      23.28
#> 1796                      34.82
#> 1797                      14.59
#> 1798                      23.23
#> 1799                      38.59
#> 1800                      14.54
#> 1801                      22.01
#> 1802                      36.54
#> 1803                      15.07
#> 1804                       22.3
#> 1805                      31.54
#> 1806                      15.72
#> 1807                      21.87
#> 1808                      39.32
#> 1809                      15.49
#> 1810                      24.56
#> 1811                      36.97
#> 1812                      13.02
#> 1813                         22
#> 1814                      36.64
#> 1815                       12.8
#> 1816                      19.76
#> 1817                      38.46
#> 1818                      17.84
#> 1819                      23.35
#> 1820                      37.17
#> 1821                         16
#> 1822                      21.47
#> 1823                      34.02
#> 1824                      19.22
#> 1825                      26.09
#> 1826                      40.44
#> 1827                      16.65
#> 1828                      25.64
#> 1829                       26.9
#> 1830                       11.5
#> 1831                      17.49
#> 1832                      39.56
#> 1833                      16.46
#> 1834                      22.63
#> 1835                       33.5
#> 1836                      14.81
#> 1837                      19.63
#> 1838                      35.89
#> 1839                      12.13
#> 1840                       18.6
#> 1841                      39.39
#> 1842                      20.26
#> 1843                      21.45
#> 1844                      55.51
#> 1845                      17.24
#> 1846                      20.56
#> 1847                      45.64
#> 1848                       8.88
#> 1849                      16.75
#> 1850                      27.14
#> 1851                      14.73
#> 1852                      20.39
#> 1853                      38.79
#> 1854                      11.53
#> 1855                      17.37
#> 1856                       36.9
#> 1857                      19.24
#> 1858                      18.16
#> 1859                      40.85
#> 1860                      15.09
#> 1861                      24.02
#> 1862                      45.45
#> 1863                      14.23
#> 1864                      20.74
#> 1865                      43.97
#> 1866                      19.51
#> 1867                      24.14
#> 1868                      37.63
#> 1869                      18.07
#> 1870                      13.05
#> 1871                      23.39
#> 1872                      36.43
#> 1873                      15.56
#> 1874                      22.83
#> 1875                      32.83
#> 1876                      10.15
#> 1877                      20.87
#> 1878                          c
#> 1879                      11.66
#> 1880                      21.34
#> 1881                      29.82
#> 1882                      17.12
#> 1883                      23.93
#> 1884                      45.08
#> 1885                      16.56
#> 1886                      23.17
#> 1887                      39.21
#> 1888                      12.58
#> 1889                      22.88
#> 1890                      32.23
#> 1891                       9.92
#> 1892                      20.83
#> 1893                       31.4
#> 1894                      12.88
#> 1895                      24.06
#> 1896                         36
#> 1897                      14.08
#> 1898                      30.39
#> 1899                      35.14
#> 1900                      13.06
#> 1901                      25.52
#> 1902                      56.38
#> 1903                      16.78
#> 1904                      27.24
#> 1905                      34.19
#> 1906                      16.25
#> 1907                      29.26
#> 1908                       35.2
#> 1909                      12.53
#> 1910                      23.64
#> 1911                      37.01
#> 1912                      15.15
#> 1913                      25.95
#> 1914                      39.15
#> 1915                      10.28
#> 1916                      22.25
#> 1917                      34.31
#> 1918                      15.14
#> 1919                      24.34
#> 1920                      40.22
#> 1921                      12.63
#> 1922                      23.88
#> 1923                      32.29
#> 1924                      11.11
#> 1925                      19.51
#> 1926                      31.51
#> 1927                      12.39
#> 1928                      23.56
#> 1929                      34.58
#> 1930                      18.69
#> 1931                       12.6
#> 1932                      25.17
#> 1933                       35.5
#> 1934                      10.65
#> 1935                      22.51
#> 1936                      36.76
#> 1937                      16.56
#> 1938                       30.2
#> 1939                      44.17
#> 1940                      11.74
#> 1941                      24.87
#> 1942                      29.91
#> 1943                      12.36
#> 1944                      23.75
#> 1945                      32.08
#> 1946                      13.42
#> 1947                      28.99
#> 1948                      32.24
#> 1949                      14.41
#> 1950                      23.87
#> 1951                      38.54
#> 1952                      11.84
#> 1953                      25.34
#> 1954                      35.71
#> 1955                      12.88
#> 1956                      26.63
#> 1957                      33.75
#> 1958                          c
#> 1959                      10.82
#> 1960                       22.7
#> 1961                      32.54
#> 1962                      11.52
#> 1963                      22.42
#> 1964                       36.7
#> 1965                      13.39
#> 1966                      24.48
#> 1967                      32.33
#> 1968                      13.47
#> 1969                      25.47
#> 1970                       42.2
#> 1971                      11.64
#> 1972                      27.05
#> 1973                      33.37
#> 1974                      12.11
#> 1975                      22.63
#> 1976                      31.91
#> 1977                      18.16
#> 1978                      13.42
#> 1979                      23.25
#> 1980                      35.38
#> 1981                      18.55
#> 1982                      12.98
#> 1983                      24.76
#> 1984                      31.44
#> 1985                      13.82
#> 1986                      25.47
#> 1987                      26.81
#> 1988                      15.16
#> 1989                      28.89
#> 1990                      29.86
#> 1991                      12.65
#> 1992                      24.27
#> 1993                      37.04
#> 1994                      12.28
#> 1995                      26.32
#> 1996                      30.26
#> 1997                      14.37
#> 1998                      24.76
#> 1999                      20.67
#> 2000                      13.59
#> 2001                      24.76
#> 2002                      32.21
#> 2003                      10.95
#> 2004                      21.99
#> 2005                      36.04
#> 2006                      14.31
#> 2007                      25.19
#> 2008                      38.54
#> 2009                       11.3
#> 2010                       20.5
#> 2011                       28.2
#> 2012                      13.71
#> 2013                      27.22
#> 2014                      22.64
#> 2015                      13.22
#> 2016                      26.97
#> 2017                      33.97
#> 2018                      10.47
#> 2019                      23.55
#> 2020                      25.33
#> 2021                      17.88
#> 2022                       13.2
#> 2023                      23.33
#> 2024                      34.92
#> 2025                         15
#> 2026                      27.26
#> 2027                      31.72
#> 2028                       9.04
#> 2029                      18.89
#> 2030                      38.62
#> 2031                      14.16
#> 2032                      23.59
#> 2033                      37.68
#> 2034                      16.85
#> 2035                      30.65
#> 2036                      31.48
#> 2037                       9.65
#> 2038                      21.19
#> 2039                      33.59
#> 2040                      11.73
#> 2041                      24.28
#> 2042                      31.08
#> 2043                      10.65
#> 2044                      22.87
#> 2045                      24.77
#> 2046                       9.05
#> 2047                      21.49
#> 2048                      32.45
#> 2049                      14.08
#> 2050                      22.37
#> 2051                      35.41
#> 2052                      12.05
#> 2053                      23.67
#> 2054                      40.78
#> 2055                       15.7
#> 2056                      21.38
#> 2057                      41.73
#> 2058                      14.81
#> 2059                      22.27
#> 2060                      41.62
#> 2061                      14.21
#> 2062                      26.24
#> 2063                      46.34
#> 2064                      15.83
#> 2065                      26.34
#> 2066                      35.16
#> 2067                      11.65
#> 2068                      22.72
#> 2069                      34.84
#> 2070                      12.28
#> 2071                      24.66
#> 2072                      30.49
#> 2073                       9.63
#> 2074                      15.63
#> 2075                      29.41
#> 2076                      12.28
#> 2077                      22.37
#> 2078                      30.51
#> 2079                      19.64
#> 2080                      32.06
#> 2081                       38.2
#> 2082                       15.3
#> 2083                      26.33
#> 2084                      37.93
#> 2085                      12.76
#> 2086                      24.22
#> 2087                      35.07
#> 2088                      13.48
#> 2089                      27.51
#> 2090                      31.91
#> 2091                      14.68
#> 2092                      24.83
#> 2093                      34.82
#> 2094                      12.73
#> 2095                      22.75
#> 2096                      29.82
#> 2097                      18.86
#> 2098                      13.77
#> 2099                      24.85
#> 2100                      33.98
#> 2101                      15.14
#> 2102                      25.51
#> 2103                      35.09
#> 2104                      10.82
#> 2105                      22.54
#> 2106                      25.82
#> 2107                      12.89
#> 2108                      27.61
#> 2109                      21.15
#> 2110                      12.19
#> 2111                      24.15
#> 2112                      26.71
#> 2113                      11.46
#> 2114                      23.25
#> 2115                      24.19
#> 2116                      10.51
#> 2117                       23.7
#> 2118                         38
#> 2119                      12.28
#> 2120                      25.48
#> 2121                      37.59
#> 2122                      13.55
#> 2123                      24.01
#> 2124                      30.04
#> 2125                      14.12
#> 2126                      25.25
#> 2127                      36.44
#> 2128                      15.44
#> 2129                      25.74
#> 2130                      34.78
#> 2131                      16.63
#> 2132                      30.52
#> 2133                      35.59
#> 2134                      12.84
#> 2135                      22.82
#> 2136                      25.63
#> 2137                      13.74
#> 2138                      21.55
#> 2139                       32.7
#> 2140                      14.56
#> 2141                      23.29
#> 2142                      35.44
#> 2143                      13.74
#> 2144                      25.87
#> 2145                      40.49
#> 2146                      17.46
#> 2147                      12.65
#> 2148                      22.65
#> 2149                      35.31
#> 2150                      15.21
#> 2151                      24.07
#> 2152                      39.37
#> 2153                      17.09
#> 2154                      22.61
#> 2155                      51.28
#> 2156                       8.98
#> 2157                      18.11
#> 2158                      16.86
#> 2159                      25.26
#> 2160                      35.38
#> 2161                      12.81
#> 2162                      23.27
#> 2163                      34.74
#> 2164                       11.9
#> 2165                       21.6
#> 2166                      33.33
#> 2167                       10.9
#> 2168                      21.81
#> 2169                       29.2
#> 2170                       10.4
#> 2171                      21.36
#> 2172                      27.16
#> 2173                      12.57
#> 2174                      23.87
#> 2175                      36.65
#> 2176                      11.68
#> 2177                      22.41
#> 2178                      30.35
#> 2179                      18.84
#> 2180                       14.2
#> 2181                      23.58
#> 2182                       36.9
#> 2183                      10.61
#> 2184                      21.55
#> 2185                      36.76
#> 2186                      12.52
#> 2187                      21.99
#> 2188                      28.98
#> 2189                      14.53
#> 2190                      26.95
#> 2191                       39.5
#> 2192                      11.79
#> 2193                      23.55
#> 2194                      43.14
#> 2195                      16.98
#> 2196                       24.4
#> 2197                      46.04
#> 2198                      15.94
#> 2199                      25.42
#> 2200                       32.5
#> 2201                      14.64
#> 2202                      24.72
#> 2203                      30.23
#> 2204                      15.69
#> 2205                      24.27
#> 2206                      36.58
#> 2207                      12.56
#> 2208                      23.11
#> 2209                      42.88
#> 2210                      16.45
#> 2211                       27.7
#> 2212                      31.99
#> 2213                       15.4
#> 2214                      21.21
#> 2215                      32.54
#> 2216                      10.66
#> 2217                       20.5
#> 2218                      28.66
#> 2219                      12.72
#> 2220                      23.78
#> 2221                      33.98
#> 2222                      12.33
#> 2223                      22.33
#> 2224                      34.75
#> 2225                      17.62
#> 2226                      12.97
#> 2227                      22.56
#> 2228                      33.39
#> 2229                      13.95
#> 2230                      23.69
#> 2231                       34.9
#> 2232                      15.56
#> 2233                      21.32
#> 2234                      36.61
#> 2235                      14.67
#> 2236                      20.96
#> 2237                      33.93
#> 2238                      14.27
#> 2239                      21.21
#> 2240                      26.61
#> 2241                      12.79
#> 2242                      24.47
#> 2243                      26.97
#> 2244                      11.67
#> 2245                      19.96
#> 2246                      35.18
#> 2247                      12.37
#> 2248                      21.16
#> 2249                      35.91
#> 2250                      13.29
#> 2251                      23.29
#> 2252                      32.28
#> 2253                      11.93
#> 2254                      22.05
#> 2255                      33.74
#> 2256                      13.02
#> 2257                      23.26
#> 2258                      33.16
#> 2259                      12.78
#> 2260                      24.13
#> 2261                       33.2
#> 2262                      17.99
#> 2263                       14.7
#> 2264                      21.12
#> 2265                      37.63
#> 2266                          c
#> 2267                      16.34
#> 2268                      19.94
#> 2269                         45
#> 2270                       11.8
#> 2271                      19.27
#> 2272                      39.14
#> 2273                      11.83
#> 2274                      19.83
#> 2275                      35.17
#> 2276                       14.7
#> 2277                       20.6
#> 2278                      30.85
#> 2279                      11.82
#> 2280                      19.74
#> 2281                      36.12
#> 2282                      16.12
#> 2283                      28.94
#> 2284                      44.67
#> 2285                      15.77
#> 2286                      25.87
#> 2287                      35.68
#> 2288                      14.19
#> 2289                      22.68
#> 2290                      33.94
#> 2291                      14.21
#> 2292                      22.73
#> 2293                       38.1
#> 2294                      14.25
#> 2295                      21.62
#> 2296                      35.58
#> 2297                      14.88
#> 2298                      21.74
#> 2299                      31.54
#> 2300                      15.27
#> 2301                      21.59
#> 2302                      38.36
#> 2303                      15.15
#> 2304                      24.27
#> 2305                      37.41
#> 2306                      12.54
#> 2307                      21.44
#> 2308                      35.94
#> 2309                      12.63
#> 2310                      19.47
#> 2311                      38.27
#> 2312                      17.54
#> 2313                      22.84
#> 2314                      37.37
#> 2315                       15.6
#> 2316                      20.89
#> 2317                       33.7
#> 2318                      18.63
#> 2319                      25.56
#> 2320                      39.52
#> 2321                      16.31
#> 2322                      25.74
#> 2323                      27.41
#> 2324                       11.2
#> 2325                      17.22
#> 2326                      38.68
#> 2327                      16.49
#> 2328                      22.44
#> 2329                      33.17
#> 2330                      14.55
#> 2331                      19.65
#> 2332                      35.46
#> 2333                      11.94
#> 2334                      18.37
#> 2335                      39.39
#> 2336                      19.33
#> 2337                      21.17
#> 2338                      55.56
#> 2339                      16.54
#> 2340                      19.79
#> 2341                      45.75
#> 2342                       8.78
#> 2343                      16.65
#> 2344                      27.22
#> 2345                      14.55
#> 2346                      19.72
#> 2347                      37.72
#> 2348                      11.54
#> 2349                      17.31
#> 2350                      37.71
#> 2351                      18.99
#> 2352                      18.27
#> 2353                      41.64
#> 2354                      14.69
#> 2355                      23.32
#> 2356                      44.48
#> 2357                      13.85
#> 2358                      21.06
#> 2359                       44.4
#> 2360                      19.18
#> 2361                      23.52
#> 2362                      36.92
#> 2363                      17.99
#> 2364                      13.01
#> 2365                      23.26
#> 2366                      36.25
#> 2367                       15.4
#> 2368                      22.67
#> 2369                      32.93
#> 2370                         10
#> 2371                      20.62
#> 2372                          c
#> 2373                       11.8
#> 2374                      21.71
#> 2375                      29.67
#> 2376                       16.8
#> 2377                      23.57
#> 2378                      46.28
#> 2379                         16
#> 2380                      22.68
#> 2381                       37.8
#> 2382                      12.51
#> 2383                      22.77
#> 2384                      31.95
#> 2385                      10.08
#> 2386                      20.58
#> 2387                       31.8
#> 2388                      12.79
#> 2389                      23.76
#> 2390                      35.66
#> 2391                      14.14
#> 2392                       30.4
#> 2393                      32.62
#> 2394                      12.95
#> 2395                      25.41
#> 2396                      55.81
#> 2397                      16.52
#> 2398                      26.86
#> 2399                      34.23
#> 2400                      16.48
#> 2401                      28.89
#> 2402                      34.83
#> 2403                      12.26
#> 2404                      23.49
#> 2405                      36.87
#> 2406                      15.17
#> 2407                      25.85
#> 2408                      38.54
#> 2409                      10.29
#> 2410                      22.06
#> 2411                      33.84
#> 2412                      15.19
#> 2413                       24.4
#> 2414                      39.64
#> 2415                      12.61
#> 2416                      23.68
#> 2417                      32.31
#> 2418                      11.13
#> 2419                      19.38
#> 2420                      31.95
#> 2421                      12.43
#> 2422                      23.36
#> 2423                      35.09
#> 2424                      18.62
#> 2425                       12.6
#> 2426                      25.02
#> 2427                      35.72
#> 2428                      10.59
#> 2429                       22.4
#> 2430                      37.03
#> 2431                      16.29
#> 2432                      29.71
#> 2433                      44.65
#> 2434                      11.84
#> 2435                      24.72
#> 2436                      30.37
#> 2437                      12.41
#> 2438                      23.76
#> 2439                      32.02
#> 2440                      13.39
#> 2441                      28.82
#> 2442                      32.43
#> 2443                      14.21
#> 2444                       23.7
#> 2445                      38.74
#> 2446                      11.85
#> 2447                      25.27
#> 2448                      36.68
#> 2449                      12.82
#> 2450                      26.24
#> 2451                      34.17
#> 2452                          c
#> 2453                      10.94
#> 2454                      22.58
#> 2455                      33.07
#> 2456                      11.57
#> 2457                      22.23
#> 2458                      37.14
#> 2459                      13.33
#> 2460                      24.68
#> 2461                      32.67
#> 2462                      13.54
#> 2463                      25.43
#> 2464                      41.46
#> 2465                      11.74
#> 2466                      26.93
#> 2467                      33.01
#> 2468                      12.09
#> 2469                      22.49
#> 2470                      32.53
#> 2471                      17.99
#> 2472                      13.41
#> 2473                      22.89
#> 2474                      35.31
#> 2475                      18.43
#> 2476                      12.93
#> 2477                      24.55
#> 2478                      31.42
#> 2479                      13.86
#> 2480                      25.24
#> 2481                      27.54
#> 2482                      15.05
#> 2483                       28.6
#> 2484                      29.11
#> 2485                      12.53
#> 2486                      24.03
#> 2487                      36.27
#> 2488                      12.29
#> 2489                      26.23
#> 2490                      29.32
#> 2491                      14.33
#> 2492                      24.51
#> 2493                      20.67
#> 2494                       13.5
#> 2495                       24.6
#> 2496                      32.27
#> 2497                      11.07
#> 2498                      21.77
#> 2499                      36.09
#> 2500                      14.43
#> 2501                      25.03
#> 2502                      39.22
#> 2503                      11.23
#> 2504                      20.32
#> 2505                       28.2
#> 2506                      13.81
#> 2507                      26.72
#> 2508                      22.81
#> 2509                      12.96
#> 2510                      26.75
#> 2511                      33.76
#> 2512                       10.3
#> 2513                      23.45
#> 2514                      25.73
#> 2515                       17.8
#> 2516                      13.18
#> 2517                      23.15
#> 2518                      34.76
#> 2519                      14.92
#> 2520                      26.93
#> 2521                      31.95
#> 2522                       9.23
#> 2523                      19.45
#> 2524                      38.84
#> 2525                      14.02
#> 2526                      23.26
#> 2527                      36.49
#> 2528                      16.63
#> 2529                      30.26
#> 2530                      30.56
#> 2531                       9.66
#> 2532                      21.16
#> 2533                      33.43
#> 2534                      11.72
#> 2535                      23.85
#> 2536                      31.27
#> 2537                      10.74
#> 2538                      22.81
#> 2539                      24.12
#> 2540                          9
#> 2541                      21.19
#> 2542                      32.95
#> 2543                       13.9
#> 2544                      22.28
#> 2545                      35.12
#> 2546                      12.01
#> 2547                      23.27
#> 2548                      41.15
#> 2549                      15.69
#> 2550                      21.23
#> 2551                      40.36
#> 2552                      14.81
#> 2553                       22.2
#> 2554                      41.47
#> 2555                       14.1
#> 2556                      26.15
#> 2557                         46
#> 2558                      15.96
#> 2559                      25.99
#> 2560                      35.41
#> 2561                      11.64
#> 2562                      22.47
#> 2563                      35.18
#> 2564                      12.21
#> 2565                      24.87
#> 2566                         30
#> 2567                       9.64
#> 2568                      15.03
#> 2569                      29.32
#> 2570                      12.31
#> 2571                      22.01
#> 2572                      31.22
#> 2573                      19.63
#> 2574                       31.6
#> 2575                      37.65
#> 2576                      15.17
#> 2577                      26.11
#> 2578                      37.94
#> 2579                      12.77
#> 2580                      23.83
#> 2581                      34.84
#> 2582                      13.39
#> 2583                       27.1
#> 2584                      31.91
#> 2585                      14.77
#> 2586                      24.96
#> 2587                      34.27
#> 2588                       12.7
#> 2589                      22.49
#> 2590                      30.15
#> 2591                      18.66
#> 2592                      13.68
#> 2593                      24.54
#> 2594                      33.87
#> 2595                      14.83
#> 2596                      25.22
#> 2597                      35.57
#> 2598                      10.68
#> 2599                      22.15
#> 2600                      24.63
#> 2601                      12.74
#> 2602                      27.22
#> 2603                      21.15
#> 2604                      12.17
#> 2605                      24.18
#> 2606                      26.41
#> 2607                       11.2
#> 2608                      23.22
#> 2609                      24.19
#> 2610                      10.53
#> 2611                      23.15
#> 2612                      37.71
#> 2613                      12.15
#> 2614                      24.92
#> 2615                      36.43
#> 2616                       13.4
#> 2617                      23.72
#> 2618                      29.91
#> 2619                      14.12
#> 2620                      24.86
#> 2621                      36.53
#> 2622                      15.37
#> 2623                      25.43
#> 2624                       34.9
#> 2625                      16.62
#> 2626                       30.3
#> 2627                      35.44
#> 2628                      12.78
#> 2629                      22.38
#> 2630                      25.24
#> 2631                      13.69
#> 2632                      21.22
#> 2633                      31.95
#> 2634                      14.49
#> 2635                      23.09
#> 2636                      35.49
#> 2637                      13.59
#> 2638                      25.68
#> 2639                      40.85
#> 2640                      17.31
#> 2641                      12.63
#> 2642                      22.35
#> 2643                      35.26
#> 2644                      15.23
#> 2645                      23.85
#> 2646                      39.06
#> 2647                       17.4
#> 2648                      22.68
#> 2649                      49.54
#> 2650                       8.69
#> 2651                      18.12
#> 2652                      16.81
#> 2653                      25.32
#> 2654                      35.53
#> 2655                      12.88
#> 2656                      22.93
#> 2657                      34.69
#> 2658                      11.96
#> 2659                      21.41
#> 2660                      33.24
#> 2661                      10.82
#> 2662                       21.3
#> 2663                      29.02
#> 2664                      10.45
#> 2665                      21.23
#> 2666                      27.58
#> 2667                      12.44
#> 2668                      23.12
#> 2669                      36.79
#> 2670                      11.54
#> 2671                       22.1
#> 2672                      30.31
#> 2673                      18.73
#> 2674                      14.26
#> 2675                      23.28
#> 2676                      36.87
#> 2677                      10.63
#> 2678                      21.39
#> 2679                      36.86
#> 2680                      12.51
#> 2681                      21.29
#> 2682                      28.34
#> 2683                      14.66
#> 2684                      26.99
#> 2685                      40.64
#> 2686                      11.77
#> 2687                      23.24
#> 2688                      42.68
#> 2689                      17.07
#> 2690                      24.11
#> 2691                      45.74
#> 2692                      16.12
#> 2693                      25.31
#> 2694                      33.45
#> 2695                      14.59
#> 2696                      24.66
#> 2697                      30.38
#> 2698                      15.93
#> 2699                      23.86
#> 2700                      36.33
#> 2701                      12.83
#> 2702                      22.74
#> 2703                      41.87
#> 2704                      16.64
#> 2705                      27.43
#> 2706                      32.02
#> 2707                      15.49
#> 2708                      20.97
#> 2709                      32.65
#> 2710                      10.62
#> 2711                      20.23
#> 2712                      28.56
#> 2713                      12.79
#> 2714                       23.2
#> 2715                      33.98
#> 2716                      12.25
#> 2717                      21.98
#> 2718                      35.23
#> 2719                      17.33
#> 2720                      12.91
#> 2721                      21.99
#> 2722                      33.34
#> 2723                      13.99
#> 2724                      23.29
#> 2725                      35.05
#> 2726                      15.75
#> 2727                      21.18
#> 2728                      36.44
#> 2729                      14.67
#> 2730                      20.44
#> 2731                      33.93
#> 2732                       14.2
#> 2733                      21.19
#> 2734                      27.47
#> 2735                      12.93
#> 2736                      24.09
#> 2737                      27.19
#> 2738                      11.54
#> 2739                      19.45
#> 2740                      34.65
#> 2741                      12.32
#> 2742                      20.86
#> 2743                      35.57
#> 2744                      13.16
#> 2745                      22.78
#> 2746                       32.6
#> 2747                      11.88
#> 2748                      20.71
#> 2749                      33.95
#> 2750                      12.95
#> 2751                      22.98
#> 2752                      31.84
#> 2753                      12.65
#> 2754                      23.84
#> 2755                      33.28
#> 2756                      17.91
#> 2757                      14.79
#> 2758                      20.83
#> 2759                      37.52
#> 2760                          c
#> 2761                      16.57
#> 2762                      19.75
#> 2763                       44.9
#> 2764                       11.9
#> 2765                      18.78
#> 2766                      39.62
#> 2767                      11.77
#> 2768                      19.43
#> 2769                      34.45
#> 2770                      14.78
#> 2771                      20.38
#> 2772                       31.9
#> 2773                      11.84
#> 2774                      19.45
#> 2775                      35.53
#> 2776                      16.15
#> 2777                      28.03
#> 2778                      44.67
#> 2779                      15.81
#> 2780                      25.44
#> 2781                      35.55
#> 2782                      14.45
#> 2783                      22.27
#> 2784                      34.17
#> 2785                      14.27
#> 2786                      23.12
#> 2787                      37.62
#> 2788                      14.14
#> 2789                       21.4
#> 2790                      35.65
#> 2791                         15
#> 2792                      21.67
#> 2793                      31.78
#> 2794                      15.21
#> 2795                      20.02
#> 2796                      38.94
#> 2797                       15.3
#> 2798                      23.94
#> 2799                      36.98
#> 2800                      12.84
#> 2801                      20.69
#> 2802                      35.71
#> 2803                      12.77
#> 2804                      19.24
#> 2805                       39.2
#> 2806                      17.58
#> 2807                      22.33
#> 2808                      36.59
#> 2809                      15.78
#> 2810                       20.8
#> 2811                      33.94
#> 2812                       18.7
#> 2813                      25.46
#> 2814                      39.68
#> 2815                      16.47
#> 2816                      25.63
#> 2817                       26.4
#> 2818                      11.39
#> 2819                      17.02
#> 2820                       38.9
#> 2821                      16.58
#> 2822                      22.29
#> 2823                      32.85
#> 2824                      14.54
#> 2825                      19.45
#> 2826                      35.36
#> 2827                      11.94
#> 2828                      18.06
#> 2829                      40.16
#> 2830                      19.42
#> 2831                      21.23
#> 2832                      53.85
#> 2833                      16.82
#> 2834                       19.3
#> 2835                      47.35
#> 2836                       8.76
#> 2837                      15.98
#> 2838                      27.51
#> 2839                      14.73
#> 2840                      19.72
#> 2841                      37.93
#> 2842                      11.56
#> 2843                      16.54
#> 2844                       35.2
#> 2845                      19.14
#> 2846                      18.28
#> 2847                      42.02
#> 2848                      14.81
#> 2849                      23.19
#> 2850                      44.25
#> 2851                      13.89
#> 2852                      20.41
#> 2853                      43.83
#> 2854                      18.91
#> 2855                      23.47
#> 2856                      36.56
#> 2857                      17.69
#> 2858                      12.94
#> 2859                      22.65
#> 2860                      36.19
#> 2861                      15.28
#> 2862                      21.94
#> 2863                       33.2
#> 2864                      10.16
#> 2865                      19.92
#> 2866                          c
#> 2867                      11.61
#> 2868                      21.21
#> 2869                      29.45
#> 2870                      16.67
#> 2871                      23.06
#> 2872                      46.83
#> 2873                      15.92
#> 2874                      21.69
#> 2875                      38.41
#> 2876                      12.24
#> 2877                      21.72
#> 2878                      31.62
#> 2879                      10.05
#> 2880                       18.7
#> 2881                      30.26
#> 2882                       12.7
#> 2883                      23.02
#> 2884                      35.77
#> 2885                      14.17
#> 2886                      29.45
#> 2887                      30.48
#> 2888                      12.71
#> 2889                      25.16
#> 2890                      55.52
#> 2891                      16.46
#> 2892                      26.65
#> 2893                      34.97
#> 2894                      16.41
#> 2895                      28.68
#> 2896                      33.71
#> 2897                      12.31
#> 2898                      22.32
#> 2899                      36.42
#> 2900                      15.08
#> 2901                      25.42
#> 2902                      37.89
#> 2903                      10.17
#> 2904                       21.8
#> 2905                      33.81
#> 2906                       15.1
#> 2907                      23.62
#> 2908                      39.65
#> 2909                      12.73
#> 2910                      23.53
#> 2911                      32.52
#> 2912                      11.09
#> 2913                      18.77
#> 2914                      32.07
#> 2915                      12.31
#> 2916                      22.93
#> 2917                      35.21
#> 2918                      18.42
#> 2919                      12.57
#> 2920                      24.62
#> 2921                      35.69
#> 2922                      10.42
#> 2923                         22
#> 2924                      36.44
#> 2925                      16.17
#> 2926                       29.2
#> 2927                      44.77
#> 2928                      11.62
#> 2929                      24.05
#> 2930                      30.82
#> 2931                      12.43
#> 2932                      23.37
#> 2933                      32.51
#> 2934                      13.35
#> 2935                      28.46
#> 2936                      32.29
#> 2937                      14.11
#> 2938                       23.6
#> 2939                      38.54
#> 2940                      11.92
#> 2941                      25.17
#> 2942                       36.3
#> 2943                      12.83
#> 2944                      25.88
#> 2945                      35.07
#> 2946                          c
#> 2947                      10.87
#> 2948                      22.31
#> 2949                      32.47
#> 2950                      11.66
#> 2951                      22.04
#> 2952                      36.96
#> 2953                      13.31
#> 2954                      24.15
#> 2955                      31.79
#> 2956                      13.57
#> 2957                      25.11
#> 2958                      41.62
#> 2959                      11.75
#> 2960                      26.31
#> 2961                      33.33
#> 2962                      12.02
#> 2963                      21.98
#> 2964                       32.6
#> 2965                       18.1
#> 2966                      13.76
#> 2967                       22.7
#> 2968                      35.42
#> 2969                      18.67
#> 2970                      13.28
#> 2971                      24.66
#> 2972                      31.89
#> 2973                      14.27
#> 2974                      25.15
#> 2975                      28.99
#> 2976                       15.5
#> 2977                       28.8
#> 2978                      30.02
#> 2979                      13.07
#> 2980                      24.06
#> 2981                      36.34
#> 2982                      12.48
#> 2983                      26.27
#> 2984                      30.69
#> 2985                       14.8
#> 2986                      24.61
#> 2987                      21.76
#> 2988                      13.82
#> 2989                      24.66
#> 2990                       32.9
#> 2991                      11.23
#> 2992                      21.87
#> 2993                      36.92
#> 2994                      14.76
#> 2995                      25.42
#> 2996                         38
#> 2997                      11.47
#> 2998                      20.65
#> 2999                      28.11
#> 3000                      14.06
#> 3001                      26.63
#> 3002                      23.47
#> 3003                      13.49
#> 3004                      26.72
#> 3005                      34.26
#> 3006                      10.82
#> 3007                      23.53
#> 3008                      26.44
#> 3009                      18.01
#> 3010                      13.54
#> 3011                      23.16
#> 3012                       34.9
#> 3013                      14.96
#> 3014                       27.1
#> 3015                      31.72
#> 3016                        9.6
#> 3017                      19.67
#> 3018                      38.93
#> 3019                      14.46
#> 3020                      23.42
#> 3021                      37.91
#> 3022                      17.46
#> 3023                      30.09
#> 3024                       30.3
#> 3025                      10.06
#> 3026                      20.96
#> 3027                      33.08
#> 3028                      12.07
#> 3029                      23.66
#> 3030                      31.52
#> 3031                      11.05
#> 3032                      22.89
#> 3033                      24.36
#> 3034                       9.43
#> 3035                      21.15
#> 3036                      33.33
#> 3037                      14.31
#> 3038                      22.34
#> 3039                      35.74
#> 3040                      12.55
#> 3041                      23.39
#> 3042                      40.49
#> 3043                       16.1
#> 3044                       21.3
#> 3045                      40.52
#> 3046                      15.33
#> 3047                      22.33
#> 3048                      41.58
#> 3049                      14.48
#> 3050                      26.25
#> 3051                      47.36
#> 3052                      16.27
#> 3053                      26.06
#> 3054                      35.06
#> 3055                      11.99
#> 3056                      22.24
#> 3057                      35.98
#> 3058                      12.65
#> 3059                      24.96
#> 3060                      31.14
#> 3061                       9.97
#> 3062                      14.63
#> 3063                       29.1
#> 3064                      12.49
#> 3065                      21.97
#> 3066                      31.29
#> 3067                      19.88
#> 3068                      31.75
#> 3069                      37.31
#> 3070                      15.39
#> 3071                      26.14
#> 3072                      37.56
#> 3073                      12.99
#> 3074                       23.9
#> 3075                      33.26
#> 3076                      13.74
#> 3077                      26.94
#> 3078                      31.82
#> 3079                      15.25
#> 3080                      25.12
#> 3081                      34.79
#> 3082                      13.06
#> 3083                      22.51
#> 3084                      30.33
#> 3085                      18.81
#> 3086                      13.97
#> 3087                      24.51
#> 3088                      33.93
#> 3089                      15.05
#> 3090                      25.27
#> 3091                      35.97
#> 3092                         11
#> 3093                      22.14
#> 3094                      25.22
#> 3095                      13.01
#> 3096                      27.21
#> 3097                      20.51
#> 3098                      12.67
#> 3099                      24.41
#> 3100                       27.3
#> 3101                      11.62
#> 3102                      23.29
#> 3103                      23.38
#> 3104                      10.87
#> 3105                       22.9
#> 3106                      37.56
#> 3107                      12.24
#> 3108                      24.89
#> 3109                      36.12
#> 3110                       13.6
#> 3111                      23.52
#> 3112                      29.78
#> 3113                      14.27
#> 3114                      25.12
#> 3115                      36.83
#> 3116                      15.52
#> 3117                      25.24
#> 3118                       35.3
#> 3119                      17.23
#> 3120                      30.35
#> 3121                      35.02
#> 3122                      12.98
#> 3123                      22.51
#> 3124                      25.24
#> 3125                      14.03
#> 3126                      21.37
#> 3127                      32.24
#> 3128                       14.7
#> 3129                      23.02
#> 3130                      35.97
#> 3131                      13.84
#> 3132                      25.47
#> 3133                      39.26
#> 3134                      17.47
#> 3135                      12.96
#> 3136                       22.3
#> 3137                      35.35
#> 3138                      15.52
#> 3139                      24.03
#> 3140                      38.63
#> 3141                      18.17
#> 3142                      22.95
#> 3143                       50.5
#> 3144                       8.75
#> 3145                      18.41
#> 3146                      17.32
#> 3147                      25.35
#> 3148                      35.53
#> 3149                      13.08
#> 3150                      22.72
#> 3151                      35.22
#> 3152                      12.15
#> 3153                      21.43
#> 3154                      33.82
#> 3155                      11.11
#> 3156                      21.11
#> 3157                      29.13
#> 3158                      11.02
#> 3159                      21.31
#> 3160                      27.66
#> 3161                      12.43
#> 3162                      22.72
#> 3163                      36.21
#> 3164                      11.83
#> 3165                      22.15
#> 3166                      30.17
#> 3167                      18.92
#> 3168                      14.69
#> 3169                       23.2
#> 3170                      37.05
#> 3171                      10.93
#> 3172                      21.72
#> 3173                      36.68
#> 3174                      13.09
#> 3175                      21.31
#> 3176                      29.46
#> 3177                      15.14
#> 3178                      26.87
#> 3179                      40.83
#> 3180                      12.03
#> 3181                      23.29
#> 3182                      42.57
#> 3183                      17.57
#> 3184                      23.94
#> 3185                      45.98
#> 3186                      16.46
#> 3187                      25.15
#> 3188                       33.3
#> 3189                       14.9
#> 3190                      24.61
#> 3191                      30.97
#> 3192                      16.49
#> 3193                      24.07
#> 3194                      36.71
#> 3195                      13.37
#> 3196                      22.41
#> 3197                      42.86
#> 3198                      17.23
#> 3199                      27.14
#> 3200                       32.4
#> 3201                       15.8
#> 3202                       20.9
#> 3203                      32.68
#> 3204                      10.97
#> 3205                      20.32
#> 3206                      28.39
#> 3207                      13.19
#> 3208                      22.88
#> 3209                      33.42
#> 3210                      12.58
#> 3211                      22.01
#> 3212                      35.62
#> 3213                      17.27
#> 3214                      13.18
#> 3215                      21.55
#> 3216                      33.45
#> 3217                      14.32
#> 3218                      22.97
#> 3219                      35.51
#> 3220                      16.28
#> 3221                      21.12
#> 3222                       36.8
#> 3223                      15.08
#> 3224                      19.78
#> 3225                      34.32
#> 3226                      14.64
#> 3227                       21.5
#> 3228                      26.82
#> 3229                      13.29
#> 3230                      23.86
#> 3231                      28.14
#> 3232                      11.79
#> 3233                      19.44
#> 3234                      34.78
#> 3235                      12.52
#> 3236                      20.57
#> 3237                      35.29
#> 3238                      13.49
#> 3239                      22.55
#> 3240                      32.44
#> 3241                      12.15
#> 3242                      19.36
#> 3243                      33.92
#> 3244                      12.97
#> 3245                      22.76
#> 3246                      32.33
#> 3247                      12.84
#> 3248                      23.69
#> 3249                       33.6
#> 3250                      18.04
#> 3251                      15.29
#> 3252                      20.53
#> 3253                      37.61
#> 3254                          c
#> 3255                      17.18
#> 3256                      19.68
#> 3257                       44.9
#> 3258                      12.59
#> 3259                      18.36
#> 3260                       39.9
#> 3261                      12.23
#> 3262                      19.07
#> 3263                      33.97
#> 3264                      15.38
#> 3265                      19.96
#> 3266                      32.16
#> 3267                      12.14
#> 3268                      18.89
#> 3269                      36.42
#> 3270                      16.55
#> 3271                      27.41
#> 3272                      44.67
#> 3273                      16.15
#> 3274                      24.54
#> 3275                      34.91
#> 3276                      15.05
#> 3277                      21.54
#> 3278                      33.52
#> 3279                      14.66
#> 3280                      22.32
#> 3281                      37.25
#> 3282                      14.45
#> 3283                      21.17
#> 3284                      34.68
#> 3285                      15.59
#> 3286                      22.18
#> 3287                      31.31
#> 3288                      15.82
#> 3289                      19.15
#> 3290                      38.14
#> 3291                      15.73
#> 3292                      23.96
#> 3293                      37.19
#> 3294                      13.39
#> 3295                      19.82
#> 3296                       37.1
#> 3297                      13.21
#> 3298                       19.1
#> 3299                      39.81
#> 3300                      18.17
#> 3301                      22.07
#> 3302                      36.52
#> 3303                      16.42
#> 3304                      20.57
#> 3305                      35.39
#> 3306                       19.1
#> 3307                      25.53
#> 3308                      40.16
#> 3309                      17.05
#> 3310                      26.33
#> 3311                       26.9
#> 3312                      11.81
#> 3313                      16.49
#> 3314                      39.12
#> 3315                      17.11
#> 3316                      22.18
#> 3317                      33.98
#> 3318                      15.05
#> 3319                       19.5
#> 3320                      35.94
#> 3321                      12.44
#> 3322                      17.87
#> 3323                      40.71
#> 3324                      19.81
#> 3325                      21.25
#> 3326                      54.44
#> 3327                      17.42
#> 3328                      18.78
#> 3329                      49.14
#> 3330                       9.13
#> 3331                      15.53
#> 3332                      28.16
#> 3333                      15.13
#> 3334                      20.03
#> 3335                      38.33
#> 3336                      11.85
#> 3337                      15.53
#> 3338                      31.13
#> 3339                      19.92
#> 3340                      18.68
#> 3341                      41.84
#> 3342                       15.3
#> 3343                      23.49
#> 3344                      44.66
#> 3345                       14.4
#> 3346                      20.08
#> 3347                      45.39
#> 3348                      19.69
#> 3349                       23.5
#> 3350                      37.99
#> 3351                      17.69
#> 3352                      13.29
#> 3353                      22.23
#> 3354                      36.19
#> 3355                      15.54
#> 3356                      21.34
#> 3357                      32.53
#> 3358                       10.4
#> 3359                      19.82
#> 3360                          c
#> 3361                      11.87
#> 3362                         21
#> 3363                      30.62
#> 3364                      17.27
#> 3365                      23.22
#> 3366                      45.73
#> 3367                      16.87
#> 3368                       20.6
#> 3369                      39.94
#> 3370                      12.68
#> 3371                       20.8
#> 3372                      31.68
#> 3373                      10.48
#> 3374                      17.19
#> 3375                      30.04
#> 3376                      13.13
#> 3377                      22.46
#> 3378                      36.16
#> 3379                      14.56
#> 3380                      29.01
#> 3381                      33.16
#> 3382                      13.19
#> 3383                      25.05
#> 3384                      55.79
#> 3385                      16.84
#> 3386                      26.73
#> 3387                      35.71
#> 3388                      16.76
#> 3389                      28.56
#> 3390                       33.8
#> 3391                      12.56
#> 3392                      20.32
#> 3393                      35.91
#> 3394                      15.41
#> 3395                      25.42
#> 3396                      38.09
#> 3397                      10.41
#> 3398                      21.58
#> 3399                      33.46
#> 3400                      15.48
#> 3401                      23.31
#> 3402                      39.46
#> 3403                      12.99
#> 3404                      23.45
#> 3405                      32.21
#> 3406                      11.48
#> 3407                      18.39
#> 3408                      32.28
#> 3409                      12.61
#> 3410                      22.76
#> 3411                      35.73
#> 3412                      18.46
#> 3413                      12.83
#> 3414                       24.4
#> 3415                       35.7
#> 3416                      10.42
#> 3417                      21.52
#> 3418                      36.63
#> 3419                      16.42
#> 3420                      29.02
#> 3421                      44.44
#> 3422                      11.79
#> 3423                      23.79
#> 3424                      31.28
#> 3425                      12.88
#> 3426                      23.25
#> 3427                      31.91
#> 3428                      13.57
#> 3429                      28.11
#> 3430                      33.15
#> 3431                      14.51
#> 3432                      23.46
#> 3433                      39.72
#> 3434                      12.37
#> 3435                      25.49
#> 3436                       35.6
#> 3437                      13.11
#> 3438                      25.72
#> 3439                      35.49
#> 3440                          c
#> 3441                      11.13
#> 3442                      22.17
#> 3443                      32.57
#> 3444                      11.82
#> 3445                      21.86
#> 3446                      37.01
#> 3447                       13.4
#> 3448                      23.65
#> 3449                      32.21
#> 3450                       13.9
#> 3451                      24.88
#> 3452                      42.03
#> 3453                      11.95
#> 3454                       26.1
#> 3455                      33.05
#> 3456                      12.31
#> 3457                      21.69
#> 3458                      32.13
#> 3459                      18.35
#> 3460                       14.1
#> 3461                      22.83
#> 3462                      35.73
#> 3463                      18.71
#> 3464                      13.33
#> 3465                      24.66
#> 3466                      31.92
#> 3467                      14.51
#> 3468                      25.18
#> 3469                      29.56
#> 3470                      15.31
#> 3471                      28.78
#> 3472                      30.56
#> 3473                      13.01
#> 3474                      24.01
#> 3475                      37.53
#> 3476                      12.51
#> 3477                      26.21
#> 3478                      29.26
#> 3479                      14.81
#> 3480                      24.67
#> 3481                      22.08
#> 3482                      13.97
#> 3483                      24.65
#> 3484                      32.86
#> 3485                      11.33
#> 3486                      21.81
#> 3487                      36.83
#> 3488                       14.8
#> 3489                      25.37
#> 3490                      37.77
#> 3491                      11.75
#> 3492                       20.7
#> 3493                      28.72
#> 3494                      14.02
#> 3495                      26.72
#> 3496                      23.97
#> 3497                      13.51
#> 3498                      26.79
#> 3499                      33.72
#> 3500                      10.77
#> 3501                      23.57
#> 3502                      26.54
#> 3503                      18.26
#> 3504                      13.86
#> 3505                      23.31
#> 3506                      35.15
#> 3507                      15.29
#> 3508                      27.08
#> 3509                      30.65
#> 3510                       9.99
#> 3511                      20.59
#> 3512                      39.86
#> 3513                      14.69
#> 3514                      23.32
#> 3515                      36.67
#> 3516                       17.7
#> 3517                       30.6
#> 3518                      31.02
#> 3519                      10.37
#> 3520                      21.06
#> 3521                      33.49
#> 3522                      12.37
#> 3523                      23.65
#> 3524                      31.23
#> 3525                       11.7
#> 3526                      23.27
#> 3527                      24.82
#> 3528                      10.14
#> 3529                      21.61
#> 3530                      32.58
#> 3531                      14.51
#> 3532                      22.92
#> 3533                      35.21
#> 3534                      12.82
#> 3535                      23.62
#> 3536                      39.85
#> 3537                      16.54
#> 3538                      21.42
#> 3539                      42.77
#> 3540                      15.49
#> 3541                      22.54
#> 3542                      40.96
#> 3543                      14.74
#> 3544                      26.35
#> 3545                      46.75
#> 3546                      16.23
#> 3547                      26.04
#> 3548                      35.73
#> 3549                      12.04
#> 3550                      22.34
#> 3551                      35.89
#> 3552                      12.88
#> 3553                      24.38
#> 3554                      31.62
#> 3555                      10.57
#> 3556                      14.87
#> 3557                      29.03
#> 3558                      12.92
#> 3559                      22.17
#> 3560                      31.33
#> 3561                      19.81
#> 3562                      31.54
#> 3563                      37.33
#> 3564                      15.75
#> 3565                      26.19
#> 3566                      37.41
#> 3567                      13.12
#> 3568                         24
#> 3569                      33.03
#> 3570                      13.99
#> 3571                      27.23
#> 3572                      33.08
#> 3573                      15.64
#> 3574                      24.62
#> 3575                      35.87
#> 3576                      13.46
#> 3577                      22.75
#> 3578                      30.44
#> 3579                      19.06
#> 3580                      14.31
#> 3581                      24.65
#> 3582                      34.03
#> 3583                      15.78
#> 3584                      25.27
#> 3585                      36.46
#> 3586                      11.54
#> 3587                       22.5
#> 3588                       25.6
#> 3589                      13.39
#> 3590                      27.25
#> 3591                      20.83
#> 3592                      13.09
#> 3593                      24.82
#> 3594                      29.17
#> 3595                      12.15
#> 3596                      23.57
#> 3597                      24.68
#> 3598                      11.16
#> 3599                      23.13
#> 3600                      36.77
#> 3601                      12.66
#> 3602                       25.1
#> 3603                      36.23
#> 3604                      13.93
#> 3605                      23.51
#> 3606                      29.78
#> 3607                      14.36
#> 3608                      25.12
#> 3609                      36.48
#> 3610                      15.47
#> 3611                      25.12
#> 3612                       35.1
#> 3613                      17.66
#> 3614                      30.44
#> 3615                      35.55
#> 3616                      13.56
#> 3617                      22.23
#> 3618                      25.82
#> 3619                      14.29
#> 3620                      21.45
#> 3621                      33.17
#> 3622                      14.95
#> 3623                      23.38
#> 3624                       36.2
#> 3625                      14.36
#> 3626                      25.54
#> 3627                       38.1
#> 3628                      17.74
#> 3629                      13.33
#> 3630                      22.45
#> 3631                      35.74
#> 3632                      16.06
#> 3633                         24
#> 3634                       38.6
#> 3635                       18.3
#> 3636                         23
#> 3637                       49.9
#> 3638                          9
#> 3639                      18.48
#> 3640                      17.88
#> 3641                      25.48
#> 3642                       36.6
#> 3643                       13.6
#> 3644                      22.96
#> 3645                      35.77
#> 3646                      12.57
#> 3647                      21.58
#> 3648                      34.51
#> 3649                      11.34
#> 3650                      21.12
#> 3651                      30.02
#> 3652                      11.12
#> 3653                      21.48
#> 3654                      27.98
#> 3655                      12.81
#> 3656                      23.14
#> 3657                      36.68
#> 3658                      12.42
#> 3659                      22.22
#> 3660                      31.04
#> 3661                      18.92
#> 3662                      14.69
#> 3663                      23.18
#> 3664                      37.12
#> 3665                      10.99
#> 3666                      21.71
#> 3667                      36.16
#> 3668                      13.09
#> 3669                      21.19
#> 3670                      30.27
#> 3671                      14.98
#> 3672                      26.79
#> 3673                       40.6
#> 3674                      12.15
#> 3675                      23.49
#> 3676                      42.41
#> 3677                      17.62
#> 3678                      23.89
#> 3679                      45.53
#> 3680                      16.41
#> 3681                      25.06
#> 3682                      33.48
#> 3683                      15.05
#> 3684                      24.67
#> 3685                      31.11
#> 3686                      16.44
#> 3687                      24.17
#> 3688                      36.65
#> 3689                      13.27
#> 3690                      22.41
#> 3691                      42.93
#> 3692                       17.1
#> 3693                      26.92
#> 3694                       32.4
#> 3695                      15.88
#> 3696                      21.03
#> 3697                      33.88
#> 3698                      11.13
#> 3699                      20.28
#> 3700                      28.73
#> 3701                      13.06
#> 3702                      22.83
#> 3703                      33.96
#> 3704                      12.53
#> 3705                         22
#> 3706                       36.1
#> 3707                       17.6
#> 3708                      13.61
#> 3709                      21.73
#> 3710                      33.97
#> 3711                      14.46
#> 3712                      22.97
#> 3713                      35.21
#> 3714                      16.74
#> 3715                      21.18
#> 3716                      38.24
#> 3717                      15.43
#> 3718                      19.87
#> 3719                      34.21
#> 3720                      15.24
#> 3721                      21.78
#> 3722                      27.59
#> 3723                       13.7
#> 3724                      23.89
#> 3725                      29.87
#> 3726                       12.6
#> 3727                      19.77
#> 3728                      36.23
#> 3729                      12.88
#> 3730                      20.84
#> 3731                      36.39
#> 3732                      13.95
#> 3733                      22.74
#> 3734                      32.72
#> 3735                      12.59
#> 3736                      19.43
#> 3737                      34.71
#> 3738                      13.42
#> 3739                      22.92
#> 3740                      32.95
#> 3741                      13.24
#> 3742                      24.06
#> 3743                         33
#> 3744                      18.34
#> 3745                      15.76
#> 3746                      20.61
#> 3747                      38.18
#> 3748                          c
#> 3749                      17.63
#> 3750                      19.89
#> 3751                      45.54
#> 3752                      13.02
#> 3753                      18.46
#> 3754                      40.71
#> 3755                      12.62
#> 3756                       19.1
#> 3757                      34.09
#> 3758                      15.78
#> 3759                      20.13
#> 3760                      32.98
#> 3761                      12.54
#> 3762                      19.06
#> 3763                       37.1
#> 3764                      17.31
#> 3765                      27.66
#> 3766                      44.14
#> 3767                      16.63
#> 3768                      24.38
#> 3769                      35.16
#> 3770                      15.62
#> 3771                      21.45
#> 3772                      33.87
#> 3773                         15
#> 3774                      21.34
#> 3775                      37.63
#> 3776                      14.68
#> 3777                       21.3
#> 3778                      35.33
#> 3779                      15.93
#> 3780                      21.75
#> 3781                      31.78
#> 3782                      16.44
#> 3783                      19.18
#> 3784                      38.86
#> 3785                      16.13
#> 3786                      24.03
#> 3787                      37.15
#> 3788                      13.98
#> 3789                      20.07
#> 3790                      37.79
#> 3791                      13.71
#> 3792                      19.41
#> 3793                      39.56
#> 3794                      18.61
#> 3795                      22.44
#> 3796                      37.34
#> 3797                      17.02
#> 3798                      20.96
#> 3799                      34.95
#> 3800                      19.75
#> 3801                      25.28
#> 3802                      40.57
#> 3803                      17.59
#> 3804                      25.55
#> 3805                      28.93
#> 3806                      12.15
#> 3807                      16.62
#> 3808                      38.41
#> 3809                      17.38
#> 3810                      22.67
#> 3811                      35.08
#> 3812                      15.56
#> 3813                       19.9
#> 3814                      35.76
#> 3815                      12.78
#> 3816                      17.84
#> 3817                      41.23
#> 3818                      20.23
#> 3819                      21.66
#> 3820                      54.65
#> 3821                      18.05
#> 3822                      19.02
#> 3823                      51.64
#> 3824                        9.6
#> 3825                      15.72
#> 3826                      28.82
#> 3827                      15.79
#> 3828                      20.32
#> 3829                      38.03
#> 3830                      12.54
#> 3831                      14.69
#> 3832                      37.82
#> 3833                      20.63
#> 3834                      19.08
#> 3835                      40.92
#> 3836                      15.46
#> 3837                      23.52
#> 3838                      44.58
#> 3839                      14.89
#> 3840                       20.1
#> 3841                      45.09
#> 3842                      20.27
#> 3843                       23.8
#> 3844                      35.38
#> 3845                      18.03
#> 3846                      13.76
#> 3847                      22.41
#> 3848                      36.52
#> 3849                      15.94
#> 3850                      21.67
#> 3851                       33.5
#> 3852                      11.19
#> 3853                      20.17
#> 3854                          c
#> 3855                      12.34
#> 3856                      21.28
#> 3857                      30.68
#> 3858                      17.52
#> 3859                      23.24
#> 3860                      45.43
#> 3861                      17.51
#> 3862                       20.8
#> 3863                      39.14
#> 3864                      13.27
#> 3865                      21.07
#> 3866                      32.67
#> 3867                      10.95
#> 3868                      17.29
#> 3869                      31.57
#> 3870                      13.89
#> 3871                      22.59
#> 3872                      36.86
#> 3873                      15.25
#> 3874                      29.12
#> 3875                      32.62
#> 3876                      13.44
#> 3877                      25.23
#> 3878                      55.34
#> 3879                      17.16
#> 3880                      27.01
#> 3881                      37.25
#> 3882                      17.14
#> 3883                      28.82
#> 3884                      34.08
#> 3885                      12.89
#> 3886                      20.34
#> 3887                      36.15
#> 3888                      15.97
#> 3889                      25.57
#> 3890                      38.17
#> 3891                      10.85
#> 3892                      21.72
#> 3893                      33.92
#> 3894                      16.06
#> 3895                      23.51
#> 3896                      39.88
#> 3897                      13.41
#> 3898                      23.51
#> 3899                      32.25
#> 3900                      11.79
#> 3901                      18.66
#> 3902                      32.77
#> 3903                      13.07
#> 3904                      22.96
#> 3905                      35.36
#> 3906                      18.78
#> 3907                      13.16
#> 3908                      24.71
#> 3909                      36.14
#> 3910                      10.91
#> 3911                      21.33
#> 3912                      37.43
#> 3913                      16.57
#> 3914                      31.48
#> 3915                      44.45
#> 3916                      12.28
#> 3917                      23.55
#> 3918                      30.82
#> 3919                      12.97
#> 3920                      23.03
#> 3921                      31.85
#> 3922                      14.01
#> 3923                      27.88
#> 3924                      33.11
#> 3925                      14.75
#> 3926                      23.43
#> 3927                      38.69
#> 3928                      12.64
#> 3929                      25.64
#> 3930                      37.92
#> 3931                      13.64
#> 3932                      25.87
#> 3933                      36.74
#> 3934                          c
#> 3935                      11.57
#> 3936                      22.44
#> 3937                      32.83
#> 3938                      12.19
#> 3939                      22.62
#> 3940                      37.71
#> 3941                      13.77
#> 3942                      23.86
#> 3943                      31.78
#> 3944                      14.39
#> 3945                      25.04
#> 3946                      42.67
#> 3947                      12.25
#> 3948                       26.3
#> 3949                      34.12
#> 3950                      12.44
#> 3951                      21.88
#> 3952                      32.22
#> 3953                      18.38
#> 3954                      14.15
#> 3955                      22.86
#> 3956                       35.8
#> 3957                      18.86
#> 3958                       13.6
#> 3959                      24.69
#> 3960                      32.19
#> 3961                      14.98
#> 3962                      25.09
#> 3963                      29.56
#> 3964                      15.55
#> 3965                      28.65
#> 3966                      30.71
#> 3967                      13.36
#> 3968                      23.83
#> 3969                      37.96
#> 3970                      12.73
#> 3971                      26.21
#> 3972                      30.13
#> 3973                      14.85
#> 3974                      24.85
#> 3975                      22.86
#> 3976                      14.16
#> 3977                      24.71
#> 3978                      32.48
#> 3979                      11.54
#> 3980                      21.89
#> 3981                       37.2
#> 3982                      14.98
#> 3983                      25.43
#> 3984                       38.2
#> 3985                      12.04
#> 3986                       20.9
#> 3987                      29.41
#> 3988                      14.32
#> 3989                      26.64
#> 3990                      23.47
#> 3991                      13.87
#> 3992                      26.68
#> 3993                      34.26
#> 3994                      11.21
#> 3995                      23.84
#> 3996                      26.98
#> 3997                      18.23
#> 3998                      13.84
#> 3999                      23.28
#> 4000                      35.13
#> 4001                       15.2
#> 4002                      27.09
#> 4003                      30.65
#> 4004                       9.86
#> 4005                      20.56
#> 4006                      39.86
#> 4007                      14.58
#> 4008                      23.42
#> 4009                      36.67
#> 4010                      17.83
#> 4011                      30.66
#> 4012                      31.39
#> 4013                      10.35
#> 4014                      21.07
#> 4015                      33.49
#> 4016                       12.4
#> 4017                      24.01
#> 4018                      31.23
#> 4019                       11.7
#> 4020                      23.27
#> 4021                      24.82
#> 4022                      10.14
#> 4023                      21.62
#> 4024                      32.58
#> 4025                       14.6
#> 4026                      22.89
#> 4027                      35.21
#> 4028                      12.72
#> 4029                      23.64
#> 4030                      39.85
#> 4031                      16.47
#> 4032                      21.43
#> 4033                      42.77
#> 4034                      15.46
#> 4035                      22.07
#> 4036                      40.96
#> 4037                      14.68
#> 4038                      26.35
#> 4039                      46.75
#> 4040                      16.29
#> 4041                      26.09
#> 4042                      35.73
#> 4043                      12.08
#> 4044                      23.05
#> 4045                       35.7
#> 4046                       12.8
#> 4047                      24.41
#> 4048                      31.25
#> 4049                      10.58
#> 4050                      14.82
#> 4051                      29.03
#> 4052                       12.9
#> 4053                      22.05
#> 4054                      31.44
#> 4055                      19.81
#> 4056                      31.64
#> 4057                      37.33
#> 4058                      15.78
#> 4059                      25.42
#> 4060                      37.41
#> 4061                      13.11
#> 4062                      23.99
#> 4063                      32.58
#> 4064                      13.96
#> 4065                      27.25
#> 4066                      33.21
#> 4067                      15.65
#> 4068                      24.62
#> 4069                      35.87
#> 4070                      13.39
#> 4071                      22.75
#> 4072                      30.38
#> 4073                      19.07
#> 4074                      14.32
#> 4075                      24.65
#> 4076                      34.09
#> 4077                      15.77
#> 4078                      25.28
#> 4079                      36.46
#> 4080                      11.53
#> 4081                      22.51
#> 4082                       25.6
#> 4083                      13.34
#> 4084                      27.25
#> 4085                      20.83
#> 4086                      13.14
#> 4087                      24.81
#> 4088                      29.17
#> 4089                      12.14
#> 4090                      23.57
#> 4091                      24.68
#> 4092                      11.16
#> 4093                      23.14
#> 4094                      36.77
#> 4095                      12.63
#> 4096                      25.09
#> 4097                      36.23
#> 4098                      14.01
#> 4099                       23.5
#> 4100                      29.72
#> 4101                      14.57
#> 4102                       25.2
#> 4103                       36.4
#> 4104                      15.66
#> 4105                      25.18
#> 4106                       35.6
#> 4107                       17.5
#> 4108                      30.43
#> 4109                      35.48
#> 4110                      13.49
#> 4111                      22.24
#> 4112                      25.82
#> 4113                      14.26
#> 4114                      21.46
#> 4115                      33.17
#> 4116                      14.98
#> 4117                      23.39
#> 4118                       36.2
#> 4119                      14.36
#> 4120                      25.47
#> 4121                       38.1
#> 4122                      17.81
#> 4123                       13.4
#> 4124                      22.52
#> 4125                      35.84
#> 4126                      16.05
#> 4127                      24.02
#> 4128                       38.6
#> 4129                      18.51
#> 4130                      23.13
#> 4131                      51.86
#> 4132                          9
#> 4133                      18.48
#> 4134                      17.89
#> 4135                      25.49
#> 4136                       36.6
#> 4137                       13.6
#> 4138                      22.95
#> 4139                      35.77
#> 4140                      12.58
#> 4141                      21.58
#> 4142                      34.51
#> 4143                      11.34
#> 4144                      21.14
#> 4145                      30.02
#> 4146                      11.41
#> 4147                       21.6
#> 4148                      28.01
#> 4149                      12.81
#> 4150                      23.41
#> 4151                      36.68
#> 4152                      12.47
#> 4153                      22.26
#> 4154                      31.04
#> 4155                      19.05
#> 4156                      14.94
#> 4157                      23.19
#> 4158                      37.32
#> 4159                       11.4
#> 4160                      21.72
#> 4161                      36.99
#> 4162                      13.49
#> 4163                      21.13
#> 4164                      31.35
#> 4165                      15.17
#> 4166                      26.78
#> 4167                      40.49
#> 4168                      12.38
#> 4169                      23.55
#> 4170                      42.04
#> 4171                      17.86
#> 4172                      23.85
#> 4173                      45.72
#> 4174                      16.59
#> 4175                      25.02
#> 4176                      33.99
#> 4177                      15.33
#> 4178                      24.79
#> 4179                      31.78
#> 4180                      16.76
#> 4181                      24.14
#> 4182                      36.77
#> 4183                      13.18
#> 4184                      22.54
#> 4185                      42.99
#> 4186                      17.25
#> 4187                      26.95
#> 4188                      32.92
#> 4189                      16.26
#> 4190                      21.11
#> 4191                      33.66
#> 4192                       11.4
#> 4193                      20.39
#> 4194                      28.81
#> 4195                      13.33
#> 4196                      22.78
#> 4197                      34.03
#> 4198                      12.66
#> 4199                      22.04
#> 4200                      36.16
#> 4201                       17.6
#> 4202                      13.62
#> 4203                      21.75
#> 4204                      33.97
#> 4205                      14.51
#> 4206                      22.97
#> 4207                      35.37
#> 4208                      16.74
#> 4209                      21.17
#> 4210                       38.1
#> 4211                      15.47
#> 4212                      19.87
#> 4213                      34.21
#> 4214                      15.29
#> 4215                      21.73
#> 4216                      27.59
#> 4217                      13.69
#> 4218                       23.9
#> 4219                      30.05
#> 4220                      12.59
#> 4221                      19.79
#> 4222                      36.23
#> 4223                      12.89
#> 4224                      20.85
#> 4225                      36.45
#> 4226                      13.95
#> 4227                      22.87
#> 4228                      32.75
#> 4229                      12.59
#> 4230                      19.42
#> 4231                      34.61
#> 4232                      13.42
#> 4233                      22.92
#> 4234                      32.95
#> 4235                      13.23
#> 4236                      24.04
#> 4237                         33
#> 4238                      18.38
#> 4239                      15.75
#> 4240                      20.71
#> 4241                      38.18
#> 4242                          c
#> 4243                      17.63
#> 4244                      19.93
#> 4245                      45.54
#> 4246                      12.97
#> 4247                       18.6
#> 4248                      40.71
#> 4249                       12.6
#> 4250                      19.11
#> 4251                      34.09
#> 4252                      15.74
#> 4253                      20.11
#> 4254                      32.98
#> 4255                      12.56
#> 4256                      19.07
#> 4257                       37.1
#> 4258                      17.31
#> 4259                      28.69
#> 4260                      44.14
#> 4261                      16.64
#> 4262                      24.41
#> 4263                      35.16
#> 4264                       15.6
#> 4265                      21.47
#> 4266                      33.87
#> 4267                      14.99
#> 4268                      21.33
#> 4269                      37.57
#> 4270                      14.67
#> 4271                      21.32
#> 4272                      35.33
#> 4273                      15.94
#> 4274                      21.68
#> 4275                      31.78
#> 4276                      16.37
#> 4277                      19.18
#> 4278                      38.86
#> 4279                      16.13
#> 4280                      24.42
#> 4281                      37.15
#> 4282                      13.99
#> 4283                       20.1
#> 4284                      37.79
#> 4285                      13.71
#> 4286                      19.42
#> 4287                      39.56
#> 4288                      18.62
#> 4289                      23.23
#> 4290                      37.34
#> 4291                      17.02
#> 4292                      20.97
#> 4293                      34.95
#> 4294                      19.73
#> 4295                      25.28
#> 4296                      40.57
#> 4297                      17.57
#> 4298                      25.55
#> 4299                      28.93
#> 4300                      12.07
#> 4301                      16.64
#> 4302                      38.41
#> 4303                      17.38
#> 4304                      22.68
#> 4305                      35.14
#> 4306                      15.56
#> 4307                      19.91
#> 4308                      35.76
#> 4309                      12.78
#> 4310                      17.88
#> 4311                      41.23
#> 4312                      20.19
#> 4313                      21.69
#> 4314                      54.65
#> 4315                      18.07
#> 4316                      19.02
#> 4317                      51.64
#> 4318                        9.6
#> 4319                      15.95
#> 4320                      29.11
#> 4321                       15.9
#> 4322                      20.33
#> 4323                      38.03
#> 4324                      12.54
#> 4325                       14.7
#> 4326                      37.82
#> 4327                      20.59
#> 4328                      19.13
#> 4329                      40.92
#> 4330                      15.46
#> 4331                      23.81
#> 4332                      44.58
#> 4333                      14.86
#> 4334                       20.2
#> 4335                      45.09
#> 4336                      20.25
#> 4337                       23.8
#> 4338                      35.38
#> 4339                      18.03
#> 4340                      13.76
#> 4341                      22.42
#> 4342                      36.62
#> 4343                         16
#> 4344                       21.7
#> 4345                       33.5
#> 4346                      10.66
#> 4347                      20.16
#> 4348                          c
#> 4349                      12.35
#> 4350                      21.32
#> 4351                      35.77
#> 4352                      17.52
#> 4353                      23.32
#> 4354                      45.43
#> 4355                      17.48
#> 4356                      20.75
#> 4357                      39.14
#> 4358                      13.27
#> 4359                      21.07
#> 4360                      32.67
#> 4361                         11
#> 4362                      17.33
#> 4363                      31.57
#> 4364                      13.87
#> 4365                      22.68
#> 4366                      36.86
#> 4367                      15.25
#> 4368                      29.34
#> 4369                      32.62
#> 4370                      13.42
#> 4371                      25.24
#> 4372                      55.34
#> 4373                      17.16
#> 4374                      27.01
#> 4375                      37.25
#> 4376                      17.13
#> 4377                      28.84
#> 4378                      34.08
#> 4379                       12.9
#> 4380                      20.28
#> 4381                      36.15
#> 4382                         16
#> 4383                      25.57
#> 4384                      38.17
#> 4385                      10.86
#> 4386                      21.73
#> 4387                      33.89
#> 4388                      16.06
#> 4389                      23.51
#> 4390                      39.89
#> 4391                       13.4
#> 4392                      23.53
#> 4393                      32.25
#> 4394                      11.78
#> 4395                      18.65
#> 4396                      32.77
#> 4397                      13.07
#> 4398                      22.96
#> 4399                      35.36
#> 4400                      18.78
#> 4401                      13.17
#> 4402                      24.71
#> 4403                      36.19
#> 4404                      10.84
#> 4405                      21.69
#> 4406                      37.43
#> 4407                      16.57
#> 4408                      31.48
#> 4409                      44.37
#> 4410                       12.3
#> 4411                      23.63
#> 4412                      30.82
#> 4413                      12.99
#> 4414                      23.03
#> 4415                      31.85
#> 4416                      14.01
#> 4417                      27.92
#> 4418                      33.11
#> 4419                      14.78
#> 4420                      23.43
#> 4421                      38.69
#> 4422                      12.66
#> 4423                      25.65
#> 4424                       37.8
#> 4425                      13.64
#> 4426                      25.69
#> 4427                      36.74
#> 4428                          c
#> 4429                      11.56
#> 4430                      22.46
#> 4431                      32.83
#> 4432                      12.19
#> 4433                      22.62
#> 4434                      37.71
#> 4435                      13.81
#> 4436                       23.9
#> 4437                      31.78
#> 4438                       14.4
#> 4439                      25.04
#> 4440                      42.67
#> 4441                      12.19
#> 4442                      26.29
#> 4443                      34.18
#> 4444                      12.59
#> 4445                      21.74
#> 4446                      32.71
#> 4447                      18.15
#> 4448                      14.06
#> 4449                      22.45
#> 4450                      35.51
#> 4451                      18.95
#> 4452                      13.78
#> 4453                      24.64
#> 4454                      32.42
#> 4455                      14.83
#> 4456                      24.76
#> 4457                      31.02
#> 4458                      15.78
#> 4459                      28.21
#> 4460                      31.77
#> 4461                      13.96
#> 4462                      23.96
#> 4463                      39.26
#> 4464                      12.89
#> 4465                      25.86
#> 4466                      30.18
#> 4467                      15.06
#> 4468                      24.83
#> 4469                      21.82
#> 4470                      14.46
#> 4471                      24.81
#> 4472                      32.63
#> 4473                      11.83
#> 4474                      21.97
#> 4475                      37.84
#> 4476                      14.82
#> 4477                      25.16
#> 4478                      37.88
#> 4479                      12.11
#> 4480                      20.88
#> 4481                      29.13
#> 4482                      14.65
#> 4483                      26.68
#> 4484                      23.64
#> 4485                      14.27
#> 4486                      26.77
#> 4487                      34.68
#> 4488                      10.96
#> 4489                      23.79
#> 4490                      26.82
#> 4491                      17.98
#> 4492                      13.74
#> 4493                      22.83
#> 4494                      34.85
#> 4495                      15.49
#> 4496                      26.88
#> 4497                      31.18
#> 4498                       10.3
#> 4499                      20.52
#> 4500                      42.08
#> 4501                      13.81
#> 4502                      22.28
#> 4503                      35.48
#> 4504                      17.98
#> 4505                      30.42
#> 4506                       32.2
#> 4507                      10.57
#> 4508                      21.02
#> 4509                      33.18
#> 4510                      12.42
#> 4511                      23.93
#> 4512                      31.71
#> 4513                      11.92
#> 4514                      23.05
#> 4515                      25.29
#> 4516                      10.28
#> 4517                      21.45
#> 4518                      33.33
#> 4519                      14.32
#> 4520                      22.07
#> 4521                       34.5
#> 4522                       12.3
#> 4523                      22.48
#> 4524                      37.95
#> 4525                      15.78
#> 4526                      20.54
#> 4527                      41.35
#> 4528                      14.79
#> 4529                      21.22
#> 4530                      40.16
#> 4531                      14.38
#> 4532                      24.88
#> 4533                      45.38
#> 4534                      16.04
#> 4535                      25.75
#> 4536                      35.66
#> 4537                      11.86
#> 4538                      22.94
#> 4539                      35.35
#> 4540                      12.67
#> 4541                      23.93
#> 4542                      31.25
#> 4543                      10.34
#> 4544                      14.51
#> 4545                       29.1
#> 4546                      13.04
#> 4547                      21.94
#> 4548                      31.33
#> 4549                      19.97
#> 4550                      31.78
#> 4551                      37.44
#> 4552                      15.62
#> 4553                      25.12
#> 4554                      36.79
#> 4555                      13.54
#> 4556                      23.75
#> 4557                      32.88
#> 4558                      14.52
#> 4559                      26.98
#> 4560                      33.21
#> 4561                      15.88
#> 4562                      24.76
#> 4563                      36.07
#> 4564                      13.28
#> 4565                      22.17
#> 4566                      30.17
#> 4567                      18.75
#> 4568                      14.15
#> 4569                      24.13
#> 4570                      33.95
#> 4571                      15.75
#> 4572                      25.23
#> 4573                      36.42
#> 4574                      11.72
#> 4575                      22.51
#> 4576                      27.68
#> 4577                      13.69
#> 4578                      27.24
#> 4579                      22.44
#> 4580                      13.46
#> 4581                      24.55
#> 4582                      28.57
#> 4583                       11.9
#> 4584                      23.74
#> 4585                      25.32
#> 4586                      11.41
#> 4587                      23.01
#> 4588                      36.83
#> 4589                      13.01
#> 4590                      25.19
#> 4591                      36.17
#> 4592                      14.45
#> 4593                      23.54
#> 4594                      29.97
#> 4595                      14.68
#> 4596                      25.09
#> 4597                      37.47
#> 4598                      15.69
#> 4599                      24.88
#> 4600                      35.01
#> 4601                      16.42
#> 4602                      28.62
#> 4603                      34.22
#> 4604                      13.24
#> 4605                      21.44
#> 4606                      26.25
#> 4607                      13.23
#> 4608                      20.03
#> 4609                      31.02
#> 4610                      14.63
#> 4611                      22.79
#> 4612                      36.04
#> 4613                      14.43
#> 4614                      25.11
#> 4615                      38.45
#> 4616                       17.7
#> 4617                      13.44
#> 4618                      22.23
#> 4619                      35.51
#> 4620                      15.75
#> 4621                      23.33
#> 4622                      37.34
#> 4623                      18.02
#> 4624                      22.59
#> 4625                      50.96
#> 4626                        9.4
#> 4627                       18.4
#> 4628                      17.53
#> 4629                      24.32
#> 4630                      36.65
#> 4631                      13.74
#> 4632                      22.83
#> 4633                      34.58
#> 4634                      12.52
#> 4635                      21.43
#> 4636                      34.91
#> 4637                      11.53
#> 4638                      21.16
#> 4639                       30.1
#> 4640                      11.65
#> 4641                      21.52
#> 4642                      28.04
#> 4643                      13.01
#> 4644                      23.08
#> 4645                      36.33
#> 4646                      12.64
#> 4647                         22
#> 4648                      31.46
#> 4649                      18.74
#> 4650                      14.78
#> 4651                       22.7
#> 4652                      36.78
#> 4653                      11.59
#> 4654                      21.54
#> 4655                      37.46
#> 4656                      13.53
#> 4657                       20.7
#> 4658                      30.95
#> 4659                      14.77
#> 4660                      26.23
#> 4661                      39.93
#> 4662                      12.72
#> 4663                      23.39
#> 4664                      42.41
#> 4665                      17.03
#> 4666                      22.46
#> 4667                      44.42
#> 4668                      16.47
#> 4669                      24.64
#> 4670                       34.2
#> 4671                      15.21
#> 4672                       24.3
#> 4673                      30.89
#> 4674                      16.63
#> 4675                      23.45
#> 4676                      36.27
#> 4677                       13.1
#> 4678                      22.27
#> 4679                      41.91
#> 4680                      17.07
#> 4681                      26.42
#> 4682                      31.43
#> 4683                      16.32
#> 4684                      20.74
#> 4685                      33.95
#> 4686                      11.57
#> 4687                      20.53
#> 4688                      29.26
#> 4689                      13.49
#> 4690                      22.68
#> 4691                      33.72
#> 4692                      12.86
#> 4693                      21.98
#> 4694                      35.84
#> 4695                      17.46
#> 4696                      13.61
#> 4697                      21.47
#> 4698                       33.5
#> 4699                      14.19
#> 4700                       22.3
#> 4701                      33.69
#> 4702                      15.56
#> 4703                      19.39
#> 4704                      34.77
#> 4705                      15.36
#> 4706                      19.58
#> 4707                      33.28
#> 4708                      15.28
#> 4709                      21.31
#> 4710                      27.59
#> 4711                      13.61
#> 4712                      23.44
#> 4713                      28.86
#> 4714                      12.75
#> 4715                      19.63
#> 4716                      34.79
#> 4717                      12.94
#> 4718                      20.66
#> 4719                       36.2
#> 4720                      14.03
#> 4721                       22.7
#> 4722                      32.24
#> 4723                      12.56
#> 4724                       19.2
#> 4725                       34.9
#> 4726                       13.6
#> 4727                       22.8
#> 4728                      33.09
#> 4729                      13.41
#> 4730                      23.95
#> 4731                      32.89
#> 4732                      17.83
#> 4733                      15.39
#> 4734                      19.94
#> 4735                      37.57
#> 4736                          c
#> 4737                      17.03
#> 4738                      19.47
#> 4739                      43.84
#> 4740                       12.8
#> 4741                      18.02
#> 4742                      39.42
#> 4743                       12.7
#> 4744                      19.24
#> 4745                      34.06
#> 4746                      15.25
#> 4747                      18.79
#> 4748                      31.02
#> 4749                       12.7
#> 4750                      18.95
#> 4751                      36.98
#> 4752                       16.4
#> 4753                      26.85
#> 4754                      43.79
#> 4755                      16.33
#> 4756                      23.96
#> 4757                      35.14
#> 4758                      14.89
#> 4759                      20.55
#> 4760                      34.79
#> 4761                      14.92
#> 4762                      21.21
#> 4763                      37.22
#> 4764                      14.54
#> 4765                      20.73
#> 4766                      35.14
#> 4767                      15.64
#> 4768                      20.77
#> 4769                      30.84
#> 4770                      15.72
#> 4771                      18.18
#> 4772                      37.65
#> 4773                       15.9
#> 4774                      23.09
#> 4775                       36.4
#> 4776                      13.74
#> 4777                      18.54
#> 4778                      38.25
#> 4779                      13.54
#> 4780                      19.32
#> 4781                      38.94
#> 4782                      18.13
#> 4783                      22.57
#> 4784                      36.06
#> 4785                       16.5
#> 4786                       19.9
#> 4787                      34.38
#> 4788                      19.05
#> 4789                      24.15
#> 4790                      40.37
#> 4791                      16.86
#> 4792                      23.82
#> 4793                      28.43
#> 4794                      12.05
#> 4795                      16.11
#> 4796                      37.53
#> 4797                      17.27
#> 4798                      21.88
#> 4799                      34.27
#> 4800                      15.53
#> 4801                      19.68
#> 4802                      35.71
#> 4803                      12.74
#> 4804                      17.31
#> 4805                      39.92
#> 4806                      19.22
#> 4807                      20.68
#> 4808                      53.31
#> 4809                      16.77
#> 4810                      17.26
#> 4811                      51.34
#> 4812                       9.76
#> 4813                      15.77
#> 4814                      29.97
#> 4815                      15.62
#> 4816                      19.84
#> 4817                      36.98
#> 4818                      12.44
#> 4819                      14.63
#> 4820                      37.48
#> 4821                      20.64
#> 4822                      18.86
#> 4823                      41.47
#> 4824                      14.85
#> 4825                      22.28
#> 4826                      44.28
#> 4827                       14.4
#> 4828                      19.09
#> 4829                      42.43
#> 4830                      19.01
#> 4831                      21.74
#> 4832                      33.21
#> 4833                      17.89
#> 4834                      13.74
#> 4835                      22.14
#> 4836                      36.48
#> 4837                      16.11
#> 4838                      21.48
#> 4839                       32.9
#> 4840                      10.69
#> 4841                      20.12
#> 4842                          c
#> 4843                      12.53
#> 4844                      21.13
#> 4845                       35.4
#> 4846                      17.08
#> 4847                      22.55
#> 4848                      45.71
#> 4849                      16.55
#> 4850                      19.18
#> 4851                      39.76
#> 4852                      13.14
#> 4853                       20.8
#> 4854                      32.57
#> 4855                      10.62
#> 4856                      17.08
#> 4857                      30.82
#> 4858                      13.68
#> 4859                      22.18
#> 4860                      37.56
#> 4861                      15.06
#> 4862                      29.16
#> 4863                      31.55
#> 4864                      13.51
#> 4865                      25.28
#> 4866                      54.71
#> 4867                       16.7
#> 4868                      26.67
#> 4869                         38
#> 4870                      17.29
#> 4871                      28.78
#> 4872                      33.71
#> 4873                      12.61
#> 4874                      19.53
#> 4875                      35.57
#> 4876                      15.93
#> 4877                      25.63
#> 4878                      38.56
#> 4879                      10.97
#> 4880                      21.77
#> 4881                      33.75
#> 4882                       16.2
#> 4883                      23.31
#> 4884                      39.65
#> 4885                      13.33
#> 4886                      22.83
#> 4887                      32.48
#> 4888                      11.86
#> 4889                       18.4
#> 4890                      32.48
#> 4891                      13.22
#> 4892                       22.8
#> 4893                      35.25
#> 4894                      18.72
#> 4895                      13.21
#> 4896                      24.54
#> 4897                      36.12
#> 4898                      11.08
#> 4899                      21.76
#> 4900                      37.43
#> 4901                      16.23
#> 4902                       30.6
#> 4903                      43.63
#> 4904                       12.2
#> 4905                      23.53
#> 4906                      30.14
#> 4907                      12.91
#> 4908                      22.62
#> 4909                      32.28
#> 4910                      14.08
#> 4911                      27.54
#> 4912                      33.88
#> 4913                      14.95
#> 4914                      23.49
#> 4915                      37.77
#> 4916                      12.72
#> 4917                      25.64
#> 4918                      37.96
#> 4919                      13.76
#> 4920                      25.61
#> 4921                      35.83
#> 4922                          c
#> 4923                      11.61
#> 4924                       22.4
#> 4925                      32.77
#> 4926                      12.34
#> 4927                      22.38
#> 4928                      37.51
#> 4929                      13.76
#> 4930                      23.73
#> 4931                      31.39
#> 4932                      14.37
#> 4933                      24.85
#> 4934                       42.8
#> 4935                      12.21
#> 4936                      26.17
#> 4937                      34.23
#> 4938                      12.81
#> 4939                      21.74
#> 4940                      33.07
#> 4941                      18.39
#> 4942                      14.41
#> 4943                      22.56
#> 4944                      35.64
#> 4945                      19.18
#> 4946                      14.13
#> 4947                      24.72
#> 4948                      32.77
#> 4949                       15.2
#> 4950                      24.98
#> 4951                      32.12
#> 4952                       16.2
#> 4953                      28.48
#> 4954                      32.22
#> 4955                      14.27
#> 4956                      24.23
#> 4957                      38.48
#> 4958                      13.39
#> 4959                      25.99
#> 4960                      29.78
#> 4961                      15.45
#> 4962                      25.23
#> 4963                       22.4
#> 4964                      14.74
#> 4965                      25.06
#> 4966                      34.03
#> 4967                       12.4
#> 4968                      22.03
#> 4969                      37.33
#> 4970                      15.03
#> 4971                      24.74
#> 4972                      38.21
#> 4973                      12.45
#> 4974                      21.03
#> 4975                      29.39
#> 4976                      14.92
#> 4977                      26.67
#> 4978                      23.59
#> 4979                      14.64
#> 4980                      26.85
#> 4981                      35.11
#> 4982                       11.1
#> 4983                      23.69
#> 4984                      27.49
#> 4985                      18.28
#> 4986                      14.13
#> 4987                         23
#> 4988                      35.06
#> 4989                      15.59
#> 4990                      26.93
#> 4991                      32.18
#> 4992                      10.65
#> 4993                      20.68
#> 4994                      40.95
#> 4995                      14.17
#> 4996                      22.14
#> 4997                      35.08
#> 4998                      18.44
#> 4999                      30.35
#> 5000                       31.5
#> 5001                      10.99
#> 5002                      21.27
#> 5003                      33.38
#> 5004                      12.86
#> 5005                      23.98
#> 5006                       32.6
#> 5007                      12.37
#> 5008                      22.94
#> 5009                      25.29
#> 5010                      10.82
#> 5011                      21.82
#> 5012                      36.74
#> 5013                      14.74
#> 5014                      22.01
#> 5015                      34.69
#> 5016                      12.74
#> 5017                      22.86
#> 5018                      38.21
#> 5019                      16.18
#> 5020                      20.73
#> 5021                      41.79
#> 5022                      15.27
#> 5023                      21.64
#> 5024                      40.27
#> 5025                      14.66
#> 5026                      25.28
#> 5027                      46.22
#> 5028                      16.47
#> 5029                      25.83
#> 5030                      36.02
#> 5031                      12.21
#> 5032                      22.44
#> 5033                      36.32
#> 5034                      13.17
#> 5035                      24.02
#> 5036                      31.04
#> 5037                      10.76
#> 5038                      14.59
#> 5039                      28.21
#> 5040                      13.32
#> 5041                      21.91
#> 5042                      32.12
#> 5043                      20.45
#> 5044                      32.35
#> 5045                      37.27
#> 5046                      16.09
#> 5047                      25.27
#> 5048                       37.3
#> 5049                      13.51
#> 5050                      23.99
#> 5051                       32.2
#> 5052                      14.87
#> 5053                      27.18
#> 5054                      32.87
#> 5055                      16.16
#> 5056                      25.22
#> 5057                      36.23
#> 5058                      13.76
#> 5059                      22.57
#> 5060                      30.24
#> 5061                      18.99
#> 5062                      14.52
#> 5063                      24.21
#> 5064                      33.97
#> 5065                      16.06
#> 5066                      25.36
#> 5067                      36.34
#> 5068                       12.1
#> 5069                      22.71
#> 5070                      26.79
#> 5071                      13.84
#> 5072                      27.18
#> 5073                      20.51
#> 5074                      13.81
#> 5075                      24.81
#> 5076                      27.08
#> 5077                      12.15
#> 5078                      23.77
#> 5079                       26.3
#> 5080                      11.72
#> 5081                      23.11
#> 5082                      36.86
#> 5083                      13.56
#> 5084                      25.25
#> 5085                      35.04
#> 5086                      14.85
#> 5087                      23.67
#> 5088                      30.61
#> 5089                      15.17
#> 5090                      25.11
#> 5091                      38.71
#> 5092                      15.96
#> 5093                      24.75
#> 5094                      35.65
#> 5095                      16.74
#> 5096                      28.72
#> 5097                      34.78
#> 5098                      13.62
#> 5099                      21.24
#> 5100                      25.48
#> 5101                      13.71
#> 5102                      20.15
#> 5103                      30.93
#> 5104                      14.97
#> 5105                      22.93
#> 5106                      35.27
#> 5107                      15.03
#> 5108                       25.3
#> 5109                       38.1
#> 5110                      18.01
#> 5111                      13.84
#> 5112                      22.44
#> 5113                       35.8
#> 5114                      16.25
#> 5115                      23.54
#> 5116                       38.1
#> 5117                      18.36
#> 5118                      22.68
#> 5119                      51.23
#> 5120                       9.92
#> 5121                      18.67
#> 5122                      18.04
#> 5123                      24.62
#> 5124                      36.76
#> 5125                      14.16
#> 5126                      22.91
#> 5127                      35.43
#> 5128                      12.81
#> 5129                      21.56
#> 5130                      34.91
#> 5131                      11.92
#> 5132                      21.53
#> 5133                      29.61
#> 5134                      12.06
#> 5135                      21.77
#> 5136                      28.76
#> 5137                      13.31
#> 5138                      23.35
#> 5139                       36.4
#> 5140                      13.13
#> 5141                      22.11
#> 5142                      31.92
#> 5143                      18.97
#> 5144                      15.16
#> 5145                      22.78
#> 5146                      36.62
#> 5147                      12.12
#> 5148                      21.66
#> 5149                      37.57
#> 5150                       13.7
#> 5151                      20.61
#> 5152                      31.94
#> 5153                      15.37
#> 5154                       26.5
#> 5155                       40.8
#> 5156                      13.24
#> 5157                      23.27
#> 5158                      41.98
#> 5159                      17.42
#> 5160                      22.47
#> 5161                      44.34
#> 5162                      16.71
#> 5163                      24.43
#> 5164                       34.2
#> 5165                      15.45
#> 5166                       24.4
#> 5167                      31.29
#> 5168                      17.18
#> 5169                      23.68
#> 5170                      36.19
#> 5171                      13.42
#> 5172                      22.47
#> 5173                      41.89
#> 5174                      17.45
#> 5175                      26.24
#> 5176                       32.4
#> 5177                      16.77
#> 5178                      21.05
#> 5179                      27.75
#> 5180                      11.97
#> 5181                      20.71
#> 5182                      29.34
#> 5183                       13.9
#> 5184                      22.75
#> 5185                      34.21
#> 5186                      13.13
#> 5187                      22.09
#> 5188                       35.9
#> 5189                      17.67
#> 5190                       13.9
#> 5191                      21.57
#> 5192                      33.91
#> 5193                      14.55
#> 5194                      22.55
#> 5195                      33.69
#> 5196                      15.74
#> 5197                      19.42
#> 5198                      36.54
#> 5199                      15.68
#> 5200                      19.49
#> 5201                      33.77
#> 5202                      15.55
#> 5203                      21.53
#> 5204                      27.59
#> 5205                      13.91
#> 5206                      23.46
#> 5207                      29.19
#> 5208                      13.08
#> 5209                      19.88
#> 5210                      39.64
#> 5211                      13.16
#> 5212                      20.78
#> 5213                      36.29
#> 5214                      14.41
#> 5215                      22.73
#> 5216                      32.07
#> 5217                      12.74
#> 5218                      19.32
#> 5219                      34.72
#> 5220                      13.93
#> 5221                      22.97
#> 5222                      33.99
#> 5223                      13.74
#> 5224                      23.92
#> 5225                      33.59
#> 5226                      18.06
#> 5227                       15.8
#> 5228                      19.98
#> 5229                      37.37
#> 5230                          c
#> 5231                      17.51
#> 5232                       19.4
#> 5233                      44.59
#> 5234                      13.14
#> 5235                      17.98
#> 5236                       38.9
#> 5237                      13.33
#> 5238                       19.5
#> 5239                      33.37
#> 5240                      15.74
#> 5241                      18.98
#> 5242                      32.11
#> 5243                      13.05
#> 5244                      19.19
#> 5245                      37.48
#> 5246                      16.92
#> 5247                       26.4
#> 5248                      43.79
#> 5249                      16.71
#> 5250                      24.05
#> 5251                      35.83
#> 5252                      15.31
#> 5253                      20.62
#> 5254                      35.63
#> 5255                         15
#> 5256                       21.5
#> 5257                      36.62
#> 5258                      14.78
#> 5259                      20.64
#> 5260                      35.92
#> 5261                      16.01
#> 5262                      20.72
#> 5263                      31.62
#> 5264                      16.23
#> 5265                      18.32
#> 5266                      37.31
#> 5267                      16.25
#> 5268                      22.45
#> 5269                      35.51
#> 5270                      14.32
#> 5271                      19.01
#> 5272                      38.02
#> 5273                      13.87
#> 5274                      19.48
#> 5275                      39.81
#> 5276                      18.75
#> 5277                      22.59
#> 5278                       35.8
#> 5279                      16.99
#> 5280                      20.11
#> 5281                      34.79
#> 5282                      19.16
#> 5283                      23.86
#> 5284                      39.22
#> 5285                      17.31
#> 5286                      23.29
#> 5287                      27.92
#> 5288                      12.38
#> 5289                      16.28
#> 5290                      36.64
#> 5291                      17.73
#> 5292                      21.82
#> 5293                      34.38
#> 5294                      15.92
#> 5295                      19.74
#> 5296                      35.96
#> 5297                      13.16
#> 5298                      17.51
#> 5299                      41.33
#> 5300                      19.73
#> 5301                      20.55
#> 5302                      54.12
#> 5303                      17.37
#> 5304                      17.36
#> 5305                      41.39
#> 5306                      10.23
#> 5307                      15.78
#> 5308                      30.14
#> 5309                      15.89
#> 5310                      19.96
#> 5311                      37.58
#> 5312                       12.9
#> 5313                       14.8
#> 5314                      36.96
#> 5315                      21.09
#> 5316                      19.09
#> 5317                      41.35
#> 5318                      15.05
#> 5319                      22.44
#> 5320                      44.18
#> 5321                      14.95
#> 5322                      18.86
#> 5323                      42.14
#> 5324                      19.29
#> 5325                      21.48
#> 5326                      35.38
#> 5327                      18.12
#> 5328                      14.04
#> 5329                      22.29
#> 5330                      36.79
#> 5331                      16.15
#> 5332                      21.59
#> 5333                      33.27
#> 5334                      11.41
#> 5335                       20.3
#> 5336                          c
#> 5337                      12.69
#> 5338                       21.2
#> 5339                      32.67
#> 5340                      17.72
#> 5341                      22.53
#> 5342                      44.32
#> 5343                      17.18
#> 5344                      19.73
#> 5345                      39.01
#> 5346                      13.63
#> 5347                      20.94
#> 5348                      32.84
#> 5349                      10.89
#> 5350                       17.5
#> 5351                      32.52
#> 5352                      13.91
#> 5353                      22.15
#> 5354                      38.11
#> 5355                      15.39
#> 5356                      29.24
#> 5357                      30.48
#> 5358                      13.86
#> 5359                      25.34
#> 5360                      54.42
#> 5361                      17.07
#> 5362                      26.84
#> 5363                      38.46
#> 5364                      17.46
#> 5365                      29.31
#> 5366                      35.23
#> 5367                      13.05
#> 5368                      19.86
#> 5369                       35.6
#> 5370                      16.11
#> 5371                      25.47
#> 5372                      38.61
#> 5373                      11.26
#> 5374                      21.75
#> 5375                      34.19
#> 5376                      16.55
#> 5377                      23.57
#> 5378                      40.21
#> 5379                      13.53
#> 5380                      23.21
#> 5381                      32.53
#> 5382                      12.19
#> 5383                      18.49
#> 5384                      33.25
#> 5385                      13.37
#> 5386                      22.88
#> 5387                      35.54
#> 5388                       18.9
#> 5389                      13.49
#> 5390                       24.6
#> 5391                      36.16
#> 5392                      11.31
#> 5393                      22.04
#> 5394                      35.05
#> 5395                      16.43
#> 5396                       30.6
#> 5397                      42.49
#> 5398                      12.38
#> 5399                      23.43
#> 5400                      31.05
#> 5401                      13.32
#> 5402                       22.8
#> 5403                      32.45
#> 5404                      14.31
#> 5405                      27.82
#> 5406                      33.74
#> 5407                      15.25
#> 5408                      23.58
#> 5409                      38.92
#> 5410                      13.15
#> 5411                      25.49
#> 5412                      38.42
#> 5413                      14.07
#> 5414                      25.58
#> 5415                      36.04
#> 5416                          c
#> 5417                      11.79
#> 5418                      22.48
#> 5419                      33.27
#> 5420                      12.79
#> 5421                      22.47
#> 5422                      37.79
#> 5423                      14.29
#> 5424                      23.92
#> 5425                      31.52
#> 5426                      14.58
#> 5427                      24.96
#> 5428                      43.19
#> 5429                      12.45
#> 5430                      26.12
#> 5431                      34.11
#> 5432                      13.09
#> 5433                       21.9
#> 5434                       33.6
#> 5435                      18.82
#> 5436                      14.95
#> 5437                      22.84
#> 5438                      36.02
#> 5439                      19.24
#> 5440                      14.24
#> 5441                      24.74
#> 5442                      32.57
#> 5443                       15.3
#> 5444                      24.96
#> 5445                      27.34
#> 5446                      16.33
#> 5447                      28.26
#> 5448                      32.42
#> 5449                      14.61
#> 5450                      24.33
#> 5451                         39
#> 5452                      13.46
#> 5453                      26.38
#> 5454                      29.45
#> 5455                      15.38
#> 5456                      25.32
#> 5457                      22.51
#> 5458                      14.89
#> 5459                      24.98
#> 5460                       33.6
#> 5461                       12.4
#> 5462                      21.96
#> 5463                       36.5
#> 5464                      15.18
#> 5465                      24.92
#> 5466                      38.61
#> 5467                      12.56
#> 5468                      20.95
#> 5469                      29.84
#> 5470                      15.05
#> 5471                      26.58
#> 5472                       22.8
#> 5473                      14.82
#> 5474                      26.96
#> 5475                      35.57
#> 5476                      11.03
#> 5477                      23.64
#> 5478                       27.6
#> 5479                      18.71
#> 5480                       14.7
#> 5481                      23.25
#> 5482                      35.65
#> 5483                      16.06
#> 5484                      27.16
#> 5485                      32.71
#> 5486                       11.3
#> 5487                       20.9
#> 5488                      42.01
#> 5489                      14.49
#> 5490                      22.11
#> 5491                      36.12
#> 5492                      19.06
#> 5493                      30.76
#> 5494                      31.08
#> 5495                       11.3
#> 5496                      21.75
#> 5497                      34.05
#> 5498                      13.33
#> 5499                      24.12
#> 5500                      33.33
#> 5501                       12.8
#> 5502                      23.33
#> 5503                      25.65
#> 5504                      11.47
#> 5505                      22.12
#> 5506                      36.74
#> 5507                      15.19
#> 5508                      22.39
#> 5509                       35.4
#> 5510                      13.24
#> 5511                      23.11
#> 5512                      40.12
#> 5513                      16.74
#> 5514                      20.79
#> 5515                      41.96
#> 5516                      15.83
#> 5517                      21.93
#> 5518                      40.89
#> 5519                      15.37
#> 5520                       25.4
#> 5521                       48.1
#> 5522                      16.87
#> 5523                      26.05
#> 5524                      36.76
#> 5525                       12.7
#> 5526                      22.85
#> 5527                      36.72
#> 5528                      13.77
#> 5529                      24.29
#> 5530                      31.48
#> 5531                      11.36
#> 5532                      15.01
#> 5533                      29.32
#> 5534                      14.04
#> 5535                       21.9
#> 5536                      33.11
#> 5537                      21.14
#> 5538                      32.76
#> 5539                      36.99
#> 5540                      16.66
#> 5541                      25.58
#> 5542                      38.25
#> 5543                       14.5
#> 5544                      24.22
#> 5545                      31.59
#> 5546                      15.71
#> 5547                      27.63
#> 5548                      34.13
#> 5549                      16.84
#> 5550                      25.21
#> 5551                       36.4
#> 5552                      14.29
#> 5553                      22.84
#> 5554                       30.7
#> 5555                      19.41
#> 5556                      15.08
#> 5557                      24.43
#> 5558                      34.66
#> 5559                      16.65
#> 5560                      25.67
#> 5561                      36.93
#> 5562                      12.91
#> 5563                      23.23
#> 5564                      27.38
#> 5565                      14.45
#> 5566                      27.29
#> 5567                      20.51
#> 5568                      14.43
#> 5569                      25.29
#> 5570                      28.96
#> 5571                       12.7
#> 5572                      23.82
#> 5573                       27.6
#> 5574                      12.27
#> 5575                      23.41
#> 5576                      38.07
#> 5577                      14.34
#> 5578                       25.7
#> 5579                       36.1
#> 5580                      15.44
#> 5581                      23.95
#> 5582                      32.23
#> 5583                      15.75
#> 5584                      25.55
#> 5585                      39.54
#> 5586                      16.59
#> 5587                      25.05
#> 5588                      35.95
#> 5589                      17.05
#> 5590                      28.62
#> 5591                      35.14
#> 5592                      14.37
#> 5593                      21.56
#> 5594                      25.29
#> 5595                      14.31
#> 5596                      20.25
#> 5597                      30.95
#> 5598                      15.39
#> 5599                      22.98
#> 5600                      36.02
#> 5601                      15.64
#> 5602                      25.64
#> 5603                      39.05
#> 5604                      18.42
#> 5605                       14.4
#> 5606                      22.66
#> 5607                         36
#> 5608                      16.97
#> 5609                      24.04
#> 5610                      37.77
#> 5611                      18.38
#> 5612                      22.54
#> 5613                      50.79
#> 5614                       9.88
#> 5615                      19.05
#> 5616                       18.7
#> 5617                      25.01
#> 5618                      36.87
#> 5619                      14.75
#> 5620                      23.04
#> 5621                      36.62
#> 5622                      13.36
#> 5623                      21.66
#> 5624                      35.57
#> 5625                      12.53
#> 5626                      21.41
#> 5627                      29.78
#> 5628                      12.76
#> 5629                      22.14
#> 5630                      29.03
#> 5631                      13.85
#> 5632                      23.66
#> 5633                      36.95
#> 5634                      13.74
#> 5635                       22.5
#> 5636                      31.36
#> 5637                      19.47
#> 5638                      15.79
#> 5639                      23.13
#> 5640                      37.15
#> 5641                      12.24
#> 5642                      22.09
#> 5643                      37.61
#> 5644                      14.07
#> 5645                      20.79
#> 5646                      30.65
#> 5647                      15.95
#> 5648                      26.57
#> 5649                      41.94
#> 5650                      13.73
#> 5651                      23.84
#> 5652                      41.51
#> 5653                      18.08
#> 5654                      22.68
#> 5655                      44.51
#> 5656                      17.28
#> 5657                      24.74
#> 5658                      34.75
#> 5659                      16.32
#> 5660                       25.2
#> 5661                      31.18
#> 5662                      17.68
#> 5663                      24.05
#> 5664                      36.61
#> 5665                      14.15
#> 5666                      22.91
#> 5667                      43.57
#> 5668                      17.97
#> 5669                      26.44
#> 5670                      33.58
#> 5671                      17.26
#> 5672                      21.43
#> 5673                      32.28
#> 5674                      12.84
#> 5675                      21.25
#> 5676                      29.45
#> 5677                      14.43
#> 5678                      22.99
#> 5679                      34.92
#> 5680                      13.82
#> 5681                       22.5
#> 5682                      36.43
#> 5683                       18.1
#> 5684                      14.39
#> 5685                      21.93
#> 5686                      34.22
#> 5687                      15.18
#> 5688                      22.93
#> 5689                      33.84
#> 5690                       16.1
#> 5691                      19.29
#> 5692                      36.88
#> 5693                      16.13
#> 5694                      19.94
#> 5695                      34.16
#> 5696                      16.17
#> 5697                      21.78
#> 5698                      28.04
#> 5699                      14.31
#> 5700                      23.81
#> 5701                      28.02
#> 5702                      13.54
#> 5703                      20.31
#> 5704                      39.52
#> 5705                      13.52
#> 5706                      21.07
#> 5707                      36.47
#> 5708                      14.86
#> 5709                      23.13
#> 5710                      32.28
#> 5711                      13.22
#> 5712                      19.56
#> 5713                      35.04
#> 5714                      14.59
#> 5715                      23.68
#> 5716                      34.62
#> 5717                      14.22
#> 5718                      24.25
#> 5719                      34.23
#> 5720                      18.49
#> 5721                      16.36
#> 5722                      20.26
#> 5723                      37.67
#> 5724                          c
#> 5725                      17.91
#> 5726                      19.75
#> 5727                      44.47
#> 5728                      13.92
#> 5729                      18.24
#> 5730                      39.67
#> 5731                      13.96
#> 5732                       19.8
#> 5733                      34.02
#> 5734                      16.29
#> 5735                      19.09
#> 5736                      32.33
#> 5737                      13.57
#> 5738                      19.64
#> 5739                      38.34
#> 5740                      17.57
#> 5741                      26.61
#> 5742                      44.14
#> 5743                      17.13
#> 5744                      24.14
#> 5745                      35.51
#> 5746                      15.84
#> 5747                      20.98
#> 5748                      36.82
#> 5749                      15.57
#> 5750                      21.93
#> 5751                      37.06
#> 5752                      15.42
#> 5753                      21.02
#> 5754                      35.42
#> 5755                      16.78
#> 5756                      20.99
#> 5757                      33.72
#> 5758                      16.96
#> 5759                      18.45
#> 5760                      38.47
#> 5761                      16.55
#> 5762                      22.69
#> 5763                      34.83
#> 5764                      14.94
#> 5765                      19.31
#> 5766                      39.95
#> 5767                      14.38
#> 5768                      19.93
#> 5769                      39.94
#> 5770                       19.3
#> 5771                      22.67
#> 5772                      36.33
#> 5773                      17.71
#> 5774                      20.53
#> 5775                      35.44
#> 5776                      19.82
#> 5777                      23.87
#> 5778                      40.41
#> 5779                      17.87
#> 5780                      24.88
#> 5781                      28.35
#> 5782                       13.1
#> 5783                      16.53
#> 5784                      37.75
#> 5785                      18.36
#> 5786                      21.98
#> 5787                       34.4
#> 5788                      16.45
#> 5789                      20.91
#> 5790                      35.48
#> 5791                      13.71
#> 5792                      17.69
#> 5793                      40.69
#> 5794                      20.32
#> 5795                      20.58
#> 5796                       55.2
#> 5797                      18.03
#> 5798                      17.73
#> 5799                      42.83
#> 5800                      10.82
#> 5801                       15.8
#> 5802                      29.74
#> 5803                      16.44
#> 5804                      20.21
#> 5805                      37.02
#> 5806                      13.58
#> 5807                      15.18
#> 5808                       37.2
#> 5809                      21.51
#> 5810                      19.35
#> 5811                      41.16
#> 5812                      15.33
#> 5813                      22.24
#> 5814                      44.55
#> 5815                      15.56
#> 5816                      19.13
#> 5817                      41.75
#> 5818                      19.72
#> 5819                      21.71
#> 5820                      34.06
#> 5821                      18.56
#> 5822                       14.6
#> 5823                      22.59
#> 5824                       37.2
#> 5825                      16.64
#> 5826                       21.9
#> 5827                      34.08
#> 5828                      11.99
#> 5829                       20.4
#> 5830                          c
#> 5831                      13.22
#> 5832                      21.37
#> 5833                      32.96
#> 5834                      18.49
#> 5835                      22.83
#> 5836                      43.89
#> 5837                      17.93
#> 5838                      19.89
#> 5839                      40.31
#> 5840                      13.99
#> 5841                      21.02
#> 5842                       32.2
#> 5843                      11.45
#> 5844                      17.51
#> 5845                      32.79
#> 5846                      14.33
#> 5847                      22.24
#> 5848                       38.2
#> 5849                      15.96
#> 5850                      29.12
#> 5851                      31.55
#> 5852                      14.58
#> 5853                      25.25
#> 5854                       54.2
#> 5855                      17.76
#> 5856                      27.13
#> 5857                      37.58
#> 5858                      18.16
#> 5859                      29.48
#> 5860                      36.29
#> 5861                      13.69
#> 5862                      20.13
#> 5863                      36.31
#> 5864                      16.65
#> 5865                      26.03
#> 5866                      39.32
#> 5867                      11.77
#> 5868                      22.11
#> 5869                      35.01
#> 5870                      17.13
#> 5871                      23.96
#> 5872                      40.44
#> 5873                      13.97
#> 5874                      23.47
#> 5875                      32.96
#> 5876                       12.7
#> 5877                      18.77
#> 5878                      33.77
#> 5879                         14
#> 5880                      23.38
#> 5881                      35.87
#> 5882                      19.39
#> 5883                      14.07
#> 5884                      24.99
#> 5885                      36.41
#> 5886                      11.88
#> 5887                      22.43
#> 5888                      35.98
#> 5889                      17.03
#> 5890                      30.98
#> 5891                      43.15
#> 5892                      13.12
#> 5893                      23.99
#> 5894                      31.51
#> 5895                       13.7
#> 5896                      23.54
#> 5897                      33.06
#> 5898                      15.07
#> 5899                      28.19
#> 5900                      35.35
#> 5901                      15.65
#> 5902                       23.8
#> 5903                      38.57
#> 5904                      13.81
#> 5905                      25.97
#> 5906                      38.75
#> 5907                      14.73
#> 5908                      25.97
#> 5909                       35.7
#> 5910                          c
#> 5911                      12.29
#> 5912                      22.84
#> 5913                      32.83
#> 5914                      13.38
#> 5915                      22.54
#> 5916                      37.69
#> 5917                      14.81
#> 5918                      24.33
#> 5919                      31.65
#> 5920                      15.21
#> 5921                      25.27
#> 5922                      43.29
#> 5923                      13.05
#> 5924                      26.52
#> 5925                      34.69
#> 5926                      13.61
#> 5927                      22.32
#> 5928                      33.36