<!--SIF Implementation Specification UK 1.1-4 (September 18, 2009)-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://www.sifinfo.org/uk/infrastructure/2.x" xmlns:sif="http://www.sifinfo.org/uk/infrastructure/2.x" elementFormDefault="qualified">
  <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="imports/xml/xml.xsd" />

  <!--Infrastructure Common Elements-->


  <!--SIF_Message-->

  <xs:complexType name="SIF_MessageType">
    <xs:annotation>
      <xs:documentation>Contains one of the SIF message types.</xs:documentation>
    </xs:annotation>
    <xs:choice>
      <xs:element ref="sif:SIF_Ack" />
      <xs:element ref="sif:SIF_Event" />
      <xs:element ref="sif:SIF_Provide" />
      <xs:element ref="sif:SIF_Provision" />
      <xs:element ref="sif:SIF_Register" />
      <xs:element ref="sif:SIF_Request" />
      <xs:element ref="sif:SIF_Response" />
      <xs:element ref="sif:SIF_Subscribe" />
      <xs:element ref="sif:SIF_SystemControl" />
      <xs:element ref="sif:SIF_Unprovide" />
      <xs:element ref="sif:SIF_Unregister" />
      <xs:element ref="sif:SIF_Unsubscribe" />
    </xs:choice>
    <!--<xs:attribute name="xmlns" use="optional" type="xs:anyURI">
  <xs:annotation>
    <xs:documentation>
              The xmlns attribute specifies the XML namespace for SIF messages.
              For this version of the specification, the value of this attribute MUST be http://www.sifinfo.org/uk/infrastructure/2.x. This XML namespace value will remain the same until the next major release of SIF (3.0).
            </xs:documentation>
  </xs:annotation>
</xs:attribute>-->
    <xs:attribute name="Version" use="required" type="sif:VersionType">
      <xs:annotation>
        <xs:documentation>
              The version of the SIF Implementation Specification that defines this message's XML structure.
              For this version of the specification, the value of this attribute is 2.1.
              This attribute can be used by ZIS and agent implementations to choose schema files to
              validate the message's XML.
            </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_Message" type="sif:SIF_MessageType" />


  <!--SIF_Header-->

  <xs:complexType name="SIF_HeaderType">
    <xs:annotation>
      <xs:documentation>Header information associated with a message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_MsgId" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>SIF_MsgId is a globally unique message identifier from the Agent or ZIS that sends out the message.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Timestamp" type="xs:dateTime">
        <xs:annotation>
          <xs:documentation>Timestamp of when the message was sent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Security" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SecureChannel">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_AuthenticationLevel" />
                  <xs:element ref="sif:SIF_EncryptionLevel" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SourceId">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:annotation>
              <xs:documentation>The SIF_SourceId is the ID of the originator of the message. Each source needs to have a zone unique case-sensitive identifier.</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_DestinationId" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:annotation>
              <xs:documentation>This element represents the ID of the recipient of the message and may be present as follows:</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Header" type="sif:SIF_HeaderType" />


  <!--SIF_EncryptionLevel-->

  <xs:simpleType name="SIF_EncryptionLevelType">
    <xs:restriction base="xs:unsignedInt">
      <xs:annotation>
        <xs:documentation>The minimum level of encryption required by the message originator to be considered a secure channel upon message delivery to other agents.</xs:documentation>
      </xs:annotation>
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>No encryption required</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 40 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 56 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 80 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Symmetric key length of at least 128 bits is to be used</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_EncryptionLevel" type="sif:SIF_EncryptionLevelType" />


  <!--SIF_AuthenticationLevel-->

  <xs:simpleType name="SIF_AuthenticationLevelType">
    <xs:restriction base="xs:unsignedInt">
      <xs:annotation>
        <xs:documentation>The minimum level of authentication required by the message originator to be considered a secure channel upon message delivery to other agents.</xs:documentation>
      </xs:annotation>
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>No authentication required and a valid certificate does not need to be presented.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>A valid certificate must be presented.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>
                A valid certificate from a trusted certificate
                authority must be presented.
              </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>
                A valid certificate from a trusted certificate
                authority must be presented and the CN field of the certificate's
                Subject entry must match the host sending the certificate.
              </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_AuthenticationLevel" type="sif:SIF_AuthenticationLevelType" />


  <!--SIF_Contexts-->

  <xs:complexType name="SIF_ContextsType">
    <xs:annotation>
      <xs:documentation>
              A list of SIF contexts that applies to a message or operation.  Typically where used as an optional element,
              the omission of this element implies the SIF_Default context applies.
            </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Context" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Contexts" type="sif:SIF_ContextsType" />


  <!--SIF_Context-->

  <xs:simpleType name="SIF_ContextType">
    <xs:restriction>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:annotation>
            <xs:documentation>The name of a SIF Context that applies to a message or operation.</xs:documentation>
          </xs:annotation>
          <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
        </xs:restriction>
      </xs:simpleType>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SIF_Context" type="sif:SIF_ContextType" />


  <!--SIF_Protocol-->

  <xs:complexType name="SIF_ProtocolType">
    <xs:annotation>
      <xs:documentation>Contains protocol information regarding a ZIS or Agent.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_URL" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:anyURI">
            <xs:annotation>
              <xs:documentation>This element is required if the protocol is HTTPS or HTTP. 
            It contains the https or http URL for contacting the agent.</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Property" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Name">
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:annotation>
                    <xs:documentation>
              Property name.
            </xs:documentation>
                  </xs:annotation>
                  <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="SIF_Value">
              <xs:simpleType>
                <xs:restriction base="xs:string">
                  <xs:annotation>
                    <xs:documentation>
              Property value.
            </xs:documentation>
                  </xs:annotation>
                  <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>The type of protocol to use (HTTPS, HTTP or an implementation-defined protocol).</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:union>
          <xs:simpleType>
            <xs:restriction base="sif:DefinedProtocolsType" />
          </xs:simpleType>
          <xs:simpleType>
            <xs:restriction base="xs:token" />
          </xs:simpleType>
        </xs:union>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Secure" use="required">
      <xs:annotation>
        <xs:documentation>Whether the protocol provides a secure channel.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Yes" />
          <xs:enumeration value="No" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_Protocol" type="sif:SIF_ProtocolType" />


  <!--SIF_Status-->

  <xs:complexType name="SIF_StatusType">
    <xs:annotation>
      <xs:documentation>This element is used to signal a successful response.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Code" type="sif:InfrastructureStatusCodeType" />
      <xs:element name="SIF_Desc" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:annotation>
              <xs:documentation>
              An optional textual description/equivalent of SIF_Code.
            </xs:documentation>
            </xs:annotation>
            <xs:maxLength value="1024" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Data" minOccurs="0">
        <xs:annotation>
          <xs:documentation>
              Optional element to hold data related to a successful operation.  This data is currently limited
              to a SIF_Message returned by the ZIS in response to a Pull-Mode Agent's SIF_GetMessage,
              SIF_AgentACL returned by the ZIS in response to SIF_Register and SIF_GetAgentACL,
              and SIF_ZoneStatus returned by the ZIS in response to SIF_GetZoneStatus.
            </xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:choice>
            <xs:element ref="sif:SIF_Message" />
            <xs:element name="SIF_AgentACL" type="sif:SIF_AgentACLInfrastructureType" />
            <xs:element name="SIF_ZoneStatus" type="sif:SIF_ZoneStatusInfrastructureType" />
          </xs:choice>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Status" type="sif:SIF_StatusType" />


  <!--SIF_Error-->

  <xs:complexType name="SIF_ErrorType">
    <xs:annotation>
      <xs:documentation>This element is used to signal an unsuccessful response.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Category" type="sif:InfrastructureErrorCategoryType" />
      <xs:element name="SIF_Code">
        <xs:annotation>
          <xs:documentation>
              See Error Codes.
            </xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureXMLValidationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEncryptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAuthenticationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureAccessAndPermissionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRegistrationErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureProvisionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSubscriptionErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureRequestAndResponseErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureEventReportingAndProcessingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureTransportErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureSystemErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:InfrastructureGenericMessageHandlingErrorType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="xs:token" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Desc">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:annotation>
              <xs:documentation>A simple, easy to understand, description of the error. The primary consumer of this message is the application user. Example: "Unable to open database."</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="1024" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_ExtendedDesc" minOccurs="0" type="xs:string">
        <xs:annotation>
          <xs:documentation>An optional error description that is more complete and technical in nature. It is to be used as a diagnostic message in trouble-shooting procedures. Example: "The 'Students' table is opened in exclusive mode by user 'ADM1' (dbm.cpp, line 300)."</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Error" type="sif:SIF_ErrorType" />


  <!--SIF_Query-->

  <xs:complexType name="SIF_QueryType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_QueryObject">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" minOccurs="0" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Individual elements/attributes being requested of matching object.  See SIF_Element Syntax below. 
						If specified, only the elements/attributes requested are returned in the SIF_Response (with any parent elements/attributes); 
						otherwise, all elements supported by the provider's object are returned.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being queried for.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:choice minOccurs="0">
        <xs:element name="SIF_ConditionGroup">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="SIF_Conditions" maxOccurs="unbounded">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element name="SIF_Condition" maxOccurs="unbounded">
                      <xs:complexType>
                        <xs:sequence>
                          <xs:element name="SIF_Element" type="xs:normalizedString">
                            <xs:annotation>
                              <xs:documentation>This is the element/attribute being queried.  See below for syntax.</xs:documentation>
                            </xs:annotation>
                          </xs:element>
                          <xs:element name="SIF_Operator">
                            <xs:annotation>
                              <xs:documentation>The comparison operator for the condition.</xs:documentation>
                            </xs:annotation>
                            <xs:simpleType>
                              <xs:restriction base="xs:token">
                                <xs:enumeration value="EQ">
                                  <xs:annotation>
                                    <xs:documentation>Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="LT">
                                  <xs:annotation>
                                    <xs:documentation>Less Than</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="GT">
                                  <xs:annotation>
                                    <xs:documentation>Greater Than</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="LE">
                                  <xs:annotation>
                                    <xs:documentation>Less Than Or Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="GE">
                                  <xs:annotation>
                                    <xs:documentation>Greater Than Or Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                                <xs:enumeration value="NE">
                                  <xs:annotation>
                                    <xs:documentation>Not Equals</xs:documentation>
                                  </xs:annotation>
                                </xs:enumeration>
                              </xs:restriction>
                            </xs:simpleType>
                          </xs:element>
                          <xs:element name="SIF_Value" type="xs:string">
                            <xs:annotation>
                              <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                            </xs:annotation>
                          </xs:element>
                        </xs:sequence>
                      </xs:complexType>
                    </xs:element>
                  </xs:sequence>
                  <xs:attribute name="Type" use="required">
                    <xs:annotation>
                      <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="And" />
                        <xs:enumeration value="Or" />
                        <xs:enumeration value="None" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:attribute>
                </xs:complexType>
              </xs:element>
            </xs:sequence>
            <xs:attribute name="Type" use="required">
              <xs:annotation>
                <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="And" />
                  <xs:enumeration value="Or" />
                  <xs:enumeration value="None" />
                </xs:restriction>
              </xs:simpleType>
            </xs:attribute>
          </xs:complexType>
        </xs:element>
        <xs:element name="SIF_Example" type="sif:SIF_ExampleObjectType">
          <xs:annotation>
            <xs:documentation>
							An example SIF object that serves as a template for matching objects.  There is an implied EQ operator
							for every element/attribute value present and an implied And group of all resulting conditions.  Currently
							this is an experimental feature and limited to use with select objects; wider use may be considered in future
							versions of this specification.
						</xs:documentation>
          </xs:annotation>
        </xs:element>
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Query" type="sif:SIF_QueryType" />


  <!--SIF_ExtendedQuery-->

  <xs:complexType name="SIF_ExtendedQueryType">
    <xs:annotation>
      <xs:documentation>SIF's default query mechanism for SIF_Request, SIF_Query, has several limitations that limit its usefulness when creating reporting applications
						that process data from a SIF zone.  SIF_Query is limited to matching only one object type per query, requiring applications to
						manually join together results as needed for reporting and general data processing.  SIF_ExtendedQuery is designed to allow for joins on
						object identifiers/RefIds and to allow retrieval of data in a row/column fashion similar to SQL.  Each returned column may contain hierarchical XML elements/objects.
						Providers and Responders in a Zone may support SIF_ExtendedQuery
							in addition to SIF_Query.  Support for SIF_ExtendedQuery can be declared in and retrieved from the Zone is various Infrastructure
							messages and objects.
						</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_DestinationProvider" minOccurs="0" type="sif:SIF_RequestObjectNamesType">
        <xs:annotation>
          <xs:documentation>
              If no SIF_DestinationId applies to the request and this element is supplied, the Requester specifies that the
              extended query be routed to the Provider on record for the given object name.  If this element is omitted and no SIF_DestinationId
              applies to the request, the ZIS routes the request to the Provider on record for the object name in SIF_From.
            </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Select">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Indicates the element/attribute to return as a column.  Contents can be left empty to return the whole object specified in ObjectName,
						or * can be designated to return all attributes and immediate child elements of the object specified in ObjectName, or 
							SIF_Element Syntax can be specified, relative to the object specified in ObjectName.  Requested attributes
							are to be returned as the text value of the corresponding attribute, elements as a copy of the XML element itself including attributes if they exist.
					</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Alias" use="optional">
                      <xs:simpleType>
                        <xs:restriction base="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>Optional caption for the column.</xs:documentation>
                          </xs:annotation>
                          <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object from which to retrieve element/attributes.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="Distinct" use="required" type="xs:boolean">
            <xs:annotation>
              <xs:documentation>Specifies whether query results should return all rows (false) or just distinct ones (true).  Rows are distinct if
						at least one column differs between them.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RowCount" use="required">
            <xs:annotation>
              <xs:documentation>The maximum number of rows to return.  If All, return all rows, otherwise return the top rows up to the maximum
						row count indicated.
					</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:union>
                <xs:simpleType>
                  <xs:restriction base="xs:positiveInteger" />
                </xs:simpleType>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="All" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:union>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_From">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Join" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_JoinOn" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_LeftElement">
                          <xs:annotation>
                            <xs:documentation>Specifies the left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                        <xs:element name="SIF_RightElement">
                          <xs:annotation>
                            <xs:documentation>Specifies right left-side element/attribute on which to constrain the join.  Currently only support for keys/RefIds/RefId references is required.</xs:documentation>
                          </xs:annotation>
                          <xs:complexType>
                            <xs:simpleContent>
                              <xs:extension base="xs:normalizedString">
                                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                  <xs:annotation>
                                    <xs:documentation>Name of the object that contains the element/attribute.</xs:documentation>
                                  </xs:annotation>
                                </xs:attribute>
                              </xs:extension>
                            </xs:simpleContent>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>Type of relational join.</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Inner" />
                      <xs:enumeration value="LeftOuter" />
                      <xs:enumeration value="RightOuter" />
                      <xs:enumeration value="FullOuter" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
            <xs:annotation>
              <xs:documentation>The name of the object to query.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Where" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ConditionGroup">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Conditions" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Condition" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_Element">
                                <xs:annotation>
                                  <xs:documentation>This is the element/attribute being queried.</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                  <xs:simpleContent>
                                    <xs:extension base="xs:normalizedString">
                                      <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                                        <xs:annotation>
                                          <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                                        </xs:annotation>
                                      </xs:attribute>
                                    </xs:extension>
                                  </xs:simpleContent>
                                </xs:complexType>
                              </xs:element>
                              <xs:element name="SIF_Operator">
                                <xs:annotation>
                                  <xs:documentation>The comparison operator for the condition.</xs:documentation>
                                </xs:annotation>
                                <xs:simpleType>
                                  <xs:restriction base="xs:token">
                                    <xs:enumeration value="EQ">
                                      <xs:annotation>
                                        <xs:documentation>Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LT">
                                      <xs:annotation>
                                        <xs:documentation>Less Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GT">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="LE">
                                      <xs:annotation>
                                        <xs:documentation>Less Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="GE">
                                      <xs:annotation>
                                        <xs:documentation>Greater Than Or Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                    <xs:enumeration value="NE">
                                      <xs:annotation>
                                        <xs:documentation>Not Equals</xs:documentation>
                                      </xs:annotation>
                                    </xs:enumeration>
                                  </xs:restriction>
                                </xs:simpleType>
                              </xs:element>
                              <xs:element name="SIF_Value" type="xs:string">
                                <xs:annotation>
                                  <xs:documentation>SIF_Value is the data that is used to compare with the value of the element or attribute.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                      <xs:attribute name="Type" use="required">
                        <xs:annotation>
                          <xs:documentation>
								The boolean operator for joining conditions (SIF_Condition elements) within this element.  Note that None should be used if there
								is only one SIF_Condition element.
							</xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                          <xs:restriction base="xs:token">
                            <xs:enumeration value="And" />
                            <xs:enumeration value="Or" />
                            <xs:enumeration value="None" />
                          </xs:restriction>
                        </xs:simpleType>
                      </xs:attribute>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
								The Boolean operator for joining conditions (SIF_Conditions elements) within this element.  Note that None should be used if there is only one
								SIF_Conditions element.
							</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="And" />
                      <xs:enumeration value="Or" />
                      <xs:enumeration value="None" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_OrderBy" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>
							Indicates the element/attribute by which to sort.
						</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the object containing the element/attribute.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Ordering" use="required">
                      <xs:annotation>
                        <xs:documentation>Whether to order the element/attribute in ascending or descending order.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Ascending" />
                          <xs:enumeration value="Descending" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedQuery" type="sif:SIF_ExtendedQueryType" />


  <!--SIF_ExtendedQueryResults-->

  <xs:complexType name="SIF_ExtendedQueryResultsType">
    <xs:annotation>
      <xs:documentation>
              This element provides a wrapper for data returned in response to a SIF_ExtendedQuery.  Used in SIF_Response
              and SIF_ReportObject.
            </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ColumnHeaders">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Element" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The element/attribute specified for the column in SIF_ExtendedQuery.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The object in which the element/attribute occurs.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Alias" use="optional">
                      <xs:simpleType>
                        <xs:restriction base="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>The caption for the column, if specified in SIF_ExtendedQuery.
					</xs:documentation>
                          </xs:annotation>
                          <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                    <!--<xs:attribute ref="xsi:type" use="optional" />-->
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Rows">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="R" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="C" maxOccurs="unbounded" type="sif:SelectedContentType">
                    <xs:annotation>
                      <xs:documentation>
              Contains the value of each column specified in SIF_ExtendedQuery/SIF_Select.  
							The order of the columns must correspond to the order of the elements as requested in SIF_ExtendedQuery.
							Note the number of columns may be expanded from the requested columns if * is indicated
							one or more times in the SIF_Select clause.
            </xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedQueryResults" type="sif:SIF_ExtendedQueryResultsType" />


  <!--Infrastructure Messages-->


  <!--SIF_Ack-->

  <xs:complexType name="SIF_AckType">
    <xs:annotation>
      <xs:documentation>This message is used as an acknowledgement to an infrastructure message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_OriginalSourceId" nillable="true" type="xs:token">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId of the infrastructure message for which the SIF_Ack serves as a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_OriginalMsgId" nillable="true" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>The SIF_MsgId of the infrastructure message for which the SIF_Ack message serves as a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Status" />
        <xs:element ref="sif:SIF_Error" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Ack" type="sif:SIF_AckType" />


  <!--SIF_Event-->

  <xs:complexType name="SIF_EventType">
    <xs:annotation>
      <xs:documentation>SIF_Event is used to deliver event objects as defined in SIF.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_ObjectData">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_EventObject">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>Contains the actual object (partial or whole) that is being added, changed or deleted.</xs:documentation>
                </xs:annotation>
                <xs:complexContent>
                  <xs:extension base="sif:SIF_EventObjectType">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>This is the name of the object being added, changed or deleted.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                    <xs:attribute name="Action" use="required">
                      <xs:annotation>
                        <xs:documentation>This is the action associated with the object that is being conveyed by this SIF_Event.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Add" />
                          <xs:enumeration value="Delete" />
                          <xs:enumeration value="Change" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:complexContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Event" type="sif:SIF_EventType" />


  <!--SIF_Provide-->

  <xs:complexType name="SIF_ProvideType">
    <xs:annotation>
      <xs:documentation>The SIF_Provide message is used for advertising the provision of data objects.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
              <xs:annotation>
                <xs:documentation>Whether or not the Agent supports SIF_ExtendedQuery for this object.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being provided.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Provide" type="sif:SIF_ProvideType" />


  <!--SIF_Provision-->

  <xs:complexType name="SIF_ProvisionType">
    <xs:annotation>
      <xs:documentation>
			Once registered, this message allows an agent to announce to the ZIS the functionality the agent will provide.
			The ZIS compares the functionality to its access control list and either returns a failure or a success.  Upon success,
			the ZIS performs an atomic update of its provide/subscribe database entries for the agent to match the objects listed in this message and atomically
			updates other stored settings for the agent.
			A ZIS must not allow an agent to perform operations that it did not successfully announce.  Agents should be aware that if the access control
			list changes after a successful SIF_Provision, some operations may still be rejected with access control errors.
		</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_ProvideObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>Whether or not SIF_ExtendedQuery is supported with regard to this object.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>
							Optionally specify whether or not SIF_ExtendedQuery may be sent in requests for this object.
						</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondObjects">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ExtendedQuerySupport" minOccurs="0" type="xs:boolean">
                    <xs:annotation>
                      <xs:documentation>
			Whether or not SIF_ExtendedQuery is supported with regard to this object.
		</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Provision" type="sif:SIF_ProvisionType" />


  <!--SIF_Register-->

  <xs:complexType name="SIF_RegisterType">
    <xs:annotation>
      <xs:documentation>SIF_Register is the message for registering an agent with a ZIS.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Name">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>This is the descriptive name of the agent that is registering (i.e. Ramsey Media Center).</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
        <xs:annotation>
          <xs:documentation>Specifies the SIF Implementation Specification version(s) defining messages the agent can receive. If the ZIS cannot communicate in this format, it should reject the request.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Specifies the maximum size of a packet to be returned by the ZIS. The ZIS may return packets smaller than, or equal to, the maximum value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Mode">
        <xs:annotation>
          <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Push" />
            <xs:enumeration value="Pull" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
      <xs:element name="SIF_NodeVendor" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>The vendor of the SIF agent.</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_NodeVersion" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>The agent version number.  The format of this field is undefined, but it should
						match the format used in the agent's conformance statement, if the agent is SIF Certified.</xs:documentation>
            </xs:annotation>
            <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Application" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Vendor">
              <xs:simpleType>
                <xs:restriction base="xs:normalizedString">
                  <xs:annotation>
                    <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
                  </xs:annotation>
                  <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="SIF_Product">
              <xs:simpleType>
                <xs:restriction base="xs:normalizedString">
                  <xs:annotation>
                    <xs:documentation>The name of the product that this agent supports.</xs:documentation>
                  </xs:annotation>
                  <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="SIF_Version">
              <xs:simpleType>
                <xs:restriction base="xs:normalizedString">
                  <xs:annotation>
                    <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
                  </xs:annotation>
                  <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>HTTP URL referencing an icon for graphical representation of the application/agent.
Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).  
Agents may optionally follow the more restrictive guidelines at [FAVICON].</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Register" type="sif:SIF_RegisterType" />


  <!--SIF_Request-->

  <xs:complexType name="SIF_RequestType">
    <xs:annotation>
      <xs:documentation>SIF_Request is used to request information in SIF data objects from other SIF nodes.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
        <xs:annotation>
          <xs:documentation>Specifies which SIF Implementation Specification version should be used when returning the response data; wildcards are allowed.
						The responding agent SHOULD return data using the highest version it supports 
						that falls within the specified versions.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Specifies the maximum size of a response packet to be returned to the requester. 
The responder may return packets smaller than, or equal to, the maximum value. 
To guarantee delivery of response packets, requesting agents must not specify a SIF_MaxBufferSize greater than its registered SIF_Register/SIF_MaxBufferSize.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Query" />
        <xs:element ref="sif:SIF_ExtendedQuery" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Request" type="sif:SIF_RequestType" />


  <!--SIF_Response-->

  <xs:complexType name="SIF_ResponseType">
    <xs:annotation>
      <xs:documentation>SIF_Response is used to respond to a SIF_Request message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_RequestMsgId" type="sif:MsgIdType">
        <xs:annotation>
          <xs:documentation>This is the message ID of the SIF_Request message being processed. It provides a unique match between a SIF_Response and a previous SIF_Request. Since the ID of each message from an agent is unique, the receiver of a SIF_Response message will be able to relate the SIF_Response to a SIF_Request that it sent out previously.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_PacketNumber" type="xs:positiveInteger">
        <xs:annotation>
          <xs:documentation>This element represents the index of the SIF_Response message in the sequence of packets that make up a complete response. Its value must be in the range of 1 through n, with n equal to the total number of packets that make up a response.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_MorePackets">
        <xs:annotation>
          <xs:documentation>This element provides an indication as to whether there are more packets besides this one to make up a complete response.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:choice>
        <xs:element ref="sif:SIF_Error" />
        <xs:element name="SIF_ObjectData" type="sif:SIF_ResponseObjectsType">
          <xs:annotation>
            <xs:documentation>The SIF_ObjectData element contains the data objects matching the supplied criteria in the SIF_Request message if the
						SIF_Request contained SIF_Query.  If the SIF_Request contained SIF_ExtendedQuery, include SIF_ExtendedQueryResults.</xs:documentation>
          </xs:annotation>
        </xs:element>
        <xs:element ref="sif:SIF_ExtendedQueryResults" />
      </xs:choice>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Response" type="sif:SIF_ResponseType" />


  <!--SIF_Subscribe-->

  <xs:complexType name="SIF_SubscribeType">
    <xs:annotation>
      <xs:documentation>This message is used to subscribe to event objects that are contained in this message.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being subscribed to. All valid SIF_Events for this object will be routed to the subscriber.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Subscribe" type="sif:SIF_SubscribeType" />


  <!--SIF_SystemControl-->

  <xs:complexType name="SIF_SystemControlType">
    <xs:annotation>
      <xs:documentation>This message is designed to control the flow of data an agent and ZIS or vice-versa, and to synchronously
retrieve data available from the ZIS.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_SystemControlData">
        <xs:annotation>
          <xs:documentation>This element holds the sub-message being sent.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:choice>
            <xs:element ref="sif:SIF_Ping" />
            <xs:element ref="sif:SIF_Sleep" />
            <xs:element ref="sif:SIF_Wakeup" />
            <xs:element ref="sif:SIF_GetMessage" />
            <xs:element ref="sif:SIF_GetZoneStatus" />
            <xs:element ref="sif:SIF_GetAgentACL" />
            <xs:element ref="sif:SIF_CancelRequests" />
          </xs:choice>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_SystemControl" type="sif:SIF_SystemControlType" />


  <!--SIF_Ping-->

  <xs:complexType name="SIF_PingType">
    <xs:annotation>
      <xs:documentation>This sub-message detects if an a Push-Mode Agent or ZIS is ready to receive and process messages.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Ping" type="sif:SIF_PingType" />


  <!--SIF_Sleep-->

  <xs:complexType name="SIF_SleepType">
    <xs:annotation>
      <xs:documentation>This sub-message tells a receiver not to send any more messages to the sender.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Sleep" type="sif:SIF_SleepType" />


  <!--SIF_Wakeup-->

  <xs:complexType name="SIF_WakeupType">
    <xs:annotation>
      <xs:documentation>This message tells a receiver that the sender is able to process messages.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_Wakeup" type="sif:SIF_WakeupType" />


  <!--SIF_GetMessage-->

  <xs:complexType name="SIF_GetMessageType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the first available message to the agent, subject to Selective Message Blocking.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetMessage" type="sif:SIF_GetMessageType" />


  <!--SIF_GetZoneStatus-->

  <xs:complexType name="SIF_GetZoneStatusType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the current SIF_ZoneStatus in a SIF_Ack.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetZoneStatus" type="sif:SIF_GetZoneStatusType" />


  <!--SIF_GetAgentACL-->

  <xs:complexType name="SIF_GetAgentACLType">
    <xs:annotation>
      <xs:documentation>This message tells the ZIS to return the Agent's ACL permissions in a SIF_Ack.</xs:documentation>
    </xs:annotation>
  </xs:complexType>

  <xs:element name="SIF_GetAgentACL" type="sif:SIF_GetAgentACLType" />


  <!--SIF_CancelRequests-->

  <xs:complexType name="SIF_CancelRequestsType">
    <xs:annotation>
      <xs:documentation>This sub-message asks a receiver (ZIS or Push-Mode Agent) to cancel the specified SIF_Requests, pending or in process.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_NotificationType">
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Standard">
              <xs:annotation>
                <xs:documentation>ZIS will send a "final" SIF_Response for each cancelled SIF_Request.</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="None">
              <xs:annotation>
                <xs:documentation>No further SIF_Responses for these requests will be placed in the Agent's queue.</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_RequestMsgIds">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_RequestMsgId" maxOccurs="unbounded" type="sif:MsgIdType">
              <xs:annotation>
                <xs:documentation>This is the </xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_CancelRequests" type="sif:SIF_CancelRequestsType" />


  <!--SIF_Unprovide-->

  <xs:complexType name="SIF_UnprovideType">
    <xs:annotation>
      <xs:documentation>This message performs the opposite function of SIF_Provide.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_ProvideObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object that is being removed.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unprovide" type="sif:SIF_UnprovideType" />


  <!--SIF_Unregister-->

  <xs:complexType name="SIF_UnregisterType">
    <xs:annotation>
      <xs:documentation>This message is used to unregister an agent from a Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unregister" type="sif:SIF_UnregisterType" />


  <!--SIF_Unsubscribe-->

  <xs:complexType name="SIF_UnsubscribeType">
    <xs:annotation>
      <xs:documentation>This message is used to unsubscribe from SIF_Events.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SIF_Header" />
      <xs:element name="SIF_Object" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Contexts" minOccurs="0" />
          </xs:sequence>
          <xs:attribute name="ObjectName" use="required" type="sif:SIF_SubscribeObjectNamesType">
            <xs:annotation>
              <xs:documentation>The actual name of the object from which the agent should be unsubscribed. Events pertaining to this object published after successful unsubscription will no longer be queued for delivery to the agent. Events already queued for delivery to the agent prior to unsubscription will be delivered.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Unsubscribe" type="sif:SIF_UnsubscribeType" />


  <!--Infrastructure Data Objects-->


  <!--SIF_ZoneStatus-->

  <xs:complexType name="SIF_ZoneStatusType">
    <xs:annotation>
      <xs:documentation>
	The SIF_ZoneStatus object is an object that is implicitly provided by all Zone Integration Servers to provide
	information about the ZIS. Zone Integration Servers MUST provide this object.
</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The descriptive name for the zone.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the ZIS/Zone.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Vendor" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Name" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the company that wrote the ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Product" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The product name assigned by the vendor to identify this ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Version" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The version of the vendor's product—not necessarily the SIF version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Providers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Provider" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being provided by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that is providing objects. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Subscribers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Subscriber" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being subscribed to by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that is subscribing to the object events. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AddPublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_ChangePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_DeletePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Responders" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Responder" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object for which the agent can respond to requests.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can respond. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Requesters" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Requester" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being requested by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can request an object. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SIFNodes" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SIFNode" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Name" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The descriptive name of the SIF node (i.e. Ramsey Food Services).</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
                    <xs:annotation>
                      <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the application/agent.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVendor" minOccurs="0">
                    <xs:simpleType>
                      <xs:restriction base="xs:normalizedString">
                        <xs:annotation>
                          <xs:documentation>The vendor of the SIF agent.</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_NodeVersion" minOccurs="0">
                    <xs:simpleType>
                      <xs:restriction base="xs:normalizedString">
                        <xs:annotation>
                          <xs:documentation>
	The agent version number.  The format of this field is undefined, but it should
	match the format used in the agent's conformance statement, if the agent is SIF Certified.
</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_Application" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Vendor">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                        <xs:element name="SIF_Product">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The name of the product that this agent supports.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                        <xs:element name="SIF_Version">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="SIF_SourceId">
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:annotation>
                          <xs:documentation>The agent or ZIS identifier. This is the same value that the SIF node would place in any SIF_Header that it would create.</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_Mode">
                    <xs:annotation>
                      <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Push" />
                        <xs:enumeration value="Pull" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
                  <xs:element name="SIF_VersionList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
                          <xs:annotation>
                            <xs:documentation>This is the version or versions of the SIF Implementation Specification that define(s) the messages the SIF node can receive. 
For agents, this information was communicated when the SIF node registered with the ZIS.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element ref="sif:SIF_AuthenticationLevel" minOccurs="0" />
                  <xs:element ref="sif:SIF_EncryptionLevel" minOccurs="0" />
                  <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>Specifies that the ZIS should never send packets larger than this value. Query responses from other providers are controlled by the SIF_MaxBufferSize attribute in the SIF_Request message.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Sleeping">
                    <xs:annotation>
                      <xs:documentation>This element shows whether the SIF node is ready to process messages.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="No">
                          <xs:annotation>
                            <xs:documentation>The SIF node is ready to process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="Yes">
                          <xs:annotation>
                            <xs:documentation>The SIF node is sleeping and cannot process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
	The type of the node registered with the ZIS.  Note that ZIS is forward-looking and not used currently; all information about this
	Zone/ZIS is contained outside SIF_SIFNodes.
</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Agent" />
                      <xs:enumeration value="ZIS" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedAuthentication" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ProtocolName" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Describes a particular authentication protocol supported.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="X.509" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedProtocols">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Protocol" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedVersions">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionType">
              <xs:annotation>
                <xs:documentation>Lists a specific SIF Implementation Specification version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AdministrationURL" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>Should a ZIS vendor provide an administration interface for the zone via a URL, the ZIS can make the URL available in SIF_ZoneStatus. Agent administrators can use the URL to access zone administration features, should they have permission to do so.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" />
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
    <xs:attribute name="ZoneId" use="required" type="xs:token">
      <xs:annotation>
        <xs:documentation>
	The identifier for this Zone.
	It is the same as the SIF_SourceId that the ZIS would place in any SIF_Header that it creates.
</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_ZoneStatus" type="sif:SIF_ZoneStatusType">
    <xs:key name="SIF_ZoneStatusKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@ZoneId" />
    </xs:key>
  </xs:element>


  <!--SIF_ZoneStatusInfrastructure-->

  <xs:complexType name="SIF_ZoneStatusInfrastructureType">
    <xs:annotation>
      <xs:documentation>
	The SIF_ZoneStatus object is an object that is implicitly provided by all Zone Integration Servers to provide
	information about the ZIS. Zone Integration Servers MUST provide this object.
</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The descriptive name for the zone.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the ZIS/Zone.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Vendor" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Name" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the company that wrote the ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Product" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The product name assigned by the vendor to identify this ZIS.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SIF_Version" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The version of the vendor's product—not necessarily the SIF version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Providers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Provider" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being provided by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that is providing objects. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Subscribers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Subscriber" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being subscribed to by this SIF node.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that is subscribing to the object events. This is the agent or ZIS identifier that would appear in the SIF_SourceId field of any SIF_Header created by the SIF node.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AddPublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_ChangePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_DeletePublishers" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Publisher" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being published by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can publish the SIF_Event. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Responders" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Responder" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object for which the agent can respond to requests.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can respond. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Requesters" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Requester" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_ObjectList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Object" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="SIF_ExtendedQuerySupport" type="xs:boolean" />
                              <xs:element ref="sif:SIF_Contexts" />
                            </xs:sequence>
                            <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                              <xs:annotation>
                                <xs:documentation>The name of the object being requested by this agent.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="SourceId" use="required">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:annotation>
                        <xs:documentation>The identifier of the SIF node that can request an object. This is the agent identifier that would appear in the SIF_SourceId field of any SIF_Header created by the agent.</xs:documentation>
                      </xs:annotation>
                      <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SIFNodes" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_SIFNode" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="SIF_Name" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The descriptive name of the SIF node (i.e. Ramsey Food Services).</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Icon" minOccurs="0" type="xs:anyURI">
                    <xs:annotation>
                      <xs:documentation>
	HTTP URL referencing an icon for graphical representation of the application/agent.
	Should range from 16x16 pixels to 128x128 pixels and be of an image MIME type commonly supported by Web browsers (e.g. PNG, JPEG, GIF).
	Agents may optionally follow the more restrictive guidelines at [FAVICON].
</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_NodeVendor" minOccurs="0">
                    <xs:simpleType>
                      <xs:restriction base="xs:normalizedString">
                        <xs:annotation>
                          <xs:documentation>The vendor of the SIF agent.</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_NodeVersion" minOccurs="0">
                    <xs:simpleType>
                      <xs:restriction base="xs:normalizedString">
                        <xs:annotation>
                          <xs:documentation>
	The agent version number.  The format of this field is undefined, but it should
	match the format used in the agent's conformance statement, if the agent is SIF Certified.
</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_Application" minOccurs="0">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Vendor">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The name of the company of the product that this agent supports.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                        <xs:element name="SIF_Product">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The name of the product that this agent supports.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="256" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                        <xs:element name="SIF_Version">
                          <xs:simpleType>
                            <xs:restriction base="xs:normalizedString">
                              <xs:annotation>
                                <xs:documentation>The version of the product. This field is informative only.</xs:documentation>
                              </xs:annotation>
                              <xs:maxLength value="32" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="SIF_SourceId">
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:annotation>
                          <xs:documentation>The agent or ZIS identifier. This is the same value that the SIF node would place in any SIF_Header that it would create.</xs:documentation>
                        </xs:annotation>
                        <xs:maxLength value="64" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="SIF_Mode">
                    <xs:annotation>
                      <xs:documentation>Specifies the communication mode (Pull or Push) as chosen by the message sender.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Push" />
                        <xs:enumeration value="Pull" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element ref="sif:SIF_Protocol" minOccurs="0" />
                  <xs:element name="SIF_VersionList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionWithWildcardsType">
                          <xs:annotation>
                            <xs:documentation>This is the version or versions of the SIF Implementation Specification that define(s) the messages the SIF node can receive. 
For agents, this information was communicated when the SIF node registered with the ZIS.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element ref="sif:SIF_AuthenticationLevel" minOccurs="0" />
                  <xs:element ref="sif:SIF_EncryptionLevel" minOccurs="0" />
                  <xs:element name="SIF_MaxBufferSize" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>Specifies that the ZIS should never send packets larger than this value. Query responses from other providers are controlled by the SIF_MaxBufferSize attribute in the SIF_Request message.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="SIF_Sleeping">
                    <xs:annotation>
                      <xs:documentation>This element shows whether the SIF node is ready to process messages.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="No">
                          <xs:annotation>
                            <xs:documentation>The SIF node is ready to process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="Yes">
                          <xs:annotation>
                            <xs:documentation>The SIF node is sleeping and cannot process messages</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>
	The type of the node registered with the ZIS.  Note that ZIS is forward-looking and not used currently; all information about this
	Zone/ZIS is contained outside SIF_SIFNodes.
</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="Agent" />
                      <xs:enumeration value="ZIS" />
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedAuthentication" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_ProtocolName" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Describes a particular authentication protocol supported.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="X.509" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedProtocols">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Protocol" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SupportedVersions">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Version" maxOccurs="unbounded" type="sif:VersionType">
              <xs:annotation>
                <xs:documentation>Lists a specific SIF Implementation Specification version.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_AdministrationURL" minOccurs="0" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>Should a ZIS vendor provide an administration interface for the zone via a URL, the ZIS can make the URL available in SIF_ZoneStatus. Agent administrators can use the URL to access zone administration features, should they have permission to do so.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:SIF_Contexts" />
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
    <xs:attribute name="ZoneId" use="required" type="xs:token">
      <xs:annotation>
        <xs:documentation>
	The identifier for this Zone.
	It is the same as the SIF_SourceId that the ZIS would place in any SIF_Header that it creates.
</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>


  <!--SIF_AgentACL-->

  <xs:complexType name="SIF_AgentACLType">
    <xs:annotation>
      <xs:documentation>This object provides an Agent its access control list (ACL) settings in the Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ProvideAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_AgentACL" type="sif:SIF_AgentACLType" />


  <!--SIF_AgentACLInfrastructure-->

  <xs:complexType name="SIF_AgentACLInfrastructureType">
    <xs:annotation>
      <xs:documentation>This object provides an Agent its access control list (ACL) settings in the Zone.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ProvideAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_SubscribeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishAddAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishChangeAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_PublishDeleteAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RequestAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_RespondAccess">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_Object" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element ref="sif:SIF_Contexts" />
                </xs:sequence>
                <xs:attribute name="ObjectName" use="required" type="sif:ObjectNameType">
                  <xs:annotation>
                    <xs:documentation>The name of each object.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SIF_Metadata" minOccurs="0" />
      <xs:element ref="sif:SIF_ExtendedElements" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>


  <!--Data Model Common Elements-->


  <!--SIF_ExtendedElements-->

  <xs:complexType name="SIF_ExtendedElementsType">
    <xs:annotation>
      <xs:documentation>Allows an agent to include data not yet defined within a SIF data object as name/value pairs.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_ExtendedElement" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:annotation>
            <xs:documentation>A name/value pair, the name being contained in the Name attribute, the value being the element content.</xs:documentation>
          </xs:annotation>
          <xs:complexContent>
            <xs:extension base="sif:ExtendedContentType">
              <xs:attribute name="Name" use="required" type="xs:normalizedString">
                <xs:annotation>
                  <xs:documentation>The name of the extended element. As it is possible that names for extended elements may collide from agent to agent, it is recommended that the names of extended elements be configurable in an agent, or that agents use URIs for the names of extended elements.</xs:documentation>
                </xs:annotation>
              </xs:attribute>
              <!--<xs:attribute ref="xsi:type" use="optional" />-->
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>
	In a Change event, this flag can be used to indicate an element has been deleted from the parent list container.  At a minimum the key for the list must also be present.
</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_ExtendedElements" type="sif:SIF_ExtendedElementsType">
    <xs:key name="SIF_ExtendedElementsKey1">
      <xs:selector xpath="./sif:SIF_ExtendedElement" />
      <xs:field xpath="@Name" />
    </xs:key>
  </xs:element>


  <!--ElectronicIdList-->

  <xs:complexType name="ElectronicIdListType">
    <xs:annotation>
      <xs:documentation>A list of electronic identifiers associated with an entity.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:ElectronicId" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="ElectronicIdList" type="sif:ElectronicIdListType" />


  <!--ElectronicId-->

  <xs:complexType name="ElectronicIdType">
    <xs:annotation>
      <xs:documentation>
	Common element used to specify entity identifiers that are read by electronic equipment. It is used in objects such
	as StudentPersonal, StaffPersonal, and LibraryPatronStatus.
</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:normalizedString">
        <xs:attribute name="Type" use="required">
          <xs:annotation>
            <xs:documentation>Electronic ID type.</xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:token">
              <xs:enumeration value="Barcode" />
              <xs:enumeration value="Magstripe" />
              <xs:enumeration value="PIN" />
              <xs:enumeration value="RFID" />
            </xs:restriction>
          </xs:simpleType>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>

  <xs:element name="ElectronicId" type="sif:ElectronicIdType" />


  <!--SchoolURL-->

  <xs:simpleType name="SchoolURLType">
    <xs:restriction base="xs:anyURI">
      <xs:annotation>
        <xs:documentation>URL for a school.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolURL" type="sif:SchoolURLType" />


  <!--LocalId-->

  <xs:simpleType name="LocalIdType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>
	This is a common element used to define the locally assigned identifier associated with an entity. It is used in
	StudentPersonal, StaffPersonal, SchoolInfo, and other objects.
</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LocalId" type="sif:LocalIdType" />


  <!--SchoolYear-->

  <xs:simpleType name="SchoolYearType">
    <xs:restriction base="xs:gYear">
      <xs:annotation>
        <xs:documentation>School year for which this information is applicable, expressed as the four-digit year in which the school year ends (e.g., "2004" for the 2003-04 school year).</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolYear" type="sif:SchoolYearType" />


  <!--LastName-->

  <xs:simpleType name="LastNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's last name.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LastName" type="sif:LastNameType" />


  <!--FirstName-->

  <xs:simpleType name="FirstNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's first name.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="FirstName" type="sif:FirstNameType" />


  <!--MiddleName-->

  <xs:simpleType name="MiddleNameType">
    <xs:restriction base="xs:normalizedString">
      <xs:annotation>
        <xs:documentation>A person's middle name or initial.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="MiddleName" type="sif:MiddleNameType" />


  <!--Address-->

  <xs:complexType name="AddressType">
    <xs:annotation>
      <xs:documentation>This element contains address data, some of which is defined by the BS7666
International Address and Geographic Location Specification. Other
elements are present for support of international addresses. Applications
storing address information in the traditional line format must translate this
information into the appropriate data elements below.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The locally assigned identifier for this address in the publishing system.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date person began using this address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date person stopped using this address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PAON">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Dwelling name, or at least a general description of the location in lieu of having any other information. This is required when no other PAON information is provided.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SAON" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Sub-dwelling name, or other descriptive information in lieu of having any other information.  This is required when no other SAON data is provided.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Start (single) dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndNumberSuffix" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>End dwelling number suffix.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Street" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The name of the street.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Locality" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The locality name refers to a neighbourhood, suburb, district, village, estate, settlement, or parish that may form part of a town, or stand in its own right within the context of an administrative area.  Where an industrial estate contains streets it is defined as a locality in its own right.  At least one of Locality, Town, or AdministrativeArea must be specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Town" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The city name refers to a city or town that is not an adminstrative area, a suburb of an administrative area that does not form part of another town or a London district. At least one of Locality, Town, or AdministrativeArea must be specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AdministrativeArea" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The administrative area is a geographic area that may be the highest level local administrative area, and may be a county or a unitary authority, an island or island group, or London. At least one of Locality, Town, or AdministrativeArea must be specified</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="County" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Where applicable, the name of the county.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PostTown" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Post Office usually assigns these based on Sorting Office.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PostCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The code allocated by the Post Office (within GBR) to identify a group of postal delivery points.  
Valid Postcode formats are:</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Country" minOccurs="0" nillable="true" type="sif:CountryType">
        <xs:annotation>
          <xs:documentation>Country where physical address is located, if known.  Usually this is going to be 'GBR' but could be outside the UK.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UniquePropertyReferenceNumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:integer">
            <xs:annotation>
              <xs:documentation>The unique Property and Land Reference Number (UPRN) for this address. Numeric: 1 to 12 digits.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="0" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="999999999999" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="UniqueStreetReferenceNumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:integer">
            <xs:annotation>
              <xs:documentation>The unique Property Street Reference Number (USRN) for this address.  Numeric: 1 to 8 digits.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="0" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="99999999" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="LocationContext" minOccurs="0" nillable="true" type="sif:LocationContextType">
        <xs:annotation>
          <xs:documentation>The physical location of an address in terms of Census District, LA Electoral Ward, Parliamentary Constituency, and other defining location-centric characteristics.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GridLocation" minOccurs="0" nillable="true" type="sif:GridLocationType">
        <xs:annotation>
          <xs:documentation>The physical property location coordinates.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>Code that defines the address type.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Current" />
          <xs:enumeration value="Mailing" />
          <xs:enumeration value="Transportation" />
          <xs:enumeration value="Previous" />
          <xs:enumeration value="Other" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="Address" type="sif:AddressType" />


  <!--AddressList-->

  <xs:complexType name="AddressListType">
    <xs:annotation>
      <xs:documentation>A list of Address elements.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Address" maxOccurs="unbounded">
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="sif:AddressType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="AddressList" type="sif:AddressListType">
    <xs:key name="AddressListKey1">
      <xs:selector xpath="./sif:Address" />
      <xs:field xpath="@Type" />
    </xs:key>
  </xs:element>


  <!--ContactList-->

  <xs:complexType name="ContactListType">
    <xs:annotation>
      <xs:documentation>A list of contact persons associated with a school or LA.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Contact" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="PositionTitle" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The contact person's position title within the school or LA.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Role" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>Role played by this contact in the school or LA.  Any descriptive text is allowed here.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="PublishInDirectory" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether or not this contact's information should be published in a directory of school or LA information.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="SIF_RefId" use="required" type="sif:IdRefType">
            <xs:annotation>
              <xs:documentation>The ID (GUID) of the person listed as a contact. Note that this is any person listed as a contact through either a ContactPersonal, WorkforcePersonal, or even a LearnerPersonal record.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attribute name="SIF_RefObject" use="required">
            <xs:annotation>
              <xs:documentation>The object type being referred to. </xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="WorkforcePersonal" />
                <xs:enumeration value="ContactPersonal" />
                <xs:enumeration value="LearnerPersonal" />
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="ContactList" type="sif:ContactListType" />


  <!--Country-->

  <xs:simpleType name="CountryType">
    <xs:restriction base="sif:teachernetNationStatesAndCountriesType">
      <xs:annotation>
        <xs:documentation>The 3-character alphabetic country code defined by ISO 3166-1.  Given this code all other code and name information can be obtained directly from the standard.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="Country" type="sif:CountryType" />


  <!--Demographics-->

  <xs:complexType name="DemographicsType">
    <xs:annotation>
      <xs:documentation>Demographic information about a learner, contact, workforce member, etc. This element occurs within objects such as LearnerPersonal, LearnerContact, etc.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="EthnicityList" minOccurs="0" nillable="true" type="sif:EthnicityListType">
        <xs:annotation>
          <xs:documentation>A list of the person's ethnicities by proportion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Gender" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Person's gender.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="U">
              <xs:annotation>
                <xs:documentation>Unknown</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="W">
              <xs:annotation>
                <xs:documentation>Withheld</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="BirthDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>The person's date of birth.  Required for learners.  Optional for others.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="BirthDateVerification" minOccurs="0" nillable="true" type="sif:UKBirthDateVerificationLevelType">
        <xs:annotation>
          <xs:documentation>Means by which the person's birth date was validated.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PlaceOfBirth" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The person's place of birth--like village, town, city etc.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountyOfBirth" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The county in which the person was born.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountryOfBirth" minOccurs="0" nillable="true" type="sif:CountryType">
        <xs:annotation>
          <xs:documentation>The individual's country of birth.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CountriesOfCitizenship" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CountryOfCitizenship" maxOccurs="unbounded" type="sif:CountryType">
              <xs:annotation>
                <xs:documentation>The country of legal nationality (i.e. the country which issued the individual's passport).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CountriesOfResidency" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CountryOfResidency" maxOccurs="unbounded" type="sif:CountryType">
              <xs:annotation>
                <xs:documentation>A person's country of residence.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CountryArrivalDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date the person first arrived in the UK.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EnglishProficiency" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="EALSteps" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Based on QCA Steps. (England)</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="S1">
                    <xs:annotation>
                      <xs:documentation>Step 1</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="S2">
                    <xs:annotation>
                      <xs:documentation>Step 2</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="1T">
                    <xs:annotation>
                      <xs:documentation>Level 1 Threshold</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="1S">
                    <xs:annotation>
                      <xs:documentation>Level 1 Secure</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EALAcquisition" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Based on a differing scale from QCA Steps. (Wales)</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>New to English</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="B">
                    <xs:annotation>
                      <xs:documentation>Early Acquisition</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="C">
                    <xs:annotation>
                      <xs:documentation>Developing Competence</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="D">
                    <xs:annotation>
                      <xs:documentation>Compentent</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="E">
                    <xs:annotation>
                      <xs:documentation>Fluent</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="0">
                    <xs:annotation>
                      <xs:documentation>Not applicable</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="LanguageList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Language" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" type="sif:teachernetLanguagesType">
                    <xs:annotation>
                      <xs:documentation>This is the code that specifies the person's language.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Fluent" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>Indicates that the person is fluent in this language.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="TypeList">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Type" maxOccurs="unbounded">
                          <xs:annotation>
                            <xs:documentation>A typification of the language. i.e. how is this language used?</xs:documentation>
                          </xs:annotation>
                          <xs:simpleType>
                            <xs:restriction base="xs:token">
                              <xs:enumeration value="C">
                                <xs:annotation>
                                  <xs:documentation>Correspondence Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="F">
                                <xs:annotation>
                                  <xs:documentation>First Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="M">
                                <xs:annotation>
                                  <xs:documentation>Multiple First Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="H">
                                <xs:annotation>
                                  <xs:documentation>Home</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="T">
                                <xs:annotation>
                                  <xs:documentation>Tuition</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                              <xs:enumeration value="S">
                                <xs:annotation>
                                  <xs:documentation>Second Language</xs:documentation>
                                </xs:annotation>
                              </xs:enumeration>
                            </xs:restriction>
                          </xs:simpleType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                  <xs:element name="Source" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
                    <xs:annotation>
                      <xs:documentation>Source of data on use of the specified language.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Study" minOccurs="0" nillable="true" type="sif:UKLanguageStudyType">
                    <xs:annotation>
                      <xs:documentation>The level in which the learner is taught this language at school.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="StudyOther" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>Indicates whether the learner studies subjects in this language at school separate from studying the language itself.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MaritalStatus" minOccurs="0" nillable="true" type="sif:UKMaritalStatusType">
        <xs:annotation>
          <xs:documentation>The person's marital status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NonUKSystemImmigrant" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates the learner has recently arrived from a non-English or other common UK language system. (Wales)</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Refugee" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates the person's refugee/asylum seeker status as defined by the United Nations (Article 1 of the 1951 Refugee Convention).</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Religion" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AffiliationCode" type="sif:UKReligiousAffiliationType">
              <xs:annotation>
                <xs:documentation>Person's religious faith.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EducationStatus" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether the person is actively attending religious education classes.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>Attends</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="W">
                    <xs:annotation>
                      <xs:documentation>Withdrawn</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="CollectiveWorshipStatus" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates whether the person is participating in religious collective worship.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="A">
                    <xs:annotation>
                      <xs:documentation>Attends</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                  <xs:enumeration value="W">
                    <xs:annotation>
                      <xs:documentation>Withdrawn</xs:documentation>
                    </xs:annotation>
                  </xs:enumeration>
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="Source" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of person's religious affiliation code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Traveller" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" type="sif:UKTravellerGypsyCodeType">
              <xs:annotation>
                <xs:documentation>Code to identify type of traveller/gypsy.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Source" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of individual's recorded traveller/gypsy code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="Demographics" type="sif:DemographicsType" />


  <!--Email-->

  <xs:complexType name="EmailType">
    <xs:annotation>
      <xs:documentation>This element represents an e-mail address of one of a number of types.</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:normalizedString">
        <xs:attribute name="Type" use="required">
          <xs:annotation>
            <xs:documentation>This attribute specifies the type of e-mail address.</xs:documentation>
          </xs:annotation>
          <xs:simpleType>
            <xs:restriction base="xs:token">
              <xs:enumeration value="Business" />
              <xs:enumeration value="Personal" />
              <xs:enumeration value="School" />
              <xs:enumeration value="Alternate1" />
              <xs:enumeration value="Alternate2" />
              <xs:enumeration value="Alternate3" />
              <xs:enumeration value="Alternate4" />
            </xs:restriction>
          </xs:simpleType>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>

  <xs:element name="Email" type="sif:EmailType" />


  <!--EmailList-->

  <xs:complexType name="EmailListType">
    <xs:annotation>
      <xs:documentation>A list of e-mail addresses associated with an individual.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Email" maxOccurs="unbounded">
        <xs:complexType>
          <xs:simpleContent>
            <xs:extension base="sif:EmailType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="EmailList" type="sif:EmailListType">
    <xs:key name="EmailListKey1">
      <xs:selector xpath="./sif:Email" />
      <xs:field xpath="@Type" />
    </xs:key>
  </xs:element>


  <!--EstablishmentId-->

  <xs:simpleType name="EstablishmentIdType">
    <xs:restriction base="xs:token">
      <xs:annotation>
        <xs:documentation>The DfES assigned identifier for a school or other educational establishment.  The list of all known Establishment ID's is extensive and available online.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="EstablishmentId" type="sif:EstablishmentIdType" />


  <!--EthnicityList-->

  <xs:complexType name="EthnicityListType">
    <xs:sequence>
      <xs:element name="Ethnicity" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" type="sif:teachernetEthnicityCodeType">
              <xs:annotation>
                <xs:documentation>The general ethnic category which reflects the individual's recognition of his or her community or with which the individual most identifies.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Source" type="sif:UKSourceCodeType">
              <xs:annotation>
                <xs:documentation>Source of inidividual's recorded ethnic code.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="EthnicityList" type="sif:EthnicityListType" />


  <!--GridLocation-->

  <xs:complexType name="GridLocationType">
    <xs:annotation>
      <xs:documentation>This element contains a map location. The GridLocation element is utilised within other objects and elements.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="PropertyEasting" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Easting coordinate format.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PropertyNorthing" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Northing coordinate for mapping an address. Required when PropertyEasting
is also specified. This is best represented in a 7.1 format.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Latitude" minOccurs="0" nillable="true" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Geographical coordinate.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Longitude" minOccurs="0" nillable="true" type="xs:decimal">
        <xs:annotation>
          <xs:documentation>Geographical coordinate. Required when Latitude is also specified.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="GridLocation" type="sif:GridLocationType" />


  <!--LAId-->

  <xs:simpleType name="LAIdType">
    <xs:restriction base="sif:teachernetLAIdType">
      <xs:annotation>
        <xs:documentation>The 3-digit number assigned to the LA by the DfES.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LAId" type="sif:LAIdType" />


  <!--LAName-->

  <xs:simpleType name="LANameType">
    <xs:restriction base="sif:teachernetLANameType">
      <xs:annotation>
        <xs:documentation>The official name of the LA.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="LAName" type="sif:LANameType" />


  <!--LocationContext-->

  <xs:complexType name="LocationContextType">
    <xs:annotation>
      <xs:documentation>The physical location of an address in terms of Census District, LA Electoral Ward, Parliamentary Constituency, and other defining location-centric characteristics.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="CensusDistrict" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>National Population Census Enumeration District.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WardCode" type="sif:ONSWardCodeType">
        <xs:annotation>
          <xs:documentation>ONS Ward Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WardName" type="sif:ONSWardNameType">
        <xs:annotation>
          <xs:documentation>ONS Ward Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ConstituencyCode" minOccurs="0" nillable="true" type="sif:ONSParliamentaryConstituencyCodeType">
        <xs:annotation>
          <xs:documentation>ONS Parliamentary Constituency Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ConstituencyName" minOccurs="0" nillable="true" type="sif:ONSParliamentaryConstituencyNameType">
        <xs:annotation>
          <xs:documentation>ONS Parliamentary Constituency Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Parish" minOccurs="0" nillable="true" type="sif:ONSParishCouncilNameType">
        <xs:annotation>
          <xs:documentation>ONS Parish Council Name</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChurchOfEnglandDiocese" minOccurs="0" nillable="true" type="sif:teachernetChurchOfEnglandDioceseType">
        <xs:annotation>
          <xs:documentation>Church of England Diocese Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChurchOfEnglandParish" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Church of England Parish Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="RomanCatholicDiocese" minOccurs="0" nillable="true" type="sif:teachernetRomanCatholicDioceseType">
        <xs:annotation>
          <xs:documentation>Roman Catholic Diocese Code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="RomanCatholicParish" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Roman Catholic Parish</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LSCouncilCode" minOccurs="0" nillable="true" type="sif:teachernetLearningAndSkillsCouncilAreaCodeType">
        <xs:annotation>
          <xs:documentation>Learning and Skills Council area code</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CatchmentArea" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School catchment area description</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="LocationContext" type="sif:LocationContextType" />


  <!--Name-->

  <xs:complexType name="NameType">
    <xs:annotation>
      <xs:documentation>The Name element defines name information for a person and occurs within the PersonalInformation element.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Title" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A title or prefix associated with the name.  If any of: Mr, Mrs, Ms, Miss, Rev, Fr, Dr, Prof, Hon, Sir, Lord, Lady - these must be as shown, otherwise free text.  Note that title is not applicable to learners.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FamilyName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Full legal family name. That part of the person's name which is used to describe family, clan, tribal group, or marital association.  Note that this element is always required.  However, when associated with a contact it may not be possible to know the family name in which case you should add the available information to the FullName element.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GivenName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Full given name (forename) of the person.  Note that this element is always required.  However, when associated with a contact it may not be possible to know the given name in which case you should add the available information to the FullName element.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="MiddleNames" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>All other given or middle names, each separated with a single space character.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FamilyNameFirst" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indicator used to identify the naming conventions used by some predominantly non-European, ethnic or language groups and related to the display nature of a name.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="PreferredFamilyName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The family name preferred most by the person (as written).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PreferredFamilyNameFirst" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indicator used to identify the naming conventions used by some predominantly non-European, ethnic or language groups and related to the display nature of a name.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="PreferredGivenName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The given name preferred most by the person (as written).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Suffix" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Textual suffix like PHD, JP, BSc.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FullName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A free text field for the complete name for display purposes. If this is associated with a ContactPersonal record and the FamilyName and GivenName are not both specified, then this becomes mandatory.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required">
      <xs:annotation>
        <xs:documentation>Code that specifies what type of name this is.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="B">
            <xs:annotation>
              <xs:documentation>Birth name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="C">
            <xs:annotation>
              <xs:documentation>Current Legal name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="A">
            <xs:annotation>
              <xs:documentation>Alias / Alternative</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="R">
            <xs:annotation>
              <xs:documentation>Name of Record</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="F">
            <xs:annotation>
              <xs:documentation>Former Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="M">
            <xs:annotation>
              <xs:documentation>Married Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="P">
            <xs:annotation>
              <xs:documentation>Professional Name</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="Name" type="sif:NameType" />


  <!--NCYearGroup-->

  <xs:simpleType name="NCYearGroupType">
    <xs:restriction base="sif:UKNCYearGroupType">
      <xs:annotation>
        <xs:documentation>Code representing a National Curriculum Year Group.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="NCYearGroup" type="sif:NCYearGroupType" />


  <!--NCYearGroupList-->

  <xs:complexType name="NCYearGroupListType">
    <xs:annotation>
      <xs:documentation>This is a common element used to specify a collection of supported National Curriculum Year Groups. It is used in SchoolInfo and assessment-related objects.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:NCYearGroup" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="NCYearGroupList" type="sif:NCYearGroupListType" />


  <!--PersonalInformation-->

  <xs:complexType name="PersonalInformationType">
    <xs:annotation>
      <xs:documentation>This element contains basic personal and demographic information related to a person.  This element is part of all "personal" objects, including LearnerPersonal, WorkforcePersonal, and ContactPersonal.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:Name" />
      <xs:element name="OtherNames" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:Name" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Demographics" minOccurs="0" nillable="true" type="sif:DemographicsType">
        <xs:annotation>
          <xs:documentation>This element contains demographic data.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Email" minOccurs="0" nillable="true" type="sif:EmailType">
        <xs:annotation>
          <xs:documentation>The person's preferred e-mail address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherEmailList" minOccurs="0" nillable="true" type="sif:EmailListType">
        <xs:annotation>
          <xs:documentation>The person's other e-mail address(es).</xs:documentation>
        </xs:annotation>
        <xs:key name="EmailListKey2">
          <xs:selector xpath="./sif:Email" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="Address" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The person's current physical address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherAddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>The person's other address(es).</xs:documentation>
        </xs:annotation>
        <xs:key name="AddressListKey2">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="PhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The person's preferred phone number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherPhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>The person's other phone number(s).</xs:documentation>
        </xs:annotation>
        <xs:key name="PhoneNumberListKey1">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="ElectronicIdList" minOccurs="0" nillable="true" type="sif:ElectronicIdListType">
        <xs:annotation>
          <xs:documentation>Electronic identifier(s) associated with this person.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherIdList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="OtherId" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>An "other" identifier associated with this person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>Text that describes the type of this other ID.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="PersonalInformation" type="sif:PersonalInformationType" />


  <!--PhoneNumber-->

  <xs:complexType name="PhoneNumberType">
    <xs:annotation>
      <xs:documentation>This element represents a phone number and occurs within objects such as LearnerPersonal, WorkforcePersonal, etc.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Number">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>Phone number. Validation:  0-9 and a leading '+' (for international calls).</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[+]?[0-9]+" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Extension" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Phone number extension.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ListedStatus" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether or not the phone number is available to the public.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Listed" />
            <xs:enumeration value="Unlisted" />
            <xs:enumeration value="Unknown" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Type" use="required" type="sif:UKPhoneTypeType">
      <xs:annotation>
        <xs:documentation>Code that specifies the phone number type.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="PhoneNumber" type="sif:PhoneNumberType" />


  <!--PhoneNumberList-->

  <xs:complexType name="PhoneNumberListType">
    <xs:annotation>
      <xs:documentation>Lists phone numbers associated with an entity.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="PhoneNumber" maxOccurs="unbounded">
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="sif:PhoneNumberType">
              <xs:attribute name="SIF_Action" use="optional">
                <xs:annotation>
                  <xs:documentation>In a Change event, this flag can be used to indicate an element has been deleted from the parent list container. At a minimum the key for the list must also be present.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="Delete" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="PhoneNumberList" type="sif:PhoneNumberListType">
    <xs:key name="PhoneNumberListKey2">
      <xs:selector xpath="./sif:PhoneNumber" />
      <xs:field xpath="@Type" />
    </xs:key>
  </xs:element>


  <!--SchoolURN-->

  <xs:simpleType name="SchoolURNType">
    <xs:restriction base="sif:EstablishmentIdType">
      <xs:annotation>
        <xs:documentation>The alternate DfES assigned identifier for a school or other educational establishment.</xs:documentation>
      </xs:annotation>
    </xs:restriction>
  </xs:simpleType>

  <xs:element name="SchoolURN" type="sif:SchoolURNType" />


  <!--SubjectAreaList-->

  <xs:complexType name="SubjectAreaListType">
    <xs:annotation>
      <xs:documentation>A list of subject areas.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SubjectArea" maxOccurs="unbounded" type="sif:UKGeneralSubjectType">
        <xs:annotation>
          <xs:documentation>Subject matter.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SubjectAreaList" type="sif:SubjectAreaListType" />


  <!--DataModelTaskForce-->


  <!--SIF_Metadata-->

  <xs:complexType name="SIF_MetadataType">
    <xs:annotation>
      <xs:documentation>A commonly defined container for metadata elements defined within SIF.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="TimeElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:TimeElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="LifeCycle" minOccurs="0" nillable="true" type="sif:LifeCycleType" />
      <xs:element name="RightsElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:RightsElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="SIF_Metadata" type="sif:SIF_MetadataType" />


  <!--TimeElement-->

  <xs:complexType name="TimeElementType">
    <xs:annotation>
      <xs:documentation>A common metadata element designed to contain time data, both self-defined and by type.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Type" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
		This element is designed to contain the time period attached to an object.
		Very long periods (school year, quarter, etc.) and very small periods (second, millisecond, etc.) can be defined.
		This element provides a scoping description of the time metadata enclosed.
	</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Code" type="xs:token">
        <xs:annotation>
          <xs:documentation>
							This element provides a place for the application to send structured data (code values, unique identifier, timestamps).
							This code value can, depending upon the use case agreement between agents, be used to qualify the data in the </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
							Contains a human-readable description of the value in </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Value" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Contains the human-readable value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
      <xs:element name="EndDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
      <xs:element name="SpanGaps" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SpanGap" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Type" type="xs:normalizedString" />
                  <xs:element name="Code" type="xs:token" />
                  <xs:element name="Name" type="xs:normalizedString" />
                  <xs:element name="Value" type="xs:normalizedString" />
                  <xs:element name="StartDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
                  <xs:element name="EndDateTime" minOccurs="0" nillable="true" type="xs:dateTime" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="IsCurrent" type="xs:boolean">
        <xs:annotation>
          <xs:documentation>
							This element allows for the system to tag an object as being explicitly current.
							Although the baseline assumption in SIF is that objects are always current (default value is typically </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="TimeElement" type="sif:TimeElementType" />


  <!--LifeCycle-->

  <xs:complexType name="LifeCycleType">
    <xs:annotation>
      <xs:documentation>
								This common metadata element describes the life cycle of the object it represents, based on the IEEE LOM LifeCycle element [LOM].
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Created" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="DateTime" type="xs:dateTime" />
            <xs:element name="Creators" minOccurs="0" nillable="true">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Creator" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Name" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>
							Human-readable name of the data's creator. If the object contains system-generated data,
							the name should identify the creating service or application.
						</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                        <xs:element name="ID" type="xs:normalizedString">
                          <xs:annotation>
                            <xs:documentation>Unique identifier of the creator.  An email address or URI could be used here.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ModificationHistory" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Modified" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="By" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>Identifier of the system or person that modified the data.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="DateTime" type="xs:dateTime">
                    <xs:annotation>
                      <xs:documentation>The date/time the modification occurred.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Description" minOccurs="0" nillable="true" type="xs:string">
                    <xs:annotation>
                      <xs:documentation>Human readable description of the data modifications.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="TimeElements" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:TimeElement" minOccurs="0" maxOccurs="unbounded" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="LifeCycle" type="sif:LifeCycleType" />


  <!--RightsElement-->

  <xs:complexType name="RightsElementType">
    <xs:annotation>
      <xs:documentation>
								A common metadata element designed to carry any intellectual property or copyright information, based on the IEEE LOM Rights element [LOM].
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Cost" minOccurs="0" nillable="true" type="xs:boolean" />
      <xs:element name="FeesForUse" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="FeeForUse" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="UseType" type="xs:string">
                    <xs:annotation>
                      <xs:documentation>
							A description of the fee structure for this resource.
							Some resources may be licensed differently depending upon their context.
							For example, a content provider might charge one fee structure for resources used in the classroom and a separate fee for those
							resources available to parents from home.
						</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="MeteringType" type="xs:token" />
                  <xs:element name="MeteringURL" minOccurs="0" nillable="true" type="xs:anyURI" />
                  <xs:element name="PerUseCharge" minOccurs="0" nillable="true" type="sif:MonetaryAmountType" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CopyrightStatement" minOccurs="0" nillable="true" type="xs:string" />
      <xs:element name="TermsOfUse" minOccurs="0" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>

  <xs:element name="RightsElement" type="sif:RightsElementType" />


  <!--SIFUK-->


  <!--AssessmentResultComponent-->

  <xs:complexType name="AssessmentResultComponentType">
    <xs:annotation>
      <xs:documentation>A psychological construct measured by the assessment. Operationally, an assessment component or subtest is a class of scores within an assessment that might collectively represent a column within a mark book. Some assessments may consist of only one component, aspect or subtest although it is more common for assessments to have several.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The name used to identify this component or aspect.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The identifier used within the publishing application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ShortDescription" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Shorter description used for column headers in marksheets, etc.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Longer text describing features of the component.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="YearList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Year" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>A year with which the component grouping is applicable (by convention this is the end year of an academic year eg: 2007/8  resolves to 2008).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="AssessmentSubjectList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Subject" maxOccurs="unbounded" type="sif:UKAssessmentSubjectType">
              <xs:annotation>
                <xs:documentation>A subject area associated with this assessment component or aspect.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="StageList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Stage" maxOccurs="unbounded" type="sif:UKAssessmentStageType">
              <xs:annotation>
                <xs:documentation>The assessed stage (this may well be a Keystage List, but there is no reason why it couldn’t be used for other concepts such as NcYear applicability, Level  Exam Level GCSE, A-Level etc.).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="AssessmentResultGradeSetRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The gradeset associated with the component or aspect.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="MarkSetList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="MarkSet" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="StartDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>Start date of the range validity - ranges should not overlap. If not supplied then assumed to have always been valid in the past.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>End date of the range validity - ranges should not overlap.  If not supplied then assumed to always will be valid in the future.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="MinValue" type="xs:decimal">
                    <xs:annotation>
                      <xs:documentation>The minimum value in the range of marks.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="MaxValue" type="xs:decimal">
                    <xs:annotation>
                      <xs:documentation>The maximum value in the range of marks.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ComponentType">
        <xs:annotation>
          <xs:documentation>Defines the associated result format.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Comment" />
            <xs:enumeration value="Grade" />
            <xs:enumeration value="Mark" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ResultQualifier" type="sif:UKAssessmentResultQualifierType">
        <xs:annotation>
          <xs:documentation>Defines the format or type of result(s) awarded.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AssessmentMethod" type="sif:UKAssessmentMethodType">
        <xs:annotation>
          <xs:documentation>The method or format of the Assessment.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SupplierName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The supplier/originator/designer/owner of the aspect.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey2">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this aspect or subtest.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentResultComponent" type="sif:AssessmentResultComponentType">
    <xs:key name="AssessmentResultComponentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentResultComponentGroup-->

  <xs:complexType name="AssessmentResultComponentGroupType">
    <xs:annotation>
      <xs:documentation>High level container describing an assessment or test or common goal.  Each component group contains one or more components, also known as subtests, aspects, or sub-assessments.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Name of the assessment/test/goal.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The identifier used for this entity within the publishing application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SupplierName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The supplier/originator/designer/owner of the described component grouping.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ComponentList">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AssessmentResultComponentRefId" maxOccurs="unbounded" type="sif:IdRefType">
              <xs:annotation>
                <xs:documentation>A SIF identifier for an assessment result component.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey3">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies a component group.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentResultComponentGroup" type="sif:AssessmentResultComponentGroupType">
    <xs:key name="AssessmentResultComponentGroupKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentResultGradeSet-->

  <xs:complexType name="AssessmentResultGradeSetType">
    <xs:annotation>
      <xs:documentation>Represents a range of valid grades (over time) for a result.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The locally assigned identifier for this grade set.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The descriptive identifier for the grade set.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Notes" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Explanatory/usage notes for grade set.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SupplierName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The supplier/originator/designer/owner of the gradeset.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GradeSets">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="GradeSet" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="StartDate" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The start date from which this version is valid.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The end date until which this version is valid.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Grades">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Grade" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="Title" type="xs:normalizedString">
                                <xs:annotation>
                                  <xs:documentation>The visual representation of the grade.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                              <xs:element name="Description" type="xs:normalizedString">
                                <xs:annotation>
                                  <xs:documentation>The meaning of the grade.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                              <xs:element name="RankOrder" type="xs:unsignedInt">
                                <xs:annotation>
                                  <xs:documentation>The rank position of the grade within the set where the highest value is assumed to be the best. While duplicate ranks are allowed they are discouraged.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                              <xs:element name="NumericValue" type="xs:decimal">
                                <xs:annotation>
                                  <xs:documentation>The numeric equivalent value of the grade.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey4">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this grade set.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentResultGradeSet" type="sif:AssessmentResultGradeSetType">
    <xs:key name="AssessmentResultGradeSetKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentLearnerSet-->

  <xs:complexType name="AssessmentLearnerSetType">
    <xs:annotation>
      <xs:documentation>This object describes learners assigned to take an assessment or component grouping (can represent a markbook, exam entry, or an cohort objective).</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="CreationDateTime" type="xs:dateTime">
        <xs:annotation>
          <xs:documentation>Date/time assignment is created.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Value supplied by publishing vendor/supplier.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LearnerList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="LearnerPersonalRefId" maxOccurs="unbounded" type="sif:IdRefType">
              <xs:annotation>
                <xs:documentation>The ID (GUID) of a learner assigned to take an assessment.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SchoolGroupRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>Optional reference to the class group(s) to which this will be/are drawn.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WorkforcePersonalRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The ID (GUID) that uniquely identifies the teacher or staff member who created the learner set.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey5">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies an instance of this object.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AssessmentResultComponentGroupRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The assessment result component group (test or assessment) associated with the set of listed learners.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentLearnerSet" type="sif:AssessmentLearnerSetType">
    <xs:key name="AssessmentLearnerSetKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentSession-->

  <xs:complexType name="AssessmentSessionType">
    <xs:annotation>
      <xs:documentation>A session is an event where an activity is performed by or on a learner set which contributes to the attainment of the objective. Occurs at a place and time (e.g., a test is taken, assignments are handed in, a test is marked).</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SessionDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>The date at which the activity takes place.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolInfoRefId" minOccurs="0" nillable="true" />
      <xs:element name="Activity" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>The activity which takes place.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Test" />
            <xs:enumeration value="Homework" />
            <xs:enumeration value="Exam" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Status" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>The current status of the session.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Planned" />
            <xs:enumeration value="Complete" />
            <xs:enumeration value="Published" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="StaffList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="WorkforcePersonalRefId" maxOccurs="unbounded" type="sif:IdRefType">
              <xs:annotation>
                <xs:documentation>The GUID that uniquely identifies a teacher or other staff member responsible for administering or assisting the learner with this assessment.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey6">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this session.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AssessmentLearnerSetRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the set of people the session refers to.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentSession" type="sif:AssessmentSessionType">
    <xs:key name="AssessmentSessionKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentResponseComponentGroup-->

  <xs:complexType name="AssessmentResponseComponentGroupType">
    <xs:annotation>
      <xs:documentation>High level container describing components of the actual assessment or test paper/quiz taken by the learner. A response component group contains one or more components.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Name of the assessment/test/taken.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The identifier used for this entity within the publishing application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SupplierName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The supplier/originator/designer/owner of the described component grouping.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ComponentList">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AssessmentResponseComponentRefId" maxOccurs="unbounded" type="sif:IdRefType">
              <xs:annotation>
                <xs:documentation>The SIF identifier for an assessment response component.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey7">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies an instance of this object.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AssessmentSessionRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the assessment session in which the responses were collected.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentResponseComponentGroup" type="sif:AssessmentResponseComponentGroupType">
    <xs:key name="AssessmentResponseComponentGroupKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerAssessmentResult-->

  <xs:complexType name="LearnerAssessmentResultType">
    <xs:annotation>
      <xs:documentation>A single result for a learner.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SchoolInfoRefId" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The school at which the assessment was taken.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AchievementDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>The date the results were achieved.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Result" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A grade title, a comment, or a mark (dependent on ComponentType of associated aspect). Marks and grades should be valid in the grade set or mark set on the date the assessment was achieved.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ResultStatus" type="sif:UKAssessmentResultStatusType">
        <xs:annotation>
          <xs:documentation>Indicates whether the result is estimated, an interim result, provisional, actual result or a target.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AssessmentSessionList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AssessmentSessionRefId" maxOccurs="unbounded" type="sif:IdRefType">
              <xs:annotation>
                <xs:documentation>The ID (GUID) that uniquely identifies the session associated with the result.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:annotation>
          <xs:documentation>Use extended elements to define additional information to be preserved with this result data including any learner demographic data known to be valid at the time of assessment and not otherwise specified.</xs:documentation>
        </xs:annotation>
        <xs:key name="SIF_ExtendedElementsKey8">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this result.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AssessmentComponentRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The assessment component that the result is for.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner achieving the results.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerAssessmentResult" type="sif:LearnerAssessmentResultType">
    <xs:key name="LearnerAssessmentResultKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerAssessmentResponseSet-->

  <xs:complexType name="LearnerAssessmentResponseSetType">
    <xs:annotation>
      <xs:documentation>The set of all responses provided by a learner while taking an assessment. This information represents the raw input data that is then evaluated to produce one or more scores, marks, or grades for the learner.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Items">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Item" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Response" type="xs:string">
                    <xs:annotation>
                      <xs:documentation>Learner selection or response in raw format.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ResponseStatus" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>Status of the response.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Correct" />
                        <xs:enumeration value="Incorrect" />
                        <xs:enumeration value="Complete" />
                        <xs:enumeration value="PartiallyComplete" />
                        <xs:enumeration value="Viewed" />
                        <xs:enumeration value="NotViewed" />
                        <xs:enumeration value="NotAnswered" />
                        <xs:enumeration value="Attempted (viewed but no response given)" />
                        <xs:enumeration value="Incomplete" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="ResponseTime" minOccurs="0" nillable="true" type="xs:duration">
                    <xs:annotation>
                      <xs:documentation>The length of time the learner took to respond.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Mark" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The mark achieved for this item as evaluated by the assessment tool at the time of assessment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Group" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The item group within the assessment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ItemName" minOccurs="0" nillable="true" type="xs:token">
                    <xs:annotation>
                      <xs:documentation>Identifies the item on the assessment by name.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ItemNumber" minOccurs="0" nillable="true" type="xs:token">
                    <xs:annotation>
                      <xs:documentation>Identifies the item by number on the assessment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="OrderAsked" minOccurs="0" nillable="true" type="xs:decimal">
                    <xs:annotation>
                      <xs:documentation>The order in which the item was asked.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="NumberOfAttempts" minOccurs="0" nillable="true" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>The number of times a learner changes their answer or attempts a response.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey9">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this response set.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AssessmentResponseComponentRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the assessment response component that the responses are associated with</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the Learner for whom these responses are.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerAssessmentResponseSet" type="sif:LearnerAssessmentResponseSetType">
    <xs:key name="LearnerAssessmentResponseSetKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--AssessmentResponseComponent-->

  <xs:complexType name="AssessmentResponseComponentType">
    <xs:annotation>
      <xs:documentation>This object describes a single component of the assessment or test paper/quiz taken by a learner. A response component has one or more responses.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Name" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The identifier used within the publishing application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Optional reference to the school associated with the administration.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SupplierName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The supplier/originator/designer/owner of the described component.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Longer text describing features of the component.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="YearList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Year" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>A year with which the component grouping is applicable (by convention this is the end year of an academic year eg: 2007/8 resolves to 2008).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey10">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID that uniquely identifies an instance of this object.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="AssessmentResponseComponent" type="sif:AssessmentResponseComponentType">
    <xs:key name="AssessmentResponseComponentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerAttendance-->

  <xs:complexType name="LearnerAttendanceType">
    <xs:annotation>
      <xs:documentation>This object provides attendance information for a particular learner in a particular school for a particular period of time. The time can be specified as before, during, or after school and may be for any period of time, including lessons.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="AttendanceDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>The date of the attendance period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TimeIn" minOccurs="0" nillable="true" type="xs:time">
        <xs:annotation>
          <xs:documentation>The time when the learner began the attendance period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartTime" minOccurs="0" nillable="true" type="xs:time">
        <xs:annotation>
          <xs:documentation>The time the attendance period started. StartTime is required when this object represents a lesson</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FinishTime" minOccurs="0" nillable="true" type="xs:time">
        <xs:annotation>
          <xs:documentation>The time the attendance period finished.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Session" minOccurs="0" nillable="true" type="sif:UKAttendanceSessionType">
        <xs:annotation>
          <xs:documentation>The session within which this attendance mark applies (e.g. AM/PM).  Session is required when StartTime is not specified and the object refers to a session attendance mark (i.e. AttendanceDomain is session).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SessionLabel" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A label associated with the session to further describe the session, when applicable.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AttendanceDomain" type="sif:UKAttendanceDomainType">
        <xs:annotation>
          <xs:documentation>The attendance type.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AttendanceCode" type="sif:UKAttendanceCodeType">
        <xs:annotation>
          <xs:documentation>The attendance mark/code.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AttendanceNote" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Additional comments. Required when record is specified as a correction.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="RecordTimestamp" minOccurs="0" nillable="true" type="xs:dateTime">
        <xs:annotation>
          <xs:documentation>The date/time when recorded. When more than one record exists using the same RefId, the record with the latest timestamp is assumed to be the most current. This is possible when a record is republished due to corrections.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="InputSource" type="sif:UKAttendanceSourceType">
        <xs:annotation>
          <xs:documentation>The source of the attendance record data.  Could be Workforce member, biometric device, or other.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="WorkforcePersonalRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The ID (GUID) of the staff member responsible for recording this attendance information.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolGroupRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The ID (GUID) of the group that this attendance applies to. Useful when the attendance period corresponds to a lesson time.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey11">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) assigned to uniquely identify this attendance record.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner for which this attendance mark is recorded.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The school where the attendance mark was taken.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerAttendance" type="sif:LearnerAttendanceType">
    <xs:key name="LearnerAttendanceKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--Identity-->

  <xs:complexType name="IdentityType">
    <xs:annotation>
      <xs:documentation>This object allows a system that stores network identities and/or passwords to share them with other applications through SIF. The provider of the Identity object may only support providing an identity or a password, or it may support both.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_RefId">
        <xs:complexType>
          <xs:annotation>
            <xs:documentation>The SIF RefId of a LearnerPersonal, WorkforcePersonal, or ContactPersonal object.</xs:documentation>
          </xs:annotation>
          <xs:simpleContent>
            <xs:extension base="sif:IdRefType">
              <xs:attribute name="SIF_RefObject" use="required">
                <xs:annotation>
                  <xs:documentation>The type of SIF object that the SIF_RefId attribute identifies.</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="LearnerPersonal" />
                    <xs:enumeration value="WorkforcePersonal" />
                    <xs:enumeration value="ContactPersonal" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
      <xs:element name="AuthenticationSource">
        <xs:annotation>
          <xs:documentation>The type of source system that produced this Identityobject.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="UKAccessShibboleth" />
            <xs:enumeration value="MSActiveDirectory" />
            <xs:enumeration value="NovellNDS" />
            <xs:enumeration value="OpenDirectory" />
            <xs:enumeration value="Other" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="IdentityAssertions" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="IdentityAssertion" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The identification string for this user.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="SchemaName" use="required" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>The name of the field.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
        <xs:key name="IdentityAssertionsKey1">
          <xs:selector xpath="./sif:IdentityAssertion" />
          <xs:field xpath="@SchemaName" />
        </xs:key>
      </xs:element>
      <xs:element name="PasswordList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Password" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>A representation of the user's password using the given algorithm.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:base64Binary">
                    <xs:attribute name="Algorithm" use="required">
                      <xs:annotation>
                        <xs:documentation>The method used to encrypt the user's password. See the implementation details below.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="MD5" />
                          <xs:enumeration value="SHA1" />
                          <xs:enumeration value="DES" />
                          <xs:enumeration value="TripleDES" />
                          <xs:enumeration value="RC2" />
                          <xs:enumeration value="AES" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                    <xs:attribute name="KeyName" use="required" type="xs:normalizedString">
                      <xs:annotation>
                        <xs:documentation>The name of the key to be used for decryption of the password. Left blank for hash algorithms (MD5 and SHA1).</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey12">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The SIF RefId that uniquely identifies this object.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="Identity" type="sif:IdentityType">
    <xs:key name="IdentityKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--ContactPersonal-->

  <xs:complexType name="ContactPersonalType">
    <xs:annotation>
      <xs:documentation>This object describes any person created as a contact at a school, LEA, or other institution, or associated with a Learner or other Workforce person.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:PersonalInformation" />
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey13">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of a person referenced as a contact. Note that this GUID may be the same GUID assigned to a LearnerPersonal and/or WorkforcePersonal object record.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="ContactPersonal" type="sif:ContactPersonalType">
    <xs:key name="ContactPersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LAInfo-->

  <xs:complexType name="LAInfoType">
    <xs:annotation>
      <xs:documentation>This object contains information about a Local Authority (LA).  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LAId" />
      <xs:element ref="sif:LAName" />
      <xs:element name="LAFullName" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The LA's full name.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LAURL" minOccurs="0" nillable="true" type="xs:anyURI">
        <xs:annotation>
          <xs:documentation>URL for the main LA website.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LAAddress" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The LA's main address information.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>A list of the LA's other addresses, if any.</xs:documentation>
        </xs:annotation>
        <xs:key name="AddressListKey3">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="LAPhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The LA's primary phone number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>A list of the LA's other phone number(s).</xs:documentation>
        </xs:annotation>
        <xs:key name="PhoneNumberListKey3">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="LAContactList" minOccurs="0" nillable="true" type="sif:ContactListType">
        <xs:annotation>
          <xs:documentation>A list of contacts within the LA.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey14">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID of the LA whose information this is.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LAInfo" type="sif:LAInfoType">
    <xs:key name="LAInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerAttendanceSummary-->

  <xs:complexType name="LearnerAttendanceSummaryType">
    <xs:annotation>
      <xs:documentation>This object provides a summary of a learner's daily attendance and membership information for a given school during the time period between the StartDate and EndDate, inclusive. As such, there may be multiple instances of this object for a learner in a school over the course of an academic school year.  Note that sessions are defined by each school and in most cases is two but can be any number in the range 1-10.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" />
      <xs:element name="StartDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Starting date of this attendance reporting period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Ending date of this attendance reporting period.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ReasonsList">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Reason" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" type="sif:UKAttendanceCodeType">
                    <xs:annotation>
                      <xs:documentation>The attendance code.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Type">
                    <xs:annotation>
                      <xs:documentation>The attendance code type.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Absent" />
                        <xs:enumeration value="EarlyDeparture" />
                        <xs:enumeration value="Late" />
                        <xs:enumeration value="Partial" />
                        <xs:enumeration value="Present" />
                        <xs:enumeration value="Other" />
                        <xs:enumeration value="NA" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Status">
                    <xs:annotation>
                      <xs:documentation>The authorised status of the attendance code.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Authorised" />
                        <xs:enumeration value="Unauthorised" />
                        <xs:enumeration value="Unknown" />
                        <xs:enumeration value="NA" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Total" type="xs:unsignedInt">
                    <xs:annotation>
                      <xs:documentation>The total number of sessions attributed to this reason between StartDate and EndDate for the specified reason.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SessionsAttendedTotal" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner attended school when school was in session between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SessionsPossible" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was present plus the number of sessions the learner was absent (authorised and unauthorised) when school was in session during the period between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AuthorisedAbsences" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was absent from school with a valid excuse when school was in session between the StartDate and EndDate, inclusive. Note that ts column can be derived from Reason Status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UnauthorisedAbsences" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions the learner was absent from school without a valid excuse when school was in session between the StartDate and EndDate, inclusive.  Note that this column can be derived from Reason Status.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlternativeTuitionHours" minOccurs="0" nillable="true" type="sif:UKTuitionHoursType">
        <xs:annotation>
          <xs:documentation>Number of Alternative Tuition (whole) hours attended between the StartDate and EndDate, inclusive.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey15">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner for whom this attendance information is being reported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the school for which this attendance information is being reported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerAttendanceSummary" type="sif:LearnerAttendanceSummaryType">
    <xs:key name="LearnerAttendanceSummaryKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@LearnerPersonalRefId" />
      <xs:field xpath="@SchoolInfoRefId" />
      <xs:field xpath="./sif:SchoolYear" />
      <xs:field xpath="./sif:StartDate" />
      <xs:field xpath="./sif:EndDate" />
    </xs:key>
  </xs:element>


  <!--LearnerContact-->

  <xs:complexType name="LearnerContactType">
    <xs:annotation>
      <xs:documentation>This object contains information related to a contact person for a learner.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Relationship" type="sif:UKRelationshipType">
        <xs:annotation>
          <xs:documentation>Defines the relationship of the contact to the learner.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="sif:LocalIdType">
        <xs:annotation>
          <xs:documentation>The locally-assigned identifier for this contact.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ContactFlags">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ParentLegalGuardian" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the individual have parental or legal guardianship responsibility for the learner?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PickupRights" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact have pickup rights?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="LivesWith" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the learner live with this contact?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="AddressDisclosure" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Can address information be disclosed?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EmailCommunication" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact prefer written communcation via email?  Otherwise, postal mail will be used.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="EmergencyContact" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Should this contact be notified in case of emergency?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="DisciplinaryContact" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is this person to be contacted in case of disciplinary action?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="HomeDuringDay" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is the contact at home during normal daytime hours?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="MemberOfArmedForces" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Is this person a member of the armed forces?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PrimaryCareProvider" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does this person provide daily living or personal assistance to the learner?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="RequiresInterpreter" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Does the contact need a translator or interpreter?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="TransferAddress" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Should this contact be transferred with the Learner if and when the Learner moves?</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ContactSequence" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Number (1-10) indicating the order in which the person should be contacted.  Note that 2 or more contacts may have the same value.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="1" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ContactSequenceSource" minOccurs="0" nillable="true" type="sif:UKSourceCodeType">
        <xs:annotation>
          <xs:documentation>Indicates the person who provided the contact sequence order.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey16">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner whose contact this is.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ContactPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this contact.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerContact" type="sif:LearnerContactType">
    <xs:key name="LearnerContactKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@LearnerPersonalRefId" />
      <xs:field xpath="@ContactPersonalRefId" />
    </xs:key>
  </xs:element>


  <!--LearnerExclusion-->

  <xs:complexType name="LearnerExclusionType">
    <xs:annotation>
      <xs:documentation>This object contains information related to a learner being excluded from one or more sessions of school.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Category">
        <xs:annotation>
          <xs:documentation>Exclusion category.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="FIXD">
              <xs:annotation>
                <xs:documentation>Fixed</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="PERM">
              <xs:annotation>
                <xs:documentation>Permanent</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="LNCH">
              <xs:annotation>
                <xs:documentation>Lunchtime</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Reason" type="sif:UKExclusionReasonType">
        <xs:annotation>
          <xs:documentation>Reason for exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date exclusion takes effect irrespective of any review or appeal. Normally this will not be the same as Date of Leaving (exitDate) and it should be noted that the learner will remain on the schools's roll for a period after this start date.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartSession">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Session to begin exclusion, starting with 1 for the first session of the day. In most cases there are two sessions per day but this is not always the case.  Validation: Number between 1 and 10.</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="1" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date exclusion concludes.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ActualSessions" minOccurs="0" nillable="true" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>Total number of sessions for which the exclusion is in effect. For lunchtime exclusions, each lunchtime for which the exclusion applies is one session. For fixed term and permanent exclusions, this is one session during the school day. For exclusions that are followed by reinstatement the actual, not the planned number of sessions should be recorded. (Exclusion sessions are used only to calculate the total allowable in a term or academic year and are not the same as an attendance session.)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Appeal" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is there an appeal against permanent exclusion?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="AppealDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date for appeal against permanent exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AppealResult" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>The result of the appeal against permanent exclusion.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="R">
              <xs:annotation>
                <xs:documentation>Reinstatement</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="E">
              <xs:annotation>
                <xs:documentation>Exclusion stands</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="O">
              <xs:annotation>
                <xs:documentation>Reinstatement would be appropriate but not in best interest of learner given other circumstances</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ReinstatementDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date learner was reinstated, if appropriate.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HeadTeacherNotificationDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date head teacher notified parents, school LA, and home LA (if different) of exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GovernorMeetingDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of Governors' meeting with respect to exclusion.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HearingNoticeOfAppealDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of exclusion hearing/expiration of notice of appeal.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey17">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of this exclusion.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the excluded learner.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerExclusion" type="sif:LearnerExclusionType">
    <xs:key name="LearnerExclusionKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerGroupEnrolment-->

  <xs:complexType name="LearnerGroupEnrolmentType">
    <xs:annotation>
      <xs:documentation>This object contains information about a learner's enrolment in a course (teaching group) or other (class, homeroom or registration) group.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" />
      <xs:element name="EntryDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date from when this enrolment is valid.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date on which the learner's enrolment ends or has ended.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey18">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this LearnerGroupEnrolment entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner to whom the enrolment information applies.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolGroupRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the group in which this learner is enroled.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerGroupEnrolment" type="sif:LearnerGroupEnrolmentType">
    <xs:key name="LearnerGroupEnrolmentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerPersonal-->

  <xs:complexType name="LearnerPersonalType">
    <xs:annotation>
      <xs:documentation>This object contains personal information related to a learner. As most
learners are enroled in the school or establishment publishing this object,
basic enrolment information is also provided to aid in overall SIF
performance.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="sif:LocalIdType">
        <xs:annotation>
          <xs:documentation>The locally-assigned identifier for this learner. This can be the internal pupil number or any other number as determined by the publishing agent.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AlertMsg" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>This is an alert message that is associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required">
                      <xs:annotation>
                        <xs:documentation>This attribute specifies what type of alert message this is.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Legal" />
                          <xs:enumeration value="Discipline" />
                          <xs:enumeration value="Educational" />
                          <xs:enumeration value="Other" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalAlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="MedicalAlertMsg" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Medical alert associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Severity" use="required">
                      <xs:annotation>
                        <xs:documentation>The level of severity of this medical alert.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Low" />
                          <xs:enumeration value="Moderate" />
                          <xs:enumeration value="High" />
                          <xs:enumeration value="Severe" />
                          <xs:enumeration value="Unknown" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:PersonalInformation" />
      <xs:element name="UIPI" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Unique Internal Pupil Number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UPN" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Unique Pupil Number (UPN) allocated to each learner in maintained schools in England and Wales. It is an identifier for use in the educational context during a child's school career only and subject to Data Protection restrictions.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UPNAllocationDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date UPN was allocated by the LA.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="FormerUPNList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="UPN" maxOccurs="unbounded" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>A former UPN assigned to the pupil whilst at a school (eg temporary UPN was allocated when the pupil was first admitted to the school but subsequently replaced by the permanent UPN being retrieved from a previous school).</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ULN" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>Unique Learner Number (ULN), a 10-digit number where zero is not allowed as the leading digit.</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[1-9][0-9]{9}" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="FamilyStructure" minOccurs="0" nillable="true" type="sif:UKFamilyStructureType">
        <xs:annotation>
          <xs:documentation>Indicates type of family structure learner is living in.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="InCare">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Current">
              <xs:annotation>
                <xs:documentation>Indicates if the learner is "looked after" currently.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                  <xs:enumeration value="Unknown" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="Type" minOccurs="0" nillable="true" type="sif:UKInCareTypeType">
              <xs:annotation>
                <xs:documentation>Type of care the learner is in (eg fostering, children's home).</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element ref="sif:LAId" />
            <xs:element name="AtCurrentSchool" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has ever been in care while at this school.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="PersonalEducationPlan" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner in care has a personal education plan.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ConnexionsAgreement" minOccurs="0" nillable="true" type="sif:UKConnexionsAgreementType">
        <xs:annotation>
          <xs:documentation>Indicates if parents have consented to allow learner data to be shared with Connexions (Middle, Secondary and Special Schools only).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ChildProtectionRegister" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="IsRegistered">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has been registered on the Child Protection Register.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                  <xs:enumeration value="Unknown" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
            <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
              <xs:annotation>
                <xs:documentation>The LA in which the learner was registered for protection.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="SiblingRegistered" minOccurs="0" nillable="true">
              <xs:annotation>
                <xs:documentation>Indicates if the learner has a sibling that is also on the Child Protection Register.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="Yes" />
                  <xs:enumeration value="No" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="GiftedTalented" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner qualifies for Gifted/Talented status.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="HomeLA" minOccurs="0" nillable="true" type="sif:LAIdType">
        <xs:annotation>
          <xs:documentation>The LA in which the learner lives but not necessarily the one in which they attend school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LearnerIdentity" minOccurs="0" nillable="true" type="sif:UKLearnerIdentityType">
        <xs:annotation>
          <xs:documentation>Classification of national identity. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ModeOfTravel" minOccurs="0" nillable="true" type="sif:UKUsualModeOfTravelType">
        <xs:annotation>
          <xs:documentation>The usual mode of travel normally used by the learner for the greater part (in distance) of the journey to and from school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Pregnant" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner is pregnant.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SiblingList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Sibling" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LearnerPersonalRefId" type="sif:IdRefType">
                    <xs:annotation>
                      <xs:documentation>The ID (GUID) of the LearnerPersonal record for this sibling.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="UIPI" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>The Unique Internal Pupil Number for a sibling of this learner.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="UniformAllowance" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Learner is paid a uniform allowance.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="CurrentSchoolEnrolment" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:LAId" />
            <xs:element ref="sif:EstablishmentId" />
            <xs:element ref="sif:NCYearGroup" />
          </xs:sequence>
          <xs:attribute name="LearnerSchoolEnrolmentRefId" use="required" type="sif:IdRefType">
            <xs:annotation>
              <xs:documentation>The ID (GUID) of the LearnerSchoolEnrolment record associated with this learner that is also designated as the current or current main enrolment.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="PreviousEstablishmentList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="PreviousEstablishment" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>Establishment Number for this school</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentName" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>School's name as indicated on the Annual Schools Census.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The 3-digit LA number assigned by DfES.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EntryDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The date the learner entered this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
                    <xs:annotation>
                      <xs:documentation>The date the learner exited this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="ExitType" minOccurs="0" nillable="true" type="sif:UKLeavingReasonType">
                    <xs:annotation>
                      <xs:documentation>Code indicating the type of exit from this school or establishment.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LastSchool" minOccurs="0" nillable="true">
                    <xs:annotation>
                      <xs:documentation>An indication of whether the described school or establishment was the last establishment the learner attended. Note that it is possible that more than one establishment can be marked as LastSchool when a learner is enroled in more than one school simultaneously.</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="Yes" />
                        <xs:enumeration value="No" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey19">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner. Note that this GUID may be the same one assigned to this person when this person is either a contact (ContactPersonal) or a member of the workforce (WorkforcePersonal).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerPersonal" type="sif:LearnerPersonalType">
    <xs:key name="LearnerPersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerSchoolEnrolment-->

  <xs:complexType name="LearnerSchoolEnrolmentType">
    <xs:annotation>
      <xs:documentation>This object defines information related to a learner's enrolment within a
particular school or establishment.The current status on an enrolment is
based on EntryDate and ExitDate. Future enrolments are supported where
EntryDate is in the future. ExitDate may also be specified as a future
occurance.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="EntryDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>The date from when this enrolment is valid.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NCYearGroupActual" type="sif:NCYearGroupType">
        <xs:annotation>
          <xs:documentation>The year group in which the learner is taught for the majority of their time, regardless of their chronological age.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ClassType" minOccurs="0" nillable="true" type="sif:UKClassTypeType">
        <xs:annotation>
          <xs:documentation>Indicates if the learner is in a nursery class. Must be set to 'O'  if age on August 31 is &gt;= 6.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>The ending date of this enrolment. If the learner has exited before the end of the school year, ExitDate must have a value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ExitType" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Code" type="sif:UKLeavingReasonType">
              <xs:annotation>
                <xs:documentation>Code indicating the type of exit for this enrolment.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="Destination" minOccurs="0" nillable="true">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Code" type="sif:UKLeavingDestinationType">
                    <xs:annotation>
                      <xs:documentation>Code indicating the destination type.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The LA number for destination school or college.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES number for destination school or college.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Name" minOccurs="0" nillable="true" type="xs:normalizedString">
                    <xs:annotation>
                      <xs:documentation>Name of institution/employer of learner's destination.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Sessions" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>Number of learner sessions (half days) per week.  A maximum of 10 is possible per week.</xs:documentation>
            </xs:annotation>
            <xs:maxInclusive value="10" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="FTPTStatus" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>An indication of whether the learner is enroled only part time.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Boarder" minOccurs="0" nillable="true" type="sif:UKBoarderTypeType">
        <xs:annotation>
          <xs:documentation>Indicates whether the learner is a boarder at the school or not.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AlternativeTuition" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Category" type="sif:UKTuitionCategoryType">
              <xs:annotation>
                <xs:documentation>Reason for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="StartDate" type="xs:date">
              <xs:annotation>
                <xs:documentation>Beginning date for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
              <xs:annotation>
                <xs:documentation>End date for alternative tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="TotalHours" minOccurs="0" nillable="true" type="xs:unsignedInt">
              <xs:annotation>
                <xs:documentation>The total number of hours provided for with the tuition.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ProvisionType" type="sif:UKAlternativeTuitionProvisionTypeType">
              <xs:annotation>
                <xs:documentation>Alternative tuition provision type.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey20">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies a particular enrolment.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner to whom this information is linked.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the school to which this enrolment applies.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MembershipType" use="required" type="sif:UKLearnerEnrolmentStatusType">
      <xs:annotation>
        <xs:documentation>The type of this enrolment as it relates to the school identified by SchoolInfoRefId.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerSchoolEnrolment" type="sif:LearnerSchoolEnrolmentType">
    <xs:key name="LearnerSchoolEnrolmentKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--LearnerSpecialNeeds-->

  <xs:complexType name="LearnerSpecialNeedsType">
    <xs:annotation>
      <xs:documentation>This object contains information regarding a special education need (SEN)
for a learner when provisioned within a school or establishment. A new
object exists for each provision. The current status of any provision can be
determined by querying StartDate and EndDate. Both dates are allowed to
be in the future. The publisher of this object must support queries on these
dates.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="UnitMember" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is this learner with special education needs (SEN) in a mainstream school a member of an SEN Unit (sometimes called special class)?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ResourcedProvisionMember" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is this learner with special education needs (SEN) in a mainstream school a member of a resourced provision?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="NextReviewDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date of learner's next SEN review.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Provision" type="sif:UKSENProvisionType">
        <xs:annotation>
          <xs:documentation>A provision (stage) accommodated for this learner within this school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StartDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date when learner was placed on the current SEN stage. Date may be in the
future.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" minOccurs="0" nillable="true" type="xs:date">
        <xs:annotation>
          <xs:documentation>Date when learner finished this SEN stage.  Assumed to be current unless a date in the past is specified here.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SENTypeList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SENType" maxOccurs="unbounded">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>The code for a Special Educational Need (type) for this learner. </xs:documentation>
                </xs:annotation>
                <xs:simpleContent>
                  <xs:extension base="sif:UKSENTypeType">
                    <xs:attribute name="Ranking" use="required" type="xs:unsignedInt">
                      <xs:annotation>
                        <xs:documentation>A value (starting at 1) indicating the order of significance of special educational need in relation to other SEN types listed here.</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="AdviceAndAssessmentLevel" minOccurs="0" nillable="true" type="sif:UKAdviceAndAssessmentWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Advice and Assessment. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GroupingAndSupportLevel" minOccurs="0" nillable="true" type="sif:UKGroupingAndSupportWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Grouping and Support. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SpecialisedResourcesLevel" minOccurs="0" nillable="true" type="sif:UKSpecialisedResourcesWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Specialised Resources. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TeachingMethodsLevel" minOccurs="0" nillable="true" type="sif:UKCurriculumAndTeachingMethodsWalesType">
        <xs:annotation>
          <xs:documentation>Level of provision for Curriculum and Teaching Methods. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EmbeddedBasicSkillsSupport" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Provision of Embedded Basic Skills support beyond the attainment of formal qualification.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:UKBasicSkillsSupportWalesType" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="LiteracyLevelStart" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of literacy at start of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LiteracyLevelEnd" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of literacy achieved by the end of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NumeracyLevelStart" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of numeracy at start of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NumeracyLevelEnd" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Level of numeracy achieved by the end of this SEN stage. (Wales)</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NationalCurriculumList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="NationalCurriculum" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="Modification">
                    <xs:annotation>
                      <xs:documentation>How is the National Curriculum used for this learner?</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                      <xs:restriction base="xs:token">
                        <xs:enumeration value="M">
                          <xs:annotation>
                            <xs:documentation>Modified</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                        <xs:enumeration value="N">
                          <xs:annotation>
                            <xs:documentation>Disapplied</xs:documentation>
                          </xs:annotation>
                        </xs:enumeration>
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                  <xs:element name="Subject" type="sif:UKGeneralSubjectType">
                    <xs:annotation>
                      <xs:documentation>National Curriculum subject(s) for which modification or disapplication applies.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalFlag" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Is there medical information on this Learner?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ParamedicalSupport" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Type of therapy needed by Learner.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="P">
              <xs:annotation>
                <xs:documentation>Physiotherapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="S">
              <xs:annotation>
                <xs:documentation>Speech Therapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="O">
              <xs:annotation>
                <xs:documentation>Occupational Therapy</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="MedicalNotes" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Summary of learner's medical condition.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey21">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies a learner special need (provision).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LearnerPersonalRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the learner with special educational needs.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies the school provisioned to work with the learner's special needs.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="LearnerSpecialNeeds" type="sif:LearnerSpecialNeedsType" />


  <!--PersonPicture-->

  <xs:complexType name="PersonPictureType">
    <xs:annotation>
      <xs:documentation>This object either contains or references a person's picture.  Compare with US/Canada objects: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_RefObjectList" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_RefObject">
              <xs:annotation>
                <xs:documentation>The name of a "personal" object that can be requested for this person using the specified PersonRefId.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:token">
                  <xs:enumeration value="ContactPersonal" />
                  <xs:enumeration value="LearnerPersonal" />
                  <xs:enumeration value="WorkforcePersonal" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:SchoolYear" />
      <xs:element name="PictureSource">
        <xs:complexType>
          <xs:annotation>
            <xs:documentation>This element defines the picture. If the Type attribute is URL, this is the location of the picture in [JPEG] format; if Type is JPEG, this is the [JPEG] image data encoded using the Base64 Content-Transfer-Encoding defined in Section 6.8 of [RFC 2045].</xs:documentation>
          </xs:annotation>
          <xs:simpleContent>
            <xs:extension base="sif:URIOrBinaryType">
              <xs:attribute name="Type" use="required">
                <xs:annotation>
                  <xs:documentation>The way the picture is specified (URL or JPEG).</xs:documentation>
                </xs:annotation>
                <xs:simpleType>
                  <xs:restriction base="xs:token">
                    <xs:enumeration value="URL" />
                    <xs:enumeration value="JPEG" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:attribute>
            </xs:extension>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
      <xs:element name="OKToPublish" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Can the picture be published?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey22">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="PersonRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>This is the GUID of the person whose picture this is.  It is important to note that using the same GUID a person may have a LearnerPersonal record, a WorkforcePersonal record, and a ContactPersonal record all at the same time.  This same picture is applicable regardless of the associated object type(s).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="PersonPicture" type="sif:PersonPictureType">
    <xs:key name="PersonPictureKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@PersonRefId" />
    </xs:key>
  </xs:element>


  <!--SchoolGroupType-->

  <xs:complexType name="SchoolGroupTypeType">
    <xs:annotation>
      <xs:documentation>This object describes a high-level course or class grouping organised and/or taught within a school or establishment.  Note that not all courses are based upon a subject area.  One such course is "Class Group" which is the same as a homeroom or registration group.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Code" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The school defined local code for the group (or course).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Title" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Title associated with this group.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Textual description for the group.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SubjectAreaList" minOccurs="0" nillable="true" type="sif:SubjectAreaListType">
        <xs:annotation>
          <xs:documentation>Subject matter areas taught as part of the course, if any.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey23">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID that uniquely identifies a school course.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that references the school or establishment where the course is offered or the registration group exists.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolYear" use="required" type="sif:SchoolYearType">
      <xs:annotation>
        <xs:documentation>School year for which the information is applicable, expressed as the four-digit year in which the school year ends (e.g. 2007 for the 2006/07 school year). Where a group membership is valid across multiple years, the current year at the time of publication will be used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="GroupType" use="required">
      <xs:annotation>
        <xs:documentation>The group type.  Teaching groups are used to teach subjects while other groups are organised for various other reasons.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="G">
            <xs:annotation>
              <xs:documentation>Generic Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="R">
            <xs:annotation>
              <xs:documentation>Registration/Class Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="T">
            <xs:annotation>
              <xs:documentation>Teaching (course) Group</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolGroupType" type="sif:SchoolGroupTypeType">
    <xs:key name="SchoolGroupTypeKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--SchoolGroup-->

  <xs:complexType name="SchoolGroupType">
    <xs:annotation>
      <xs:documentation>This object describes a specific group and includes resource and time tabling information.  All groups are based upon a SchoolGroupType record. However, there are courses which are not based upon any subject area and likewise may not have any teachers or other staff assigned.  Compare with US/Canada object:  </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LocalId" />
      <xs:element name="GroupName" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The name associated with this group for display purposes.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>A textual description.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ParentSchoolGroupRefId" minOccurs="0" nillable="true" type="sif:IdRefType">
        <xs:annotation>
          <xs:documentation>The parent group associated with this group, if any.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ScheduleInfoList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ScheduleInfo" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="TeacherList" minOccurs="0" nillable="true">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Teacher" maxOccurs="unbounded">
                          <xs:complexType>
                            <xs:sequence>
                              <xs:element name="Role" minOccurs="0" nillable="true" type="sif:UKGroupRoleType">
                                <xs:annotation>
                                  <xs:documentation>The role associated with this person in the context of this group.</xs:documentation>
                                </xs:annotation>
                              </xs:element>
                            </xs:sequence>
                            <xs:attribute name="WorkforcePersonalRefId" use="required" type="sif:IdRefType">
                              <xs:annotation>
                                <xs:documentation>The ID (GUID) of a teacher, staff member, or other employee participating in a non-learner capacity within this group.</xs:documentation>
                              </xs:annotation>
                            </xs:attribute>
                          </xs:complexType>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey24">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this group entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolGroupTypeRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that identifies a course upon which this group is centered. Note that this element is mandatory when GroupType is associated with a course (teaching group).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolYear" use="required" type="sif:SchoolYearType">
      <xs:annotation>
        <xs:documentation>School year for which the group is applicable, expressed as the four-digit year in which the school year ends (e.g. 2007 for the 2006/07 school year). Where a group membership is valid across multiple years, the current year at the time of publication will be used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolGroup" type="sif:SchoolGroupType">
    <xs:key name="SchoolGroupKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--SchoolInfo-->

  <xs:complexType name="SchoolInfoType">
    <xs:annotation>
      <xs:documentation>This object contains basic information about a school or other educational establishment.  Compare with US/Canada object with the same name.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LocalId" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>An ID assigned by the publishing agent for this school or establishment. This may be set to any value.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="sif:EstablishmentId" />
      <xs:element ref="sif:LAId" />
      <xs:element name="SchoolName" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School's name as indicated on the Annual Schools Census.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolFullName" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>School's full name as stated in the Instrument of Government.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="URN" minOccurs="0" nillable="true" type="sif:SchoolURNType">
        <xs:annotation>
          <xs:documentation>School Unique Reference Number.  This number is an alternate to the Establishment Number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolURL" minOccurs="0" nillable="true" type="sif:SchoolURLType">
        <xs:annotation>
          <xs:documentation>URL for the school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolAddress" minOccurs="0" nillable="true" type="sif:AddressType">
        <xs:annotation>
          <xs:documentation>The school's published address.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="AddressList" minOccurs="0" nillable="true" type="sif:AddressListType">
        <xs:annotation>
          <xs:documentation>Other addresses associated with the school.</xs:documentation>
        </xs:annotation>
        <xs:key name="AddressListKey4">
          <xs:selector xpath="./sif:Address" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="SchoolPhoneNumber" minOccurs="0" nillable="true" type="sif:PhoneNumberType">
        <xs:annotation>
          <xs:documentation>The main phone number for this school/establishment.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="OtherPhoneNumberList" minOccurs="0" nillable="true" type="sif:PhoneNumberListType">
        <xs:annotation>
          <xs:documentation>A list of the school's phone numbers.</xs:documentation>
        </xs:annotation>
        <xs:key name="PhoneNumberListKey4">
          <xs:selector xpath="./sif:PhoneNumber" />
          <xs:field xpath="@Type" />
        </xs:key>
      </xs:element>
      <xs:element name="SchoolEmail" minOccurs="0" nillable="true" type="sif:EmailType">
        <xs:annotation>
          <xs:documentation>School's email address for general correspondence.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolContactList" minOccurs="0" nillable="true" type="sif:ContactListType">
        <xs:annotation>
          <xs:documentation>A list of contacts at the school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HeadTeacherInfo" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ContactName" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The name of the head Teacher.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ContactTitle" minOccurs="0" nillable="true" type="xs:normalizedString">
              <xs:annotation>
                <xs:documentation>The official title of the Head Teacher.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="Phase" minOccurs="0" nillable="true" type="sif:UKPhaseTypeType">
        <xs:annotation>
          <xs:documentation>The high level code indicating the level of the educational institution.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SchoolType" minOccurs="0" nillable="true" type="sif:UKSchoolTypeType">
        <xs:annotation>
          <xs:documentation>An indication of the level of the educational institution.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Governance" minOccurs="0" nillable="true" type="sif:UKGovernanceTypeType">
        <xs:annotation>
          <xs:documentation>Governance afforded to this school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Intake" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Intake type.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="COMP">
              <xs:annotation>
                <xs:documentation>Comprehensive</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL1">
              <xs:annotation>
                <xs:documentation>Selective (Grammar)</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL2">
              <xs:annotation>
                <xs:documentation>Secondary Modern</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL3">
              <xs:annotation>
                <xs:documentation>Selective (Technical)</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="SEL4">
              <xs:annotation>
                <xs:documentation>Religious School</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="NCYearGroupList" minOccurs="0" nillable="true" type="sif:NCYearGroupListType">
        <xs:annotation>
          <xs:documentation>Collection of National Curriculum Year Groups offered in this school or establishment.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="GenderOfEntry" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Gender of learners allowed for entry to school.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="C">
              <xs:annotation>
                <xs:documentation>Coeducational</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="GenderSixthForm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Gender of learners allowed for entry to Sixth Form.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="C">
              <xs:annotation>
                <xs:documentation>Coeducational</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="F">
              <xs:annotation>
                <xs:documentation>Female only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="M">
              <xs:annotation>
                <xs:documentation>Male only</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="blank = HighestNCYear less than 12" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Boarders" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school supports boarders or not.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SessionsPerDay" type="xs:unsignedInt">
        <xs:annotation>
          <xs:documentation>The number of sessions in the usual school day (usually two).</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Nursery" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school maintains a nursery class or not. Must be NO if Phase is set to MP, MS or SY. Must be YES if Phase is set to NY or EY.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="Special" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Indicates whether the school has a special class/unit or not.  Must be Yes if Phase = SP.  Any details will be stored in the associated SchoolInfoDetail object.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="OperationalStatus" minOccurs="0" nillable="true" type="sif:UKOperationalStatusType">
        <xs:annotation>
          <xs:documentation>Operational condition of a school.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey25">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The GUID that identifies this school.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="LAInfoRefId" use="optional" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) assigned to the LA of which this school is a member.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SchoolInfo" type="sif:SchoolInfoType">
    <xs:key name="SchoolInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--TermInfo-->

  <xs:complexType name="TermInfoType">
    <xs:annotation>
      <xs:documentation>This object provides information about a term; i.e., a reportable period of time.  Compare with US/Canada object: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:SchoolYear" />
      <xs:element name="StartDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Starting date of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EndDate" type="xs:date">
        <xs:annotation>
          <xs:documentation>Ending date of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Description" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Text-based description of the term.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TermCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>Locally-defined code. Use 'AUT', 'SPR', or 'SUM' for a 3 term year. Otherwise specify the term number within the year.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="TermsPerYear" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:unsignedInt">
            <xs:annotation>
              <xs:documentation>The number of terms in a given year (3-6).</xs:documentation>
            </xs:annotation>
            <xs:minInclusive value="3" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
            <xs:maxInclusive value="6" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="MarkingTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent a marking period?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SchedulingTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent a scheduling term?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="AttendanceTerm" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>Does this TermInfo represent an attendance term?</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="Yes" />
            <xs:enumeration value="No" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey26">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that uniquely identifies this TermInfo entity.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SchoolInfoRefId" use="required" type="sif:IdRefType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) that identifies the school where the term is used.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="TermInfo" type="sif:TermInfoType">
    <xs:key name="TermInfoKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--WorkforcePersonal-->

  <xs:complexType name="WorkforcePersonalType">
    <xs:annotation>
      <xs:documentation>This object contains key personal information relating to a workforce member, who might be a teacher or other employee of the school or LA.  Compare with US/Canada objects: </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="sif:LocalId" />
      <xs:element name="AlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="AlertMsg" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>This is an alert message that is associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Type" use="required">
                      <xs:annotation>
                        <xs:documentation>This attribute specifies what type of alert message this is.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Legal" />
                          <xs:enumeration value="Discipline" />
                          <xs:enumeration value="Educational" />
                          <xs:enumeration value="Other" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="MedicalAlertMsgList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="MedicalAlertMsg" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Medical alert associated with the person.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:simpleContent>
                  <xs:extension base="xs:normalizedString">
                    <xs:attribute name="Severity" use="required">
                      <xs:annotation>
                        <xs:documentation>The level of severity of this medical alert.</xs:documentation>
                      </xs:annotation>
                      <xs:simpleType>
                        <xs:restriction base="xs:token">
                          <xs:enumeration value="Low" />
                          <xs:enumeration value="Moderate" />
                          <xs:enumeration value="High" />
                          <xs:enumeration value="Severe" />
                          <xs:enumeration value="Unknown" />
                        </xs:restriction>
                      </xs:simpleType>
                    </xs:attribute>
                  </xs:extension>
                </xs:simpleContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="sif:PersonalInformation" />
      <xs:element name="TeacherNumber" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>The DfES Teacher Reference number. For those who have one this is a unique number.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NINumber" minOccurs="0" nillable="true">
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:annotation>
              <xs:documentation>National Insurance Number. Do not specify temporary numbers. Format:  AAnnnnnnA</xs:documentation>
            </xs:annotation>
            <xs:pattern value="[A-Z]{2}[0-9]{6}[A-Z]" xmlns:xs="http://www.w3.org/2001/XMLSchema" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="CurrentAssignmentList" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CurrentAssignment" maxOccurs="unbounded">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LAId" minOccurs="0" nillable="true" type="sif:LAIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES assigned number for the LA in which the workforce member is working, if associated.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="EstablishmentId" minOccurs="0" nillable="true" type="sif:EstablishmentIdType">
                    <xs:annotation>
                      <xs:documentation>The DfES assigned number for the school or establishment in which the workforce member is working.  Note that the school may not necessarily be in the same LA listed as the LAId.</xs:documentation>
                    </xs:annotation>
                  </xs:element>
                  <xs:element name="Posts" minOccurs="0" nillable="true">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Post" maxOccurs="unbounded" type="sif:UKAssignmentPostType">
                          <xs:annotation>
                            <xs:documentation>The post assigned to the workforce member in the context of the school or LA.</xs:documentation>
                          </xs:annotation>
                        </xs:element>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey27">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="RefId" use="required" type="sif:RefIdType">
      <xs:annotation>
        <xs:documentation>The ID (GUID) of the workforce member.  Note that the same GUID may be assigned to this person when they are also a learner (via LearnerPersonal) and/or a contact (via ContactPersonal).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="WorkforcePersonal" type="sif:WorkforcePersonalType">
    <xs:key name="WorkforcePersonalKey1">
      <xs:selector xpath="." />
      <xs:field xpath="@RefId" />
    </xs:key>
  </xs:element>


  <!--InfrastructureWorkingGroup-->


  <!--SIF_LogEntry-->

  <xs:complexType name="SIF_LogEntryType">
    <xs:annotation>
      <xs:documentation>
								This object captures an occurrence within a SIF node (ZIS or agent)—error, warning or information—for storage in an optionally provided zone log.
								SIF_LogEntry Adds are reported and are used to post new log entries to the provider of the log.
								Of course, subscribing agents may also filter incoming Adds as part of their own logging mechanism.
								Any Change or Delete SIF_Events should be ignored at the agent level, but should be routed by the
								ZIS (though this should not be necessary). Use of the log is optional and voluntary, except where noted as mandatory in this specification.
								Nodes may post as much or as little log data as required with the expectation that if there is a provider of SIF_LogEntry that the logged entries be available
								for a provider-defined amount of time subject to provider-defined restrictions on the quantity of data
								logged by any given node.
							</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="SIF_LogEntryHeader">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Header" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_OriginalHeader" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="sif:SIF_Header" />
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Category" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>A SIF_LogEntry category. May be omitted for informational-type postings, where typically a textual description will suffice.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:token">
            <xs:enumeration value="1">
              <xs:annotation>
                <xs:documentation>Success</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="2">
              <xs:annotation>
                <xs:documentation>Data Issues with Success Result</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="3">
              <xs:annotation>
                <xs:documentation>Data Issues with Failure Result</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="4">
              <xs:annotation>
                <xs:documentation>Error Conditions</xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_Code" minOccurs="0" nillable="true">
        <xs:annotation>
          <xs:documentation>A SIF_LogEntry code with regard to SIF_Category above. May be omitted for informational-type postings, where typically a textual description will suffice. If a SIF_Code is included, SIF_Category must be included as well.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:union>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntrySuccessCategoryType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryDataIssuesWithSuccessResultType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryDataIssuesWithFailureResultType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryAgentErrorConditionType" />
            </xs:simpleType>
            <xs:simpleType>
              <xs:restriction base="sif:SIF_LogEntryZISErrorConditionType" />
            </xs:simpleType>
          </xs:union>
        </xs:simpleType>
      </xs:element>
      <xs:element name="SIF_ApplicationCode" minOccurs="0" nillable="true" type="xs:normalizedString">
        <xs:annotation>
          <xs:documentation>
								An error code specific to the application posting the entry.
								Can be used by vendors to query log entries for errors specific to their applications.
								If a SIF_ApplicationCode is included, SIF_Category must be included as well;
								i.e., application-specific error codes should fall within one of the defined log entry categories.
							</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_Desc" type="xs:string">
        <xs:annotation>
          <xs:documentation>A textual description of the error.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_ExtendedDesc" minOccurs="0" nillable="true" type="xs:string">
        <xs:annotation>
          <xs:documentation>Any extended error description.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="SIF_LogObjects" minOccurs="0" nillable="true">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="SIF_LogObject" maxOccurs="unbounded">
              <xs:complexType>
                <xs:annotation>
                  <xs:documentation>Any SIF data objects to which this log entry may apply.</xs:documentation>
                </xs:annotation>
                <xs:complexContent>
                  <xs:extension base="sif:SIF_LogEntryExtendedContentType">
                    <xs:attribute name="ObjectName" use="required" type="sif:SIF_RequestObjectNamesType">
                      <xs:annotation>
                        <xs:documentation>The name of the SIF object referenced (e.g. StudentPersonal).</xs:documentation>
                      </xs:annotation>
                    </xs:attribute>
                  </xs:extension>
                </xs:complexContent>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="SIF_Metadata" minOccurs="0" nillable="true" type="sif:SIF_MetadataType" />
      <xs:element name="SIF_ExtendedElements" minOccurs="0" nillable="true" type="sif:SIF_ExtendedElementsType">
        <xs:key name="SIF_ExtendedElementsKey28">
          <xs:selector xpath="./sif:SIF_ExtendedElement" />
          <xs:field xpath="@Name" />
        </xs:key>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Source" use="required">
      <xs:annotation>
        <xs:documentation>The SIF node that logged this entry.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Agent" />
          <xs:enumeration value="ZIS" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="LogLevel" use="required">
      <xs:annotation>
        <xs:documentation>The level of the log entry herein described.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="Info" />
          <xs:enumeration value="Warning" />
          <xs:enumeration value="Error" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  <xs:element name="SIF_LogEntry" type="sif:SIF_LogEntryType" />

  <xs:simpleType name="InfrastructureStatusCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0" />
      <xs:enumeration value="1" />
      <xs:enumeration value="2" />
      <xs:enumeration value="3" />
      <xs:enumeration value="7" />
      <xs:enumeration value="8" />
      <xs:enumeration value="9" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureErrorCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>Unknown (This should NEVER be used if possible)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>XML Validation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Encryption</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Authentication</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Access and Permissions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Registration</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Subscription</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Request and Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Event Reporting and Processing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Transport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>System (OS, Database, Vendor localized, etc.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Generic Message Handling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>SMB Handling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureXMLValidationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message is not well-formed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Generic validation error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Invalid value for element/attribute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Missing mandatory element/attribute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureEncryptionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureAuthenticationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Generic authentication error (with signature)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Missing sender's certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Invalid certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Sender's certificate is not trusted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Expired certificate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Invalid signature</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Invalid encryption algorithm (only accepts MD4)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Missing public key of the receiver (when decrypting message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Missing receiver's private key (when decrypting message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureAccessAndPermissionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>No permission to register</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>No permission to provide this object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>No permission to subscribe to this SIF_Event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>No permission to request this object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>No permission to respond to this object request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>No permission to administer policies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>SIF_SourceId is not registered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Add</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Change</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>No permission to publish SIF_Event Delete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureRegistrationErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>The SIF_SourceId is invalid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Requested transport protocol is unsupported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Requested SIF_Version(s) not supported.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Requested SIF_MaxBufferSize is too small</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>ZIS requires a secure transport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Agent is registered for push mode (returned when a push-mode agent sends a SIF_GetMessage).</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>ZIS does not support the requested Accept-Encoding value.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureProvisionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Object already has a provider (SIF_Provide message)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSubscriptionErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureRequestAndResponseErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid object</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>No provider</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Responder does not support requested SIF_Version</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Responder does not support requested SIF_MaxBufferSize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Unsupported query in request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Invalid SIF_RequestMsgId specified in SIF_Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>SIF_Response is larger than requested SIF_MaxBufferSize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>SIF_PacketNumber is invalid in SIF_Response</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>SIF_Response does not match any SIF_Version from SIF_Request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14">
        <xs:annotation>
          <xs:documentation>SIF_DestinationId does not match SIF_SourceId from SIF_Request</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15">
        <xs:annotation>
          <xs:documentation>No support for SIF_ExtendedQuery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16">
        <xs:annotation>
          <xs:documentation>SIF_RequestMsgId deleted from cache due to timeout</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17">
        <xs:annotation>
          <xs:documentation>SIF_RequestMsgId deleted from cache by administrator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18">
        <xs:annotation>
          <xs:documentation>SIF_Request cancelled by requesting agent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureEventReportingAndProcessingErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Invalid event</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureTransportErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Requested protocol is not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Secure channel requested and no secure path exists</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Unable to establish connection</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSystemErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureGenericMessageHandlingErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Version not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Context not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Protocol error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>No such message (as identified by SIF_OriginalMsgId)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Multiple contexts not supported</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="InfrastructureSMBErrorType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Generic error</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>SMB can only be invoked during a SIF_Event acknowledgement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Final SIF_Ack expected from Push-Mode Agent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Incorrect SIF_MsgId in final SIF_Ack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntrySuccessCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Success</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryDataIssuesWithSuccessResultType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Data was changed to complete request successfully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Data was added to complete request successfully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryDataIssuesWithFailureResultType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Insufficient information in message</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Cannot process change due to business rule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Related information unavailable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryAgentErrorConditionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>An exception has occurred in the agent (generic error)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="SIF_LogEntryZISErrorConditionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>An exception has occurred in the ZIS (generic error)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to buffer size limitations</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to minimum security requirements</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to destination agent not supporting SIF_Version</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Message could not be delivered due to SIF_Response validation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKUsualModeOfTravelType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="WLK">
        <xs:annotation>
          <xs:documentation>Walk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYC">
        <xs:annotation>
          <xs:documentation>Cycle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Car/Van</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRS">
        <xs:annotation>
          <xs:documentation>Car Share (with a child/children from a different household)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSB">
        <xs:annotation>
          <xs:documentation>Public service bus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DSB">
        <xs:annotation>
          <xs:documentation>Dedicated school bus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNK">
        <xs:annotation>
          <xs:documentation>Bus (type not known)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TXI">
        <xs:annotation>
          <xs:documentation>Taxi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRN">
        <xs:annotation>
          <xs:documentation>Train</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUL">
        <xs:annotation>
          <xs:documentation>London Underground</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MTL">
        <xs:annotation>
          <xs:documentation>Metro/Tram/Light Rail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssessmentMethodType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="DD">
        <xs:annotation>
          <xs:documentation>Disapplied</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NA">
        <xs:annotation>
          <xs:documentation>Not assessed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TA">
        <xs:annotation>
          <xs:documentation>Teacher Assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TT">
        <xs:annotation>
          <xs:documentation>Task / Test</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssessmentResultQualifierType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="EG">
        <xs:annotation>
          <xs:documentation>Examination/Post-14 Qualification Grade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EL">
        <xs:annotation>
          <xs:documentation>EAL Assessment Level (Pre NC Level 2)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FC">
        <xs:annotation>
          <xs:documentation>Foundation Stage Profile Count</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FD">
        <xs:annotation>
          <xs:documentation>Foundation Stage Profile Detail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FS">
        <xs:annotation>
          <xs:documentation>Foundation Stage Profile Score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IA">
        <xs:annotation>
          <xs:documentation>International Baccalaureate Assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IG">
        <xs:annotation>
          <xs:documentation>International Baccalaureate Grade Point</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IR">
        <xs:annotation>
          <xs:documentation>International Baccalaureate Final Result</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IS">
        <xs:annotation>
          <xs:documentation>International Baccalaureate Aggregate Grade Points</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NA">
        <xs:annotation>
          <xs:documentation>National Curriculum Age Standardised Score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ND">
        <xs:annotation>
          <xs:documentation>National Curriculum Level (Decimalised)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NF">
        <xs:annotation>
          <xs:documentation>National Curriculum Level with Fine Grading</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NL">
        <xs:annotation>
          <xs:documentation>National Curriculum Level</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NM">
        <xs:annotation>
          <xs:documentation>National Curriculum Task/Test Mark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NP">
        <xs:annotation>
          <xs:documentation>SEN Assessment Level (P Scale)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NR">
        <xs:annotation>
          <xs:documentation>National Curriculum Test Raw Score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NS">
        <xs:annotation>
          <xs:documentation>National Curriculum Summary (Aggregate) Mark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AG">
        <xs:annotation>
          <xs:documentation>Age score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SA">
        <xs:annotation>
          <xs:documentation>Standard age score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LG">
        <xs:annotation>
          <xs:documentation>Letter grade / mark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ML">
        <xs:annotation>
          <xs:documentation>Mastery level</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NC">
        <xs:annotation>
          <xs:documentation>Normal curve equivalent score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NM">
        <xs:annotation>
          <xs:documentation>Number score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NS">
        <xs:annotation>
          <xs:documentation>Normalised standard score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PF">
        <xs:annotation>
          <xs:documentation>Pass/fail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PC">
        <xs:annotation>
          <xs:documentation>Percentile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PR">
        <xs:annotation>
          <xs:documentation>Percentile rank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RA">
        <xs:annotation>
          <xs:documentation>Ranking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RS">
        <xs:annotation>
          <xs:documentation>Raw score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SC">
        <xs:annotation>
          <xs:documentation>Scale score</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CM">
        <xs:annotation>
          <xs:documentation>Comment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssessmentResultStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>Estimate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="I">
        <xs:annotation>
          <xs:documentation>Interim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Provisional (subject to regarding/appeal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="R">
        <xs:annotation>
          <xs:documentation>Result</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>Target</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssessmentStageType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="FSP">
        <xs:annotation>
          <xs:documentation>Foundation Stage Profile (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS0">
        <xs:annotation>
          <xs:documentation>Baseline Assessment (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS1">
        <xs:annotation>
          <xs:documentation>Key Stage 1 (End of) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="K1T">
        <xs:annotation>
          <xs:documentation>Key Stage 1 Trial (Historical) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="K2P">
        <xs:annotation>
          <xs:documentation>Key Stage 2 Progression Tests (Pilot) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="K3P">
        <xs:annotation>
          <xs:documentation>Key Stage 3 Progression Tests (Pilot) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS2">
        <xs:annotation>
          <xs:documentation>Key Stage 2 (End of) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS3">
        <xs:annotation>
          <xs:documentation>Key Stage 3 (End of) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS4">
        <xs:annotation>
          <xs:documentation>GCSE / GNVQ / Other Approved Awards (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KS5">
        <xs:annotation>
          <xs:documentation>A Level/AS Level/Advanced GNVQ/Other Advanced Studies (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y03">
        <xs:annotation>
          <xs:documentation>Year 3 Optional Tests / Teacher Assessments (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y04">
        <xs:annotation>
          <xs:documentation>Year 4 Optional Tests / Teacher Assessments (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y4X">
        <xs:annotation>
          <xs:documentation>Year 4 Optional Tests (1997 Based) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y05">
        <xs:annotation>
          <xs:documentation>Year 5 Optional Tests / Teacher Assessments (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y07">
        <xs:annotation>
          <xs:documentation>Year 7 Optional Tests / Teacher Assessments (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y7P">
        <xs:annotation>
          <xs:documentation>Year 7 Progress Tests (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y08">
        <xs:annotation>
          <xs:documentation>Year 8 Optional Tests / Teacher Assessments (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EAL">
        <xs:annotation>
          <xs:documentation>English as an Additional Language Level of Acquisition (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>P-Scale Assessment for SEN children (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W09">
        <xs:annotation>
          <xs:documentation>World Class Tests – Aged 9 (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W13">
        <xs:annotation>
          <xs:documentation>World Class Tests – Aged 13 (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P2">
        <xs:annotation>
          <xs:documentation>Primary 2 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P3">
        <xs:annotation>
          <xs:documentation>Primary 3 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P4">
        <xs:annotation>
          <xs:documentation>Primary 4 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P5">
        <xs:annotation>
          <xs:documentation>Primary 5 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P6">
        <xs:annotation>
          <xs:documentation>Primary 6 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P7">
        <xs:annotation>
          <xs:documentation>Primary 7 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S1">
        <xs:annotation>
          <xs:documentation>Secondary 1 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S2">
        <xs:annotation>
          <xs:documentation>Secondary 2 (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssessmentSubjectType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ARA">
        <xs:annotation>
          <xs:documentation>Arabic (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ART">
        <xs:annotation>
          <xs:documentation>Art and Design (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEN">
        <xs:annotation>
          <xs:documentation>Bengali (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chinese (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLL">
        <xs:annotation>
          <xs:documentation>Communication Language &amp; Literacy (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRE">
        <xs:annotation>
          <xs:documentation>Creative Development (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Welsh (locale: W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAN">
        <xs:annotation>
          <xs:documentation>Danish (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAT">
        <xs:annotation>
          <xs:documentation>Design and Technology (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUT">
        <xs:annotation>
          <xs:documentation>Dutch (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English (locale: E S W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finnish (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRE">
        <xs:annotation>
          <xs:documentation>French (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FSP">
        <xs:annotation>
          <xs:documentation>Foundation Stage Profile (Total) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAE">
        <xs:annotation>
          <xs:documentation>Gaelic / Gaidhlg (locale: S)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Geography (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GER">
        <xs:annotation>
          <xs:documentation>German (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRE">
        <xs:annotation>
          <xs:documentation>Modern Greek (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUJ">
        <xs:annotation>
          <xs:documentation>Gujarati (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEB">
        <xs:annotation>
          <xs:documentation>Modern Hebrew (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIS">
        <xs:annotation>
          <xs:documentation>History (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICT">
        <xs:annotation>
          <xs:documentation>Information &amp; Communication Technology (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italian (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAP">
        <xs:annotation>
          <xs:documentation>Japanese (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KUW">
        <xs:annotation>
          <xs:documentation>Knowledge &amp; Understanding of World (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAT">
        <xs:annotation>
          <xs:documentation>Mathematics / Mathematical Development (locale: E S W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MFL">
        <xs:annotation>
          <xs:documentation>Modern Foreign Language (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUS">
        <xs:annotation>
          <xs:documentation>Music (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAN">
        <xs:annotation>
          <xs:documentation>Panjabi (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PED">
        <xs:annotation>
          <xs:documentation>Physical Education (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHY">
        <xs:annotation>
          <xs:documentation>Physical Development (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portuguese (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSE">
        <xs:annotation>
          <xs:documentation>Personal Social &amp; Emotional Development (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSH">
        <xs:annotation>
          <xs:documentation>Personal Social &amp; Health Education (PSHE) (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russian (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCI">
        <xs:annotation>
          <xs:documentation>Science (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPA">
        <xs:annotation>
          <xs:documentation>Spanish (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Swedish (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkish (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URD">
        <xs:annotation>
          <xs:documentation>Urdu (locale: E)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEL">
        <xs:annotation>
          <xs:documentation>Welsh (locale: E W)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAttendanceSessionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AM">
        <xs:annotation>
          <xs:documentation>AM Session</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PM">
        <xs:annotation>
          <xs:documentation>PM Session</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NA">
        <xs:annotation>
          <xs:documentation>Not Applicable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAttendanceSourceType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BIO">
        <xs:annotation>
          <xs:documentation>Biometric device</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HU">
        <xs:annotation>
          <xs:documentation>Human other than workforce member</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WF">
        <xs:annotation>
          <xs:documentation>Workforce Member</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other non-human input source</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLocaleType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>England</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Northern Ireland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Scotland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Wales/Cymru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAbsenceCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="MAT">
        <xs:annotation>
          <xs:documentation>Maternity /Paternity leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other paid authorised absence, e.g. compassionate leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PUB">
        <xs:annotation>
          <xs:documentation>Paid absence for public duties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEC">
        <xs:annotation>
          <xs:documentation>Secondment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIC">
        <xs:annotation>
          <xs:documentation>Sickness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRN">
        <xs:annotation>
          <xs:documentation>Training</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNA">
        <xs:annotation>
          <xs:documentation>Unauthorised absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNP">
        <xs:annotation>
          <xs:documentation>Unpaid, authorised absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdditionalPaymentTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Inner London Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOT">
        <xs:annotation>
          <xs:documentation>Outer London Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LFR">
        <xs:annotation>
          <xs:documentation>London Fringe Weighting (Support Staff)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAL">
        <xs:annotation>
          <xs:documentation>Management Allowances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TLR">
        <xs:annotation>
          <xs:documentation>Teaching and Learning Responsibility Payments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RAR">
        <xs:annotation>
          <xs:documentation>Recruitment and Retention </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>SEN Allowances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACT">
        <xs:annotation>
          <xs:documentation>Acting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RES">
        <xs:annotation>
          <xs:documentation>Residential duties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INS">
        <xs:annotation>
          <xs:documentation>INSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOS">
        <xs:annotation>
          <xs:documentation>Out of School Activities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCP">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (Pay)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCC">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (One Off Payment)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RCA">
        <xs:annotation>
          <xs:documentation>Recruitment Incentive (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEL">
        <xs:annotation>
          <xs:documentation>Welcome Back</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTC">
        <xs:annotation>
          <xs:documentation>GTC subscription </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UQT">
        <xs:annotation>
          <xs:documentation>Unqualified Teachers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsAptitudeCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Physical Education or Sport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Performing Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Visual Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ML">
        <xs:annotation>
          <xs:documentation>Modern Foreign Languages</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DT">
        <xs:annotation>
          <xs:documentation>Design Technology or IT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsOfferStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>No offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Withdraw Previous Offer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Discard (higher preference offered)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsNotifyMethodType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Online</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>Email</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>SMS/Text message</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="L">
        <xs:annotation>
          <xs:documentation>Letter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsPrebandCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1A">
        <xs:annotation>
          <xs:documentation>Band 1A (Highest)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1B">
        <xs:annotation>
          <xs:documentation>Band 1B</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2A">
        <xs:annotation>
          <xs:documentation>Band 2A</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2B">
        <xs:annotation>
          <xs:documentation>Band 2B</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Band 3 (Lowest)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Band Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdmissionsReasonCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="DIST">
        <xs:annotation>
          <xs:documentation>Distance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIBL">
        <xs:annotation>
          <xs:documentation>Sibling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEDL">
        <xs:annotation>
          <xs:documentation>Medical</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RLGN">
        <xs:annotation>
          <xs:documentation>Religion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTCH">
        <xs:annotation>
          <xs:documentation>Catchment Area</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FEED">
        <xs:annotation>
          <xs:documentation>Feeder School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRAV">
        <xs:annotation>
          <xs:documentation>Travelling Time</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSEX">
        <xs:annotation>
          <xs:documentation>Single Sex School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COED">
        <xs:annotation>
          <xs:documentation>Coeducational School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="APTD">
        <xs:annotation>
          <xs:documentation>Aptitude</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOCL">
        <xs:annotation>
          <xs:documentation>Social Reasons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHR">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKADTFileStatusTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Prime">
        <xs:annotation>
          <xs:documentation>These files contain completely new data and should be considered the complete application for the student.  </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Change">
        <xs:annotation>
          <xs:documentation>A 'Change' value means that all data previously supplied (apart from the Application Reference) are to be deleted and only the data in the change file to be used for pupils in the file.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Withdrawal">
        <xs:annotation>
          <xs:documentation>These files advise the  LA or Own Admission Authority school that an application should be noted as withdrawn for a pupil who moves away from the LA during the admissions process.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Suspended">
        <xs:annotation>
          <xs:documentation>This is a precautionary status, as it is not known when it might be used.  These records should go to suspense, as it is not possible to know what to do with them if the condition cannot be determined.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Late">
        <xs:annotation>
          <xs:documentation>The records in this file type are considered as late by the Home LAs criteria.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAdviceAndAssessmentWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AA1">
        <xs:annotation>
          <xs:documentation>School based assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA2">
        <xs:annotation>
          <xs:documentation>External advice/assessment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA3">
        <xs:annotation>
          <xs:documentation>Specialised assessments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AA4">
        <xs:annotation>
          <xs:documentation>Multu-agency assessments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAlternativeTuitionProvisionTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="HSP">
        <xs:annotation>
          <xs:documentation>Hospital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>Independent School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NMS">
        <xs:annotation>
          <xs:documentation>Non-maintained Special School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Not a School</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAssignmentPostType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ADMC">
        <xs:annotation>
          <xs:documentation>Administrator / Clerk </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADVT">
        <xs:annotation>
          <xs:documentation>Advisory teacher (unattached)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARTD">
        <xs:annotation>
          <xs:documentation>Art &amp;/or Design Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASHT">
        <xs:annotation>
          <xs:documentation>Assistant head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATTN">
        <xs:annotation>
          <xs:documentation>Attendance Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BILN">
        <xs:annotation>
          <xs:documentation>Bilingual Support Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BURS">
        <xs:annotation>
          <xs:documentation>Bursar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUSS">
        <xs:annotation>
          <xs:documentation>Business Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTKR">
        <xs:annotation>
          <xs:documentation>Caretaker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCHR">
        <xs:annotation>
          <xs:documentation>Classroom Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLNR">
        <xs:annotation>
          <xs:documentation>Cleaner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CXPA">
        <xs:annotation>
          <xs:documentation>Connexions Personal Adviser</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COOK">
        <xs:annotation>
          <xs:documentation>Cook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COVR">
        <xs:annotation>
          <xs:documentation>Cover Supervisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CART">
        <xs:annotation>
          <xs:documentation>Creative Arts Specialist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DATA">
        <xs:annotation>
          <xs:documentation>Data Manager / Analyst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DPHT">
        <xs:annotation>
          <xs:documentation>Deputy head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDWO">
        <xs:annotation>
          <xs:documentation>Education Welfare Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EPSY">
        <xs:annotation>
          <xs:documentation>Educational Psychologist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESCT">
        <xs:annotation>
          <xs:documentation>Escort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INVG">
        <xs:annotation>
          <xs:documentation>Exam Invigilator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXAM">
        <xs:annotation>
          <xs:documentation>Examinations Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FINC">
        <xs:annotation>
          <xs:documentation>Finance Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDTR">
        <xs:annotation>
          <xs:documentation>Head teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDYR">
        <xs:annotation>
          <xs:documentation>Head of Year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDPT">
        <xs:annotation>
          <xs:documentation>Head of Department</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDHO">
        <xs:annotation>
          <xs:documentation>Head of House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HLTA">
        <xs:annotation>
          <xs:documentation>Higher Level Teaching Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HSLO">
        <xs:annotation>
          <xs:documentation>Home-School Liaison Officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICTM">
        <xs:annotation>
          <xs:documentation>ICT Network Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICTT">
        <xs:annotation>
          <xs:documentation>ICT Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INST">
        <xs:annotation>
          <xs:documentation>Instructor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LANG">
        <xs:annotation>
          <xs:documentation>Language support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPLY">
        <xs:annotation>
          <xs:documentation>LEA Supply Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LRNM">
        <xs:annotation>
          <xs:documentation>Learning Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LMEN">
        <xs:annotation>
          <xs:documentation>Learning Mentor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSEN">
        <xs:annotation>
          <xs:documentation>Learning Support Assistant (for SEN pupils)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIBR">
        <xs:annotation>
          <xs:documentation>Librarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LITR">
        <xs:annotation>
          <xs:documentation>Literacy Worker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MIDA">
        <xs:annotation>
          <xs:documentation>Midday Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MIDS">
        <xs:annotation>
          <xs:documentation>Midday Supervisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MINS">
        <xs:annotation>
          <xs:documentation>Minority ethnic support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MISC">
        <xs:annotation>
          <xs:documentation>Miscellaneous Teaching Service for the LEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUSS">
        <xs:annotation>
          <xs:documentation>Music Specialist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUSC">
        <xs:annotation>
          <xs:documentation>Music tuition (include peripatetic)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NURS">
        <xs:annotation>
          <xs:documentation>Nurse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NNSE">
        <xs:annotation>
          <xs:documentation>Nursery Nurse </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMAN">
        <xs:annotation>
          <xs:documentation>Office Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CATR">
        <xs:annotation>
          <xs:documentation>Other Catering Staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OICT">
        <xs:annotation>
          <xs:documentation>Other ICT Support Staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PERI">
        <xs:annotation>
          <xs:documentation>Peripatetic Teacher (unattached)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAHT">
        <xs:annotation>
          <xs:documentation>Personal Assistant to Headteacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREM">
        <xs:annotation>
          <xs:documentation>Premises Manager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RECP">
        <xs:annotation>
          <xs:documentation>Receptionist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RPRG">
        <xs:annotation>
          <xs:documentation>Reprographics Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSEC">
        <xs:annotation>
          <xs:documentation>School Secretary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STCH">
        <xs:annotation>
          <xs:documentation>Science Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SENC">
        <xs:annotation>
          <xs:documentation>SEN co-ordinator</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TNON">
        <xs:annotation>
          <xs:documentation>Teacher: engaged for non-school education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TPRU">
        <xs:annotation>
          <xs:documentation>Teacher: engaged to teach in a Pupil Referral Unit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMIS">
        <xs:annotation>
          <xs:documentation>Teacher: engaged to teach in miscellaneous establishments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TASS">
        <xs:annotation>
          <xs:documentation>Teaching Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTCH">
        <xs:annotation>
          <xs:documentation>Technology Technician</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THER">
        <xs:annotation>
          <xs:documentation>Therapist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRAV">
        <xs:annotation>
          <xs:documentation>Traveller support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VOLN">
        <xs:annotation>
          <xs:documentation>Volunteer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WELF">
        <xs:annotation>
          <xs:documentation>Welfare Assistant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAttendanceCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="/">
        <xs:annotation>
          <xs:documentation>Present (AM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="\">
        <xs:annotation>
          <xs:documentation>Present (PM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil being educated off site (not dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Authorised absence as pupil is absent due to other authorised circumstances, including Public performances and employment (licensed under regulations), family bereavement, special occasions (in limited circumstances), absences when Traveller children are attending another school.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is dual registered (i.e. attending another establishment)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="E">
        <xs:annotation>
          <xs:documentation>Authorised absence as pupil is excluded, with no alternative provision made</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Authorised absence due to agreed extended family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="G">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil is on a family holiday, not agreed, or is taking days in excess of an agreed family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="H">
        <xs:annotation>
          <xs:documentation>Authorised absence due to agreed family holiday</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="I">
        <xs:annotation>
          <xs:documentation>Authorised absence due to Illness (NOT medical or dental etc. appointments)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="J">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending interview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="K">
        <xs:annotation>
          <xs:documentation>Unknown - used as a placeholder in lieu of valid data. Assumed to be authorised and present until otherwise proven or changed.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="L">
        <xs:annotation>
          <xs:documentation>Late (before registers closed) marked as present</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Authorised absence due to medical / dental appointments</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil missed sessions for a reason that has not yet been provided</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil missed sessions for an unauthorised absence not covered by any other code/description</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending an approved sporting activity</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="R">
        <xs:annotation>
          <xs:documentation>Authorised absence due to religious observance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Authorised absence due to study leave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>Authorised absence due to traveller absence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Unauthorised absence as pupil arrived after registers closed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="V">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is away on an educational visit or trip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Approved education activity as pupil is attending work experience</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="X">
        <xs:annotation>
          <xs:documentation>Non-compulsory school age absence - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Y">
        <xs:annotation>
          <xs:documentation>Enforced closure - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Z">
        <xs:annotation>
          <xs:documentation>Pupil not yet on roll - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="#">
        <xs:annotation>
          <xs:documentation>School closed to pupils - not counted in possible attendances</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKAttendanceDomainType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Lesson">
        <xs:annotation>
          <xs:documentation>Domain is recorded for a lesson only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Session">
        <xs:annotation>
          <xs:documentation>Domain is recorded for a session only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Both">
        <xs:annotation>
          <xs:documentation>Domain applies to both lessons and sessions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBasicSkillsSupportWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="00">
        <xs:annotation>
          <xs:documentation>Does not require support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="01">
        <xs:annotation>
          <xs:documentation>Specialist literacy support only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="02">
        <xs:annotation>
          <xs:documentation>Specialist numeracy support only</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="03">
        <xs:annotation>
          <xs:documentation>specialist literacy and numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="04">
        <xs:annotation>
          <xs:documentation>other literacy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05">
        <xs:annotation>
          <xs:documentation>other numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="06">
        <xs:annotation>
          <xs:documentation>other literacy and numeracy support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="07">
        <xs:annotation>
          <xs:documentation>Needs support but has not/will not receive support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="90">
        <xs:annotation>
          <xs:documentation>Basic Skills needs not assessed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBirthDateVerificationLevelType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="0">
        <xs:annotation>
          <xs:documentation>Not Verified</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>One or more of the following Secondary certificates: Certificate of Baptism; Marriage Certificate; National Health Service Medical Card; Child's Certificate of Vaccination; Child's Health Record Card; A certificate of Service in HM Forces or other employment under the Crown or in the Mercantile Marine; A certificate of membership of a Trade Union Friendly Society or any cards or papers relating to membership of an Approved Society or Unemployment Insurance Apprenticeship indentures; Early certificate or testimonial from employer; Aliens registration card, certificate of naturalisation, Home Office travel document or a passport; Life insurance policy; Certificate of confirmation; School certificate or report; A birthday book or old family record; Family Bible containing a record of birth.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>One of the following:  Full certificate; Birth certificate short form; Certificate of registry showing given names and family name; GRO copy; Adoption Order issued by the High Court, County Court or Juvenile Court; Certificate of adoption issued by the GRO; Foreign birth certificate issued by registration authority of the foreign country.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKBoarderTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>Boarder, nights per week not specified</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Boarder, six nights or less a week</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Boarder, seven nights a week</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Not a boarder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKClassTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Nursery Class (England), Nursery Class (not a Special Class/Unit) (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Not a Nursery Class (England), Other Class (not a Special Class/Unit) (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Nursery Special Class/Unit (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKConnexionsAgreementType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="Yes">
        <xs:annotation>
          <xs:documentation>Permission has been given by the parent or guardian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="No">
        <xs:annotation>
          <xs:documentation>Parent or guardian has refused permission</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UNS">
        <xs:annotation>
          <xs:documentation>Unsought - School has not yet sent out Fair Processing Notices (Data cannot be shared with Connexions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNR">
        <xs:annotation>
          <xs:documentation>Sought, No Reply - School has sent out Fair Processing Notices, but has received no reply from parent or guardian (Data can be shared with Connexions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKCurriculumAndTeachingMethodsWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="CT1">
        <xs:annotation>
          <xs:documentation>Some targeted differentiation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT2">
        <xs:annotation>
          <xs:documentation>Significant and targeted differentiation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT3">
        <xs:annotation>
          <xs:documentation>Some curriculum modifications</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT4">
        <xs:annotation>
          <xs:documentation>Significant curriculum modifications</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKExclusionReasonType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BU">
        <xs:annotation>
          <xs:documentation>Bullying</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DA">
        <xs:annotation>
          <xs:documentation>Drug and alcohol related</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DB">
        <xs:annotation>
          <xs:documentation>Persistent disruptive behaviour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DM">
        <xs:annotation>
          <xs:documentation>Damage to property</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DR">
        <xs:annotation>
          <xs:documentation>Defiance of rules/ discipline policy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Physical assault against an adult</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PP">
        <xs:annotation>
          <xs:documentation>Physical assault against a pupil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PW">
        <xs:annotation>
          <xs:documentation>Possession / use of weapon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RA">
        <xs:annotation>
          <xs:documentation>Racial harrassment/abuse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SM">
        <xs:annotation>
          <xs:documentation>Sexual misconduct/abuse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TB">
        <xs:annotation>
          <xs:documentation>Threatening or dangerous behaviour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TH">
        <xs:annotation>
          <xs:documentation>Theft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Verbal abuse/threatening behaviour against an adult</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VP">
        <xs:annotation>
          <xs:documentation>Verbal abuse/threatening behaviour against a pupil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKFamilyStructureType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Single Parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>2 Adults</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Foster Parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>In Residental Care</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="U">
        <xs:annotation>
          <xs:documentation>Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGeneralSubjectType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AAD">
        <xs:annotation>
          <xs:documentation>Applied Art &amp; Design</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABS">
        <xs:annotation>
          <xs:documentation>Applied Business Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACC">
        <xs:annotation>
          <xs:documentation>Accountancy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AHS">
        <xs:annotation>
          <xs:documentation>Combined Arts / Humanities / Social studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIT">
        <xs:annotation>
          <xs:documentation>Applied ICT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARA">
        <xs:annotation>
          <xs:documentation>Arabic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ART">
        <xs:annotation>
          <xs:documentation>Art &amp; Design / Art</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASC">
        <xs:annotation>
          <xs:documentation>Applied Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEN">
        <xs:annotation>
          <xs:documentation>Bengali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIO">
        <xs:annotation>
          <xs:documentation>Biology / Botany / Zoology / Ecology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAB">
        <xs:annotation>
          <xs:documentation>Commercial &amp; Business Studies/Education/Management</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Careers Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CBE">
        <xs:annotation>
          <xs:documentation>Construction and Built Environment / Building</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDT">
        <xs:annotation>
          <xs:documentation>Craft, Design &amp; Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHD">
        <xs:annotation>
          <xs:documentation>Child Development</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHM">
        <xs:annotation>
          <xs:documentation>Chemistry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CIT">
        <xs:annotation>
          <xs:documentation>Citizenship</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLS">
        <xs:annotation>
          <xs:documentation>Classics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COM">
        <xs:annotation>
          <xs:documentation>Communication Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COS">
        <xs:annotation>
          <xs:documentation>Community Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSB">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Biology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSC">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Chemistry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSP">
        <xs:annotation>
          <xs:documentation>Combined/General Science - Physics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Cymraeg/Welsh (as First Language)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAN">
        <xs:annotation>
          <xs:documentation>Danish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAT">
        <xs:annotation>
          <xs:documentation>Design and Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNC">
        <xs:annotation>
          <xs:documentation>Dance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DRA">
        <xs:annotation>
          <xs:documentation>Drama</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTE">
        <xs:annotation>
          <xs:documentation>Design and Technology - Electronics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTF">
        <xs:annotation>
          <xs:documentation>Design and Technology - Food Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTG">
        <xs:annotation>
          <xs:documentation>Design and Technology - Graphics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTR">
        <xs:annotation>
          <xs:documentation>Design and Technology - Resistant Materials</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTS">
        <xs:annotation>
          <xs:documentation>Design and Technology - Systems &amp; Control</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DTT">
        <xs:annotation>
          <xs:documentation>Design and Technology - Textiles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUT">
        <xs:annotation>
          <xs:documentation>Dutch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ECO">
        <xs:annotation>
          <xs:documentation>Economics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDU">
        <xs:annotation>
          <xs:documentation>Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENR">
        <xs:annotation>
          <xs:documentation>Engineering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENV">
        <xs:annotation>
          <xs:documentation>Environmental Science/Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EUR">
        <xs:annotation>
          <xs:documentation>European Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finnish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRE">
        <xs:annotation>
          <xs:documentation>French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEN">
        <xs:annotation>
          <xs:documentation>General Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Geography</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GER">
        <xs:annotation>
          <xs:documentation>German</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLG">
        <xs:annotation>
          <xs:documentation>Geology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GPL">
        <xs:annotation>
          <xs:documentation>Government &amp; Politics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRC">
        <xs:annotation>
          <xs:documentation>Greek (Classical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRE">
        <xs:annotation>
          <xs:documentation>Greek (Modern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUJ">
        <xs:annotation>
          <xs:documentation>Gujerati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAC">
        <xs:annotation>
          <xs:documentation>Hospitality and Catering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HBB">
        <xs:annotation>
          <xs:documentation>Hebrew (Biblical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEB">
        <xs:annotation>
          <xs:documentation>Hebrew (Modern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIN">
        <xs:annotation>
          <xs:documentation>Hindi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIS">
        <xs:annotation>
          <xs:documentation>History</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HSC">
        <xs:annotation>
          <xs:documentation>Health and Social Care</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUM">
        <xs:annotation>
          <xs:documentation>Humanities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ICT">
        <xs:annotation>
          <xs:documentation>Information &amp; Communication Technology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>Industrial Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAP">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSK">
        <xs:annotation>
          <xs:documentation>Key Skills (Only if &lt;KeyStage&gt; = 4)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAE">
        <xs:annotation>
          <xs:documentation>Land &amp; Environment / Agriculture</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAT">
        <xs:annotation>
          <xs:documentation>Latin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAW">
        <xs:annotation>
          <xs:documentation>Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIF">
        <xs:annotation>
          <xs:documentation>Life Skills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTT">
        <xs:annotation>
          <xs:documentation>Leisure, Travel and Tourism</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAT">
        <xs:annotation>
          <xs:documentation>Mathematics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MED">
        <xs:annotation>
          <xs:documentation>Media Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MFL">
        <xs:annotation>
          <xs:documentation>Modern Foreign Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNF">
        <xs:annotation>
          <xs:documentation>Manufacturing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUS">
        <xs:annotation>
          <xs:documentation>Music</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OBC">
        <xs:annotation>
          <xs:documentation>Other Business / Commercial Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OCL">
        <xs:annotation>
          <xs:documentation>Other Classical Studies/Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OHU">
        <xs:annotation>
          <xs:documentation>Other Humanities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLA">
        <xs:annotation>
          <xs:documentation>Other Language Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMA">
        <xs:annotation>
          <xs:documentation>Other Mathematical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPH">
        <xs:annotation>
          <xs:documentation>Other Physical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPR">
        <xs:annotation>
          <xs:documentation>Other Aesthetic / Practical Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OSC">
        <xs:annotation>
          <xs:documentation>Other Sciences</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OSS">
        <xs:annotation>
          <xs:documentation>Other Social Studies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTE">
        <xs:annotation>
          <xs:documentation>Other Technological Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other (not otherwise specified)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OVO">
        <xs:annotation>
          <xs:documentation>Other Vocational Subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAN">
        <xs:annotation>
          <xs:documentation>Panjabi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PED">
        <xs:annotation>
          <xs:documentation>Physical Education / Sports</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PER">
        <xs:annotation>
          <xs:documentation>Performing Arts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHL">
        <xs:annotation>
          <xs:documentation>Philosophy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHY">
        <xs:annotation>
          <xs:documentation>Physics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRI">
        <xs:annotation>
          <xs:documentation>Primary Curriculum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSH">
        <xs:annotation>
          <xs:documentation>Personal Social &amp; Health Education (PSHE)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSY">
        <xs:annotation>
          <xs:documentation>Psychology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REL">
        <xs:annotation>
          <xs:documentation>Religious Education</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWD">
        <xs:annotation>
          <xs:documentation>Retail, Warehousing &amp; Distribution</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCI">
        <xs:annotation>
          <xs:documentation>Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>Special Educational Needs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOC">
        <xs:annotation>
          <xs:documentation>Sociology</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPA">
        <xs:annotation>
          <xs:documentation>Spanish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSS">
        <xs:annotation>
          <xs:documentation>Social Studies/Science</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>Statistics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Swedish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TDG">
        <xs:annotation>
          <xs:documentation>Technical Drawing/Graphics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UFA">
        <xs:annotation>
          <xs:documentation>Under-5 Activities</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URD">
        <xs:annotation>
          <xs:documentation>Urdu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VNW">
        <xs:annotation>
          <xs:documentation>Any new GCSE in a vocational subject</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEL">
        <xs:annotation>
          <xs:documentation>Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGovernanceTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="CO">
        <xs:annotation>
          <xs:documentation>Community</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Voluntary Aided</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VC">
        <xs:annotation>
          <xs:documentation>Voluntary Controlled</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FO">
        <xs:annotation>
          <xs:documentation>Foundation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IN">
        <xs:annotation>
          <xs:documentation>Independent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NM">
        <xs:annotation>
          <xs:documentation>Non-maintained (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CT">
        <xs:annotation>
          <xs:documentation>City Technology College (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CA">
        <xs:annotation>
          <xs:documentation>Academies (England only)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGroupRoleType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="HDT">
        <xs:annotation>
          <xs:documentation>Head teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DHT">
        <xs:annotation>
          <xs:documentation>Deputy head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AHT">
        <xs:annotation>
          <xs:documentation>Assistant head</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCH">
        <xs:annotation>
          <xs:documentation>Classroom teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AST">
        <xs:annotation>
          <xs:documentation>Advanced Skills Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXL">
        <xs:annotation>
          <xs:documentation>Excellent Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUP">
        <xs:annotation>
          <xs:documentation>Support staff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AVT">
        <xs:annotation>
          <xs:documentation>Advisory Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EPS">
        <xs:annotation>
          <xs:documentation>Educational Psychologist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADM">
        <xs:annotation>
          <xs:documentation>Administrator (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GOV">
        <xs:annotation>
          <xs:documentation>Governor (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ACD">
        <xs:annotation>
          <xs:documentation>Academic (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VOL">
        <xs:annotation>
          <xs:documentation>Volunteer (Additional code for use in the Learning Platform)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKGroupingAndSupportWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="GS1">
        <xs:annotation>
          <xs:documentation>Occassional additional support in class</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS2">
        <xs:annotation>
          <xs:documentation>Targeted and sustained additional support</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS3">
        <xs:annotation>
          <xs:documentation>Small group class provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GS4">
        <xs:annotation>
          <xs:documentation>Mostly small group provision</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKInCareTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="FT">
        <xs:annotation>
          <xs:documentation>Fostered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CH">
        <xs:annotation>
          <xs:documentation>Children's Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WP">
        <xs:annotation>
          <xs:documentation>With parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Placed for adoption</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLanguageStudyType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Taught as a first language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Taught as a second language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Taught other language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Not taught language at all</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Disapplied from curriculum by SEN statement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLearnerEnrolmentStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Current (single registration at this school)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="G">
        <xs:annotation>
          <xs:documentation>Guest (pupil not registered at this school but attending some lessons or sessions)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Current Main (dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Current Subsidiary (dual registration)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Previous</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLearnerIdentityType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="WAL">
        <xs:annotation>
          <xs:documentation>Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCO">
        <xs:annotation>
          <xs:documentation>Scottish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRE">
        <xs:annotation>
          <xs:documentation>Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRI">
        <xs:annotation>
          <xs:documentation>British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REF">
        <xs:annotation>
          <xs:documentation>Refused</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOS">
        <xs:annotation>
          <xs:documentation>Not Supplied</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLeavingDestinationType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="MP">
        <xs:annotation>
          <xs:documentation>Maintained primary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IP">
        <xs:annotation>
          <xs:documentation>Independent primary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Maintained secondary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IS">
        <xs:annotation>
          <xs:documentation>Independent secondary school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SC">
        <xs:annotation>
          <xs:documentation>6th Form College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FE">
        <xs:annotation>
          <xs:documentation>General FE, tertiary and specialist colleges </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HE">
        <xs:annotation>
          <xs:documentation>Higher education institutions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WL">
        <xs:annotation>
          <xs:documentation>Work based Learning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EM">
        <xs:annotation>
          <xs:documentation>Employment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NK">
        <xs:annotation>
          <xs:documentation>Other/Not Known</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKLeavingReasonType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="DD">
        <xs:annotation>
          <xs:documentation>Deceased</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EO">
        <xs:annotation>
          <xs:documentation>Education other than at school/college</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EM">
        <xs:annotation>
          <xs:documentation>Emigration</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FE">
        <xs:annotation>
          <xs:documentation>Further Education (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FM">
        <xs:annotation>
          <xs:documentation>First to Middle Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HE">
        <xs:annotation>
          <xs:documentation>Higher Education (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NI">
        <xs:annotation>
          <xs:documentation>Nursery to Infant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IJ">
        <xs:annotation>
          <xs:documentation>Infant to Junior/Primary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JS">
        <xs:annotation>
          <xs:documentation>Junior/Primary to Secondary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Middle to Secondary Phase Transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OS">
        <xs:annotation>
          <xs:documentation>Other School Sixth Form (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other/Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Permanent Exclusion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ST">
        <xs:annotation>
          <xs:documentation>School Transfer (Mid-Year)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TR">
        <xs:annotation>
          <xs:documentation>Training (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UN">
        <xs:annotation>
          <xs:documentation>Unemployment (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WK">
        <xs:annotation>
          <xs:documentation>Employment (Leaver)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MD">
        <xs:annotation>
          <xs:documentation>Military deployment of parent(s)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKMaritalStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Single</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Married</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Divorced</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Widowed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>Not disclosed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Separated</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKNCYearGroupType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N1">
        <xs:annotation>
          <xs:documentation>Nursery first year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="N2">
        <xs:annotation>
          <xs:documentation>Nursery second year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="R">
        <xs:annotation>
          <xs:documentation>Reception</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Year 1</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Year 2</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Year 3</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Year 4</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>Year 5</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="6">
        <xs:annotation>
          <xs:documentation>Year 6</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="7">
        <xs:annotation>
          <xs:documentation>Year 7</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="8">
        <xs:annotation>
          <xs:documentation>Year 8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="9">
        <xs:annotation>
          <xs:documentation>Year 9</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Year 10</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>Year 11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Year 12</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13">
        <xs:annotation>
          <xs:documentation>Year 13</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14">
        <xs:annotation>
          <xs:documentation>Year 14</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Mixed Year Class - available for School Census Class Information</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="X">
        <xs:annotation>
          <xs:documentation>National Curriculum not followed  available only for Special Schools where pupils are not following a particular NC Year</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKOperationalStatusType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Open</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Closed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="3">
        <xs:annotation>
          <xs:documentation>Open, but proposed to close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="4">
        <xs:annotation>
          <xs:documentation>Proposed to open</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="5">
        <xs:annotation>
          <xs:documentation>De-registered as EY Setting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKPhaseTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="NY">
        <xs:annotation>
          <xs:documentation>Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PY">
        <xs:annotation>
          <xs:documentation>Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MP">
        <xs:annotation>
          <xs:documentation>Middle (Deemed Primary)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Middle (Deemed Secondary)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SY">
        <xs:annotation>
          <xs:documentation>Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SP">
        <xs:annotation>
          <xs:documentation>Special</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EY">
        <xs:annotation>
          <xs:documentation>Early Years Setting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PR">
        <xs:annotation>
          <xs:documentation>Pupil Referral Unit (PRU)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XX">
        <xs:annotation>
          <xs:documentation>Multiple phases (not Middle, Special, or PRU)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NO">
        <xs:annotation>
          <xs:documentation>No Establishment (for children not on any establishment roll)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKPhoneTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="F">
        <xs:annotation>
          <xs:documentation>Fax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="H">
        <xs:annotation>
          <xs:documentation>Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>Alternate Home</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="M">
        <xs:annotation>
          <xs:documentation>Mobile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="W">
        <xs:annotation>
          <xs:documentation>Work</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>Minicom (hearing impaired/disabled)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKRelationshipType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ASWR">
        <xs:annotation>
          <xs:documentation>Agency representative</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CARE">
        <xs:annotation>
          <xs:documentation>Carer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHMR">
        <xs:annotation>
          <xs:documentation>Childminder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEPD">
        <xs:annotation>
          <xs:documentation>Dependent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOCT">
        <xs:annotation>
          <xs:documentation>Doctor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EMPY">
        <xs:annotation>
          <xs:documentation>Employer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAAP">
        <xs:annotation>
          <xs:documentation>Adoptive parents</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAAS">
        <xs:annotation>
          <xs:documentation>Adopted son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABH">
        <xs:annotation>
          <xs:documentation>Brother, half</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABI">
        <xs:annotation>
          <xs:documentation>Brother-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABN">
        <xs:annotation>
          <xs:documentation>Brother, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FABS">
        <xs:annotation>
          <xs:documentation>Brother, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADF">
        <xs:annotation>
          <xs:documentation>Foster daughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADI">
        <xs:annotation>
          <xs:documentation>Daughter-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FADR">
        <xs:annotation>
          <xs:documentation>Daughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFF">
        <xs:annotation>
          <xs:documentation>Father, foster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFI">
        <xs:annotation>
          <xs:documentation>Father-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFN">
        <xs:annotation>
          <xs:documentation>Father, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFO">
        <xs:annotation>
          <xs:documentation>Father's significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAFS">
        <xs:annotation>
          <xs:documentation>Father, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGA">
        <xs:annotation>
          <xs:documentation>Great aunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGD">
        <xs:annotation>
          <xs:documentation>Granddaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGF">
        <xs:annotation>
          <xs:documentation>Grandfather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGM">
        <xs:annotation>
          <xs:documentation>Grandmother</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGS">
        <xs:annotation>
          <xs:documentation>Grandson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAGU">
        <xs:annotation>
          <xs:documentation>Great uncle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FALP">
        <xs:annotation>
          <xs:documentation>Life partner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMF">
        <xs:annotation>
          <xs:documentation>Mother, foster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMH">
        <xs:annotation>
          <xs:documentation>Husband</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMI">
        <xs:annotation>
          <xs:documentation>Mother-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMN">
        <xs:annotation>
          <xs:documentation>Mother, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMO">
        <xs:annotation>
          <xs:documentation>Mother's significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAMS">
        <xs:annotation>
          <xs:documentation>Mother, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FANC">
        <xs:annotation>
          <xs:documentation>Niece</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FANW">
        <xs:annotation>
          <xs:documentation>Nephew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAOT">
        <xs:annotation>
          <xs:documentation>Family member</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAPF">
        <xs:annotation>
          <xs:documentation>Foster parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAPP">
        <xs:annotation>
          <xs:documentation>Life partner of parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASF">
        <xs:annotation>
          <xs:documentation>Foster son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASH">
        <xs:annotation>
          <xs:documentation>Sister, half</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASI">
        <xs:annotation>
          <xs:documentation>Sister-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASN">
        <xs:annotation>
          <xs:documentation>Sister, natural/adoptive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASO">
        <xs:annotation>
          <xs:documentation>Son</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASP">
        <xs:annotation>
          <xs:documentation>Stepson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASS">
        <xs:annotation>
          <xs:documentation>Sister, step</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FASW">
        <xs:annotation>
          <xs:documentation>Son-in-law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FNCF">
        <xs:annotation>
          <xs:documentation>Fiance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FNCM">
        <xs:annotation>
          <xs:documentation>Fianc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRND">
        <xs:annotation>
          <xs:documentation>Friend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUAR">
        <xs:annotation>
          <xs:documentation>Court appointed guardian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTCR">
        <xs:annotation>
          <xs:documentation>Head Teacher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NONE">
        <xs:annotation>
          <xs:documentation>None</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OREL">
        <xs:annotation>
          <xs:documentation>Other relative</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHR">
        <xs:annotation>
          <xs:documentation>Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREH">
        <xs:annotation>
          <xs:documentation>Former husband</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PREW">
        <xs:annotation>
          <xs:documentation>Former wife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PROB">
        <xs:annotation>
          <xs:documentation>Probation officer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PTNP">
        <xs:annotation>
          <xs:documentation>Partner of parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PTNR">
        <xs:annotation>
          <xs:documentation>Partner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELA">
        <xs:annotation>
          <xs:documentation>Aunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELC">
        <xs:annotation>
          <xs:documentation>Cousin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELG">
        <xs:annotation>
          <xs:documentation>Minister or priest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RELU">
        <xs:annotation>
          <xs:documentation>Uncle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIGO">
        <xs:annotation>
          <xs:documentation>Significant other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWKR">
        <xs:annotation>
          <xs:documentation>Social Worker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TADV">
        <xs:annotation>
          <xs:documentation>Advisor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WARD">
        <xs:annotation>
          <xs:documentation>Ward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIFE">
        <xs:annotation>
          <xs:documentation>Wife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKReligiousAffiliationType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BA">
        <xs:annotation>
          <xs:documentation>Baptist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BU">
        <xs:annotation>
          <xs:documentation>Buddhist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CE">
        <xs:annotation>
          <xs:documentation>Church of England</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CH">
        <xs:annotation>
          <xs:documentation>Christian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CO">
        <xs:annotation>
          <xs:documentation>Congregational</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EC">
        <xs:annotation>
          <xs:documentation>Christian (Ecumenical)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FR">
        <xs:annotation>
          <xs:documentation>Free Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GR">
        <xs:annotation>
          <xs:documentation>Greek Orthodox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HI">
        <xs:annotation>
          <xs:documentation>Hindu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JE">
        <xs:annotation>
          <xs:documentation>Jewish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JW">
        <xs:annotation>
          <xs:documentation>Jehovah's Witness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LU">
        <xs:annotation>
          <xs:documentation>Lutheran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ME">
        <xs:annotation>
          <xs:documentation>Methodist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MO">
        <xs:annotation>
          <xs:documentation>Mormon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MU">
        <xs:annotation>
          <xs:documentation>Muslim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ND">
        <xs:annotation>
          <xs:documentation>Non-denominational/Secular</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NO">
        <xs:annotation>
          <xs:documentation>No religion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Other Religious Affiliation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QU">
        <xs:annotation>
          <xs:documentation>Quaker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RC">
        <xs:annotation>
          <xs:documentation>Roman Catholic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RF">
        <xs:annotation>
          <xs:documentation>Refused</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RU">
        <xs:annotation>
          <xs:documentation>Russian Orthodox</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SA">
        <xs:annotation>
          <xs:documentation>Salvation Army</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SD">
        <xs:annotation>
          <xs:documentation>Seventh Day Adventist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SI">
        <xs:annotation>
          <xs:documentation>Sikh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UR">
        <xs:annotation>
          <xs:documentation>United Reform Church</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSchoolTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="01">
        <xs:annotation>
          <xs:documentation>First school, 5-8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="02">
        <xs:annotation>
          <xs:documentation>First school, 5-9</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="03">
        <xs:annotation>
          <xs:documentation>First school, 5-10</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="04">
        <xs:annotation>
          <xs:documentation>First and Middle school, 5-12</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05">
        <xs:annotation>
          <xs:documentation>Middle school, 8-12, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="06">
        <xs:annotation>
          <xs:documentation>Middle school, 9-13, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="07">
        <xs:annotation>
          <xs:documentation>Middle school, 9-13, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="08">
        <xs:annotation>
          <xs:documentation>Middle school, 10-13, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 12-15/16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="10">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 12-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 13-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 13-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16">
        <xs:annotation>
          <xs:documentation>Infant school, 5-7/8</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17">
        <xs:annotation>
          <xs:documentation>Junior school, 7/8-11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18">
        <xs:annotation>
          <xs:documentation>Infant and Junior school, 5-11</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21">
        <xs:annotation>
          <xs:documentation>Comprehensive all-through, 11-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22">
        <xs:annotation>
          <xs:documentation>Comprehensive all-through, 11-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="25">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-13, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-14, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="27">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-16, optional transfer at 13</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="28">
        <xs:annotation>
          <xs:documentation>Junior Comprehensive, 11-16, optional transfer at 14</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-16, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-18, optional transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 13-18, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 14-18, optional transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33">
        <xs:annotation>
          <xs:documentation>Senior Comprehensive, 14-18, automatic transfer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="36">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Modern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="37">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Grammar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="38">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Technical</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="39">
        <xs:annotation>
          <xs:documentation>Non-Comprehensive Secondary - Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="41">
        <xs:annotation>
          <xs:documentation>Middle school, 10-14, deemed Secondary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="42">
        <xs:annotation>
          <xs:documentation>First school, 5-7;</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="43">
        <xs:annotation>
          <xs:documentation>First school, 7-10;</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="44">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 14/15-18</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="45">
        <xs:annotation>
          <xs:documentation>Middle school, 9-12, deemed Primary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="46">
        <xs:annotation>
          <xs:documentation>Comprehensive, Middle and Upper, 10-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="47">
        <xs:annotation>
          <xs:documentation>City Technology College</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="48">
        <xs:annotation>
          <xs:documentation>Comprehensive Upper school, 11-16</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="49">
        <xs:annotation>
          <xs:documentation>Academies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="50">
        <xs:annotation>
          <xs:documentation>Maintained Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="51">
        <xs:annotation>
          <xs:documentation>Direct Grant Nursery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSENProvisionType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="N">
        <xs:annotation>
          <xs:documentation>No Special Educational Need</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>School Action or Early Years Action</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>School Action Plus or Early Years Action Plus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Statement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSENTypeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="SPLD">
        <xs:annotation>
          <xs:documentation>Specific Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLD">
        <xs:annotation>
          <xs:documentation>Moderate Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLD">
        <xs:annotation>
          <xs:documentation>Severe Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PMLD">
        <xs:annotation>
          <xs:documentation>Profound &amp; Multiple Learning Difficulty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BESD">
        <xs:annotation>
          <xs:documentation>Behaviour, Emotional &amp; Social Difficulties</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLCD">
        <xs:annotation>
          <xs:documentation>Speech, Language and Communication Difficulties (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLCN">
        <xs:annotation>
          <xs:documentation>Speech, Language and Communication Needs (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HI">
        <xs:annotation>
          <xs:documentation>Hearing Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VI">
        <xs:annotation>
          <xs:documentation>Visual Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSI">
        <xs:annotation>
          <xs:documentation>Multi-Sensory Impairment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PD">
        <xs:annotation>
          <xs:documentation>Physical Disability (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PMED">
        <xs:annotation>
          <xs:documentation>Physical and Medical Difficulties (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASD">
        <xs:annotation>
          <xs:documentation>Autistic Spectrum Disorder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other Difficulty/Disability (England)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNA">
        <xs:annotation>
          <xs:documentation>Does not apply (Wales)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSourceCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>Provided by the child (ie pupil)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="P">
        <xs:annotation>
          <xs:documentation>Provided by the parent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="S">
        <xs:annotation>
          <xs:documentation>Ascribed by the current school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="T">
        <xs:annotation>
          <xs:documentation>Ascribed by a previous school</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="O">
        <xs:annotation>
          <xs:documentation>Other </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKSpecialisedResourcesWalesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="SR1">
        <xs:annotation>
          <xs:documentation>Periodic access to standard equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR2">
        <xs:annotation>
          <xs:documentation>Individual access to normally available equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR3">
        <xs:annotation>
          <xs:documentation>Individual access to specialised equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR4">
        <xs:annotation>
          <xs:documentation>Dedicated access to highly specialised equipment</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTravellerGypsyCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="GH">
        <xs:annotation>
          <xs:documentation>Gypsy/Roma (Housed)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GT">
        <xs:annotation>
          <xs:documentation>Gypsy/Roma (Travelling)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OT">
        <xs:annotation>
          <xs:documentation>Occupational Traveller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TR">
        <xs:annotation>
          <xs:documentation>Traveller (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NT">
        <xs:annotation>
          <xs:documentation>Not a Traveller</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTuitionCategoryType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="IL">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA because of Illness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA because of Permanent Exclusion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OR">
        <xs:annotation>
          <xs:documentation>Alternative Tuition by LA for Other Reason</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HP">
        <xs:annotation>
          <xs:documentation>Alternative Tuition at Home by Parents/Carers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="UKTuitionHoursType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="A">
        <xs:annotation>
          <xs:documentation>5 hours or less</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="B">
        <xs:annotation>
          <xs:documentation>6-12 hours</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="C">
        <xs:annotation>
          <xs:documentation>13-19 hours</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="D">
        <xs:annotation>
          <xs:documentation>20 hours or more</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ISO4217CurrencyNamesAndCodeElementsType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AED">
        <xs:annotation>
          <xs:documentation>UAE Dirham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFN">
        <xs:annotation>
          <xs:documentation>Afghani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALL">
        <xs:annotation>
          <xs:documentation>Lek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMD">
        <xs:annotation>
          <xs:documentation>Armenian Dram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANG">
        <xs:annotation>
          <xs:documentation>Netherlands Antillian Guikder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOA">
        <xs:annotation>
          <xs:documentation>Kwanza</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARS">
        <xs:annotation>
          <xs:documentation>Argentine Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUD">
        <xs:annotation>
          <xs:documentation>Australian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AWG">
        <xs:annotation>
          <xs:documentation>Aruban Guilder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZN">
        <xs:annotation>
          <xs:documentation>Azerbaijanian Manat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAM">
        <xs:annotation>
          <xs:documentation>Convertible Marks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BBD">
        <xs:annotation>
          <xs:documentation>Barbados Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDT">
        <xs:annotation>
          <xs:documentation>Taka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGN">
        <xs:annotation>
          <xs:documentation>Bulgarian Lev</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHD">
        <xs:annotation>
          <xs:documentation>Bahraini Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIF">
        <xs:annotation>
          <xs:documentation>Burundi Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMD">
        <xs:annotation>
          <xs:documentation>Bermudian Dollar (customarily known as Bermuda Dollar) </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BND">
        <xs:annotation>
          <xs:documentation>Brunei Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOB">
        <xs:annotation>
          <xs:documentation>Boliviano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOV">
        <xs:annotation>
          <xs:documentation>Mvdol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRL">
        <xs:annotation>
          <xs:documentation>Brazilian Real</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSD">
        <xs:annotation>
          <xs:documentation>Bahamian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BTN">
        <xs:annotation>
          <xs:documentation>Ngultrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BWP">
        <xs:annotation>
          <xs:documentation>Pula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BYR">
        <xs:annotation>
          <xs:documentation>Belarussian Ruble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BZD">
        <xs:annotation>
          <xs:documentation>Belize Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAD">
        <xs:annotation>
          <xs:documentation>Canadian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDF">
        <xs:annotation>
          <xs:documentation>Franc Congolais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>WIR Euro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHF">
        <xs:annotation>
          <xs:documentation>Swiss Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHW">
        <xs:annotation>
          <xs:documentation>WIR Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLF">
        <xs:annotation>
          <xs:documentation>Unidades de formento</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLP">
        <xs:annotation>
          <xs:documentation>Chilean Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CNY">
        <xs:annotation>
          <xs:documentation>Yuan Renminbi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COP">
        <xs:annotation>
          <xs:documentation>Colombian Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COU">
        <xs:annotation>
          <xs:documentation>Unidad de Valor Real</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRC">
        <xs:annotation>
          <xs:documentation>Costa Rican Colon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSD">
        <xs:annotation>
          <xs:documentation>Serbian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUP">
        <xs:annotation>
          <xs:documentation>Cuban Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CVE">
        <xs:annotation>
          <xs:documentation>Cape Verde Escudo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYP">
        <xs:annotation>
          <xs:documentation>Cyprus Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZK">
        <xs:annotation>
          <xs:documentation>Czech Koruna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DJF">
        <xs:annotation>
          <xs:documentation>Djibouti Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DKK">
        <xs:annotation>
          <xs:documentation>Danish Krone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOP">
        <xs:annotation>
          <xs:documentation>Dominican Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZD">
        <xs:annotation>
          <xs:documentation>Algerian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EEK">
        <xs:annotation>
          <xs:documentation>Kroon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EGP">
        <xs:annotation>
          <xs:documentation>Egyptian Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ERN">
        <xs:annotation>
          <xs:documentation>Nakfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETB">
        <xs:annotation>
          <xs:documentation>Ethiopian Birr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EUR">
        <xs:annotation>
          <xs:documentation>Euro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FJD">
        <xs:annotation>
          <xs:documentation>Fiji Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FKP">
        <xs:annotation>
          <xs:documentation>Falkland Islands Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GBP">
        <xs:annotation>
          <xs:documentation>Pound Sterling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Lari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GHC">
        <xs:annotation>
          <xs:documentation>Cedi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIP">
        <xs:annotation>
          <xs:documentation>Gibraltar Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMD">
        <xs:annotation>
          <xs:documentation>Dalasi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNF">
        <xs:annotation>
          <xs:documentation>Guinea Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTQ">
        <xs:annotation>
          <xs:documentation>Quetzal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GWP">
        <xs:annotation>
          <xs:documentation>Guinea-Bissau Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GYD">
        <xs:annotation>
          <xs:documentation>Guyana Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HKD">
        <xs:annotation>
          <xs:documentation>Hong Kong Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HNL">
        <xs:annotation>
          <xs:documentation>Lempira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HRK">
        <xs:annotation>
          <xs:documentation>Croatian Kuna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTG">
        <xs:annotation>
          <xs:documentation>Gourde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUF">
        <xs:annotation>
          <xs:documentation>Forint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDR">
        <xs:annotation>
          <xs:documentation>Rupiah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ILS">
        <xs:annotation>
          <xs:documentation>New Israeli Sheqel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="INR">
        <xs:annotation>
          <xs:documentation>Indian Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IQD">
        <xs:annotation>
          <xs:documentation>Iraqi Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRR">
        <xs:annotation>
          <xs:documentation>Iranian Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISK">
        <xs:annotation>
          <xs:documentation>Iceland Krona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JMD">
        <xs:annotation>
          <xs:documentation>Jamaican Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JOD">
        <xs:annotation>
          <xs:documentation>Jordanian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPY">
        <xs:annotation>
          <xs:documentation>Yen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KES">
        <xs:annotation>
          <xs:documentation>Kenyan Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGS">
        <xs:annotation>
          <xs:documentation>Som</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHR">
        <xs:annotation>
          <xs:documentation>Riel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KMF">
        <xs:annotation>
          <xs:documentation>Comoro Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KPW">
        <xs:annotation>
          <xs:documentation>North Korean Won</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRW">
        <xs:annotation>
          <xs:documentation>Won</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KWD">
        <xs:annotation>
          <xs:documentation>Kuwaiti Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KYD">
        <xs:annotation>
          <xs:documentation>Cayman Islands Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KZT">
        <xs:annotation>
          <xs:documentation>Tenge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAK">
        <xs:annotation>
          <xs:documentation>Kip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBP">
        <xs:annotation>
          <xs:documentation>Lebanese Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LKR">
        <xs:annotation>
          <xs:documentation>Sri Lanka Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LRD">
        <xs:annotation>
          <xs:documentation>Liberian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSL">
        <xs:annotation>
          <xs:documentation>Loti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTL">
        <xs:annotation>
          <xs:documentation>Lithuanian Litas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LVL">
        <xs:annotation>
          <xs:documentation>Latvian Lats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LYD">
        <xs:annotation>
          <xs:documentation>Libyan Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAD">
        <xs:annotation>
          <xs:documentation>Moroccan Dirham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDL">
        <xs:annotation>
          <xs:documentation>Moldovan Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MGA">
        <xs:annotation>
          <xs:documentation>Malagascy Ariary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Denar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMK">
        <xs:annotation>
          <xs:documentation>Kyat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNT">
        <xs:annotation>
          <xs:documentation>Tugrik</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOP">
        <xs:annotation>
          <xs:documentation>Pataca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MRO">
        <xs:annotation>
          <xs:documentation>Ouguiya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MTL">
        <xs:annotation>
          <xs:documentation>Maltese Lira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUR">
        <xs:annotation>
          <xs:documentation>Mauritius Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MVR">
        <xs:annotation>
          <xs:documentation>Rufiyaa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWK">
        <xs:annotation>
          <xs:documentation>Kwacha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MXN">
        <xs:annotation>
          <xs:documentation>Mexican Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MXV">
        <xs:annotation>
          <xs:documentation>Mexican Unidad de Inversion (UID)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYR">
        <xs:annotation>
          <xs:documentation>Malaysian Ringgit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MZN">
        <xs:annotation>
          <xs:documentation>Metical </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAD">
        <xs:annotation>
          <xs:documentation>Namibian Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NGN">
        <xs:annotation>
          <xs:documentation>Naira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIO">
        <xs:annotation>
          <xs:documentation>Cordoba Oro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOK">
        <xs:annotation>
          <xs:documentation>Norwegian Krone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NPR">
        <xs:annotation>
          <xs:documentation>Nepalese Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZD">
        <xs:annotation>
          <xs:documentation>New Zealand Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMR">
        <xs:annotation>
          <xs:documentation>Rial Omani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAB">
        <xs:annotation>
          <xs:documentation>Balboa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PEN">
        <xs:annotation>
          <xs:documentation>Nuevo Sol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PGK">
        <xs:annotation>
          <xs:documentation>Kina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHP">
        <xs:annotation>
          <xs:documentation>Philippine Peso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PKR">
        <xs:annotation>
          <xs:documentation>Pakistan Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLN">
        <xs:annotation>
          <xs:documentation>Zloty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PYG">
        <xs:annotation>
          <xs:documentation>Guarani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QAR">
        <xs:annotation>
          <xs:documentation>Qatari Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROL">
        <xs:annotation>
          <xs:documentation>Old Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RON">
        <xs:annotation>
          <xs:documentation>New Leu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUB">
        <xs:annotation>
          <xs:documentation>Russian Ruble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWF">
        <xs:annotation>
          <xs:documentation>Rwanda Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAR">
        <xs:annotation>
          <xs:documentation>Saudi Riyal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SBD">
        <xs:annotation>
          <xs:documentation>Solomon Islands Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCR">
        <xs:annotation>
          <xs:documentation>Seychelles Rupee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SDD">
        <xs:annotation>
          <xs:documentation>Sudanese Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEK">
        <xs:annotation>
          <xs:documentation>Swedish Krona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGD">
        <xs:annotation>
          <xs:documentation>Singapore Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHP">
        <xs:annotation>
          <xs:documentation>Saint Helena Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIT">
        <xs:annotation>
          <xs:documentation>Tolar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SKK">
        <xs:annotation>
          <xs:documentation>Slovak Koruna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLL">
        <xs:annotation>
          <xs:documentation>Leone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOS">
        <xs:annotation>
          <xs:documentation>Somali Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRD">
        <xs:annotation>
          <xs:documentation>Surinam Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STD">
        <xs:annotation>
          <xs:documentation>Dobra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVC">
        <xs:annotation>
          <xs:documentation>El Salvador Colon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYP">
        <xs:annotation>
          <xs:documentation>Syrian Pound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SZL">
        <xs:annotation>
          <xs:documentation>Lilangeni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THB">
        <xs:annotation>
          <xs:documentation>Baht</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TJS">
        <xs:annotation>
          <xs:documentation>Somoni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMM">
        <xs:annotation>
          <xs:documentation>Manat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TND">
        <xs:annotation>
          <xs:documentation>Tunisian Dinar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TOP">
        <xs:annotation>
          <xs:documentation>Pa'anga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRY">
        <xs:annotation>
          <xs:documentation>New Turkish Lira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTD">
        <xs:annotation>
          <xs:documentation>Trinidad and Tobago Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TWD">
        <xs:annotation>
          <xs:documentation>New Taiwan Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TZS">
        <xs:annotation>
          <xs:documentation>Tanzanian Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UAH">
        <xs:annotation>
          <xs:documentation>Hryvnia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UGX">
        <xs:annotation>
          <xs:documentation>Uganda Shilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USD">
        <xs:annotation>
          <xs:documentation>US Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USN">
        <xs:annotation>
          <xs:documentation>US Dollar (Next day)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USS">
        <xs:annotation>
          <xs:documentation>US Dollar (Same day)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UYU">
        <xs:annotation>
          <xs:documentation>Peso Uruguayo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZS">
        <xs:annotation>
          <xs:documentation>Uzbekistan Sum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEB">
        <xs:annotation>
          <xs:documentation>Bolivar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VND">
        <xs:annotation>
          <xs:documentation>Dong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VUV">
        <xs:annotation>
          <xs:documentation>Vatu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WST">
        <xs:annotation>
          <xs:documentation>Tala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAF">
        <xs:annotation>
          <xs:documentation>CFA Franc BEAC</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAG">
        <xs:annotation>
          <xs:documentation>Silver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XAU">
        <xs:annotation>
          <xs:documentation>Gold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBA">
        <xs:annotation>
          <xs:documentation>Bond Markets Units European Composite Unit (EURCO)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBB">
        <xs:annotation>
          <xs:documentation>European Monetary Unit (E.M.U.-6)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBC">
        <xs:annotation>
          <xs:documentation>European Unit of Account 9 (E.U.A.-9)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XBD">
        <xs:annotation>
          <xs:documentation>European Unit of Account 17 (E.U.A.-17)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XCD">
        <xs:annotation>
          <xs:documentation>East Caribbean Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XDR">
        <xs:annotation>
          <xs:documentation>SDR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XFO">
        <xs:annotation>
          <xs:documentation>Gold-Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XFU">
        <xs:annotation>
          <xs:documentation>UIC-Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XOF">
        <xs:annotation>
          <xs:documentation>CFA Franc BCEAO</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPD">
        <xs:annotation>
          <xs:documentation>Palladium</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPF">
        <xs:annotation>
          <xs:documentation>CFP Franc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XPT">
        <xs:annotation>
          <xs:documentation>Platinum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XTS">
        <xs:annotation>
          <xs:documentation>Code specifically reserved for testing purposes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XXX">
        <xs:annotation>
          <xs:documentation>Code assigned for transactions where no currency is involved</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YER">
        <xs:annotation>
          <xs:documentation>Yemeni Rial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAR">
        <xs:annotation>
          <xs:documentation>Rand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZMK">
        <xs:annotation>
          <xs:documentation>Kwacha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZWN">
        <xs:annotation>
          <xs:documentation>Zimbabwe Dollar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetEthnicityCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="WENG">
        <xs:annotation>
          <xs:documentation>White - English </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSCO">
        <xs:annotation>
          <xs:documentation>White - Scottish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WWEL">
        <xs:annotation>
          <xs:documentation>White - Welsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOWB">
        <xs:annotation>
          <xs:documentation>Other White British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIRI">
        <xs:annotation>
          <xs:documentation>White - Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIRT">
        <xs:annotation>
          <xs:documentation>Traveller of Irish Heritage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOTH">
        <xs:annotation>
          <xs:documentation>Any Other White Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WALB">
        <xs:annotation>
          <xs:documentation>Albanian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WBOS">
        <xs:annotation>
          <xs:documentation>Bosnian- Herzegovinian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WCRO">
        <xs:annotation>
          <xs:documentation>Croatian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRE">
        <xs:annotation>
          <xs:documentation>Greek/ Greek Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRK">
        <xs:annotation>
          <xs:documentation>Greek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WGRC">
        <xs:annotation>
          <xs:documentation>Greek Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WKOS">
        <xs:annotation>
          <xs:documentation>Kosovan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WPOR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSER">
        <xs:annotation>
          <xs:documentation>Serbian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUR">
        <xs:annotation>
          <xs:documentation>Turkish/ Turkish Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUK">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WTUC">
        <xs:annotation>
          <xs:documentation>Turkish Cypriot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEUR">
        <xs:annotation>
          <xs:documentation>White European</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEEU">
        <xs:annotation>
          <xs:documentation>White Eastern European </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WWEU">
        <xs:annotation>
          <xs:documentation>White Western European </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOTW">
        <xs:annotation>
          <xs:documentation>White Other </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WROM">
        <xs:annotation>
          <xs:documentation>Gypsy / Roma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWBC">
        <xs:annotation>
          <xs:documentation>White and Black Caribbean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWBA">
        <xs:annotation>
          <xs:documentation>White and Black African</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAS">
        <xs:annotation>
          <xs:documentation>White and Asian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAP">
        <xs:annotation>
          <xs:documentation>White and Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAI">
        <xs:annotation>
          <xs:documentation>White and Indian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWAO">
        <xs:annotation>
          <xs:documentation>White and Any Other Asian Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOTH">
        <xs:annotation>
          <xs:documentation>Any Other Mixed Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAOE">
        <xs:annotation>
          <xs:documentation>Asian and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MABL">
        <xs:annotation>
          <xs:documentation>Asian and Black</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MACH">
        <xs:annotation>
          <xs:documentation>Asian and Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MBOE">
        <xs:annotation>
          <xs:documentation>Black and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MBCH">
        <xs:annotation>
          <xs:documentation>Black and Chinese </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MCOE">
        <xs:annotation>
          <xs:documentation>Chinese and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWOE">
        <xs:annotation>
          <xs:documentation>White and Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWCH">
        <xs:annotation>
          <xs:documentation>White and Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOTM">
        <xs:annotation>
          <xs:documentation>Other Mixed Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIND">
        <xs:annotation>
          <xs:documentation>Indian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="APKN">
        <xs:annotation>
          <xs:documentation>Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMPK">
        <xs:annotation>
          <xs:documentation>Mirpuri Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKPA">
        <xs:annotation>
          <xs:documentation>Kashmiri Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOPK">
        <xs:annotation>
          <xs:documentation>Other Pakistani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABAN">
        <xs:annotation>
          <xs:documentation>Bangladeshi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOTH">
        <xs:annotation>
          <xs:documentation>Any Other Asian Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AAFR">
        <xs:annotation>
          <xs:documentation>African Asian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAO">
        <xs:annotation>
          <xs:documentation>Kashmiri Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANEP">
        <xs:annotation>
          <xs:documentation>Nepali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASNL">
        <xs:annotation>
          <xs:documentation>Sinhalese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASLT">
        <xs:annotation>
          <xs:documentation>Sri Lankan Tamil </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AOTA">
        <xs:annotation>
          <xs:documentation>Other Asian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BCRB">
        <xs:annotation>
          <xs:documentation>Black Caribbean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAFR">
        <xs:annotation>
          <xs:documentation>Black - African</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BANN">
        <xs:annotation>
          <xs:documentation>Black - Angolan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BCON">
        <xs:annotation>
          <xs:documentation>Black - Congolese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGHA">
        <xs:annotation>
          <xs:documentation>Black - Ghanaian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGN">
        <xs:annotation>
          <xs:documentation>Black - Nigerian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSLN">
        <xs:annotation>
          <xs:documentation>Black - Sierra Leonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSOM">
        <xs:annotation>
          <xs:documentation>Black - Somali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSUD">
        <xs:annotation>
          <xs:documentation>Black - Sudanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAOF">
        <xs:annotation>
          <xs:documentation>Other Black African </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOTH">
        <xs:annotation>
          <xs:documentation>Any Other Black Background</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEUR">
        <xs:annotation>
          <xs:documentation>Black European</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNAM">
        <xs:annotation>
          <xs:documentation>Black North American </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOTB">
        <xs:annotation>
          <xs:documentation>Other Black</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHNE">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHKC">
        <xs:annotation>
          <xs:documentation>Hong Kong Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CMAL">
        <xs:annotation>
          <xs:documentation>Malaysian Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSNG">
        <xs:annotation>
          <xs:documentation>Singaporean Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTWN">
        <xs:annotation>
          <xs:documentation>Taiwanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COCH">
        <xs:annotation>
          <xs:documentation>Other Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOTH">
        <xs:annotation>
          <xs:documentation>Any Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAFG">
        <xs:annotation>
          <xs:documentation>Afghan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OARA">
        <xs:annotation>
          <xs:documentation>Arab Other</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OEGY">
        <xs:annotation>
          <xs:documentation>Egyptian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OFIL">
        <xs:annotation>
          <xs:documentation>Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OIRN">
        <xs:annotation>
          <xs:documentation>Iranian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OIRQ">
        <xs:annotation>
          <xs:documentation>Iraqi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OJPN">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OKOR">
        <xs:annotation>
          <xs:documentation>Korean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OKRD">
        <xs:annotation>
          <xs:documentation>Kurdish </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLAM">
        <xs:annotation>
          <xs:documentation>Latin/ South/ Central American </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLEB">
        <xs:annotation>
          <xs:documentation>Lebanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OLIB">
        <xs:annotation>
          <xs:documentation>Libyan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMAL">
        <xs:annotation>
          <xs:documentation>Malay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMRC">
        <xs:annotation>
          <xs:documentation>Moroccan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OPOL">
        <xs:annotation>
          <xs:documentation>Polynesian </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTHA">
        <xs:annotation>
          <xs:documentation>Thai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OVIE">
        <xs:annotation>
          <xs:documentation>Vietnamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OYEM">
        <xs:annotation>
          <xs:documentation>Yemeni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OOEG">
        <xs:annotation>
          <xs:documentation>Other Ethnic Group</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REFU">
        <xs:annotation>
          <xs:documentation>Refused </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOBT">
        <xs:annotation>
          <xs:documentation>Information Not Yet Obtained</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetChurchOfEnglandDioceseType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BAT">
        <xs:annotation>
          <xs:documentation>Bath &amp; Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIR">
        <xs:annotation>
          <xs:documentation>Birmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLA">
        <xs:annotation>
          <xs:documentation>Blackburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRA">
        <xs:annotation>
          <xs:documentation>Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRI">
        <xs:annotation>
          <xs:documentation>Bristol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAN">
        <xs:annotation>
          <xs:documentation>Canterbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Carlisle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Chelmsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHS">
        <xs:annotation>
          <xs:documentation>Chester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chichester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COV">
        <xs:annotation>
          <xs:documentation>Coventry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DER">
        <xs:annotation>
          <xs:documentation>Derby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUR">
        <xs:annotation>
          <xs:documentation>Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ELY">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EXE">
        <xs:annotation>
          <xs:documentation>Exeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLO">
        <xs:annotation>
          <xs:documentation>Gloucester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUI">
        <xs:annotation>
          <xs:documentation>Guildford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEI">
        <xs:annotation>
          <xs:documentation>Leicester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIC">
        <xs:annotation>
          <xs:documentation>Lichfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Lincoln</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIV">
        <xs:annotation>
          <xs:documentation>Liverpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LON">
        <xs:annotation>
          <xs:documentation>London</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAN">
        <xs:annotation>
          <xs:documentation>Manchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NEW">
        <xs:annotation>
          <xs:documentation>Newcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OXF">
        <xs:annotation>
          <xs:documentation>Oxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PET">
        <xs:annotation>
          <xs:documentation>Peterborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portsmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RIP">
        <xs:annotation>
          <xs:documentation>Ripon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROC">
        <xs:annotation>
          <xs:documentation>Rochester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>St Albans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STE">
        <xs:annotation>
          <xs:documentation>St Edmundsbury &amp; Ipswich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAL">
        <xs:annotation>
          <xs:documentation>Salisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHE">
        <xs:annotation>
          <xs:documentation>Sheffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOD">
        <xs:annotation>
          <xs:documentation>Sodor &amp; Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOU">
        <xs:annotation>
          <xs:documentation>Southwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOW">
        <xs:annotation>
          <xs:documentation>Southwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRU">
        <xs:annotation>
          <xs:documentation>Truro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAK">
        <xs:annotation>
          <xs:documentation>Wakefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIN">
        <xs:annotation>
          <xs:documentation>Winchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOR">
        <xs:annotation>
          <xs:documentation>Worcester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YOR">
        <xs:annotation>
          <xs:documentation>York</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLAIdType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="001">
        <xs:annotation>
          <xs:documentation>BELFAST EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="002">
        <xs:annotation>
          <xs:documentation>WESTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="003">
        <xs:annotation>
          <xs:documentation>NORTH EASTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="004">
        <xs:annotation>
          <xs:documentation>SOUTH EASTERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="005">
        <xs:annotation>
          <xs:documentation>SOUTHERN EDUCATION AND LIBRARY BOARD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="201">
        <xs:annotation>
          <xs:documentation>CITY OF LONDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="202">
        <xs:annotation>
          <xs:documentation>CAMDEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="203">
        <xs:annotation>
          <xs:documentation>GREENWICH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="204">
        <xs:annotation>
          <xs:documentation>HACKNEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="205">
        <xs:annotation>
          <xs:documentation>HAMMERSMITH &amp; FULHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="206">
        <xs:annotation>
          <xs:documentation>ISLINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="207">
        <xs:annotation>
          <xs:documentation>KENSINGTON &amp; CHELSEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="208">
        <xs:annotation>
          <xs:documentation>LAMBETH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="209">
        <xs:annotation>
          <xs:documentation>LEWISHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="210">
        <xs:annotation>
          <xs:documentation>SOUTHWARK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="211">
        <xs:annotation>
          <xs:documentation>TOWER HAMLETS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="212">
        <xs:annotation>
          <xs:documentation>WANDSWORTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="213">
        <xs:annotation>
          <xs:documentation>WESTMINSTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="301">
        <xs:annotation>
          <xs:documentation>BARKING &amp; DAGENHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="302">
        <xs:annotation>
          <xs:documentation>BARNET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="303">
        <xs:annotation>
          <xs:documentation>BEXLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="304">
        <xs:annotation>
          <xs:documentation>BRENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="305">
        <xs:annotation>
          <xs:documentation>BROMLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="306">
        <xs:annotation>
          <xs:documentation>CROYDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="307">
        <xs:annotation>
          <xs:documentation>EALING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="308">
        <xs:annotation>
          <xs:documentation>ENFIELD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="309">
        <xs:annotation>
          <xs:documentation>HARINGEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="310">
        <xs:annotation>
          <xs:documentation>HARROW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="311">
        <xs:annotation>
          <xs:documentation>HAVERING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="312">
        <xs:annotation>
          <xs:documentation>HILLINGDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="313">
        <xs:annotation>
          <xs:documentation>HOUNSLOW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="314">
        <xs:annotation>
          <xs:documentation>KINGSTON UPON THAMES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="315">
        <xs:annotation>
          <xs:documentation>MERTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="316">
        <xs:annotation>
          <xs:documentation>NEWHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="317">
        <xs:annotation>
          <xs:documentation>REDBRIDGE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="318">
        <xs:annotation>
          <xs:documentation>RICHMOND UPON THAMES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="319">
        <xs:annotation>
          <xs:documentation>SUTTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="320">
        <xs:annotation>
          <xs:documentation>WALTHAM FOREST</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="330">
        <xs:annotation>
          <xs:documentation>BIRMINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="331">
        <xs:annotation>
          <xs:documentation>COVENTRY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="332">
        <xs:annotation>
          <xs:documentation>DUDLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="333">
        <xs:annotation>
          <xs:documentation>SANDWELL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="334">
        <xs:annotation>
          <xs:documentation>SOLIHULL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="335">
        <xs:annotation>
          <xs:documentation>WALSALL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="336">
        <xs:annotation>
          <xs:documentation>WOLVERHAMPTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="340">
        <xs:annotation>
          <xs:documentation>KNOWSLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="341">
        <xs:annotation>
          <xs:documentation>LIVERPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="342">
        <xs:annotation>
          <xs:documentation>ST HELENS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="343">
        <xs:annotation>
          <xs:documentation>SEFTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="344">
        <xs:annotation>
          <xs:documentation>WIRRAL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="350">
        <xs:annotation>
          <xs:documentation>BOLTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="351">
        <xs:annotation>
          <xs:documentation>BURY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="352">
        <xs:annotation>
          <xs:documentation>MANCHESTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="353">
        <xs:annotation>
          <xs:documentation>OLDHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="354">
        <xs:annotation>
          <xs:documentation>ROCHDALE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="355">
        <xs:annotation>
          <xs:documentation>SALFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="356">
        <xs:annotation>
          <xs:documentation>STOCKPORT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="357">
        <xs:annotation>
          <xs:documentation>TAMESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="358">
        <xs:annotation>
          <xs:documentation>TRAFFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="359">
        <xs:annotation>
          <xs:documentation>WIGAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="370">
        <xs:annotation>
          <xs:documentation>BARNSLEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="371">
        <xs:annotation>
          <xs:documentation>DONCASTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="372">
        <xs:annotation>
          <xs:documentation>ROTHERHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="373">
        <xs:annotation>
          <xs:documentation>SHEFFIELD </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="380">
        <xs:annotation>
          <xs:documentation>BRADFORD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="381">
        <xs:annotation>
          <xs:documentation>CALDERDALE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="382">
        <xs:annotation>
          <xs:documentation>KIRKLEES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="383">
        <xs:annotation>
          <xs:documentation>LEEDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="384">
        <xs:annotation>
          <xs:documentation>WAKEFIELD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="390">
        <xs:annotation>
          <xs:documentation>GATESHEAD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="391">
        <xs:annotation>
          <xs:documentation>NEWCASTLE UPON TYNE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="392">
        <xs:annotation>
          <xs:documentation>NORTH TYNESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="393">
        <xs:annotation>
          <xs:documentation>SOUTH TYNESIDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="394">
        <xs:annotation>
          <xs:documentation>SUNDERLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="420">
        <xs:annotation>
          <xs:documentation>ISLES OF SCILLY </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="600">
        <xs:annotation>
          <xs:documentation>SCOTLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="601">
        <xs:annotation>
          <xs:documentation>ABERDEEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="602">
        <xs:annotation>
          <xs:documentation>ABERDEENSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="603">
        <xs:annotation>
          <xs:documentation>ANGUS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="604">
        <xs:annotation>
          <xs:documentation>ARGYLL &amp; BUTE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="605">
        <xs:annotation>
          <xs:documentation>CLACKMANNANSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="606">
        <xs:annotation>
          <xs:documentation>DUMFRIES &amp; GALLOWAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="607">
        <xs:annotation>
          <xs:documentation>DUNDEE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="608">
        <xs:annotation>
          <xs:documentation>EAST AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="609">
        <xs:annotation>
          <xs:documentation>EAST DUNBARTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="610">
        <xs:annotation>
          <xs:documentation>EAST LOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="611">
        <xs:annotation>
          <xs:documentation>EAST RENFREWSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="612">
        <xs:annotation>
          <xs:documentation>EDINBURGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="613">
        <xs:annotation>
          <xs:documentation>EILEAN SIAR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="614">
        <xs:annotation>
          <xs:documentation>FALKIRK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="615">
        <xs:annotation>
          <xs:documentation>FIFE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="616">
        <xs:annotation>
          <xs:documentation>GLASGOW</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="617">
        <xs:annotation>
          <xs:documentation>HIGHLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="618">
        <xs:annotation>
          <xs:documentation>INVERCLYDE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="619">
        <xs:annotation>
          <xs:documentation>MIDLOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="620">
        <xs:annotation>
          <xs:documentation>MORAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="621">
        <xs:annotation>
          <xs:documentation>NORTH AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="622">
        <xs:annotation>
          <xs:documentation>NORTH LANARKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="623">
        <xs:annotation>
          <xs:documentation>ORKNEY ISLANDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="624">
        <xs:annotation>
          <xs:documentation>PERTH &amp; KINROSS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="625">
        <xs:annotation>
          <xs:documentation>RENFREWSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="626">
        <xs:annotation>
          <xs:documentation>SCOTTISH BORDERS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="627">
        <xs:annotation>
          <xs:documentation>SHETLAND ISLANDS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="628">
        <xs:annotation>
          <xs:documentation>SOUTH AYRSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="629">
        <xs:annotation>
          <xs:documentation>SOUTH LANARKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="630">
        <xs:annotation>
          <xs:documentation>STIRLING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="631">
        <xs:annotation>
          <xs:documentation>WEST DUNBARTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="632">
        <xs:annotation>
          <xs:documentation>WEST LOTHIAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="633">
        <xs:annotation>
          <xs:documentation>WESTERN ISLES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="660">
        <xs:annotation>
          <xs:documentation>ISLE OF ANGLESEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="661">
        <xs:annotation>
          <xs:documentation>GWYNEDD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="662">
        <xs:annotation>
          <xs:documentation>CONWY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="663">
        <xs:annotation>
          <xs:documentation>DENBIGHSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="664">
        <xs:annotation>
          <xs:documentation>FLINTSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="665">
        <xs:annotation>
          <xs:documentation>WREXHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="666">
        <xs:annotation>
          <xs:documentation>POWYS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="667">
        <xs:annotation>
          <xs:documentation>CEREDIGION</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="668">
        <xs:annotation>
          <xs:documentation>PEMBROKESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="669">
        <xs:annotation>
          <xs:documentation>CARMARTHENSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="670">
        <xs:annotation>
          <xs:documentation>SWANSEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="671">
        <xs:annotation>
          <xs:documentation>NEATH PORT TALBOT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="672">
        <xs:annotation>
          <xs:documentation>BRIDGEND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="673">
        <xs:annotation>
          <xs:documentation>THE VALE OF GLAMORGAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="674">
        <xs:annotation>
          <xs:documentation>RHONDDA CYNON TAFF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="675">
        <xs:annotation>
          <xs:documentation>MERTHYR TYDFIL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="676">
        <xs:annotation>
          <xs:documentation>CAERPHILLY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="677">
        <xs:annotation>
          <xs:documentation>BLAENAU GWENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="678">
        <xs:annotation>
          <xs:documentation>TORFAEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="679">
        <xs:annotation>
          <xs:documentation>MONMOUTHSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="680">
        <xs:annotation>
          <xs:documentation>NEWPORT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="681">
        <xs:annotation>
          <xs:documentation>CARDIFF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="701">
        <xs:annotation>
          <xs:documentation>SCOTLAND OFFSHORE ESTABLISHMENTS **</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="702">
        <xs:annotation>
          <xs:documentation>SERVICE CHILDREN'S EDUCATION AUTHORITY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="703">
        <xs:annotation>
          <xs:documentation>OTHER OVERSEAS SCHOOLS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="704">
        <xs:annotation>
          <xs:documentation>SHELL SCHOOLS</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="705">
        <xs:annotation>
          <xs:documentation>ISLE OF MAN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="706">
        <xs:annotation>
          <xs:documentation>GUERNSEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="707">
        <xs:annotation>
          <xs:documentation>JERSEY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="708">
        <xs:annotation>
          <xs:documentation>GIBRALTAR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="800">
        <xs:annotation>
          <xs:documentation>BATH &amp; NORTH EAST SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="801">
        <xs:annotation>
          <xs:documentation>BRISTOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="802">
        <xs:annotation>
          <xs:documentation>NORTH SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="803">
        <xs:annotation>
          <xs:documentation>SOUTH GLOUCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="805">
        <xs:annotation>
          <xs:documentation>HARTLEPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="806">
        <xs:annotation>
          <xs:documentation>MIDDLESBROUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="807">
        <xs:annotation>
          <xs:documentation>REDCAR &amp; CLEVELAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="808">
        <xs:annotation>
          <xs:documentation>STOCKTON-ON-TEES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="810">
        <xs:annotation>
          <xs:documentation>KINGSTON-UPON-HULL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="811">
        <xs:annotation>
          <xs:documentation>EAST RIDING OF YORKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="812">
        <xs:annotation>
          <xs:documentation>NORTH EAST LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="813">
        <xs:annotation>
          <xs:documentation>NORTH LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="815">
        <xs:annotation>
          <xs:documentation>NORTH YORKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="816">
        <xs:annotation>
          <xs:documentation>YORK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="820">
        <xs:annotation>
          <xs:documentation>BEDFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="821">
        <xs:annotation>
          <xs:documentation>LUTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="825">
        <xs:annotation>
          <xs:documentation>BUCKINGHAMSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="826">
        <xs:annotation>
          <xs:documentation>MILTON KEYNES</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="830">
        <xs:annotation>
          <xs:documentation>DERBYSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="831">
        <xs:annotation>
          <xs:documentation>DERBY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="835">
        <xs:annotation>
          <xs:documentation>DORSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="836">
        <xs:annotation>
          <xs:documentation>POOLE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="837">
        <xs:annotation>
          <xs:documentation>BOURNEMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="840">
        <xs:annotation>
          <xs:documentation>DURHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="841">
        <xs:annotation>
          <xs:documentation>DARLINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="845">
        <xs:annotation>
          <xs:documentation>EAST SUSSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="846">
        <xs:annotation>
          <xs:documentation>BRIGHTON &amp; HOVE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="850">
        <xs:annotation>
          <xs:documentation>HAMPSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="851">
        <xs:annotation>
          <xs:documentation>PORTSMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="852">
        <xs:annotation>
          <xs:documentation>SOUTHAMPTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="855">
        <xs:annotation>
          <xs:documentation>LEICESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="856">
        <xs:annotation>
          <xs:documentation>LEICESTER</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="857">
        <xs:annotation>
          <xs:documentation>RUTLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="860">
        <xs:annotation>
          <xs:documentation>STAFFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="861">
        <xs:annotation>
          <xs:documentation>STOKE-ON-TRENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="865">
        <xs:annotation>
          <xs:documentation>WILTSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="866">
        <xs:annotation>
          <xs:documentation>SWINDON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="867">
        <xs:annotation>
          <xs:documentation>BRACKNELL FOREST</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="868">
        <xs:annotation>
          <xs:documentation>WINDSOR &amp; MAIDENHEAD</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="869">
        <xs:annotation>
          <xs:documentation>WEST BERKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="870">
        <xs:annotation>
          <xs:documentation>READING</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="871">
        <xs:annotation>
          <xs:documentation>SLOUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="872">
        <xs:annotation>
          <xs:documentation>WOKINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="873">
        <xs:annotation>
          <xs:documentation>CAMBRIDGESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="874">
        <xs:annotation>
          <xs:documentation>PETERBOROUGH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="875">
        <xs:annotation>
          <xs:documentation>CHESHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="876">
        <xs:annotation>
          <xs:documentation>HALTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="877">
        <xs:annotation>
          <xs:documentation>WARRINGTON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="878">
        <xs:annotation>
          <xs:documentation>DEVON</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="879">
        <xs:annotation>
          <xs:documentation>PLYMOUTH</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="880">
        <xs:annotation>
          <xs:documentation>TORBAY </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="881">
        <xs:annotation>
          <xs:documentation>ESSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="882">
        <xs:annotation>
          <xs:documentation>SOUTHEND-ON-SEA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="883">
        <xs:annotation>
          <xs:documentation>THURROCK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="884">
        <xs:annotation>
          <xs:documentation>HEREFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="885">
        <xs:annotation>
          <xs:documentation>WORCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="886">
        <xs:annotation>
          <xs:documentation>KENT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="887">
        <xs:annotation>
          <xs:documentation>MEDWAY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="888">
        <xs:annotation>
          <xs:documentation>LANCASHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="889">
        <xs:annotation>
          <xs:documentation>BLACKBURN WITH DARWEN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="890">
        <xs:annotation>
          <xs:documentation>BLACKPOOL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="891">
        <xs:annotation>
          <xs:documentation>NOTTINGHAMSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="892">
        <xs:annotation>
          <xs:documentation>NOTTINGHAM</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="893">
        <xs:annotation>
          <xs:documentation>SHROPSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="894">
        <xs:annotation>
          <xs:documentation>TELFORD &amp; WREKIN</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="901">
        <xs:annotation>
          <xs:documentation>AVON (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="902">
        <xs:annotation>
          <xs:documentation>BEDFORDSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="903">
        <xs:annotation>
          <xs:documentation>BERKSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="904">
        <xs:annotation>
          <xs:documentation>BUCKINGHAMSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="905">
        <xs:annotation>
          <xs:documentation>CAMBRIDGESHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="906">
        <xs:annotation>
          <xs:documentation>CHESHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="907">
        <xs:annotation>
          <xs:documentation>CLEVELAND (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="908">
        <xs:annotation>
          <xs:documentation>CORNWALL</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="909">
        <xs:annotation>
          <xs:documentation>CUMBRIA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="910">
        <xs:annotation>
          <xs:documentation>DERBYSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="911">
        <xs:annotation>
          <xs:documentation>DEVON (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="912">
        <xs:annotation>
          <xs:documentation>DORSET (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="913">
        <xs:annotation>
          <xs:documentation>DURHAM (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="914">
        <xs:annotation>
          <xs:documentation>EAST SUSSEX (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="915">
        <xs:annotation>
          <xs:documentation>ESSEX (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="916">
        <xs:annotation>
          <xs:documentation>GLOUCESTERSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="917">
        <xs:annotation>
          <xs:documentation>HAMPSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="918">
        <xs:annotation>
          <xs:documentation>HEREFORD AND WORCESTER (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="919">
        <xs:annotation>
          <xs:documentation>HERTFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="920">
        <xs:annotation>
          <xs:documentation>HUMBERSIDE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="921">
        <xs:annotation>
          <xs:documentation>ISLE OF WIGHT</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="922">
        <xs:annotation>
          <xs:documentation>KENT (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="923">
        <xs:annotation>
          <xs:documentation>LANCASHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="924">
        <xs:annotation>
          <xs:documentation>LEICESTERSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="925">
        <xs:annotation>
          <xs:documentation>LINCOLNSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="926">
        <xs:annotation>
          <xs:documentation>NORFOLK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="927">
        <xs:annotation>
          <xs:documentation>NORTH YORKSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="928">
        <xs:annotation>
          <xs:documentation>NORTHAMPTONSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="929">
        <xs:annotation>
          <xs:documentation>NORTHUMBERLAND</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="930">
        <xs:annotation>
          <xs:documentation>NOTTINGHAMSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="931">
        <xs:annotation>
          <xs:documentation>OXFORDSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="932">
        <xs:annotation>
          <xs:documentation>SHROPSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="933">
        <xs:annotation>
          <xs:documentation>SOMERSET</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="934">
        <xs:annotation>
          <xs:documentation>STAFFORDSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="935">
        <xs:annotation>
          <xs:documentation>SUFFOLK</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="936">
        <xs:annotation>
          <xs:documentation>SURREY</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="937">
        <xs:annotation>
          <xs:documentation>WARWICKSHIRE</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="938">
        <xs:annotation>
          <xs:documentation>WEST SUSSEX</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="939">
        <xs:annotation>
          <xs:documentation>WILTSHIRE (PRE LGR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XXX">
        <xs:annotation>
          <xs:documentation>For CTF purposes where the LA is not known</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMM">
        <xs:annotation>
          <xs:documentation>For CTF purposes where a school has left the maintained sector</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAA">
        <xs:annotation>
          <xs:documentation>For transfer of TA and P Scales data for NAA via CTF</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLANameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BELFAST EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="WESTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="NORTH EASTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="SOUTH EASTERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="SOUTHERN EDUCATION AND LIBRARY BOARD" />
      <xs:enumeration value="CITY OF LONDON" />
      <xs:enumeration value="CAMDEN" />
      <xs:enumeration value="GREENWICH" />
      <xs:enumeration value="HACKNEY" />
      <xs:enumeration value="HAMMERSMITH &amp; FULHAM" />
      <xs:enumeration value="ISLINGTON" />
      <xs:enumeration value="KENSINGTON &amp; CHELSEA" />
      <xs:enumeration value="LAMBETH" />
      <xs:enumeration value="LEWISHAM" />
      <xs:enumeration value="SOUTHWARK" />
      <xs:enumeration value="TOWER HAMLETS" />
      <xs:enumeration value="WANDSWORTH" />
      <xs:enumeration value="WESTMINSTER" />
      <xs:enumeration value="BARKING &amp; DAGENHAM" />
      <xs:enumeration value="BARNET" />
      <xs:enumeration value="BEXLEY" />
      <xs:enumeration value="BRENT" />
      <xs:enumeration value="BROMLEY" />
      <xs:enumeration value="CROYDON" />
      <xs:enumeration value="EALING" />
      <xs:enumeration value="ENFIELD" />
      <xs:enumeration value="HARINGEY" />
      <xs:enumeration value="HARROW" />
      <xs:enumeration value="HAVERING" />
      <xs:enumeration value="HILLINGDON" />
      <xs:enumeration value="HOUNSLOW" />
      <xs:enumeration value="KINGSTON UPON THAMES" />
      <xs:enumeration value="MERTON" />
      <xs:enumeration value="NEWHAM" />
      <xs:enumeration value="REDBRIDGE" />
      <xs:enumeration value="RICHMOND UPON THAMES" />
      <xs:enumeration value="SUTTON" />
      <xs:enumeration value="WALTHAM FOREST" />
      <xs:enumeration value="BIRMINGHAM" />
      <xs:enumeration value="COVENTRY" />
      <xs:enumeration value="DUDLEY" />
      <xs:enumeration value="SANDWELL" />
      <xs:enumeration value="SOLIHULL" />
      <xs:enumeration value="WALSALL" />
      <xs:enumeration value="WOLVERHAMPTON" />
      <xs:enumeration value="KNOWSLEY" />
      <xs:enumeration value="LIVERPOOL" />
      <xs:enumeration value="ST HELENS" />
      <xs:enumeration value="SEFTON" />
      <xs:enumeration value="WIRRAL" />
      <xs:enumeration value="BOLTON" />
      <xs:enumeration value="BURY" />
      <xs:enumeration value="MANCHESTER" />
      <xs:enumeration value="OLDHAM" />
      <xs:enumeration value="ROCHDALE" />
      <xs:enumeration value="SALFORD" />
      <xs:enumeration value="STOCKPORT" />
      <xs:enumeration value="TAMESIDE" />
      <xs:enumeration value="TRAFFORD" />
      <xs:enumeration value="WIGAN" />
      <xs:enumeration value="BARNSLEY" />
      <xs:enumeration value="DONCASTER" />
      <xs:enumeration value="ROTHERHAM" />
      <xs:enumeration value="SHEFFIELD" />
      <xs:enumeration value="BRADFORD" />
      <xs:enumeration value="CALDERDALE" />
      <xs:enumeration value="KIRKLEES" />
      <xs:enumeration value="LEEDS" />
      <xs:enumeration value="WAKEFIELD" />
      <xs:enumeration value="GATESHEAD" />
      <xs:enumeration value="NEWCASTLE UPON TYNE" />
      <xs:enumeration value="NORTH TYNESIDE" />
      <xs:enumeration value="SOUTH TYNESIDE" />
      <xs:enumeration value="SUNDERLAND" />
      <xs:enumeration value="ISLES OF SCILLY" />
      <xs:enumeration value="SCOTLAND" />
      <xs:enumeration value="ABERDEEN" />
      <xs:enumeration value="ABERDEENSHIRE" />
      <xs:enumeration value="ANGUS" />
      <xs:enumeration value="ARGYLL &amp; BUTE" />
      <xs:enumeration value="CLACKMANNANSHIRE" />
      <xs:enumeration value="DUMFRIES &amp; GALLOWAY" />
      <xs:enumeration value="DUNDEE" />
      <xs:enumeration value="EAST AYRSHIRE" />
      <xs:enumeration value="EAST DUNBARTONSHIRE" />
      <xs:enumeration value="EAST LOTHIAN" />
      <xs:enumeration value="EAST RENFREWSHIRE" />
      <xs:enumeration value="EDINBURGH" />
      <xs:enumeration value="EILEAN SIAR" />
      <xs:enumeration value="FALKIRK" />
      <xs:enumeration value="FIFE" />
      <xs:enumeration value="GLASGOW" />
      <xs:enumeration value="HIGHLAND" />
      <xs:enumeration value="INVERCLYDE" />
      <xs:enumeration value="MIDLOTHIAN" />
      <xs:enumeration value="MORAY" />
      <xs:enumeration value="NORTH AYRSHIRE" />
      <xs:enumeration value="NORTH LANARKSHIRE" />
      <xs:enumeration value="ORKNEY ISLANDS" />
      <xs:enumeration value="PERTH &amp; KINROSS" />
      <xs:enumeration value="RENFREWSHIRE" />
      <xs:enumeration value="SCOTTISH BORDERS" />
      <xs:enumeration value="SHETLAND ISLANDS" />
      <xs:enumeration value="SOUTH AYRSHIRE" />
      <xs:enumeration value="SOUTH LANARKSHIRE" />
      <xs:enumeration value="STIRLING" />
      <xs:enumeration value="WEST DUNBARTONSHIRE" />
      <xs:enumeration value="WEST LOTHIAN" />
      <xs:enumeration value="WESTERN ISLES" />
      <xs:enumeration value="ISLE OF ANGLESEY" />
      <xs:enumeration value="GWYNEDD" />
      <xs:enumeration value="CONWY" />
      <xs:enumeration value="DENBIGHSHIRE" />
      <xs:enumeration value="FLINTSHIRE" />
      <xs:enumeration value="WREXHAM" />
      <xs:enumeration value="POWYS" />
      <xs:enumeration value="CEREDIGION" />
      <xs:enumeration value="PEMBROKESHIRE" />
      <xs:enumeration value="CARMARTHENSHIRE" />
      <xs:enumeration value="SWANSEA" />
      <xs:enumeration value="NEATH PORT TALBOT" />
      <xs:enumeration value="BRIDGEND" />
      <xs:enumeration value="THE VALE OF GLAMORGAN" />
      <xs:enumeration value="RHONDDA CYNON TAFF" />
      <xs:enumeration value="MERTHYR TYDFIL" />
      <xs:enumeration value="CAERPHILLY" />
      <xs:enumeration value="BLAENAU GWENT" />
      <xs:enumeration value="TORFAEN" />
      <xs:enumeration value="MONMOUTHSHIRE" />
      <xs:enumeration value="NEWPORT" />
      <xs:enumeration value="CARDIFF" />
      <xs:enumeration value="SCOTLAND OFFSHORE ESTABLISHMENTS **" />
      <xs:enumeration value="SERVICE CHILDREN'S EDUCATION AUTHORITY" />
      <xs:enumeration value="OTHER OVERSEAS SCHOOLS" />
      <xs:enumeration value="SHELL SCHOOLS" />
      <xs:enumeration value="ISLE OF MAN" />
      <xs:enumeration value="GUERNSEY" />
      <xs:enumeration value="JERSEY" />
      <xs:enumeration value="GIBRALTAR" />
      <xs:enumeration value="BATH &amp; NORTH EAST SOMERSET" />
      <xs:enumeration value="BRISTOL" />
      <xs:enumeration value="NORTH SOMERSET" />
      <xs:enumeration value="SOUTH GLOUCESTERSHIRE" />
      <xs:enumeration value="HARTLEPOOL" />
      <xs:enumeration value="MIDDLESBROUGH" />
      <xs:enumeration value="REDCAR &amp; CLEVELAND" />
      <xs:enumeration value="STOCKTON-ON-TEES" />
      <xs:enumeration value="KINGSTON-UPON-HULL" />
      <xs:enumeration value="EAST RIDING OF YORKSHIRE" />
      <xs:enumeration value="NORTH EAST LINCOLNSHIRE" />
      <xs:enumeration value="NORTH LINCOLNSHIRE" />
      <xs:enumeration value="NORTH YORKSHIRE" />
      <xs:enumeration value="YORK" />
      <xs:enumeration value="BEDFORDSHIRE" />
      <xs:enumeration value="LUTON" />
      <xs:enumeration value="BUCKINGHAMSHIRE" />
      <xs:enumeration value="MILTON KEYNES" />
      <xs:enumeration value="DERBYSHIRE" />
      <xs:enumeration value="DERBY" />
      <xs:enumeration value="DORSET" />
      <xs:enumeration value="POOLE" />
      <xs:enumeration value="BOURNEMOUTH" />
      <xs:enumeration value="DURHAM" />
      <xs:enumeration value="DARLINGTON" />
      <xs:enumeration value="EAST SUSSEX" />
      <xs:enumeration value="BRIGHTON &amp; HOVE" />
      <xs:enumeration value="HAMPSHIRE" />
      <xs:enumeration value="PORTSMOUTH" />
      <xs:enumeration value="SOUTHAMPTON" />
      <xs:enumeration value="LEICESTERSHIRE" />
      <xs:enumeration value="LEICESTER" />
      <xs:enumeration value="RUTLAND" />
      <xs:enumeration value="STAFFORDSHIRE" />
      <xs:enumeration value="STOKE-ON-TRENT" />
      <xs:enumeration value="WILTSHIRE" />
      <xs:enumeration value="SWINDON" />
      <xs:enumeration value="BRACKNELL FOREST" />
      <xs:enumeration value="WINDSOR &amp; MAIDENHEAD" />
      <xs:enumeration value="WEST BERKSHIRE" />
      <xs:enumeration value="READING" />
      <xs:enumeration value="SLOUGH" />
      <xs:enumeration value="WOKINGHAM" />
      <xs:enumeration value="CAMBRIDGESHIRE" />
      <xs:enumeration value="PETERBOROUGH" />
      <xs:enumeration value="CHESHIRE" />
      <xs:enumeration value="HALTON" />
      <xs:enumeration value="WARRINGTON" />
      <xs:enumeration value="DEVON" />
      <xs:enumeration value="PLYMOUTH" />
      <xs:enumeration value="TORBAY" />
      <xs:enumeration value="ESSEX" />
      <xs:enumeration value="SOUTHEND-ON-SEA" />
      <xs:enumeration value="THURROCK" />
      <xs:enumeration value="HEREFORDSHIRE" />
      <xs:enumeration value="WORCESTERSHIRE" />
      <xs:enumeration value="KENT" />
      <xs:enumeration value="MEDWAY" />
      <xs:enumeration value="LANCASHIRE" />
      <xs:enumeration value="BLACKBURN WITH DARWEN" />
      <xs:enumeration value="BLACKPOOL" />
      <xs:enumeration value="NOTTINGHAMSHIRE" />
      <xs:enumeration value="NOTTINGHAM" />
      <xs:enumeration value="SHROPSHIRE" />
      <xs:enumeration value="TELFORD &amp; WREKIN" />
      <xs:enumeration value="AVON (PRE LGR)" />
      <xs:enumeration value="BEDFORDSHIRE (PRE LGR)" />
      <xs:enumeration value="BERKSHIRE (PRE LGR)" />
      <xs:enumeration value="BUCKINGHAMSHIRE (PRE LGR)" />
      <xs:enumeration value="CAMBRIDGESHIRE (PRE LGR)" />
      <xs:enumeration value="CHESHIRE (PRE LGR)" />
      <xs:enumeration value="CLEVELAND (PRE LGR)" />
      <xs:enumeration value="CORNWALL" />
      <xs:enumeration value="CUMBRIA" />
      <xs:enumeration value="DERBYSHIRE (PRE LGR)" />
      <xs:enumeration value="DEVON (PRE LGR)" />
      <xs:enumeration value="DORSET (PRE LGR)" />
      <xs:enumeration value="DURHAM (PRE LGR)" />
      <xs:enumeration value="EAST SUSSEX (PRE LGR)" />
      <xs:enumeration value="ESSEX (PRE LGR)" />
      <xs:enumeration value="GLOUCESTERSHIRE" />
      <xs:enumeration value="HAMPSHIRE (PRE LGR)" />
      <xs:enumeration value="HEREFORD AND WORCESTER (PRE LGR)" />
      <xs:enumeration value="HERTFORDSHIRE" />
      <xs:enumeration value="HUMBERSIDE (PRE LGR)" />
      <xs:enumeration value="ISLE OF WIGHT" />
      <xs:enumeration value="KENT (PRE LGR)" />
      <xs:enumeration value="LANCASHIRE (PRE LGR)" />
      <xs:enumeration value="LEICESTERSHIRE (PRE LGR)" />
      <xs:enumeration value="LINCOLNSHIRE" />
      <xs:enumeration value="NORFOLK" />
      <xs:enumeration value="NORTH YORKSHIRE (PRE LGR)" />
      <xs:enumeration value="NORTHAMPTONSHIRE" />
      <xs:enumeration value="NORTHUMBERLAND" />
      <xs:enumeration value="NOTTINGHAMSHIRE (PRE LGR)" />
      <xs:enumeration value="OXFORDSHIRE" />
      <xs:enumeration value="SHROPSHIRE (PRE LGR)" />
      <xs:enumeration value="SOMERSET" />
      <xs:enumeration value="STAFFORDSHIRE (PRE LGR)" />
      <xs:enumeration value="SUFFOLK" />
      <xs:enumeration value="SURREY" />
      <xs:enumeration value="WARWICKSHIRE" />
      <xs:enumeration value="WEST SUSSEX" />
      <xs:enumeration value="WILTSHIRE (PRE LGR)" />
      <xs:enumeration value="For CTF purposes where the LA is not known" />
      <xs:enumeration value="For CTF purposes where a school has left the maintained sector" />
      <xs:enumeration value="For transfer of TA and P Scales data for NAA via CTF" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLanguagesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="ACL">
        <xs:annotation>
          <xs:documentation>Acholi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ADA">
        <xs:annotation>
          <xs:documentation>Adangme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFA">
        <xs:annotation>
          <xs:documentation>Afar-Saho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFK">
        <xs:annotation>
          <xs:documentation>Afrikaans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKA">
        <xs:annotation>
          <xs:documentation>Akan/Twi-Fante</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAF">
        <xs:annotation>
          <xs:documentation>Akan (Fante)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AKAT">
        <xs:annotation>
          <xs:documentation>Akan (Twi/Asante)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALB">
        <xs:annotation>
          <xs:documentation>Albanian/Shqip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALU">
        <xs:annotation>
          <xs:documentation>Alur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AMR">
        <xs:annotation>
          <xs:documentation>Amharic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARA">
        <xs:annotation>
          <xs:documentation>Arabic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAA">
        <xs:annotation>
          <xs:documentation>Arabic (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAG">
        <xs:annotation>
          <xs:documentation>Arabic (Algeria)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAI">
        <xs:annotation>
          <xs:documentation>Arabic (Iraq)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAM">
        <xs:annotation>
          <xs:documentation>Arabic (Morocco)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAS">
        <xs:annotation>
          <xs:documentation>Arabic (Sudan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARAY">
        <xs:annotation>
          <xs:documentation>Arabic (Yemen)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARM">
        <xs:annotation>
          <xs:documentation>Armenian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASM">
        <xs:annotation>
          <xs:documentation>Assamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASR">
        <xs:annotation>
          <xs:documentation>Assyrian/Aramaic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AYB">
        <xs:annotation>
          <xs:documentation>Anyi-Baule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AYM">
        <xs:annotation>
          <xs:documentation>Aymara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZE">
        <xs:annotation>
          <xs:documentation>Azeri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAI">
        <xs:annotation>
          <xs:documentation>Bamileke (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BAL">
        <xs:annotation>
          <xs:documentation>Balochi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEJ">
        <xs:annotation>
          <xs:documentation>Beja/Bedawi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEL">
        <xs:annotation>
          <xs:documentation>Belarusian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEM">
        <xs:annotation>
          <xs:documentation>Bemba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHO">
        <xs:annotation>
          <xs:documentation>Bhojpuri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIK">
        <xs:annotation>
          <xs:documentation>Bikol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLT">
        <xs:annotation>
          <xs:documentation>Balti Tibetan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMA">
        <xs:annotation>
          <xs:documentation>Burmese/Myanma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNG">
        <xs:annotation>
          <xs:documentation>Bengali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGA">
        <xs:annotation>
          <xs:documentation>Bengali (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGC">
        <xs:annotation>
          <xs:documentation>Bengali (Chittagong/Noakhali)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BNGS">
        <xs:annotation>
          <xs:documentation>Bengali (Sylheti)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSL">
        <xs:annotation>
          <xs:documentation>British Sign Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BSQ">
        <xs:annotation>
          <xs:documentation>Basque/Euskara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUL">
        <xs:annotation>
          <xs:documentation>Bulgarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAM">
        <xs:annotation>
          <xs:documentation>Cambodian/Khmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAT">
        <xs:annotation>
          <xs:documentation>Catalan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCE">
        <xs:annotation>
          <xs:documentation>Caribbean Creole English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCF">
        <xs:annotation>
          <xs:documentation>Caribbean Creole French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CGA">
        <xs:annotation>
          <xs:documentation>Chaga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CGR">
        <xs:annotation>
          <xs:documentation>Chattisgarhi/Khatahi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Chechen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHI">
        <xs:annotation>
          <xs:documentation>Chinese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIA">
        <xs:annotation>
          <xs:documentation>Chinese (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIC">
        <xs:annotation>
          <xs:documentation>Chinese (Cantonese)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIH">
        <xs:annotation>
          <xs:documentation>Chinese (Hokkien/Fujianese)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIK">
        <xs:annotation>
          <xs:documentation>Chinese (Hakka)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHIM">
        <xs:annotation>
          <xs:documentation>Chinese (Mandarin/Putonghua)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CKW">
        <xs:annotation>
          <xs:documentation>Chokwe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRN">
        <xs:annotation>
          <xs:documentation>Cornish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTR">
        <xs:annotation>
          <xs:documentation>Chitrali/Khowar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CWA">
        <xs:annotation>
          <xs:documentation>Chichewa/Nyanja</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Welsh/Cymraeg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZE">
        <xs:annotation>
          <xs:documentation>Czech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DAN">
        <xs:annotation>
          <xs:documentation>Danish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DGA">
        <xs:annotation>
          <xs:documentation>Dagaare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DGB">
        <xs:annotation>
          <xs:documentation>Dagbane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DIN">
        <xs:annotation>
          <xs:documentation>Dinka/Jieng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DUT">
        <xs:annotation>
          <xs:documentation>Dutch/Flemish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZO">
        <xs:annotation>
          <xs:documentation>Dzongkha/Bhutanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EBI">
        <xs:annotation>
          <xs:documentation>Ebira</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EDO">
        <xs:annotation>
          <xs:documentation>Edo/Bini</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EFI">
        <xs:annotation>
          <xs:documentation>Efik-Ibibio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENB">
        <xs:annotation>
          <xs:documentation>Believed to be English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ENG">
        <xs:annotation>
          <xs:documentation>English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESA">
        <xs:annotation>
          <xs:documentation>Esan/Ishan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EST">
        <xs:annotation>
          <xs:documentation>Estonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EWE">
        <xs:annotation>
          <xs:documentation>Ewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EWO">
        <xs:annotation>
          <xs:documentation>Ewondo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FAN">
        <xs:annotation>
          <xs:documentation>Fang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIJ">
        <xs:annotation>
          <xs:documentation>Fijian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finnish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FON">
        <xs:annotation>
          <xs:documentation>Fon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRN">
        <xs:annotation>
          <xs:documentation>French</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FUL">
        <xs:annotation>
          <xs:documentation>Fula/Fulfulde-Pulaar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAA">
        <xs:annotation>
          <xs:documentation>Ga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAE">
        <xs:annotation>
          <xs:documentation>Gaelic/Irish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAL">
        <xs:annotation>
          <xs:documentation>Gaelic (Scotland)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Georgian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GER">
        <xs:annotation>
          <xs:documentation>German</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GGO">
        <xs:annotation>
          <xs:documentation>Gogo/Chigogo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GKY">
        <xs:annotation>
          <xs:documentation>Kikuyu/Gikuyu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLG">
        <xs:annotation>
          <xs:documentation>Galician/Galego</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRE">
        <xs:annotation>
          <xs:documentation>Greek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GREA">
        <xs:annotation>
          <xs:documentation>Greek (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GREC">
        <xs:annotation>
          <xs:documentation>Greek (Cyprus)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRN">
        <xs:annotation>
          <xs:documentation>Guarani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUJ">
        <xs:annotation>
          <xs:documentation>Gujarati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUN">
        <xs:annotation>
          <xs:documentation>Gurenne/Frafra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUR">
        <xs:annotation>
          <xs:documentation>Gurma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAU">
        <xs:annotation>
          <xs:documentation>Hausa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HDK">
        <xs:annotation>
          <xs:documentation>Hindko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEB">
        <xs:annotation>
          <xs:documentation>Hebrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Herero</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HGR">
        <xs:annotation>
          <xs:documentation>Hungarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIN">
        <xs:annotation>
          <xs:documentation>Hindi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IBA">
        <xs:annotation>
          <xs:documentation>Iban</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDM">
        <xs:annotation>
          <xs:documentation>Idoma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IGA">
        <xs:annotation>
          <xs:documentation>Igala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IGB">
        <xs:annotation>
          <xs:documentation>Igbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IJO">
        <xs:annotation>
          <xs:documentation>Ijo (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ILO">
        <xs:annotation>
          <xs:documentation>Ilokano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISK">
        <xs:annotation>
          <xs:documentation>Itsekiri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISL">
        <xs:annotation>
          <xs:documentation>Icelandic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAA">
        <xs:annotation>
          <xs:documentation>Italian (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAN">
        <xs:annotation>
          <xs:documentation>Italian (Napoletan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITAS">
        <xs:annotation>
          <xs:documentation>Italian (Sicilian)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAV">
        <xs:annotation>
          <xs:documentation>Javanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JIN">
        <xs:annotation>
          <xs:documentation>Jinghpaw/Kachin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPN">
        <xs:annotation>
          <xs:documentation>Japanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAM">
        <xs:annotation>
          <xs:documentation>Kikamba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAN">
        <xs:annotation>
          <xs:documentation>Kannada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAR">
        <xs:annotation>
          <xs:documentation>Karen (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAS">
        <xs:annotation>
          <xs:documentation>Kashmiri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAU">
        <xs:annotation>
          <xs:documentation>Kanuri</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAZ">
        <xs:annotation>
          <xs:documentation>Kazakh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KCH">
        <xs:annotation>
          <xs:documentation>Katchi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGZ">
        <xs:annotation>
          <xs:documentation>Kirghiz/Kyrgyz</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHA">
        <xs:annotation>
          <xs:documentation>Khasi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHY">
        <xs:annotation>
          <xs:documentation>Kihaya/Luziba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIN">
        <xs:annotation>
          <xs:documentation>Kinyarwanda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIR">
        <xs:annotation>
          <xs:documentation>Kirundi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIS">
        <xs:annotation>
          <xs:documentation>Kisi (West Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KLN">
        <xs:annotation>
          <xs:documentation>Kalenjin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KMB">
        <xs:annotation>
          <xs:documentation>Kimbundu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KME">
        <xs:annotation>
          <xs:documentation>Kimeru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNK">
        <xs:annotation>
          <xs:documentation>Konkani</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNY">
        <xs:annotation>
          <xs:documentation>Kinyakyusa-Ngonde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KON">
        <xs:annotation>
          <xs:documentation>Kikongo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KOR">
        <xs:annotation>
          <xs:documentation>Korean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KPE">
        <xs:annotation>
          <xs:documentation>Kpelle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRI">
        <xs:annotation>
          <xs:documentation>Krio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KRU">
        <xs:annotation>
          <xs:documentation>Kru (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSI">
        <xs:annotation>
          <xs:documentation>Kisii/Ekegusii (Kenya)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KSU">
        <xs:annotation>
          <xs:documentation>Kisukuma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KUR">
        <xs:annotation>
          <xs:documentation>Kurdish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURA">
        <xs:annotation>
          <xs:documentation>Kurdish (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURM">
        <xs:annotation>
          <xs:documentation>Kurdish (Kurmanji)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KURS">
        <xs:annotation>
          <xs:documentation>Kurdish (Sorani)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAO">
        <xs:annotation>
          <xs:documentation>Lao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBA">
        <xs:annotation>
          <xs:documentation>Luba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBAC">
        <xs:annotation>
          <xs:documentation>Luba (Chiluba/Tshiluba)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBAK">
        <xs:annotation>
          <xs:documentation>Luba (Kiluba)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGA">
        <xs:annotation>
          <xs:documentation>Luganda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGB">
        <xs:annotation>
          <xs:documentation>Lugbara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LGS">
        <xs:annotation>
          <xs:documentation>Lugisu/Lumasaba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIN">
        <xs:annotation>
          <xs:documentation>Lingala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIT">
        <xs:annotation>
          <xs:documentation>Lithuanian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LNG">
        <xs:annotation>
          <xs:documentation>Lango (Uganda)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOZ">
        <xs:annotation>
          <xs:documentation>Lozi/Silozi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSO">
        <xs:annotation>
          <xs:documentation>Lusoga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTV">
        <xs:annotation>
          <xs:documentation>Latvian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTZ">
        <xs:annotation>
          <xs:documentation>Luxemburgish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUE">
        <xs:annotation>
          <xs:documentation>Luvale/Luena</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUN">
        <xs:annotation>
          <xs:documentation>Lunda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUO">
        <xs:annotation>
          <xs:documentation>Luo (Kenya/Tanzania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUY">
        <xs:annotation>
          <xs:documentation>Luhya (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAG">
        <xs:annotation>
          <xs:documentation>Magahi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAI">
        <xs:annotation>
          <xs:documentation>Maithili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAK">
        <xs:annotation>
          <xs:documentation>Makua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAN">
        <xs:annotation>
          <xs:documentation>Manding/Malinke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANA">
        <xs:annotation>
          <xs:documentation>Manding/Malinke (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANB">
        <xs:annotation>
          <xs:documentation>Bambara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MANJ">
        <xs:annotation>
          <xs:documentation>Dyula/Jula</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAO">
        <xs:annotation>
          <xs:documentation>Maori</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAR">
        <xs:annotation>
          <xs:documentation>Marathi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAS">
        <xs:annotation>
          <xs:documentation>Maasai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDV">
        <xs:annotation>
          <xs:documentation>Maldivian/Dhivehi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEN">
        <xs:annotation>
          <xs:documentation>Mende</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Macedonian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLG">
        <xs:annotation>
          <xs:documentation>Malagasy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLM">
        <xs:annotation>
          <xs:documentation>Malayalam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLT">
        <xs:annotation>
          <xs:documentation>Maltese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLY">
        <xs:annotation>
          <xs:documentation>Malay/Indonesian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLYA">
        <xs:annotation>
          <xs:documentation>Malay (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLYI">
        <xs:annotation>
          <xs:documentation>Indonesian/Bahasa Indonesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNA">
        <xs:annotation>
          <xs:documentation>Magindanao-Maranao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNG">
        <xs:annotation>
          <xs:documentation>Mongolian (Khalkha)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNX">
        <xs:annotation>
          <xs:documentation>Manx Gaelic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOR">
        <xs:annotation>
          <xs:documentation>Moore/Mossi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSC">
        <xs:annotation>
          <xs:documentation>Mauritian/Seychelles Creole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUN">
        <xs:annotation>
          <xs:documentation>Munda (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYA">
        <xs:annotation>
          <xs:documentation>Maya (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAH">
        <xs:annotation>
          <xs:documentation>Nahuatl/Mexicano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAM">
        <xs:annotation>
          <xs:documentation>Nama/Damara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NBN">
        <xs:annotation>
          <xs:documentation>Nubian (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDB">
        <xs:annotation>
          <xs:documentation>Ndebele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDBS">
        <xs:annotation>
          <xs:documentation>Ndebele (South Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NDBZ">
        <xs:annotation>
          <xs:documentation>Ndebele (Zimbabwe)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NEP">
        <xs:annotation>
          <xs:documentation>Nepali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norwegian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Information not obtained*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NUE">
        <xs:annotation>
          <xs:documentation>Nuer/Naadh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NUP">
        <xs:annotation>
          <xs:documentation>Nupe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NWA">
        <xs:annotation>
          <xs:documentation>Newari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZM">
        <xs:annotation>
          <xs:documentation>Nzema</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAM">
        <xs:annotation>
          <xs:documentation>Ambo/Oshiwambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAMK">
        <xs:annotation>
          <xs:documentation>Ambo (Kwanyama)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OAMN">
        <xs:annotation>
          <xs:documentation>Ambo (Ndonga)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OGN">
        <xs:annotation>
          <xs:documentation>Ogoni (Any)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ORI">
        <xs:annotation>
          <xs:documentation>Oriya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ORM">
        <xs:annotation>
          <xs:documentation>Oromo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTB">
        <xs:annotation>
          <xs:documentation>Believed to be Other than English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTH">
        <xs:annotation>
          <xs:documentation>Other than English*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OTL">
        <xs:annotation>
          <xs:documentation>Other Language</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAG">
        <xs:annotation>
          <xs:documentation>Pangasinan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAM">
        <xs:annotation>
          <xs:documentation>Pampangan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAT">
        <xs:annotation>
          <xs:documentation>Pashto/Pakhto</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHA">
        <xs:annotation>
          <xs:documentation>Pahari/Himachali (India)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHR">
        <xs:annotation>
          <xs:documentation>Pahari (Pakistan)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJ">
        <xs:annotation>
          <xs:documentation>Panjabi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJA">
        <xs:annotation>
          <xs:documentation>Panjabi (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJG">
        <xs:annotation>
          <xs:documentation>Panjabi (Gurmukhi)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJM">
        <xs:annotation>
          <xs:documentation>Panjabi (Mirpuri)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNJP">
        <xs:annotation>
          <xs:documentation>Panjabi (Pothwari)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POL">
        <xs:annotation>
          <xs:documentation>Polish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PORA">
        <xs:annotation>
          <xs:documentation>Portuguese (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PORB">
        <xs:annotation>
          <xs:documentation>Portuguese (Brazil)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRS">
        <xs:annotation>
          <xs:documentation>Persian/Farsi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRSA">
        <xs:annotation>
          <xs:documentation>Farsi/Persian (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRSD">
        <xs:annotation>
          <xs:documentation>Dari Persian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRST">
        <xs:annotation>
          <xs:documentation>Tajiki Persian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QUE">
        <xs:annotation>
          <xs:documentation>Quechua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RAJ">
        <xs:annotation>
          <xs:documentation>Rajasthani/Marwari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REF">
        <xs:annotation>
          <xs:documentation>Refused*</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RME">
        <xs:annotation>
          <xs:documentation>Romany/English Romanes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMI">
        <xs:annotation>
          <xs:documentation>Romani (International)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMN">
        <xs:annotation>
          <xs:documentation>Romanian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMNM">
        <xs:annotation>
          <xs:documentation>Romanian (Moldova)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMNR">
        <xs:annotation>
          <xs:documentation>Romanian (Romania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RMS">
        <xs:annotation>
          <xs:documentation>Romansch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNY">
        <xs:annotation>
          <xs:documentation>Runyakitara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNYN">
        <xs:annotation>
          <xs:documentation>Runyankore-Ruchiga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RNYO">
        <xs:annotation>
          <xs:documentation>Runyoro-Rutooro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAM">
        <xs:annotation>
          <xs:documentation>Samoan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCB">
        <xs:annotation>
          <xs:documentation>Serbian/Croatian/Bosnian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBB">
        <xs:annotation>
          <xs:documentation>Bosnian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBC">
        <xs:annotation>
          <xs:documentation>Croatian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCBS">
        <xs:annotation>
          <xs:documentation>Serbian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCO">
        <xs:annotation>
          <xs:documentation>Scots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHL">
        <xs:annotation>
          <xs:documentation>Shilluk/Cholo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHO">
        <xs:annotation>
          <xs:documentation>Shona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SID">
        <xs:annotation>
          <xs:documentation>Sidamo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SIO">
        <xs:annotation>
          <xs:documentation>Sign Language (Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLO">
        <xs:annotation>
          <xs:documentation>Slovak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLV">
        <xs:annotation>
          <xs:documentation>Slovenian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SND">
        <xs:annotation>
          <xs:documentation>Sindhi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNG">
        <xs:annotation>
          <xs:documentation>Sango</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SNH">
        <xs:annotation>
          <xs:documentation>Sinhala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPA">
        <xs:annotation>
          <xs:documentation>Spanish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRD">
        <xs:annotation>
          <xs:documentation>Sardinian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRK">
        <xs:annotation>
          <xs:documentation>Siraiki</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSO">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSOO">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho (Southern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSOT">
        <xs:annotation>
          <xs:documentation>Sotho/Sesotho (Northern)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SSW">
        <xs:annotation>
          <xs:documentation>Swazi/Siswati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STS">
        <xs:annotation>
          <xs:documentation>Tswana/Setswana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUN">
        <xs:annotation>
          <xs:documentation>Sundanese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWA">
        <xs:annotation>
          <xs:documentation>Swahili/Kiswahili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAA">
        <xs:annotation>
          <xs:documentation>Swahili (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAC">
        <xs:annotation>
          <xs:documentation>Comorian Swahili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAK">
        <xs:annotation>
          <xs:documentation>Swahili (Kingwana)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAM">
        <xs:annotation>
          <xs:documentation>Swahili (Brava/Mwiini)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWAT">
        <xs:annotation>
          <xs:documentation>Swahili (Bajuni/Tikuu)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Swedish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TAM">
        <xs:annotation>
          <xs:documentation>Tamil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEL">
        <xs:annotation>
          <xs:documentation>Telugu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEM">
        <xs:annotation>
          <xs:documentation>Temne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TES">
        <xs:annotation>
          <xs:documentation>Teso/Ateso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGE">
        <xs:annotation>
          <xs:documentation>Tigre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGL">
        <xs:annotation>
          <xs:documentation>Tagalog/Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGLF">
        <xs:annotation>
          <xs:documentation>Filipino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGLG">
        <xs:annotation>
          <xs:documentation>Tagalog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGR">
        <xs:annotation>
          <xs:documentation>Tigrinya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THA">
        <xs:annotation>
          <xs:documentation>Thai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TIB">
        <xs:annotation>
          <xs:documentation>Tibetan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TIV">
        <xs:annotation>
          <xs:documentation>Tiv</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZ">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZA">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZK">
        <xs:annotation>
          <xs:documentation>Berber/Tamazight (Kabyle)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMZT">
        <xs:annotation>
          <xs:documentation>Berber (Tamashek)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TNG">
        <xs:annotation>
          <xs:documentation>Tonga/Chitonga (Zambia)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TON">
        <xs:annotation>
          <xs:documentation>Tongan (Oceania)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TPI">
        <xs:annotation>
          <xs:documentation>Tok Pisin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TRI">
        <xs:annotation>
          <xs:documentation>Traveller Irish/Shelta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TSO">
        <xs:annotation>
          <xs:documentation>Tsonga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUK">
        <xs:annotation>
          <xs:documentation>Turkmen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUL">
        <xs:annotation>
          <xs:documentation>Tulu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUM">
        <xs:annotation>
          <xs:documentation>Tumbuka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukrainian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UMB">
        <xs:annotation>
          <xs:documentation>Umbundu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URD">
        <xs:annotation>
          <xs:documentation>Urdu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URH">
        <xs:annotation>
          <xs:documentation>Urhobo-Isoko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UYG">
        <xs:annotation>
          <xs:documentation>Uyghur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZB">
        <xs:annotation>
          <xs:documentation>Uzbek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEN">
        <xs:annotation>
          <xs:documentation>Venda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VIE">
        <xs:annotation>
          <xs:documentation>Vietnamese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSY">
        <xs:annotation>
          <xs:documentation>Visayan/Bisaya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYA">
        <xs:annotation>
          <xs:documentation>Visayan/Bisaya (Any Other)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYH">
        <xs:annotation>
          <xs:documentation>Hiligaynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYS">
        <xs:annotation>
          <xs:documentation>Cebuano/Sugbuanon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VSYW">
        <xs:annotation>
          <xs:documentation>Waray/Binisaya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAP">
        <xs:annotation>
          <xs:documentation>Wa-Paraok (South-East Asia)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WCP">
        <xs:annotation>
          <xs:documentation>West-African Creole Portuguese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WOL">
        <xs:annotation>
          <xs:documentation>Wolof</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WPE">
        <xs:annotation>
          <xs:documentation>West-African Pidgin English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="XHO">
        <xs:annotation>
          <xs:documentation>Xhosa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YAO">
        <xs:annotation>
          <xs:documentation>Yao/Chiyao (East Africa)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YDI">
        <xs:annotation>
          <xs:documentation>Yiddish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YOR">
        <xs:annotation>
          <xs:documentation>Yoruba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZND">
        <xs:annotation>
          <xs:documentation>Zande</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZUL">
        <xs:annotation>
          <xs:documentation>Zulu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZZZ">
        <xs:annotation>
          <xs:documentation>Classification Pending</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetLearningAndSkillsCouncilAreaCodeType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="BAL">
        <xs:annotation>
          <xs:documentation>Bedfordshire and Luton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BER">
        <xs:annotation>
          <xs:documentation>Berkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIS">
        <xs:annotation>
          <xs:documentation>Birmingham and Solihull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDP">
        <xs:annotation>
          <xs:documentation>Bournemouth, Dorset and Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAM">
        <xs:annotation>
          <xs:documentation>Cambridgeshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHW">
        <xs:annotation>
          <xs:documentation>Cheshire and Warrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CDU">
        <xs:annotation>
          <xs:documentation>County Durham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COW">
        <xs:annotation>
          <xs:documentation>Coventry and Warwickshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUM">
        <xs:annotation>
          <xs:documentation>Cumbria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DER">
        <xs:annotation>
          <xs:documentation>Derbyshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEC">
        <xs:annotation>
          <xs:documentation>Devon and Cornwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESS">
        <xs:annotation>
          <xs:documentation>Essex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLO">
        <xs:annotation>
          <xs:documentation>Gloucestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMA">
        <xs:annotation>
          <xs:documentation>Greater Manchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GME">
        <xs:annotation>
          <xs:documentation>Greater Merseyside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HIW">
        <xs:annotation>
          <xs:documentation>Hampshire and Isle of Wight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HEW">
        <xs:annotation>
          <xs:documentation>Herefordshire and Worcestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HER">
        <xs:annotation>
          <xs:documentation>Hertfordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUM">
        <xs:annotation>
          <xs:documentation>Humberside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KEM">
        <xs:annotation>
          <xs:documentation>Kent and Medway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAN">
        <xs:annotation>
          <xs:documentation>Lancashire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEI">
        <xs:annotation>
          <xs:documentation>Leicestershire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIR">
        <xs:annotation>
          <xs:documentation>Lincolnshire and Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOC">
        <xs:annotation>
          <xs:documentation>London - Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOE">
        <xs:annotation>
          <xs:documentation>London - East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LON">
        <xs:annotation>
          <xs:documentation>London - North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOS">
        <xs:annotation>
          <xs:documentation>London - South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LOW">
        <xs:annotation>
          <xs:documentation>London - West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSC">
        <xs:annotation>
          <xs:documentation>National LSC (NCS)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOB">
        <xs:annotation>
          <xs:documentation>Milton Keynes, Oxfordshire and Buckinghamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norfolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOY">
        <xs:annotation>
          <xs:documentation>North Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOA">
        <xs:annotation>
          <xs:documentation>Northamptonshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOU">
        <xs:annotation>
          <xs:documentation>Northumberland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Nottinghamshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHR">
        <xs:annotation>
          <xs:documentation>Shropshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somerset</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOY">
        <xs:annotation>
          <xs:documentation>South Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STA">
        <xs:annotation>
          <xs:documentation>Staffordshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUF">
        <xs:annotation>
          <xs:documentation>Suffolk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUR">
        <xs:annotation>
          <xs:documentation>Surrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUS">
        <xs:annotation>
          <xs:documentation>Sussex</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TEV">
        <xs:annotation>
          <xs:documentation>Tees Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TBC">
        <xs:annotation>
          <xs:documentation>The Black Country</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TYW">
        <xs:annotation>
          <xs:documentation>Tyne and Wear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEE">
        <xs:annotation>
          <xs:documentation>West of England</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WEY">
        <xs:annotation>
          <xs:documentation>West Yorkshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WIS">
        <xs:annotation>
          <xs:documentation>Wiltshire and Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetNationStatesAndCountriesType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AFG">
        <xs:annotation>
          <xs:documentation>Afghanistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALA">
        <xs:annotation>
          <xs:documentation>Aland Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ALB">
        <xs:annotation>
          <xs:documentation>Albania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZA">
        <xs:annotation>
          <xs:documentation>Algeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ASM">
        <xs:annotation>
          <xs:documentation>American Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AND">
        <xs:annotation>
          <xs:documentation>Andorra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AGO">
        <xs:annotation>
          <xs:documentation>Angola</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AIA">
        <xs:annotation>
          <xs:documentation>Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATA">
        <xs:annotation>
          <xs:documentation>Antarctica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATG">
        <xs:annotation>
          <xs:documentation>Antigua and Barbuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARG">
        <xs:annotation>
          <xs:documentation>Argentina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARM">
        <xs:annotation>
          <xs:documentation>Armenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ABW">
        <xs:annotation>
          <xs:documentation>Aruba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUS">
        <xs:annotation>
          <xs:documentation>Australia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AUT">
        <xs:annotation>
          <xs:documentation>Austria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZE">
        <xs:annotation>
          <xs:documentation>Azerbaijan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHS">
        <xs:annotation>
          <xs:documentation>Bahamas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BHR">
        <xs:annotation>
          <xs:documentation>Bahrain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGD">
        <xs:annotation>
          <xs:documentation>Bangladesh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRB">
        <xs:annotation>
          <xs:documentation>Barbados</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLR">
        <xs:annotation>
          <xs:documentation>Belarus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEL">
        <xs:annotation>
          <xs:documentation>Belgium</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BLZ">
        <xs:annotation>
          <xs:documentation>Belize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BEN">
        <xs:annotation>
          <xs:documentation>Benin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BMU">
        <xs:annotation>
          <xs:documentation>Bermuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BTN">
        <xs:annotation>
          <xs:documentation>Bhutan </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BOL">
        <xs:annotation>
          <xs:documentation>Bolivia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIH">
        <xs:annotation>
          <xs:documentation>Bosnia and Herzegovina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BWA">
        <xs:annotation>
          <xs:documentation>Botswana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BVT">
        <xs:annotation>
          <xs:documentation>Bouvet Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRA">
        <xs:annotation>
          <xs:documentation>Brazil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATB">
        <xs:annotation>
          <xs:documentation>British Antarctic Territory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IOT">
        <xs:annotation>
          <xs:documentation>British Indian Ocean Territory</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRN">
        <xs:annotation>
          <xs:documentation>Brunei</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BGR">
        <xs:annotation>
          <xs:documentation>Bulgaria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BFA">
        <xs:annotation>
          <xs:documentation>Burkina Faso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BUR">
        <xs:annotation>
          <xs:documentation>Burma</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BDI">
        <xs:annotation>
          <xs:documentation>Burundi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BYS">
        <xs:annotation>
          <xs:documentation>Byelorussian SSR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHM">
        <xs:annotation>
          <xs:documentation>Cambodia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CMR">
        <xs:annotation>
          <xs:documentation>Cameroon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAN">
        <xs:annotation>
          <xs:documentation>Canada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CTE">
        <xs:annotation>
          <xs:documentation>Canton and Enderbury Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CPV">
        <xs:annotation>
          <xs:documentation>Cape Verde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYM">
        <xs:annotation>
          <xs:documentation>Cayman Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAF">
        <xs:annotation>
          <xs:documentation>Central African Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCD">
        <xs:annotation>
          <xs:documentation>Chad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHL">
        <xs:annotation>
          <xs:documentation>Chile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHN">
        <xs:annotation>
          <xs:documentation>China</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CXR">
        <xs:annotation>
          <xs:documentation>Christmas Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CCK">
        <xs:annotation>
          <xs:documentation>Cocos (Keeling) Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COL">
        <xs:annotation>
          <xs:documentation>Colombia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COM">
        <xs:annotation>
          <xs:documentation>Comoros</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COG">
        <xs:annotation>
          <xs:documentation>Congo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COD">
        <xs:annotation>
          <xs:documentation>Congo, Democratic Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="COK">
        <xs:annotation>
          <xs:documentation>Cook Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CRI">
        <xs:annotation>
          <xs:documentation>Costa Rica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HRV">
        <xs:annotation>
          <xs:documentation>Croatia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CUB">
        <xs:annotation>
          <xs:documentation>Cuba </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CYP">
        <xs:annotation>
          <xs:documentation>Cyprus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZE">
        <xs:annotation>
          <xs:documentation>Czech Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CSK">
        <xs:annotation>
          <xs:documentation>Czechoslovakia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DHY">
        <xs:annotation>
          <xs:documentation>Dahomey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YMD">
        <xs:annotation>
          <xs:documentation>Democratic Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DNK">
        <xs:annotation>
          <xs:documentation>Denmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DJI">
        <xs:annotation>
          <xs:documentation>Djibouti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DMA">
        <xs:annotation>
          <xs:documentation>Dominica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DOM">
        <xs:annotation>
          <xs:documentation>Dominican Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATN">
        <xs:annotation>
          <xs:documentation>Dronning Maud Land</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TMP">
        <xs:annotation>
          <xs:documentation>East Timor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ECU">
        <xs:annotation>
          <xs:documentation>Ecuador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EGY">
        <xs:annotation>
          <xs:documentation>Egypt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLV">
        <xs:annotation>
          <xs:documentation>El Salvador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNQ">
        <xs:annotation>
          <xs:documentation>Equatorial Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ERI">
        <xs:annotation>
          <xs:documentation>Eritrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EST">
        <xs:annotation>
          <xs:documentation>Estonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETH">
        <xs:annotation>
          <xs:documentation>Ethiopia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ETH">
        <xs:annotation>
          <xs:documentation>Ethiopia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FLK">
        <xs:annotation>
          <xs:documentation>Falkland Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRO">
        <xs:annotation>
          <xs:documentation>Faroe Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEU">
        <xs:annotation>
          <xs:documentation>Federal Republic of Germany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FJI">
        <xs:annotation>
          <xs:documentation>Fiji</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FIN">
        <xs:annotation>
          <xs:documentation>Finland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FRA">
        <xs:annotation>
          <xs:documentation>France</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUF">
        <xs:annotation>
          <xs:documentation>French Guiana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PYF">
        <xs:annotation>
          <xs:documentation>French Polynesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ATF">
        <xs:annotation>
          <xs:documentation>French Southern Territories</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AFI">
        <xs:annotation>
          <xs:documentation>French Territory of Afars and Issas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GAB">
        <xs:annotation>
          <xs:documentation>Gabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GMB">
        <xs:annotation>
          <xs:documentation>Gambia, The</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEO">
        <xs:annotation>
          <xs:documentation>Georgia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DDR">
        <xs:annotation>
          <xs:documentation>German Democratic Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DEU">
        <xs:annotation>
          <xs:documentation>Germany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GHA">
        <xs:annotation>
          <xs:documentation>Ghana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIB">
        <xs:annotation>
          <xs:documentation>Gibraltar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Gilbert and Ellice Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GEL">
        <xs:annotation>
          <xs:documentation>Gilbert Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRC">
        <xs:annotation>
          <xs:documentation>Greece</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRL">
        <xs:annotation>
          <xs:documentation>Greenland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GRD">
        <xs:annotation>
          <xs:documentation>Grenada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GLP">
        <xs:annotation>
          <xs:documentation>Guadeloupe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUM">
        <xs:annotation>
          <xs:documentation>Guam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GTM">
        <xs:annotation>
          <xs:documentation>Guatemala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GGY">
        <xs:annotation>
          <xs:documentation>Guernsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GIN">
        <xs:annotation>
          <xs:documentation>Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GNB">
        <xs:annotation>
          <xs:documentation>Guinea-Bissau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GUY">
        <xs:annotation>
          <xs:documentation>Guyana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HTI">
        <xs:annotation>
          <xs:documentation>Haiti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HMD">
        <xs:annotation>
          <xs:documentation>Heard Island and McDonald Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VAT">
        <xs:annotation>
          <xs:documentation>Holy See</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HND">
        <xs:annotation>
          <xs:documentation>Honduras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HKG">
        <xs:annotation>
          <xs:documentation>Hong Kong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HUN">
        <xs:annotation>
          <xs:documentation>Hungary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISL">
        <xs:annotation>
          <xs:documentation>Iceland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IND">
        <xs:annotation>
          <xs:documentation>India</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IDN">
        <xs:annotation>
          <xs:documentation>Indonesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRN">
        <xs:annotation>
          <xs:documentation>Iran </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRQ">
        <xs:annotation>
          <xs:documentation>Iraq </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IRL">
        <xs:annotation>
          <xs:documentation>Ireland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IMN">
        <xs:annotation>
          <xs:documentation>Isle of Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ISR">
        <xs:annotation>
          <xs:documentation>Israel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ITA">
        <xs:annotation>
          <xs:documentation>Italy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CIV">
        <xs:annotation>
          <xs:documentation>Ivory Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JAM">
        <xs:annotation>
          <xs:documentation>Jamaica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JPN">
        <xs:annotation>
          <xs:documentation>Japan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JEY">
        <xs:annotation>
          <xs:documentation>Jersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JTN">
        <xs:annotation>
          <xs:documentation>Johnston Atoll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JOR">
        <xs:annotation>
          <xs:documentation>Jordan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KHM">
        <xs:annotation>
          <xs:documentation>Kampuchea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KAZ">
        <xs:annotation>
          <xs:documentation>Kazakhstan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KEN">
        <xs:annotation>
          <xs:documentation>Kenya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KIR">
        <xs:annotation>
          <xs:documentation>Kiribati</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRK">
        <xs:annotation>
          <xs:documentation>Korea, North </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KOR">
        <xs:annotation>
          <xs:documentation>Korea, South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KWT">
        <xs:annotation>
          <xs:documentation>Kuwait</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KGZ">
        <xs:annotation>
          <xs:documentation>Kyrgyzstan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAO">
        <xs:annotation>
          <xs:documentation>Laos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LVA">
        <xs:annotation>
          <xs:documentation>Latvia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBN">
        <xs:annotation>
          <xs:documentation>Lebanon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LSO">
        <xs:annotation>
          <xs:documentation>Lesotho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBR">
        <xs:annotation>
          <xs:documentation>Liberia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LBY">
        <xs:annotation>
          <xs:documentation>Libya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIE">
        <xs:annotation>
          <xs:documentation>Liechtenstein</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LTU">
        <xs:annotation>
          <xs:documentation>Lithuania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LUX">
        <xs:annotation>
          <xs:documentation>Luxembourg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAC">
        <xs:annotation>
          <xs:documentation>Macao</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MKD">
        <xs:annotation>
          <xs:documentation>Macedonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDG">
        <xs:annotation>
          <xs:documentation>Madagascar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MWI">
        <xs:annotation>
          <xs:documentation>Malawi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYS">
        <xs:annotation>
          <xs:documentation>Malaysia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDV">
        <xs:annotation>
          <xs:documentation>Maldives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLI">
        <xs:annotation>
          <xs:documentation>Mali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MLT">
        <xs:annotation>
          <xs:documentation>Malta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MHL">
        <xs:annotation>
          <xs:documentation>Marshall Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MTQ">
        <xs:annotation>
          <xs:documentation>Martinique</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MRT">
        <xs:annotation>
          <xs:documentation>Mauritania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MUS">
        <xs:annotation>
          <xs:documentation>Mauritius</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MYT">
        <xs:annotation>
          <xs:documentation>Mayotte</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEX">
        <xs:annotation>
          <xs:documentation>Mexico</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FSM">
        <xs:annotation>
          <xs:documentation>Micronesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MID">
        <xs:annotation>
          <xs:documentation>Midway Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MDA">
        <xs:annotation>
          <xs:documentation>Moldova</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MCO">
        <xs:annotation>
          <xs:documentation>Monaco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNG">
        <xs:annotation>
          <xs:documentation>Mongolia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNE">
        <xs:annotation>
          <xs:documentation>Montenegro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MSR">
        <xs:annotation>
          <xs:documentation>Montserrat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MAR">
        <xs:annotation>
          <xs:documentation>Morocco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MOZ">
        <xs:annotation>
          <xs:documentation>Mozambique</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MMR">
        <xs:annotation>
          <xs:documentation>Myanmar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NAM">
        <xs:annotation>
          <xs:documentation>Namibia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NRU">
        <xs:annotation>
          <xs:documentation>Nauru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NPL">
        <xs:annotation>
          <xs:documentation>Nepal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NLD">
        <xs:annotation>
          <xs:documentation>Netherlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANT">
        <xs:annotation>
          <xs:documentation>Netherlands Antilles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ANT">
        <xs:annotation>
          <xs:documentation>Netherlands Antilles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NCL">
        <xs:annotation>
          <xs:documentation>New Caledonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NHB">
        <xs:annotation>
          <xs:documentation>New Hebrides</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZL">
        <xs:annotation>
          <xs:documentation>New Zealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIC">
        <xs:annotation>
          <xs:documentation>Nicaragua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NER">
        <xs:annotation>
          <xs:documentation>Niger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NGA">
        <xs:annotation>
          <xs:documentation>Nigeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NIU">
        <xs:annotation>
          <xs:documentation>Niue</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NFK">
        <xs:annotation>
          <xs:documentation>Norfolk Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MNP">
        <xs:annotation>
          <xs:documentation>Northern Mariana Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Norway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OMN">
        <xs:annotation>
          <xs:documentation>Oman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAK">
        <xs:annotation>
          <xs:documentation>Pakistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLW">
        <xs:annotation>
          <xs:documentation>Palau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PSE">
        <xs:annotation>
          <xs:documentation>Palestine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PAN">
        <xs:annotation>
          <xs:documentation>Panama</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCZ">
        <xs:annotation>
          <xs:documentation>Panama Canal Zone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PNG">
        <xs:annotation>
          <xs:documentation>Papua New Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRY">
        <xs:annotation>
          <xs:documentation>Paraguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PER">
        <xs:annotation>
          <xs:documentation>Peru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PHL">
        <xs:annotation>
          <xs:documentation>Philippines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCN">
        <xs:annotation>
          <xs:documentation>Pitcairn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POL">
        <xs:annotation>
          <xs:documentation>Poland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRT">
        <xs:annotation>
          <xs:documentation>Portugal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PRI">
        <xs:annotation>
          <xs:documentation>Puerto Rico</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QAT">
        <xs:annotation>
          <xs:documentation>Qatar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="REU">
        <xs:annotation>
          <xs:documentation>Reunion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ROU">
        <xs:annotation>
          <xs:documentation>Romania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RUS">
        <xs:annotation>
          <xs:documentation>Russia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RWA">
        <xs:annotation>
          <xs:documentation>Rwanda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHN">
        <xs:annotation>
          <xs:documentation>Saint Helena</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNA">
        <xs:annotation>
          <xs:documentation>Saint Kitts and Nevis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KNA">
        <xs:annotation>
          <xs:documentation>Saint Kitts-Nevis-Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LCA">
        <xs:annotation>
          <xs:documentation>Saint Lucia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SPM">
        <xs:annotation>
          <xs:documentation>Saint Pierre and Miquelon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VCT">
        <xs:annotation>
          <xs:documentation>Saint Vincent and the Grenadines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WSM">
        <xs:annotation>
          <xs:documentation>Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SMR">
        <xs:annotation>
          <xs:documentation>San Marino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="STP">
        <xs:annotation>
          <xs:documentation>Sao Tome and Principe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAU">
        <xs:annotation>
          <xs:documentation>Saudi Arabia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SEN">
        <xs:annotation>
          <xs:documentation>Senegal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SRB">
        <xs:annotation>
          <xs:documentation>Serbia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SCG">
        <xs:annotation>
          <xs:documentation>Serbia and Montenegro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYC">
        <xs:annotation>
          <xs:documentation>Seychelles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLE">
        <xs:annotation>
          <xs:documentation>Sierra Leone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SKM">
        <xs:annotation>
          <xs:documentation>Sikkim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGP">
        <xs:annotation>
          <xs:documentation>Singapore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVK">
        <xs:annotation>
          <xs:documentation>Slovakia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SVN">
        <xs:annotation>
          <xs:documentation>Slovenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SLB">
        <xs:annotation>
          <xs:documentation>Solomon Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOM">
        <xs:annotation>
          <xs:documentation>Somalia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAF">
        <xs:annotation>
          <xs:documentation>South Africa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SGS">
        <xs:annotation>
          <xs:documentation>South Georgia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VDR">
        <xs:annotation>
          <xs:documentation>South Vietnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RHO">
        <xs:annotation>
          <xs:documentation>Southern Rhodesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESP">
        <xs:annotation>
          <xs:documentation>Spain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESH">
        <xs:annotation>
          <xs:documentation>Spanish Sahara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LKA">
        <xs:annotation>
          <xs:documentation>Sri Lanka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SDN">
        <xs:annotation>
          <xs:documentation>Sudan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUR">
        <xs:annotation>
          <xs:documentation>Suriname</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SJM">
        <xs:annotation>
          <xs:documentation>Svalbard and Jan Mayen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWZ">
        <xs:annotation>
          <xs:documentation>Swaziland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SWE">
        <xs:annotation>
          <xs:documentation>Sweden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CHE">
        <xs:annotation>
          <xs:documentation>Switzerland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SYR">
        <xs:annotation>
          <xs:documentation>Syria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TWN">
        <xs:annotation>
          <xs:documentation>Taiwan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TJK">
        <xs:annotation>
          <xs:documentation>Tajikistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TZA">
        <xs:annotation>
          <xs:documentation>Tanzania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="THA">
        <xs:annotation>
          <xs:documentation>Thailand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TLS">
        <xs:annotation>
          <xs:documentation>Timor-Leste</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TGO">
        <xs:annotation>
          <xs:documentation>Togo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TKL">
        <xs:annotation>
          <xs:documentation>Tokelau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TON">
        <xs:annotation>
          <xs:documentation>Tonga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TTO">
        <xs:annotation>
          <xs:documentation>Trinidad and Tobago</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PCI">
        <xs:annotation>
          <xs:documentation>Trust Territory of the Pacific Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUN">
        <xs:annotation>
          <xs:documentation>Tunisia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUR">
        <xs:annotation>
          <xs:documentation>Turkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TKM">
        <xs:annotation>
          <xs:documentation>Turkmenistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TCA">
        <xs:annotation>
          <xs:documentation>Turks and Caicos Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TUV">
        <xs:annotation>
          <xs:documentation>Tuvalu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UGA">
        <xs:annotation>
          <xs:documentation>Uganda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukraine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UKR">
        <xs:annotation>
          <xs:documentation>Ukrainian SSR</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SUN">
        <xs:annotation>
          <xs:documentation>Union of Soviet Socialist Republics</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ARE">
        <xs:annotation>
          <xs:documentation>United Arab Emirates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GBR">
        <xs:annotation>
          <xs:documentation>United Kingdom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="USA">
        <xs:annotation>
          <xs:documentation>United States </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UMI">
        <xs:annotation>
          <xs:documentation>United States Minor Outlying Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PUS">
        <xs:annotation>
          <xs:documentation>United States Miscellaneous Pacific Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HVO">
        <xs:annotation>
          <xs:documentation>Upper Volta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="URY">
        <xs:annotation>
          <xs:documentation>Uruguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZB">
        <xs:annotation>
          <xs:documentation>Uzbekistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VUT">
        <xs:annotation>
          <xs:documentation>Vanuatu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VAT">
        <xs:annotation>
          <xs:documentation>Vatican City State</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VEN">
        <xs:annotation>
          <xs:documentation>Venezuela</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VNM">
        <xs:annotation>
          <xs:documentation>Vietnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VGB">
        <xs:annotation>
          <xs:documentation>Virgin Islands,  British</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VIR">
        <xs:annotation>
          <xs:documentation>Virgin Islands,  U.S.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WAK">
        <xs:annotation>
          <xs:documentation>Wake Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WLF">
        <xs:annotation>
          <xs:documentation>Wallis and Futuna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ESH">
        <xs:annotation>
          <xs:documentation>Western Sahara</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YEM">
        <xs:annotation>
          <xs:documentation>Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YEM">
        <xs:annotation>
          <xs:documentation>Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YUG">
        <xs:annotation>
          <xs:documentation>Yugoslavia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZAR">
        <xs:annotation>
          <xs:documentation>Zaire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZMB">
        <xs:annotation>
          <xs:documentation>Zambia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZWE">
        <xs:annotation>
          <xs:documentation>Zimbabwe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="teachernetRomanCatholicDioceseType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="AAB">
        <xs:annotation>
          <xs:documentation>Arundel &amp; Brighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BIR">
        <xs:annotation>
          <xs:documentation>Birmingham </xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BRE">
        <xs:annotation>
          <xs:documentation>Brentwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CAR">
        <xs:annotation>
          <xs:documentation>Cardiff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CLI">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EAS">
        <xs:annotation>
          <xs:documentation>East Anglia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAL">
        <xs:annotation>
          <xs:documentation>Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HAN">
        <xs:annotation>
          <xs:documentation>Hexham &amp; Newcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LAN">
        <xs:annotation>
          <xs:documentation>Lancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LEE">
        <xs:annotation>
          <xs:documentation>Leeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LIV">
        <xs:annotation>
          <xs:documentation>Liverpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MEN">
        <xs:annotation>
          <xs:documentation>Menevia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MID">
        <xs:annotation>
          <xs:documentation>Middlesbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOR">
        <xs:annotation>
          <xs:documentation>Northampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NOT">
        <xs:annotation>
          <xs:documentation>Nottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PLY">
        <xs:annotation>
          <xs:documentation>Plymouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="POR">
        <xs:annotation>
          <xs:documentation>Portsmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SAL">
        <xs:annotation>
          <xs:documentation>Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SHR">
        <xs:annotation>
          <xs:documentation>Shrewsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SOU">
        <xs:annotation>
          <xs:documentation>Southwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WES">
        <xs:annotation>
          <xs:documentation>Westminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WRE">
        <xs:annotation>
          <xs:documentation>Wrexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="ONSParishCouncilNameType">
    <xs:restriction base="xs:token">
      <xs:enumeration value="00BL001">
        <xs:annotation>
          <xs:documentation>Blackrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BL002">
        <xs:annotation>
          <xs:documentation>Horwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BL003">
        <xs:annotation>
          <xs:documentation>Westhoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BN001">
        <xs:annotation>
          <xs:documentation>Ringway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BP001">
        <xs:annotation>
          <xs:documentation>Saddleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BP002">
        <xs:annotation>
          <xs:documentation>Shaw and Crompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BS001">
        <xs:annotation>
          <xs:documentation>Offerton Estate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BT001">
        <xs:annotation>
          <xs:documentation>Mossley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU001">
        <xs:annotation>
          <xs:documentation>Carrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU002">
        <xs:annotation>
          <xs:documentation>Dunham Massey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU003">
        <xs:annotation>
          <xs:documentation>Partington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BU004">
        <xs:annotation>
          <xs:documentation>Warburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW001">
        <xs:annotation>
          <xs:documentation>Haigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW002">
        <xs:annotation>
          <xs:documentation>Shevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BW003">
        <xs:annotation>
          <xs:documentation>Worthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX001">
        <xs:annotation>
          <xs:documentation>Cronton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX002">
        <xs:annotation>
          <xs:documentation>Halewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX003">
        <xs:annotation>
          <xs:documentation>Knowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX004">
        <xs:annotation>
          <xs:documentation>Prescot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX006">
        <xs:annotation>
          <xs:documentation>Tarbock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BX007">
        <xs:annotation>
          <xs:documentation>Whiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ001">
        <xs:annotation>
          <xs:documentation>Billinge Chapel End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ002">
        <xs:annotation>
          <xs:documentation>Bold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ003">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ004">
        <xs:annotation>
          <xs:documentation>Rainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ005">
        <xs:annotation>
          <xs:documentation>Rainhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ006">
        <xs:annotation>
          <xs:documentation>Seneley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00BZ007">
        <xs:annotation>
          <xs:documentation>Windle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA001">
        <xs:annotation>
          <xs:documentation>Aintree Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA002">
        <xs:annotation>
          <xs:documentation>Ince Blundell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA003">
        <xs:annotation>
          <xs:documentation>Little Altcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA004">
        <xs:annotation>
          <xs:documentation>Lydiate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA005">
        <xs:annotation>
          <xs:documentation>Maghull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA006">
        <xs:annotation>
          <xs:documentation>Melling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA007">
        <xs:annotation>
          <xs:documentation>Sefton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA008">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA009">
        <xs:annotation>
          <xs:documentation>Hightown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CA010">
        <xs:annotation>
          <xs:documentation>Formby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC001">
        <xs:annotation>
          <xs:documentation>Billingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC002">
        <xs:annotation>
          <xs:documentation>Brierley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC003">
        <xs:annotation>
          <xs:documentation>Cawthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC004">
        <xs:annotation>
          <xs:documentation>Dunford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC005">
        <xs:annotation>
          <xs:documentation>Great Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC006">
        <xs:annotation>
          <xs:documentation>Gunthwaite and Ingbirchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC007">
        <xs:annotation>
          <xs:documentation>High Hoyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC008">
        <xs:annotation>
          <xs:documentation>Hunshelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC009">
        <xs:annotation>
          <xs:documentation>Langsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC010">
        <xs:annotation>
          <xs:documentation>Little Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC011">
        <xs:annotation>
          <xs:documentation>Oxspring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC012">
        <xs:annotation>
          <xs:documentation>Penistone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC013">
        <xs:annotation>
          <xs:documentation>Shafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC014">
        <xs:annotation>
          <xs:documentation>Silkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC015">
        <xs:annotation>
          <xs:documentation>Stainborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC016">
        <xs:annotation>
          <xs:documentation>Tankersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC017">
        <xs:annotation>
          <xs:documentation>Thurgoland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CC018">
        <xs:annotation>
          <xs:documentation>Wortley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE001">
        <xs:annotation>
          <xs:documentation>Adwick upon Dearne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE002">
        <xs:annotation>
          <xs:documentation>Armthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE003">
        <xs:annotation>
          <xs:documentation>Askern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE004">
        <xs:annotation>
          <xs:documentation>Auckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE005">
        <xs:annotation>
          <xs:documentation>Austerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE006">
        <xs:annotation>
          <xs:documentation>Barnburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE007">
        <xs:annotation>
          <xs:documentation>Barnby Dun with Kirk Sandall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE008">
        <xs:annotation>
          <xs:documentation>Bawtry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE009">
        <xs:annotation>
          <xs:documentation>Blaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE010">
        <xs:annotation>
          <xs:documentation>Braithwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE011">
        <xs:annotation>
          <xs:documentation>Brodsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE012">
        <xs:annotation>
          <xs:documentation>Burghwallis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE013">
        <xs:annotation>
          <xs:documentation>Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE014">
        <xs:annotation>
          <xs:documentation>Cantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE015">
        <xs:annotation>
          <xs:documentation>Clayton with Frickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE016">
        <xs:annotation>
          <xs:documentation>Conisbrough Parks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE017">
        <xs:annotation>
          <xs:documentation>Denaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE018">
        <xs:annotation>
          <xs:documentation>Edenthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE019">
        <xs:annotation>
          <xs:documentation>Edlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE020">
        <xs:annotation>
          <xs:documentation>Fenwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE021">
        <xs:annotation>
          <xs:documentation>Finningley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE022">
        <xs:annotation>
          <xs:documentation>Fishlake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE023">
        <xs:annotation>
          <xs:documentation>Hampole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE024">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE025">
        <xs:annotation>
          <xs:documentation>Hickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE026">
        <xs:annotation>
          <xs:documentation>High Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE027">
        <xs:annotation>
          <xs:documentation>Hooton Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE028">
        <xs:annotation>
          <xs:documentation>Kirk Bramwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE029">
        <xs:annotation>
          <xs:documentation>Loversall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE030">
        <xs:annotation>
          <xs:documentation>Marr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE031">
        <xs:annotation>
          <xs:documentation>Moss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE032">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE033">
        <xs:annotation>
          <xs:documentation>Owston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE034">
        <xs:annotation>
          <xs:documentation>Rossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE035">
        <xs:annotation>
          <xs:documentation>Sprotbrough and Cusworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE036">
        <xs:annotation>
          <xs:documentation>Stainforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE037">
        <xs:annotation>
          <xs:documentation>Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE038">
        <xs:annotation>
          <xs:documentation>Sykehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE039">
        <xs:annotation>
          <xs:documentation>Thorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE040">
        <xs:annotation>
          <xs:documentation>Thorpe in Balne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE041">
        <xs:annotation>
          <xs:documentation>Tickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE042">
        <xs:annotation>
          <xs:documentation>Wadworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CE043">
        <xs:annotation>
          <xs:documentation>Warmsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF001">
        <xs:annotation>
          <xs:documentation>Aston cum Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF002">
        <xs:annotation>
          <xs:documentation>Bramley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF003">
        <xs:annotation>
          <xs:documentation>Brampton Bierlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF004">
        <xs:annotation>
          <xs:documentation>Brinsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF005">
        <xs:annotation>
          <xs:documentation>Catcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF006">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF007">
        <xs:annotation>
          <xs:documentation>Dinnington St. John's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF008">
        <xs:annotation>
          <xs:documentation>Firbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF009">
        <xs:annotation>
          <xs:documentation>Gildingwells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF010">
        <xs:annotation>
          <xs:documentation>Harthill with Woodall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF011">
        <xs:annotation>
          <xs:documentation>Hooton Levitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF012">
        <xs:annotation>
          <xs:documentation>Hooton Roberts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF013">
        <xs:annotation>
          <xs:documentation>Letwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF014">
        <xs:annotation>
          <xs:documentation>North and South Anston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF015">
        <xs:annotation>
          <xs:documentation>Orgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF016">
        <xs:annotation>
          <xs:documentation>Ravenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF017">
        <xs:annotation>
          <xs:documentation>Thorpe Salvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF018">
        <xs:annotation>
          <xs:documentation>Thrybergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF019">
        <xs:annotation>
          <xs:documentation>Thurcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF020">
        <xs:annotation>
          <xs:documentation>Todwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF021">
        <xs:annotation>
          <xs:documentation>Treeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF022">
        <xs:annotation>
          <xs:documentation>Ulley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF023">
        <xs:annotation>
          <xs:documentation>Wales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF024">
        <xs:annotation>
          <xs:documentation>Wentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF025">
        <xs:annotation>
          <xs:documentation>Whiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF026">
        <xs:annotation>
          <xs:documentation>Wickersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF027">
        <xs:annotation>
          <xs:documentation>Woodsetts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF028">
        <xs:annotation>
          <xs:documentation>Laughton-en-le-Morthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CF029">
        <xs:annotation>
          <xs:documentation>Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG001">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG002">
        <xs:annotation>
          <xs:documentation>Ecclesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CG003">
        <xs:annotation>
          <xs:documentation>Stocksbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CH001">
        <xs:annotation>
          <xs:documentation>Birtley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CH002">
        <xs:annotation>
          <xs:documentation>Lamesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ001">
        <xs:annotation>
          <xs:documentation>Brunswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ002">
        <xs:annotation>
          <xs:documentation>Dinnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ003">
        <xs:annotation>
          <xs:documentation>Hazlerigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ004">
        <xs:annotation>
          <xs:documentation>North Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ005">
        <xs:annotation>
          <xs:documentation>Woolsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CJ006">
        <xs:annotation>
          <xs:documentation>Blakelaw and North Fenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM001">
        <xs:annotation>
          <xs:documentation>Burdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM002">
        <xs:annotation>
          <xs:documentation>Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CM003">
        <xs:annotation>
          <xs:documentation>Warden Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CN001">
        <xs:annotation>
          <xs:documentation>New Frankley in Birmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQ001">
        <xs:annotation>
          <xs:documentation>Allesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CQ002">
        <xs:annotation>
          <xs:documentation>Keresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT001">
        <xs:annotation>
          <xs:documentation>Balsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT002">
        <xs:annotation>
          <xs:documentation>Barston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT003">
        <xs:annotation>
          <xs:documentation>Berkswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT004">
        <xs:annotation>
          <xs:documentation>Bickenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT005">
        <xs:annotation>
          <xs:documentation>Castle Bromwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT006">
        <xs:annotation>
          <xs:documentation>Chelmsley Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT007">
        <xs:annotation>
          <xs:documentation>Fordbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT008">
        <xs:annotation>
          <xs:documentation>Hampton in Arden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT009">
        <xs:annotation>
          <xs:documentation>Hockley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT010">
        <xs:annotation>
          <xs:documentation>Kingshurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT011">
        <xs:annotation>
          <xs:documentation>Meriden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CT012">
        <xs:annotation>
          <xs:documentation>Smith's Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX001">
        <xs:annotation>
          <xs:documentation>Addingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX002">
        <xs:annotation>
          <xs:documentation>Cullingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX003">
        <xs:annotation>
          <xs:documentation>Denholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX004">
        <xs:annotation>
          <xs:documentation>Ilkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX005">
        <xs:annotation>
          <xs:documentation>Oxenhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX006">
        <xs:annotation>
          <xs:documentation>Silsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX007">
        <xs:annotation>
          <xs:documentation>Steeton with Eastburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX008">
        <xs:annotation>
          <xs:documentation>Haworth, Cross Roads and Stanbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX009">
        <xs:annotation>
          <xs:documentation>Keighley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX010">
        <xs:annotation>
          <xs:documentation>Clayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX011">
        <xs:annotation>
          <xs:documentation>Sandy Lane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX012">
        <xs:annotation>
          <xs:documentation>Wilsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CX013">
        <xs:annotation>
          <xs:documentation>Wrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY001">
        <xs:annotation>
          <xs:documentation>Blackshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY002">
        <xs:annotation>
          <xs:documentation>Erringden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY003">
        <xs:annotation>
          <xs:documentation>Hebden Royd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY004">
        <xs:annotation>
          <xs:documentation>Heptonstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY005">
        <xs:annotation>
          <xs:documentation>Ripponden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY006">
        <xs:annotation>
          <xs:documentation>Todmorden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CY007">
        <xs:annotation>
          <xs:documentation>Wadsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ001">
        <xs:annotation>
          <xs:documentation>Denby Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ002">
        <xs:annotation>
          <xs:documentation>Holme Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ003">
        <xs:annotation>
          <xs:documentation>Kirkburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ004">
        <xs:annotation>
          <xs:documentation>Meltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00CZ005">
        <xs:annotation>
          <xs:documentation>Mirfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA001">
        <xs:annotation>
          <xs:documentation>Aberford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA002">
        <xs:annotation>
          <xs:documentation>Arthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA003">
        <xs:annotation>
          <xs:documentation>Austhorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA004">
        <xs:annotation>
          <xs:documentation>Bardsey cum Rigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA005">
        <xs:annotation>
          <xs:documentation>Barwick in Elmet and Scholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA006">
        <xs:annotation>
          <xs:documentation>Boston Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA007">
        <xs:annotation>
          <xs:documentation>Bramham cum Oglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA008">
        <xs:annotation>
          <xs:documentation>Bramhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA009">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA010">
        <xs:annotation>
          <xs:documentation>Clifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA011">
        <xs:annotation>
          <xs:documentation>Collingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA012">
        <xs:annotation>
          <xs:documentation>East Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA013">
        <xs:annotation>
          <xs:documentation>Great and Little Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA014">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA015">
        <xs:annotation>
          <xs:documentation>Ledsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA016">
        <xs:annotation>
          <xs:documentation>Ledston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA017">
        <xs:annotation>
          <xs:documentation>Lotherton cum Aberford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA018">
        <xs:annotation>
          <xs:documentation>Micklefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA019">
        <xs:annotation>
          <xs:documentation>Otley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA020">
        <xs:annotation>
          <xs:documentation>Parlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA021">
        <xs:annotation>
          <xs:documentation>Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA022">
        <xs:annotation>
          <xs:documentation>Scarcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA023">
        <xs:annotation>
          <xs:documentation>Sturton Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA024">
        <xs:annotation>
          <xs:documentation>Swillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA025">
        <xs:annotation>
          <xs:documentation>Thorner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA026">
        <xs:annotation>
          <xs:documentation>Thorp Arch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA027">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA028">
        <xs:annotation>
          <xs:documentation>Wetherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA029">
        <xs:annotation>
          <xs:documentation>Wothersome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA030">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA031">
        <xs:annotation>
          <xs:documentation>Allerton Bywater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA032">
        <xs:annotation>
          <xs:documentation>Horsforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA033">
        <xs:annotation>
          <xs:documentation>Shadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA034">
        <xs:annotation>
          <xs:documentation>Kippax</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA035">
        <xs:annotation>
          <xs:documentation>Drighlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DA036">
        <xs:annotation>
          <xs:documentation>Gildersome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB001">
        <xs:annotation>
          <xs:documentation>Ackworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB002">
        <xs:annotation>
          <xs:documentation>Badsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB003">
        <xs:annotation>
          <xs:documentation>Chevet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB004">
        <xs:annotation>
          <xs:documentation>Crigglestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB005">
        <xs:annotation>
          <xs:documentation>Crofton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB006">
        <xs:annotation>
          <xs:documentation>Darrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB007">
        <xs:annotation>
          <xs:documentation>East Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB008">
        <xs:annotation>
          <xs:documentation>Featherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB009">
        <xs:annotation>
          <xs:documentation>Havercroft with Cold Hiendley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB010">
        <xs:annotation>
          <xs:documentation>Hemsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB011">
        <xs:annotation>
          <xs:documentation>Hessle and Hill Top</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB012">
        <xs:annotation>
          <xs:documentation>Huntwick with Foulby and Nostell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB013">
        <xs:annotation>
          <xs:documentation>Newland with Woodhouse Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB014">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB015">
        <xs:annotation>
          <xs:documentation>North Elmsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB016">
        <xs:annotation>
          <xs:documentation>Notton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB017">
        <xs:annotation>
          <xs:documentation>Ryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB018">
        <xs:annotation>
          <xs:documentation>Sharlston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB019">
        <xs:annotation>
          <xs:documentation>Sitlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB020">
        <xs:annotation>
          <xs:documentation>South Elmsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB021">
        <xs:annotation>
          <xs:documentation>South Hiendley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB022">
        <xs:annotation>
          <xs:documentation>South Kirkby and Moorthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB023">
        <xs:annotation>
          <xs:documentation>Thorpe Audlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB024">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB025">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB026">
        <xs:annotation>
          <xs:documentation>Warmfield cum Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB027">
        <xs:annotation>
          <xs:documentation>West Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB028">
        <xs:annotation>
          <xs:documentation>West Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB029">
        <xs:annotation>
          <xs:documentation>Wintersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00DB030">
        <xs:annotation>
          <xs:documentation>Woolley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB001">
        <xs:annotation>
          <xs:documentation>Brierton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB002">
        <xs:annotation>
          <xs:documentation>Claxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB003">
        <xs:annotation>
          <xs:documentation>Dalton Piercy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB004">
        <xs:annotation>
          <xs:documentation>Elwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB005">
        <xs:annotation>
          <xs:documentation>Greatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB006">
        <xs:annotation>
          <xs:documentation>Hart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB007">
        <xs:annotation>
          <xs:documentation>Newton Bewley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EB008">
        <xs:annotation>
          <xs:documentation>Headland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EC001">
        <xs:annotation>
          <xs:documentation>Nunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EC002">
        <xs:annotation>
          <xs:documentation>Stainton and Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE001">
        <xs:annotation>
          <xs:documentation>Guisborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE002">
        <xs:annotation>
          <xs:documentation>Lockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE003">
        <xs:annotation>
          <xs:documentation>Loftus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE004">
        <xs:annotation>
          <xs:documentation>Saltburn, Marske and New Marske</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EE005">
        <xs:annotation>
          <xs:documentation>Skelton and Brotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF001">
        <xs:annotation>
          <xs:documentation>Aislaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF002">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF003">
        <xs:annotation>
          <xs:documentation>Castlelevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF004">
        <xs:annotation>
          <xs:documentation>Egglescliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF005">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF006">
        <xs:annotation>
          <xs:documentation>Grindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF007">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF008">
        <xs:annotation>
          <xs:documentation>Ingleby Barwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF009">
        <xs:annotation>
          <xs:documentation>Kirklevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF010">
        <xs:annotation>
          <xs:documentation>Longnewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF011">
        <xs:annotation>
          <xs:documentation>Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF012">
        <xs:annotation>
          <xs:documentation>Newsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF013">
        <xs:annotation>
          <xs:documentation>Preston-on-Tees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF014">
        <xs:annotation>
          <xs:documentation>Redmarshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF015">
        <xs:annotation>
          <xs:documentation>Stillington and Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF016">
        <xs:annotation>
          <xs:documentation>Thornaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF017">
        <xs:annotation>
          <xs:documentation>Wolviston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EF018">
        <xs:annotation>
          <xs:documentation>Yarm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH001">
        <xs:annotation>
          <xs:documentation>Archdeacon Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH002">
        <xs:annotation>
          <xs:documentation>Barmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH003">
        <xs:annotation>
          <xs:documentation>Bishopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH004">
        <xs:annotation>
          <xs:documentation>Brafferton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH005">
        <xs:annotation>
          <xs:documentation>Coatham Mundeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH006">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH007">
        <xs:annotation>
          <xs:documentation>East and West Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH008">
        <xs:annotation>
          <xs:documentation>Great Burdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH009">
        <xs:annotation>
          <xs:documentation>Great Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH010">
        <xs:annotation>
          <xs:documentation>Heighington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH011">
        <xs:annotation>
          <xs:documentation>High Coniscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH012">
        <xs:annotation>
          <xs:documentation>Houghton le Side</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH013">
        <xs:annotation>
          <xs:documentation>Hurworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH014">
        <xs:annotation>
          <xs:documentation>Killerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH015">
        <xs:annotation>
          <xs:documentation>Little Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH016">
        <xs:annotation>
          <xs:documentation>Low Coniscliffe and Merrybent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH017">
        <xs:annotation>
          <xs:documentation>Low Dinsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH018">
        <xs:annotation>
          <xs:documentation>Middleton St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH019">
        <xs:annotation>
          <xs:documentation>Morton Palms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH020">
        <xs:annotation>
          <xs:documentation>Neasham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH021">
        <xs:annotation>
          <xs:documentation>Piercebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH022">
        <xs:annotation>
          <xs:documentation>Sadberge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH023">
        <xs:annotation>
          <xs:documentation>Sockburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH024">
        <xs:annotation>
          <xs:documentation>Summerhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH025">
        <xs:annotation>
          <xs:documentation>Walworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EH026">
        <xs:annotation>
          <xs:documentation>Whessoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET001">
        <xs:annotation>
          <xs:documentation>Daresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET002">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET003">
        <xs:annotation>
          <xs:documentation>Moore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ET004">
        <xs:annotation>
          <xs:documentation>Preston Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU001">
        <xs:annotation>
          <xs:documentation>Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU002">
        <xs:annotation>
          <xs:documentation>Birchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU003">
        <xs:annotation>
          <xs:documentation>Burtonwood and Westbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU004">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU005">
        <xs:annotation>
          <xs:documentation>Cuerdley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU006">
        <xs:annotation>
          <xs:documentation>Culcheth and Glazebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU007">
        <xs:annotation>
          <xs:documentation>Grappenhall and Thelwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU008">
        <xs:annotation>
          <xs:documentation>Great Sankey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU009">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU010">
        <xs:annotation>
          <xs:documentation>Lymm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU011">
        <xs:annotation>
          <xs:documentation>Penketh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU012">
        <xs:annotation>
          <xs:documentation>Poulton-with-Fearnhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU013">
        <xs:annotation>
          <xs:documentation>Rixton-with-Glazebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU014">
        <xs:annotation>
          <xs:documentation>Stockton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU015">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU016">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU017">
        <xs:annotation>
          <xs:documentation>Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EU018">
        <xs:annotation>
          <xs:documentation>Woolston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX001">
        <xs:annotation>
          <xs:documentation>Eccleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX002">
        <xs:annotation>
          <xs:documentation>Livesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX003">
        <xs:annotation>
          <xs:documentation>North Turton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX004">
        <xs:annotation>
          <xs:documentation>Pleasington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX005">
        <xs:annotation>
          <xs:documentation>Tockholes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00EX006">
        <xs:annotation>
          <xs:documentation>Yate and Pickup Bank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB001">
        <xs:annotation>
          <xs:documentation>Airmyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB002">
        <xs:annotation>
          <xs:documentation>Aldbrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB003">
        <xs:annotation>
          <xs:documentation>Allerthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB004">
        <xs:annotation>
          <xs:documentation>Asselby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB005">
        <xs:annotation>
          <xs:documentation>Atwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB006">
        <xs:annotation>
          <xs:documentation>Bainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB007">
        <xs:annotation>
          <xs:documentation>Barmby Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB008">
        <xs:annotation>
          <xs:documentation>Barmby on the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB009">
        <xs:annotation>
          <xs:documentation>Barmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB010">
        <xs:annotation>
          <xs:documentation>Beeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB011">
        <xs:annotation>
          <xs:documentation>Bielby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB012">
        <xs:annotation>
          <xs:documentation>Bempton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB013">
        <xs:annotation>
          <xs:documentation>Beswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB014">
        <xs:annotation>
          <xs:documentation>Bewholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB015">
        <xs:annotation>
          <xs:documentation>Bilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB016">
        <xs:annotation>
          <xs:documentation>Bishop Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB017">
        <xs:annotation>
          <xs:documentation>Bishop Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB018">
        <xs:annotation>
          <xs:documentation>Blacktoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB019">
        <xs:annotation>
          <xs:documentation>Boynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB020">
        <xs:annotation>
          <xs:documentation>Brandesburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB021">
        <xs:annotation>
          <xs:documentation>Brantingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB022">
        <xs:annotation>
          <xs:documentation>Broomfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB023">
        <xs:annotation>
          <xs:documentation>Bubwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB024">
        <xs:annotation>
          <xs:documentation>Bugthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB025">
        <xs:annotation>
          <xs:documentation>Burstwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB026">
        <xs:annotation>
          <xs:documentation>Burton Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB027">
        <xs:annotation>
          <xs:documentation>Burton Constable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB028">
        <xs:annotation>
          <xs:documentation>Burton Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB029">
        <xs:annotation>
          <xs:documentation>Burton Pidsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB030">
        <xs:annotation>
          <xs:documentation>Carnaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB031">
        <xs:annotation>
          <xs:documentation>Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB032">
        <xs:annotation>
          <xs:documentation>Catwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB033">
        <xs:annotation>
          <xs:documentation>Cherry Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB034">
        <xs:annotation>
          <xs:documentation>Coniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB035">
        <xs:annotation>
          <xs:documentation>Cottam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB036">
        <xs:annotation>
          <xs:documentation>Cottingwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB037">
        <xs:annotation>
          <xs:documentation>Dalton Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB038">
        <xs:annotation>
          <xs:documentation>Driffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB039">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB040">
        <xs:annotation>
          <xs:documentation>East Garton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB041">
        <xs:annotation>
          <xs:documentation>Eastrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB042">
        <xs:annotation>
          <xs:documentation>Ellerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB043">
        <xs:annotation>
          <xs:documentation>Ellerker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB044">
        <xs:annotation>
          <xs:documentation>Ellerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB045">
        <xs:annotation>
          <xs:documentation>Elloughton-cum-Brough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB046">
        <xs:annotation>
          <xs:documentation>Elstronwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB047">
        <xs:annotation>
          <xs:documentation>Etton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB048">
        <xs:annotation>
          <xs:documentation>Everingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB049">
        <xs:annotation>
          <xs:documentation>Fangfoss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB050">
        <xs:annotation>
          <xs:documentation>Fimber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB051">
        <xs:annotation>
          <xs:documentation>Flamborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB052">
        <xs:annotation>
          <xs:documentation>Foggathorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB053">
        <xs:annotation>
          <xs:documentation>Foston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB054">
        <xs:annotation>
          <xs:documentation>Fridaythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB055">
        <xs:annotation>
          <xs:documentation>Full Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB056">
        <xs:annotation>
          <xs:documentation>Garton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB057">
        <xs:annotation>
          <xs:documentation>Gilberdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB058">
        <xs:annotation>
          <xs:documentation>Goodmanham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB059">
        <xs:annotation>
          <xs:documentation>Goole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB060">
        <xs:annotation>
          <xs:documentation>Goole Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB061">
        <xs:annotation>
          <xs:documentation>Gowdall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB062">
        <xs:annotation>
          <xs:documentation>Grindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB063">
        <xs:annotation>
          <xs:documentation>Halsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB064">
        <xs:annotation>
          <xs:documentation>Harpham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB065">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB066">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB067">
        <xs:annotation>
          <xs:documentation>Hedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB068">
        <xs:annotation>
          <xs:documentation>Hessle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB069">
        <xs:annotation>
          <xs:documentation>Hollym</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB070">
        <xs:annotation>
          <xs:documentation>Holme upon Spalding Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB071">
        <xs:annotation>
          <xs:documentation>Holmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB072">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB073">
        <xs:annotation>
          <xs:documentation>Hornsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB074">
        <xs:annotation>
          <xs:documentation>Hotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB075">
        <xs:annotation>
          <xs:documentation>Howden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB076">
        <xs:annotation>
          <xs:documentation>Huggate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB077">
        <xs:annotation>
          <xs:documentation>Humbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB078">
        <xs:annotation>
          <xs:documentation>Hutton Cranswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB079">
        <xs:annotation>
          <xs:documentation>Kelk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB080">
        <xs:annotation>
          <xs:documentation>Keyingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB081">
        <xs:annotation>
          <xs:documentation>Kilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB082">
        <xs:annotation>
          <xs:documentation>Kilpin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB083">
        <xs:annotation>
          <xs:documentation>Kirby Underdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB084">
        <xs:annotation>
          <xs:documentation>Kirkburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB085">
        <xs:annotation>
          <xs:documentation>Langtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB086">
        <xs:annotation>
          <xs:documentation>Laxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB087">
        <xs:annotation>
          <xs:documentation>Leconfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB088">
        <xs:annotation>
          <xs:documentation>Leven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB089">
        <xs:annotation>
          <xs:documentation>Lockington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB090">
        <xs:annotation>
          <xs:documentation>Londesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB091">
        <xs:annotation>
          <xs:documentation>Lund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB092">
        <xs:annotation>
          <xs:documentation>Mappleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB093">
        <xs:annotation>
          <xs:documentation>Market Weighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB094">
        <xs:annotation>
          <xs:documentation>Melbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB095">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB096">
        <xs:annotation>
          <xs:documentation>Millington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB097">
        <xs:annotation>
          <xs:documentation>Molescroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB098">
        <xs:annotation>
          <xs:documentation>Nafferton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB099">
        <xs:annotation>
          <xs:documentation>Newbald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB100">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB101">
        <xs:annotation>
          <xs:documentation>Newton on Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB102">
        <xs:annotation>
          <xs:documentation>North Cave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB103">
        <xs:annotation>
          <xs:documentation>North Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB104">
        <xs:annotation>
          <xs:documentation>North Ferriby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB105">
        <xs:annotation>
          <xs:documentation>North Frodingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB106">
        <xs:annotation>
          <xs:documentation>Nunburnholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB107">
        <xs:annotation>
          <xs:documentation>Ottringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB108">
        <xs:annotation>
          <xs:documentation>Patrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB109">
        <xs:annotation>
          <xs:documentation>Paull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB110">
        <xs:annotation>
          <xs:documentation>Pocklington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB111">
        <xs:annotation>
          <xs:documentation>Pollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB112">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB113">
        <xs:annotation>
          <xs:documentation>Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB114">
        <xs:annotation>
          <xs:documentation>Reedness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB115">
        <xs:annotation>
          <xs:documentation>Rimswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB116">
        <xs:annotation>
          <xs:documentation>Rise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB117">
        <xs:annotation>
          <xs:documentation>Riston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB118">
        <xs:annotation>
          <xs:documentation>Roos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB119">
        <xs:annotation>
          <xs:documentation>Routh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB120">
        <xs:annotation>
          <xs:documentation>Rowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB121">
        <xs:annotation>
          <xs:documentation>Rudston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB122">
        <xs:annotation>
          <xs:documentation>Sancton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB123">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB124">
        <xs:annotation>
          <xs:documentation>Seaton Ross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB125">
        <xs:annotation>
          <xs:documentation>Shipton Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB126">
        <xs:annotation>
          <xs:documentation>Sigglesthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB127">
        <xs:annotation>
          <xs:documentation>Skeffling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB128">
        <xs:annotation>
          <xs:documentation>Skerne and Wansford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB129">
        <xs:annotation>
          <xs:documentation>Skidby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB130">
        <xs:annotation>
          <xs:documentation>Skipsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB131">
        <xs:annotation>
          <xs:documentation>Skirlaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB132">
        <xs:annotation>
          <xs:documentation>Skirpenbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB133">
        <xs:annotation>
          <xs:documentation>Sledmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB134">
        <xs:annotation>
          <xs:documentation>Snaith and Cowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB135">
        <xs:annotation>
          <xs:documentation>South Cave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB136">
        <xs:annotation>
          <xs:documentation>South Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB137">
        <xs:annotation>
          <xs:documentation>Spaldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB138">
        <xs:annotation>
          <xs:documentation>Sproatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB139">
        <xs:annotation>
          <xs:documentation>Stamford Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB140">
        <xs:annotation>
          <xs:documentation>Sunk Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB141">
        <xs:annotation>
          <xs:documentation>Sutton upon Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB142">
        <xs:annotation>
          <xs:documentation>Swanland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB143">
        <xs:annotation>
          <xs:documentation>Swine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB144">
        <xs:annotation>
          <xs:documentation>Swinefleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB145">
        <xs:annotation>
          <xs:documentation>Thorngumbald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB146">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB147">
        <xs:annotation>
          <xs:documentation>Thwing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB148">
        <xs:annotation>
          <xs:documentation>Tibthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB149">
        <xs:annotation>
          <xs:documentation>Tickton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB150">
        <xs:annotation>
          <xs:documentation>Twin Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB151">
        <xs:annotation>
          <xs:documentation>Ulrome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB152">
        <xs:annotation>
          <xs:documentation>Walkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB153">
        <xs:annotation>
          <xs:documentation>Warter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB154">
        <xs:annotation>
          <xs:documentation>Watton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB155">
        <xs:annotation>
          <xs:documentation>Wawne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB156">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB157">
        <xs:annotation>
          <xs:documentation>Welwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB158">
        <xs:annotation>
          <xs:documentation>Wetwang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB159">
        <xs:annotation>
          <xs:documentation>Wilberfoss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB160">
        <xs:annotation>
          <xs:documentation>Withernsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB161">
        <xs:annotation>
          <xs:documentation>Withernwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB162">
        <xs:annotation>
          <xs:documentation>Wold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB163">
        <xs:annotation>
          <xs:documentation>Woodmansey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB164">
        <xs:annotation>
          <xs:documentation>Wressle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB165">
        <xs:annotation>
          <xs:documentation>Yapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB166">
        <xs:annotation>
          <xs:documentation>Beverley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB167">
        <xs:annotation>
          <xs:documentation>Cottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB168">
        <xs:annotation>
          <xs:documentation>Anlaby with Anlaby Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB169">
        <xs:annotation>
          <xs:documentation>Bridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB170">
        <xs:annotation>
          <xs:documentation>Kirk Ella</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FB171">
        <xs:annotation>
          <xs:documentation>Willerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC001">
        <xs:annotation>
          <xs:documentation>Ashby cum Fenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC002">
        <xs:annotation>
          <xs:documentation>Aylesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC003">
        <xs:annotation>
          <xs:documentation>Barnoldby le Beck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC004">
        <xs:annotation>
          <xs:documentation>Beelsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC005">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC006">
        <xs:annotation>
          <xs:documentation>Brigsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC007">
        <xs:annotation>
          <xs:documentation>East Ravendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC008">
        <xs:annotation>
          <xs:documentation>Habrough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC009">
        <xs:annotation>
          <xs:documentation>Hatcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC010">
        <xs:annotation>
          <xs:documentation>Hawerby cum Beesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC011">
        <xs:annotation>
          <xs:documentation>Healing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC012">
        <xs:annotation>
          <xs:documentation>Humberston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC013">
        <xs:annotation>
          <xs:documentation>Immingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC014">
        <xs:annotation>
          <xs:documentation>Irby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC015">
        <xs:annotation>
          <xs:documentation>Laceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC016">
        <xs:annotation>
          <xs:documentation>New Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC017">
        <xs:annotation>
          <xs:documentation>Stallingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC018">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC019">
        <xs:annotation>
          <xs:documentation>West Ravendale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC020">
        <xs:annotation>
          <xs:documentation>Wold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FC021">
        <xs:annotation>
          <xs:documentation>Great Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD001">
        <xs:annotation>
          <xs:documentation>Alkborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD002">
        <xs:annotation>
          <xs:documentation>Amcotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD003">
        <xs:annotation>
          <xs:documentation>Appleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD004">
        <xs:annotation>
          <xs:documentation>Barnetby le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD005">
        <xs:annotation>
          <xs:documentation>Barrow upon Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD006">
        <xs:annotation>
          <xs:documentation>Barton-upon-Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD007">
        <xs:annotation>
          <xs:documentation>Belton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD008">
        <xs:annotation>
          <xs:documentation>Bonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD009">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD010">
        <xs:annotation>
          <xs:documentation>Brigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD011">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD012">
        <xs:annotation>
          <xs:documentation>Burringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD013">
        <xs:annotation>
          <xs:documentation>Burton upon Stather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD014">
        <xs:annotation>
          <xs:documentation>Cadney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD015">
        <xs:annotation>
          <xs:documentation>Crowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD016">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD017">
        <xs:annotation>
          <xs:documentation>East Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD018">
        <xs:annotation>
          <xs:documentation>East Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD019">
        <xs:annotation>
          <xs:documentation>Eastoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD020">
        <xs:annotation>
          <xs:documentation>Elsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD021">
        <xs:annotation>
          <xs:documentation>Epworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD022">
        <xs:annotation>
          <xs:documentation>Flixborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD023">
        <xs:annotation>
          <xs:documentation>Garthorpe and Fockerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD024">
        <xs:annotation>
          <xs:documentation>Goxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD025">
        <xs:annotation>
          <xs:documentation>Gunness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD027">
        <xs:annotation>
          <xs:documentation>Haxey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD028">
        <xs:annotation>
          <xs:documentation>Hibaldstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD029">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD030">
        <xs:annotation>
          <xs:documentation>Horkstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD031">
        <xs:annotation>
          <xs:documentation>Keadby with Althorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD032">
        <xs:annotation>
          <xs:documentation>Kirmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD033">
        <xs:annotation>
          <xs:documentation>Kirton in Lindsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD034">
        <xs:annotation>
          <xs:documentation>Luddington and Haldenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD035">
        <xs:annotation>
          <xs:documentation>Manton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD036">
        <xs:annotation>
          <xs:documentation>Melton Ross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD037">
        <xs:annotation>
          <xs:documentation>Messingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD038">
        <xs:annotation>
          <xs:documentation>New Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD039">
        <xs:annotation>
          <xs:documentation>North Killingholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD040">
        <xs:annotation>
          <xs:documentation>Owston Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD041">
        <xs:annotation>
          <xs:documentation>Redbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD042">
        <xs:annotation>
          <xs:documentation>Roxby cum Risby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD043">
        <xs:annotation>
          <xs:documentation>Saxby All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD044">
        <xs:annotation>
          <xs:documentation>Scawby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD045">
        <xs:annotation>
          <xs:documentation>South Ferriby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD046">
        <xs:annotation>
          <xs:documentation>South Killingholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD047">
        <xs:annotation>
          <xs:documentation>Thornton Curtis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD048">
        <xs:annotation>
          <xs:documentation>Ulceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD049">
        <xs:annotation>
          <xs:documentation>West Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD050">
        <xs:annotation>
          <xs:documentation>West Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD051">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD052">
        <xs:annotation>
          <xs:documentation>Winteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD053">
        <xs:annotation>
          <xs:documentation>Winterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD054">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD055">
        <xs:annotation>
          <xs:documentation>Worlaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD056">
        <xs:annotation>
          <xs:documentation>Wrawby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD057">
        <xs:annotation>
          <xs:documentation>Wroot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FD058">
        <xs:annotation>
          <xs:documentation>Ashby Parkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF001">
        <xs:annotation>
          <xs:documentation>Acaster Malbis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF002">
        <xs:annotation>
          <xs:documentation>Askham Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF003">
        <xs:annotation>
          <xs:documentation>Askham Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF004">
        <xs:annotation>
          <xs:documentation>Bishopthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF005">
        <xs:annotation>
          <xs:documentation>Clifton Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF006">
        <xs:annotation>
          <xs:documentation>Copmanthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF007">
        <xs:annotation>
          <xs:documentation>Deighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF008">
        <xs:annotation>
          <xs:documentation>Dunnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF009">
        <xs:annotation>
          <xs:documentation>Earswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF010">
        <xs:annotation>
          <xs:documentation>Elvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF011">
        <xs:annotation>
          <xs:documentation>Fulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF012">
        <xs:annotation>
          <xs:documentation>Haxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF013">
        <xs:annotation>
          <xs:documentation>Heslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF014">
        <xs:annotation>
          <xs:documentation>Hessay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF015">
        <xs:annotation>
          <xs:documentation>Heworth Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF016">
        <xs:annotation>
          <xs:documentation>Holtby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF017">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF018">
        <xs:annotation>
          <xs:documentation>Kexby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF019">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF020">
        <xs:annotation>
          <xs:documentation>Naburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF021">
        <xs:annotation>
          <xs:documentation>Nether Poppleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF022">
        <xs:annotation>
          <xs:documentation>New Earswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF023">
        <xs:annotation>
          <xs:documentation>Osbaldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF024">
        <xs:annotation>
          <xs:documentation>Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF025">
        <xs:annotation>
          <xs:documentation>Rufforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF026">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF027">
        <xs:annotation>
          <xs:documentation>Stockton-on-the-Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF028">
        <xs:annotation>
          <xs:documentation>Strensall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF029">
        <xs:annotation>
          <xs:documentation>Towthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF030">
        <xs:annotation>
          <xs:documentation>Upper Poppleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF031">
        <xs:annotation>
          <xs:documentation>Wheldrake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FF032">
        <xs:annotation>
          <xs:documentation>Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP001">
        <xs:annotation>
          <xs:documentation>Ashwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP002">
        <xs:annotation>
          <xs:documentation>Ayston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP003">
        <xs:annotation>
          <xs:documentation>Barleythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP004">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP005">
        <xs:annotation>
          <xs:documentation>Barrowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP006">
        <xs:annotation>
          <xs:documentation>Beaumont Chase</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP007">
        <xs:annotation>
          <xs:documentation>Belton-in-Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP008">
        <xs:annotation>
          <xs:documentation>Bisbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP009">
        <xs:annotation>
          <xs:documentation>Braunston-in-Rutland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP010">
        <xs:annotation>
          <xs:documentation>Brooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP011">
        <xs:annotation>
          <xs:documentation>Burley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP012">
        <xs:annotation>
          <xs:documentation>Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP013">
        <xs:annotation>
          <xs:documentation>Clipsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP014">
        <xs:annotation>
          <xs:documentation>Cottesmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP015">
        <xs:annotation>
          <xs:documentation>Edith Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP016">
        <xs:annotation>
          <xs:documentation>Egleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP017">
        <xs:annotation>
          <xs:documentation>Empingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP018">
        <xs:annotation>
          <xs:documentation>Essendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP019">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP020">
        <xs:annotation>
          <xs:documentation>Glaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP021">
        <xs:annotation>
          <xs:documentation>Great Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP022">
        <xs:annotation>
          <xs:documentation>Greetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP023">
        <xs:annotation>
          <xs:documentation>Gunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP024">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP025">
        <xs:annotation>
          <xs:documentation>Horn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP026">
        <xs:annotation>
          <xs:documentation>Ketton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP027">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP028">
        <xs:annotation>
          <xs:documentation>Leighfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP029">
        <xs:annotation>
          <xs:documentation>Little Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP030">
        <xs:annotation>
          <xs:documentation>Lyddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP031">
        <xs:annotation>
          <xs:documentation>Lyndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP032">
        <xs:annotation>
          <xs:documentation>Manton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP033">
        <xs:annotation>
          <xs:documentation>Market Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP034">
        <xs:annotation>
          <xs:documentation>Martinsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP035">
        <xs:annotation>
          <xs:documentation>Morcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP036">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP037">
        <xs:annotation>
          <xs:documentation>North Luffenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP038">
        <xs:annotation>
          <xs:documentation>Oakham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP039">
        <xs:annotation>
          <xs:documentation>Pickworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP040">
        <xs:annotation>
          <xs:documentation>Pilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP041">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP042">
        <xs:annotation>
          <xs:documentation>Ridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP043">
        <xs:annotation>
          <xs:documentation>Ryhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP044">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP045">
        <xs:annotation>
          <xs:documentation>South Luffenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP046">
        <xs:annotation>
          <xs:documentation>Stoke Dry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP047">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP048">
        <xs:annotation>
          <xs:documentation>Teigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP049">
        <xs:annotation>
          <xs:documentation>Thistleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP050">
        <xs:annotation>
          <xs:documentation>Thorpe by Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP051">
        <xs:annotation>
          <xs:documentation>Tickencote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP052">
        <xs:annotation>
          <xs:documentation>Tinwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP053">
        <xs:annotation>
          <xs:documentation>Tixover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP054">
        <xs:annotation>
          <xs:documentation>Uppingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP055">
        <xs:annotation>
          <xs:documentation>Wardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP056">
        <xs:annotation>
          <xs:documentation>Whissendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP057">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00FP058">
        <xs:annotation>
          <xs:documentation>Wing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA001">
        <xs:annotation>
          <xs:documentation>Abbey Dore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA002">
        <xs:annotation>
          <xs:documentation>Aconbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA003">
        <xs:annotation>
          <xs:documentation>Acton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA004">
        <xs:annotation>
          <xs:documentation>Adforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA005">
        <xs:annotation>
          <xs:documentation>Allensmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA006">
        <xs:annotation>
          <xs:documentation>Almeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA007">
        <xs:annotation>
          <xs:documentation>Ashperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA008">
        <xs:annotation>
          <xs:documentation>Aston Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA009">
        <xs:annotation>
          <xs:documentation>Avenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA010">
        <xs:annotation>
          <xs:documentation>Aylton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA011">
        <xs:annotation>
          <xs:documentation>Aymestrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA012">
        <xs:annotation>
          <xs:documentation>Bacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA013">
        <xs:annotation>
          <xs:documentation>Ballingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA014">
        <xs:annotation>
          <xs:documentation>Bartestree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA015">
        <xs:annotation>
          <xs:documentation>Birley with Upper Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA016">
        <xs:annotation>
          <xs:documentation>Bishop's Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA017">
        <xs:annotation>
          <xs:documentation>Bishopstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA018">
        <xs:annotation>
          <xs:documentation>Blakemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA019">
        <xs:annotation>
          <xs:documentation>Bodenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA020">
        <xs:annotation>
          <xs:documentation>Bolstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA021">
        <xs:annotation>
          <xs:documentation>Bosbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA022">
        <xs:annotation>
          <xs:documentation>Brampton Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA023">
        <xs:annotation>
          <xs:documentation>Brampton Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA024">
        <xs:annotation>
          <xs:documentation>Bredenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA025">
        <xs:annotation>
          <xs:documentation>Bredwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA026">
        <xs:annotation>
          <xs:documentation>Breinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA027">
        <xs:annotation>
          <xs:documentation>Bridge Sollers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA028">
        <xs:annotation>
          <xs:documentation>Bridstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA029">
        <xs:annotation>
          <xs:documentation>Brilley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA030">
        <xs:annotation>
          <xs:documentation>Brimfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA031">
        <xs:annotation>
          <xs:documentation>Brinsop and Wormsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA032">
        <xs:annotation>
          <xs:documentation>Brobury with Monnington on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA033">
        <xs:annotation>
          <xs:documentation>Brockhampton (Old Gore)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA034">
        <xs:annotation>
          <xs:documentation>Brockhampton (Bringsty)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA035">
        <xs:annotation>
          <xs:documentation>Bromyard and Winslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA036">
        <xs:annotation>
          <xs:documentation>Buckton and Coxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA037">
        <xs:annotation>
          <xs:documentation>Burghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA038">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA039">
        <xs:annotation>
          <xs:documentation>Byford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA040">
        <xs:annotation>
          <xs:documentation>Byton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA041">
        <xs:annotation>
          <xs:documentation>Callow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA042">
        <xs:annotation>
          <xs:documentation>Canon Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA043">
        <xs:annotation>
          <xs:documentation>Canon Pyon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA044">
        <xs:annotation>
          <xs:documentation>Castle Frome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA045">
        <xs:annotation>
          <xs:documentation>Clehonger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA046">
        <xs:annotation>
          <xs:documentation>Clifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA047">
        <xs:annotation>
          <xs:documentation>Coddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA048">
        <xs:annotation>
          <xs:documentation>Collington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA049">
        <xs:annotation>
          <xs:documentation>Colwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA050">
        <xs:annotation>
          <xs:documentation>Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA051">
        <xs:annotation>
          <xs:documentation>Cradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA052">
        <xs:annotation>
          <xs:documentation>Craswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA053">
        <xs:annotation>
          <xs:documentation>Credenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA054">
        <xs:annotation>
          <xs:documentation>Croft and Yarpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA055">
        <xs:annotation>
          <xs:documentation>Cusop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA056">
        <xs:annotation>
          <xs:documentation>Dewsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA057">
        <xs:annotation>
          <xs:documentation>Dilwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA058">
        <xs:annotation>
          <xs:documentation>Dinedor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA059">
        <xs:annotation>
          <xs:documentation>Dinmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA060">
        <xs:annotation>
          <xs:documentation>Docklow and Hampton Wafer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA061">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA062">
        <xs:annotation>
          <xs:documentation>Dormington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA063">
        <xs:annotation>
          <xs:documentation>Dorstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA064">
        <xs:annotation>
          <xs:documentation>Downton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA065">
        <xs:annotation>
          <xs:documentation>Dulas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA066">
        <xs:annotation>
          <xs:documentation>Eardisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA067">
        <xs:annotation>
          <xs:documentation>Eardisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA068">
        <xs:annotation>
          <xs:documentation>Eastnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA069">
        <xs:annotation>
          <xs:documentation>Eaton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA070">
        <xs:annotation>
          <xs:documentation>Edvin Loach and Saltmarshe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA071">
        <xs:annotation>
          <xs:documentation>Edwyn Ralph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA072">
        <xs:annotation>
          <xs:documentation>Eggleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA073">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA074">
        <xs:annotation>
          <xs:documentation>Evesbatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA075">
        <xs:annotation>
          <xs:documentation>Ewyas Harold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA076">
        <xs:annotation>
          <xs:documentation>Eye, Moreton and Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA077">
        <xs:annotation>
          <xs:documentation>Eyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA078">
        <xs:annotation>
          <xs:documentation>Felton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA079">
        <xs:annotation>
          <xs:documentation>Ford and Stoke Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA080">
        <xs:annotation>
          <xs:documentation>Fownhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA081">
        <xs:annotation>
          <xs:documentation>Foy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA082">
        <xs:annotation>
          <xs:documentation>Ganarew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA083">
        <xs:annotation>
          <xs:documentation>Garway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA084">
        <xs:annotation>
          <xs:documentation>Goodrich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA085">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA086">
        <xs:annotation>
          <xs:documentation>Grendon Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA087">
        <xs:annotation>
          <xs:documentation>Hampton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA088">
        <xs:annotation>
          <xs:documentation>Hampton Charles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA089">
        <xs:annotation>
          <xs:documentation>Harewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA090">
        <xs:annotation>
          <xs:documentation>Hatfield and Newhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA091">
        <xs:annotation>
          <xs:documentation>Haywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA092">
        <xs:annotation>
          <xs:documentation>Hentland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA093">
        <xs:annotation>
          <xs:documentation>Holme Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA094">
        <xs:annotation>
          <xs:documentation>Holmer &amp; Shelwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA095">
        <xs:annotation>
          <xs:documentation>Hope Mansell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA096">
        <xs:annotation>
          <xs:documentation>Hope under Dinmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA097">
        <xs:annotation>
          <xs:documentation>How Caple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA098">
        <xs:annotation>
          <xs:documentation>Humber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA099">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA100">
        <xs:annotation>
          <xs:documentation>Kenchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA101">
        <xs:annotation>
          <xs:documentation>Kenderchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA102">
        <xs:annotation>
          <xs:documentation>Kentchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA103">
        <xs:annotation>
          <xs:documentation>Kilpeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA104">
        <xs:annotation>
          <xs:documentation>Kimbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA105">
        <xs:annotation>
          <xs:documentation>King's Pyon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA106">
        <xs:annotation>
          <xs:documentation>Kings Caple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA107">
        <xs:annotation>
          <xs:documentation>Kingsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA108">
        <xs:annotation>
          <xs:documentation>Kingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA109">
        <xs:annotation>
          <xs:documentation>Kington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA110">
        <xs:annotation>
          <xs:documentation>Kington Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA111">
        <xs:annotation>
          <xs:documentation>Kinnersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA112">
        <xs:annotation>
          <xs:documentation>Kinsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA113">
        <xs:annotation>
          <xs:documentation>Knill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA114">
        <xs:annotation>
          <xs:documentation>Laysters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA115">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA116">
        <xs:annotation>
          <xs:documentation>Ledbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA117">
        <xs:annotation>
          <xs:documentation>Leinthall Starkes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA118">
        <xs:annotation>
          <xs:documentation>Leintwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA119">
        <xs:annotation>
          <xs:documentation>Leominster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA120">
        <xs:annotation>
          <xs:documentation>Letton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA121">
        <xs:annotation>
          <xs:documentation>Lingen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA122">
        <xs:annotation>
          <xs:documentation>Linton (Bringsty)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA123">
        <xs:annotation>
          <xs:documentation>Linton (Penyard)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA124">
        <xs:annotation>
          <xs:documentation>Little Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA125">
        <xs:annotation>
          <xs:documentation>Little Cowarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA126">
        <xs:annotation>
          <xs:documentation>Little Dewchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA127">
        <xs:annotation>
          <xs:documentation>Little Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA128">
        <xs:annotation>
          <xs:documentation>Little Marcle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA129">
        <xs:annotation>
          <xs:documentation>Llancillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA130">
        <xs:annotation>
          <xs:documentation>Llandinabo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA131">
        <xs:annotation>
          <xs:documentation>Llangarron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA132">
        <xs:annotation>
          <xs:documentation>Llanrothal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA133">
        <xs:annotation>
          <xs:documentation>Llanveynoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA134">
        <xs:annotation>
          <xs:documentation>Llanwarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA135">
        <xs:annotation>
          <xs:documentation>Longtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA136">
        <xs:annotation>
          <xs:documentation>Lower Bullingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA137">
        <xs:annotation>
          <xs:documentation>Lower Harpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA138">
        <xs:annotation>
          <xs:documentation>Lucton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA139">
        <xs:annotation>
          <xs:documentation>Lugwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA140">
        <xs:annotation>
          <xs:documentation>Luston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA141">
        <xs:annotation>
          <xs:documentation>Lyonshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA142">
        <xs:annotation>
          <xs:documentation>Madley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA143">
        <xs:annotation>
          <xs:documentation>Mansell Gamage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA144">
        <xs:annotation>
          <xs:documentation>Mansell Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA145">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA146">
        <xs:annotation>
          <xs:documentation>Marstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA147">
        <xs:annotation>
          <xs:documentation>Mathon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA148">
        <xs:annotation>
          <xs:documentation>Michaelchurch Escley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA149">
        <xs:annotation>
          <xs:documentation>Middleton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA150">
        <xs:annotation>
          <xs:documentation>Moccas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA151">
        <xs:annotation>
          <xs:documentation>Monkland and Stretford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA152">
        <xs:annotation>
          <xs:documentation>Mordiford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA153">
        <xs:annotation>
          <xs:documentation>Moreton Jeffries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA154">
        <xs:annotation>
          <xs:documentation>Moreton on Lugg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA155">
        <xs:annotation>
          <xs:documentation>Much Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA156">
        <xs:annotation>
          <xs:documentation>Much Cowarne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA157">
        <xs:annotation>
          <xs:documentation>Much Dewchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA158">
        <xs:annotation>
          <xs:documentation>Much Marcle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA159">
        <xs:annotation>
          <xs:documentation>Munsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA160">
        <xs:annotation>
          <xs:documentation>Newton (Hampton Court)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA161">
        <xs:annotation>
          <xs:documentation>Newton (Golden Valley South)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA162">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA163">
        <xs:annotation>
          <xs:documentation>Norton Canon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA164">
        <xs:annotation>
          <xs:documentation>Ocle Pychard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA165">
        <xs:annotation>
          <xs:documentation>Orcop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA166">
        <xs:annotation>
          <xs:documentation>Orleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA167">
        <xs:annotation>
          <xs:documentation>Pembridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA168">
        <xs:annotation>
          <xs:documentation>Pencombe with Grendon Warren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA169">
        <xs:annotation>
          <xs:documentation>Pencoyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA170">
        <xs:annotation>
          <xs:documentation>Peterchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA171">
        <xs:annotation>
          <xs:documentation>Peterstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA172">
        <xs:annotation>
          <xs:documentation>Pipe and Lyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA173">
        <xs:annotation>
          <xs:documentation>Pipe Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA174">
        <xs:annotation>
          <xs:documentation>Pixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA175">
        <xs:annotation>
          <xs:documentation>Preston on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA176">
        <xs:annotation>
          <xs:documentation>Preston Wynne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA177">
        <xs:annotation>
          <xs:documentation>Pudlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA178">
        <xs:annotation>
          <xs:documentation>Putley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA179">
        <xs:annotation>
          <xs:documentation>Richards Castle (Hereford)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA180">
        <xs:annotation>
          <xs:documentation>Rodd, Nash and Little Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA181">
        <xs:annotation>
          <xs:documentation>Ross-on-Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA182">
        <xs:annotation>
          <xs:documentation>Ross Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA183">
        <xs:annotation>
          <xs:documentation>Rowlstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA184">
        <xs:annotation>
          <xs:documentation>St. Devereux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA185">
        <xs:annotation>
          <xs:documentation>St. Margarets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA186">
        <xs:annotation>
          <xs:documentation>St. Weonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA187">
        <xs:annotation>
          <xs:documentation>Sarnesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA188">
        <xs:annotation>
          <xs:documentation>Sellack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA189">
        <xs:annotation>
          <xs:documentation>Shobdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA190">
        <xs:annotation>
          <xs:documentation>Sollers Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA191">
        <xs:annotation>
          <xs:documentation>Stanford Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA192">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA193">
        <xs:annotation>
          <xs:documentation>Staunton on Arrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA194">
        <xs:annotation>
          <xs:documentation>Staunton on Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA195">
        <xs:annotation>
          <xs:documentation>Stoke Edith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA196">
        <xs:annotation>
          <xs:documentation>Stoke Lacy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA197">
        <xs:annotation>
          <xs:documentation>Stretton Grandison</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA198">
        <xs:annotation>
          <xs:documentation>Stretton Sugwas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA199">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA200">
        <xs:annotation>
          <xs:documentation>Tarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA201">
        <xs:annotation>
          <xs:documentation>Tedstone Delamere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA202">
        <xs:annotation>
          <xs:documentation>Tedstone Wafer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA203">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA204">
        <xs:annotation>
          <xs:documentation>Thruxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA205">
        <xs:annotation>
          <xs:documentation>Titley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA206">
        <xs:annotation>
          <xs:documentation>Tretire with Michaelchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA207">
        <xs:annotation>
          <xs:documentation>Treville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA208">
        <xs:annotation>
          <xs:documentation>Turnastone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA209">
        <xs:annotation>
          <xs:documentation>Tyberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA210">
        <xs:annotation>
          <xs:documentation>Ullingswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA211">
        <xs:annotation>
          <xs:documentation>Upper Sapey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA212">
        <xs:annotation>
          <xs:documentation>Upton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA213">
        <xs:annotation>
          <xs:documentation>Vowchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA214">
        <xs:annotation>
          <xs:documentation>Wacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA215">
        <xs:annotation>
          <xs:documentation>Walford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA216">
        <xs:annotation>
          <xs:documentation>Walford, Letton and Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA217">
        <xs:annotation>
          <xs:documentation>Walterstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA218">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA219">
        <xs:annotation>
          <xs:documentation>Wellington Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA220">
        <xs:annotation>
          <xs:documentation>Welsh Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA221">
        <xs:annotation>
          <xs:documentation>Welsh Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA222">
        <xs:annotation>
          <xs:documentation>Weobley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA223">
        <xs:annotation>
          <xs:documentation>Westhide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA224">
        <xs:annotation>
          <xs:documentation>Weston Beggard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA225">
        <xs:annotation>
          <xs:documentation>Weston under Penyard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA226">
        <xs:annotation>
          <xs:documentation>Whitbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA227">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA228">
        <xs:annotation>
          <xs:documentation>Whitney-on-Wye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA229">
        <xs:annotation>
          <xs:documentation>Wigmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA230">
        <xs:annotation>
          <xs:documentation>Willersley and Winforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA231">
        <xs:annotation>
          <xs:documentation>Willey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA232">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA233">
        <xs:annotation>
          <xs:documentation>Wolferlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA234">
        <xs:annotation>
          <xs:documentation>Woolhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA235">
        <xs:annotation>
          <xs:documentation>Wormbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA236">
        <xs:annotation>
          <xs:documentation>Yarkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA237">
        <xs:annotation>
          <xs:documentation>Yatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA238">
        <xs:annotation>
          <xs:documentation>Yazor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA239">
        <xs:annotation>
          <xs:documentation>Belmont Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GA240">
        <xs:annotation>
          <xs:documentation>Hereford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF001">
        <xs:annotation>
          <xs:documentation>Chetwynd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF002">
        <xs:annotation>
          <xs:documentation>Chetwynd Aston and Woodcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF003">
        <xs:annotation>
          <xs:documentation>Church Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF004">
        <xs:annotation>
          <xs:documentation>Dawley Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF005">
        <xs:annotation>
          <xs:documentation>Edgmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF006">
        <xs:annotation>
          <xs:documentation>Ercall Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF007">
        <xs:annotation>
          <xs:documentation>Eyton Upon The Weald Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF008">
        <xs:annotation>
          <xs:documentation>Great Dawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF009">
        <xs:annotation>
          <xs:documentation>Hadley &amp; Leegomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF010">
        <xs:annotation>
          <xs:documentation>Hollinswood and Randlay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF011">
        <xs:annotation>
          <xs:documentation>Ketley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF012">
        <xs:annotation>
          <xs:documentation>Kynnersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF013">
        <xs:annotation>
          <xs:documentation>Lawley and Overdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF014">
        <xs:annotation>
          <xs:documentation>Lilleshall and Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF015">
        <xs:annotation>
          <xs:documentation>Little Wenlock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF016">
        <xs:annotation>
          <xs:documentation>Madeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF017">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF018">
        <xs:annotation>
          <xs:documentation>Oakengates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF019">
        <xs:annotation>
          <xs:documentation>Preston Upon The Weald Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF020">
        <xs:annotation>
          <xs:documentation>Rodington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF021">
        <xs:annotation>
          <xs:documentation>St Georges and Priorslee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF022">
        <xs:annotation>
          <xs:documentation>Stirchley and Brookside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF023">
        <xs:annotation>
          <xs:documentation>The Gorge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF024">
        <xs:annotation>
          <xs:documentation>Tibberton and Cherrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF025">
        <xs:annotation>
          <xs:documentation>Waters Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF026">
        <xs:annotation>
          <xs:documentation>Wellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF027">
        <xs:annotation>
          <xs:documentation>Wrockwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00GF028">
        <xs:annotation>
          <xs:documentation>Wrockwardine Wood and Trench</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA001">
        <xs:annotation>
          <xs:documentation>Bathampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA002">
        <xs:annotation>
          <xs:documentation>Batheaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA003">
        <xs:annotation>
          <xs:documentation>Bathford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA004">
        <xs:annotation>
          <xs:documentation>Cameley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA005">
        <xs:annotation>
          <xs:documentation>Camerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA006">
        <xs:annotation>
          <xs:documentation>Charlcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA007">
        <xs:annotation>
          <xs:documentation>Chelwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA008">
        <xs:annotation>
          <xs:documentation>Chew Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA009">
        <xs:annotation>
          <xs:documentation>Chew Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA010">
        <xs:annotation>
          <xs:documentation>Claverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA011">
        <xs:annotation>
          <xs:documentation>Clutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA012">
        <xs:annotation>
          <xs:documentation>Combe Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA013">
        <xs:annotation>
          <xs:documentation>Compton Dando</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA014">
        <xs:annotation>
          <xs:documentation>Compton Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA015">
        <xs:annotation>
          <xs:documentation>Corston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA016">
        <xs:annotation>
          <xs:documentation>Dunkerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA017">
        <xs:annotation>
          <xs:documentation>East Harptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA018">
        <xs:annotation>
          <xs:documentation>Englishcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA019">
        <xs:annotation>
          <xs:documentation>Farmborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA020">
        <xs:annotation>
          <xs:documentation>Farrington Gurney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA021">
        <xs:annotation>
          <xs:documentation>Freshford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA022">
        <xs:annotation>
          <xs:documentation>High Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA023">
        <xs:annotation>
          <xs:documentation>Hinton Blewett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA024">
        <xs:annotation>
          <xs:documentation>Hinton Charterhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA025">
        <xs:annotation>
          <xs:documentation>Kelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA026">
        <xs:annotation>
          <xs:documentation>Keynsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA027">
        <xs:annotation>
          <xs:documentation>Marksbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA028">
        <xs:annotation>
          <xs:documentation>Monkton Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA029">
        <xs:annotation>
          <xs:documentation>Nempnett Thrubwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA030">
        <xs:annotation>
          <xs:documentation>Newton St. Loe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA031">
        <xs:annotation>
          <xs:documentation>North Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA032">
        <xs:annotation>
          <xs:documentation>Norton Malreward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA033">
        <xs:annotation>
          <xs:documentation>Norton-Radstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA034">
        <xs:annotation>
          <xs:documentation>Paulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA035">
        <xs:annotation>
          <xs:documentation>Peasedown St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA036">
        <xs:annotation>
          <xs:documentation>Priston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA037">
        <xs:annotation>
          <xs:documentation>Publow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA038">
        <xs:annotation>
          <xs:documentation>St. Catherine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA039">
        <xs:annotation>
          <xs:documentation>Saltford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA040">
        <xs:annotation>
          <xs:documentation>Shoscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA041">
        <xs:annotation>
          <xs:documentation>Southstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA042">
        <xs:annotation>
          <xs:documentation>Stanton Drew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA043">
        <xs:annotation>
          <xs:documentation>Stowey-Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA044">
        <xs:annotation>
          <xs:documentation>Swainswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA045">
        <xs:annotation>
          <xs:documentation>Timsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA046">
        <xs:annotation>
          <xs:documentation>Ubley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA047">
        <xs:annotation>
          <xs:documentation>Wellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA048">
        <xs:annotation>
          <xs:documentation>West Harptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HA049">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC001">
        <xs:annotation>
          <xs:documentation>Abbots Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC002">
        <xs:annotation>
          <xs:documentation>Backwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC003">
        <xs:annotation>
          <xs:documentation>Banwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC004">
        <xs:annotation>
          <xs:documentation>Barrow Gurney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC005">
        <xs:annotation>
          <xs:documentation>Blagdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC006">
        <xs:annotation>
          <xs:documentation>Bleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC007">
        <xs:annotation>
          <xs:documentation>Brockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC008">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC009">
        <xs:annotation>
          <xs:documentation>Butcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC010">
        <xs:annotation>
          <xs:documentation>Churchill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC011">
        <xs:annotation>
          <xs:documentation>Clapton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC012">
        <xs:annotation>
          <xs:documentation>Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC013">
        <xs:annotation>
          <xs:documentation>Clevedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC014">
        <xs:annotation>
          <xs:documentation>Congresbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC015">
        <xs:annotation>
          <xs:documentation>Dundry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC016">
        <xs:annotation>
          <xs:documentation>Easton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC017">
        <xs:annotation>
          <xs:documentation>Flax Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC018">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC019">
        <xs:annotation>
          <xs:documentation>Kenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC020">
        <xs:annotation>
          <xs:documentation>Kewstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC021">
        <xs:annotation>
          <xs:documentation>Kingston Seymour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC022">
        <xs:annotation>
          <xs:documentation>Locking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC023">
        <xs:annotation>
          <xs:documentation>Long Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC024">
        <xs:annotation>
          <xs:documentation>Loxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC025">
        <xs:annotation>
          <xs:documentation>Nailsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC026">
        <xs:annotation>
          <xs:documentation>Portbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC027">
        <xs:annotation>
          <xs:documentation>Portishead and North Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC028">
        <xs:annotation>
          <xs:documentation>Puxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC029">
        <xs:annotation>
          <xs:documentation>Tickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC030">
        <xs:annotation>
          <xs:documentation>Walton-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC031">
        <xs:annotation>
          <xs:documentation>Weston-in-Gordano</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC032">
        <xs:annotation>
          <xs:documentation>Wick St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC033">
        <xs:annotation>
          <xs:documentation>Winford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC034">
        <xs:annotation>
          <xs:documentation>Winscombe and Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC035">
        <xs:annotation>
          <xs:documentation>Wraxall and Failand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC036">
        <xs:annotation>
          <xs:documentation>Wrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC037">
        <xs:annotation>
          <xs:documentation>Yatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC038">
        <xs:annotation>
          <xs:documentation>Weston-super-Mare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HC039">
        <xs:annotation>
          <xs:documentation>St. Georges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD001">
        <xs:annotation>
          <xs:documentation>Acton Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD002">
        <xs:annotation>
          <xs:documentation>Almondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD003">
        <xs:annotation>
          <xs:documentation>Alveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD004">
        <xs:annotation>
          <xs:documentation>Aust</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD005">
        <xs:annotation>
          <xs:documentation>Badminton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD006">
        <xs:annotation>
          <xs:documentation>Bitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD007">
        <xs:annotation>
          <xs:documentation>Bradley Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD008">
        <xs:annotation>
          <xs:documentation>Charfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD009">
        <xs:annotation>
          <xs:documentation>Cold Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD010">
        <xs:annotation>
          <xs:documentation>Cromhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD011">
        <xs:annotation>
          <xs:documentation>Dodington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD012">
        <xs:annotation>
          <xs:documentation>Doynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD013">
        <xs:annotation>
          <xs:documentation>Dyrham and Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD014">
        <xs:annotation>
          <xs:documentation>Falfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD015">
        <xs:annotation>
          <xs:documentation>Filton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD016">
        <xs:annotation>
          <xs:documentation>Frampton Cotterell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD017">
        <xs:annotation>
          <xs:documentation>Hanham Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD018">
        <xs:annotation>
          <xs:documentation>Hawkesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD019">
        <xs:annotation>
          <xs:documentation>Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD020">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD021">
        <xs:annotation>
          <xs:documentation>Iron Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD022">
        <xs:annotation>
          <xs:documentation>Little Sodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD023">
        <xs:annotation>
          <xs:documentation>Mangotsfield Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD024">
        <xs:annotation>
          <xs:documentation>Marshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD025">
        <xs:annotation>
          <xs:documentation>Oldbury-upon-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD026">
        <xs:annotation>
          <xs:documentation>Oldland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD027">
        <xs:annotation>
          <xs:documentation>Olveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD028">
        <xs:annotation>
          <xs:documentation>Patchway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD029">
        <xs:annotation>
          <xs:documentation>Pilning and Severn Beach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD030">
        <xs:annotation>
          <xs:documentation>Pucklechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD031">
        <xs:annotation>
          <xs:documentation>Rangeworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD032">
        <xs:annotation>
          <xs:documentation>Rockhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD033">
        <xs:annotation>
          <xs:documentation>Siston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD034">
        <xs:annotation>
          <xs:documentation>Sodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD035">
        <xs:annotation>
          <xs:documentation>Stoke Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD036">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD037">
        <xs:annotation>
          <xs:documentation>Tormarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD038">
        <xs:annotation>
          <xs:documentation>Tortworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD039">
        <xs:annotation>
          <xs:documentation>Tytherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD040">
        <xs:annotation>
          <xs:documentation>Westerleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD041">
        <xs:annotation>
          <xs:documentation>Wick and Abson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD042">
        <xs:annotation>
          <xs:documentation>Wickwar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD043">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD044">
        <xs:annotation>
          <xs:documentation>Yate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD045">
        <xs:annotation>
          <xs:documentation>Downend and Bromley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HD046">
        <xs:annotation>
          <xs:documentation>Hanham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX001">
        <xs:annotation>
          <xs:documentation>Bishopstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX002">
        <xs:annotation>
          <xs:documentation>Blunsdon St Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX003">
        <xs:annotation>
          <xs:documentation>Castle Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX004">
        <xs:annotation>
          <xs:documentation>Chiseldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX005">
        <xs:annotation>
          <xs:documentation>Covingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX006">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX007">
        <xs:annotation>
          <xs:documentation>Haydon Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX008">
        <xs:annotation>
          <xs:documentation>Highworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX009">
        <xs:annotation>
          <xs:documentation>Inglesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX010">
        <xs:annotation>
          <xs:documentation>Liddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX011">
        <xs:annotation>
          <xs:documentation>South Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX012">
        <xs:annotation>
          <xs:documentation>Stanton Fitzwarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX013">
        <xs:annotation>
          <xs:documentation>Stratton St Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX014">
        <xs:annotation>
          <xs:documentation>Wanborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00HX015">
        <xs:annotation>
          <xs:documentation>Wroughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA001">
        <xs:annotation>
          <xs:documentation>Ailsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA002">
        <xs:annotation>
          <xs:documentation>Bainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA003">
        <xs:annotation>
          <xs:documentation>Barnack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA004">
        <xs:annotation>
          <xs:documentation>Borough Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA005">
        <xs:annotation>
          <xs:documentation>Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA006">
        <xs:annotation>
          <xs:documentation>Castor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA007">
        <xs:annotation>
          <xs:documentation>Deeping Gate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA008">
        <xs:annotation>
          <xs:documentation>Etton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA009">
        <xs:annotation>
          <xs:documentation>Eye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA010">
        <xs:annotation>
          <xs:documentation>Glinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA011">
        <xs:annotation>
          <xs:documentation>Helpston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA012">
        <xs:annotation>
          <xs:documentation>Marholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA013">
        <xs:annotation>
          <xs:documentation>Maxey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA014">
        <xs:annotation>
          <xs:documentation>Newborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA015">
        <xs:annotation>
          <xs:documentation>Northborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA016">
        <xs:annotation>
          <xs:documentation>Orton Longueville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA017">
        <xs:annotation>
          <xs:documentation>Orton Waterville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA018">
        <xs:annotation>
          <xs:documentation>Peakirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA019">
        <xs:annotation>
          <xs:documentation>St. Martin's Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA020">
        <xs:annotation>
          <xs:documentation>Southorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA022">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA023">
        <xs:annotation>
          <xs:documentation>Thorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA024">
        <xs:annotation>
          <xs:documentation>Thornhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA025">
        <xs:annotation>
          <xs:documentation>Ufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA026">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA027">
        <xs:annotation>
          <xs:documentation>Wansford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA028">
        <xs:annotation>
          <xs:documentation>Wittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00JA029">
        <xs:annotation>
          <xs:documentation>Wothorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00KF001">
        <xs:annotation>
          <xs:documentation>Leigh-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC001">
        <xs:annotation>
          <xs:documentation>Allhallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC002">
        <xs:annotation>
          <xs:documentation>Cliffe and Cliffe Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC003">
        <xs:annotation>
          <xs:documentation>Cooling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC004">
        <xs:annotation>
          <xs:documentation>Cuxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC005">
        <xs:annotation>
          <xs:documentation>Frindsbury Extra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC006">
        <xs:annotation>
          <xs:documentation>Halling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC007">
        <xs:annotation>
          <xs:documentation>High Halstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC008">
        <xs:annotation>
          <xs:documentation>Hoo St. Werburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC009">
        <xs:annotation>
          <xs:documentation>Isle of Grain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC010">
        <xs:annotation>
          <xs:documentation>St. Mary Hoo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00LC011">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA001">
        <xs:annotation>
          <xs:documentation>Binfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA002">
        <xs:annotation>
          <xs:documentation>Bracknell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA003">
        <xs:annotation>
          <xs:documentation>Crowthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA004">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA005">
        <xs:annotation>
          <xs:documentation>Warfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MA006">
        <xs:annotation>
          <xs:documentation>Winkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB001">
        <xs:annotation>
          <xs:documentation>Aldermaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB002">
        <xs:annotation>
          <xs:documentation>Aldworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB003">
        <xs:annotation>
          <xs:documentation>Ashampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB004">
        <xs:annotation>
          <xs:documentation>Basildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB005">
        <xs:annotation>
          <xs:documentation>Beech Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB006">
        <xs:annotation>
          <xs:documentation>Beedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB007">
        <xs:annotation>
          <xs:documentation>Beenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB008">
        <xs:annotation>
          <xs:documentation>Boxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB009">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB010">
        <xs:annotation>
          <xs:documentation>Brightwalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB011">
        <xs:annotation>
          <xs:documentation>Brimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB012">
        <xs:annotation>
          <xs:documentation>Bucklebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB013">
        <xs:annotation>
          <xs:documentation>Burghfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB014">
        <xs:annotation>
          <xs:documentation>Catmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB015">
        <xs:annotation>
          <xs:documentation>Chaddleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB016">
        <xs:annotation>
          <xs:documentation>Chieveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB017">
        <xs:annotation>
          <xs:documentation>Cold Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB018">
        <xs:annotation>
          <xs:documentation>Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB019">
        <xs:annotation>
          <xs:documentation>Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB020">
        <xs:annotation>
          <xs:documentation>East Garston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB021">
        <xs:annotation>
          <xs:documentation>East Ilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB022">
        <xs:annotation>
          <xs:documentation>Enborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB023">
        <xs:annotation>
          <xs:documentation>Englefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB024">
        <xs:annotation>
          <xs:documentation>Farnborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB025">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB026">
        <xs:annotation>
          <xs:documentation>Frilsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB027">
        <xs:annotation>
          <xs:documentation>Great Shefford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB028">
        <xs:annotation>
          <xs:documentation>Greenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB029">
        <xs:annotation>
          <xs:documentation>Hampstead Norreys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB030">
        <xs:annotation>
          <xs:documentation>Hampstead Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB031">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB032">
        <xs:annotation>
          <xs:documentation>Hungerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB033">
        <xs:annotation>
          <xs:documentation>Inkpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB034">
        <xs:annotation>
          <xs:documentation>Kintbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB035">
        <xs:annotation>
          <xs:documentation>Lambourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB036">
        <xs:annotation>
          <xs:documentation>Leckhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB037">
        <xs:annotation>
          <xs:documentation>Midgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB038">
        <xs:annotation>
          <xs:documentation>Padworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB039">
        <xs:annotation>
          <xs:documentation>Pangbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB040">
        <xs:annotation>
          <xs:documentation>Peasemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB041">
        <xs:annotation>
          <xs:documentation>Purley on Thames</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB042">
        <xs:annotation>
          <xs:documentation>Shaw cum Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB043">
        <xs:annotation>
          <xs:documentation>Speen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB044">
        <xs:annotation>
          <xs:documentation>Stanford Dingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB045">
        <xs:annotation>
          <xs:documentation>Stratfield Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB046">
        <xs:annotation>
          <xs:documentation>Streatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB047">
        <xs:annotation>
          <xs:documentation>Sulham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB048">
        <xs:annotation>
          <xs:documentation>Sulhamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB049">
        <xs:annotation>
          <xs:documentation>Thatcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB050">
        <xs:annotation>
          <xs:documentation>Theale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB051">
        <xs:annotation>
          <xs:documentation>Tidmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB052">
        <xs:annotation>
          <xs:documentation>Tilehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB053">
        <xs:annotation>
          <xs:documentation>Ufton Nervet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB054">
        <xs:annotation>
          <xs:documentation>Wasing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB055">
        <xs:annotation>
          <xs:documentation>Welford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB056">
        <xs:annotation>
          <xs:documentation>West Ilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB057">
        <xs:annotation>
          <xs:documentation>West Woodhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB058">
        <xs:annotation>
          <xs:documentation>Winterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB059">
        <xs:annotation>
          <xs:documentation>Wokefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB060">
        <xs:annotation>
          <xs:documentation>Woolhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB061">
        <xs:annotation>
          <xs:documentation>Yattendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB062">
        <xs:annotation>
          <xs:documentation>Newbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MB063">
        <xs:annotation>
          <xs:documentation>Holybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD001">
        <xs:annotation>
          <xs:documentation>Britwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD002">
        <xs:annotation>
          <xs:documentation>Colnbrook with Poyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MD003">
        <xs:annotation>
          <xs:documentation>Wexham Court</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME001">
        <xs:annotation>
          <xs:documentation>Bisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME002">
        <xs:annotation>
          <xs:documentation>Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME003">
        <xs:annotation>
          <xs:documentation>Cookham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME004">
        <xs:annotation>
          <xs:documentation>Cox Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME005">
        <xs:annotation>
          <xs:documentation>Datchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME006">
        <xs:annotation>
          <xs:documentation>Eton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME007">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME008">
        <xs:annotation>
          <xs:documentation>Hurley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME009">
        <xs:annotation>
          <xs:documentation>Old Windsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME010">
        <xs:annotation>
          <xs:documentation>Shottesbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME011">
        <xs:annotation>
          <xs:documentation>Sunningdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME012">
        <xs:annotation>
          <xs:documentation>Sunninghill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME013">
        <xs:annotation>
          <xs:documentation>Waltham St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME014">
        <xs:annotation>
          <xs:documentation>White Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ME015">
        <xs:annotation>
          <xs:documentation>Wraysbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF001">
        <xs:annotation>
          <xs:documentation>Arborfield and Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF002">
        <xs:annotation>
          <xs:documentation>Barkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF003">
        <xs:annotation>
          <xs:documentation>Charvil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF004">
        <xs:annotation>
          <xs:documentation>Earley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF005">
        <xs:annotation>
          <xs:documentation>Finchampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF006">
        <xs:annotation>
          <xs:documentation>Remenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF007">
        <xs:annotation>
          <xs:documentation>Ruscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF008">
        <xs:annotation>
          <xs:documentation>St. Nicholas, Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF009">
        <xs:annotation>
          <xs:documentation>Shinfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF010">
        <xs:annotation>
          <xs:documentation>Sonning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF011">
        <xs:annotation>
          <xs:documentation>Swallowfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF012">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF013">
        <xs:annotation>
          <xs:documentation>Wargrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF014">
        <xs:annotation>
          <xs:documentation>Winnersh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF015">
        <xs:annotation>
          <xs:documentation>Wokingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF016">
        <xs:annotation>
          <xs:documentation>Wokingham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MF017">
        <xs:annotation>
          <xs:documentation>Woodley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG001">
        <xs:annotation>
          <xs:documentation>Astwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG002">
        <xs:annotation>
          <xs:documentation>Bow Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG003">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG004">
        <xs:annotation>
          <xs:documentation>Bradwell Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG005">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG006">
        <xs:annotation>
          <xs:documentation>Castlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG007">
        <xs:annotation>
          <xs:documentation>Chicheley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG008">
        <xs:annotation>
          <xs:documentation>Clifton Reynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG009">
        <xs:annotation>
          <xs:documentation>Cold Brayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG010">
        <xs:annotation>
          <xs:documentation>Emberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG011">
        <xs:annotation>
          <xs:documentation>Gayhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG012">
        <xs:annotation>
          <xs:documentation>Great Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG013">
        <xs:annotation>
          <xs:documentation>Hanslope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG014">
        <xs:annotation>
          <xs:documentation>Hardmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG015">
        <xs:annotation>
          <xs:documentation>Haversham-cum-Little Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG016">
        <xs:annotation>
          <xs:documentation>Lathbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG017">
        <xs:annotation>
          <xs:documentation>Lavendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG018">
        <xs:annotation>
          <xs:documentation>Little Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG019">
        <xs:annotation>
          <xs:documentation>Loughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG020">
        <xs:annotation>
          <xs:documentation>Milton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG021">
        <xs:annotation>
          <xs:documentation>Moulsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG022">
        <xs:annotation>
          <xs:documentation>Newport Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG023">
        <xs:annotation>
          <xs:documentation>Newton Blossomville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG024">
        <xs:annotation>
          <xs:documentation>North Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG025">
        <xs:annotation>
          <xs:documentation>Olney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG026">
        <xs:annotation>
          <xs:documentation>Ravenstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG027">
        <xs:annotation>
          <xs:documentation>Shenley Brook End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG028">
        <xs:annotation>
          <xs:documentation>Shenley Church End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG029">
        <xs:annotation>
          <xs:documentation>Sherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG030">
        <xs:annotation>
          <xs:documentation>Stantonbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG031">
        <xs:annotation>
          <xs:documentation>Stoke Goldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG032">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG033">
        <xs:annotation>
          <xs:documentation>Warrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG034">
        <xs:annotation>
          <xs:documentation>Wavendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG035">
        <xs:annotation>
          <xs:documentation>Weston Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG036">
        <xs:annotation>
          <xs:documentation>Woburn Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG037">
        <xs:annotation>
          <xs:documentation>Campbell Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG038">
        <xs:annotation>
          <xs:documentation>Woughton on the Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG039">
        <xs:annotation>
          <xs:documentation>Bletchley and Fenny Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG040">
        <xs:annotation>
          <xs:documentation>Calverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG041">
        <xs:annotation>
          <xs:documentation>Central Milton Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG042">
        <xs:annotation>
          <xs:documentation>Kents Hill, Monkston and Brinklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG043">
        <xs:annotation>
          <xs:documentation>New Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG044">
        <xs:annotation>
          <xs:documentation>Simpson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG045">
        <xs:annotation>
          <xs:documentation>Stony Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG046">
        <xs:annotation>
          <xs:documentation>Tyringham and Filgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG047">
        <xs:annotation>
          <xs:documentation>West Bletchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MG048">
        <xs:annotation>
          <xs:documentation>Wolverton and Greenleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00ML001">
        <xs:annotation>
          <xs:documentation>Rottingdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MR001">
        <xs:annotation>
          <xs:documentation>Southsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW001">
        <xs:annotation>
          <xs:documentation>Arreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW002">
        <xs:annotation>
          <xs:documentation>Bembridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW003">
        <xs:annotation>
          <xs:documentation>Brading</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW004">
        <xs:annotation>
          <xs:documentation>Brighstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW005">
        <xs:annotation>
          <xs:documentation>Calbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW006">
        <xs:annotation>
          <xs:documentation>Chale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW007">
        <xs:annotation>
          <xs:documentation>Cowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW008">
        <xs:annotation>
          <xs:documentation>Freshwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW009">
        <xs:annotation>
          <xs:documentation>Gatcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW010">
        <xs:annotation>
          <xs:documentation>Godshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW011">
        <xs:annotation>
          <xs:documentation>Gurnard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW012">
        <xs:annotation>
          <xs:documentation>Lake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW013">
        <xs:annotation>
          <xs:documentation>Nettlestone and Seaview</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW014">
        <xs:annotation>
          <xs:documentation>Newchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW015">
        <xs:annotation>
          <xs:documentation>Niton and Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW016">
        <xs:annotation>
          <xs:documentation>Rookley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW017">
        <xs:annotation>
          <xs:documentation>St Helens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW018">
        <xs:annotation>
          <xs:documentation>Sandown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW019">
        <xs:annotation>
          <xs:documentation>Shalfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW020">
        <xs:annotation>
          <xs:documentation>Shanklin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW021">
        <xs:annotation>
          <xs:documentation>Shorwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW022">
        <xs:annotation>
          <xs:documentation>Totland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW023">
        <xs:annotation>
          <xs:documentation>Ventnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW024">
        <xs:annotation>
          <xs:documentation>Wootton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW025">
        <xs:annotation>
          <xs:documentation>Wroxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW026">
        <xs:annotation>
          <xs:documentation>Yarmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00MW027">
        <xs:annotation>
          <xs:documentation>East Cowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA001">
        <xs:annotation>
          <xs:documentation>Aberffraw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA002">
        <xs:annotation>
          <xs:documentation>Amlwch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA003">
        <xs:annotation>
          <xs:documentation>Beaumaris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA004">
        <xs:annotation>
          <xs:documentation>Bodedern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA005">
        <xs:annotation>
          <xs:documentation>Bodffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA006">
        <xs:annotation>
          <xs:documentation>Bodorgan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA007">
        <xs:annotation>
          <xs:documentation>Bryngwran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA008">
        <xs:annotation>
          <xs:documentation>Cwm Cadnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA009">
        <xs:annotation>
          <xs:documentation>Cylch-y-Garn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA010">
        <xs:annotation>
          <xs:documentation>Holyhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA011">
        <xs:annotation>
          <xs:documentation>Llanbadrig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA012">
        <xs:annotation>
          <xs:documentation>Llanddaniel Fab</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA013">
        <xs:annotation>
          <xs:documentation>Llanddona</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA014">
        <xs:annotation>
          <xs:documentation>Llanddyfnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA015">
        <xs:annotation>
          <xs:documentation>Llaneilian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA016">
        <xs:annotation>
          <xs:documentation>Llaneugrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA017">
        <xs:annotation>
          <xs:documentation>Llanfachraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA018">
        <xs:annotation>
          <xs:documentation>Llanfaelog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA019">
        <xs:annotation>
          <xs:documentation>Llanfaethlu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA020">
        <xs:annotation>
          <xs:documentation>Llanfair-Mathafarn-Eithaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA021">
        <xs:annotation>
          <xs:documentation>Llanfair Pwllgwyngyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA022">
        <xs:annotation>
          <xs:documentation>Llanfair-yn-Neubwll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA023">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ysgeifiog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA024">
        <xs:annotation>
          <xs:documentation>Llangefni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA025">
        <xs:annotation>
          <xs:documentation>Llangoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA026">
        <xs:annotation>
          <xs:documentation>Llangristiolus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA027">
        <xs:annotation>
          <xs:documentation>Llanidan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA028">
        <xs:annotation>
          <xs:documentation>Llannerch-y-medd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA029">
        <xs:annotation>
          <xs:documentation>Mechell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA030">
        <xs:annotation>
          <xs:documentation>Menai Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA031">
        <xs:annotation>
          <xs:documentation>Moelfre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA032">
        <xs:annotation>
          <xs:documentation>Penmynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA033">
        <xs:annotation>
          <xs:documentation>Pentraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA034">
        <xs:annotation>
          <xs:documentation>Rhoscolyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA035">
        <xs:annotation>
          <xs:documentation>Rhosybol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA036">
        <xs:annotation>
          <xs:documentation>Rhosyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA037">
        <xs:annotation>
          <xs:documentation>Trearddur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA038">
        <xs:annotation>
          <xs:documentation>Tref Alaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA039">
        <xs:annotation>
          <xs:documentation>Trewalchmai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NA040">
        <xs:annotation>
          <xs:documentation>Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC001">
        <xs:annotation>
          <xs:documentation>Aber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC002">
        <xs:annotation>
          <xs:documentation>Aberdaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC003">
        <xs:annotation>
          <xs:documentation>Aberdovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC004">
        <xs:annotation>
          <xs:documentation>Arthog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC005">
        <xs:annotation>
          <xs:documentation>Bala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC006">
        <xs:annotation>
          <xs:documentation>Bangor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC007">
        <xs:annotation>
          <xs:documentation>Barmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC008">
        <xs:annotation>
          <xs:documentation>Beddgelert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC009">
        <xs:annotation>
          <xs:documentation>Bethesda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC010">
        <xs:annotation>
          <xs:documentation>Betws Garmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC011">
        <xs:annotation>
          <xs:documentation>Bontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC012">
        <xs:annotation>
          <xs:documentation>Botwnnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC013">
        <xs:annotation>
          <xs:documentation>Brithdir and Llanfachreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC014">
        <xs:annotation>
          <xs:documentation>Bryn-crug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC015">
        <xs:annotation>
          <xs:documentation>Buan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC016">
        <xs:annotation>
          <xs:documentation>Caernarfon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC017">
        <xs:annotation>
          <xs:documentation>Clynnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC018">
        <xs:annotation>
          <xs:documentation>Corris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC019">
        <xs:annotation>
          <xs:documentation>Criccieth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC020">
        <xs:annotation>
          <xs:documentation>Dolbenmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC021">
        <xs:annotation>
          <xs:documentation>Dolgellau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC022">
        <xs:annotation>
          <xs:documentation>Dyffryn Ardudwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC023">
        <xs:annotation>
          <xs:documentation>Ffestiniog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC024">
        <xs:annotation>
          <xs:documentation>Ganllwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC025">
        <xs:annotation>
          <xs:documentation>Harlech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC026">
        <xs:annotation>
          <xs:documentation>Llanaelhaearn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC027">
        <xs:annotation>
          <xs:documentation>Llanbedr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC028">
        <xs:annotation>
          <xs:documentation>Llanbedrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC029">
        <xs:annotation>
          <xs:documentation>Llanberis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC030">
        <xs:annotation>
          <xs:documentation>Llanddeiniolen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC031">
        <xs:annotation>
          <xs:documentation>Llandderfel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC032">
        <xs:annotation>
          <xs:documentation>Llandwrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC033">
        <xs:annotation>
          <xs:documentation>Llandygai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC034">
        <xs:annotation>
          <xs:documentation>Llanegryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC035">
        <xs:annotation>
          <xs:documentation>Llanelltyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC036">
        <xs:annotation>
          <xs:documentation>Llanengan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC037">
        <xs:annotation>
          <xs:documentation>Llanfair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC038">
        <xs:annotation>
          <xs:documentation>Llanfihangel-y-Pennant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC039">
        <xs:annotation>
          <xs:documentation>Llanfrothen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC040">
        <xs:annotation>
          <xs:documentation>Llangelynin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC041">
        <xs:annotation>
          <xs:documentation>Llangywer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC042">
        <xs:annotation>
          <xs:documentation>Llanllechid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC043">
        <xs:annotation>
          <xs:documentation>Llanllyfni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC044">
        <xs:annotation>
          <xs:documentation>Llannor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC045">
        <xs:annotation>
          <xs:documentation>Llanuwchllyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC046">
        <xs:annotation>
          <xs:documentation>Llanrug</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC047">
        <xs:annotation>
          <xs:documentation>Llanwnda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC048">
        <xs:annotation>
          <xs:documentation>Llanycil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC049">
        <xs:annotation>
          <xs:documentation>Llanystumdwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC050">
        <xs:annotation>
          <xs:documentation>Maentwrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC051">
        <xs:annotation>
          <xs:documentation>Mawddwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC052">
        <xs:annotation>
          <xs:documentation>Nefyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC053">
        <xs:annotation>
          <xs:documentation>Pennal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC054">
        <xs:annotation>
          <xs:documentation>Penrhyndeudraeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC055">
        <xs:annotation>
          <xs:documentation>Pentir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC056">
        <xs:annotation>
          <xs:documentation>Pistyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC057">
        <xs:annotation>
          <xs:documentation>Porthmadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC058">
        <xs:annotation>
          <xs:documentation>Pwllheli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC059">
        <xs:annotation>
          <xs:documentation>Talsarnau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC060">
        <xs:annotation>
          <xs:documentation>Trawsfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC061">
        <xs:annotation>
          <xs:documentation>Tudweiliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC062">
        <xs:annotation>
          <xs:documentation>Tywyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC063">
        <xs:annotation>
          <xs:documentation>Waunfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NC064">
        <xs:annotation>
          <xs:documentation>Y Felinheli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE001">
        <xs:annotation>
          <xs:documentation>Abergele</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE002">
        <xs:annotation>
          <xs:documentation>Betws-y-Coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE003">
        <xs:annotation>
          <xs:documentation>Betws yn Rhos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE004">
        <xs:annotation>
          <xs:documentation>Bro Garmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE005">
        <xs:annotation>
          <xs:documentation>Bro Machno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE006">
        <xs:annotation>
          <xs:documentation>Caerhun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE007">
        <xs:annotation>
          <xs:documentation>Capel Curig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE008">
        <xs:annotation>
          <xs:documentation>Cerrigydrudion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE009">
        <xs:annotation>
          <xs:documentation>Colwyn Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE010">
        <xs:annotation>
          <xs:documentation>Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE011">
        <xs:annotation>
          <xs:documentation>Dolgarrog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE012">
        <xs:annotation>
          <xs:documentation>Dolwyddelan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE013">
        <xs:annotation>
          <xs:documentation>Eglwysbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE014">
        <xs:annotation>
          <xs:documentation>Henryd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE015">
        <xs:annotation>
          <xs:documentation>Kinmel Bay and Towyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE016">
        <xs:annotation>
          <xs:documentation>Llanddoged and Maenan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE017">
        <xs:annotation>
          <xs:documentation>Llanddulas and Rhyd-y-Foel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE018">
        <xs:annotation>
          <xs:documentation>Llandudno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE019">
        <xs:annotation>
          <xs:documentation>Llanfairfechan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE020">
        <xs:annotation>
          <xs:documentation>Llanfair Talhaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE021">
        <xs:annotation>
          <xs:documentation>Llanfihangel Glyn Myfyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE022">
        <xs:annotation>
          <xs:documentation>Llangernyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE023">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE024">
        <xs:annotation>
          <xs:documentation>Llannefydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE025">
        <xs:annotation>
          <xs:documentation>Llanrwst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE026">
        <xs:annotation>
          <xs:documentation>Llansanffraid Glan Conwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE027">
        <xs:annotation>
          <xs:documentation>Llansannan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE028">
        <xs:annotation>
          <xs:documentation>Llysfaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE029">
        <xs:annotation>
          <xs:documentation>Mochdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE030">
        <xs:annotation>
          <xs:documentation>Old Colwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE031">
        <xs:annotation>
          <xs:documentation>Penmaenmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE032">
        <xs:annotation>
          <xs:documentation>Pentrefoelas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE033">
        <xs:annotation>
          <xs:documentation>Rhos-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE034">
        <xs:annotation>
          <xs:documentation>Trefriw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NE035">
        <xs:annotation>
          <xs:documentation>Ysbyty Ifan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG001">
        <xs:annotation>
          <xs:documentation>Aberwheeler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG002">
        <xs:annotation>
          <xs:documentation>Betws Gwerfil Goch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG003">
        <xs:annotation>
          <xs:documentation>Bodelwyddan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG004">
        <xs:annotation>
          <xs:documentation>Bodfari</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG005">
        <xs:annotation>
          <xs:documentation>Bryneglwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG006">
        <xs:annotation>
          <xs:documentation>Cefnmeiriadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG007">
        <xs:annotation>
          <xs:documentation>Clocaenog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG008">
        <xs:annotation>
          <xs:documentation>Corwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG009">
        <xs:annotation>
          <xs:documentation>Cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG010">
        <xs:annotation>
          <xs:documentation>Cyffylliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG011">
        <xs:annotation>
          <xs:documentation>Cynwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG012">
        <xs:annotation>
          <xs:documentation>Denbigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG013">
        <xs:annotation>
          <xs:documentation>Derwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG014">
        <xs:annotation>
          <xs:documentation>Dyserth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG015">
        <xs:annotation>
          <xs:documentation>Efenechtyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG016">
        <xs:annotation>
          <xs:documentation>Gwyddelwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG017">
        <xs:annotation>
          <xs:documentation>Henllan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG018">
        <xs:annotation>
          <xs:documentation>Llanarmon-yn-Ial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG019">
        <xs:annotation>
          <xs:documentation>Llanbedr Dyffryn Clwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG020">
        <xs:annotation>
          <xs:documentation>Llandegla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG021">
        <xs:annotation>
          <xs:documentation>Llandrillo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG022">
        <xs:annotation>
          <xs:documentation>Llandyrnog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG023">
        <xs:annotation>
          <xs:documentation>Llanelidan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG024">
        <xs:annotation>
          <xs:documentation>Llanfair Dyffryn Clwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG025">
        <xs:annotation>
          <xs:documentation>Llanferres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG026">
        <xs:annotation>
          <xs:documentation>Llangollen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG028">
        <xs:annotation>
          <xs:documentation>Llangynhafal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG029">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-yng-Nghinmeirch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG030">
        <xs:annotation>
          <xs:documentation>Llantysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG031">
        <xs:annotation>
          <xs:documentation>Llanynys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG032">
        <xs:annotation>
          <xs:documentation>Nantglyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG033">
        <xs:annotation>
          <xs:documentation>Prestatyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG034">
        <xs:annotation>
          <xs:documentation>Rhuddlan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG035">
        <xs:annotation>
          <xs:documentation>Rhyl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG036">
        <xs:annotation>
          <xs:documentation>Ruthin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG037">
        <xs:annotation>
          <xs:documentation>St. Asaph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG038">
        <xs:annotation>
          <xs:documentation>Trefnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG039">
        <xs:annotation>
          <xs:documentation>Tremeirchion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NG040">
        <xs:annotation>
          <xs:documentation>Waen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ001">
        <xs:annotation>
          <xs:documentation>Bagillt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ002">
        <xs:annotation>
          <xs:documentation>Broughton and Bretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ003">
        <xs:annotation>
          <xs:documentation>Brynford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ004">
        <xs:annotation>
          <xs:documentation>Buckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ005">
        <xs:annotation>
          <xs:documentation>Caerwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ006">
        <xs:annotation>
          <xs:documentation>Cilcain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ007">
        <xs:annotation>
          <xs:documentation>Connah's Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ008">
        <xs:annotation>
          <xs:documentation>Flint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ009">
        <xs:annotation>
          <xs:documentation>Gwernaffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ010">
        <xs:annotation>
          <xs:documentation>Gwernymynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ011">
        <xs:annotation>
          <xs:documentation>Halkyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ012">
        <xs:annotation>
          <xs:documentation>Hawarden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ013">
        <xs:annotation>
          <xs:documentation>Higher Kinnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ014">
        <xs:annotation>
          <xs:documentation>Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ015">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ016">
        <xs:annotation>
          <xs:documentation>Leeswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ017">
        <xs:annotation>
          <xs:documentation>Llanasa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ018">
        <xs:annotation>
          <xs:documentation>Llanfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ019">
        <xs:annotation>
          <xs:documentation>Mold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ020">
        <xs:annotation>
          <xs:documentation>Mostyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ021">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ022">
        <xs:annotation>
          <xs:documentation>Nannerch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ023">
        <xs:annotation>
          <xs:documentation>Nercwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ024">
        <xs:annotation>
          <xs:documentation>Northop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ025">
        <xs:annotation>
          <xs:documentation>Northop Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ026">
        <xs:annotation>
          <xs:documentation>Penyffordd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ027">
        <xs:annotation>
          <xs:documentation>Queensferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ028">
        <xs:annotation>
          <xs:documentation>Saltney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ029">
        <xs:annotation>
          <xs:documentation>Sealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ030">
        <xs:annotation>
          <xs:documentation>Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ031">
        <xs:annotation>
          <xs:documentation>Trelawnyd and Gwaenysgor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ032">
        <xs:annotation>
          <xs:documentation>Treuddyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ033">
        <xs:annotation>
          <xs:documentation>Whitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NJ034">
        <xs:annotation>
          <xs:documentation>Ysceifiog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL001">
        <xs:annotation>
          <xs:documentation>Abenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL002">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL003">
        <xs:annotation>
          <xs:documentation>Bangor Is-y-coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL004">
        <xs:annotation>
          <xs:documentation>Bronington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL005">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL006">
        <xs:annotation>
          <xs:documentation>Brymbo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL007">
        <xs:annotation>
          <xs:documentation>Caia Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL008">
        <xs:annotation>
          <xs:documentation>Cefn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL009">
        <xs:annotation>
          <xs:documentation>Ceiriog Ucha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL010">
        <xs:annotation>
          <xs:documentation>Chirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL011">
        <xs:annotation>
          <xs:documentation>Coedpoeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL012">
        <xs:annotation>
          <xs:documentation>Erbistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL013">
        <xs:annotation>
          <xs:documentation>Esclusham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL014">
        <xs:annotation>
          <xs:documentation>Glyntraian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL015">
        <xs:annotation>
          <xs:documentation>Gresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL016">
        <xs:annotation>
          <xs:documentation>Gwersyllt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL017">
        <xs:annotation>
          <xs:documentation>Hanmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL018">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL019">
        <xs:annotation>
          <xs:documentation>Isycoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL020">
        <xs:annotation>
          <xs:documentation>Llansantffraid Glyn Ceiriog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL021">
        <xs:annotation>
          <xs:documentation>Llay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL022">
        <xs:annotation>
          <xs:documentation>Maelor South</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL023">
        <xs:annotation>
          <xs:documentation>Marchwiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL024">
        <xs:annotation>
          <xs:documentation>Minera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL025">
        <xs:annotation>
          <xs:documentation>Offa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL026">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL027">
        <xs:annotation>
          <xs:documentation>Penycae</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL028">
        <xs:annotation>
          <xs:documentation>Rhosddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL029">
        <xs:annotation>
          <xs:documentation>Rhosllanerchrugog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL030">
        <xs:annotation>
          <xs:documentation>Rossett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL031">
        <xs:annotation>
          <xs:documentation>Ruabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL032">
        <xs:annotation>
          <xs:documentation>Sesswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL033">
        <xs:annotation>
          <xs:documentation>Willington Worthenbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NL034">
        <xs:annotation>
          <xs:documentation>Llangollen Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN001">
        <xs:annotation>
          <xs:documentation>Abbey Cwmhir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN002">
        <xs:annotation>
          <xs:documentation>Aberedw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN003">
        <xs:annotation>
          <xs:documentation>Aberhafesp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN004">
        <xs:annotation>
          <xs:documentation>Banwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN005">
        <xs:annotation>
          <xs:documentation>Bausley with Criggion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN006">
        <xs:annotation>
          <xs:documentation>Beguildy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN007">
        <xs:annotation>
          <xs:documentation>Berriew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN008">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN009">
        <xs:annotation>
          <xs:documentation>Brecon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN010">
        <xs:annotation>
          <xs:documentation>Bronllys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN011">
        <xs:annotation>
          <xs:documentation>Builth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN012">
        <xs:annotation>
          <xs:documentation>Cadfarch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN013">
        <xs:annotation>
          <xs:documentation>Caersws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN014">
        <xs:annotation>
          <xs:documentation>Carno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN015">
        <xs:annotation>
          <xs:documentation>Carreghofa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN016">
        <xs:annotation>
          <xs:documentation>Castle Caereinion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN017">
        <xs:annotation>
          <xs:documentation>Churchstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN018">
        <xs:annotation>
          <xs:documentation>Cilmery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN019">
        <xs:annotation>
          <xs:documentation>Clyro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN020">
        <xs:annotation>
          <xs:documentation>Cray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN021">
        <xs:annotation>
          <xs:documentation>Crickhowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN022">
        <xs:annotation>
          <xs:documentation>Disserth and Trecoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN023">
        <xs:annotation>
          <xs:documentation>Duhonw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN024">
        <xs:annotation>
          <xs:documentation>Dwyriw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN025">
        <xs:annotation>
          <xs:documentation>Erwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN026">
        <xs:annotation>
          <xs:documentation>Felin-fach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN027">
        <xs:annotation>
          <xs:documentation>Forden with Leighton and Trelystan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN028">
        <xs:annotation>
          <xs:documentation>Gladestry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN029">
        <xs:annotation>
          <xs:documentation>Glantwymyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN030">
        <xs:annotation>
          <xs:documentation>Glasbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN031">
        <xs:annotation>
          <xs:documentation>Glascwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN032">
        <xs:annotation>
          <xs:documentation>Glyn Tarell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN033">
        <xs:annotation>
          <xs:documentation>Guilsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN034">
        <xs:annotation>
          <xs:documentation>Gwernyfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN035">
        <xs:annotation>
          <xs:documentation>Hay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN036">
        <xs:annotation>
          <xs:documentation>Honddu Isaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN037">
        <xs:annotation>
          <xs:documentation>Kerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN038">
        <xs:annotation>
          <xs:documentation>Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN039">
        <xs:annotation>
          <xs:documentation>Llanafanfawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN040">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN041">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN042">
        <xs:annotation>
          <xs:documentation>Llanbister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN043">
        <xs:annotation>
          <xs:documentation>Llanbrynmair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN044">
        <xs:annotation>
          <xs:documentation>Llanddew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN045">
        <xs:annotation>
          <xs:documentation>Llanddewi Ystradenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN046">
        <xs:annotation>
          <xs:documentation>Llandinam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN047">
        <xs:annotation>
          <xs:documentation>Llandrindod Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN048">
        <xs:annotation>
          <xs:documentation>Llandrinio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN049">
        <xs:annotation>
          <xs:documentation>Llandysilio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN050">
        <xs:annotation>
          <xs:documentation>Llandyssil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN051">
        <xs:annotation>
          <xs:documentation>Llanelwedd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN052">
        <xs:annotation>
          <xs:documentation>Llanerfyl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN053">
        <xs:annotation>
          <xs:documentation>Llanfair Caereinion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN054">
        <xs:annotation>
          <xs:documentation>Llanfechain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN055">
        <xs:annotation>
          <xs:documentation>Llanfihangel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN056">
        <xs:annotation>
          <xs:documentation>Llanfihangel Cwmdu with Bwlch and Cathedine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN057">
        <xs:annotation>
          <xs:documentation>Llanfihangel Rhydithon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN058">
        <xs:annotation>
          <xs:documentation>Llanfrynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN059">
        <xs:annotation>
          <xs:documentation>Llanfyllin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN060">
        <xs:annotation>
          <xs:documentation>Llangamarch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN061">
        <xs:annotation>
          <xs:documentation>Llangattock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN062">
        <xs:annotation>
          <xs:documentation>Llangedwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN063">
        <xs:annotation>
          <xs:documentation>Llangors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN064">
        <xs:annotation>
          <xs:documentation>Llangunllo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN065">
        <xs:annotation>
          <xs:documentation>Llangurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN066">
        <xs:annotation>
          <xs:documentation>Llangynidr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN067">
        <xs:annotation>
          <xs:documentation>Llangyniew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN068">
        <xs:annotation>
          <xs:documentation>Llangynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN069">
        <xs:annotation>
          <xs:documentation>Llanidloes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN070">
        <xs:annotation>
          <xs:documentation>Llanidloes Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN071">
        <xs:annotation>
          <xs:documentation>Llanigon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN072">
        <xs:annotation>
          <xs:documentation>Llanrhaeadr-ym-Mochnant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN073">
        <xs:annotation>
          <xs:documentation>Llansantffraid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN074">
        <xs:annotation>
          <xs:documentation>Llansilin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN075">
        <xs:annotation>
          <xs:documentation>Llanwddyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN076">
        <xs:annotation>
          <xs:documentation>Llanwrthwl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN077">
        <xs:annotation>
          <xs:documentation>Llanwrtyd Wells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN078">
        <xs:annotation>
          <xs:documentation>Llanyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN079">
        <xs:annotation>
          <xs:documentation>Llywel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN080">
        <xs:annotation>
          <xs:documentation>Machynlleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN081">
        <xs:annotation>
          <xs:documentation>Maescar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN082">
        <xs:annotation>
          <xs:documentation>Manafon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN083">
        <xs:annotation>
          <xs:documentation>Meifod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN084">
        <xs:annotation>
          <xs:documentation>Merthyr Cynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN085">
        <xs:annotation>
          <xs:documentation>Mochdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN086">
        <xs:annotation>
          <xs:documentation>Montgomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN087">
        <xs:annotation>
          <xs:documentation>Nantmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN088">
        <xs:annotation>
          <xs:documentation>New Radnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN089">
        <xs:annotation>
          <xs:documentation>Newtown and Llanllwchaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN090">
        <xs:annotation>
          <xs:documentation>Old Radnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN091">
        <xs:annotation>
          <xs:documentation>Painscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN092">
        <xs:annotation>
          <xs:documentation>Penybont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN093">
        <xs:annotation>
          <xs:documentation>Pen-y-Bont-Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN094">
        <xs:annotation>
          <xs:documentation>Presteigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN095">
        <xs:annotation>
          <xs:documentation>Rhayader</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN096">
        <xs:annotation>
          <xs:documentation>St. Harmon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN097">
        <xs:annotation>
          <xs:documentation>Talgarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN098">
        <xs:annotation>
          <xs:documentation>Talybont-on-Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN099">
        <xs:annotation>
          <xs:documentation>Tawe-Uchaf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN100">
        <xs:annotation>
          <xs:documentation>The Vale of Grwyney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN101">
        <xs:annotation>
          <xs:documentation>Trallong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN102">
        <xs:annotation>
          <xs:documentation>Trefeglwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN103">
        <xs:annotation>
          <xs:documentation>Treflys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN104">
        <xs:annotation>
          <xs:documentation>Tregynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN105">
        <xs:annotation>
          <xs:documentation>Trewern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN106">
        <xs:annotation>
          <xs:documentation>Welshpool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN107">
        <xs:annotation>
          <xs:documentation>Whitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN108">
        <xs:annotation>
          <xs:documentation>Yscir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN109">
        <xs:annotation>
          <xs:documentation>Ystradfellte</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NN110">
        <xs:annotation>
          <xs:documentation>Ystradgynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ001">
        <xs:annotation>
          <xs:documentation>Aberaeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ002">
        <xs:annotation>
          <xs:documentation>Aberporth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ003">
        <xs:annotation>
          <xs:documentation>Aberystwyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ004">
        <xs:annotation>
          <xs:documentation>Beulah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ005">
        <xs:annotation>
          <xs:documentation>Blaenrheidol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ006">
        <xs:annotation>
          <xs:documentation>Borth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ007">
        <xs:annotation>
          <xs:documentation>Cardigan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ008">
        <xs:annotation>
          <xs:documentation>Ceulanamaesmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ009">
        <xs:annotation>
          <xs:documentation>Ciliau Aeron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ010">
        <xs:annotation>
          <xs:documentation>Dyffryn Arth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ011">
        <xs:annotation>
          <xs:documentation>Faenor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ012">
        <xs:annotation>
          <xs:documentation>Geneu'r Glyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ013">
        <xs:annotation>
          <xs:documentation>Henfynyw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ014">
        <xs:annotation>
          <xs:documentation>Lampeter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ015">
        <xs:annotation>
          <xs:documentation>Llanarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ016">
        <xs:annotation>
          <xs:documentation>Llanbadarn Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ017">
        <xs:annotation>
          <xs:documentation>Llanddewi Brefi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ018">
        <xs:annotation>
          <xs:documentation>Llandyfriog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ019">
        <xs:annotation>
          <xs:documentation>Llandysiliogogo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ020">
        <xs:annotation>
          <xs:documentation>Llandysul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ021">
        <xs:annotation>
          <xs:documentation>Llanfair Clydogau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ022">
        <xs:annotation>
          <xs:documentation>Llanfarian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ023">
        <xs:annotation>
          <xs:documentation>Llanfihangel Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ024">
        <xs:annotation>
          <xs:documentation>Llangeitho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ025">
        <xs:annotation>
          <xs:documentation>Llangoedmor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ026">
        <xs:annotation>
          <xs:documentation>Llangrannog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ027">
        <xs:annotation>
          <xs:documentation>Llangwyryfon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ028">
        <xs:annotation>
          <xs:documentation>Llangybi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ029">
        <xs:annotation>
          <xs:documentation>Llangynfelyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ030">
        <xs:annotation>
          <xs:documentation>Llanilar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ031">
        <xs:annotation>
          <xs:documentation>Llanllwchaiarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ032">
        <xs:annotation>
          <xs:documentation>Llanrhystyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ033">
        <xs:annotation>
          <xs:documentation>Llansantffraed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ034">
        <xs:annotation>
          <xs:documentation>Llanwenog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ035">
        <xs:annotation>
          <xs:documentation>Llanwnnen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ036">
        <xs:annotation>
          <xs:documentation>Lledrod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ037">
        <xs:annotation>
          <xs:documentation>Melindwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ038">
        <xs:annotation>
          <xs:documentation>Nantcwnlle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ039">
        <xs:annotation>
          <xs:documentation>New Quay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ040">
        <xs:annotation>
          <xs:documentation>Penbryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ041">
        <xs:annotation>
          <xs:documentation>Pontarfynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ042">
        <xs:annotation>
          <xs:documentation>Tirymynach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ043">
        <xs:annotation>
          <xs:documentation>Trawsgoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ044">
        <xs:annotation>
          <xs:documentation>Trefeurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ045">
        <xs:annotation>
          <xs:documentation>Tregaron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ046">
        <xs:annotation>
          <xs:documentation>Troedyraur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ047">
        <xs:annotation>
          <xs:documentation>Y Ferwig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ048">
        <xs:annotation>
          <xs:documentation>Ysbyty Ystwyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ049">
        <xs:annotation>
          <xs:documentation>Ysgubor-y-coed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ050">
        <xs:annotation>
          <xs:documentation>Ystrad Fflur</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NQ051">
        <xs:annotation>
          <xs:documentation>Ystrad Meurig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS001">
        <xs:annotation>
          <xs:documentation>Ambleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS002">
        <xs:annotation>
          <xs:documentation>Amroth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS003">
        <xs:annotation>
          <xs:documentation>Angle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS004">
        <xs:annotation>
          <xs:documentation>Boncath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS005">
        <xs:annotation>
          <xs:documentation>Brawdy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS006">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS007">
        <xs:annotation>
          <xs:documentation>Caldey Island and St. Margaret's Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS008">
        <xs:annotation>
          <xs:documentation>Camrose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS009">
        <xs:annotation>
          <xs:documentation>Carew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS010">
        <xs:annotation>
          <xs:documentation>Castlemartin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS011">
        <xs:annotation>
          <xs:documentation>Cilgerran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS012">
        <xs:annotation>
          <xs:documentation>Clydau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS013">
        <xs:annotation>
          <xs:documentation>Cosheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS014">
        <xs:annotation>
          <xs:documentation>Crymych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS015">
        <xs:annotation>
          <xs:documentation>Cwm Gwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS016">
        <xs:annotation>
          <xs:documentation>Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS017">
        <xs:annotation>
          <xs:documentation>Dinas Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS018">
        <xs:annotation>
          <xs:documentation>East Williamston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS019">
        <xs:annotation>
          <xs:documentation>Eglwyswrw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS020">
        <xs:annotation>
          <xs:documentation>Fishguard and Goodwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS021">
        <xs:annotation>
          <xs:documentation>Freystrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS022">
        <xs:annotation>
          <xs:documentation>Haverfordwest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS023">
        <xs:annotation>
          <xs:documentation>Hayscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS024">
        <xs:annotation>
          <xs:documentation>Herbrandston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS025">
        <xs:annotation>
          <xs:documentation>Hundleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS026">
        <xs:annotation>
          <xs:documentation>Jeffreyston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS027">
        <xs:annotation>
          <xs:documentation>Johnston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS028">
        <xs:annotation>
          <xs:documentation>Kilgetty/Begelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS029">
        <xs:annotation>
          <xs:documentation>Lampeter Velfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS030">
        <xs:annotation>
          <xs:documentation>Lamphey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS031">
        <xs:annotation>
          <xs:documentation>Letterston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS032">
        <xs:annotation>
          <xs:documentation>Llanddewi Velfrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS033">
        <xs:annotation>
          <xs:documentation>Llandissilio West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS035">
        <xs:annotation>
          <xs:documentation>Llanrhian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS036">
        <xs:annotation>
          <xs:documentation>Llanstadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS037">
        <xs:annotation>
          <xs:documentation>Llawhaden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS038">
        <xs:annotation>
          <xs:documentation>Maenclochog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS039">
        <xs:annotation>
          <xs:documentation>Manorbier</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS040">
        <xs:annotation>
          <xs:documentation>Manordeifi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS041">
        <xs:annotation>
          <xs:documentation>Marloes and St. Brides</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS042">
        <xs:annotation>
          <xs:documentation>Martletwy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS043">
        <xs:annotation>
          <xs:documentation>Mathry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS044">
        <xs:annotation>
          <xs:documentation>Merlin's Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS045">
        <xs:annotation>
          <xs:documentation>Milford Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS046">
        <xs:annotation>
          <xs:documentation>Mynachlog-Ddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS047">
        <xs:annotation>
          <xs:documentation>Narberth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS048">
        <xs:annotation>
          <xs:documentation>Nevern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS049">
        <xs:annotation>
          <xs:documentation>New Moat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS050">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS051">
        <xs:annotation>
          <xs:documentation>Neyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS052">
        <xs:annotation>
          <xs:documentation>Nolton and Roch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS053">
        <xs:annotation>
          <xs:documentation>Pembroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS054">
        <xs:annotation>
          <xs:documentation>Pembroke Dock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS055">
        <xs:annotation>
          <xs:documentation>Penally</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS056">
        <xs:annotation>
          <xs:documentation>Pencaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS057">
        <xs:annotation>
          <xs:documentation>Puncheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS058">
        <xs:annotation>
          <xs:documentation>Rosemarket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS059">
        <xs:annotation>
          <xs:documentation>Rudbaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS060">
        <xs:annotation>
          <xs:documentation>St. David's and the Cathedral Close</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS061">
        <xs:annotation>
          <xs:documentation>St. Dogmaels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS062">
        <xs:annotation>
          <xs:documentation>St. Florence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS063">
        <xs:annotation>
          <xs:documentation>St. Ishmael's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS064">
        <xs:annotation>
          <xs:documentation>St. Mary Out Liberty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS065">
        <xs:annotation>
          <xs:documentation>Saundersfoot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS066">
        <xs:annotation>
          <xs:documentation>Scleddau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS067">
        <xs:annotation>
          <xs:documentation>Slebech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS068">
        <xs:annotation>
          <xs:documentation>Solva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS069">
        <xs:annotation>
          <xs:documentation>Spittal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS070">
        <xs:annotation>
          <xs:documentation>Stackpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS071">
        <xs:annotation>
          <xs:documentation>Templeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS072">
        <xs:annotation>
          <xs:documentation>Tenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS073">
        <xs:annotation>
          <xs:documentation>The Havens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS074">
        <xs:annotation>
          <xs:documentation>Tiers Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS075">
        <xs:annotation>
          <xs:documentation>Trecwn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS076">
        <xs:annotation>
          <xs:documentation>Uzmaston and Boulston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS077">
        <xs:annotation>
          <xs:documentation>Walwyn's Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS078">
        <xs:annotation>
          <xs:documentation>Wiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS079">
        <xs:annotation>
          <xs:documentation>Wolfscastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS081">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS082">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NS083">
        <xs:annotation>
          <xs:documentation>Clynderwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU001">
        <xs:annotation>
          <xs:documentation>Abergwili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU002">
        <xs:annotation>
          <xs:documentation>Abernant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU003">
        <xs:annotation>
          <xs:documentation>Ammanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU004">
        <xs:annotation>
          <xs:documentation>Betws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU005">
        <xs:annotation>
          <xs:documentation>Bronwydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU006">
        <xs:annotation>
          <xs:documentation>Carmarthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU007">
        <xs:annotation>
          <xs:documentation>Pembrey and Burry Port Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU008">
        <xs:annotation>
          <xs:documentation>Cenarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU009">
        <xs:annotation>
          <xs:documentation>Cilycwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU010">
        <xs:annotation>
          <xs:documentation>Cilymaenllwyd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU012">
        <xs:annotation>
          <xs:documentation>Cwmamman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU013">
        <xs:annotation>
          <xs:documentation>Cynwyl Elfed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU014">
        <xs:annotation>
          <xs:documentation>Cynwyl Gaeo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU015">
        <xs:annotation>
          <xs:documentation>Eglwyscummin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU016">
        <xs:annotation>
          <xs:documentation>Cyngor Bro Dyffryn Cennen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU017">
        <xs:annotation>
          <xs:documentation>Gorslas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU018">
        <xs:annotation>
          <xs:documentation>Henllanfallteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU019">
        <xs:annotation>
          <xs:documentation>Kidwelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU020">
        <xs:annotation>
          <xs:documentation>Laugharne Township</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU021">
        <xs:annotation>
          <xs:documentation>Llanarthney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU022">
        <xs:annotation>
          <xs:documentation>Llanboidy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU023">
        <xs:annotation>
          <xs:documentation>Llanddarog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU024">
        <xs:annotation>
          <xs:documentation>Llanddeusant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU025">
        <xs:annotation>
          <xs:documentation>Llanddowror</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU026">
        <xs:annotation>
          <xs:documentation>Llandeilo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU027">
        <xs:annotation>
          <xs:documentation>Llandovery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU028">
        <xs:annotation>
          <xs:documentation>Llandybie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU029">
        <xs:annotation>
          <xs:documentation>Llandyfaelog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU030">
        <xs:annotation>
          <xs:documentation>Llanedi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU031">
        <xs:annotation>
          <xs:documentation>Llanegwad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU032">
        <xs:annotation>
          <xs:documentation>Llanelli</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU033">
        <xs:annotation>
          <xs:documentation>Llanelli Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU034">
        <xs:annotation>
          <xs:documentation>Llanfair-ar-y-bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU035">
        <xs:annotation>
          <xs:documentation>Llanfihangel Aberbythych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU036">
        <xs:annotation>
          <xs:documentation>Llanfihangel-ar-Arth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU037">
        <xs:annotation>
          <xs:documentation>Llanfihangel Rhos-y-Corn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU038">
        <xs:annotation>
          <xs:documentation>Llanfynydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU039">
        <xs:annotation>
          <xs:documentation>Llangadog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU040">
        <xs:annotation>
          <xs:documentation>Llangain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU041">
        <xs:annotation>
          <xs:documentation>Llangathen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU042">
        <xs:annotation>
          <xs:documentation>Llangeler</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU043">
        <xs:annotation>
          <xs:documentation>Llangennech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU044">
        <xs:annotation>
          <xs:documentation>Llangunnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU045">
        <xs:annotation>
          <xs:documentation>Llangyndeyrn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU046">
        <xs:annotation>
          <xs:documentation>Llangynin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU047">
        <xs:annotation>
          <xs:documentation>Llangynog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU048">
        <xs:annotation>
          <xs:documentation>Llanllawddog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU049">
        <xs:annotation>
          <xs:documentation>Llanllwni</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU050">
        <xs:annotation>
          <xs:documentation>Llannon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU051">
        <xs:annotation>
          <xs:documentation>Llanpumsaint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU052">
        <xs:annotation>
          <xs:documentation>Llansadwrn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU053">
        <xs:annotation>
          <xs:documentation>Llansawel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU054">
        <xs:annotation>
          <xs:documentation>Llansteffan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU055">
        <xs:annotation>
          <xs:documentation>Llanwinio</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU056">
        <xs:annotation>
          <xs:documentation>Llanwrda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU057">
        <xs:annotation>
          <xs:documentation>Llanybydder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU058">
        <xs:annotation>
          <xs:documentation>Llanycrwys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU059">
        <xs:annotation>
          <xs:documentation>Manordeilo and Salem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU060">
        <xs:annotation>
          <xs:documentation>Meidrim</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU061">
        <xs:annotation>
          <xs:documentation>Myddfai</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU062">
        <xs:annotation>
          <xs:documentation>Newcastle Emlyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU063">
        <xs:annotation>
          <xs:documentation>Newchurch and Merthyr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU064">
        <xs:annotation>
          <xs:documentation>Pencarreg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU065">
        <xs:annotation>
          <xs:documentation>Pendine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU066">
        <xs:annotation>
          <xs:documentation>Pontyberem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU067">
        <xs:annotation>
          <xs:documentation>Quarter Bach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU068">
        <xs:annotation>
          <xs:documentation>St. Clears</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU069">
        <xs:annotation>
          <xs:documentation>St. Ishmael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU070">
        <xs:annotation>
          <xs:documentation>Talley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU071">
        <xs:annotation>
          <xs:documentation>Trelech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU072">
        <xs:annotation>
          <xs:documentation>Trimsaran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NU073">
        <xs:annotation>
          <xs:documentation>Whitland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX001">
        <xs:annotation>
          <xs:documentation>Birchgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX002">
        <xs:annotation>
          <xs:documentation>Bishopston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX003">
        <xs:annotation>
          <xs:documentation>Bonymaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX004">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX005">
        <xs:annotation>
          <xs:documentation>Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX006">
        <xs:annotation>
          <xs:documentation>Cockett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX007">
        <xs:annotation>
          <xs:documentation>Cwmbwrla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX008">
        <xs:annotation>
          <xs:documentation>Dunvant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX009">
        <xs:annotation>
          <xs:documentation>Gorseinon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX010">
        <xs:annotation>
          <xs:documentation>Gowerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX011">
        <xs:annotation>
          <xs:documentation>Grovesend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX012">
        <xs:annotation>
          <xs:documentation>Ilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX013">
        <xs:annotation>
          <xs:documentation>Killay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX014">
        <xs:annotation>
          <xs:documentation>Landore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX015">
        <xs:annotation>
          <xs:documentation>Llangennith, Llanmadoc and Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX016">
        <xs:annotation>
          <xs:documentation>Llangyfelach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX017">
        <xs:annotation>
          <xs:documentation>Llanrhidian Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX018">
        <xs:annotation>
          <xs:documentation>Llanrhidian Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX019">
        <xs:annotation>
          <xs:documentation>Llansamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX020">
        <xs:annotation>
          <xs:documentation>Llwchwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX021">
        <xs:annotation>
          <xs:documentation>Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX022">
        <xs:annotation>
          <xs:documentation>Morriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX023">
        <xs:annotation>
          <xs:documentation>Mumbles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX024">
        <xs:annotation>
          <xs:documentation>Mynyddbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX025">
        <xs:annotation>
          <xs:documentation>Penderry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX026">
        <xs:annotation>
          <xs:documentation>Penllergaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX027">
        <xs:annotation>
          <xs:documentation>Pennard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX028">
        <xs:annotation>
          <xs:documentation>Penrice</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX029">
        <xs:annotation>
          <xs:documentation>Pont-Lliw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX030">
        <xs:annotation>
          <xs:documentation>Pontardulais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX031">
        <xs:annotation>
          <xs:documentation>Port Eynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX032">
        <xs:annotation>
          <xs:documentation>Reynoldston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX033">
        <xs:annotation>
          <xs:documentation>Rhossili</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX034">
        <xs:annotation>
          <xs:documentation>St. Thomas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX035">
        <xs:annotation>
          <xs:documentation>Sketty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX036">
        <xs:annotation>
          <xs:documentation>Townhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX037">
        <xs:annotation>
          <xs:documentation>Uplands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NX038">
        <xs:annotation>
          <xs:documentation>Upper Killay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ001">
        <xs:annotation>
          <xs:documentation>Aberavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ002">
        <xs:annotation>
          <xs:documentation>Baglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ003">
        <xs:annotation>
          <xs:documentation>Baglan Bay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ004">
        <xs:annotation>
          <xs:documentation>Blaengwrach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ005">
        <xs:annotation>
          <xs:documentation>Blaenhonddan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ006">
        <xs:annotation>
          <xs:documentation>Briton Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ007">
        <xs:annotation>
          <xs:documentation>Bryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ008">
        <xs:annotation>
          <xs:documentation>Cilybebyll</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ009">
        <xs:annotation>
          <xs:documentation>Clyne and Melincourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ010">
        <xs:annotation>
          <xs:documentation>Coedffranc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ011">
        <xs:annotation>
          <xs:documentation>Crynant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ012">
        <xs:annotation>
          <xs:documentation>Cwmavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ013">
        <xs:annotation>
          <xs:documentation>Cwmllynfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ014">
        <xs:annotation>
          <xs:documentation>Dyffryn Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ015">
        <xs:annotation>
          <xs:documentation>Glyncorrwg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ016">
        <xs:annotation>
          <xs:documentation>Glynneath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ017">
        <xs:annotation>
          <xs:documentation>Gwaun-Cae-Gurwen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ018">
        <xs:annotation>
          <xs:documentation>Margam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ019">
        <xs:annotation>
          <xs:documentation>Margam Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ020">
        <xs:annotation>
          <xs:documentation>Neath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ021">
        <xs:annotation>
          <xs:documentation>Onllwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ022">
        <xs:annotation>
          <xs:documentation>Pelenna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ023">
        <xs:annotation>
          <xs:documentation>Pontardawe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ024">
        <xs:annotation>
          <xs:documentation>Port Talbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ025">
        <xs:annotation>
          <xs:documentation>Resolven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ026">
        <xs:annotation>
          <xs:documentation>Sandfields East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ027">
        <xs:annotation>
          <xs:documentation>Sandfields West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ028">
        <xs:annotation>
          <xs:documentation>Seven Sisters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ029">
        <xs:annotation>
          <xs:documentation>Taibach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ030">
        <xs:annotation>
          <xs:documentation>Tonna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00NZ031">
        <xs:annotation>
          <xs:documentation>Ystalyfera</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB001">
        <xs:annotation>
          <xs:documentation>Brackla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB002">
        <xs:annotation>
          <xs:documentation>Bridgend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB003">
        <xs:annotation>
          <xs:documentation>Cefn Cribwr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB004">
        <xs:annotation>
          <xs:documentation>Coity Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB005">
        <xs:annotation>
          <xs:documentation>Coychurch Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB006">
        <xs:annotation>
          <xs:documentation>Coychurch Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB008">
        <xs:annotation>
          <xs:documentation>Garw Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB009">
        <xs:annotation>
          <xs:documentation>Laleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB010">
        <xs:annotation>
          <xs:documentation>Llangynwyd Lower</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB011">
        <xs:annotation>
          <xs:documentation>Llangynwyd Middle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB012">
        <xs:annotation>
          <xs:documentation>Maesteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB013">
        <xs:annotation>
          <xs:documentation>Merthyr Mawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB014">
        <xs:annotation>
          <xs:documentation>Newcastle Higher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB015">
        <xs:annotation>
          <xs:documentation>Ogmore Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB016">
        <xs:annotation>
          <xs:documentation>Pencoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB017">
        <xs:annotation>
          <xs:documentation>Porthcawl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB018">
        <xs:annotation>
          <xs:documentation>St. Bride's Minor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB019">
        <xs:annotation>
          <xs:documentation>Ynysawdre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB020">
        <xs:annotation>
          <xs:documentation>Cornelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PB021">
        <xs:annotation>
          <xs:documentation>Pyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD001">
        <xs:annotation>
          <xs:documentation>Barry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD002">
        <xs:annotation>
          <xs:documentation>Colwinston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD003">
        <xs:annotation>
          <xs:documentation>Cowbridge with Llanblethian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD004">
        <xs:annotation>
          <xs:documentation>Dinas Powys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD005">
        <xs:annotation>
          <xs:documentation>Ewenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD006">
        <xs:annotation>
          <xs:documentation>Llancarfan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD007">
        <xs:annotation>
          <xs:documentation>Llandough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD008">
        <xs:annotation>
          <xs:documentation>Llandow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD009">
        <xs:annotation>
          <xs:documentation>Llanfair</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD010">
        <xs:annotation>
          <xs:documentation>Llangan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD011">
        <xs:annotation>
          <xs:documentation>Llan-maes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD012">
        <xs:annotation>
          <xs:documentation>Llantwit Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD013">
        <xs:annotation>
          <xs:documentation>Michaelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD014">
        <xs:annotation>
          <xs:documentation>Penarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD015">
        <xs:annotation>
          <xs:documentation>Pendoylan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD016">
        <xs:annotation>
          <xs:documentation>Penllyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD017">
        <xs:annotation>
          <xs:documentation>Peterston-super-Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD018">
        <xs:annotation>
          <xs:documentation>Rhoose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD019">
        <xs:annotation>
          <xs:documentation>St. Athan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD020">
        <xs:annotation>
          <xs:documentation>St. Bride's Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD021">
        <xs:annotation>
          <xs:documentation>St. Donats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD022">
        <xs:annotation>
          <xs:documentation>St. Georges-super-Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD023">
        <xs:annotation>
          <xs:documentation>St. Nicholas and Bonvilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD024">
        <xs:annotation>
          <xs:documentation>Sully</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD025">
        <xs:annotation>
          <xs:documentation>Welsh St. Donats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD026">
        <xs:annotation>
          <xs:documentation>Wenvoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PD027">
        <xs:annotation>
          <xs:documentation>Wick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF001">
        <xs:annotation>
          <xs:documentation>Aberaman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF002">
        <xs:annotation>
          <xs:documentation>Abercynon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF003">
        <xs:annotation>
          <xs:documentation>Aberdare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF004">
        <xs:annotation>
          <xs:documentation>Cwmbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF005">
        <xs:annotation>
          <xs:documentation>Cwm Clydach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF006">
        <xs:annotation>
          <xs:documentation>Cymmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF007">
        <xs:annotation>
          <xs:documentation>Ferndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF008">
        <xs:annotation>
          <xs:documentation>Gilfach Goch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF009">
        <xs:annotation>
          <xs:documentation>Hirwaun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF010">
        <xs:annotation>
          <xs:documentation>Llanharan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF011">
        <xs:annotation>
          <xs:documentation>Llanharry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF012">
        <xs:annotation>
          <xs:documentation>Llantrisant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF013">
        <xs:annotation>
          <xs:documentation>Llantwit Fardre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF014">
        <xs:annotation>
          <xs:documentation>Llwydcoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF015">
        <xs:annotation>
          <xs:documentation>Llwyn-y-pia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF016">
        <xs:annotation>
          <xs:documentation>Maerdy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF017">
        <xs:annotation>
          <xs:documentation>Mountain Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF018">
        <xs:annotation>
          <xs:documentation>Penrhiwceiber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF019">
        <xs:annotation>
          <xs:documentation>Pentre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF020">
        <xs:annotation>
          <xs:documentation>Pen-y-graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF021">
        <xs:annotation>
          <xs:documentation>Pen-y-waun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF022">
        <xs:annotation>
          <xs:documentation>Pont-y-clun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF023">
        <xs:annotation>
          <xs:documentation>Pontypridd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF024">
        <xs:annotation>
          <xs:documentation>Porth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF025">
        <xs:annotation>
          <xs:documentation>Rhigos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF026">
        <xs:annotation>
          <xs:documentation>Taffs Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF027">
        <xs:annotation>
          <xs:documentation>Tonypandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF028">
        <xs:annotation>
          <xs:documentation>Tonyrefail</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF029">
        <xs:annotation>
          <xs:documentation>Trehafod</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF030">
        <xs:annotation>
          <xs:documentation>Treherbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF031">
        <xs:annotation>
          <xs:documentation>Trealaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF032">
        <xs:annotation>
          <xs:documentation>Treorchy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF033">
        <xs:annotation>
          <xs:documentation>Tylorstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF034">
        <xs:annotation>
          <xs:documentation>Ynyshir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF035">
        <xs:annotation>
          <xs:documentation>Ynysybwl and Coed-y-cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PF036">
        <xs:annotation>
          <xs:documentation>Ystrad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH001">
        <xs:annotation>
          <xs:documentation>Bedlinog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH002">
        <xs:annotation>
          <xs:documentation>Cyfarthfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH003">
        <xs:annotation>
          <xs:documentation>Dowlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH004">
        <xs:annotation>
          <xs:documentation>Gurnos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH005">
        <xs:annotation>
          <xs:documentation>Merthyr Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH006">
        <xs:annotation>
          <xs:documentation>Pant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH007">
        <xs:annotation>
          <xs:documentation>Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH008">
        <xs:annotation>
          <xs:documentation>Penydarren</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH009">
        <xs:annotation>
          <xs:documentation>Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH010">
        <xs:annotation>
          <xs:documentation>Treharris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH011">
        <xs:annotation>
          <xs:documentation>Troed-y-rhiw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PH012">
        <xs:annotation>
          <xs:documentation>Vaynor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK001">
        <xs:annotation>
          <xs:documentation>Abercarn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK002">
        <xs:annotation>
          <xs:documentation>Aber Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK003">
        <xs:annotation>
          <xs:documentation>Argoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK004">
        <xs:annotation>
          <xs:documentation>Bargoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK005">
        <xs:annotation>
          <xs:documentation>Bedwas, Trethomas and Machen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK006">
        <xs:annotation>
          <xs:documentation>Blackwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK007">
        <xs:annotation>
          <xs:documentation>Caerphilly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK008">
        <xs:annotation>
          <xs:documentation>Cefn Fforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK009">
        <xs:annotation>
          <xs:documentation>Crosskeys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK010">
        <xs:annotation>
          <xs:documentation>Crumlin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK011">
        <xs:annotation>
          <xs:documentation>Darran Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK012">
        <xs:annotation>
          <xs:documentation>Gelligaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK013">
        <xs:annotation>
          <xs:documentation>Llanbradach and Pwllypant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK014">
        <xs:annotation>
          <xs:documentation>Maesycwmmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK015">
        <xs:annotation>
          <xs:documentation>Nelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK016">
        <xs:annotation>
          <xs:documentation>Newbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK017">
        <xs:annotation>
          <xs:documentation>New Tredegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK018">
        <xs:annotation>
          <xs:documentation>Pengam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK019">
        <xs:annotation>
          <xs:documentation>Penmaen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK020">
        <xs:annotation>
          <xs:documentation>Penyrheol, Trecenydd and Energlyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK021">
        <xs:annotation>
          <xs:documentation>Pontllanfraith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK022">
        <xs:annotation>
          <xs:documentation>Rhymney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK023">
        <xs:annotation>
          <xs:documentation>Risca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK024">
        <xs:annotation>
          <xs:documentation>Rudry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK025">
        <xs:annotation>
          <xs:documentation>Van</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PK026">
        <xs:annotation>
          <xs:documentation>Ynysddu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL001">
        <xs:annotation>
          <xs:documentation>Abertillery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL002">
        <xs:annotation>
          <xs:documentation>Beaufort</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL003">
        <xs:annotation>
          <xs:documentation>Brynmawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL004">
        <xs:annotation>
          <xs:documentation>Cwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL005">
        <xs:annotation>
          <xs:documentation>Ebbw Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL006">
        <xs:annotation>
          <xs:documentation>Llanhilleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL007">
        <xs:annotation>
          <xs:documentation>Nantyglo and Blaina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PL008">
        <xs:annotation>
          <xs:documentation>Tredegar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM001">
        <xs:annotation>
          <xs:documentation>Abersychan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM002">
        <xs:annotation>
          <xs:documentation>Blaenavon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM003">
        <xs:annotation>
          <xs:documentation>Croesyceiliog</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM004">
        <xs:annotation>
          <xs:documentation>Cwmbran Central</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM005">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM006">
        <xs:annotation>
          <xs:documentation>Henllys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM007">
        <xs:annotation>
          <xs:documentation>Llantarnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM008">
        <xs:annotation>
          <xs:documentation>Llanyrafon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM009">
        <xs:annotation>
          <xs:documentation>New Inn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM010">
        <xs:annotation>
          <xs:documentation>Panteg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM011">
        <xs:annotation>
          <xs:documentation>Pen Tranch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM012">
        <xs:annotation>
          <xs:documentation>Ponthir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM013">
        <xs:annotation>
          <xs:documentation>Pontnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM014">
        <xs:annotation>
          <xs:documentation>Pontymoile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM015">
        <xs:annotation>
          <xs:documentation>Trevethin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PM016">
        <xs:annotation>
          <xs:documentation>Upper Cwmbran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP001">
        <xs:annotation>
          <xs:documentation>Abergavenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP002">
        <xs:annotation>
          <xs:documentation>Caerwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP003">
        <xs:annotation>
          <xs:documentation>Caldicot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP004">
        <xs:annotation>
          <xs:documentation>Chepstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP005">
        <xs:annotation>
          <xs:documentation>Crucorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP006">
        <xs:annotation>
          <xs:documentation>Devauden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP007">
        <xs:annotation>
          <xs:documentation>Goetre Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP008">
        <xs:annotation>
          <xs:documentation>Grosmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP009">
        <xs:annotation>
          <xs:documentation>Gwehelog Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP010">
        <xs:annotation>
          <xs:documentation>Llanarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP011">
        <xs:annotation>
          <xs:documentation>Llanbadoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP012">
        <xs:annotation>
          <xs:documentation>Llanelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP013">
        <xs:annotation>
          <xs:documentation>Llanfoist Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP014">
        <xs:annotation>
          <xs:documentation>Llangattock-Vibon-Avel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP015">
        <xs:annotation>
          <xs:documentation>Llangwm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP016">
        <xs:annotation>
          <xs:documentation>Llangybi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP017">
        <xs:annotation>
          <xs:documentation>Llanhennock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP018">
        <xs:annotation>
          <xs:documentation>Llanover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP019">
        <xs:annotation>
          <xs:documentation>Llantilio Crossenny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP020">
        <xs:annotation>
          <xs:documentation>Llantilio Pertholey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP021">
        <xs:annotation>
          <xs:documentation>Llantrisant Fawr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP022">
        <xs:annotation>
          <xs:documentation>Magor with Undy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP023">
        <xs:annotation>
          <xs:documentation>Mathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP024">
        <xs:annotation>
          <xs:documentation>Mitchel Troy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP025">
        <xs:annotation>
          <xs:documentation>Monmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP026">
        <xs:annotation>
          <xs:documentation>Portskewett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP027">
        <xs:annotation>
          <xs:documentation>Raglan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP028">
        <xs:annotation>
          <xs:documentation>Rogiet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP029">
        <xs:annotation>
          <xs:documentation>St. Arvans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP030">
        <xs:annotation>
          <xs:documentation>Shirenewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP031">
        <xs:annotation>
          <xs:documentation>Tintern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP032">
        <xs:annotation>
          <xs:documentation>Trellech United</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PP033">
        <xs:annotation>
          <xs:documentation>Usk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR001">
        <xs:annotation>
          <xs:documentation>Allt-yr-yn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR002">
        <xs:annotation>
          <xs:documentation>Alway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR003">
        <xs:annotation>
          <xs:documentation>Beechwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR004">
        <xs:annotation>
          <xs:documentation>Bettws</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR005">
        <xs:annotation>
          <xs:documentation>Bishton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR006">
        <xs:annotation>
          <xs:documentation>Caerleon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR007">
        <xs:annotation>
          <xs:documentation>Coedkernew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR008">
        <xs:annotation>
          <xs:documentation>Gaer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR009">
        <xs:annotation>
          <xs:documentation>Goldcliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR010">
        <xs:annotation>
          <xs:documentation>Graig</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR011">
        <xs:annotation>
          <xs:documentation>Langstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR012">
        <xs:annotation>
          <xs:documentation>Liswerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR013">
        <xs:annotation>
          <xs:documentation>Llanvaches</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR014">
        <xs:annotation>
          <xs:documentation>Llanwern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR015">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR016">
        <xs:annotation>
          <xs:documentation>Marshfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR017">
        <xs:annotation>
          <xs:documentation>Michaelstone-y-Fedw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR018">
        <xs:annotation>
          <xs:documentation>Nash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR019">
        <xs:annotation>
          <xs:documentation>Penhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR020">
        <xs:annotation>
          <xs:documentation>Pillgwenlly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR021">
        <xs:annotation>
          <xs:documentation>Redwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR022">
        <xs:annotation>
          <xs:documentation>Ringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR023">
        <xs:annotation>
          <xs:documentation>Rogerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR024">
        <xs:annotation>
          <xs:documentation>St. Julians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR025">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR026">
        <xs:annotation>
          <xs:documentation>Stow Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR027">
        <xs:annotation>
          <xs:documentation>Tredegar Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR028">
        <xs:annotation>
          <xs:documentation>Victoria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PR029">
        <xs:annotation>
          <xs:documentation>Wentlooge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT001">
        <xs:annotation>
          <xs:documentation>Adamsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT002">
        <xs:annotation>
          <xs:documentation>Butetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT003">
        <xs:annotation>
          <xs:documentation>Caerau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT004">
        <xs:annotation>
          <xs:documentation>Canton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT005">
        <xs:annotation>
          <xs:documentation>Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT006">
        <xs:annotation>
          <xs:documentation>Cathays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT007">
        <xs:annotation>
          <xs:documentation>Cyncoed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT008">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT009">
        <xs:annotation>
          <xs:documentation>Fairwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT010">
        <xs:annotation>
          <xs:documentation>Gabalfa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT011">
        <xs:annotation>
          <xs:documentation>Grangetown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT012">
        <xs:annotation>
          <xs:documentation>Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT013">
        <xs:annotation>
          <xs:documentation>Lisvane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT014">
        <xs:annotation>
          <xs:documentation>Llandaff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT015">
        <xs:annotation>
          <xs:documentation>Llandaff North</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT016">
        <xs:annotation>
          <xs:documentation>Llanishen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT017">
        <xs:annotation>
          <xs:documentation>Llanrumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT018">
        <xs:annotation>
          <xs:documentation>Pentwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT019">
        <xs:annotation>
          <xs:documentation>Pentyrch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT020">
        <xs:annotation>
          <xs:documentation>Plasnewydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT021">
        <xs:annotation>
          <xs:documentation>Radyr and Morganstown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT022">
        <xs:annotation>
          <xs:documentation>Rhiwbina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT023">
        <xs:annotation>
          <xs:documentation>Riverside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT024">
        <xs:annotation>
          <xs:documentation>Roath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT025">
        <xs:annotation>
          <xs:documentation>Rumney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT026">
        <xs:annotation>
          <xs:documentation>St. Fagans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT028">
        <xs:annotation>
          <xs:documentation>Splott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT029">
        <xs:annotation>
          <xs:documentation>Tongwynlais</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT030">
        <xs:annotation>
          <xs:documentation>Trowbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT031">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT032">
        <xs:annotation>
          <xs:documentation>Old St. Mellons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="00PT033">
        <xs:annotation>
          <xs:documentation>Pontprennau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC001">
        <xs:annotation>
          <xs:documentation>Ampthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC002">
        <xs:annotation>
          <xs:documentation>Arlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC003">
        <xs:annotation>
          <xs:documentation>Aspley Guise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC004">
        <xs:annotation>
          <xs:documentation>Aspley Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC005">
        <xs:annotation>
          <xs:documentation>Astwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC006">
        <xs:annotation>
          <xs:documentation>Battlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC007">
        <xs:annotation>
          <xs:documentation>Biggleswade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC008">
        <xs:annotation>
          <xs:documentation>Blunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC009">
        <xs:annotation>
          <xs:documentation>Brogborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC010">
        <xs:annotation>
          <xs:documentation>Campton and Chicksands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC011">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC012">
        <xs:annotation>
          <xs:documentation>Clophill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC013">
        <xs:annotation>
          <xs:documentation>Cranfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC014">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC015">
        <xs:annotation>
          <xs:documentation>Edworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC016">
        <xs:annotation>
          <xs:documentation>Eversholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC017">
        <xs:annotation>
          <xs:documentation>Everton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC018">
        <xs:annotation>
          <xs:documentation>Eyeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC019">
        <xs:annotation>
          <xs:documentation>Flitton and Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC020">
        <xs:annotation>
          <xs:documentation>Flitwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC021">
        <xs:annotation>
          <xs:documentation>Gravenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC022">
        <xs:annotation>
          <xs:documentation>Harlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC023">
        <xs:annotation>
          <xs:documentation>Haynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC024">
        <xs:annotation>
          <xs:documentation>Henlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC025">
        <xs:annotation>
          <xs:documentation>Houghton Conquest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC026">
        <xs:annotation>
          <xs:documentation>Hulcote and Salford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC027">
        <xs:annotation>
          <xs:documentation>Husborne Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC028">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC029">
        <xs:annotation>
          <xs:documentation>Lidlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC030">
        <xs:annotation>
          <xs:documentation>Marston Moretaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC031">
        <xs:annotation>
          <xs:documentation>Maulden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC032">
        <xs:annotation>
          <xs:documentation>Meppershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC033">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC034">
        <xs:annotation>
          <xs:documentation>Milton Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC035">
        <xs:annotation>
          <xs:documentation>Mogerhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC036">
        <xs:annotation>
          <xs:documentation>Northill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC037">
        <xs:annotation>
          <xs:documentation>Old Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC038">
        <xs:annotation>
          <xs:documentation>Potsgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC039">
        <xs:annotation>
          <xs:documentation>Potton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC040">
        <xs:annotation>
          <xs:documentation>Pulloxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC041">
        <xs:annotation>
          <xs:documentation>Ridgmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC042">
        <xs:annotation>
          <xs:documentation>Sandy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC043">
        <xs:annotation>
          <xs:documentation>Shefford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC044">
        <xs:annotation>
          <xs:documentation>Shillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC045">
        <xs:annotation>
          <xs:documentation>Silsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC046">
        <xs:annotation>
          <xs:documentation>Southill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC047">
        <xs:annotation>
          <xs:documentation>Steppingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC048">
        <xs:annotation>
          <xs:documentation>Stondon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC049">
        <xs:annotation>
          <xs:documentation>Stotfold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC050">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC051">
        <xs:annotation>
          <xs:documentation>Tempsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC052">
        <xs:annotation>
          <xs:documentation>Tingrith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC053">
        <xs:annotation>
          <xs:documentation>Westoning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC054">
        <xs:annotation>
          <xs:documentation>Woburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UC055">
        <xs:annotation>
          <xs:documentation>Wrestlingworth and Cockayne Hatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD001">
        <xs:annotation>
          <xs:documentation>Biddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD002">
        <xs:annotation>
          <xs:documentation>Bletsoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD003">
        <xs:annotation>
          <xs:documentation>Bolnhurst and Keysoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD004">
        <xs:annotation>
          <xs:documentation>Bromham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD005">
        <xs:annotation>
          <xs:documentation>Cardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD006">
        <xs:annotation>
          <xs:documentation>Carlton and Chellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD007">
        <xs:annotation>
          <xs:documentation>Clapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD008">
        <xs:annotation>
          <xs:documentation>Colmworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD009">
        <xs:annotation>
          <xs:documentation>Cople</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD010">
        <xs:annotation>
          <xs:documentation>Dean and Shelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD011">
        <xs:annotation>
          <xs:documentation>Eastcotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD012">
        <xs:annotation>
          <xs:documentation>Elstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD013">
        <xs:annotation>
          <xs:documentation>Felmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD014">
        <xs:annotation>
          <xs:documentation>Great Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD015">
        <xs:annotation>
          <xs:documentation>Harrold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD016">
        <xs:annotation>
          <xs:documentation>Kempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD017">
        <xs:annotation>
          <xs:documentation>Kempston Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD018">
        <xs:annotation>
          <xs:documentation>Knotting and Souldrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD019">
        <xs:annotation>
          <xs:documentation>Little Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD020">
        <xs:annotation>
          <xs:documentation>Little Staughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD021">
        <xs:annotation>
          <xs:documentation>Melchbourne and Yielden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD022">
        <xs:annotation>
          <xs:documentation>Milton Ernest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD023">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD024">
        <xs:annotation>
          <xs:documentation>Odell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD025">
        <xs:annotation>
          <xs:documentation>Pavenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD026">
        <xs:annotation>
          <xs:documentation>Pertenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD027">
        <xs:annotation>
          <xs:documentation>Podington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD028">
        <xs:annotation>
          <xs:documentation>Ravensden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD029">
        <xs:annotation>
          <xs:documentation>Renhold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD030">
        <xs:annotation>
          <xs:documentation>Riseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD031">
        <xs:annotation>
          <xs:documentation>Roxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD032">
        <xs:annotation>
          <xs:documentation>Sharnbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD033">
        <xs:annotation>
          <xs:documentation>Stagsden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD034">
        <xs:annotation>
          <xs:documentation>Staploe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD035">
        <xs:annotation>
          <xs:documentation>Stevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD036">
        <xs:annotation>
          <xs:documentation>Stewartby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD037">
        <xs:annotation>
          <xs:documentation>Swineshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD038">
        <xs:annotation>
          <xs:documentation>Thurleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD039">
        <xs:annotation>
          <xs:documentation>Turvey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD040">
        <xs:annotation>
          <xs:documentation>Wilden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD041">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD042">
        <xs:annotation>
          <xs:documentation>Wilshamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD043">
        <xs:annotation>
          <xs:documentation>Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD044">
        <xs:annotation>
          <xs:documentation>Wymington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UD045">
        <xs:annotation>
          <xs:documentation>Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE001">
        <xs:annotation>
          <xs:documentation>Barton-le-Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE002">
        <xs:annotation>
          <xs:documentation>Great Billington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE003">
        <xs:annotation>
          <xs:documentation>Caddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE004">
        <xs:annotation>
          <xs:documentation>Chalgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE005">
        <xs:annotation>
          <xs:documentation>Dunstable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE006">
        <xs:annotation>
          <xs:documentation>Eaton Bray</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE007">
        <xs:annotation>
          <xs:documentation>Eggington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE008">
        <xs:annotation>
          <xs:documentation>Heath and Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE009">
        <xs:annotation>
          <xs:documentation>Hockliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE010">
        <xs:annotation>
          <xs:documentation>Houghton Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE011">
        <xs:annotation>
          <xs:documentation>Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE012">
        <xs:annotation>
          <xs:documentation>Kensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE013">
        <xs:annotation>
          <xs:documentation>Leighton-Linslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE014">
        <xs:annotation>
          <xs:documentation>Stanbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE015">
        <xs:annotation>
          <xs:documentation>Streatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE016">
        <xs:annotation>
          <xs:documentation>Studham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE017">
        <xs:annotation>
          <xs:documentation>Sundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE018">
        <xs:annotation>
          <xs:documentation>Tilsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE019">
        <xs:annotation>
          <xs:documentation>Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE020">
        <xs:annotation>
          <xs:documentation>Totternhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE021">
        <xs:annotation>
          <xs:documentation>Whipsnade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE022">
        <xs:annotation>
          <xs:documentation>Chalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="09UE023">
        <xs:annotation>
          <xs:documentation>Slip End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB001">
        <xs:annotation>
          <xs:documentation>Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB002">
        <xs:annotation>
          <xs:documentation>Adstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB003">
        <xs:annotation>
          <xs:documentation>Akeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB004">
        <xs:annotation>
          <xs:documentation>Ashendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB005">
        <xs:annotation>
          <xs:documentation>Aston Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB006">
        <xs:annotation>
          <xs:documentation>Aston Clinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB007">
        <xs:annotation>
          <xs:documentation>Aston Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB008">
        <xs:annotation>
          <xs:documentation>Barton Hartshorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB009">
        <xs:annotation>
          <xs:documentation>Beachampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB010">
        <xs:annotation>
          <xs:documentation>Biddlesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB011">
        <xs:annotation>
          <xs:documentation>Bierton with Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB012">
        <xs:annotation>
          <xs:documentation>Boarstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB013">
        <xs:annotation>
          <xs:documentation>Brill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB014">
        <xs:annotation>
          <xs:documentation>Buckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB015">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB016">
        <xs:annotation>
          <xs:documentation>Charndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB017">
        <xs:annotation>
          <xs:documentation>Chearsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB018">
        <xs:annotation>
          <xs:documentation>Cheddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB019">
        <xs:annotation>
          <xs:documentation>Chetwode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB020">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB021">
        <xs:annotation>
          <xs:documentation>Creslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB022">
        <xs:annotation>
          <xs:documentation>Cublington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB023">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB024">
        <xs:annotation>
          <xs:documentation>Dinton-with-Ford and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB025">
        <xs:annotation>
          <xs:documentation>Dorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB026">
        <xs:annotation>
          <xs:documentation>Drayton Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB027">
        <xs:annotation>
          <xs:documentation>Drayton Parslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB028">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB029">
        <xs:annotation>
          <xs:documentation>East Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB030">
        <xs:annotation>
          <xs:documentation>Edgcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB031">
        <xs:annotation>
          <xs:documentation>Edlesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB032">
        <xs:annotation>
          <xs:documentation>Fleet Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB033">
        <xs:annotation>
          <xs:documentation>Foscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB034">
        <xs:annotation>
          <xs:documentation>Gawcott with Lenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB035">
        <xs:annotation>
          <xs:documentation>Granborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB036">
        <xs:annotation>
          <xs:documentation>Great Brickhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB037">
        <xs:annotation>
          <xs:documentation>Great Horwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB038">
        <xs:annotation>
          <xs:documentation>Grendon Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB039">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB040">
        <xs:annotation>
          <xs:documentation>Halton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB041">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB042">
        <xs:annotation>
          <xs:documentation>Hillesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB043">
        <xs:annotation>
          <xs:documentation>Hoggeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB044">
        <xs:annotation>
          <xs:documentation>Hogshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB045">
        <xs:annotation>
          <xs:documentation>Hulcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB046">
        <xs:annotation>
          <xs:documentation>Ickford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB047">
        <xs:annotation>
          <xs:documentation>Ivinghoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB048">
        <xs:annotation>
          <xs:documentation>Kingsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB049">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB050">
        <xs:annotation>
          <xs:documentation>Leckhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB051">
        <xs:annotation>
          <xs:documentation>Lillingstone Dayrell with Luffield Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB052">
        <xs:annotation>
          <xs:documentation>Lillingstone Lovell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB053">
        <xs:annotation>
          <xs:documentation>Little Horwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB054">
        <xs:annotation>
          <xs:documentation>Long Crendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB055">
        <xs:annotation>
          <xs:documentation>Lower Winchendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB056">
        <xs:annotation>
          <xs:documentation>Ludgershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB058">
        <xs:annotation>
          <xs:documentation>Maids Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB059">
        <xs:annotation>
          <xs:documentation>Marsh Gibbon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB060">
        <xs:annotation>
          <xs:documentation>Marsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB061">
        <xs:annotation>
          <xs:documentation>Mentmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB062">
        <xs:annotation>
          <xs:documentation>Middle Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB063">
        <xs:annotation>
          <xs:documentation>Mursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB064">
        <xs:annotation>
          <xs:documentation>Nash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB065">
        <xs:annotation>
          <xs:documentation>Newton Longville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB066">
        <xs:annotation>
          <xs:documentation>North Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB067">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB068">
        <xs:annotation>
          <xs:documentation>Oving</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB069">
        <xs:annotation>
          <xs:documentation>Padbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB070">
        <xs:annotation>
          <xs:documentation>Pitchcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB071">
        <xs:annotation>
          <xs:documentation>Pitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB072">
        <xs:annotation>
          <xs:documentation>Poundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB073">
        <xs:annotation>
          <xs:documentation>Preston Bissett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB074">
        <xs:annotation>
          <xs:documentation>Quainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB075">
        <xs:annotation>
          <xs:documentation>Quarrendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB076">
        <xs:annotation>
          <xs:documentation>Radclive-cum-Chackmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB077">
        <xs:annotation>
          <xs:documentation>Shabbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB078">
        <xs:annotation>
          <xs:documentation>Shalstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB079">
        <xs:annotation>
          <xs:documentation>Slapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB080">
        <xs:annotation>
          <xs:documentation>Soulbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB081">
        <xs:annotation>
          <xs:documentation>Steeple Claydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB082">
        <xs:annotation>
          <xs:documentation>Stewkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB083">
        <xs:annotation>
          <xs:documentation>Stoke Hammond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB084">
        <xs:annotation>
          <xs:documentation>Stoke Mandeville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB085">
        <xs:annotation>
          <xs:documentation>Stone with Bishopstone and Hartwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB086">
        <xs:annotation>
          <xs:documentation>Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB087">
        <xs:annotation>
          <xs:documentation>Swanbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB088">
        <xs:annotation>
          <xs:documentation>Thornborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB089">
        <xs:annotation>
          <xs:documentation>Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB090">
        <xs:annotation>
          <xs:documentation>Tingewick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB091">
        <xs:annotation>
          <xs:documentation>Turweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB092">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB093">
        <xs:annotation>
          <xs:documentation>Upper Winchendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB094">
        <xs:annotation>
          <xs:documentation>Waddesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB095">
        <xs:annotation>
          <xs:documentation>Water Stratford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB096">
        <xs:annotation>
          <xs:documentation>Weedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB097">
        <xs:annotation>
          <xs:documentation>Wendover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB098">
        <xs:annotation>
          <xs:documentation>Westbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB099">
        <xs:annotation>
          <xs:documentation>Westcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB100">
        <xs:annotation>
          <xs:documentation>Weston Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB101">
        <xs:annotation>
          <xs:documentation>Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB102">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB103">
        <xs:annotation>
          <xs:documentation>Wing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB104">
        <xs:annotation>
          <xs:documentation>Wingrave with Rowsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB105">
        <xs:annotation>
          <xs:documentation>Winslow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB106">
        <xs:annotation>
          <xs:documentation>Woodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB107">
        <xs:annotation>
          <xs:documentation>Worminghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB108">
        <xs:annotation>
          <xs:documentation>Wotton Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB109">
        <xs:annotation>
          <xs:documentation>Aylesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB110">
        <xs:annotation>
          <xs:documentation>Coldharbour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UB111">
        <xs:annotation>
          <xs:documentation>Watermead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC001">
        <xs:annotation>
          <xs:documentation>Amersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC002">
        <xs:annotation>
          <xs:documentation>Ashley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC003">
        <xs:annotation>
          <xs:documentation>Chalfont St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC004">
        <xs:annotation>
          <xs:documentation>Chalfont St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC005">
        <xs:annotation>
          <xs:documentation>Chartridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC006">
        <xs:annotation>
          <xs:documentation>Chenies</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC007">
        <xs:annotation>
          <xs:documentation>Chesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC008">
        <xs:annotation>
          <xs:documentation>Chesham Bois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC009">
        <xs:annotation>
          <xs:documentation>Cholesbury-cum-St Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC010">
        <xs:annotation>
          <xs:documentation>Coleshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC011">
        <xs:annotation>
          <xs:documentation>Great Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC012">
        <xs:annotation>
          <xs:documentation>Latimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC013">
        <xs:annotation>
          <xs:documentation>Little Missenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC014">
        <xs:annotation>
          <xs:documentation>Penn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC015">
        <xs:annotation>
          <xs:documentation>Seer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UC016">
        <xs:annotation>
          <xs:documentation>The Lee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE001">
        <xs:annotation>
          <xs:documentation>Beaconsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE002">
        <xs:annotation>
          <xs:documentation>Burnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE003">
        <xs:annotation>
          <xs:documentation>Denham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE004">
        <xs:annotation>
          <xs:documentation>Dorney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE005">
        <xs:annotation>
          <xs:documentation>Farnham Royal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE006">
        <xs:annotation>
          <xs:documentation>Fulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE007">
        <xs:annotation>
          <xs:documentation>Gerrards Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE008">
        <xs:annotation>
          <xs:documentation>Hedgerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE009">
        <xs:annotation>
          <xs:documentation>Iver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE010">
        <xs:annotation>
          <xs:documentation>Stoke Poges</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE011">
        <xs:annotation>
          <xs:documentation>Taplow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UE012">
        <xs:annotation>
          <xs:documentation>Wexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF001">
        <xs:annotation>
          <xs:documentation>Bledlow-cum-Saunderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF002">
        <xs:annotation>
          <xs:documentation>Bradenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF003">
        <xs:annotation>
          <xs:documentation>Chepping Wycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF004">
        <xs:annotation>
          <xs:documentation>Downley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF005">
        <xs:annotation>
          <xs:documentation>Ellesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF006">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF007">
        <xs:annotation>
          <xs:documentation>Great and Little Hampden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF008">
        <xs:annotation>
          <xs:documentation>Great and Little Kimble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF009">
        <xs:annotation>
          <xs:documentation>Great Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF010">
        <xs:annotation>
          <xs:documentation>Hambleden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF011">
        <xs:annotation>
          <xs:documentation>Hazlemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF012">
        <xs:annotation>
          <xs:documentation>Hedsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF013">
        <xs:annotation>
          <xs:documentation>Hughenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF014">
        <xs:annotation>
          <xs:documentation>Ibstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF015">
        <xs:annotation>
          <xs:documentation>Lacey Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF016">
        <xs:annotation>
          <xs:documentation>Lane End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF017">
        <xs:annotation>
          <xs:documentation>Little Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF018">
        <xs:annotation>
          <xs:documentation>Longwick-cum-Ilmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF019">
        <xs:annotation>
          <xs:documentation>Marlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF020">
        <xs:annotation>
          <xs:documentation>Medmenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF021">
        <xs:annotation>
          <xs:documentation>Piddington and Wheeler End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF022">
        <xs:annotation>
          <xs:documentation>Princes Risborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF023">
        <xs:annotation>
          <xs:documentation>Radnage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF024">
        <xs:annotation>
          <xs:documentation>Stokenchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF025">
        <xs:annotation>
          <xs:documentation>Turville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF026">
        <xs:annotation>
          <xs:documentation>West Wycombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="11UF027">
        <xs:annotation>
          <xs:documentation>Wooburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC001">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC002">
        <xs:annotation>
          <xs:documentation>Bottisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC003">
        <xs:annotation>
          <xs:documentation>Brinkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC004">
        <xs:annotation>
          <xs:documentation>Burrough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC005">
        <xs:annotation>
          <xs:documentation>Burwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC006">
        <xs:annotation>
          <xs:documentation>Cheveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC007">
        <xs:annotation>
          <xs:documentation>Chippenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC008">
        <xs:annotation>
          <xs:documentation>Coveney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC009">
        <xs:annotation>
          <xs:documentation>Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC010">
        <xs:annotation>
          <xs:documentation>Dullingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC011">
        <xs:annotation>
          <xs:documentation>Ely</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC012">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC013">
        <xs:annotation>
          <xs:documentation>Haddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC014">
        <xs:annotation>
          <xs:documentation>Isleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC015">
        <xs:annotation>
          <xs:documentation>Kennett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC016">
        <xs:annotation>
          <xs:documentation>Kirtling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC017">
        <xs:annotation>
          <xs:documentation>Littleport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC018">
        <xs:annotation>
          <xs:documentation>Lode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC019">
        <xs:annotation>
          <xs:documentation>Mepal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC020">
        <xs:annotation>
          <xs:documentation>Reach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC021">
        <xs:annotation>
          <xs:documentation>Snailwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC022">
        <xs:annotation>
          <xs:documentation>Soham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC023">
        <xs:annotation>
          <xs:documentation>Stetchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC024">
        <xs:annotation>
          <xs:documentation>Stretham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC025">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC026">
        <xs:annotation>
          <xs:documentation>Swaffham Bulbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC027">
        <xs:annotation>
          <xs:documentation>Swaffham Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC028">
        <xs:annotation>
          <xs:documentation>Thetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC029">
        <xs:annotation>
          <xs:documentation>Wentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC030">
        <xs:annotation>
          <xs:documentation>Westley Waterless</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC031">
        <xs:annotation>
          <xs:documentation>Wicken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC032">
        <xs:annotation>
          <xs:documentation>Wilburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC033">
        <xs:annotation>
          <xs:documentation>Witcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC034">
        <xs:annotation>
          <xs:documentation>Witchford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UC035">
        <xs:annotation>
          <xs:documentation>Woodditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD001">
        <xs:annotation>
          <xs:documentation>Benwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD002">
        <xs:annotation>
          <xs:documentation>Chatteris</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD003">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD004">
        <xs:annotation>
          <xs:documentation>Elm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD005">
        <xs:annotation>
          <xs:documentation>Leverington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD006">
        <xs:annotation>
          <xs:documentation>Manea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD007">
        <xs:annotation>
          <xs:documentation>March</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD008">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD009">
        <xs:annotation>
          <xs:documentation>Parson Drove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD010">
        <xs:annotation>
          <xs:documentation>Tydd St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD011">
        <xs:annotation>
          <xs:documentation>Christchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD012">
        <xs:annotation>
          <xs:documentation>Whittlesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD013">
        <xs:annotation>
          <xs:documentation>Wimblington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD014">
        <xs:annotation>
          <xs:documentation>Wisbech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD015">
        <xs:annotation>
          <xs:documentation>Wisbech St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UD016">
        <xs:annotation>
          <xs:documentation>Gorefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE001">
        <xs:annotation>
          <xs:documentation>Abbotsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE002">
        <xs:annotation>
          <xs:documentation>Abbots Ripton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE003">
        <xs:annotation>
          <xs:documentation>Alconbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE004">
        <xs:annotation>
          <xs:documentation>Alconbury Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE005">
        <xs:annotation>
          <xs:documentation>Alwalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE006">
        <xs:annotation>
          <xs:documentation>Barham and Woolley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE007">
        <xs:annotation>
          <xs:documentation>Bluntisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE008">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE009">
        <xs:annotation>
          <xs:documentation>Brington and Molesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE010">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE011">
        <xs:annotation>
          <xs:documentation>Buckden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE012">
        <xs:annotation>
          <xs:documentation>Buckworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE013">
        <xs:annotation>
          <xs:documentation>Bury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE014">
        <xs:annotation>
          <xs:documentation>Bythorn and Keyston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE015">
        <xs:annotation>
          <xs:documentation>Catworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE016">
        <xs:annotation>
          <xs:documentation>Chesterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE017">
        <xs:annotation>
          <xs:documentation>Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE018">
        <xs:annotation>
          <xs:documentation>Conington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE019">
        <xs:annotation>
          <xs:documentation>Covington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE020">
        <xs:annotation>
          <xs:documentation>Denton and Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE021">
        <xs:annotation>
          <xs:documentation>Diddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE022">
        <xs:annotation>
          <xs:documentation>Earith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE023">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE024">
        <xs:annotation>
          <xs:documentation>Ellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE025">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE026">
        <xs:annotation>
          <xs:documentation>Eynesbury Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE027">
        <xs:annotation>
          <xs:documentation>Farcet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE028">
        <xs:annotation>
          <xs:documentation>Fenstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE029">
        <xs:annotation>
          <xs:documentation>Folksworth and Washingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE030">
        <xs:annotation>
          <xs:documentation>Glatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE031">
        <xs:annotation>
          <xs:documentation>Godmanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE032">
        <xs:annotation>
          <xs:documentation>Grafham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE033">
        <xs:annotation>
          <xs:documentation>Great Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE034">
        <xs:annotation>
          <xs:documentation>Great Gransden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE035">
        <xs:annotation>
          <xs:documentation>Great Paxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE036">
        <xs:annotation>
          <xs:documentation>Great Staughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE037">
        <xs:annotation>
          <xs:documentation>Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE038">
        <xs:annotation>
          <xs:documentation>Hail Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE039">
        <xs:annotation>
          <xs:documentation>Hamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE040">
        <xs:annotation>
          <xs:documentation>Hemingford Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE041">
        <xs:annotation>
          <xs:documentation>Hemingford Grey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE042">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE043">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE044">
        <xs:annotation>
          <xs:documentation>Holywell-cum-Needingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE045">
        <xs:annotation>
          <xs:documentation>Houghton and Wyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE046">
        <xs:annotation>
          <xs:documentation>Huntingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE047">
        <xs:annotation>
          <xs:documentation>Kimbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE048">
        <xs:annotation>
          <xs:documentation>Kings Ripton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE049">
        <xs:annotation>
          <xs:documentation>Leighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE050">
        <xs:annotation>
          <xs:documentation>Little Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE051">
        <xs:annotation>
          <xs:documentation>Little Paxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE052">
        <xs:annotation>
          <xs:documentation>Morborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE053">
        <xs:annotation>
          <xs:documentation>Offord Cluny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE054">
        <xs:annotation>
          <xs:documentation>Offord Darcy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE055">
        <xs:annotation>
          <xs:documentation>Old Hurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE056">
        <xs:annotation>
          <xs:documentation>Old Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE057">
        <xs:annotation>
          <xs:documentation>Perry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE058">
        <xs:annotation>
          <xs:documentation>Pidley cum Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE059">
        <xs:annotation>
          <xs:documentation>Ramsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE060">
        <xs:annotation>
          <xs:documentation>Saint Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE061">
        <xs:annotation>
          <xs:documentation>St. Neots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE062">
        <xs:annotation>
          <xs:documentation>St. Neots Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE063">
        <xs:annotation>
          <xs:documentation>Sawtry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE064">
        <xs:annotation>
          <xs:documentation>Sibson-cum-Stibbington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE065">
        <xs:annotation>
          <xs:documentation>Somersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE066">
        <xs:annotation>
          <xs:documentation>Southoe and Midloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE067">
        <xs:annotation>
          <xs:documentation>Spaldwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE068">
        <xs:annotation>
          <xs:documentation>Steeple Gidding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE069">
        <xs:annotation>
          <xs:documentation>Stilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE070">
        <xs:annotation>
          <xs:documentation>Stow Longa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE071">
        <xs:annotation>
          <xs:documentation>Tetworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE072">
        <xs:annotation>
          <xs:documentation>The Stukeleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE073">
        <xs:annotation>
          <xs:documentation>Tilbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE074">
        <xs:annotation>
          <xs:documentation>Toseland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE075">
        <xs:annotation>
          <xs:documentation>Upton and Coppingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE076">
        <xs:annotation>
          <xs:documentation>Upwood and the Raveleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE077">
        <xs:annotation>
          <xs:documentation>Warboys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE078">
        <xs:annotation>
          <xs:documentation>Waresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE079">
        <xs:annotation>
          <xs:documentation>Water Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE080">
        <xs:annotation>
          <xs:documentation>Winwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE081">
        <xs:annotation>
          <xs:documentation>Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE082">
        <xs:annotation>
          <xs:documentation>Woodhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE083">
        <xs:annotation>
          <xs:documentation>Wood Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE084">
        <xs:annotation>
          <xs:documentation>Yaxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UE085">
        <xs:annotation>
          <xs:documentation>Yelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG001">
        <xs:annotation>
          <xs:documentation>Abington Pigotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG002">
        <xs:annotation>
          <xs:documentation>Arrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG003">
        <xs:annotation>
          <xs:documentation>Babraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG004">
        <xs:annotation>
          <xs:documentation>Balsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG005">
        <xs:annotation>
          <xs:documentation>Bar Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG006">
        <xs:annotation>
          <xs:documentation>Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG007">
        <xs:annotation>
          <xs:documentation>Bartlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG008">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG009">
        <xs:annotation>
          <xs:documentation>Bassingbourn cum Kneesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG010">
        <xs:annotation>
          <xs:documentation>Bourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG011">
        <xs:annotation>
          <xs:documentation>Boxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG012">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG013">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG014">
        <xs:annotation>
          <xs:documentation>Castle Camps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG015">
        <xs:annotation>
          <xs:documentation>Caxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG016">
        <xs:annotation>
          <xs:documentation>Childerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG017">
        <xs:annotation>
          <xs:documentation>Comberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG018">
        <xs:annotation>
          <xs:documentation>Conington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG019">
        <xs:annotation>
          <xs:documentation>Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG020">
        <xs:annotation>
          <xs:documentation>Cottenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG021">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG022">
        <xs:annotation>
          <xs:documentation>Croydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG023">
        <xs:annotation>
          <xs:documentation>Dry Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG024">
        <xs:annotation>
          <xs:documentation>Duxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG025">
        <xs:annotation>
          <xs:documentation>Elsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG026">
        <xs:annotation>
          <xs:documentation>Eltisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG027">
        <xs:annotation>
          <xs:documentation>Fen Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG028">
        <xs:annotation>
          <xs:documentation>Fen Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG029">
        <xs:annotation>
          <xs:documentation>Fowlmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG030">
        <xs:annotation>
          <xs:documentation>Foxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG031">
        <xs:annotation>
          <xs:documentation>Fulbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG032">
        <xs:annotation>
          <xs:documentation>Gamlingay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG033">
        <xs:annotation>
          <xs:documentation>Girton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG034">
        <xs:annotation>
          <xs:documentation>Grantchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG035">
        <xs:annotation>
          <xs:documentation>Graveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG036">
        <xs:annotation>
          <xs:documentation>Great Abington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG037">
        <xs:annotation>
          <xs:documentation>Great and Little Chishill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG038">
        <xs:annotation>
          <xs:documentation>Great Eversden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG039">
        <xs:annotation>
          <xs:documentation>Great Shelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG040">
        <xs:annotation>
          <xs:documentation>Great Wilbraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG041">
        <xs:annotation>
          <xs:documentation>Guilden Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG042">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG043">
        <xs:annotation>
          <xs:documentation>Harlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG044">
        <xs:annotation>
          <xs:documentation>Harston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG045">
        <xs:annotation>
          <xs:documentation>Haslingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG046">
        <xs:annotation>
          <xs:documentation>Hatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG047">
        <xs:annotation>
          <xs:documentation>Hauxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG048">
        <xs:annotation>
          <xs:documentation>Heydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG049">
        <xs:annotation>
          <xs:documentation>Hildersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG050">
        <xs:annotation>
          <xs:documentation>Hinxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG051">
        <xs:annotation>
          <xs:documentation>Histon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG052">
        <xs:annotation>
          <xs:documentation>Horningsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG053">
        <xs:annotation>
          <xs:documentation>Horseheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG054">
        <xs:annotation>
          <xs:documentation>Ickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG055">
        <xs:annotation>
          <xs:documentation>Impington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG056">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG057">
        <xs:annotation>
          <xs:documentation>Knapwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG058">
        <xs:annotation>
          <xs:documentation>Landbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG059">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG060">
        <xs:annotation>
          <xs:documentation>Litlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG061">
        <xs:annotation>
          <xs:documentation>Little Abington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG062">
        <xs:annotation>
          <xs:documentation>Little Eversden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG063">
        <xs:annotation>
          <xs:documentation>Little Gransden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG064">
        <xs:annotation>
          <xs:documentation>Little Shelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG065">
        <xs:annotation>
          <xs:documentation>Little Wilbraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG066">
        <xs:annotation>
          <xs:documentation>Lolworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG067">
        <xs:annotation>
          <xs:documentation>Longstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG068">
        <xs:annotation>
          <xs:documentation>Longstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG069">
        <xs:annotation>
          <xs:documentation>Madingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG070">
        <xs:annotation>
          <xs:documentation>Melbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG071">
        <xs:annotation>
          <xs:documentation>Meldreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG072">
        <xs:annotation>
          <xs:documentation>Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG073">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG074">
        <xs:annotation>
          <xs:documentation>Oakington and Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG075">
        <xs:annotation>
          <xs:documentation>Orwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG076">
        <xs:annotation>
          <xs:documentation>Over</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG077">
        <xs:annotation>
          <xs:documentation>Pampisford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG078">
        <xs:annotation>
          <xs:documentation>Papworth Everard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG079">
        <xs:annotation>
          <xs:documentation>Papworth St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG080">
        <xs:annotation>
          <xs:documentation>Rampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG081">
        <xs:annotation>
          <xs:documentation>Sawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG082">
        <xs:annotation>
          <xs:documentation>Shepreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG083">
        <xs:annotation>
          <xs:documentation>Shingay cum Wendy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG084">
        <xs:annotation>
          <xs:documentation>Shudy Camps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG085">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG086">
        <xs:annotation>
          <xs:documentation>Steeple Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG087">
        <xs:annotation>
          <xs:documentation>Stow cum Quy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG088">
        <xs:annotation>
          <xs:documentation>Swavesey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG089">
        <xs:annotation>
          <xs:documentation>Tadlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG090">
        <xs:annotation>
          <xs:documentation>Teversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG091">
        <xs:annotation>
          <xs:documentation>Thriplow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG092">
        <xs:annotation>
          <xs:documentation>Toft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG093">
        <xs:annotation>
          <xs:documentation>Waterbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG094">
        <xs:annotation>
          <xs:documentation>Weston Colville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG095">
        <xs:annotation>
          <xs:documentation>West Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG096">
        <xs:annotation>
          <xs:documentation>West Wratting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG097">
        <xs:annotation>
          <xs:documentation>Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG098">
        <xs:annotation>
          <xs:documentation>Whittlesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG099">
        <xs:annotation>
          <xs:documentation>Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG100">
        <xs:annotation>
          <xs:documentation>Wimpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12UG101">
        <xs:annotation>
          <xs:documentation>Cambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB001">
        <xs:annotation>
          <xs:documentation>Agden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB002">
        <xs:annotation>
          <xs:documentation>Aldersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB003">
        <xs:annotation>
          <xs:documentation>Aldford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB004">
        <xs:annotation>
          <xs:documentation>Ashton Hayes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB005">
        <xs:annotation>
          <xs:documentation>Bache</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB006">
        <xs:annotation>
          <xs:documentation>Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB007">
        <xs:annotation>
          <xs:documentation>Barrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB008">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB009">
        <xs:annotation>
          <xs:documentation>Beeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB010">
        <xs:annotation>
          <xs:documentation>Bickley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB011">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB012">
        <xs:annotation>
          <xs:documentation>Bridge Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB013">
        <xs:annotation>
          <xs:documentation>Broxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB014">
        <xs:annotation>
          <xs:documentation>Bruen Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB015">
        <xs:annotation>
          <xs:documentation>Buerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB016">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB017">
        <xs:annotation>
          <xs:documentation>Burwardsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB018">
        <xs:annotation>
          <xs:documentation>Caldecott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB019">
        <xs:annotation>
          <xs:documentation>Capenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB020">
        <xs:annotation>
          <xs:documentation>Carden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB021">
        <xs:annotation>
          <xs:documentation>Caughall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB022">
        <xs:annotation>
          <xs:documentation>Chester Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB023">
        <xs:annotation>
          <xs:documentation>Chidlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB024">
        <xs:annotation>
          <xs:documentation>Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB025">
        <xs:annotation>
          <xs:documentation>Chorlton-by-Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB026">
        <xs:annotation>
          <xs:documentation>Chowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB027">
        <xs:annotation>
          <xs:documentation>Christleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB028">
        <xs:annotation>
          <xs:documentation>Church Shocklach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB029">
        <xs:annotation>
          <xs:documentation>Churton by Aldford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB030">
        <xs:annotation>
          <xs:documentation>Churton by Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB031">
        <xs:annotation>
          <xs:documentation>Churton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB032">
        <xs:annotation>
          <xs:documentation>Claverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB033">
        <xs:annotation>
          <xs:documentation>Clotton Hoofield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB034">
        <xs:annotation>
          <xs:documentation>Clutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB035">
        <xs:annotation>
          <xs:documentation>Coddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB036">
        <xs:annotation>
          <xs:documentation>Cotton Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB037">
        <xs:annotation>
          <xs:documentation>Cotton Edmunds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB038">
        <xs:annotation>
          <xs:documentation>Crewe by Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB039">
        <xs:annotation>
          <xs:documentation>Croughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB040">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB041">
        <xs:annotation>
          <xs:documentation>Dodleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB042">
        <xs:annotation>
          <xs:documentation>Duckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB043">
        <xs:annotation>
          <xs:documentation>Duddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB044">
        <xs:annotation>
          <xs:documentation>Dunham-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB045">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB046">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB047">
        <xs:annotation>
          <xs:documentation>Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB048">
        <xs:annotation>
          <xs:documentation>Edgerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB049">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB050">
        <xs:annotation>
          <xs:documentation>Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB051">
        <xs:annotation>
          <xs:documentation>Foulk Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB052">
        <xs:annotation>
          <xs:documentation>Golborne Bellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB053">
        <xs:annotation>
          <xs:documentation>Golborne David</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB054">
        <xs:annotation>
          <xs:documentation>Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB055">
        <xs:annotation>
          <xs:documentation>Great Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB056">
        <xs:annotation>
          <xs:documentation>Guilden Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB057">
        <xs:annotation>
          <xs:documentation>Hampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB058">
        <xs:annotation>
          <xs:documentation>Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB059">
        <xs:annotation>
          <xs:documentation>Hapsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB060">
        <xs:annotation>
          <xs:documentation>Harthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB061">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB062">
        <xs:annotation>
          <xs:documentation>Hockenhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB063">
        <xs:annotation>
          <xs:documentation>Hoole Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB064">
        <xs:annotation>
          <xs:documentation>Horton-by-Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB065">
        <xs:annotation>
          <xs:documentation>Horton-cum-Peel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB066">
        <xs:annotation>
          <xs:documentation>Huntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB067">
        <xs:annotation>
          <xs:documentation>Huxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB068">
        <xs:annotation>
          <xs:documentation>Iddinshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB069">
        <xs:annotation>
          <xs:documentation>Kelsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB070">
        <xs:annotation>
          <xs:documentation>Kings Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB071">
        <xs:annotation>
          <xs:documentation>Larkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB072">
        <xs:annotation>
          <xs:documentation>Lea-by-Backford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB073">
        <xs:annotation>
          <xs:documentation>Lea Newbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB074">
        <xs:annotation>
          <xs:documentation>Ledsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB075">
        <xs:annotation>
          <xs:documentation>Little Stanney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB076">
        <xs:annotation>
          <xs:documentation>Littleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB077">
        <xs:annotation>
          <xs:documentation>Lower Kinnerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB078">
        <xs:annotation>
          <xs:documentation>Macefen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB079">
        <xs:annotation>
          <xs:documentation>Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB080">
        <xs:annotation>
          <xs:documentation>Marlston-cum-Lache</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB081">
        <xs:annotation>
          <xs:documentation>Mickle Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB082">
        <xs:annotation>
          <xs:documentation>Mollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB083">
        <xs:annotation>
          <xs:documentation>Moston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB084">
        <xs:annotation>
          <xs:documentation>Mouldsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB085">
        <xs:annotation>
          <xs:documentation>Newton by Malpas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB086">
        <xs:annotation>
          <xs:documentation>Newton-by-Tattenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB087">
        <xs:annotation>
          <xs:documentation>Oldcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB088">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB089">
        <xs:annotation>
          <xs:documentation>Picton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB090">
        <xs:annotation>
          <xs:documentation>Poulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB091">
        <xs:annotation>
          <xs:documentation>Prior's Heys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB092">
        <xs:annotation>
          <xs:documentation>Puddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB093">
        <xs:annotation>
          <xs:documentation>Pulford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB094">
        <xs:annotation>
          <xs:documentation>Rowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB095">
        <xs:annotation>
          <xs:documentation>Saighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB096">
        <xs:annotation>
          <xs:documentation>Saughall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB097">
        <xs:annotation>
          <xs:documentation>Shocklach Oviatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB098">
        <xs:annotation>
          <xs:documentation>Shotwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB099">
        <xs:annotation>
          <xs:documentation>Shotwick Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB100">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB101">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB102">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB103">
        <xs:annotation>
          <xs:documentation>Tarvin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB104">
        <xs:annotation>
          <xs:documentation>Tattenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB105">
        <xs:annotation>
          <xs:documentation>Threapwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB106">
        <xs:annotation>
          <xs:documentation>Thornton-le-Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB107">
        <xs:annotation>
          <xs:documentation>Tilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB108">
        <xs:annotation>
          <xs:documentation>Tilstone Fearnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB109">
        <xs:annotation>
          <xs:documentation>Tiverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB110">
        <xs:annotation>
          <xs:documentation>Tushingham cum Grindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB111">
        <xs:annotation>
          <xs:documentation>Upton-by-Chester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB112">
        <xs:annotation>
          <xs:documentation>Waverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB113">
        <xs:annotation>
          <xs:documentation>Wervin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB114">
        <xs:annotation>
          <xs:documentation>Wigland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB115">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB116">
        <xs:annotation>
          <xs:documentation>Wimbolds Trafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB117">
        <xs:annotation>
          <xs:documentation>Woodbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UB118">
        <xs:annotation>
          <xs:documentation>Wychough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC001">
        <xs:annotation>
          <xs:documentation>Alsager</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC002">
        <xs:annotation>
          <xs:documentation>Arclid</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC003">
        <xs:annotation>
          <xs:documentation>Betchton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC004">
        <xs:annotation>
          <xs:documentation>Bradwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC005">
        <xs:annotation>
          <xs:documentation>Brereton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC006">
        <xs:annotation>
          <xs:documentation>Church Lawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC007">
        <xs:annotation>
          <xs:documentation>Congleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC008">
        <xs:annotation>
          <xs:documentation>Cranage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC009">
        <xs:annotation>
          <xs:documentation>Goostrey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC010">
        <xs:annotation>
          <xs:documentation>Hassall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC011">
        <xs:annotation>
          <xs:documentation>Holmes Chapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC012">
        <xs:annotation>
          <xs:documentation>Hulme Walfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC013">
        <xs:annotation>
          <xs:documentation>Middlewich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC014">
        <xs:annotation>
          <xs:documentation>Moreton cum Alcumlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC015">
        <xs:annotation>
          <xs:documentation>Moston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC016">
        <xs:annotation>
          <xs:documentation>Newbold Astbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC017">
        <xs:annotation>
          <xs:documentation>Odd Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC018">
        <xs:annotation>
          <xs:documentation>Sandbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC019">
        <xs:annotation>
          <xs:documentation>Smallwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC020">
        <xs:annotation>
          <xs:documentation>Somerford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC021">
        <xs:annotation>
          <xs:documentation>Somerford Booths</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC022">
        <xs:annotation>
          <xs:documentation>Swettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UC023">
        <xs:annotation>
          <xs:documentation>Twemlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD001">
        <xs:annotation>
          <xs:documentation>Acton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD002">
        <xs:annotation>
          <xs:documentation>Alpraham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD003">
        <xs:annotation>
          <xs:documentation>Aston juxta Mondrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD004">
        <xs:annotation>
          <xs:documentation>Audlem</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD005">
        <xs:annotation>
          <xs:documentation>Austerson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD006">
        <xs:annotation>
          <xs:documentation>Baddiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD007">
        <xs:annotation>
          <xs:documentation>Baddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD008">
        <xs:annotation>
          <xs:documentation>Barthomley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD009">
        <xs:annotation>
          <xs:documentation>Basford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD010">
        <xs:annotation>
          <xs:documentation>Batherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD011">
        <xs:annotation>
          <xs:documentation>Bickerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD012">
        <xs:annotation>
          <xs:documentation>Blakenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD013">
        <xs:annotation>
          <xs:documentation>Bridgemere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD014">
        <xs:annotation>
          <xs:documentation>Brindley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD015">
        <xs:annotation>
          <xs:documentation>Broomhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD016">
        <xs:annotation>
          <xs:documentation>Buerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD017">
        <xs:annotation>
          <xs:documentation>Bulkeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD018">
        <xs:annotation>
          <xs:documentation>Bunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD019">
        <xs:annotation>
          <xs:documentation>Burland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD020">
        <xs:annotation>
          <xs:documentation>Calveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD021">
        <xs:annotation>
          <xs:documentation>Checkley cum Wrinehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD022">
        <xs:annotation>
          <xs:documentation>Cholmondeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD023">
        <xs:annotation>
          <xs:documentation>Cholmondeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD024">
        <xs:annotation>
          <xs:documentation>Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD025">
        <xs:annotation>
          <xs:documentation>Chorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD026">
        <xs:annotation>
          <xs:documentation>Church Minshull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD027">
        <xs:annotation>
          <xs:documentation>Coole Pilate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD028">
        <xs:annotation>
          <xs:documentation>Crewe Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD029">
        <xs:annotation>
          <xs:documentation>Dodcott cum Wilkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD030">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD031">
        <xs:annotation>
          <xs:documentation>Edleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD032">
        <xs:annotation>
          <xs:documentation>Egerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD033">
        <xs:annotation>
          <xs:documentation>Faddiley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD034">
        <xs:annotation>
          <xs:documentation>Hankelow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD035">
        <xs:annotation>
          <xs:documentation>Haslington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD036">
        <xs:annotation>
          <xs:documentation>Hatherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD037">
        <xs:annotation>
          <xs:documentation>Haughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD038">
        <xs:annotation>
          <xs:documentation>Henhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD039">
        <xs:annotation>
          <xs:documentation>Hough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD040">
        <xs:annotation>
          <xs:documentation>Hunsterson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD041">
        <xs:annotation>
          <xs:documentation>Hurleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD042">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD043">
        <xs:annotation>
          <xs:documentation>Leighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD044">
        <xs:annotation>
          <xs:documentation>Marbury cum Quoisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD045">
        <xs:annotation>
          <xs:documentation>Minshull Vernon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD046">
        <xs:annotation>
          <xs:documentation>Nantwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD047">
        <xs:annotation>
          <xs:documentation>Newhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD048">
        <xs:annotation>
          <xs:documentation>Norbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD049">
        <xs:annotation>
          <xs:documentation>Peckforton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD050">
        <xs:annotation>
          <xs:documentation>Poole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD051">
        <xs:annotation>
          <xs:documentation>Ridley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD052">
        <xs:annotation>
          <xs:documentation>Rope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD053">
        <xs:annotation>
          <xs:documentation>Shavington cum Gresty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD054">
        <xs:annotation>
          <xs:documentation>Sound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD055">
        <xs:annotation>
          <xs:documentation>Spurstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD056">
        <xs:annotation>
          <xs:documentation>Stapeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD057">
        <xs:annotation>
          <xs:documentation>Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD058">
        <xs:annotation>
          <xs:documentation>Walgherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD059">
        <xs:annotation>
          <xs:documentation>Wardle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD060">
        <xs:annotation>
          <xs:documentation>Warmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD061">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD062">
        <xs:annotation>
          <xs:documentation>Wettenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD063">
        <xs:annotation>
          <xs:documentation>Willaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD064">
        <xs:annotation>
          <xs:documentation>Wirswall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD065">
        <xs:annotation>
          <xs:documentation>Wistaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD066">
        <xs:annotation>
          <xs:documentation>Woolstanwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD067">
        <xs:annotation>
          <xs:documentation>Worleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD068">
        <xs:annotation>
          <xs:documentation>Wrenbury cum Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UD069">
        <xs:annotation>
          <xs:documentation>Wybunbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UE001">
        <xs:annotation>
          <xs:documentation>Ince</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG001">
        <xs:annotation>
          <xs:documentation>Adlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG002">
        <xs:annotation>
          <xs:documentation>Agden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG003">
        <xs:annotation>
          <xs:documentation>Alderley Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG004">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG005">
        <xs:annotation>
          <xs:documentation>Aston by Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG006">
        <xs:annotation>
          <xs:documentation>Bexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG007">
        <xs:annotation>
          <xs:documentation>Bollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG008">
        <xs:annotation>
          <xs:documentation>Bosley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG009">
        <xs:annotation>
          <xs:documentation>Chelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG010">
        <xs:annotation>
          <xs:documentation>Chorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG011">
        <xs:annotation>
          <xs:documentation>Disley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG012">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG013">
        <xs:annotation>
          <xs:documentation>Gawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG014">
        <xs:annotation>
          <xs:documentation>Great Warford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG015">
        <xs:annotation>
          <xs:documentation>Henbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG016">
        <xs:annotation>
          <xs:documentation>High Legh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG017">
        <xs:annotation>
          <xs:documentation>Higher Hurdsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG018">
        <xs:annotation>
          <xs:documentation>Kettleshulme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG019">
        <xs:annotation>
          <xs:documentation>Knutsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG020">
        <xs:annotation>
          <xs:documentation>Little Bollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG021">
        <xs:annotation>
          <xs:documentation>Little Warford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG022">
        <xs:annotation>
          <xs:documentation>Lower Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG023">
        <xs:annotation>
          <xs:documentation>Lyme Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG024">
        <xs:annotation>
          <xs:documentation>Macclesfield Forest and Wildboarclough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG025">
        <xs:annotation>
          <xs:documentation>Marthall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG026">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG027">
        <xs:annotation>
          <xs:documentation>Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG028">
        <xs:annotation>
          <xs:documentation>Millington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG029">
        <xs:annotation>
          <xs:documentation>Mobberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG030">
        <xs:annotation>
          <xs:documentation>Mottram St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG031">
        <xs:annotation>
          <xs:documentation>Nether Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG032">
        <xs:annotation>
          <xs:documentation>North Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG033">
        <xs:annotation>
          <xs:documentation>Ollerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG034">
        <xs:annotation>
          <xs:documentation>Over Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG035">
        <xs:annotation>
          <xs:documentation>Peover Inferior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG036">
        <xs:annotation>
          <xs:documentation>Peover Superior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG037">
        <xs:annotation>
          <xs:documentation>Pickmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG038">
        <xs:annotation>
          <xs:documentation>Plumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG039">
        <xs:annotation>
          <xs:documentation>Pott Shrigley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG040">
        <xs:annotation>
          <xs:documentation>Poynton-with-Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG041">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG042">
        <xs:annotation>
          <xs:documentation>Rainow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG043">
        <xs:annotation>
          <xs:documentation>Rostherne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG044">
        <xs:annotation>
          <xs:documentation>Siddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG045">
        <xs:annotation>
          <xs:documentation>Snelson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG046">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG047">
        <xs:annotation>
          <xs:documentation>Tabley Inferior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG048">
        <xs:annotation>
          <xs:documentation>Tabley Superior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG049">
        <xs:annotation>
          <xs:documentation>Tatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG050">
        <xs:annotation>
          <xs:documentation>Toft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UG051">
        <xs:annotation>
          <xs:documentation>Wincle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH001">
        <xs:annotation>
          <xs:documentation>Acton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH002">
        <xs:annotation>
          <xs:documentation>Allostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH003">
        <xs:annotation>
          <xs:documentation>Alvanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH004">
        <xs:annotation>
          <xs:documentation>Anderton with Marbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH005">
        <xs:annotation>
          <xs:documentation>Antrobus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH006">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH007">
        <xs:annotation>
          <xs:documentation>Barnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH008">
        <xs:annotation>
          <xs:documentation>Bostock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH009">
        <xs:annotation>
          <xs:documentation>Byley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH010">
        <xs:annotation>
          <xs:documentation>Comberbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH011">
        <xs:annotation>
          <xs:documentation>Crowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH012">
        <xs:annotation>
          <xs:documentation>Cuddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH013">
        <xs:annotation>
          <xs:documentation>Darnhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH014">
        <xs:annotation>
          <xs:documentation>Davenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH015">
        <xs:annotation>
          <xs:documentation>Delamere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH016">
        <xs:annotation>
          <xs:documentation>Dutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH017">
        <xs:annotation>
          <xs:documentation>Frodsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH018">
        <xs:annotation>
          <xs:documentation>Great Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH019">
        <xs:annotation>
          <xs:documentation>Hartford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH020">
        <xs:annotation>
          <xs:documentation>Helsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH021">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH022">
        <xs:annotation>
          <xs:documentation>Lach Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH023">
        <xs:annotation>
          <xs:documentation>Little Budworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH024">
        <xs:annotation>
          <xs:documentation>Little Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH025">
        <xs:annotation>
          <xs:documentation>Lostock Gralam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH026">
        <xs:annotation>
          <xs:documentation>Manley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH027">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH028">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH029">
        <xs:annotation>
          <xs:documentation>Nether Peover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH030">
        <xs:annotation>
          <xs:documentation>Norley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH031">
        <xs:annotation>
          <xs:documentation>Northwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH032">
        <xs:annotation>
          <xs:documentation>Oakmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH033">
        <xs:annotation>
          <xs:documentation>Rudheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH034">
        <xs:annotation>
          <xs:documentation>Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH035">
        <xs:annotation>
          <xs:documentation>Sproston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH036">
        <xs:annotation>
          <xs:documentation>Stanthorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH037">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH038">
        <xs:annotation>
          <xs:documentation>Tarporley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH039">
        <xs:annotation>
          <xs:documentation>Utkinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH040">
        <xs:annotation>
          <xs:documentation>Weaverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH041">
        <xs:annotation>
          <xs:documentation>Whitegate and Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH042">
        <xs:annotation>
          <xs:documentation>Whitley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH043">
        <xs:annotation>
          <xs:documentation>Wimboldsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH044">
        <xs:annotation>
          <xs:documentation>Wincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="13UH045">
        <xs:annotation>
          <xs:documentation>Winsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB001">
        <xs:annotation>
          <xs:documentation>Antony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB002">
        <xs:annotation>
          <xs:documentation>Boconnoc</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB003">
        <xs:annotation>
          <xs:documentation>Botusfleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB004">
        <xs:annotation>
          <xs:documentation>Broadoak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB005">
        <xs:annotation>
          <xs:documentation>Callington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB006">
        <xs:annotation>
          <xs:documentation>Calstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB007">
        <xs:annotation>
          <xs:documentation>Dobwalls and Trewidland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB008">
        <xs:annotation>
          <xs:documentation>Duloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB009">
        <xs:annotation>
          <xs:documentation>Landrake with St. Erney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB010">
        <xs:annotation>
          <xs:documentation>Landulph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB011">
        <xs:annotation>
          <xs:documentation>Lanreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB012">
        <xs:annotation>
          <xs:documentation>Lansallos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB013">
        <xs:annotation>
          <xs:documentation>Lanteglos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB014">
        <xs:annotation>
          <xs:documentation>Linkinhorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB015">
        <xs:annotation>
          <xs:documentation>Liskeard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB016">
        <xs:annotation>
          <xs:documentation>Looe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB017">
        <xs:annotation>
          <xs:documentation>Maker-with-Rame</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB018">
        <xs:annotation>
          <xs:documentation>Menheniot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB019">
        <xs:annotation>
          <xs:documentation>Millbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB020">
        <xs:annotation>
          <xs:documentation>Morval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB021">
        <xs:annotation>
          <xs:documentation>Pelynt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB022">
        <xs:annotation>
          <xs:documentation>Pillaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB023">
        <xs:annotation>
          <xs:documentation>Quethiock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB024">
        <xs:annotation>
          <xs:documentation>St. Cleer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB025">
        <xs:annotation>
          <xs:documentation>St. Dominick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB027">
        <xs:annotation>
          <xs:documentation>St. Ive</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB028">
        <xs:annotation>
          <xs:documentation>St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB029">
        <xs:annotation>
          <xs:documentation>St. Keyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB030">
        <xs:annotation>
          <xs:documentation>St. Martin-by-Looe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB031">
        <xs:annotation>
          <xs:documentation>St. Mellion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB032">
        <xs:annotation>
          <xs:documentation>St. Neot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB033">
        <xs:annotation>
          <xs:documentation>St. Pinnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB034">
        <xs:annotation>
          <xs:documentation>St. Veep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB035">
        <xs:annotation>
          <xs:documentation>St. Winnow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB036">
        <xs:annotation>
          <xs:documentation>Saltash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB037">
        <xs:annotation>
          <xs:documentation>Sheviock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB038">
        <xs:annotation>
          <xs:documentation>South Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB039">
        <xs:annotation>
          <xs:documentation>Torpoint</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB040">
        <xs:annotation>
          <xs:documentation>Warleggan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB041">
        <xs:annotation>
          <xs:documentation>St. Germans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UB042">
        <xs:annotation>
          <xs:documentation>Deviock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC001">
        <xs:annotation>
          <xs:documentation>Chacewater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC002">
        <xs:annotation>
          <xs:documentation>Cubert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC003">
        <xs:annotation>
          <xs:documentation>Cuby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC004">
        <xs:annotation>
          <xs:documentation>Falmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC005">
        <xs:annotation>
          <xs:documentation>Feock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC006">
        <xs:annotation>
          <xs:documentation>Gerrans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC007">
        <xs:annotation>
          <xs:documentation>Gwennap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC008">
        <xs:annotation>
          <xs:documentation>Kea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC009">
        <xs:annotation>
          <xs:documentation>Kenwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC010">
        <xs:annotation>
          <xs:documentation>Ladock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC011">
        <xs:annotation>
          <xs:documentation>Mylor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC012">
        <xs:annotation>
          <xs:documentation>Penryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC013">
        <xs:annotation>
          <xs:documentation>Perranarworthal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC014">
        <xs:annotation>
          <xs:documentation>Perranzabuloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC015">
        <xs:annotation>
          <xs:documentation>Philleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC016">
        <xs:annotation>
          <xs:documentation>Probus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC017">
        <xs:annotation>
          <xs:documentation>Ruanlanihorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC018">
        <xs:annotation>
          <xs:documentation>St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC019">
        <xs:annotation>
          <xs:documentation>St. Allen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC020">
        <xs:annotation>
          <xs:documentation>St. Clement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC021">
        <xs:annotation>
          <xs:documentation>St. Erme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC022">
        <xs:annotation>
          <xs:documentation>St. Just-in-Roseland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC023">
        <xs:annotation>
          <xs:documentation>St. Michael Penkevil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC024">
        <xs:annotation>
          <xs:documentation>St. Newlyn East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC025">
        <xs:annotation>
          <xs:documentation>Tregoney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC026">
        <xs:annotation>
          <xs:documentation>Truro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UC027">
        <xs:annotation>
          <xs:documentation>Veryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD001">
        <xs:annotation>
          <xs:documentation>Breage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD002">
        <xs:annotation>
          <xs:documentation>Budock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD003">
        <xs:annotation>
          <xs:documentation>Camborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD004">
        <xs:annotation>
          <xs:documentation>Carharrack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD005">
        <xs:annotation>
          <xs:documentation>Carn Brea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD006">
        <xs:annotation>
          <xs:documentation>Constantine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD007">
        <xs:annotation>
          <xs:documentation>Crowan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD008">
        <xs:annotation>
          <xs:documentation>Cury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD009">
        <xs:annotation>
          <xs:documentation>Germoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD010">
        <xs:annotation>
          <xs:documentation>Grade-Ruan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD011">
        <xs:annotation>
          <xs:documentation>Gunwalloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD012">
        <xs:annotation>
          <xs:documentation>Gweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD013">
        <xs:annotation>
          <xs:documentation>Helston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD014">
        <xs:annotation>
          <xs:documentation>Illogan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD015">
        <xs:annotation>
          <xs:documentation>Landewednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD016">
        <xs:annotation>
          <xs:documentation>Lanner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD017">
        <xs:annotation>
          <xs:documentation>Mabe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD018">
        <xs:annotation>
          <xs:documentation>Manaccan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD019">
        <xs:annotation>
          <xs:documentation>Mawgan-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD020">
        <xs:annotation>
          <xs:documentation>Mawnan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD021">
        <xs:annotation>
          <xs:documentation>Mullion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD022">
        <xs:annotation>
          <xs:documentation>Porthleven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD023">
        <xs:annotation>
          <xs:documentation>Portreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD024">
        <xs:annotation>
          <xs:documentation>Redruth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD025">
        <xs:annotation>
          <xs:documentation>St. Anthony-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD026">
        <xs:annotation>
          <xs:documentation>St. Day</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD027">
        <xs:annotation>
          <xs:documentation>St. Gluvias</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD028">
        <xs:annotation>
          <xs:documentation>St. Keverne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD029">
        <xs:annotation>
          <xs:documentation>St. Martin-in-Meneage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD030">
        <xs:annotation>
          <xs:documentation>Sithney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD031">
        <xs:annotation>
          <xs:documentation>Stithians</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UD032">
        <xs:annotation>
          <xs:documentation>Wendron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE001">
        <xs:annotation>
          <xs:documentation>Advent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE002">
        <xs:annotation>
          <xs:documentation>Altarnun</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE003">
        <xs:annotation>
          <xs:documentation>Blisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE004">
        <xs:annotation>
          <xs:documentation>Bodmin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE005">
        <xs:annotation>
          <xs:documentation>Boyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE006">
        <xs:annotation>
          <xs:documentation>Bude-Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE007">
        <xs:annotation>
          <xs:documentation>Camelford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE008">
        <xs:annotation>
          <xs:documentation>Cardinham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE009">
        <xs:annotation>
          <xs:documentation>Davidstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE010">
        <xs:annotation>
          <xs:documentation>Egloshayle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE011">
        <xs:annotation>
          <xs:documentation>Egloskerry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE012">
        <xs:annotation>
          <xs:documentation>Forrabury and Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE013">
        <xs:annotation>
          <xs:documentation>Helland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE014">
        <xs:annotation>
          <xs:documentation>Jacobstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE015">
        <xs:annotation>
          <xs:documentation>Kilkhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE016">
        <xs:annotation>
          <xs:documentation>Laneast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE017">
        <xs:annotation>
          <xs:documentation>Lanhydrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE018">
        <xs:annotation>
          <xs:documentation>Lanivet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE019">
        <xs:annotation>
          <xs:documentation>Launcells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE020">
        <xs:annotation>
          <xs:documentation>Launceston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE021">
        <xs:annotation>
          <xs:documentation>Lawhitton Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE022">
        <xs:annotation>
          <xs:documentation>Lesnewth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE023">
        <xs:annotation>
          <xs:documentation>Lewannick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE024">
        <xs:annotation>
          <xs:documentation>Lezant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE025">
        <xs:annotation>
          <xs:documentation>Marhamchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE026">
        <xs:annotation>
          <xs:documentation>Michaelstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE027">
        <xs:annotation>
          <xs:documentation>Morwenstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE028">
        <xs:annotation>
          <xs:documentation>North Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE029">
        <xs:annotation>
          <xs:documentation>North Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE030">
        <xs:annotation>
          <xs:documentation>North Tamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE031">
        <xs:annotation>
          <xs:documentation>Otterham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE032">
        <xs:annotation>
          <xs:documentation>Padstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE033">
        <xs:annotation>
          <xs:documentation>Poundstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE034">
        <xs:annotation>
          <xs:documentation>St. Breock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE035">
        <xs:annotation>
          <xs:documentation>St. Breward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE036">
        <xs:annotation>
          <xs:documentation>St. Clether</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE037">
        <xs:annotation>
          <xs:documentation>St. Endellion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE038">
        <xs:annotation>
          <xs:documentation>St. Ervan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE039">
        <xs:annotation>
          <xs:documentation>St. Eval</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE040">
        <xs:annotation>
          <xs:documentation>St. Gennys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE041">
        <xs:annotation>
          <xs:documentation>St. Issey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE042">
        <xs:annotation>
          <xs:documentation>St. Juliot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE043">
        <xs:annotation>
          <xs:documentation>St. Kew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE044">
        <xs:annotation>
          <xs:documentation>St. Mabyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE045">
        <xs:annotation>
          <xs:documentation>St. Merryn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE046">
        <xs:annotation>
          <xs:documentation>St. Minver Highlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE047">
        <xs:annotation>
          <xs:documentation>St. Minver Lowlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE048">
        <xs:annotation>
          <xs:documentation>St. Stephens by Launceston Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE049">
        <xs:annotation>
          <xs:documentation>St. Teath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE050">
        <xs:annotation>
          <xs:documentation>St. Thomas the Apostle Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE051">
        <xs:annotation>
          <xs:documentation>St. Tudy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE052">
        <xs:annotation>
          <xs:documentation>South Petherwin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE053">
        <xs:annotation>
          <xs:documentation>Stokeclimsland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE054">
        <xs:annotation>
          <xs:documentation>Tintagel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE055">
        <xs:annotation>
          <xs:documentation>Tremaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE056">
        <xs:annotation>
          <xs:documentation>Treneglos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE057">
        <xs:annotation>
          <xs:documentation>Tresmeer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE058">
        <xs:annotation>
          <xs:documentation>Trevalga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE059">
        <xs:annotation>
          <xs:documentation>Trewen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE060">
        <xs:annotation>
          <xs:documentation>Wadebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE061">
        <xs:annotation>
          <xs:documentation>Warbstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE062">
        <xs:annotation>
          <xs:documentation>Week St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE063">
        <xs:annotation>
          <xs:documentation>Werrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE064">
        <xs:annotation>
          <xs:documentation>Whitstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UE065">
        <xs:annotation>
          <xs:documentation>Withiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF001">
        <xs:annotation>
          <xs:documentation>Gwinear-Gwithian</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF002">
        <xs:annotation>
          <xs:documentation>Hayle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF003">
        <xs:annotation>
          <xs:documentation>Ludgvan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF004">
        <xs:annotation>
          <xs:documentation>Madron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF005">
        <xs:annotation>
          <xs:documentation>Marazion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF006">
        <xs:annotation>
          <xs:documentation>Morvah</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF007">
        <xs:annotation>
          <xs:documentation>Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF008">
        <xs:annotation>
          <xs:documentation>Penzance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF009">
        <xs:annotation>
          <xs:documentation>Perranuthnoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF010">
        <xs:annotation>
          <xs:documentation>St. Buryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF011">
        <xs:annotation>
          <xs:documentation>St. Erth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF012">
        <xs:annotation>
          <xs:documentation>St. Hilary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF013">
        <xs:annotation>
          <xs:documentation>St. Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF014">
        <xs:annotation>
          <xs:documentation>St. Just</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF015">
        <xs:annotation>
          <xs:documentation>St. Levan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF016">
        <xs:annotation>
          <xs:documentation>St. Michael's Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF017">
        <xs:annotation>
          <xs:documentation>Sancreed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF018">
        <xs:annotation>
          <xs:documentation>Sennen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF019">
        <xs:annotation>
          <xs:documentation>Towednack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UF020">
        <xs:annotation>
          <xs:documentation>Zennor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG001">
        <xs:annotation>
          <xs:documentation>Colan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG002">
        <xs:annotation>
          <xs:documentation>Crantock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG003">
        <xs:annotation>
          <xs:documentation>Fowey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG004">
        <xs:annotation>
          <xs:documentation>Grampound with Creed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG005">
        <xs:annotation>
          <xs:documentation>Lanlivery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG006">
        <xs:annotation>
          <xs:documentation>Lostwithiel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG007">
        <xs:annotation>
          <xs:documentation>Luxulyan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG008">
        <xs:annotation>
          <xs:documentation>Mawgan-in-Pydar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG009">
        <xs:annotation>
          <xs:documentation>Mevagissey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG010">
        <xs:annotation>
          <xs:documentation>Newquay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG011">
        <xs:annotation>
          <xs:documentation>Roche</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG012">
        <xs:annotation>
          <xs:documentation>St. Blaise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG013">
        <xs:annotation>
          <xs:documentation>St. Columb Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG014">
        <xs:annotation>
          <xs:documentation>St. Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG015">
        <xs:annotation>
          <xs:documentation>St. Enoder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG016">
        <xs:annotation>
          <xs:documentation>St. Ewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG017">
        <xs:annotation>
          <xs:documentation>St. Goran</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG018">
        <xs:annotation>
          <xs:documentation>St. Mewan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG019">
        <xs:annotation>
          <xs:documentation>St. Michael Caerhays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG020">
        <xs:annotation>
          <xs:documentation>St. Sampson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG021">
        <xs:annotation>
          <xs:documentation>St. Stephen-in-Brannel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG022">
        <xs:annotation>
          <xs:documentation>St. Wenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG023">
        <xs:annotation>
          <xs:documentation>Treverbyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UG024">
        <xs:annotation>
          <xs:documentation>Tywardreath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH001">
        <xs:annotation>
          <xs:documentation>Bryher</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH002">
        <xs:annotation>
          <xs:documentation>St. Agnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH003">
        <xs:annotation>
          <xs:documentation>St. Martin's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH004">
        <xs:annotation>
          <xs:documentation>St. Mary's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15UH005">
        <xs:annotation>
          <xs:documentation>Tresco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB001">
        <xs:annotation>
          <xs:documentation>Above Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB002">
        <xs:annotation>
          <xs:documentation>Aikton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB003">
        <xs:annotation>
          <xs:documentation>Allhallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB004">
        <xs:annotation>
          <xs:documentation>Allonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB005">
        <xs:annotation>
          <xs:documentation>Aspatria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB006">
        <xs:annotation>
          <xs:documentation>Bassenthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB007">
        <xs:annotation>
          <xs:documentation>Bewaldeth and Snittlegarth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB008">
        <xs:annotation>
          <xs:documentation>Blennerhasset and Torpenhow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB009">
        <xs:annotation>
          <xs:documentation>Blindbothel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB010">
        <xs:annotation>
          <xs:documentation>Blindcrake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB011">
        <xs:annotation>
          <xs:documentation>Boltons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB012">
        <xs:annotation>
          <xs:documentation>Borrowdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB013">
        <xs:annotation>
          <xs:documentation>Bothel and Threapland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB014">
        <xs:annotation>
          <xs:documentation>Bowness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB015">
        <xs:annotation>
          <xs:documentation>Bridekirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB016">
        <xs:annotation>
          <xs:documentation>Brigham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB017">
        <xs:annotation>
          <xs:documentation>Bromfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB018">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB019">
        <xs:annotation>
          <xs:documentation>Broughton Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB020">
        <xs:annotation>
          <xs:documentation>Buttermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB021">
        <xs:annotation>
          <xs:documentation>Caldbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB022">
        <xs:annotation>
          <xs:documentation>Camerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB023">
        <xs:annotation>
          <xs:documentation>Cockermouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB024">
        <xs:annotation>
          <xs:documentation>Crosscanonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB025">
        <xs:annotation>
          <xs:documentation>Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB026">
        <xs:annotation>
          <xs:documentation>Dearham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB027">
        <xs:annotation>
          <xs:documentation>Dundraw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB028">
        <xs:annotation>
          <xs:documentation>Embleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB029">
        <xs:annotation>
          <xs:documentation>Gilcrux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB030">
        <xs:annotation>
          <xs:documentation>Great Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB031">
        <xs:annotation>
          <xs:documentation>Greysouthen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB032">
        <xs:annotation>
          <xs:documentation>Hayton and Mealo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB033">
        <xs:annotation>
          <xs:documentation>Holme Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB034">
        <xs:annotation>
          <xs:documentation>Holme East Waver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB035">
        <xs:annotation>
          <xs:documentation>Holme Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB036">
        <xs:annotation>
          <xs:documentation>Holme St Cuthbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB037">
        <xs:annotation>
          <xs:documentation>Ireby and Uldale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB038">
        <xs:annotation>
          <xs:documentation>Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB039">
        <xs:annotation>
          <xs:documentation>Kirkbampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB040">
        <xs:annotation>
          <xs:documentation>Kirkbride</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB041">
        <xs:annotation>
          <xs:documentation>Little Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB042">
        <xs:annotation>
          <xs:documentation>Lorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB043">
        <xs:annotation>
          <xs:documentation>Loweswater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB044">
        <xs:annotation>
          <xs:documentation>Maryport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB045">
        <xs:annotation>
          <xs:documentation>Oughterside and Allerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB046">
        <xs:annotation>
          <xs:documentation>Papcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB047">
        <xs:annotation>
          <xs:documentation>Plumbland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB048">
        <xs:annotation>
          <xs:documentation>St John's Castlerigg and Wythburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB049">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB050">
        <xs:annotation>
          <xs:documentation>Sebergham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB051">
        <xs:annotation>
          <xs:documentation>Setmurthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB052">
        <xs:annotation>
          <xs:documentation>Silloth-on-Solway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB053">
        <xs:annotation>
          <xs:documentation>Thursby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB054">
        <xs:annotation>
          <xs:documentation>Underskiddaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB055">
        <xs:annotation>
          <xs:documentation>Waverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB056">
        <xs:annotation>
          <xs:documentation>Westnewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB057">
        <xs:annotation>
          <xs:documentation>Westward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB058">
        <xs:annotation>
          <xs:documentation>Wigton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB059">
        <xs:annotation>
          <xs:documentation>Winscales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB060">
        <xs:annotation>
          <xs:documentation>Woodside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB061">
        <xs:annotation>
          <xs:documentation>Workington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB062">
        <xs:annotation>
          <xs:documentation>Wythop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UB063">
        <xs:annotation>
          <xs:documentation>Lands common to Holme Abbey, Holme Low and Holme St Cuthbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC001">
        <xs:annotation>
          <xs:documentation>Askam and Ireleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC002">
        <xs:annotation>
          <xs:documentation>Dalton Town with Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UC003">
        <xs:annotation>
          <xs:documentation>Lindal and Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD001">
        <xs:annotation>
          <xs:documentation>Arthuret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD002">
        <xs:annotation>
          <xs:documentation>Askerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD003">
        <xs:annotation>
          <xs:documentation>Beaumont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD004">
        <xs:annotation>
          <xs:documentation>Bewcastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD005">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD006">
        <xs:annotation>
          <xs:documentation>Burgh by Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD007">
        <xs:annotation>
          <xs:documentation>Burtholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD008">
        <xs:annotation>
          <xs:documentation>Carlatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD009">
        <xs:annotation>
          <xs:documentation>Castle Carrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD010">
        <xs:annotation>
          <xs:documentation>Cummersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD011">
        <xs:annotation>
          <xs:documentation>Cumrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD012">
        <xs:annotation>
          <xs:documentation>Cumwhitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD013">
        <xs:annotation>
          <xs:documentation>Dalston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD014">
        <xs:annotation>
          <xs:documentation>Farlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD016">
        <xs:annotation>
          <xs:documentation>Hayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD017">
        <xs:annotation>
          <xs:documentation>Hethersgill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD018">
        <xs:annotation>
          <xs:documentation>Irthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD019">
        <xs:annotation>
          <xs:documentation>Kingmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD020">
        <xs:annotation>
          <xs:documentation>Kingwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD021">
        <xs:annotation>
          <xs:documentation>Kirkandrews</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD022">
        <xs:annotation>
          <xs:documentation>Kirklinton Middle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD023">
        <xs:annotation>
          <xs:documentation>Midgeholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD024">
        <xs:annotation>
          <xs:documentation>Nether Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD025">
        <xs:annotation>
          <xs:documentation>Nicholforest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD026">
        <xs:annotation>
          <xs:documentation>Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD027">
        <xs:annotation>
          <xs:documentation>Rockcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD028">
        <xs:annotation>
          <xs:documentation>St Cuthbert Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD029">
        <xs:annotation>
          <xs:documentation>Scaleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD030">
        <xs:annotation>
          <xs:documentation>Solport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD031">
        <xs:annotation>
          <xs:documentation>Stanwix Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD032">
        <xs:annotation>
          <xs:documentation>Stapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD033">
        <xs:annotation>
          <xs:documentation>Upper Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD034">
        <xs:annotation>
          <xs:documentation>Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD035">
        <xs:annotation>
          <xs:documentation>Waterhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD036">
        <xs:annotation>
          <xs:documentation>Westlinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UD037">
        <xs:annotation>
          <xs:documentation>Wetheral</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE001">
        <xs:annotation>
          <xs:documentation>Arlecdon and Frizington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE002">
        <xs:annotation>
          <xs:documentation>Bootle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE003">
        <xs:annotation>
          <xs:documentation>Cleator Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE004">
        <xs:annotation>
          <xs:documentation>Distington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE005">
        <xs:annotation>
          <xs:documentation>Drigg and Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE006">
        <xs:annotation>
          <xs:documentation>Egremont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE007">
        <xs:annotation>
          <xs:documentation>Ennerdale and Kinniside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE008">
        <xs:annotation>
          <xs:documentation>Eskdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE009">
        <xs:annotation>
          <xs:documentation>Gosforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE010">
        <xs:annotation>
          <xs:documentation>Haile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE011">
        <xs:annotation>
          <xs:documentation>Irton with Santon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE012">
        <xs:annotation>
          <xs:documentation>Lamplugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE013">
        <xs:annotation>
          <xs:documentation>Lowca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE014">
        <xs:annotation>
          <xs:documentation>Lowside Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE015">
        <xs:annotation>
          <xs:documentation>Millom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE016">
        <xs:annotation>
          <xs:documentation>Millom Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE017">
        <xs:annotation>
          <xs:documentation>Moresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE018">
        <xs:annotation>
          <xs:documentation>Muncaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE019">
        <xs:annotation>
          <xs:documentation>Wasdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE020">
        <xs:annotation>
          <xs:documentation>Parton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE021">
        <xs:annotation>
          <xs:documentation>Ponsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE022">
        <xs:annotation>
          <xs:documentation>St. Bees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE023">
        <xs:annotation>
          <xs:documentation>St. Bridget Beckermet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE024">
        <xs:annotation>
          <xs:documentation>St. John Beckermet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE025">
        <xs:annotation>
          <xs:documentation>Seascale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE026">
        <xs:annotation>
          <xs:documentation>Ulpha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE027">
        <xs:annotation>
          <xs:documentation>Waberthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE028">
        <xs:annotation>
          <xs:documentation>Weddicar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UE029">
        <xs:annotation>
          <xs:documentation>Whicham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF001">
        <xs:annotation>
          <xs:documentation>Ainstable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF002">
        <xs:annotation>
          <xs:documentation>Alston Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF003">
        <xs:annotation>
          <xs:documentation>Appleby-in-Westmorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF004">
        <xs:annotation>
          <xs:documentation>Asby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF005">
        <xs:annotation>
          <xs:documentation>Askham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF006">
        <xs:annotation>
          <xs:documentation>Bampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF007">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF008">
        <xs:annotation>
          <xs:documentation>Bolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF009">
        <xs:annotation>
          <xs:documentation>Brough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF010">
        <xs:annotation>
          <xs:documentation>Brougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF011">
        <xs:annotation>
          <xs:documentation>Brough Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF012">
        <xs:annotation>
          <xs:documentation>Castle Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF013">
        <xs:annotation>
          <xs:documentation>Catterlen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF014">
        <xs:annotation>
          <xs:documentation>Cliburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF015">
        <xs:annotation>
          <xs:documentation>Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF016">
        <xs:annotation>
          <xs:documentation>Colby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF017">
        <xs:annotation>
          <xs:documentation>Crackenthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF018">
        <xs:annotation>
          <xs:documentation>Crosby Garrett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF019">
        <xs:annotation>
          <xs:documentation>Crosby Ravensworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF020">
        <xs:annotation>
          <xs:documentation>Culgaith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF021">
        <xs:annotation>
          <xs:documentation>Dacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF022">
        <xs:annotation>
          <xs:documentation>Dufton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF023">
        <xs:annotation>
          <xs:documentation>Glassonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF024">
        <xs:annotation>
          <xs:documentation>Great Salkeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF025">
        <xs:annotation>
          <xs:documentation>Great Strickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF026">
        <xs:annotation>
          <xs:documentation>Greystoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF027">
        <xs:annotation>
          <xs:documentation>Hartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF028">
        <xs:annotation>
          <xs:documentation>Helbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF029">
        <xs:annotation>
          <xs:documentation>Hesket</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF030">
        <xs:annotation>
          <xs:documentation>Hoff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF031">
        <xs:annotation>
          <xs:documentation>Hunsonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF032">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF033">
        <xs:annotation>
          <xs:documentation>Kaber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF034">
        <xs:annotation>
          <xs:documentation>King's Meaburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF035">
        <xs:annotation>
          <xs:documentation>Kirkby Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF036">
        <xs:annotation>
          <xs:documentation>Kirkby Thore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF037">
        <xs:annotation>
          <xs:documentation>Kirkoswald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF038">
        <xs:annotation>
          <xs:documentation>Langwathby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF039">
        <xs:annotation>
          <xs:documentation>Lazonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF040">
        <xs:annotation>
          <xs:documentation>Little Strickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF041">
        <xs:annotation>
          <xs:documentation>Long Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF042">
        <xs:annotation>
          <xs:documentation>Lowther</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF043">
        <xs:annotation>
          <xs:documentation>Mallerstang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF044">
        <xs:annotation>
          <xs:documentation>Martindale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF045">
        <xs:annotation>
          <xs:documentation>Matterdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF046">
        <xs:annotation>
          <xs:documentation>Milburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF047">
        <xs:annotation>
          <xs:documentation>Morland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF048">
        <xs:annotation>
          <xs:documentation>Mungrisdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF049">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF050">
        <xs:annotation>
          <xs:documentation>Musgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF051">
        <xs:annotation>
          <xs:documentation>Nateby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF052">
        <xs:annotation>
          <xs:documentation>Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF053">
        <xs:annotation>
          <xs:documentation>Newby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF054">
        <xs:annotation>
          <xs:documentation>Ormside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF055">
        <xs:annotation>
          <xs:documentation>Orton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF056">
        <xs:annotation>
          <xs:documentation>Ousby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF057">
        <xs:annotation>
          <xs:documentation>Patterdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF058">
        <xs:annotation>
          <xs:documentation>Ravenstonedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF059">
        <xs:annotation>
          <xs:documentation>Shap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF060">
        <xs:annotation>
          <xs:documentation>Shap Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF061">
        <xs:annotation>
          <xs:documentation>Skelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF062">
        <xs:annotation>
          <xs:documentation>Sleagill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF063">
        <xs:annotation>
          <xs:documentation>Sockbridge and Tirril</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF064">
        <xs:annotation>
          <xs:documentation>Soulby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF065">
        <xs:annotation>
          <xs:documentation>Stainmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF066">
        <xs:annotation>
          <xs:documentation>Tebay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF067">
        <xs:annotation>
          <xs:documentation>Temple Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF068">
        <xs:annotation>
          <xs:documentation>Threlkeld</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF069">
        <xs:annotation>
          <xs:documentation>Thrimby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF070">
        <xs:annotation>
          <xs:documentation>Waitby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF071">
        <xs:annotation>
          <xs:documentation>Warcop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF072">
        <xs:annotation>
          <xs:documentation>Wharton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF073">
        <xs:annotation>
          <xs:documentation>Winton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UF074">
        <xs:annotation>
          <xs:documentation>Yanwath and Eamont Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG001">
        <xs:annotation>
          <xs:documentation>Aldingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG002">
        <xs:annotation>
          <xs:documentation>Angerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG003">
        <xs:annotation>
          <xs:documentation>Arnside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG004">
        <xs:annotation>
          <xs:documentation>Barbon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG005">
        <xs:annotation>
          <xs:documentation>Beetham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG006">
        <xs:annotation>
          <xs:documentation>Blawith and Subberthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG007">
        <xs:annotation>
          <xs:documentation>Broughton East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG008">
        <xs:annotation>
          <xs:documentation>Broughton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG009">
        <xs:annotation>
          <xs:documentation>Burton-in-Kendal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG010">
        <xs:annotation>
          <xs:documentation>Cartmel Fell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG011">
        <xs:annotation>
          <xs:documentation>Casterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG012">
        <xs:annotation>
          <xs:documentation>Claife</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG013">
        <xs:annotation>
          <xs:documentation>Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG014">
        <xs:annotation>
          <xs:documentation>Coniston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG015">
        <xs:annotation>
          <xs:documentation>Crook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG016">
        <xs:annotation>
          <xs:documentation>Crosthwaite and Lyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG017">
        <xs:annotation>
          <xs:documentation>Dent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG018">
        <xs:annotation>
          <xs:documentation>Docker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG019">
        <xs:annotation>
          <xs:documentation>Dunnerdale-with-Seathwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG020">
        <xs:annotation>
          <xs:documentation>Egton with Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG021">
        <xs:annotation>
          <xs:documentation>Fawcett Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG022">
        <xs:annotation>
          <xs:documentation>Firbank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG023">
        <xs:annotation>
          <xs:documentation>Garsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG024">
        <xs:annotation>
          <xs:documentation>Grange-over-Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG025">
        <xs:annotation>
          <xs:documentation>Grayrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG026">
        <xs:annotation>
          <xs:documentation>Haverthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG027">
        <xs:annotation>
          <xs:documentation>Hawkshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG028">
        <xs:annotation>
          <xs:documentation>Helsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG029">
        <xs:annotation>
          <xs:documentation>Heversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG030">
        <xs:annotation>
          <xs:documentation>Hincaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG031">
        <xs:annotation>
          <xs:documentation>Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG032">
        <xs:annotation>
          <xs:documentation>Hugill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG033">
        <xs:annotation>
          <xs:documentation>Hutton Roof</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG034">
        <xs:annotation>
          <xs:documentation>Kendal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG035">
        <xs:annotation>
          <xs:documentation>Kentmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG036">
        <xs:annotation>
          <xs:documentation>Killington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG037">
        <xs:annotation>
          <xs:documentation>Kirkby Ireleth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG038">
        <xs:annotation>
          <xs:documentation>Kirkby Lonsdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG039">
        <xs:annotation>
          <xs:documentation>Lakes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG040">
        <xs:annotation>
          <xs:documentation>Lambrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG041">
        <xs:annotation>
          <xs:documentation>Levens</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG042">
        <xs:annotation>
          <xs:documentation>Longsleddale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG043">
        <xs:annotation>
          <xs:documentation>Lower Allithwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG044">
        <xs:annotation>
          <xs:documentation>Lower Holker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG045">
        <xs:annotation>
          <xs:documentation>Lowick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG046">
        <xs:annotation>
          <xs:documentation>Lupton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG047">
        <xs:annotation>
          <xs:documentation>Mansergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG048">
        <xs:annotation>
          <xs:documentation>Mansriggs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG049">
        <xs:annotation>
          <xs:documentation>Meathop and Ulpha</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG050">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG051">
        <xs:annotation>
          <xs:documentation>Milnthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG052">
        <xs:annotation>
          <xs:documentation>Natland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG053">
        <xs:annotation>
          <xs:documentation>Nether Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG054">
        <xs:annotation>
          <xs:documentation>New Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG055">
        <xs:annotation>
          <xs:documentation>Old Hutton and Holmescales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG056">
        <xs:annotation>
          <xs:documentation>Osmotherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG057">
        <xs:annotation>
          <xs:documentation>Over Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG058">
        <xs:annotation>
          <xs:documentation>Pennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG059">
        <xs:annotation>
          <xs:documentation>Preston Patrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG060">
        <xs:annotation>
          <xs:documentation>Preston Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG061">
        <xs:annotation>
          <xs:documentation>Satterthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG062">
        <xs:annotation>
          <xs:documentation>Scalthwaiterigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG063">
        <xs:annotation>
          <xs:documentation>Sedbergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG064">
        <xs:annotation>
          <xs:documentation>Sedgwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG065">
        <xs:annotation>
          <xs:documentation>Skelsmergh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG066">
        <xs:annotation>
          <xs:documentation>Skelwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG067">
        <xs:annotation>
          <xs:documentation>Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG068">
        <xs:annotation>
          <xs:documentation>Staveley-in-Cartmel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG069">
        <xs:annotation>
          <xs:documentation>Strickland Ketel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG070">
        <xs:annotation>
          <xs:documentation>Strickland Roger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG071">
        <xs:annotation>
          <xs:documentation>Torver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG072">
        <xs:annotation>
          <xs:documentation>Ulverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG073">
        <xs:annotation>
          <xs:documentation>Underbarrow and Bradleyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG074">
        <xs:annotation>
          <xs:documentation>Upper Allithwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG075">
        <xs:annotation>
          <xs:documentation>Urswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG076">
        <xs:annotation>
          <xs:documentation>Whinfell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG077">
        <xs:annotation>
          <xs:documentation>Whitwell and Selside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG078">
        <xs:annotation>
          <xs:documentation>Windermere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16UG079">
        <xs:annotation>
          <xs:documentation>Witherslack</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB001">
        <xs:annotation>
          <xs:documentation>Aldercar and Langley Mill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB002">
        <xs:annotation>
          <xs:documentation>Alderwasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB003">
        <xs:annotation>
          <xs:documentation>Alfreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB004">
        <xs:annotation>
          <xs:documentation>Ashleyhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB005">
        <xs:annotation>
          <xs:documentation>Belper</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB006">
        <xs:annotation>
          <xs:documentation>Codnor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB007">
        <xs:annotation>
          <xs:documentation>Crich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB008">
        <xs:annotation>
          <xs:documentation>Denby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB009">
        <xs:annotation>
          <xs:documentation>Dethick, Lea and Holloway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB010">
        <xs:annotation>
          <xs:documentation>Duffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB011">
        <xs:annotation>
          <xs:documentation>Hazelwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB012">
        <xs:annotation>
          <xs:documentation>Heanor and Loscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB013">
        <xs:annotation>
          <xs:documentation>Holbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB014">
        <xs:annotation>
          <xs:documentation>Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB015">
        <xs:annotation>
          <xs:documentation>Horsley Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB016">
        <xs:annotation>
          <xs:documentation>Idridgehay and Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB017">
        <xs:annotation>
          <xs:documentation>Ironville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB018">
        <xs:annotation>
          <xs:documentation>Kedleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB019">
        <xs:annotation>
          <xs:documentation>Kilburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB020">
        <xs:annotation>
          <xs:documentation>Kirk Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB021">
        <xs:annotation>
          <xs:documentation>Mackworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB022">
        <xs:annotation>
          <xs:documentation>Mapperley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB023">
        <xs:annotation>
          <xs:documentation>Pentrich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB024">
        <xs:annotation>
          <xs:documentation>Quarndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB025">
        <xs:annotation>
          <xs:documentation>Ravensdale Park</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB026">
        <xs:annotation>
          <xs:documentation>Ripley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB027">
        <xs:annotation>
          <xs:documentation>Shipley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB028">
        <xs:annotation>
          <xs:documentation>Shottle and Postern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB029">
        <xs:annotation>
          <xs:documentation>Smalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB030">
        <xs:annotation>
          <xs:documentation>Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB031">
        <xs:annotation>
          <xs:documentation>South Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB032">
        <xs:annotation>
          <xs:documentation>Swanwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB033">
        <xs:annotation>
          <xs:documentation>Turnditch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB034">
        <xs:annotation>
          <xs:documentation>Weston Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UB035">
        <xs:annotation>
          <xs:documentation>Windley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC001">
        <xs:annotation>
          <xs:documentation>Ault Hucknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC002">
        <xs:annotation>
          <xs:documentation>Barlborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC003">
        <xs:annotation>
          <xs:documentation>Blackwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC004">
        <xs:annotation>
          <xs:documentation>Clowne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC005">
        <xs:annotation>
          <xs:documentation>Elmton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC006">
        <xs:annotation>
          <xs:documentation>Glapwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC007">
        <xs:annotation>
          <xs:documentation>Old Bolsover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC008">
        <xs:annotation>
          <xs:documentation>Pinxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC009">
        <xs:annotation>
          <xs:documentation>Pleasley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC010">
        <xs:annotation>
          <xs:documentation>Scarcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC011">
        <xs:annotation>
          <xs:documentation>Shirebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC012">
        <xs:annotation>
          <xs:documentation>South Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC013">
        <xs:annotation>
          <xs:documentation>Tibshelf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UC014">
        <xs:annotation>
          <xs:documentation>Whitwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UD001">
        <xs:annotation>
          <xs:documentation>Brimington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UD002">
        <xs:annotation>
          <xs:documentation>Staveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF001">
        <xs:annotation>
          <xs:documentation>Abney and Abney Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF002">
        <xs:annotation>
          <xs:documentation>Aldwark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF003">
        <xs:annotation>
          <xs:documentation>Alkmonton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF004">
        <xs:annotation>
          <xs:documentation>Ashbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF005">
        <xs:annotation>
          <xs:documentation>Ashford in the Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF006">
        <xs:annotation>
          <xs:documentation>Atlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF007">
        <xs:annotation>
          <xs:documentation>Bakewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF008">
        <xs:annotation>
          <xs:documentation>Ballidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF009">
        <xs:annotation>
          <xs:documentation>Baslow and Bubnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF010">
        <xs:annotation>
          <xs:documentation>Beeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF011">
        <xs:annotation>
          <xs:documentation>Biggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF012">
        <xs:annotation>
          <xs:documentation>Birchover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF013">
        <xs:annotation>
          <xs:documentation>Blackwell in the Peak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF014">
        <xs:annotation>
          <xs:documentation>Bonsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF015">
        <xs:annotation>
          <xs:documentation>Boylestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF016">
        <xs:annotation>
          <xs:documentation>Bradbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF017">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF018">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF019">
        <xs:annotation>
          <xs:documentation>Brailsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF020">
        <xs:annotation>
          <xs:documentation>Brassington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF021">
        <xs:annotation>
          <xs:documentation>Brushfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF022">
        <xs:annotation>
          <xs:documentation>Callow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF023">
        <xs:annotation>
          <xs:documentation>Calver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF024">
        <xs:annotation>
          <xs:documentation>Carsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF025">
        <xs:annotation>
          <xs:documentation>Chatsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF026">
        <xs:annotation>
          <xs:documentation>Chelmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF027">
        <xs:annotation>
          <xs:documentation>Clifton and Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF028">
        <xs:annotation>
          <xs:documentation>Cromford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF029">
        <xs:annotation>
          <xs:documentation>Cubley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF030">
        <xs:annotation>
          <xs:documentation>Curbar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF031">
        <xs:annotation>
          <xs:documentation>Darley Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF032">
        <xs:annotation>
          <xs:documentation>Doveridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF033">
        <xs:annotation>
          <xs:documentation>Eaton and Alsop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF034">
        <xs:annotation>
          <xs:documentation>Edensor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF035">
        <xs:annotation>
          <xs:documentation>Edlaston and Wyaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF036">
        <xs:annotation>
          <xs:documentation>Elton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF037">
        <xs:annotation>
          <xs:documentation>Eyam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF038">
        <xs:annotation>
          <xs:documentation>Fenny Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF039">
        <xs:annotation>
          <xs:documentation>Flagg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF040">
        <xs:annotation>
          <xs:documentation>Foolow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF041">
        <xs:annotation>
          <xs:documentation>Froggatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF042">
        <xs:annotation>
          <xs:documentation>Gratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF043">
        <xs:annotation>
          <xs:documentation>Great Hucklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF044">
        <xs:annotation>
          <xs:documentation>Great Longstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF045">
        <xs:annotation>
          <xs:documentation>Grindleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF046">
        <xs:annotation>
          <xs:documentation>Grindlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF047">
        <xs:annotation>
          <xs:documentation>Harthill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF048">
        <xs:annotation>
          <xs:documentation>Hartington Middle Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF049">
        <xs:annotation>
          <xs:documentation>Hartington Nether Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF050">
        <xs:annotation>
          <xs:documentation>Hartington Town Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF051">
        <xs:annotation>
          <xs:documentation>Hassop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF052">
        <xs:annotation>
          <xs:documentation>Hathersage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF053">
        <xs:annotation>
          <xs:documentation>Hazlebadge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF054">
        <xs:annotation>
          <xs:documentation>Highlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF055">
        <xs:annotation>
          <xs:documentation>Hognaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF056">
        <xs:annotation>
          <xs:documentation>Hollington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF057">
        <xs:annotation>
          <xs:documentation>Hopton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF058">
        <xs:annotation>
          <xs:documentation>Hulland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF059">
        <xs:annotation>
          <xs:documentation>Hulland Ward</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF060">
        <xs:annotation>
          <xs:documentation>Hungry Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF061">
        <xs:annotation>
          <xs:documentation>Ible</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF062">
        <xs:annotation>
          <xs:documentation>Ivonbrook Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF063">
        <xs:annotation>
          <xs:documentation>Kirk Ireton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF064">
        <xs:annotation>
          <xs:documentation>Kniveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF065">
        <xs:annotation>
          <xs:documentation>Lea Hall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF066">
        <xs:annotation>
          <xs:documentation>Little Hucklow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF067">
        <xs:annotation>
          <xs:documentation>Little Longstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF068">
        <xs:annotation>
          <xs:documentation>Litton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF069">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF070">
        <xs:annotation>
          <xs:documentation>Mapleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF071">
        <xs:annotation>
          <xs:documentation>Marston Montgomery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF072">
        <xs:annotation>
          <xs:documentation>Matlock Bath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF073">
        <xs:annotation>
          <xs:documentation>Matlock Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF074">
        <xs:annotation>
          <xs:documentation>Mercaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF075">
        <xs:annotation>
          <xs:documentation>Middleton and Smerrill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF076">
        <xs:annotation>
          <xs:documentation>Monyash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF077">
        <xs:annotation>
          <xs:documentation>Nether Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF078">
        <xs:annotation>
          <xs:documentation>Newton Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF079">
        <xs:annotation>
          <xs:documentation>Norbury and Roston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF080">
        <xs:annotation>
          <xs:documentation>Northwood and Tinkersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF081">
        <xs:annotation>
          <xs:documentation>Offcote and Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF082">
        <xs:annotation>
          <xs:documentation>Offerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF083">
        <xs:annotation>
          <xs:documentation>Osmaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF084">
        <xs:annotation>
          <xs:documentation>Outseats</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF085">
        <xs:annotation>
          <xs:documentation>Over Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF086">
        <xs:annotation>
          <xs:documentation>Parwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF087">
        <xs:annotation>
          <xs:documentation>Pilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF088">
        <xs:annotation>
          <xs:documentation>Rodsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF089">
        <xs:annotation>
          <xs:documentation>Rowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF090">
        <xs:annotation>
          <xs:documentation>Rowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF091">
        <xs:annotation>
          <xs:documentation>Sheldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF092">
        <xs:annotation>
          <xs:documentation>Shirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF093">
        <xs:annotation>
          <xs:documentation>Snelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF094">
        <xs:annotation>
          <xs:documentation>Somersal Herbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF095">
        <xs:annotation>
          <xs:documentation>South Darley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF096">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF097">
        <xs:annotation>
          <xs:documentation>Stoney Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF098">
        <xs:annotation>
          <xs:documentation>Sudbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF099">
        <xs:annotation>
          <xs:documentation>Taddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF100">
        <xs:annotation>
          <xs:documentation>Tansley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF101">
        <xs:annotation>
          <xs:documentation>Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF102">
        <xs:annotation>
          <xs:documentation>Tideswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF103">
        <xs:annotation>
          <xs:documentation>Tissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF104">
        <xs:annotation>
          <xs:documentation>Wardlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF105">
        <xs:annotation>
          <xs:documentation>Wheston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF106">
        <xs:annotation>
          <xs:documentation>Winster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF107">
        <xs:annotation>
          <xs:documentation>Wirksworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF108">
        <xs:annotation>
          <xs:documentation>Yeaveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF109">
        <xs:annotation>
          <xs:documentation>Yeldersley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF110">
        <xs:annotation>
          <xs:documentation>Youlgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UF111">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG001">
        <xs:annotation>
          <xs:documentation>Breadsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG002">
        <xs:annotation>
          <xs:documentation>Breaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG003">
        <xs:annotation>
          <xs:documentation>Dale Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG004">
        <xs:annotation>
          <xs:documentation>Draycott and Church Wilne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG005">
        <xs:annotation>
          <xs:documentation>Hopwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG006">
        <xs:annotation>
          <xs:documentation>Little Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG007">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG008">
        <xs:annotation>
          <xs:documentation>Ockbrook and Borrowash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG009">
        <xs:annotation>
          <xs:documentation>Risley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG010">
        <xs:annotation>
          <xs:documentation>Sandiacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG011">
        <xs:annotation>
          <xs:documentation>Stanley and Stanley Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG012">
        <xs:annotation>
          <xs:documentation>Stanton by Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG013">
        <xs:annotation>
          <xs:documentation>West Hallam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UG014">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH001">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH002">
        <xs:annotation>
          <xs:documentation>Bamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH003">
        <xs:annotation>
          <xs:documentation>Brough and Shatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH004">
        <xs:annotation>
          <xs:documentation>Castleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH005">
        <xs:annotation>
          <xs:documentation>Chapel en le Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH006">
        <xs:annotation>
          <xs:documentation>Charlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH007">
        <xs:annotation>
          <xs:documentation>Chinley, Buxworth and Brownside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH008">
        <xs:annotation>
          <xs:documentation>Chisworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH009">
        <xs:annotation>
          <xs:documentation>Derwent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH010">
        <xs:annotation>
          <xs:documentation>Edale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH011">
        <xs:annotation>
          <xs:documentation>Green Fairfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH012">
        <xs:annotation>
          <xs:documentation>Hartington upper Quarter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH013">
        <xs:annotation>
          <xs:documentation>Hayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH014">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH015">
        <xs:annotation>
          <xs:documentation>Hope Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH016">
        <xs:annotation>
          <xs:documentation>King Sterndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH017">
        <xs:annotation>
          <xs:documentation>New Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH018">
        <xs:annotation>
          <xs:documentation>Peak Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH019">
        <xs:annotation>
          <xs:documentation>Thornhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH020">
        <xs:annotation>
          <xs:documentation>Tintwistle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH021">
        <xs:annotation>
          <xs:documentation>Whaley Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UH022">
        <xs:annotation>
          <xs:documentation>Wormhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ001">
        <xs:annotation>
          <xs:documentation>Ashover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ002">
        <xs:annotation>
          <xs:documentation>Barlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ003">
        <xs:annotation>
          <xs:documentation>Brackenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ004">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ005">
        <xs:annotation>
          <xs:documentation>Calow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ006">
        <xs:annotation>
          <xs:documentation>Clay Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ007">
        <xs:annotation>
          <xs:documentation>Dronfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ008">
        <xs:annotation>
          <xs:documentation>Eckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ009">
        <xs:annotation>
          <xs:documentation>Grassmoor, Hasland and Winswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ010">
        <xs:annotation>
          <xs:documentation>Heath and Holmewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ011">
        <xs:annotation>
          <xs:documentation>Holmesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ012">
        <xs:annotation>
          <xs:documentation>Holymoorside and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ013">
        <xs:annotation>
          <xs:documentation>Killamarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ014">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ015">
        <xs:annotation>
          <xs:documentation>North Wingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ016">
        <xs:annotation>
          <xs:documentation>Pilsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ017">
        <xs:annotation>
          <xs:documentation>Shirland and Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ018">
        <xs:annotation>
          <xs:documentation>Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ019">
        <xs:annotation>
          <xs:documentation>Sutton cum Duckmanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ020">
        <xs:annotation>
          <xs:documentation>Temple Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ021">
        <xs:annotation>
          <xs:documentation>Tupton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ022">
        <xs:annotation>
          <xs:documentation>Unstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ023">
        <xs:annotation>
          <xs:documentation>Wessington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UJ024">
        <xs:annotation>
          <xs:documentation>Wingerworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK001">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK002">
        <xs:annotation>
          <xs:documentation>Aston upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK003">
        <xs:annotation>
          <xs:documentation>Barrow upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK004">
        <xs:annotation>
          <xs:documentation>Barton Blount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK005">
        <xs:annotation>
          <xs:documentation>Bearwardcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK006">
        <xs:annotation>
          <xs:documentation>Bretby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK007">
        <xs:annotation>
          <xs:documentation>Burnaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK008">
        <xs:annotation>
          <xs:documentation>Calke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK009">
        <xs:annotation>
          <xs:documentation>Castle Gresley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK010">
        <xs:annotation>
          <xs:documentation>Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK011">
        <xs:annotation>
          <xs:documentation>Cauldwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK012">
        <xs:annotation>
          <xs:documentation>Church Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK013">
        <xs:annotation>
          <xs:documentation>Coton in the Elms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK014">
        <xs:annotation>
          <xs:documentation>Dalbury Lees</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK015">
        <xs:annotation>
          <xs:documentation>Drakelow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK016">
        <xs:annotation>
          <xs:documentation>Egginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK017">
        <xs:annotation>
          <xs:documentation>Elvaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK018">
        <xs:annotation>
          <xs:documentation>Etwall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK019">
        <xs:annotation>
          <xs:documentation>Findern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK020">
        <xs:annotation>
          <xs:documentation>Foremark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK021">
        <xs:annotation>
          <xs:documentation>Foston and Scropton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK022">
        <xs:annotation>
          <xs:documentation>Hartshorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK023">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK024">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK025">
        <xs:annotation>
          <xs:documentation>Hoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK026">
        <xs:annotation>
          <xs:documentation>Ingleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK027">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK028">
        <xs:annotation>
          <xs:documentation>Lullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK029">
        <xs:annotation>
          <xs:documentation>Marston on Dove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK030">
        <xs:annotation>
          <xs:documentation>Melbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK031">
        <xs:annotation>
          <xs:documentation>Netherseal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK032">
        <xs:annotation>
          <xs:documentation>Newton Solney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK033">
        <xs:annotation>
          <xs:documentation>Osleston and Thurvaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK034">
        <xs:annotation>
          <xs:documentation>Overseal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK035">
        <xs:annotation>
          <xs:documentation>Radbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK036">
        <xs:annotation>
          <xs:documentation>Repton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK037">
        <xs:annotation>
          <xs:documentation>Rosliston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK038">
        <xs:annotation>
          <xs:documentation>Shardlow and Great Wilne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK039">
        <xs:annotation>
          <xs:documentation>Smisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK040">
        <xs:annotation>
          <xs:documentation>Stanton by Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK041">
        <xs:annotation>
          <xs:documentation>Stenson Fields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK042">
        <xs:annotation>
          <xs:documentation>Sutton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK043">
        <xs:annotation>
          <xs:documentation>Swarkestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK044">
        <xs:annotation>
          <xs:documentation>Ticknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK045">
        <xs:annotation>
          <xs:documentation>Trusley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK046">
        <xs:annotation>
          <xs:documentation>Twyford and Stenson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK047">
        <xs:annotation>
          <xs:documentation>Walton upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK048">
        <xs:annotation>
          <xs:documentation>Weston upon Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK049">
        <xs:annotation>
          <xs:documentation>Willington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17UK050">
        <xs:annotation>
          <xs:documentation>Woodville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB001">
        <xs:annotation>
          <xs:documentation>All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB002">
        <xs:annotation>
          <xs:documentation>Awliscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB003">
        <xs:annotation>
          <xs:documentation>Axminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB004">
        <xs:annotation>
          <xs:documentation>Axmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB005">
        <xs:annotation>
          <xs:documentation>Aylesbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB006">
        <xs:annotation>
          <xs:documentation>Beer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB007">
        <xs:annotation>
          <xs:documentation>Bicton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB008">
        <xs:annotation>
          <xs:documentation>Brampford Speke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB009">
        <xs:annotation>
          <xs:documentation>Branscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB010">
        <xs:annotation>
          <xs:documentation>Broad Clyst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB011">
        <xs:annotation>
          <xs:documentation>Broadhembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB012">
        <xs:annotation>
          <xs:documentation>Buckerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB013">
        <xs:annotation>
          <xs:documentation>Budleigh Salterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB014">
        <xs:annotation>
          <xs:documentation>Chardstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB015">
        <xs:annotation>
          <xs:documentation>Clyst Honiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB016">
        <xs:annotation>
          <xs:documentation>Clyst Hydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB017">
        <xs:annotation>
          <xs:documentation>Clyst St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB018">
        <xs:annotation>
          <xs:documentation>Clyst St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB019">
        <xs:annotation>
          <xs:documentation>Clyst St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB020">
        <xs:annotation>
          <xs:documentation>Colaton Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB021">
        <xs:annotation>
          <xs:documentation>Colyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB022">
        <xs:annotation>
          <xs:documentation>Combe Raleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB023">
        <xs:annotation>
          <xs:documentation>Combpyne Rousdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB024">
        <xs:annotation>
          <xs:documentation>Cotleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB025">
        <xs:annotation>
          <xs:documentation>Dalwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB026">
        <xs:annotation>
          <xs:documentation>Dunkeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB027">
        <xs:annotation>
          <xs:documentation>East Budleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB028">
        <xs:annotation>
          <xs:documentation>Farringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB029">
        <xs:annotation>
          <xs:documentation>Farway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB030">
        <xs:annotation>
          <xs:documentation>Feniton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB031">
        <xs:annotation>
          <xs:documentation>Gittisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB032">
        <xs:annotation>
          <xs:documentation>Hawkchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB033">
        <xs:annotation>
          <xs:documentation>Honiton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB034">
        <xs:annotation>
          <xs:documentation>Huxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB035">
        <xs:annotation>
          <xs:documentation>Kilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB036">
        <xs:annotation>
          <xs:documentation>Luppitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB037">
        <xs:annotation>
          <xs:documentation>Lympstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB038">
        <xs:annotation>
          <xs:documentation>Membury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB039">
        <xs:annotation>
          <xs:documentation>Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB040">
        <xs:annotation>
          <xs:documentation>Musbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB041">
        <xs:annotation>
          <xs:documentation>Nether Exe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB042">
        <xs:annotation>
          <xs:documentation>Newton Poppleford and Harpford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB043">
        <xs:annotation>
          <xs:documentation>Northleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB044">
        <xs:annotation>
          <xs:documentation>Offwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB045">
        <xs:annotation>
          <xs:documentation>Otterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB046">
        <xs:annotation>
          <xs:documentation>Ottery St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB047">
        <xs:annotation>
          <xs:documentation>Payhembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB048">
        <xs:annotation>
          <xs:documentation>Plymtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB049">
        <xs:annotation>
          <xs:documentation>Poltimore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB050">
        <xs:annotation>
          <xs:documentation>Rewe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB051">
        <xs:annotation>
          <xs:documentation>Rockbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB052">
        <xs:annotation>
          <xs:documentation>Seaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB053">
        <xs:annotation>
          <xs:documentation>Sheldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB054">
        <xs:annotation>
          <xs:documentation>Shute</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB055">
        <xs:annotation>
          <xs:documentation>Sidmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB056">
        <xs:annotation>
          <xs:documentation>Southleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB057">
        <xs:annotation>
          <xs:documentation>Sowton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB058">
        <xs:annotation>
          <xs:documentation>Stockland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB059">
        <xs:annotation>
          <xs:documentation>Stoke Canon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB060">
        <xs:annotation>
          <xs:documentation>Talaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB061">
        <xs:annotation>
          <xs:documentation>Uplyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB062">
        <xs:annotation>
          <xs:documentation>Upottery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB063">
        <xs:annotation>
          <xs:documentation>Upton Pyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB064">
        <xs:annotation>
          <xs:documentation>Whimple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB065">
        <xs:annotation>
          <xs:documentation>Widworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB066">
        <xs:annotation>
          <xs:documentation>Woodbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB067">
        <xs:annotation>
          <xs:documentation>Yarcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB068">
        <xs:annotation>
          <xs:documentation>Lands Common to Axminster and Kilmington C.P.s</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UB069">
        <xs:annotation>
          <xs:documentation>Exmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD001">
        <xs:annotation>
          <xs:documentation>Bampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD002">
        <xs:annotation>
          <xs:documentation>Bickleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD003">
        <xs:annotation>
          <xs:documentation>Bow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD004">
        <xs:annotation>
          <xs:documentation>Bradninch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD005">
        <xs:annotation>
          <xs:documentation>Brushford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD006">
        <xs:annotation>
          <xs:documentation>Burlescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD007">
        <xs:annotation>
          <xs:documentation>Butterleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD008">
        <xs:annotation>
          <xs:documentation>Cadbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD009">
        <xs:annotation>
          <xs:documentation>Cadeleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD010">
        <xs:annotation>
          <xs:documentation>Chawleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD011">
        <xs:annotation>
          <xs:documentation>Cheriton Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD012">
        <xs:annotation>
          <xs:documentation>Cheriton Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD013">
        <xs:annotation>
          <xs:documentation>Clannaborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD014">
        <xs:annotation>
          <xs:documentation>Clayhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD015">
        <xs:annotation>
          <xs:documentation>Clayhidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD016">
        <xs:annotation>
          <xs:documentation>Coldridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD017">
        <xs:annotation>
          <xs:documentation>Colebrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD018">
        <xs:annotation>
          <xs:documentation>Crediton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD019">
        <xs:annotation>
          <xs:documentation>Crediton Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD020">
        <xs:annotation>
          <xs:documentation>Cruwys Morchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD021">
        <xs:annotation>
          <xs:documentation>Cullompton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD022">
        <xs:annotation>
          <xs:documentation>Culmstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD023">
        <xs:annotation>
          <xs:documentation>Down St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD024">
        <xs:annotation>
          <xs:documentation>Eggesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD025">
        <xs:annotation>
          <xs:documentation>Halberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD026">
        <xs:annotation>
          <xs:documentation>Hemyock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD027">
        <xs:annotation>
          <xs:documentation>Hittisleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD028">
        <xs:annotation>
          <xs:documentation>Hockworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD029">
        <xs:annotation>
          <xs:documentation>Holcombe Rogus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD030">
        <xs:annotation>
          <xs:documentation>Huntsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD031">
        <xs:annotation>
          <xs:documentation>Kennerleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD032">
        <xs:annotation>
          <xs:documentation>Kentisbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD033">
        <xs:annotation>
          <xs:documentation>Lapford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD034">
        <xs:annotation>
          <xs:documentation>Loxbeare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD035">
        <xs:annotation>
          <xs:documentation>Morchard Bishop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD036">
        <xs:annotation>
          <xs:documentation>Morebath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD037">
        <xs:annotation>
          <xs:documentation>Newton St. Cyres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD038">
        <xs:annotation>
          <xs:documentation>Nymet Rowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD039">
        <xs:annotation>
          <xs:documentation>Oakford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD040">
        <xs:annotation>
          <xs:documentation>Poughill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD041">
        <xs:annotation>
          <xs:documentation>Puddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD042">
        <xs:annotation>
          <xs:documentation>Sampford Peverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD043">
        <xs:annotation>
          <xs:documentation>Sandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD044">
        <xs:annotation>
          <xs:documentation>Shobrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD045">
        <xs:annotation>
          <xs:documentation>Silverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD046">
        <xs:annotation>
          <xs:documentation>Stockleigh English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD047">
        <xs:annotation>
          <xs:documentation>Stockleigh Pomeroy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD048">
        <xs:annotation>
          <xs:documentation>Stoodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD049">
        <xs:annotation>
          <xs:documentation>Templeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD050">
        <xs:annotation>
          <xs:documentation>Thelbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD051">
        <xs:annotation>
          <xs:documentation>Thorverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD052">
        <xs:annotation>
          <xs:documentation>Tiverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD053">
        <xs:annotation>
          <xs:documentation>Uffculme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD054">
        <xs:annotation>
          <xs:documentation>Uplowman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD055">
        <xs:annotation>
          <xs:documentation>Upton Hellions</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD056">
        <xs:annotation>
          <xs:documentation>Washfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD057">
        <xs:annotation>
          <xs:documentation>Washford Pyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD058">
        <xs:annotation>
          <xs:documentation>Wembworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD059">
        <xs:annotation>
          <xs:documentation>Willand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD060">
        <xs:annotation>
          <xs:documentation>Woolfardisworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD061">
        <xs:annotation>
          <xs:documentation>Zeal Monachorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UD062">
        <xs:annotation>
          <xs:documentation>Copplestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE001">
        <xs:annotation>
          <xs:documentation>Arlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE002">
        <xs:annotation>
          <xs:documentation>Ashford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE003">
        <xs:annotation>
          <xs:documentation>Atherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE004">
        <xs:annotation>
          <xs:documentation>Barnstaple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE005">
        <xs:annotation>
          <xs:documentation>Berrynarbor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE006">
        <xs:annotation>
          <xs:documentation>Bishop's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE007">
        <xs:annotation>
          <xs:documentation>Bishop's Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE008">
        <xs:annotation>
          <xs:documentation>Bittadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE009">
        <xs:annotation>
          <xs:documentation>Bratton Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE010">
        <xs:annotation>
          <xs:documentation>Braunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE011">
        <xs:annotation>
          <xs:documentation>Brayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE012">
        <xs:annotation>
          <xs:documentation>Brendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE013">
        <xs:annotation>
          <xs:documentation>Burrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE014">
        <xs:annotation>
          <xs:documentation>Challacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE015">
        <xs:annotation>
          <xs:documentation>Chittlehamholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE016">
        <xs:annotation>
          <xs:documentation>Chittlehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE017">
        <xs:annotation>
          <xs:documentation>Chulmleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE018">
        <xs:annotation>
          <xs:documentation>Combe Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE019">
        <xs:annotation>
          <xs:documentation>Countisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE020">
        <xs:annotation>
          <xs:documentation>East and West Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE021">
        <xs:annotation>
          <xs:documentation>East Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE022">
        <xs:annotation>
          <xs:documentation>East Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE023">
        <xs:annotation>
          <xs:documentation>East Worlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE024">
        <xs:annotation>
          <xs:documentation>Filleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE025">
        <xs:annotation>
          <xs:documentation>Fremington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE026">
        <xs:annotation>
          <xs:documentation>Georgeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE027">
        <xs:annotation>
          <xs:documentation>George Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE028">
        <xs:annotation>
          <xs:documentation>Goodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE029">
        <xs:annotation>
          <xs:documentation>Heanton Punchardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE030">
        <xs:annotation>
          <xs:documentation>Ilfracombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE031">
        <xs:annotation>
          <xs:documentation>Instow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE032">
        <xs:annotation>
          <xs:documentation>Kentisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE033">
        <xs:annotation>
          <xs:documentation>King's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE034">
        <xs:annotation>
          <xs:documentation>Knowstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE035">
        <xs:annotation>
          <xs:documentation>Landkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE036">
        <xs:annotation>
          <xs:documentation>Loxhore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE037">
        <xs:annotation>
          <xs:documentation>Lynton and Lynmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE038">
        <xs:annotation>
          <xs:documentation>Mariansleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE039">
        <xs:annotation>
          <xs:documentation>Martinhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE040">
        <xs:annotation>
          <xs:documentation>Marwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE041">
        <xs:annotation>
          <xs:documentation>Meshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE042">
        <xs:annotation>
          <xs:documentation>Molland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE043">
        <xs:annotation>
          <xs:documentation>Mortehoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE044">
        <xs:annotation>
          <xs:documentation>Horwood, Lovacott and Newton Tracey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE045">
        <xs:annotation>
          <xs:documentation>North Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE046">
        <xs:annotation>
          <xs:documentation>Parracombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE047">
        <xs:annotation>
          <xs:documentation>Queen's Nympton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE048">
        <xs:annotation>
          <xs:documentation>Rackenford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE049">
        <xs:annotation>
          <xs:documentation>Romansleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE050">
        <xs:annotation>
          <xs:documentation>Rose Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE051">
        <xs:annotation>
          <xs:documentation>Satterleigh and Warkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE052">
        <xs:annotation>
          <xs:documentation>Shirwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE053">
        <xs:annotation>
          <xs:documentation>South Molton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE054">
        <xs:annotation>
          <xs:documentation>Stoke Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE055">
        <xs:annotation>
          <xs:documentation>Swimbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE056">
        <xs:annotation>
          <xs:documentation>Tawstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE057">
        <xs:annotation>
          <xs:documentation>Trentishoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE058">
        <xs:annotation>
          <xs:documentation>Twitchen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE059">
        <xs:annotation>
          <xs:documentation>West Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE060">
        <xs:annotation>
          <xs:documentation>West Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE061">
        <xs:annotation>
          <xs:documentation>Westleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE062">
        <xs:annotation>
          <xs:documentation>Pilton West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UE063">
        <xs:annotation>
          <xs:documentation>Witheridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG001">
        <xs:annotation>
          <xs:documentation>Ashprington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG002">
        <xs:annotation>
          <xs:documentation>Aveton Gifford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG003">
        <xs:annotation>
          <xs:documentation>Berry Pomeroy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG004">
        <xs:annotation>
          <xs:documentation>Bickleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG005">
        <xs:annotation>
          <xs:documentation>Bigbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG006">
        <xs:annotation>
          <xs:documentation>Blackawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG007">
        <xs:annotation>
          <xs:documentation>Brixton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG008">
        <xs:annotation>
          <xs:documentation>Buckland-Tout-Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG009">
        <xs:annotation>
          <xs:documentation>Charleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG010">
        <xs:annotation>
          <xs:documentation>Chivelstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG011">
        <xs:annotation>
          <xs:documentation>Churchstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG012">
        <xs:annotation>
          <xs:documentation>Cornwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG013">
        <xs:annotation>
          <xs:documentation>Cornworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG014">
        <xs:annotation>
          <xs:documentation>Dartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG015">
        <xs:annotation>
          <xs:documentation>Dartmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG016">
        <xs:annotation>
          <xs:documentation>Dean Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG017">
        <xs:annotation>
          <xs:documentation>Diptford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG018">
        <xs:annotation>
          <xs:documentation>Dittisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG019">
        <xs:annotation>
          <xs:documentation>East Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG020">
        <xs:annotation>
          <xs:documentation>East Portlemouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG021">
        <xs:annotation>
          <xs:documentation>Ermington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG022">
        <xs:annotation>
          <xs:documentation>Frogmore and Sherford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG023">
        <xs:annotation>
          <xs:documentation>Halwell and Moreleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG024">
        <xs:annotation>
          <xs:documentation>Harberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG025">
        <xs:annotation>
          <xs:documentation>Harford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG026">
        <xs:annotation>
          <xs:documentation>Holbeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG027">
        <xs:annotation>
          <xs:documentation>Holne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG028">
        <xs:annotation>
          <xs:documentation>Ivybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG029">
        <xs:annotation>
          <xs:documentation>Kingsbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG030">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG031">
        <xs:annotation>
          <xs:documentation>Kingswear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG032">
        <xs:annotation>
          <xs:documentation>Littlehempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG033">
        <xs:annotation>
          <xs:documentation>Loddiswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG034">
        <xs:annotation>
          <xs:documentation>Malborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG035">
        <xs:annotation>
          <xs:documentation>Marldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG036">
        <xs:annotation>
          <xs:documentation>Modbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG037">
        <xs:annotation>
          <xs:documentation>Newton and Noss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG038">
        <xs:annotation>
          <xs:documentation>North Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG039">
        <xs:annotation>
          <xs:documentation>Rattery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG040">
        <xs:annotation>
          <xs:documentation>Ringmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG041">
        <xs:annotation>
          <xs:documentation>Salcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG042">
        <xs:annotation>
          <xs:documentation>Shaugh Prior</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG043">
        <xs:annotation>
          <xs:documentation>Slapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG044">
        <xs:annotation>
          <xs:documentation>South Brent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG045">
        <xs:annotation>
          <xs:documentation>South Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG046">
        <xs:annotation>
          <xs:documentation>South Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG047">
        <xs:annotation>
          <xs:documentation>South Pool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG048">
        <xs:annotation>
          <xs:documentation>Sparkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG049">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG050">
        <xs:annotation>
          <xs:documentation>Stoke Fleming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG051">
        <xs:annotation>
          <xs:documentation>Stoke Gabriel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG052">
        <xs:annotation>
          <xs:documentation>Stokenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG053">
        <xs:annotation>
          <xs:documentation>Strete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG054">
        <xs:annotation>
          <xs:documentation>Thurlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG055">
        <xs:annotation>
          <xs:documentation>Totnes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG056">
        <xs:annotation>
          <xs:documentation>Ugborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG057">
        <xs:annotation>
          <xs:documentation>Wembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG058">
        <xs:annotation>
          <xs:documentation>West Alvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG059">
        <xs:annotation>
          <xs:documentation>West Buckfastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG060">
        <xs:annotation>
          <xs:documentation>Woodleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UG061">
        <xs:annotation>
          <xs:documentation>Yealmpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH001">
        <xs:annotation>
          <xs:documentation>Abbotskerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH002">
        <xs:annotation>
          <xs:documentation>Ashburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH003">
        <xs:annotation>
          <xs:documentation>Ashcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH004">
        <xs:annotation>
          <xs:documentation>Ashton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH005">
        <xs:annotation>
          <xs:documentation>Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH006">
        <xs:annotation>
          <xs:documentation>Bishopsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH007">
        <xs:annotation>
          <xs:documentation>Bovey Tracey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH008">
        <xs:annotation>
          <xs:documentation>Bridford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH009">
        <xs:annotation>
          <xs:documentation>Broadhempston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH010">
        <xs:annotation>
          <xs:documentation>Buckfastleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH011">
        <xs:annotation>
          <xs:documentation>Buckland in the Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH012">
        <xs:annotation>
          <xs:documentation>Christow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH013">
        <xs:annotation>
          <xs:documentation>Chudleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH014">
        <xs:annotation>
          <xs:documentation>Coffinswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH015">
        <xs:annotation>
          <xs:documentation>Dawlish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH016">
        <xs:annotation>
          <xs:documentation>Doddiscombsleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH017">
        <xs:annotation>
          <xs:documentation>Dunchideock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH018">
        <xs:annotation>
          <xs:documentation>Dunsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH019">
        <xs:annotation>
          <xs:documentation>Exminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH020">
        <xs:annotation>
          <xs:documentation>Haccombe with Combe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH021">
        <xs:annotation>
          <xs:documentation>Hennock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH022">
        <xs:annotation>
          <xs:documentation>Holcombe Burnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH023">
        <xs:annotation>
          <xs:documentation>Ide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH024">
        <xs:annotation>
          <xs:documentation>Ideford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH025">
        <xs:annotation>
          <xs:documentation>Ilsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH026">
        <xs:annotation>
          <xs:documentation>Ipplepen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH027">
        <xs:annotation>
          <xs:documentation>Kenn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH028">
        <xs:annotation>
          <xs:documentation>Kenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH029">
        <xs:annotation>
          <xs:documentation>Kingskerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH030">
        <xs:annotation>
          <xs:documentation>Kingsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH031">
        <xs:annotation>
          <xs:documentation>Lustleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH032">
        <xs:annotation>
          <xs:documentation>Mamhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH033">
        <xs:annotation>
          <xs:documentation>Manaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH034">
        <xs:annotation>
          <xs:documentation>Moretonhampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH035">
        <xs:annotation>
          <xs:documentation>Newton Abbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH036">
        <xs:annotation>
          <xs:documentation>North Bovey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH037">
        <xs:annotation>
          <xs:documentation>Ogwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH038">
        <xs:annotation>
          <xs:documentation>Powderham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH039">
        <xs:annotation>
          <xs:documentation>Shaldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH040">
        <xs:annotation>
          <xs:documentation>Shillingford St. George</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH041">
        <xs:annotation>
          <xs:documentation>Starcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH042">
        <xs:annotation>
          <xs:documentation>Stokeinteignhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH043">
        <xs:annotation>
          <xs:documentation>Tedburn St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH044">
        <xs:annotation>
          <xs:documentation>Teigngrace</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH045">
        <xs:annotation>
          <xs:documentation>Teignmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH046">
        <xs:annotation>
          <xs:documentation>Denbury and Torbryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH047">
        <xs:annotation>
          <xs:documentation>Trusham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH048">
        <xs:annotation>
          <xs:documentation>Whitestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH049">
        <xs:annotation>
          <xs:documentation>Widecombe in the Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UH050">
        <xs:annotation>
          <xs:documentation>Woodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK001">
        <xs:annotation>
          <xs:documentation>Abbots Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK002">
        <xs:annotation>
          <xs:documentation>Abbotsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK003">
        <xs:annotation>
          <xs:documentation>Alverdiscott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK004">
        <xs:annotation>
          <xs:documentation>Alwington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK005">
        <xs:annotation>
          <xs:documentation>Ashreigney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK006">
        <xs:annotation>
          <xs:documentation>Ashwater</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK007">
        <xs:annotation>
          <xs:documentation>Beaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK008">
        <xs:annotation>
          <xs:documentation>Bideford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK009">
        <xs:annotation>
          <xs:documentation>Black Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK010">
        <xs:annotation>
          <xs:documentation>Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK011">
        <xs:annotation>
          <xs:documentation>Bradworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK012">
        <xs:annotation>
          <xs:documentation>Bridgerule</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK013">
        <xs:annotation>
          <xs:documentation>Broadwoodwidger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK014">
        <xs:annotation>
          <xs:documentation>Buckland Brewer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK015">
        <xs:annotation>
          <xs:documentation>Buckland Filleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK016">
        <xs:annotation>
          <xs:documentation>Bulkworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK017">
        <xs:annotation>
          <xs:documentation>Clawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK018">
        <xs:annotation>
          <xs:documentation>Clovelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK019">
        <xs:annotation>
          <xs:documentation>Cookbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK020">
        <xs:annotation>
          <xs:documentation>Dolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK021">
        <xs:annotation>
          <xs:documentation>Dowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK022">
        <xs:annotation>
          <xs:documentation>East Putford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK023">
        <xs:annotation>
          <xs:documentation>Frithelstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK024">
        <xs:annotation>
          <xs:documentation>Great Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK025">
        <xs:annotation>
          <xs:documentation>Halwill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK026">
        <xs:annotation>
          <xs:documentation>Hartland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK027">
        <xs:annotation>
          <xs:documentation>High Bickington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK028">
        <xs:annotation>
          <xs:documentation>Hollacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK029">
        <xs:annotation>
          <xs:documentation>Holsworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK030">
        <xs:annotation>
          <xs:documentation>Holsworthy Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK031">
        <xs:annotation>
          <xs:documentation>Huish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK032">
        <xs:annotation>
          <xs:documentation>Huntshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK033">
        <xs:annotation>
          <xs:documentation>Landcross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK034">
        <xs:annotation>
          <xs:documentation>Langtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK035">
        <xs:annotation>
          <xs:documentation>Littleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK036">
        <xs:annotation>
          <xs:documentation>Little Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK037">
        <xs:annotation>
          <xs:documentation>Luffincott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK038">
        <xs:annotation>
          <xs:documentation>Merton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK039">
        <xs:annotation>
          <xs:documentation>Milton Damerel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK040">
        <xs:annotation>
          <xs:documentation>Monkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK041">
        <xs:annotation>
          <xs:documentation>Newton St. Petrock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK042">
        <xs:annotation>
          <xs:documentation>Northam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK043">
        <xs:annotation>
          <xs:documentation>Northcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK044">
        <xs:annotation>
          <xs:documentation>Pancrasweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK045">
        <xs:annotation>
          <xs:documentation>Parkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK046">
        <xs:annotation>
          <xs:documentation>Peters Marland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK047">
        <xs:annotation>
          <xs:documentation>Petrockstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK048">
        <xs:annotation>
          <xs:documentation>Pyworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK049">
        <xs:annotation>
          <xs:documentation>Roborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK050">
        <xs:annotation>
          <xs:documentation>St. Giles in the Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK051">
        <xs:annotation>
          <xs:documentation>St. Giles on the Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK052">
        <xs:annotation>
          <xs:documentation>Shebbear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK053">
        <xs:annotation>
          <xs:documentation>Sheepwash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK054">
        <xs:annotation>
          <xs:documentation>Sutcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK055">
        <xs:annotation>
          <xs:documentation>Tetcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK056">
        <xs:annotation>
          <xs:documentation>Thornbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK057">
        <xs:annotation>
          <xs:documentation>Virginstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK058">
        <xs:annotation>
          <xs:documentation>Weare Giffard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK059">
        <xs:annotation>
          <xs:documentation>Welcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK060">
        <xs:annotation>
          <xs:documentation>West Putford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK061">
        <xs:annotation>
          <xs:documentation>Winkleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK062">
        <xs:annotation>
          <xs:documentation>Woolfardisworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK063">
        <xs:annotation>
          <xs:documentation>Yarnscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UK064">
        <xs:annotation>
          <xs:documentation>Area not comprised in any Parish-Lundy Island</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL001">
        <xs:annotation>
          <xs:documentation>Beaworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL002">
        <xs:annotation>
          <xs:documentation>Belstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL003">
        <xs:annotation>
          <xs:documentation>Bere Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL004">
        <xs:annotation>
          <xs:documentation>Bondleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL005">
        <xs:annotation>
          <xs:documentation>Bradstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL006">
        <xs:annotation>
          <xs:documentation>Bratton Clovelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL007">
        <xs:annotation>
          <xs:documentation>Brentor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL008">
        <xs:annotation>
          <xs:documentation>Bridestowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL009">
        <xs:annotation>
          <xs:documentation>Broadwoodkelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL010">
        <xs:annotation>
          <xs:documentation>Buckland Monachorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL011">
        <xs:annotation>
          <xs:documentation>Chagford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL012">
        <xs:annotation>
          <xs:documentation>Coryton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL013">
        <xs:annotation>
          <xs:documentation>Dartmoor Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL014">
        <xs:annotation>
          <xs:documentation>Drewsteignton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL015">
        <xs:annotation>
          <xs:documentation>Dunterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL016">
        <xs:annotation>
          <xs:documentation>Exbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL017">
        <xs:annotation>
          <xs:documentation>Germansweek</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL018">
        <xs:annotation>
          <xs:documentation>Gidleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL019">
        <xs:annotation>
          <xs:documentation>Gulworthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL020">
        <xs:annotation>
          <xs:documentation>Hatherleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL021">
        <xs:annotation>
          <xs:documentation>Highampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL022">
        <xs:annotation>
          <xs:documentation>Horrabridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL023">
        <xs:annotation>
          <xs:documentation>Iddesleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL024">
        <xs:annotation>
          <xs:documentation>Inwardleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL025">
        <xs:annotation>
          <xs:documentation>Jacobstowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL026">
        <xs:annotation>
          <xs:documentation>Kelly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL027">
        <xs:annotation>
          <xs:documentation>Lamerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL028">
        <xs:annotation>
          <xs:documentation>Lewtrenchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL029">
        <xs:annotation>
          <xs:documentation>Lifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL030">
        <xs:annotation>
          <xs:documentation>Lydford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL031">
        <xs:annotation>
          <xs:documentation>Marystow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL032">
        <xs:annotation>
          <xs:documentation>Mary Tavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL033">
        <xs:annotation>
          <xs:documentation>Meavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL034">
        <xs:annotation>
          <xs:documentation>Meeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL035">
        <xs:annotation>
          <xs:documentation>Milton Abbot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL036">
        <xs:annotation>
          <xs:documentation>Monkokehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL037">
        <xs:annotation>
          <xs:documentation>Northlew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL038">
        <xs:annotation>
          <xs:documentation>North Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL039">
        <xs:annotation>
          <xs:documentation>Okehampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL040">
        <xs:annotation>
          <xs:documentation>Okehampton Hamlets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL041">
        <xs:annotation>
          <xs:documentation>Peter Tavy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL042">
        <xs:annotation>
          <xs:documentation>Sampford Courtenay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL043">
        <xs:annotation>
          <xs:documentation>Sampford Spiney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL044">
        <xs:annotation>
          <xs:documentation>Sheepstor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL045">
        <xs:annotation>
          <xs:documentation>Sourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL046">
        <xs:annotation>
          <xs:documentation>South Tawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL047">
        <xs:annotation>
          <xs:documentation>Spreyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL048">
        <xs:annotation>
          <xs:documentation>Sticklepath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL049">
        <xs:annotation>
          <xs:documentation>Stowford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL050">
        <xs:annotation>
          <xs:documentation>Sydenham Damerel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL051">
        <xs:annotation>
          <xs:documentation>Tavistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL052">
        <xs:annotation>
          <xs:documentation>Throwleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL053">
        <xs:annotation>
          <xs:documentation>Thrushelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL054">
        <xs:annotation>
          <xs:documentation>Walkhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL055">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="18UL056">
        <xs:annotation>
          <xs:documentation>Lands common to Bridestowe and Sourton CP's</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UC001">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UC002">
        <xs:annotation>
          <xs:documentation>Hurn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD001">
        <xs:annotation>
          <xs:documentation>Alderholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD002">
        <xs:annotation>
          <xs:documentation>Chalbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD003">
        <xs:annotation>
          <xs:documentation>Colehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD004">
        <xs:annotation>
          <xs:documentation>Corfe Mullen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD005">
        <xs:annotation>
          <xs:documentation>Cranborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD006">
        <xs:annotation>
          <xs:documentation>Edmondsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD007">
        <xs:annotation>
          <xs:documentation>Ferndown Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD008">
        <xs:annotation>
          <xs:documentation>Gussage All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD009">
        <xs:annotation>
          <xs:documentation>Gussage St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD010">
        <xs:annotation>
          <xs:documentation>Hinton Martell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD011">
        <xs:annotation>
          <xs:documentation>Hinton Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD012">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD013">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD014">
        <xs:annotation>
          <xs:documentation>Long Crichel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD015">
        <xs:annotation>
          <xs:documentation>Moor Crichel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD016">
        <xs:annotation>
          <xs:documentation>Pamphill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD017">
        <xs:annotation>
          <xs:documentation>Pentridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD018">
        <xs:annotation>
          <xs:documentation>St. Leonards and St. Ives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD019">
        <xs:annotation>
          <xs:documentation>Shapwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD020">
        <xs:annotation>
          <xs:documentation>Sixpenny Handley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD021">
        <xs:annotation>
          <xs:documentation>Sturminster Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD022">
        <xs:annotation>
          <xs:documentation>Verwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD023">
        <xs:annotation>
          <xs:documentation>West Moors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD024">
        <xs:annotation>
          <xs:documentation>West Parley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD025">
        <xs:annotation>
          <xs:documentation>Wimborne Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD026">
        <xs:annotation>
          <xs:documentation>Wimborne St. Giles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD027">
        <xs:annotation>
          <xs:documentation>Witchampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UD028">
        <xs:annotation>
          <xs:documentation>Woodlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE001">
        <xs:annotation>
          <xs:documentation>Anderson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE002">
        <xs:annotation>
          <xs:documentation>Ashmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE003">
        <xs:annotation>
          <xs:documentation>Blandford Forum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE004">
        <xs:annotation>
          <xs:documentation>Blandford St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE005">
        <xs:annotation>
          <xs:documentation>Bourton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE006">
        <xs:annotation>
          <xs:documentation>Bryanston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE007">
        <xs:annotation>
          <xs:documentation>Buckhorn Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE008">
        <xs:annotation>
          <xs:documentation>Cann</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE009">
        <xs:annotation>
          <xs:documentation>Charlton Marshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE010">
        <xs:annotation>
          <xs:documentation>Chettle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE011">
        <xs:annotation>
          <xs:documentation>Child Okeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE012">
        <xs:annotation>
          <xs:documentation>Compton Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE013">
        <xs:annotation>
          <xs:documentation>Durweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE014">
        <xs:annotation>
          <xs:documentation>East Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE015">
        <xs:annotation>
          <xs:documentation>East Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE016">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE017">
        <xs:annotation>
          <xs:documentation>Fifehead Magdalen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE018">
        <xs:annotation>
          <xs:documentation>Fifehead Neville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE019">
        <xs:annotation>
          <xs:documentation>Fontmell Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE020">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE021">
        <xs:annotation>
          <xs:documentation>Glanvilles Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE022">
        <xs:annotation>
          <xs:documentation>Hammoon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE023">
        <xs:annotation>
          <xs:documentation>Hanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE024">
        <xs:annotation>
          <xs:documentation>Hazelbury Bryan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE025">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE026">
        <xs:annotation>
          <xs:documentation>Hinton St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE027">
        <xs:annotation>
          <xs:documentation>Ibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE028">
        <xs:annotation>
          <xs:documentation>Iwerne Courtney or Shroton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE029">
        <xs:annotation>
          <xs:documentation>Iwerne Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE030">
        <xs:annotation>
          <xs:documentation>Iwerne Stepleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE031">
        <xs:annotation>
          <xs:documentation>Kington Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE032">
        <xs:annotation>
          <xs:documentation>Langton Long Blandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE033">
        <xs:annotation>
          <xs:documentation>Lydlinch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE034">
        <xs:annotation>
          <xs:documentation>Manston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE035">
        <xs:annotation>
          <xs:documentation>Mappowder</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE036">
        <xs:annotation>
          <xs:documentation>Margaret Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE037">
        <xs:annotation>
          <xs:documentation>Marnhull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE038">
        <xs:annotation>
          <xs:documentation>Melbury Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE039">
        <xs:annotation>
          <xs:documentation>Milborne St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE040">
        <xs:annotation>
          <xs:documentation>Milton Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE041">
        <xs:annotation>
          <xs:documentation>Motcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE042">
        <xs:annotation>
          <xs:documentation>Okeford Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE043">
        <xs:annotation>
          <xs:documentation>Pimperne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE044">
        <xs:annotation>
          <xs:documentation>Pulham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE045">
        <xs:annotation>
          <xs:documentation>Shaftesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE046">
        <xs:annotation>
          <xs:documentation>Shillingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE047">
        <xs:annotation>
          <xs:documentation>Silton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE048">
        <xs:annotation>
          <xs:documentation>Spetisbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE049">
        <xs:annotation>
          <xs:documentation>Stalbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE050">
        <xs:annotation>
          <xs:documentation>Stoke Wake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE051">
        <xs:annotation>
          <xs:documentation>Stourpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE052">
        <xs:annotation>
          <xs:documentation>Stour Provost</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE053">
        <xs:annotation>
          <xs:documentation>Stourton Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE054">
        <xs:annotation>
          <xs:documentation>Sturminster Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE055">
        <xs:annotation>
          <xs:documentation>Sutton Waldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE056">
        <xs:annotation>
          <xs:documentation>Tarrant Crawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE057">
        <xs:annotation>
          <xs:documentation>Tarrant Gunville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE058">
        <xs:annotation>
          <xs:documentation>Tarrant Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE059">
        <xs:annotation>
          <xs:documentation>Tarrant Keyneston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE060">
        <xs:annotation>
          <xs:documentation>Tarrant Launceston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE061">
        <xs:annotation>
          <xs:documentation>Tarrant Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE062">
        <xs:annotation>
          <xs:documentation>Tarrant Rawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE063">
        <xs:annotation>
          <xs:documentation>Tarrant Rushton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE064">
        <xs:annotation>
          <xs:documentation>Todber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE065">
        <xs:annotation>
          <xs:documentation>Turnworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE066">
        <xs:annotation>
          <xs:documentation>West Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE067">
        <xs:annotation>
          <xs:documentation>West Stour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE068">
        <xs:annotation>
          <xs:documentation>Winterborne Clenston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE069">
        <xs:annotation>
          <xs:documentation>Winterborne Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE070">
        <xs:annotation>
          <xs:documentation>Winterborne Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE071">
        <xs:annotation>
          <xs:documentation>Winterborne Stickland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE072">
        <xs:annotation>
          <xs:documentation>Winterborne Whitechurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE073">
        <xs:annotation>
          <xs:documentation>Winterborne Zelston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UE074">
        <xs:annotation>
          <xs:documentation>Woolland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG001">
        <xs:annotation>
          <xs:documentation>Affpuddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG002">
        <xs:annotation>
          <xs:documentation>Arne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG003">
        <xs:annotation>
          <xs:documentation>Bere Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG004">
        <xs:annotation>
          <xs:documentation>Bloxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG005">
        <xs:annotation>
          <xs:documentation>Chaldon Herring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG006">
        <xs:annotation>
          <xs:documentation>Church Knowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG007">
        <xs:annotation>
          <xs:documentation>Coombe Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG008">
        <xs:annotation>
          <xs:documentation>Corfe Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG009">
        <xs:annotation>
          <xs:documentation>East Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG010">
        <xs:annotation>
          <xs:documentation>East Lulworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG011">
        <xs:annotation>
          <xs:documentation>East Stoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG012">
        <xs:annotation>
          <xs:documentation>Kimmeridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG013">
        <xs:annotation>
          <xs:documentation>Langton Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG014">
        <xs:annotation>
          <xs:documentation>Lytchett Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG015">
        <xs:annotation>
          <xs:documentation>Lytchett Minster and Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG016">
        <xs:annotation>
          <xs:documentation>Morden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG017">
        <xs:annotation>
          <xs:documentation>Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG018">
        <xs:annotation>
          <xs:documentation>Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG019">
        <xs:annotation>
          <xs:documentation>Studland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG020">
        <xs:annotation>
          <xs:documentation>Swanage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG021">
        <xs:annotation>
          <xs:documentation>Turners Puddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG022">
        <xs:annotation>
          <xs:documentation>Tyneham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG023">
        <xs:annotation>
          <xs:documentation>Wareham Town</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG024">
        <xs:annotation>
          <xs:documentation>Wareham St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG025">
        <xs:annotation>
          <xs:documentation>West Lulworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG026">
        <xs:annotation>
          <xs:documentation>Winfrith Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG027">
        <xs:annotation>
          <xs:documentation>Wool</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UG028">
        <xs:annotation>
          <xs:documentation>Worth Matravers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH001">
        <xs:annotation>
          <xs:documentation>Abbotsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH002">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH003">
        <xs:annotation>
          <xs:documentation>Alton Pancras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH004">
        <xs:annotation>
          <xs:documentation>Askerswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH005">
        <xs:annotation>
          <xs:documentation>Athelhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH006">
        <xs:annotation>
          <xs:documentation>Batcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH007">
        <xs:annotation>
          <xs:documentation>Beaminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH008">
        <xs:annotation>
          <xs:documentation>Beer Hackett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH009">
        <xs:annotation>
          <xs:documentation>Bettiscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH010">
        <xs:annotation>
          <xs:documentation>Bincombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH011">
        <xs:annotation>
          <xs:documentation>Bishop's Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH012">
        <xs:annotation>
          <xs:documentation>Bothenhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH013">
        <xs:annotation>
          <xs:documentation>Bradford Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH014">
        <xs:annotation>
          <xs:documentation>Bradford Peverell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH015">
        <xs:annotation>
          <xs:documentation>Bradpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH016">
        <xs:annotation>
          <xs:documentation>Bridport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH017">
        <xs:annotation>
          <xs:documentation>Broadmayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH018">
        <xs:annotation>
          <xs:documentation>Broadwindsor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH019">
        <xs:annotation>
          <xs:documentation>Buckland Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH020">
        <xs:annotation>
          <xs:documentation>Burleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH021">
        <xs:annotation>
          <xs:documentation>Burstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH022">
        <xs:annotation>
          <xs:documentation>Burton Bradstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH023">
        <xs:annotation>
          <xs:documentation>Castleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH024">
        <xs:annotation>
          <xs:documentation>Catherston Leweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH025">
        <xs:annotation>
          <xs:documentation>Cattistock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH026">
        <xs:annotation>
          <xs:documentation>Caundle Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH027">
        <xs:annotation>
          <xs:documentation>Cerne Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH028">
        <xs:annotation>
          <xs:documentation>Charminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH029">
        <xs:annotation>
          <xs:documentation>Charmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH030">
        <xs:annotation>
          <xs:documentation>Chedington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH031">
        <xs:annotation>
          <xs:documentation>Cheselbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH032">
        <xs:annotation>
          <xs:documentation>Chetnole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH033">
        <xs:annotation>
          <xs:documentation>Chickerell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH034">
        <xs:annotation>
          <xs:documentation>Chideock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH035">
        <xs:annotation>
          <xs:documentation>Chilcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH036">
        <xs:annotation>
          <xs:documentation>Chilfrome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH037">
        <xs:annotation>
          <xs:documentation>Clifton Maybank</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH038">
        <xs:annotation>
          <xs:documentation>Compton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH039">
        <xs:annotation>
          <xs:documentation>Corscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH040">
        <xs:annotation>
          <xs:documentation>Crossways</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH041">
        <xs:annotation>
          <xs:documentation>Dewlish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH042">
        <xs:annotation>
          <xs:documentation>Dorchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH043">
        <xs:annotation>
          <xs:documentation>East Chelborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH044">
        <xs:annotation>
          <xs:documentation>Evershot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH045">
        <xs:annotation>
          <xs:documentation>Fleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH046">
        <xs:annotation>
          <xs:documentation>Folke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH047">
        <xs:annotation>
          <xs:documentation>Frampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH048">
        <xs:annotation>
          <xs:documentation>Frome St. Quintin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH049">
        <xs:annotation>
          <xs:documentation>Frome Vauchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH050">
        <xs:annotation>
          <xs:documentation>Goathill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH051">
        <xs:annotation>
          <xs:documentation>Godmanstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH052">
        <xs:annotation>
          <xs:documentation>Halstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH053">
        <xs:annotation>
          <xs:documentation>Haydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH054">
        <xs:annotation>
          <xs:documentation>Hermitage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH055">
        <xs:annotation>
          <xs:documentation>Hilfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH056">
        <xs:annotation>
          <xs:documentation>Holnest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH057">
        <xs:annotation>
          <xs:documentation>Holwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH058">
        <xs:annotation>
          <xs:documentation>Hooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH059">
        <xs:annotation>
          <xs:documentation>Kingston Russell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH060">
        <xs:annotation>
          <xs:documentation>Langton Herring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH061">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH062">
        <xs:annotation>
          <xs:documentation>Leweston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH063">
        <xs:annotation>
          <xs:documentation>Lillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH064">
        <xs:annotation>
          <xs:documentation>Littlebredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH065">
        <xs:annotation>
          <xs:documentation>Litton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH066">
        <xs:annotation>
          <xs:documentation>Loders</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH067">
        <xs:annotation>
          <xs:documentation>Long Bredy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH068">
        <xs:annotation>
          <xs:documentation>Longburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH069">
        <xs:annotation>
          <xs:documentation>Lyme Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH070">
        <xs:annotation>
          <xs:documentation>Maiden Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH071">
        <xs:annotation>
          <xs:documentation>Mapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH072">
        <xs:annotation>
          <xs:documentation>Marshwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH073">
        <xs:annotation>
          <xs:documentation>Melbury Bubb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH074">
        <xs:annotation>
          <xs:documentation>Melbury Osmond</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH075">
        <xs:annotation>
          <xs:documentation>Melbury Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH076">
        <xs:annotation>
          <xs:documentation>Melcombe Horsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH077">
        <xs:annotation>
          <xs:documentation>Minterne Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH078">
        <xs:annotation>
          <xs:documentation>Mosterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH079">
        <xs:annotation>
          <xs:documentation>Netherbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH080">
        <xs:annotation>
          <xs:documentation>Nether Cerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH081">
        <xs:annotation>
          <xs:documentation>Nether Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH082">
        <xs:annotation>
          <xs:documentation>North Poorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH083">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH084">
        <xs:annotation>
          <xs:documentation>Oborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH085">
        <xs:annotation>
          <xs:documentation>Osmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH086">
        <xs:annotation>
          <xs:documentation>Over Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH087">
        <xs:annotation>
          <xs:documentation>Owermoigne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH088">
        <xs:annotation>
          <xs:documentation>Piddlehinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH089">
        <xs:annotation>
          <xs:documentation>Piddletrenthide</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH090">
        <xs:annotation>
          <xs:documentation>Pilsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH091">
        <xs:annotation>
          <xs:documentation>Portesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH092">
        <xs:annotation>
          <xs:documentation>Powerstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH093">
        <xs:annotation>
          <xs:documentation>Poxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH094">
        <xs:annotation>
          <xs:documentation>Poyntington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH095">
        <xs:annotation>
          <xs:documentation>Puddletown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH096">
        <xs:annotation>
          <xs:documentation>Puncknowle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH097">
        <xs:annotation>
          <xs:documentation>Purse Caundle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH098">
        <xs:annotation>
          <xs:documentation>Rampisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH099">
        <xs:annotation>
          <xs:documentation>Ryme Intrinseca</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH100">
        <xs:annotation>
          <xs:documentation>Sandford Orcas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH101">
        <xs:annotation>
          <xs:documentation>Seaborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH102">
        <xs:annotation>
          <xs:documentation>Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH103">
        <xs:annotation>
          <xs:documentation>Shipton Gorge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH104">
        <xs:annotation>
          <xs:documentation>South Perrott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH105">
        <xs:annotation>
          <xs:documentation>Stanton St. Gabriel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH106">
        <xs:annotation>
          <xs:documentation>Stinsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH107">
        <xs:annotation>
          <xs:documentation>Stockwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH108">
        <xs:annotation>
          <xs:documentation>Stoke Abbott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH109">
        <xs:annotation>
          <xs:documentation>Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH110">
        <xs:annotation>
          <xs:documentation>Swyre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH111">
        <xs:annotation>
          <xs:documentation>Sydling St. Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH112">
        <xs:annotation>
          <xs:documentation>Symondsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH113">
        <xs:annotation>
          <xs:documentation>Thorncombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH114">
        <xs:annotation>
          <xs:documentation>Thornford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH115">
        <xs:annotation>
          <xs:documentation>Tincleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH116">
        <xs:annotation>
          <xs:documentation>Toller Fratrum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH117">
        <xs:annotation>
          <xs:documentation>Toller Porcorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH118">
        <xs:annotation>
          <xs:documentation>Tolpuddle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH119">
        <xs:annotation>
          <xs:documentation>Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH120">
        <xs:annotation>
          <xs:documentation>Up Cerne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH121">
        <xs:annotation>
          <xs:documentation>Warmwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH122">
        <xs:annotation>
          <xs:documentation>West Chelborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH123">
        <xs:annotation>
          <xs:documentation>West Compton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH124">
        <xs:annotation>
          <xs:documentation>West Knighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH125">
        <xs:annotation>
          <xs:documentation>West Stafford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH126">
        <xs:annotation>
          <xs:documentation>Whitcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH127">
        <xs:annotation>
          <xs:documentation>Whitechurch Canonicorum</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH128">
        <xs:annotation>
          <xs:documentation>Winterborne Came</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH129">
        <xs:annotation>
          <xs:documentation>Winterborne Herringston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH130">
        <xs:annotation>
          <xs:documentation>Winterborne Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH131">
        <xs:annotation>
          <xs:documentation>Winterborne St. Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH132">
        <xs:annotation>
          <xs:documentation>Winterbourne Abbas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH133">
        <xs:annotation>
          <xs:documentation>Winterbourne Steepleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH134">
        <xs:annotation>
          <xs:documentation>Woodsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH135">
        <xs:annotation>
          <xs:documentation>Wootton Fitzpaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH136">
        <xs:annotation>
          <xs:documentation>Wraxall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH137">
        <xs:annotation>
          <xs:documentation>Wynford Eagle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UH138">
        <xs:annotation>
          <xs:documentation>Yetminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19UJ001">
        <xs:annotation>
          <xs:documentation>Portland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB001">
        <xs:annotation>
          <xs:documentation>Bournmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB002">
        <xs:annotation>
          <xs:documentation>Edmondsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB003">
        <xs:annotation>
          <xs:documentation>Great Lumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB004">
        <xs:annotation>
          <xs:documentation>Kimblesworth and Plawsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB005">
        <xs:annotation>
          <xs:documentation>Little Lumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB006">
        <xs:annotation>
          <xs:documentation>North Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB007">
        <xs:annotation>
          <xs:documentation>Ouston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB008">
        <xs:annotation>
          <xs:documentation>Pelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB009">
        <xs:annotation>
          <xs:documentation>Sacriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB010">
        <xs:annotation>
          <xs:documentation>Urpeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UB011">
        <xs:annotation>
          <xs:documentation>Waldridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD001">
        <xs:annotation>
          <xs:documentation>Cornsay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD002">
        <xs:annotation>
          <xs:documentation>Esh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD003">
        <xs:annotation>
          <xs:documentation>Greencroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD004">
        <xs:annotation>
          <xs:documentation>Healeyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD005">
        <xs:annotation>
          <xs:documentation>Hedleyhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD006">
        <xs:annotation>
          <xs:documentation>Lanchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD008">
        <xs:annotation>
          <xs:documentation>Muggleswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD009">
        <xs:annotation>
          <xs:documentation>Satley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UD010">
        <xs:annotation>
          <xs:documentation>Burnhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE001">
        <xs:annotation>
          <xs:documentation>Bearpark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE002">
        <xs:annotation>
          <xs:documentation>Belmont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE003">
        <xs:annotation>
          <xs:documentation>Brancepeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE004">
        <xs:annotation>
          <xs:documentation>Brandon and Byshottles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE005">
        <xs:annotation>
          <xs:documentation>Cassop-cum-Quarrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE006">
        <xs:annotation>
          <xs:documentation>Coxhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE007">
        <xs:annotation>
          <xs:documentation>Croxdale and Hett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE008">
        <xs:annotation>
          <xs:documentation>Framwellgate Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE009">
        <xs:annotation>
          <xs:documentation>Kelloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE010">
        <xs:annotation>
          <xs:documentation>Pittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE011">
        <xs:annotation>
          <xs:documentation>Shadforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE012">
        <xs:annotation>
          <xs:documentation>Sherburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE013">
        <xs:annotation>
          <xs:documentation>Shincliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE014">
        <xs:annotation>
          <xs:documentation>West Rainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE015">
        <xs:annotation>
          <xs:documentation>Witton Gilbert</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UE016">
        <xs:annotation>
          <xs:documentation>Lands Common to Brancepeth and Brandon and Byshottles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF001">
        <xs:annotation>
          <xs:documentation>Castle Eden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF002">
        <xs:annotation>
          <xs:documentation>Dalton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF003">
        <xs:annotation>
          <xs:documentation>Easington Colliery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF004">
        <xs:annotation>
          <xs:documentation>Easington Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF005">
        <xs:annotation>
          <xs:documentation>Haswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF006">
        <xs:annotation>
          <xs:documentation>Hawthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF007">
        <xs:annotation>
          <xs:documentation>Horden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF008">
        <xs:annotation>
          <xs:documentation>Hutton Henry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF009">
        <xs:annotation>
          <xs:documentation>Monk Hesleden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF010">
        <xs:annotation>
          <xs:documentation>Murton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF011">
        <xs:annotation>
          <xs:documentation>Nesbitt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF012">
        <xs:annotation>
          <xs:documentation>Peterlee</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF013">
        <xs:annotation>
          <xs:documentation>Seaham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF014">
        <xs:annotation>
          <xs:documentation>Seaton with Slingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF015">
        <xs:annotation>
          <xs:documentation>Sheraton with Hulam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF016">
        <xs:annotation>
          <xs:documentation>Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF017">
        <xs:annotation>
          <xs:documentation>Thornley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF018">
        <xs:annotation>
          <xs:documentation>Trimdon Foundry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF019">
        <xs:annotation>
          <xs:documentation>Wheatley Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF020">
        <xs:annotation>
          <xs:documentation>Wingate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UF021">
        <xs:annotation>
          <xs:documentation>South Hetton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG001">
        <xs:annotation>
          <xs:documentation>Bishop Middleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG002">
        <xs:annotation>
          <xs:documentation>Bradbury and the Isle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG003">
        <xs:annotation>
          <xs:documentation>Chilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG004">
        <xs:annotation>
          <xs:documentation>Cornforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG005">
        <xs:annotation>
          <xs:documentation>Ferryhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG006">
        <xs:annotation>
          <xs:documentation>Fishburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG007">
        <xs:annotation>
          <xs:documentation>Great Aycliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG008">
        <xs:annotation>
          <xs:documentation>Middridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG009">
        <xs:annotation>
          <xs:documentation>Mordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG010">
        <xs:annotation>
          <xs:documentation>Sedgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG011">
        <xs:annotation>
          <xs:documentation>Shildon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG012">
        <xs:annotation>
          <xs:documentation>Spennymoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG013">
        <xs:annotation>
          <xs:documentation>Trimdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG014">
        <xs:annotation>
          <xs:documentation>Windlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UG015">
        <xs:annotation>
          <xs:documentation>Eldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH001">
        <xs:annotation>
          <xs:documentation>Barforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH002">
        <xs:annotation>
          <xs:documentation>Barnard Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH003">
        <xs:annotation>
          <xs:documentation>Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH004">
        <xs:annotation>
          <xs:documentation>Bolam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH005">
        <xs:annotation>
          <xs:documentation>Boldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH006">
        <xs:annotation>
          <xs:documentation>Bowes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH007">
        <xs:annotation>
          <xs:documentation>Brignall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH008">
        <xs:annotation>
          <xs:documentation>Cleatlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH009">
        <xs:annotation>
          <xs:documentation>Cockfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH010">
        <xs:annotation>
          <xs:documentation>Cotherstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH011">
        <xs:annotation>
          <xs:documentation>Eggleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH012">
        <xs:annotation>
          <xs:documentation>Egglestone Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH013">
        <xs:annotation>
          <xs:documentation>Etherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH014">
        <xs:annotation>
          <xs:documentation>Evenwood and Barony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH015">
        <xs:annotation>
          <xs:documentation>Forest and Frith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH016">
        <xs:annotation>
          <xs:documentation>Gainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH017">
        <xs:annotation>
          <xs:documentation>Gilmonby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH018">
        <xs:annotation>
          <xs:documentation>Hamsterley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH019">
        <xs:annotation>
          <xs:documentation>Headlam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH020">
        <xs:annotation>
          <xs:documentation>Hilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH021">
        <xs:annotation>
          <xs:documentation>Holwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH022">
        <xs:annotation>
          <xs:documentation>Hope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH023">
        <xs:annotation>
          <xs:documentation>Hunderthwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH024">
        <xs:annotation>
          <xs:documentation>Hutton Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH025">
        <xs:annotation>
          <xs:documentation>Ingleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH026">
        <xs:annotation>
          <xs:documentation>Langleydale and Shotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH027">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH028">
        <xs:annotation>
          <xs:documentation>Lartington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH029">
        <xs:annotation>
          <xs:documentation>Lunedale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH030">
        <xs:annotation>
          <xs:documentation>Lynesack and Softley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH031">
        <xs:annotation>
          <xs:documentation>Marwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH032">
        <xs:annotation>
          <xs:documentation>Mickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH033">
        <xs:annotation>
          <xs:documentation>Middleton in Teesdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH034">
        <xs:annotation>
          <xs:documentation>Morton Tinmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH035">
        <xs:annotation>
          <xs:documentation>Newbiggin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH036">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH037">
        <xs:annotation>
          <xs:documentation>Raby with Keverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH038">
        <xs:annotation>
          <xs:documentation>Rokeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH039">
        <xs:annotation>
          <xs:documentation>Romaldkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH040">
        <xs:annotation>
          <xs:documentation>Scargill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH041">
        <xs:annotation>
          <xs:documentation>South Bedburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH042">
        <xs:annotation>
          <xs:documentation>Staindrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH043">
        <xs:annotation>
          <xs:documentation>Startforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH044">
        <xs:annotation>
          <xs:documentation>Streatlam and Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH045">
        <xs:annotation>
          <xs:documentation>Wackerfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH046">
        <xs:annotation>
          <xs:documentation>Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH047">
        <xs:annotation>
          <xs:documentation>Whorlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH048">
        <xs:annotation>
          <xs:documentation>Winston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH049">
        <xs:annotation>
          <xs:documentation>Woodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH050">
        <xs:annotation>
          <xs:documentation>Wycliffe with Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UH051">
        <xs:annotation>
          <xs:documentation>Lands common to Hamsterley, Lynesack and Softley and South Bedburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ001">
        <xs:annotation>
          <xs:documentation>Edmondbyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ002">
        <xs:annotation>
          <xs:documentation>Hunstanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ003">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ004">
        <xs:annotation>
          <xs:documentation>Tow Law</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ005">
        <xs:annotation>
          <xs:documentation>Wolsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ006">
        <xs:annotation>
          <xs:documentation>Wolsingham Park Moor lands cmn to Stanhope, Tow Law and Wolsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ007">
        <xs:annotation>
          <xs:documentation>Dene Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ008">
        <xs:annotation>
          <xs:documentation>Witton-le-Wear</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="20UJ009">
        <xs:annotation>
          <xs:documentation>West Auckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF001">
        <xs:annotation>
          <xs:documentation>Barcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF002">
        <xs:annotation>
          <xs:documentation>Beddingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF003">
        <xs:annotation>
          <xs:documentation>Chailey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF004">
        <xs:annotation>
          <xs:documentation>Ditchling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF005">
        <xs:annotation>
          <xs:documentation>East Chiltington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF006">
        <xs:annotation>
          <xs:documentation>Falmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF007">
        <xs:annotation>
          <xs:documentation>Firle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF008">
        <xs:annotation>
          <xs:documentation>Glynde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF009">
        <xs:annotation>
          <xs:documentation>Hamsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF010">
        <xs:annotation>
          <xs:documentation>Iford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF011">
        <xs:annotation>
          <xs:documentation>Kingston near Lewes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF012">
        <xs:annotation>
          <xs:documentation>Lewes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF013">
        <xs:annotation>
          <xs:documentation>Newhaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF014">
        <xs:annotation>
          <xs:documentation>Newick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF015">
        <xs:annotation>
          <xs:documentation>Peacehaven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF016">
        <xs:annotation>
          <xs:documentation>Piddinghoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF017">
        <xs:annotation>
          <xs:documentation>Plumpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF018">
        <xs:annotation>
          <xs:documentation>Ringmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF019">
        <xs:annotation>
          <xs:documentation>Rodmell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF020">
        <xs:annotation>
          <xs:documentation>St. Ann (Without)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF021">
        <xs:annotation>
          <xs:documentation>St. John (Without)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF022">
        <xs:annotation>
          <xs:documentation>Southease</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF023">
        <xs:annotation>
          <xs:documentation>South Heighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF025">
        <xs:annotation>
          <xs:documentation>Streat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF026">
        <xs:annotation>
          <xs:documentation>Tarring Neville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF027">
        <xs:annotation>
          <xs:documentation>Telscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF028">
        <xs:annotation>
          <xs:documentation>Westmeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF029">
        <xs:annotation>
          <xs:documentation>Wivelsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UF030">
        <xs:annotation>
          <xs:documentation>Seaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG001">
        <xs:annotation>
          <xs:documentation>Ashburnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG002">
        <xs:annotation>
          <xs:documentation>Battle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG003">
        <xs:annotation>
          <xs:documentation>Beckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG004">
        <xs:annotation>
          <xs:documentation>Bodiam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG005">
        <xs:annotation>
          <xs:documentation>Brede</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG006">
        <xs:annotation>
          <xs:documentation>Brightling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG007">
        <xs:annotation>
          <xs:documentation>Burwash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG008">
        <xs:annotation>
          <xs:documentation>Camber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG009">
        <xs:annotation>
          <xs:documentation>Catsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG010">
        <xs:annotation>
          <xs:documentation>Crowhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG011">
        <xs:annotation>
          <xs:documentation>Dallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG012">
        <xs:annotation>
          <xs:documentation>East Guldeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG013">
        <xs:annotation>
          <xs:documentation>Etchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG014">
        <xs:annotation>
          <xs:documentation>Ewhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG015">
        <xs:annotation>
          <xs:documentation>Fairlight</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG016">
        <xs:annotation>
          <xs:documentation>Guestling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG017">
        <xs:annotation>
          <xs:documentation>Hurst Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG018">
        <xs:annotation>
          <xs:documentation>Icklesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG019">
        <xs:annotation>
          <xs:documentation>Iden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG020">
        <xs:annotation>
          <xs:documentation>Mountfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG021">
        <xs:annotation>
          <xs:documentation>Northiam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG022">
        <xs:annotation>
          <xs:documentation>Peasmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG023">
        <xs:annotation>
          <xs:documentation>Penhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG024">
        <xs:annotation>
          <xs:documentation>Pett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG025">
        <xs:annotation>
          <xs:documentation>Playden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG026">
        <xs:annotation>
          <xs:documentation>Rye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG027">
        <xs:annotation>
          <xs:documentation>Rye Foreign</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG028">
        <xs:annotation>
          <xs:documentation>Salehurst and Robertsbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG029">
        <xs:annotation>
          <xs:documentation>Sedlescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG030">
        <xs:annotation>
          <xs:documentation>Ticehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG031">
        <xs:annotation>
          <xs:documentation>Udimore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG032">
        <xs:annotation>
          <xs:documentation>Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UG033">
        <xs:annotation>
          <xs:documentation>Whatlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH001">
        <xs:annotation>
          <xs:documentation>Alciston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH002">
        <xs:annotation>
          <xs:documentation>Alfriston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH003">
        <xs:annotation>
          <xs:documentation>Arlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH004">
        <xs:annotation>
          <xs:documentation>Berwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH005">
        <xs:annotation>
          <xs:documentation>Buxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH006">
        <xs:annotation>
          <xs:documentation>Chalvington with Ripe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH007">
        <xs:annotation>
          <xs:documentation>Chiddingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH008">
        <xs:annotation>
          <xs:documentation>Crowborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH009">
        <xs:annotation>
          <xs:documentation>Cuckmere Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH010">
        <xs:annotation>
          <xs:documentation>Danehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH011">
        <xs:annotation>
          <xs:documentation>East Dean and Friston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH012">
        <xs:annotation>
          <xs:documentation>East Hoathly with Halland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH013">
        <xs:annotation>
          <xs:documentation>Fletching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH014">
        <xs:annotation>
          <xs:documentation>Forest Row</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH015">
        <xs:annotation>
          <xs:documentation>Framfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH016">
        <xs:annotation>
          <xs:documentation>Frant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH017">
        <xs:annotation>
          <xs:documentation>Hadlow Down</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH018">
        <xs:annotation>
          <xs:documentation>Hailsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH019">
        <xs:annotation>
          <xs:documentation>Hartfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH020">
        <xs:annotation>
          <xs:documentation>Heathfield and Waldron</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH021">
        <xs:annotation>
          <xs:documentation>Hellingly</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH022">
        <xs:annotation>
          <xs:documentation>Herstmonceux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH023">
        <xs:annotation>
          <xs:documentation>Hooe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH024">
        <xs:annotation>
          <xs:documentation>Horam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH025">
        <xs:annotation>
          <xs:documentation>Isfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH026">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH027">
        <xs:annotation>
          <xs:documentation>Little Horsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH028">
        <xs:annotation>
          <xs:documentation>Long Man</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH029">
        <xs:annotation>
          <xs:documentation>Maresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH030">
        <xs:annotation>
          <xs:documentation>Mayfield and Five Ashes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH031">
        <xs:annotation>
          <xs:documentation>Ninfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH032">
        <xs:annotation>
          <xs:documentation>Pevensey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH033">
        <xs:annotation>
          <xs:documentation>Polegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH034">
        <xs:annotation>
          <xs:documentation>Rotherfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH035">
        <xs:annotation>
          <xs:documentation>Selmeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH036">
        <xs:annotation>
          <xs:documentation>Uckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH037">
        <xs:annotation>
          <xs:documentation>Wadhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH038">
        <xs:annotation>
          <xs:documentation>Warbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH039">
        <xs:annotation>
          <xs:documentation>Wartling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH040">
        <xs:annotation>
          <xs:documentation>Westham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH041">
        <xs:annotation>
          <xs:documentation>Willingdon and Jevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="21UH042">
        <xs:annotation>
          <xs:documentation>Withyham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB001">
        <xs:annotation>
          <xs:documentation>Billericay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB002">
        <xs:annotation>
          <xs:documentation>Great Burstead and South Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB003">
        <xs:annotation>
          <xs:documentation>Little Burstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB004">
        <xs:annotation>
          <xs:documentation>Ramsden Bellhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB005">
        <xs:annotation>
          <xs:documentation>Ramsden Crays</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UB006">
        <xs:annotation>
          <xs:documentation>Noak Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC001">
        <xs:annotation>
          <xs:documentation>Alphamstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC002">
        <xs:annotation>
          <xs:documentation>Ashen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC003">
        <xs:annotation>
          <xs:documentation>Bardfield Saling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC004">
        <xs:annotation>
          <xs:documentation>Belchamp Otten</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC005">
        <xs:annotation>
          <xs:documentation>Belchamp St. Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC006">
        <xs:annotation>
          <xs:documentation>Belchamp Walter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC007">
        <xs:annotation>
          <xs:documentation>Birdbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC008">
        <xs:annotation>
          <xs:documentation>Black Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC009">
        <xs:annotation>
          <xs:documentation>Borley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC010">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC011">
        <xs:annotation>
          <xs:documentation>Bulmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC012">
        <xs:annotation>
          <xs:documentation>Bures Hamlet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC013">
        <xs:annotation>
          <xs:documentation>Castle Hedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC014">
        <xs:annotation>
          <xs:documentation>Coggeshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC015">
        <xs:annotation>
          <xs:documentation>Colne Engaine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC016">
        <xs:annotation>
          <xs:documentation>Cressing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC017">
        <xs:annotation>
          <xs:documentation>Earls Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC018">
        <xs:annotation>
          <xs:documentation>Fairstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC019">
        <xs:annotation>
          <xs:documentation>Faulkbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC020">
        <xs:annotation>
          <xs:documentation>Feering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC021">
        <xs:annotation>
          <xs:documentation>Finchingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC022">
        <xs:annotation>
          <xs:documentation>Foxearth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC023">
        <xs:annotation>
          <xs:documentation>Gestingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC024">
        <xs:annotation>
          <xs:documentation>Gosfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC025">
        <xs:annotation>
          <xs:documentation>Great Bardfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC026">
        <xs:annotation>
          <xs:documentation>Great Henny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC027">
        <xs:annotation>
          <xs:documentation>Great Maplestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC028">
        <xs:annotation>
          <xs:documentation>Great Saling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC029">
        <xs:annotation>
          <xs:documentation>Great Yeldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC030">
        <xs:annotation>
          <xs:documentation>Greenstead Green and Halstead Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC031">
        <xs:annotation>
          <xs:documentation>Halstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC032">
        <xs:annotation>
          <xs:documentation>Hatfield Peverel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC033">
        <xs:annotation>
          <xs:documentation>Helions Bumpstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC034">
        <xs:annotation>
          <xs:documentation>Kelvedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC035">
        <xs:annotation>
          <xs:documentation>Lamarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC036">
        <xs:annotation>
          <xs:documentation>Liston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC037">
        <xs:annotation>
          <xs:documentation>Little Henny</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC038">
        <xs:annotation>
          <xs:documentation>Little Maplestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC039">
        <xs:annotation>
          <xs:documentation>Little Yeldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC040">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC041">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC042">
        <xs:annotation>
          <xs:documentation>Panfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC043">
        <xs:annotation>
          <xs:documentation>Pebmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC044">
        <xs:annotation>
          <xs:documentation>Pentlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC045">
        <xs:annotation>
          <xs:documentation>Rayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC046">
        <xs:annotation>
          <xs:documentation>Ridgewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC047">
        <xs:annotation>
          <xs:documentation>Rivenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC048">
        <xs:annotation>
          <xs:documentation>Shalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC049">
        <xs:annotation>
          <xs:documentation>Sible Hedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC050">
        <xs:annotation>
          <xs:documentation>Silver End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC051">
        <xs:annotation>
          <xs:documentation>Stambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC052">
        <xs:annotation>
          <xs:documentation>Steeple Bumpstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC053">
        <xs:annotation>
          <xs:documentation>Stisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC054">
        <xs:annotation>
          <xs:documentation>Sturmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC055">
        <xs:annotation>
          <xs:documentation>Terling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC056">
        <xs:annotation>
          <xs:documentation>Tilbury Juxta Clare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC057">
        <xs:annotation>
          <xs:documentation>Toppesfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC058">
        <xs:annotation>
          <xs:documentation>Twinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC059">
        <xs:annotation>
          <xs:documentation>Wethersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC060">
        <xs:annotation>
          <xs:documentation>White Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC061">
        <xs:annotation>
          <xs:documentation>White Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC062">
        <xs:annotation>
          <xs:documentation>Wickham St. Paul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC063">
        <xs:annotation>
          <xs:documentation>Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UC064">
        <xs:annotation>
          <xs:documentation>Great Notley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD001">
        <xs:annotation>
          <xs:documentation>Blackmore, Hook End and Wyatts Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD002">
        <xs:annotation>
          <xs:documentation>Doddinghurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD003">
        <xs:annotation>
          <xs:documentation>Ingatestone and Fryerning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD004">
        <xs:annotation>
          <xs:documentation>Kelvedon Hatch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD005">
        <xs:annotation>
          <xs:documentation>Mountnessing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD006">
        <xs:annotation>
          <xs:documentation>Navestock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD007">
        <xs:annotation>
          <xs:documentation>Stondon Massey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD008">
        <xs:annotation>
          <xs:documentation>Herongate and Ingrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UD009">
        <xs:annotation>
          <xs:documentation>West Horndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF001">
        <xs:annotation>
          <xs:documentation>Boreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF002">
        <xs:annotation>
          <xs:documentation>Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF003">
        <xs:annotation>
          <xs:documentation>Chignall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF004">
        <xs:annotation>
          <xs:documentation>Danbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF005">
        <xs:annotation>
          <xs:documentation>East Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF006">
        <xs:annotation>
          <xs:documentation>Galleywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF007">
        <xs:annotation>
          <xs:documentation>Good Easter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF008">
        <xs:annotation>
          <xs:documentation>Great and Little Leighs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF009">
        <xs:annotation>
          <xs:documentation>Great Baddow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF010">
        <xs:annotation>
          <xs:documentation>Great Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF011">
        <xs:annotation>
          <xs:documentation>Highwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF012">
        <xs:annotation>
          <xs:documentation>Little Baddow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF013">
        <xs:annotation>
          <xs:documentation>Little Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF014">
        <xs:annotation>
          <xs:documentation>Margaretting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF015">
        <xs:annotation>
          <xs:documentation>Mashbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF016">
        <xs:annotation>
          <xs:documentation>Pleshey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF017">
        <xs:annotation>
          <xs:documentation>Rettendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF018">
        <xs:annotation>
          <xs:documentation>Roxwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF019">
        <xs:annotation>
          <xs:documentation>Runwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF020">
        <xs:annotation>
          <xs:documentation>Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF021">
        <xs:annotation>
          <xs:documentation>South Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF022">
        <xs:annotation>
          <xs:documentation>South Woodham Ferrers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF023">
        <xs:annotation>
          <xs:documentation>Springfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF024">
        <xs:annotation>
          <xs:documentation>Stock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF025">
        <xs:annotation>
          <xs:documentation>West Hanningfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF026">
        <xs:annotation>
          <xs:documentation>Woodham Ferrers and Bicknacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UF027">
        <xs:annotation>
          <xs:documentation>Writtle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG001">
        <xs:annotation>
          <xs:documentation>Abberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG002">
        <xs:annotation>
          <xs:documentation>Aldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG003">
        <xs:annotation>
          <xs:documentation>Birch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG004">
        <xs:annotation>
          <xs:documentation>Boxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG005">
        <xs:annotation>
          <xs:documentation>Chappel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG006">
        <xs:annotation>
          <xs:documentation>Copford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG007">
        <xs:annotation>
          <xs:documentation>Dedham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG008">
        <xs:annotation>
          <xs:documentation>East Donyland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG009">
        <xs:annotation>
          <xs:documentation>East Mersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG010">
        <xs:annotation>
          <xs:documentation>Eight Ash Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG011">
        <xs:annotation>
          <xs:documentation>Fingringhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG012">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG013">
        <xs:annotation>
          <xs:documentation>Great and Little Wigborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG014">
        <xs:annotation>
          <xs:documentation>Great Horkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG015">
        <xs:annotation>
          <xs:documentation>Great Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG016">
        <xs:annotation>
          <xs:documentation>Langenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG017">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG018">
        <xs:annotation>
          <xs:documentation>Layer Breton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG019">
        <xs:annotation>
          <xs:documentation>Layer-de-la-Haye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG020">
        <xs:annotation>
          <xs:documentation>Layer Marney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG021">
        <xs:annotation>
          <xs:documentation>Little Horkesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG022">
        <xs:annotation>
          <xs:documentation>Marks Tey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG023">
        <xs:annotation>
          <xs:documentation>Messing-cum-Inworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG024">
        <xs:annotation>
          <xs:documentation>Mount Bures</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG025">
        <xs:annotation>
          <xs:documentation>Peldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG026">
        <xs:annotation>
          <xs:documentation>Salcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG027">
        <xs:annotation>
          <xs:documentation>Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG028">
        <xs:annotation>
          <xs:documentation>Tiptree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG029">
        <xs:annotation>
          <xs:documentation>Virley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG030">
        <xs:annotation>
          <xs:documentation>Wakes Colne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG031">
        <xs:annotation>
          <xs:documentation>West Bergholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG032">
        <xs:annotation>
          <xs:documentation>West Mersea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG033">
        <xs:annotation>
          <xs:documentation>Wivenhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG034">
        <xs:annotation>
          <xs:documentation>Wormingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UG035">
        <xs:annotation>
          <xs:documentation>Myland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH001">
        <xs:annotation>
          <xs:documentation>Abbess Beauchamp and Berners Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH002">
        <xs:annotation>
          <xs:documentation>Bobbingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH003">
        <xs:annotation>
          <xs:documentation>Epping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH004">
        <xs:annotation>
          <xs:documentation>Epping Upland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH005">
        <xs:annotation>
          <xs:documentation>Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH006">
        <xs:annotation>
          <xs:documentation>High Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH007">
        <xs:annotation>
          <xs:documentation>High Ongar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH008">
        <xs:annotation>
          <xs:documentation>Lambourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH009">
        <xs:annotation>
          <xs:documentation>Little Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH010">
        <xs:annotation>
          <xs:documentation>Magdalen Laver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH011">
        <xs:annotation>
          <xs:documentation>Matching</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH012">
        <xs:annotation>
          <xs:documentation>Moreton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH013">
        <xs:annotation>
          <xs:documentation>Nazeing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH014">
        <xs:annotation>
          <xs:documentation>North Weald Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH015">
        <xs:annotation>
          <xs:documentation>Ongar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH016">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH017">
        <xs:annotation>
          <xs:documentation>Sheering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH018">
        <xs:annotation>
          <xs:documentation>Stanford Rivers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH019">
        <xs:annotation>
          <xs:documentation>Stapleford Abbotts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH020">
        <xs:annotation>
          <xs:documentation>Stapleford Tawney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH021">
        <xs:annotation>
          <xs:documentation>Theydon Bois</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH022">
        <xs:annotation>
          <xs:documentation>Theydon Garnon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH023">
        <xs:annotation>
          <xs:documentation>Theydon Mount</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH024">
        <xs:annotation>
          <xs:documentation>Waltham Abbey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH025">
        <xs:annotation>
          <xs:documentation>Willingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH026">
        <xs:annotation>
          <xs:documentation>Buckhurst Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH027">
        <xs:annotation>
          <xs:documentation>Chigwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UH028">
        <xs:annotation>
          <xs:documentation>Loughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK001">
        <xs:annotation>
          <xs:documentation>Althorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK002">
        <xs:annotation>
          <xs:documentation>Asheldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK003">
        <xs:annotation>
          <xs:documentation>Bradwell-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK004">
        <xs:annotation>
          <xs:documentation>Burnham-on-Crouch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK005">
        <xs:annotation>
          <xs:documentation>Cold Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK006">
        <xs:annotation>
          <xs:documentation>Dengie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK007">
        <xs:annotation>
          <xs:documentation>Goldhanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK008">
        <xs:annotation>
          <xs:documentation>Great Braxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK009">
        <xs:annotation>
          <xs:documentation>Great Totham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK010">
        <xs:annotation>
          <xs:documentation>Hazeleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK011">
        <xs:annotation>
          <xs:documentation>Heybridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK012">
        <xs:annotation>
          <xs:documentation>Langford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK013">
        <xs:annotation>
          <xs:documentation>Latchingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK014">
        <xs:annotation>
          <xs:documentation>Little Braxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK015">
        <xs:annotation>
          <xs:documentation>Little Totham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK016">
        <xs:annotation>
          <xs:documentation>Maldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK017">
        <xs:annotation>
          <xs:documentation>Mayland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK018">
        <xs:annotation>
          <xs:documentation>Mundon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK019">
        <xs:annotation>
          <xs:documentation>North Fambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK020">
        <xs:annotation>
          <xs:documentation>Purleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK021">
        <xs:annotation>
          <xs:documentation>St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK022">
        <xs:annotation>
          <xs:documentation>Southminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK023">
        <xs:annotation>
          <xs:documentation>Steeple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK024">
        <xs:annotation>
          <xs:documentation>Stow Maries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK025">
        <xs:annotation>
          <xs:documentation>Tillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK026">
        <xs:annotation>
          <xs:documentation>Tollesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK027">
        <xs:annotation>
          <xs:documentation>Tolleshunt D'Arcy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK028">
        <xs:annotation>
          <xs:documentation>Tolleshunt Knights</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK029">
        <xs:annotation>
          <xs:documentation>Tolleshunt Major</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK030">
        <xs:annotation>
          <xs:documentation>Ulting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK031">
        <xs:annotation>
          <xs:documentation>Wickham Bishops</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK032">
        <xs:annotation>
          <xs:documentation>Woodham Mortimer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UK033">
        <xs:annotation>
          <xs:documentation>Woodham Walter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL001">
        <xs:annotation>
          <xs:documentation>Ashingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL002">
        <xs:annotation>
          <xs:documentation>Barling Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL003">
        <xs:annotation>
          <xs:documentation>Canewdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL004">
        <xs:annotation>
          <xs:documentation>Foulness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL005">
        <xs:annotation>
          <xs:documentation>Great Wakering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL006">
        <xs:annotation>
          <xs:documentation>Hawkwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL007">
        <xs:annotation>
          <xs:documentation>Hockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL008">
        <xs:annotation>
          <xs:documentation>Hullbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL009">
        <xs:annotation>
          <xs:documentation>Paglesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL010">
        <xs:annotation>
          <xs:documentation>Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL011">
        <xs:annotation>
          <xs:documentation>Stambridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL012">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL013">
        <xs:annotation>
          <xs:documentation>Rawreth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UL014">
        <xs:annotation>
          <xs:documentation>Rayleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN001">
        <xs:annotation>
          <xs:documentation>Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN002">
        <xs:annotation>
          <xs:documentation>Ardleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN003">
        <xs:annotation>
          <xs:documentation>Beaumont-cum-Moze</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN004">
        <xs:annotation>
          <xs:documentation>Bradfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN005">
        <xs:annotation>
          <xs:documentation>Brightlingsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN006">
        <xs:annotation>
          <xs:documentation>Elmstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN007">
        <xs:annotation>
          <xs:documentation>Frating</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN008">
        <xs:annotation>
          <xs:documentation>Frinton and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN009">
        <xs:annotation>
          <xs:documentation>Great Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN010">
        <xs:annotation>
          <xs:documentation>Great Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN011">
        <xs:annotation>
          <xs:documentation>Great Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN012">
        <xs:annotation>
          <xs:documentation>Harwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN013">
        <xs:annotation>
          <xs:documentation>Lawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN014">
        <xs:annotation>
          <xs:documentation>Little Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN015">
        <xs:annotation>
          <xs:documentation>Little Bromley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN016">
        <xs:annotation>
          <xs:documentation>Little Clacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN017">
        <xs:annotation>
          <xs:documentation>Little Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN018">
        <xs:annotation>
          <xs:documentation>Manningtree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN019">
        <xs:annotation>
          <xs:documentation>Mistley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN020">
        <xs:annotation>
          <xs:documentation>Ramsey and Parkeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN021">
        <xs:annotation>
          <xs:documentation>St. Osyth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN022">
        <xs:annotation>
          <xs:documentation>Tendring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN023">
        <xs:annotation>
          <xs:documentation>Thorpe-le-Soken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN024">
        <xs:annotation>
          <xs:documentation>Thorrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN025">
        <xs:annotation>
          <xs:documentation>Weeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN026">
        <xs:annotation>
          <xs:documentation>Wix</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UN027">
        <xs:annotation>
          <xs:documentation>Wrabness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ001">
        <xs:annotation>
          <xs:documentation>Arkesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ002">
        <xs:annotation>
          <xs:documentation>Ashdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ003">
        <xs:annotation>
          <xs:documentation>Aythorpe Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ004">
        <xs:annotation>
          <xs:documentation>Barnston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ005">
        <xs:annotation>
          <xs:documentation>Berden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ006">
        <xs:annotation>
          <xs:documentation>Birchanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ007">
        <xs:annotation>
          <xs:documentation>Broxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ008">
        <xs:annotation>
          <xs:documentation>Chickney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ009">
        <xs:annotation>
          <xs:documentation>Chrishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ010">
        <xs:annotation>
          <xs:documentation>Clavering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ011">
        <xs:annotation>
          <xs:documentation>Debden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ012">
        <xs:annotation>
          <xs:documentation>Elmdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ013">
        <xs:annotation>
          <xs:documentation>Elsenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ014">
        <xs:annotation>
          <xs:documentation>Farnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ015">
        <xs:annotation>
          <xs:documentation>Felsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ016">
        <xs:annotation>
          <xs:documentation>Great Canfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ017">
        <xs:annotation>
          <xs:documentation>Great Chesterford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ018">
        <xs:annotation>
          <xs:documentation>Great Dunmow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ019">
        <xs:annotation>
          <xs:documentation>Great Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ020">
        <xs:annotation>
          <xs:documentation>Great Hallingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ021">
        <xs:annotation>
          <xs:documentation>Great Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ022">
        <xs:annotation>
          <xs:documentation>Hadstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ023">
        <xs:annotation>
          <xs:documentation>Hatfield Broad Oak</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ024">
        <xs:annotation>
          <xs:documentation>Hatfield Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ025">
        <xs:annotation>
          <xs:documentation>Hempstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ026">
        <xs:annotation>
          <xs:documentation>Henham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ027">
        <xs:annotation>
          <xs:documentation>High Easter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ028">
        <xs:annotation>
          <xs:documentation>High Roothing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ029">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ030">
        <xs:annotation>
          <xs:documentation>Leaden Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ031">
        <xs:annotation>
          <xs:documentation>Lindsell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ032">
        <xs:annotation>
          <xs:documentation>Little Bardfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ033">
        <xs:annotation>
          <xs:documentation>Little Canfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ034">
        <xs:annotation>
          <xs:documentation>Little Chesterford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ035">
        <xs:annotation>
          <xs:documentation>Little Dunmow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ036">
        <xs:annotation>
          <xs:documentation>Little Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ037">
        <xs:annotation>
          <xs:documentation>Little Hallingbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ038">
        <xs:annotation>
          <xs:documentation>Little Sampford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ039">
        <xs:annotation>
          <xs:documentation>Littlebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ040">
        <xs:annotation>
          <xs:documentation>Manuden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ041">
        <xs:annotation>
          <xs:documentation>Margaret Roding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ042">
        <xs:annotation>
          <xs:documentation>Newport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ043">
        <xs:annotation>
          <xs:documentation>Quendon and Rickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ044">
        <xs:annotation>
          <xs:documentation>Radwinter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ045">
        <xs:annotation>
          <xs:documentation>Saffron Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ046">
        <xs:annotation>
          <xs:documentation>Stansted Mountfitchet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ047">
        <xs:annotation>
          <xs:documentation>Stebbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ048">
        <xs:annotation>
          <xs:documentation>Strethall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ049">
        <xs:annotation>
          <xs:documentation>Takeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ050">
        <xs:annotation>
          <xs:documentation>Thaxted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ051">
        <xs:annotation>
          <xs:documentation>Tilty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ052">
        <xs:annotation>
          <xs:documentation>Ugley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ053">
        <xs:annotation>
          <xs:documentation>Wenden Lofts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ054">
        <xs:annotation>
          <xs:documentation>Wendens Ambo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ055">
        <xs:annotation>
          <xs:documentation>White Roothing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ056">
        <xs:annotation>
          <xs:documentation>Wicken Bonhunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ057">
        <xs:annotation>
          <xs:documentation>Widdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ058">
        <xs:annotation>
          <xs:documentation>Wimbish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22UQ059">
        <xs:annotation>
          <xs:documentation>Sewards End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB001">
        <xs:annotation>
          <xs:documentation>Leckhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB002">
        <xs:annotation>
          <xs:documentation>Prestbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB003">
        <xs:annotation>
          <xs:documentation>Swindon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB004">
        <xs:annotation>
          <xs:documentation>Up Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UB005">
        <xs:annotation>
          <xs:documentation>Charlton Kings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC001">
        <xs:annotation>
          <xs:documentation>Adlestrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC002">
        <xs:annotation>
          <xs:documentation>Aldsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC003">
        <xs:annotation>
          <xs:documentation>Ampney Crucis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC004">
        <xs:annotation>
          <xs:documentation>Ampney St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC005">
        <xs:annotation>
          <xs:documentation>Ampney St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC006">
        <xs:annotation>
          <xs:documentation>Andoversford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC007">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC008">
        <xs:annotation>
          <xs:documentation>Aston Subedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC009">
        <xs:annotation>
          <xs:documentation>Avening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC010">
        <xs:annotation>
          <xs:documentation>Bagendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC011">
        <xs:annotation>
          <xs:documentation>Barnsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC012">
        <xs:annotation>
          <xs:documentation>Barrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC013">
        <xs:annotation>
          <xs:documentation>Batsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC014">
        <xs:annotation>
          <xs:documentation>Baunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC015">
        <xs:annotation>
          <xs:documentation>Beverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC016">
        <xs:annotation>
          <xs:documentation>Bibury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC017">
        <xs:annotation>
          <xs:documentation>Bledington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC018">
        <xs:annotation>
          <xs:documentation>Blockley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC019">
        <xs:annotation>
          <xs:documentation>Bourton-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC020">
        <xs:annotation>
          <xs:documentation>Bourton-on-the-Water</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC021">
        <xs:annotation>
          <xs:documentation>Boxwell with Leighterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC022">
        <xs:annotation>
          <xs:documentation>Brimpsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC023">
        <xs:annotation>
          <xs:documentation>Broadwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC024">
        <xs:annotation>
          <xs:documentation>Chedworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC025">
        <xs:annotation>
          <xs:documentation>Cherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC026">
        <xs:annotation>
          <xs:documentation>Chipping Campden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC027">
        <xs:annotation>
          <xs:documentation>Cirencester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC028">
        <xs:annotation>
          <xs:documentation>Clapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC029">
        <xs:annotation>
          <xs:documentation>Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC030">
        <xs:annotation>
          <xs:documentation>Coberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC031">
        <xs:annotation>
          <xs:documentation>Cold Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC032">
        <xs:annotation>
          <xs:documentation>Colesbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC033">
        <xs:annotation>
          <xs:documentation>Coln St. Aldwyns</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC034">
        <xs:annotation>
          <xs:documentation>Coln St. Dennis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC035">
        <xs:annotation>
          <xs:documentation>Compton Abdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC036">
        <xs:annotation>
          <xs:documentation>Condicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC037">
        <xs:annotation>
          <xs:documentation>Cowley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC038">
        <xs:annotation>
          <xs:documentation>Cutsdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC039">
        <xs:annotation>
          <xs:documentation>Daglingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC040">
        <xs:annotation>
          <xs:documentation>Didmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC041">
        <xs:annotation>
          <xs:documentation>Donnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC042">
        <xs:annotation>
          <xs:documentation>Dowdeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC043">
        <xs:annotation>
          <xs:documentation>Down Ampney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC044">
        <xs:annotation>
          <xs:documentation>Driffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC045">
        <xs:annotation>
          <xs:documentation>Duntisbourne Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC046">
        <xs:annotation>
          <xs:documentation>Duntisbourne Rouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC047">
        <xs:annotation>
          <xs:documentation>Eastleach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC048">
        <xs:annotation>
          <xs:documentation>Ebrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC049">
        <xs:annotation>
          <xs:documentation>Edgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC050">
        <xs:annotation>
          <xs:documentation>Elkstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC051">
        <xs:annotation>
          <xs:documentation>Evenlode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC052">
        <xs:annotation>
          <xs:documentation>Fairford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC053">
        <xs:annotation>
          <xs:documentation>Farmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC054">
        <xs:annotation>
          <xs:documentation>Great Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC055">
        <xs:annotation>
          <xs:documentation>Guiting Power</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC056">
        <xs:annotation>
          <xs:documentation>Hampnett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC057">
        <xs:annotation>
          <xs:documentation>Hatherop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC058">
        <xs:annotation>
          <xs:documentation>Hazleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC059">
        <xs:annotation>
          <xs:documentation>Icomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC060">
        <xs:annotation>
          <xs:documentation>Kemble</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC061">
        <xs:annotation>
          <xs:documentation>Kempsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC062">
        <xs:annotation>
          <xs:documentation>Kingscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC063">
        <xs:annotation>
          <xs:documentation>Lechlade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC064">
        <xs:annotation>
          <xs:documentation>Little Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC065">
        <xs:annotation>
          <xs:documentation>Longborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC066">
        <xs:annotation>
          <xs:documentation>Long Newnton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC067">
        <xs:annotation>
          <xs:documentation>Lower Slaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC068">
        <xs:annotation>
          <xs:documentation>Maiseyhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC069">
        <xs:annotation>
          <xs:documentation>Maugersbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC070">
        <xs:annotation>
          <xs:documentation>Mickleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC071">
        <xs:annotation>
          <xs:documentation>Moreton-in-Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC072">
        <xs:annotation>
          <xs:documentation>Naunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC073">
        <xs:annotation>
          <xs:documentation>North Cerney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC074">
        <xs:annotation>
          <xs:documentation>Northleach with Eastington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC075">
        <xs:annotation>
          <xs:documentation>Notgrove</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC076">
        <xs:annotation>
          <xs:documentation>Oddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC077">
        <xs:annotation>
          <xs:documentation>Ozleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC078">
        <xs:annotation>
          <xs:documentation>Poole Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC079">
        <xs:annotation>
          <xs:documentation>Poulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC080">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC081">
        <xs:annotation>
          <xs:documentation>Quenington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC082">
        <xs:annotation>
          <xs:documentation>Rendcomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC083">
        <xs:annotation>
          <xs:documentation>Rodmarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC084">
        <xs:annotation>
          <xs:documentation>Saintbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC085">
        <xs:annotation>
          <xs:documentation>Sapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC086">
        <xs:annotation>
          <xs:documentation>Sevenhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC087">
        <xs:annotation>
          <xs:documentation>Sezincote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC088">
        <xs:annotation>
          <xs:documentation>Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC089">
        <xs:annotation>
          <xs:documentation>Shipton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC090">
        <xs:annotation>
          <xs:documentation>Shipton Moyne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC091">
        <xs:annotation>
          <xs:documentation>Siddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC092">
        <xs:annotation>
          <xs:documentation>Somerford Keynes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC093">
        <xs:annotation>
          <xs:documentation>South Cerney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC094">
        <xs:annotation>
          <xs:documentation>Southrop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC095">
        <xs:annotation>
          <xs:documentation>Stow-on-the-Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC096">
        <xs:annotation>
          <xs:documentation>Swell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC097">
        <xs:annotation>
          <xs:documentation>Syde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC098">
        <xs:annotation>
          <xs:documentation>Temple Guiting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC099">
        <xs:annotation>
          <xs:documentation>Tetbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC100">
        <xs:annotation>
          <xs:documentation>Tetbury Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC101">
        <xs:annotation>
          <xs:documentation>Todenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC102">
        <xs:annotation>
          <xs:documentation>Turkdean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC103">
        <xs:annotation>
          <xs:documentation>Upper Slaughter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC104">
        <xs:annotation>
          <xs:documentation>Westcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC105">
        <xs:annotation>
          <xs:documentation>Westonbirt with Lasborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC106">
        <xs:annotation>
          <xs:documentation>Weston Subedge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC107">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC108">
        <xs:annotation>
          <xs:documentation>Wick Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC109">
        <xs:annotation>
          <xs:documentation>Willersey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC110">
        <xs:annotation>
          <xs:documentation>Windrush</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC111">
        <xs:annotation>
          <xs:documentation>Winson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC112">
        <xs:annotation>
          <xs:documentation>Winstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC113">
        <xs:annotation>
          <xs:documentation>Withington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC114">
        <xs:annotation>
          <xs:documentation>Yanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UC115">
        <xs:annotation>
          <xs:documentation>Upper Rissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD001">
        <xs:annotation>
          <xs:documentation>Alvington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD002">
        <xs:annotation>
          <xs:documentation>Awre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD003">
        <xs:annotation>
          <xs:documentation>Aylburton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD004">
        <xs:annotation>
          <xs:documentation>Blaisdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD005">
        <xs:annotation>
          <xs:documentation>Bromesberrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD006">
        <xs:annotation>
          <xs:documentation>Churcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD007">
        <xs:annotation>
          <xs:documentation>Cinderford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD008">
        <xs:annotation>
          <xs:documentation>Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD009">
        <xs:annotation>
          <xs:documentation>Corse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD010">
        <xs:annotation>
          <xs:documentation>Drybrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD011">
        <xs:annotation>
          <xs:documentation>Dymock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD012">
        <xs:annotation>
          <xs:documentation>English Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD013">
        <xs:annotation>
          <xs:documentation>Hartpury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD014">
        <xs:annotation>
          <xs:documentation>Hewelsfield and Brockweir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD015">
        <xs:annotation>
          <xs:documentation>Huntley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD016">
        <xs:annotation>
          <xs:documentation>Kempley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD017">
        <xs:annotation>
          <xs:documentation>Littledean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD018">
        <xs:annotation>
          <xs:documentation>Longhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD019">
        <xs:annotation>
          <xs:documentation>Lydbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD020">
        <xs:annotation>
          <xs:documentation>Lydney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD021">
        <xs:annotation>
          <xs:documentation>Mitcheldean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD022">
        <xs:annotation>
          <xs:documentation>Newent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD023">
        <xs:annotation>
          <xs:documentation>Newland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD024">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD025">
        <xs:annotation>
          <xs:documentation>Oxenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD026">
        <xs:annotation>
          <xs:documentation>Pauntley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD027">
        <xs:annotation>
          <xs:documentation>Redmarley D'Abitot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD028">
        <xs:annotation>
          <xs:documentation>Ruardean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD029">
        <xs:annotation>
          <xs:documentation>Rudford and Highleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD030">
        <xs:annotation>
          <xs:documentation>Ruspidge and Soudley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD031">
        <xs:annotation>
          <xs:documentation>St. Briavels</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD032">
        <xs:annotation>
          <xs:documentation>Staunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD033">
        <xs:annotation>
          <xs:documentation>Staunton Coleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD034">
        <xs:annotation>
          <xs:documentation>Taynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD035">
        <xs:annotation>
          <xs:documentation>Tibberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD036">
        <xs:annotation>
          <xs:documentation>Tidenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD037">
        <xs:annotation>
          <xs:documentation>Upleadon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD038">
        <xs:annotation>
          <xs:documentation>Westbury-on-Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD039">
        <xs:annotation>
          <xs:documentation>West Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD040">
        <xs:annotation>
          <xs:documentation>Woolaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UD041">
        <xs:annotation>
          <xs:documentation>Gorsley and Kilcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UE002">
        <xs:annotation>
          <xs:documentation>Quedgeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF001">
        <xs:annotation>
          <xs:documentation>Alderley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF002">
        <xs:annotation>
          <xs:documentation>Alkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF003">
        <xs:annotation>
          <xs:documentation>Arlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF004">
        <xs:annotation>
          <xs:documentation>Berkeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF005">
        <xs:annotation>
          <xs:documentation>Bisley-with-Lypiatt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF006">
        <xs:annotation>
          <xs:documentation>Brookthorpe-with-Whaddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF007">
        <xs:annotation>
          <xs:documentation>Cainscross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF008">
        <xs:annotation>
          <xs:documentation>Cam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF009">
        <xs:annotation>
          <xs:documentation>Chalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF010">
        <xs:annotation>
          <xs:documentation>Coaley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF011">
        <xs:annotation>
          <xs:documentation>Cranham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF012">
        <xs:annotation>
          <xs:documentation>Dursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF013">
        <xs:annotation>
          <xs:documentation>Eastington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF014">
        <xs:annotation>
          <xs:documentation>Elmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF015">
        <xs:annotation>
          <xs:documentation>Frampton on Severn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF016">
        <xs:annotation>
          <xs:documentation>Fretherne with Saul</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF017">
        <xs:annotation>
          <xs:documentation>Frocester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF018">
        <xs:annotation>
          <xs:documentation>Ham and Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF019">
        <xs:annotation>
          <xs:documentation>Hamfallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF020">
        <xs:annotation>
          <xs:documentation>Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF021">
        <xs:annotation>
          <xs:documentation>Harescombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF022">
        <xs:annotation>
          <xs:documentation>Haresfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF023">
        <xs:annotation>
          <xs:documentation>Hillesley and Tresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF024">
        <xs:annotation>
          <xs:documentation>Hinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF025">
        <xs:annotation>
          <xs:documentation>Horsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF026">
        <xs:annotation>
          <xs:documentation>King's Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF027">
        <xs:annotation>
          <xs:documentation>Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF028">
        <xs:annotation>
          <xs:documentation>Leonard Stanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF029">
        <xs:annotation>
          <xs:documentation>Longney and Epney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF030">
        <xs:annotation>
          <xs:documentation>Minchinhampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF031">
        <xs:annotation>
          <xs:documentation>Miserden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF032">
        <xs:annotation>
          <xs:documentation>Moreton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF033">
        <xs:annotation>
          <xs:documentation>Nailsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF034">
        <xs:annotation>
          <xs:documentation>North Nibley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF035">
        <xs:annotation>
          <xs:documentation>Nympsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF036">
        <xs:annotation>
          <xs:documentation>Owlpen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF037">
        <xs:annotation>
          <xs:documentation>Painswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF038">
        <xs:annotation>
          <xs:documentation>Pitchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF039">
        <xs:annotation>
          <xs:documentation>Randwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF040">
        <xs:annotation>
          <xs:documentation>Rodborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF041">
        <xs:annotation>
          <xs:documentation>Slimbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF042">
        <xs:annotation>
          <xs:documentation>Standish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF043">
        <xs:annotation>
          <xs:documentation>Stinchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF044">
        <xs:annotation>
          <xs:documentation>Stonehouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF045">
        <xs:annotation>
          <xs:documentation>Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF046">
        <xs:annotation>
          <xs:documentation>Thrupp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF047">
        <xs:annotation>
          <xs:documentation>Uley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF048">
        <xs:annotation>
          <xs:documentation>Upton St. Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF049">
        <xs:annotation>
          <xs:documentation>Whiteshill and Ruscombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF050">
        <xs:annotation>
          <xs:documentation>Whitminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF051">
        <xs:annotation>
          <xs:documentation>Woodchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UF052">
        <xs:annotation>
          <xs:documentation>Wotton-under-Edge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG001">
        <xs:annotation>
          <xs:documentation>Alderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG002">
        <xs:annotation>
          <xs:documentation>Ashchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG003">
        <xs:annotation>
          <xs:documentation>Ashleworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG004">
        <xs:annotation>
          <xs:documentation>Badgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG005">
        <xs:annotation>
          <xs:documentation>Bishop's Cleeve</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG006">
        <xs:annotation>
          <xs:documentation>Boddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG007">
        <xs:annotation>
          <xs:documentation>Brockworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG008">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG009">
        <xs:annotation>
          <xs:documentation>Chaceley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG010">
        <xs:annotation>
          <xs:documentation>Churchdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG011">
        <xs:annotation>
          <xs:documentation>Deerhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG012">
        <xs:annotation>
          <xs:documentation>Down Hatherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG013">
        <xs:annotation>
          <xs:documentation>Dumbleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG014">
        <xs:annotation>
          <xs:documentation>Elmstone Hardwicke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG015">
        <xs:annotation>
          <xs:documentation>Forthampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG016">
        <xs:annotation>
          <xs:documentation>Gotherington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG017">
        <xs:annotation>
          <xs:documentation>Great Witcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG018">
        <xs:annotation>
          <xs:documentation>Hasfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG019">
        <xs:annotation>
          <xs:documentation>Hawling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG020">
        <xs:annotation>
          <xs:documentation>Highnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG021">
        <xs:annotation>
          <xs:documentation>Hucclecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG022">
        <xs:annotation>
          <xs:documentation>Innsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG023">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG024">
        <xs:annotation>
          <xs:documentation>Longford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG025">
        <xs:annotation>
          <xs:documentation>Maisemore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG026">
        <xs:annotation>
          <xs:documentation>Minsterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG027">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG028">
        <xs:annotation>
          <xs:documentation>Oxenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG029">
        <xs:annotation>
          <xs:documentation>Prescott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG030">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG031">
        <xs:annotation>
          <xs:documentation>Shurdington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG032">
        <xs:annotation>
          <xs:documentation>Snowshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG033">
        <xs:annotation>
          <xs:documentation>Southam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG034">
        <xs:annotation>
          <xs:documentation>Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG035">
        <xs:annotation>
          <xs:documentation>Stanway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG036">
        <xs:annotation>
          <xs:documentation>Staverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG037">
        <xs:annotation>
          <xs:documentation>Stoke Orchard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG038">
        <xs:annotation>
          <xs:documentation>Sudeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG039">
        <xs:annotation>
          <xs:documentation>Teddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG040">
        <xs:annotation>
          <xs:documentation>Tewkesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG041">
        <xs:annotation>
          <xs:documentation>Tirley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG042">
        <xs:annotation>
          <xs:documentation>Toddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG043">
        <xs:annotation>
          <xs:documentation>Twigworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG044">
        <xs:annotation>
          <xs:documentation>Twyning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG045">
        <xs:annotation>
          <xs:documentation>Uckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG046">
        <xs:annotation>
          <xs:documentation>Walton Cardiff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG047">
        <xs:annotation>
          <xs:documentation>Winchcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG048">
        <xs:annotation>
          <xs:documentation>Woodmancote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="23UG049">
        <xs:annotation>
          <xs:documentation>Gretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB001">
        <xs:annotation>
          <xs:documentation>Ashford Hill with Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB002">
        <xs:annotation>
          <xs:documentation>Ashmansworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB003">
        <xs:annotation>
          <xs:documentation>Baughurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB004">
        <xs:annotation>
          <xs:documentation>Bradley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB005">
        <xs:annotation>
          <xs:documentation>Bramley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB006">
        <xs:annotation>
          <xs:documentation>Burghclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB007">
        <xs:annotation>
          <xs:documentation>Candovers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB008">
        <xs:annotation>
          <xs:documentation>Chineham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB009">
        <xs:annotation>
          <xs:documentation>Cliddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB010">
        <xs:annotation>
          <xs:documentation>Deane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB011">
        <xs:annotation>
          <xs:documentation>Dummer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB012">
        <xs:annotation>
          <xs:documentation>East Woodhay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB013">
        <xs:annotation>
          <xs:documentation>Ecchinswell, Sydmonton and Bishops Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB014">
        <xs:annotation>
          <xs:documentation>Ellisfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB015">
        <xs:annotation>
          <xs:documentation>Farleigh Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB016">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB017">
        <xs:annotation>
          <xs:documentation>Hartley Wespall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB018">
        <xs:annotation>
          <xs:documentation>Herriard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB019">
        <xs:annotation>
          <xs:documentation>Highclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB020">
        <xs:annotation>
          <xs:documentation>Hurstbourne Priors</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB021">
        <xs:annotation>
          <xs:documentation>Kingsclere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB022">
        <xs:annotation>
          <xs:documentation>Laverstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB023">
        <xs:annotation>
          <xs:documentation>Litchfield and Woodcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB024">
        <xs:annotation>
          <xs:documentation>Mapledurwell and Up Nately</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB025">
        <xs:annotation>
          <xs:documentation>Monk Sherborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB026">
        <xs:annotation>
          <xs:documentation>Mortimer West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB027">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB028">
        <xs:annotation>
          <xs:documentation>Newtown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB029">
        <xs:annotation>
          <xs:documentation>North Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB030">
        <xs:annotation>
          <xs:documentation>Nutley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB031">
        <xs:annotation>
          <xs:documentation>Oakley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB032">
        <xs:annotation>
          <xs:documentation>Old Basing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB033">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB034">
        <xs:annotation>
          <xs:documentation>Pamber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB035">
        <xs:annotation>
          <xs:documentation>Popham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB036">
        <xs:annotation>
          <xs:documentation>Preston Candover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB037">
        <xs:annotation>
          <xs:documentation>Sherborne St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB038">
        <xs:annotation>
          <xs:documentation>Sherfield on Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB039">
        <xs:annotation>
          <xs:documentation>Silchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB040">
        <xs:annotation>
          <xs:documentation>St. Mary Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB041">
        <xs:annotation>
          <xs:documentation>Steventon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB042">
        <xs:annotation>
          <xs:documentation>Stratfield Saye</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB043">
        <xs:annotation>
          <xs:documentation>Stratfield Turgis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB044">
        <xs:annotation>
          <xs:documentation>Tadley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB045">
        <xs:annotation>
          <xs:documentation>Tunworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB046">
        <xs:annotation>
          <xs:documentation>Upton Grey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB047">
        <xs:annotation>
          <xs:documentation>Weston Corbett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB048">
        <xs:annotation>
          <xs:documentation>Weston Patrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB049">
        <xs:annotation>
          <xs:documentation>Whitchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB050">
        <xs:annotation>
          <xs:documentation>Winslade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB051">
        <xs:annotation>
          <xs:documentation>Wootton St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UB052">
        <xs:annotation>
          <xs:documentation>Rooksdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC001">
        <xs:annotation>
          <xs:documentation>Alton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC002">
        <xs:annotation>
          <xs:documentation>Bentley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC003">
        <xs:annotation>
          <xs:documentation>Bentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC004">
        <xs:annotation>
          <xs:documentation>Binsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC005">
        <xs:annotation>
          <xs:documentation>Bramshott and Liphook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC006">
        <xs:annotation>
          <xs:documentation>Buriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC007">
        <xs:annotation>
          <xs:documentation>Chawton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC008">
        <xs:annotation>
          <xs:documentation>Clanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC009">
        <xs:annotation>
          <xs:documentation>Colemore and Priors Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC010">
        <xs:annotation>
          <xs:documentation>East Meon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC011">
        <xs:annotation>
          <xs:documentation>East Tisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC012">
        <xs:annotation>
          <xs:documentation>Farringdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC013">
        <xs:annotation>
          <xs:documentation>Four Marks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC014">
        <xs:annotation>
          <xs:documentation>Froxfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC015">
        <xs:annotation>
          <xs:documentation>Froyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC016">
        <xs:annotation>
          <xs:documentation>Grayshott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC017">
        <xs:annotation>
          <xs:documentation>Greatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC018">
        <xs:annotation>
          <xs:documentation>Hawkley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC019">
        <xs:annotation>
          <xs:documentation>Headley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC020">
        <xs:annotation>
          <xs:documentation>Horndean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC021">
        <xs:annotation>
          <xs:documentation>Kingsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC022">
        <xs:annotation>
          <xs:documentation>Langrish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC023">
        <xs:annotation>
          <xs:documentation>Lasham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC024">
        <xs:annotation>
          <xs:documentation>Lindford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC025">
        <xs:annotation>
          <xs:documentation>Liss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC026">
        <xs:annotation>
          <xs:documentation>Medstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC027">
        <xs:annotation>
          <xs:documentation>Newton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC028">
        <xs:annotation>
          <xs:documentation>Petersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC029">
        <xs:annotation>
          <xs:documentation>Ropley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC030">
        <xs:annotation>
          <xs:documentation>Rowlands Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC031">
        <xs:annotation>
          <xs:documentation>Selborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC032">
        <xs:annotation>
          <xs:documentation>Shalden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC033">
        <xs:annotation>
          <xs:documentation>Steep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC034">
        <xs:annotation>
          <xs:documentation>West Tisted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC035">
        <xs:annotation>
          <xs:documentation>Whitehill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC036">
        <xs:annotation>
          <xs:documentation>Wield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC037">
        <xs:annotation>
          <xs:documentation>Worldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC038">
        <xs:annotation>
          <xs:documentation>Stroud</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UC039">
        <xs:annotation>
          <xs:documentation>Beech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD001">
        <xs:annotation>
          <xs:documentation>Botley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD002">
        <xs:annotation>
          <xs:documentation>Bursledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD003">
        <xs:annotation>
          <xs:documentation>Fair Oak and Horton Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD004">
        <xs:annotation>
          <xs:documentation>Hamble-le-Rice</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD005">
        <xs:annotation>
          <xs:documentation>Hedge End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD006">
        <xs:annotation>
          <xs:documentation>Hound</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD007">
        <xs:annotation>
          <xs:documentation>West End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UD008">
        <xs:annotation>
          <xs:documentation>Bishopstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG001">
        <xs:annotation>
          <xs:documentation>Bramshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG002">
        <xs:annotation>
          <xs:documentation>Crondall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG003">
        <xs:annotation>
          <xs:documentation>Crookham Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG004">
        <xs:annotation>
          <xs:documentation>Dogmersfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG005">
        <xs:annotation>
          <xs:documentation>Eversley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG006">
        <xs:annotation>
          <xs:documentation>Greywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG007">
        <xs:annotation>
          <xs:documentation>Hartley Wintney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG008">
        <xs:annotation>
          <xs:documentation>Blackwater and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG009">
        <xs:annotation>
          <xs:documentation>Heckfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG010">
        <xs:annotation>
          <xs:documentation>Hook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG011">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG012">
        <xs:annotation>
          <xs:documentation>Mattingley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG013">
        <xs:annotation>
          <xs:documentation>Odiham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG014">
        <xs:annotation>
          <xs:documentation>Rotherwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG015">
        <xs:annotation>
          <xs:documentation>South Warnborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG016">
        <xs:annotation>
          <xs:documentation>Winchfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UG017">
        <xs:annotation>
          <xs:documentation>Yateley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ001">
        <xs:annotation>
          <xs:documentation>Ashurst and Colbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ002">
        <xs:annotation>
          <xs:documentation>Beaulieu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ003">
        <xs:annotation>
          <xs:documentation>Boldre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ004">
        <xs:annotation>
          <xs:documentation>Bramshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ005">
        <xs:annotation>
          <xs:documentation>Bransgore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ006">
        <xs:annotation>
          <xs:documentation>Breamore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ007">
        <xs:annotation>
          <xs:documentation>Brockenhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ008">
        <xs:annotation>
          <xs:documentation>Burley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ009">
        <xs:annotation>
          <xs:documentation>Copythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ010">
        <xs:annotation>
          <xs:documentation>Damerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ011">
        <xs:annotation>
          <xs:documentation>Denny Lodge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ012">
        <xs:annotation>
          <xs:documentation>East Boldre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ013">
        <xs:annotation>
          <xs:documentation>Ellingham, Harbridge and Ibsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ014">
        <xs:annotation>
          <xs:documentation>Exbury and Lepe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ015">
        <xs:annotation>
          <xs:documentation>Fawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ016">
        <xs:annotation>
          <xs:documentation>Fordingbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ017">
        <xs:annotation>
          <xs:documentation>Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ018">
        <xs:annotation>
          <xs:documentation>Hordle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ019">
        <xs:annotation>
          <xs:documentation>Hyde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ020">
        <xs:annotation>
          <xs:documentation>Hythe and Dibden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ021">
        <xs:annotation>
          <xs:documentation>Lymington and Pennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ022">
        <xs:annotation>
          <xs:documentation>Lyndhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ023">
        <xs:annotation>
          <xs:documentation>Marchwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ024">
        <xs:annotation>
          <xs:documentation>Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ025">
        <xs:annotation>
          <xs:documentation>Milford-on-sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ026">
        <xs:annotation>
          <xs:documentation>Minstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ027">
        <xs:annotation>
          <xs:documentation>Netley Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ028">
        <xs:annotation>
          <xs:documentation>New Milton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ029">
        <xs:annotation>
          <xs:documentation>Ringwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ030">
        <xs:annotation>
          <xs:documentation>Rockbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ031">
        <xs:annotation>
          <xs:documentation>Sandleheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ032">
        <xs:annotation>
          <xs:documentation>Sopley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ033">
        <xs:annotation>
          <xs:documentation>Sway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ034">
        <xs:annotation>
          <xs:documentation>Totton and Eling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ035">
        <xs:annotation>
          <xs:documentation>Whitsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ036">
        <xs:annotation>
          <xs:documentation>Woodgreen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UJ037">
        <xs:annotation>
          <xs:documentation>Godshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN001">
        <xs:annotation>
          <xs:documentation>Abbotts Ann</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN002">
        <xs:annotation>
          <xs:documentation>Ampfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN003">
        <xs:annotation>
          <xs:documentation>Amport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN004">
        <xs:annotation>
          <xs:documentation>Appleshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN005">
        <xs:annotation>
          <xs:documentation>Ashley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN006">
        <xs:annotation>
          <xs:documentation>Awbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN007">
        <xs:annotation>
          <xs:documentation>Barton Stacey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN008">
        <xs:annotation>
          <xs:documentation>Bossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN009">
        <xs:annotation>
          <xs:documentation>Braishfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN010">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN011">
        <xs:annotation>
          <xs:documentation>Buckholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN012">
        <xs:annotation>
          <xs:documentation>Bullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN013">
        <xs:annotation>
          <xs:documentation>Charlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN014">
        <xs:annotation>
          <xs:documentation>Chilbolton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN015">
        <xs:annotation>
          <xs:documentation>Chilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN016">
        <xs:annotation>
          <xs:documentation>East Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN017">
        <xs:annotation>
          <xs:documentation>East Tytherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN018">
        <xs:annotation>
          <xs:documentation>Faccombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN019">
        <xs:annotation>
          <xs:documentation>Frenchmoor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN020">
        <xs:annotation>
          <xs:documentation>Fyfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN021">
        <xs:annotation>
          <xs:documentation>Goodworth Clatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN022">
        <xs:annotation>
          <xs:documentation>Grately</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN023">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN024">
        <xs:annotation>
          <xs:documentation>Hurstbourne Tarrant</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN025">
        <xs:annotation>
          <xs:documentation>Kimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN026">
        <xs:annotation>
          <xs:documentation>Kings Somborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN027">
        <xs:annotation>
          <xs:documentation>Leckford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN028">
        <xs:annotation>
          <xs:documentation>Linkenholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN029">
        <xs:annotation>
          <xs:documentation>Little Somborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN030">
        <xs:annotation>
          <xs:documentation>Lockerley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN031">
        <xs:annotation>
          <xs:documentation>Longparish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN032">
        <xs:annotation>
          <xs:documentation>Longstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN033">
        <xs:annotation>
          <xs:documentation>Melchet Park and Plaitford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN034">
        <xs:annotation>
          <xs:documentation>Michelmersh and Timsbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN035">
        <xs:annotation>
          <xs:documentation>Monxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN036">
        <xs:annotation>
          <xs:documentation>Mottisfont</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN037">
        <xs:annotation>
          <xs:documentation>Nether Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN038">
        <xs:annotation>
          <xs:documentation>North Baddesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN039">
        <xs:annotation>
          <xs:documentation>Nursling and Rownhams</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN040">
        <xs:annotation>
          <xs:documentation>Over Wallop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN041">
        <xs:annotation>
          <xs:documentation>Penton Grafton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN042">
        <xs:annotation>
          <xs:documentation>Penton Mewsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN043">
        <xs:annotation>
          <xs:documentation>Quarley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN044">
        <xs:annotation>
          <xs:documentation>Romsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN045">
        <xs:annotation>
          <xs:documentation>Romsey Extra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN046">
        <xs:annotation>
          <xs:documentation>Sherfield English</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN047">
        <xs:annotation>
          <xs:documentation>Shipton Bellinger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN048">
        <xs:annotation>
          <xs:documentation>Smannell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN050">
        <xs:annotation>
          <xs:documentation>Stockbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN051">
        <xs:annotation>
          <xs:documentation>Tangley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN052">
        <xs:annotation>
          <xs:documentation>Thruxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN053">
        <xs:annotation>
          <xs:documentation>Upper Clatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN054">
        <xs:annotation>
          <xs:documentation>Vernhams Dean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN055">
        <xs:annotation>
          <xs:documentation>Wellow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN056">
        <xs:annotation>
          <xs:documentation>West Tytherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UN057">
        <xs:annotation>
          <xs:documentation>Wherwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP001">
        <xs:annotation>
          <xs:documentation>Badger Farm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP002">
        <xs:annotation>
          <xs:documentation>Beauworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP003">
        <xs:annotation>
          <xs:documentation>Bighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP004">
        <xs:annotation>
          <xs:documentation>Bishops Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP005">
        <xs:annotation>
          <xs:documentation>Bishops Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP006">
        <xs:annotation>
          <xs:documentation>Boarhunt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP007">
        <xs:annotation>
          <xs:documentation>Bramdean and Hinton Ampner</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP008">
        <xs:annotation>
          <xs:documentation>Cheriton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP009">
        <xs:annotation>
          <xs:documentation>Chilcomb</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP010">
        <xs:annotation>
          <xs:documentation>Colden Common</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP011">
        <xs:annotation>
          <xs:documentation>Compton and Shawford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP012">
        <xs:annotation>
          <xs:documentation>Corhampton and Meonstoke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP013">
        <xs:annotation>
          <xs:documentation>Crawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP014">
        <xs:annotation>
          <xs:documentation>Curdridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP015">
        <xs:annotation>
          <xs:documentation>Denmead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP016">
        <xs:annotation>
          <xs:documentation>Droxford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP017">
        <xs:annotation>
          <xs:documentation>Durley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP018">
        <xs:annotation>
          <xs:documentation>Exton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP019">
        <xs:annotation>
          <xs:documentation>Hambledon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP020">
        <xs:annotation>
          <xs:documentation>Headbourne Worthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP021">
        <xs:annotation>
          <xs:documentation>Hursley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP022">
        <xs:annotation>
          <xs:documentation>Itchen Stoke and Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP023">
        <xs:annotation>
          <xs:documentation>Itchen Valley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP024">
        <xs:annotation>
          <xs:documentation>Kilmiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP025">
        <xs:annotation>
          <xs:documentation>Kings Worthy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP026">
        <xs:annotation>
          <xs:documentation>Littleton and Harestock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP027">
        <xs:annotation>
          <xs:documentation>Micheldever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP028">
        <xs:annotation>
          <xs:documentation>New Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP029">
        <xs:annotation>
          <xs:documentation>Northington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP030">
        <xs:annotation>
          <xs:documentation>Old Alresford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP031">
        <xs:annotation>
          <xs:documentation>Olivers Battery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP032">
        <xs:annotation>
          <xs:documentation>Otterbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP033">
        <xs:annotation>
          <xs:documentation>Owslebury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP034">
        <xs:annotation>
          <xs:documentation>Shedfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP035">
        <xs:annotation>
          <xs:documentation>Soberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP036">
        <xs:annotation>
          <xs:documentation>Southwick and Widley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP037">
        <xs:annotation>
          <xs:documentation>South Wonston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP038">
        <xs:annotation>
          <xs:documentation>Sparsholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP039">
        <xs:annotation>
          <xs:documentation>Swanmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP040">
        <xs:annotation>
          <xs:documentation>Tichborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP041">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP042">
        <xs:annotation>
          <xs:documentation>Upham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP043">
        <xs:annotation>
          <xs:documentation>Warnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP044">
        <xs:annotation>
          <xs:documentation>West Meon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP045">
        <xs:annotation>
          <xs:documentation>Wickham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP046">
        <xs:annotation>
          <xs:documentation>Wonston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24UP047">
        <xs:annotation>
          <xs:documentation>Whiteley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC001">
        <xs:annotation>
          <xs:documentation>Aldbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC002">
        <xs:annotation>
          <xs:documentation>Berkhamsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC003">
        <xs:annotation>
          <xs:documentation>Bovingdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC004">
        <xs:annotation>
          <xs:documentation>Chipperfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC005">
        <xs:annotation>
          <xs:documentation>Flamstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC006">
        <xs:annotation>
          <xs:documentation>Flaunden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC007">
        <xs:annotation>
          <xs:documentation>Great Gaddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC008">
        <xs:annotation>
          <xs:documentation>Kings Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC009">
        <xs:annotation>
          <xs:documentation>Little Gaddesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC010">
        <xs:annotation>
          <xs:documentation>Markyate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC011">
        <xs:annotation>
          <xs:documentation>Nash Mills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC012">
        <xs:annotation>
          <xs:documentation>Nettleden with Potten End</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC013">
        <xs:annotation>
          <xs:documentation>Northchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC014">
        <xs:annotation>
          <xs:documentation>Tring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC015">
        <xs:annotation>
          <xs:documentation>Tring Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UC016">
        <xs:annotation>
          <xs:documentation>Wigginton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD001">
        <xs:annotation>
          <xs:documentation>Albury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD002">
        <xs:annotation>
          <xs:documentation>Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD003">
        <xs:annotation>
          <xs:documentation>Ardeley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD004">
        <xs:annotation>
          <xs:documentation>Aspenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD005">
        <xs:annotation>
          <xs:documentation>Aston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD006">
        <xs:annotation>
          <xs:documentation>Bayford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD007">
        <xs:annotation>
          <xs:documentation>Bengeo Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD008">
        <xs:annotation>
          <xs:documentation>Benington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD009">
        <xs:annotation>
          <xs:documentation>Bishop's Stortford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD010">
        <xs:annotation>
          <xs:documentation>Bramfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD011">
        <xs:annotation>
          <xs:documentation>Braughing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD012">
        <xs:annotation>
          <xs:documentation>Brent Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD013">
        <xs:annotation>
          <xs:documentation>Brickendon Liberty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD014">
        <xs:annotation>
          <xs:documentation>Buckland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD015">
        <xs:annotation>
          <xs:documentation>Buntingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD016">
        <xs:annotation>
          <xs:documentation>Cottered</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD017">
        <xs:annotation>
          <xs:documentation>Datchworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD018">
        <xs:annotation>
          <xs:documentation>Eastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD019">
        <xs:annotation>
          <xs:documentation>Furneux Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD020">
        <xs:annotation>
          <xs:documentation>Gilston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD021">
        <xs:annotation>
          <xs:documentation>Great Amwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD022">
        <xs:annotation>
          <xs:documentation>Great Munden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD023">
        <xs:annotation>
          <xs:documentation>Hertford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD024">
        <xs:annotation>
          <xs:documentation>Hertford Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD025">
        <xs:annotation>
          <xs:documentation>Hertingfordbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD026">
        <xs:annotation>
          <xs:documentation>High Wych</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD027">
        <xs:annotation>
          <xs:documentation>Hormead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD028">
        <xs:annotation>
          <xs:documentation>Hunsdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD029">
        <xs:annotation>
          <xs:documentation>Little Berkhamsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD030">
        <xs:annotation>
          <xs:documentation>Little Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD031">
        <xs:annotation>
          <xs:documentation>Little Munden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD032">
        <xs:annotation>
          <xs:documentation>Meesden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD033">
        <xs:annotation>
          <xs:documentation>Much Hadham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD034">
        <xs:annotation>
          <xs:documentation>Sacombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD035">
        <xs:annotation>
          <xs:documentation>Sawbridgeworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD036">
        <xs:annotation>
          <xs:documentation>Standon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD037">
        <xs:annotation>
          <xs:documentation>Stanstead Abbots</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD038">
        <xs:annotation>
          <xs:documentation>Stanstead St Margarets</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD039">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD040">
        <xs:annotation>
          <xs:documentation>Stocking Pelham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD041">
        <xs:annotation>
          <xs:documentation>Tewin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD042">
        <xs:annotation>
          <xs:documentation>Thorley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD043">
        <xs:annotation>
          <xs:documentation>Thundridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD044">
        <xs:annotation>
          <xs:documentation>Walkern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD045">
        <xs:annotation>
          <xs:documentation>Ware</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD046">
        <xs:annotation>
          <xs:documentation>Wareside</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD047">
        <xs:annotation>
          <xs:documentation>Watton-at-Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD048">
        <xs:annotation>
          <xs:documentation>Westmill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD049">
        <xs:annotation>
          <xs:documentation>Widford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UD050">
        <xs:annotation>
          <xs:documentation>Wyddial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE001">
        <xs:annotation>
          <xs:documentation>Aldenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE002">
        <xs:annotation>
          <xs:documentation>Elstree and Borehamwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE003">
        <xs:annotation>
          <xs:documentation>Ridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UE004">
        <xs:annotation>
          <xs:documentation>Shenley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF001">
        <xs:annotation>
          <xs:documentation>Ashwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF002">
        <xs:annotation>
          <xs:documentation>Barkway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF003">
        <xs:annotation>
          <xs:documentation>Barley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF004">
        <xs:annotation>
          <xs:documentation>Bygrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF005">
        <xs:annotation>
          <xs:documentation>Caldecote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF006">
        <xs:annotation>
          <xs:documentation>Clothall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF007">
        <xs:annotation>
          <xs:documentation>Codicote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF008">
        <xs:annotation>
          <xs:documentation>Graveley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF009">
        <xs:annotation>
          <xs:documentation>Hexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF010">
        <xs:annotation>
          <xs:documentation>Hinxworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF011">
        <xs:annotation>
          <xs:documentation>Holwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF012">
        <xs:annotation>
          <xs:documentation>Ickleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF013">
        <xs:annotation>
          <xs:documentation>St Ippolyts</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF014">
        <xs:annotation>
          <xs:documentation>Kelshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF015">
        <xs:annotation>
          <xs:documentation>Kimpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF016">
        <xs:annotation>
          <xs:documentation>King's Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF017">
        <xs:annotation>
          <xs:documentation>Knebworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF018">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF019">
        <xs:annotation>
          <xs:documentation>Lilley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF020">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF021">
        <xs:annotation>
          <xs:documentation>Nuthampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF022">
        <xs:annotation>
          <xs:documentation>Offley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF023">
        <xs:annotation>
          <xs:documentation>Pirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF024">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF025">
        <xs:annotation>
          <xs:documentation>Radwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF026">
        <xs:annotation>
          <xs:documentation>Reed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF027">
        <xs:annotation>
          <xs:documentation>Royston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF028">
        <xs:annotation>
          <xs:documentation>Rushden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF029">
        <xs:annotation>
          <xs:documentation>St Paul's Walden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF030">
        <xs:annotation>
          <xs:documentation>Sandon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF031">
        <xs:annotation>
          <xs:documentation>Therfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF032">
        <xs:annotation>
          <xs:documentation>Wallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF033">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UF034">
        <xs:annotation>
          <xs:documentation>Wymondley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG001">
        <xs:annotation>
          <xs:documentation>Colney Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG002">
        <xs:annotation>
          <xs:documentation>Harpenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG003">
        <xs:annotation>
          <xs:documentation>Harpenden Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG004">
        <xs:annotation>
          <xs:documentation>London Colney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG005">
        <xs:annotation>
          <xs:documentation>Redbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG006">
        <xs:annotation>
          <xs:documentation>Sandridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG007">
        <xs:annotation>
          <xs:documentation>St Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG008">
        <xs:annotation>
          <xs:documentation>St Stephen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UG009">
        <xs:annotation>
          <xs:documentation>Wheathampstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ001">
        <xs:annotation>
          <xs:documentation>Abbots Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ002">
        <xs:annotation>
          <xs:documentation>Chorleywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ003">
        <xs:annotation>
          <xs:documentation>Croxley Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ004">
        <xs:annotation>
          <xs:documentation>Sarratt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UJ005">
        <xs:annotation>
          <xs:documentation>Watford Rural</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL001">
        <xs:annotation>
          <xs:documentation>Ayot St Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL002">
        <xs:annotation>
          <xs:documentation>Ayot St Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL003">
        <xs:annotation>
          <xs:documentation>Essendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL004">
        <xs:annotation>
          <xs:documentation>Hatfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL005">
        <xs:annotation>
          <xs:documentation>Northaw and Cuffley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL006">
        <xs:annotation>
          <xs:documentation>North Mymms</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL007">
        <xs:annotation>
          <xs:documentation>Welwyn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="26UL008">
        <xs:annotation>
          <xs:documentation>Woolmer Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB001">
        <xs:annotation>
          <xs:documentation>Aldington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB002">
        <xs:annotation>
          <xs:documentation>Appledore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB003">
        <xs:annotation>
          <xs:documentation>Bethersden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB004">
        <xs:annotation>
          <xs:documentation>Biddenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB005">
        <xs:annotation>
          <xs:documentation>Bilsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB006">
        <xs:annotation>
          <xs:documentation>Bonnington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB007">
        <xs:annotation>
          <xs:documentation>Boughton Aluph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB008">
        <xs:annotation>
          <xs:documentation>Brabourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB009">
        <xs:annotation>
          <xs:documentation>Brook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB010">
        <xs:annotation>
          <xs:documentation>Challock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB011">
        <xs:annotation>
          <xs:documentation>Charing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB012">
        <xs:annotation>
          <xs:documentation>Chilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB013">
        <xs:annotation>
          <xs:documentation>Crundale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB014">
        <xs:annotation>
          <xs:documentation>Eastwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB015">
        <xs:annotation>
          <xs:documentation>Egerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB016">
        <xs:annotation>
          <xs:documentation>Godmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB017">
        <xs:annotation>
          <xs:documentation>Great Chart with Singleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB018">
        <xs:annotation>
          <xs:documentation>Hastingleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB019">
        <xs:annotation>
          <xs:documentation>High Halden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB020">
        <xs:annotation>
          <xs:documentation>Hothfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB021">
        <xs:annotation>
          <xs:documentation>Kenardington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB022">
        <xs:annotation>
          <xs:documentation>Kingsnorth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB023">
        <xs:annotation>
          <xs:documentation>Little Chart</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB024">
        <xs:annotation>
          <xs:documentation>Mersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB025">
        <xs:annotation>
          <xs:documentation>Molash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB026">
        <xs:annotation>
          <xs:documentation>Newenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB027">
        <xs:annotation>
          <xs:documentation>Orlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB028">
        <xs:annotation>
          <xs:documentation>Pluckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB029">
        <xs:annotation>
          <xs:documentation>Rolvenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB030">
        <xs:annotation>
          <xs:documentation>Ruckinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB031">
        <xs:annotation>
          <xs:documentation>Sevington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB032">
        <xs:annotation>
          <xs:documentation>Shadoxhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB033">
        <xs:annotation>
          <xs:documentation>Smarden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB034">
        <xs:annotation>
          <xs:documentation>Smeeth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB035">
        <xs:annotation>
          <xs:documentation>Stanhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB036">
        <xs:annotation>
          <xs:documentation>Stone-cum-Ebony</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB037">
        <xs:annotation>
          <xs:documentation>Tenterden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB038">
        <xs:annotation>
          <xs:documentation>Warehorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB039">
        <xs:annotation>
          <xs:documentation>Westwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB040">
        <xs:annotation>
          <xs:documentation>Wittersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB041">
        <xs:annotation>
          <xs:documentation>Woodchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UB042">
        <xs:annotation>
          <xs:documentation>Wye with Hinxhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC001">
        <xs:annotation>
          <xs:documentation>Adisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC002">
        <xs:annotation>
          <xs:documentation>Barham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC003">
        <xs:annotation>
          <xs:documentation>Bekesbourne-with-Patrixbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC004">
        <xs:annotation>
          <xs:documentation>Bishopsbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC005">
        <xs:annotation>
          <xs:documentation>Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC006">
        <xs:annotation>
          <xs:documentation>Chartham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC007">
        <xs:annotation>
          <xs:documentation>Chestfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC008">
        <xs:annotation>
          <xs:documentation>Chislet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC009">
        <xs:annotation>
          <xs:documentation>Fordwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC010">
        <xs:annotation>
          <xs:documentation>Hackington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC011">
        <xs:annotation>
          <xs:documentation>Harbledown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC012">
        <xs:annotation>
          <xs:documentation>Hoath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC013">
        <xs:annotation>
          <xs:documentation>Ickham and Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC014">
        <xs:annotation>
          <xs:documentation>Kingston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC015">
        <xs:annotation>
          <xs:documentation>Littlebourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC016">
        <xs:annotation>
          <xs:documentation>Lower Hardres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC017">
        <xs:annotation>
          <xs:documentation>Petham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC018">
        <xs:annotation>
          <xs:documentation>St. Cosmus and St. Damian in the Blean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC019">
        <xs:annotation>
          <xs:documentation>Sturry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC020">
        <xs:annotation>
          <xs:documentation>Thanington Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC021">
        <xs:annotation>
          <xs:documentation>Upper Hardres</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC022">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC023">
        <xs:annotation>
          <xs:documentation>Westbere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC024">
        <xs:annotation>
          <xs:documentation>Wickhambreaux</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC025">
        <xs:annotation>
          <xs:documentation>Womenswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UC026">
        <xs:annotation>
          <xs:documentation>Herne and Broomfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD001">
        <xs:annotation>
          <xs:documentation>Bean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD002">
        <xs:annotation>
          <xs:documentation>Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD003">
        <xs:annotation>
          <xs:documentation>Longfield and New Barn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD004">
        <xs:annotation>
          <xs:documentation>Southfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD005">
        <xs:annotation>
          <xs:documentation>Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD006">
        <xs:annotation>
          <xs:documentation>Sutton-at-Hone and Hawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD007">
        <xs:annotation>
          <xs:documentation>Swanscombe and Greenhithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UD008">
        <xs:annotation>
          <xs:documentation>Wilmington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE001">
        <xs:annotation>
          <xs:documentation>Alkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE002">
        <xs:annotation>
          <xs:documentation>Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE003">
        <xs:annotation>
          <xs:documentation>Aylesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE004">
        <xs:annotation>
          <xs:documentation>Capel-le-Ferne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE005">
        <xs:annotation>
          <xs:documentation>Denton with Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE006">
        <xs:annotation>
          <xs:documentation>Eastry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE007">
        <xs:annotation>
          <xs:documentation>Eythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE008">
        <xs:annotation>
          <xs:documentation>Goodnestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE009">
        <xs:annotation>
          <xs:documentation>Guston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE010">
        <xs:annotation>
          <xs:documentation>Hougham Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE011">
        <xs:annotation>
          <xs:documentation>Langdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE012">
        <xs:annotation>
          <xs:documentation>Lydden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE013">
        <xs:annotation>
          <xs:documentation>Nonington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE014">
        <xs:annotation>
          <xs:documentation>Northbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE015">
        <xs:annotation>
          <xs:documentation>Preston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE016">
        <xs:annotation>
          <xs:documentation>Ringwould with Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE017">
        <xs:annotation>
          <xs:documentation>Ripple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE018">
        <xs:annotation>
          <xs:documentation>River</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE019">
        <xs:annotation>
          <xs:documentation>St. Margaret's at Cliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE020">
        <xs:annotation>
          <xs:documentation>Sandwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE021">
        <xs:annotation>
          <xs:documentation>Shepherdswell with Coldred</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE022">
        <xs:annotation>
          <xs:documentation>Sholden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE023">
        <xs:annotation>
          <xs:documentation>Staple</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE024">
        <xs:annotation>
          <xs:documentation>Stourmouth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE025">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE026">
        <xs:annotation>
          <xs:documentation>Temple Ewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE027">
        <xs:annotation>
          <xs:documentation>Tilmanstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE028">
        <xs:annotation>
          <xs:documentation>Whitfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE029">
        <xs:annotation>
          <xs:documentation>Wingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE030">
        <xs:annotation>
          <xs:documentation>Woodnesborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE031">
        <xs:annotation>
          <xs:documentation>Worth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE032">
        <xs:annotation>
          <xs:documentation>Deal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE033">
        <xs:annotation>
          <xs:documentation>Dover</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE034">
        <xs:annotation>
          <xs:documentation>Great Mongeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UE035">
        <xs:annotation>
          <xs:documentation>Walmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG001">
        <xs:annotation>
          <xs:documentation>Cobham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG002">
        <xs:annotation>
          <xs:documentation>Higham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG003">
        <xs:annotation>
          <xs:documentation>Luddesdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG004">
        <xs:annotation>
          <xs:documentation>Meopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG005">
        <xs:annotation>
          <xs:documentation>Shorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UG006">
        <xs:annotation>
          <xs:documentation>Vigo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH001">
        <xs:annotation>
          <xs:documentation>Barming</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH002">
        <xs:annotation>
          <xs:documentation>Bearsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH003">
        <xs:annotation>
          <xs:documentation>Bicknor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH004">
        <xs:annotation>
          <xs:documentation>Boughton Malherbe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH005">
        <xs:annotation>
          <xs:documentation>Boughton Monchelsea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH006">
        <xs:annotation>
          <xs:documentation>Boxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH007">
        <xs:annotation>
          <xs:documentation>Bredhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH008">
        <xs:annotation>
          <xs:documentation>Broomfield and Kingswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH009">
        <xs:annotation>
          <xs:documentation>Chart Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH010">
        <xs:annotation>
          <xs:documentation>Coxheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH011">
        <xs:annotation>
          <xs:documentation>Detling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH012">
        <xs:annotation>
          <xs:documentation>Downswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH013">
        <xs:annotation>
          <xs:documentation>East Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH014">
        <xs:annotation>
          <xs:documentation>East Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH015">
        <xs:annotation>
          <xs:documentation>Frinsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH016">
        <xs:annotation>
          <xs:documentation>Harrietsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH017">
        <xs:annotation>
          <xs:documentation>Headcorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH018">
        <xs:annotation>
          <xs:documentation>Hollingbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH019">
        <xs:annotation>
          <xs:documentation>Hucking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH020">
        <xs:annotation>
          <xs:documentation>Hunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH021">
        <xs:annotation>
          <xs:documentation>Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH022">
        <xs:annotation>
          <xs:documentation>Leeds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH023">
        <xs:annotation>
          <xs:documentation>Lenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH024">
        <xs:annotation>
          <xs:documentation>Linton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH025">
        <xs:annotation>
          <xs:documentation>Loose</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH026">
        <xs:annotation>
          <xs:documentation>Marden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH027">
        <xs:annotation>
          <xs:documentation>Nettlestead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH028">
        <xs:annotation>
          <xs:documentation>Otham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH029">
        <xs:annotation>
          <xs:documentation>Otterden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH030">
        <xs:annotation>
          <xs:documentation>Staplehurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH031">
        <xs:annotation>
          <xs:documentation>Stockbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH032">
        <xs:annotation>
          <xs:documentation>Sutton Valence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH033">
        <xs:annotation>
          <xs:documentation>Teston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH034">
        <xs:annotation>
          <xs:documentation>Thurnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH035">
        <xs:annotation>
          <xs:documentation>Tovil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH036">
        <xs:annotation>
          <xs:documentation>Ulcombe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH037">
        <xs:annotation>
          <xs:documentation>West Farleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH038">
        <xs:annotation>
          <xs:documentation>Wichling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH039">
        <xs:annotation>
          <xs:documentation>Wormshill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH040">
        <xs:annotation>
          <xs:documentation>Yalding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UH041">
        <xs:annotation>
          <xs:documentation>Collier Street</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK001">
        <xs:annotation>
          <xs:documentation>Ash-cum-Ridley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK002">
        <xs:annotation>
          <xs:documentation>Brasted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK003">
        <xs:annotation>
          <xs:documentation>Chevening</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK004">
        <xs:annotation>
          <xs:documentation>Chiddingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK005">
        <xs:annotation>
          <xs:documentation>Cowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK006">
        <xs:annotation>
          <xs:documentation>Crockenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK007">
        <xs:annotation>
          <xs:documentation>Dunton Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK008">
        <xs:annotation>
          <xs:documentation>Edenbridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK009">
        <xs:annotation>
          <xs:documentation>Eynsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK010">
        <xs:annotation>
          <xs:documentation>Farningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK011">
        <xs:annotation>
          <xs:documentation>Fawkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK012">
        <xs:annotation>
          <xs:documentation>Halstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK013">
        <xs:annotation>
          <xs:documentation>Hartley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK014">
        <xs:annotation>
          <xs:documentation>Hever</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK015">
        <xs:annotation>
          <xs:documentation>Horton Kirby and South Darenth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK016">
        <xs:annotation>
          <xs:documentation>Kemsing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK017">
        <xs:annotation>
          <xs:documentation>Knockholt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK018">
        <xs:annotation>
          <xs:documentation>Leigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK019">
        <xs:annotation>
          <xs:documentation>Otford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK020">
        <xs:annotation>
          <xs:documentation>Penshurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK021">
        <xs:annotation>
          <xs:documentation>Riverhead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK022">
        <xs:annotation>
          <xs:documentation>Seal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK023">
        <xs:annotation>
          <xs:documentation>Sevenoaks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK024">
        <xs:annotation>
          <xs:documentation>Sevenoaks Weald</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK025">
        <xs:annotation>
          <xs:documentation>Shoreham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK026">
        <xs:annotation>
          <xs:documentation>Sundridge with Ide Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK027">
        <xs:annotation>
          <xs:documentation>Swanley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK028">
        <xs:annotation>
          <xs:documentation>Westerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UK029">
        <xs:annotation>
          <xs:documentation>West Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL001">
        <xs:annotation>
          <xs:documentation>Acrise</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL002">
        <xs:annotation>
          <xs:documentation>Brenzett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL003">
        <xs:annotation>
          <xs:documentation>Brookland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL004">
        <xs:annotation>
          <xs:documentation>Burmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL005">
        <xs:annotation>
          <xs:documentation>Dymchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL006">
        <xs:annotation>
          <xs:documentation>Elham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL007">
        <xs:annotation>
          <xs:documentation>Elmsted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL008">
        <xs:annotation>
          <xs:documentation>Hawkinge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL009">
        <xs:annotation>
          <xs:documentation>Hythe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL010">
        <xs:annotation>
          <xs:documentation>Ivychurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL011">
        <xs:annotation>
          <xs:documentation>Lydd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL012">
        <xs:annotation>
          <xs:documentation>Lyminge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL013">
        <xs:annotation>
          <xs:documentation>Lympne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL014">
        <xs:annotation>
          <xs:documentation>Monks Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL015">
        <xs:annotation>
          <xs:documentation>Newchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL016">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL017">
        <xs:annotation>
          <xs:documentation>New Romney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL018">
        <xs:annotation>
          <xs:documentation>Old Romney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL019">
        <xs:annotation>
          <xs:documentation>Paddlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL020">
        <xs:annotation>
          <xs:documentation>Postling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL021">
        <xs:annotation>
          <xs:documentation>St. Mary in the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL022">
        <xs:annotation>
          <xs:documentation>Saltwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL023">
        <xs:annotation>
          <xs:documentation>Sellindge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL024">
        <xs:annotation>
          <xs:documentation>Snargate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL025">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL026">
        <xs:annotation>
          <xs:documentation>Stelling Minnis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL027">
        <xs:annotation>
          <xs:documentation>Stowting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL028">
        <xs:annotation>
          <xs:documentation>Swingfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL029">
        <xs:annotation>
          <xs:documentation>Folkestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UL030">
        <xs:annotation>
          <xs:documentation>Sandgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM001">
        <xs:annotation>
          <xs:documentation>Badlesmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM002">
        <xs:annotation>
          <xs:documentation>Bapchild</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM003">
        <xs:annotation>
          <xs:documentation>Bobbing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM004">
        <xs:annotation>
          <xs:documentation>Borden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM005">
        <xs:annotation>
          <xs:documentation>Boughton under Blean</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM006">
        <xs:annotation>
          <xs:documentation>Bredgar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM008">
        <xs:annotation>
          <xs:documentation>Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM009">
        <xs:annotation>
          <xs:documentation>Dunkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM010">
        <xs:annotation>
          <xs:documentation>Eastchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM011">
        <xs:annotation>
          <xs:documentation>Eastling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM012">
        <xs:annotation>
          <xs:documentation>Faversham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM013">
        <xs:annotation>
          <xs:documentation>Graveney with Goodnestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM014">
        <xs:annotation>
          <xs:documentation>Hartlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM015">
        <xs:annotation>
          <xs:documentation>Hernhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM016">
        <xs:annotation>
          <xs:documentation>Iwade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM017">
        <xs:annotation>
          <xs:documentation>Leaveland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM018">
        <xs:annotation>
          <xs:documentation>Leysdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM019">
        <xs:annotation>
          <xs:documentation>Lower Halstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM020">
        <xs:annotation>
          <xs:documentation>Luddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM021">
        <xs:annotation>
          <xs:documentation>Lynsted with Kingsdown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM022">
        <xs:annotation>
          <xs:documentation>Milstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM023">
        <xs:annotation>
          <xs:documentation>Newington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM024">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM025">
        <xs:annotation>
          <xs:documentation>Norton, Buckland and Stone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM026">
        <xs:annotation>
          <xs:documentation>Oare</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM027">
        <xs:annotation>
          <xs:documentation>Ospringe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM028">
        <xs:annotation>
          <xs:documentation>Queenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM029">
        <xs:annotation>
          <xs:documentation>Rodmersham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM030">
        <xs:annotation>
          <xs:documentation>Selling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM031">
        <xs:annotation>
          <xs:documentation>Sheldwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM032">
        <xs:annotation>
          <xs:documentation>Stalisfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM034">
        <xs:annotation>
          <xs:documentation>Teynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM035">
        <xs:annotation>
          <xs:documentation>Throwley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM036">
        <xs:annotation>
          <xs:documentation>Tonge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM037">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM038">
        <xs:annotation>
          <xs:documentation>Upchurch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM039">
        <xs:annotation>
          <xs:documentation>Warden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UM040">
        <xs:annotation>
          <xs:documentation>Minster-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN001">
        <xs:annotation>
          <xs:documentation>Acol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN002">
        <xs:annotation>
          <xs:documentation>Birchington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN003">
        <xs:annotation>
          <xs:documentation>Broadstairs and St. Peters</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN004">
        <xs:annotation>
          <xs:documentation>Manston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN005">
        <xs:annotation>
          <xs:documentation>Minster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN006">
        <xs:annotation>
          <xs:documentation>Monkton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN007">
        <xs:annotation>
          <xs:documentation>St. Nicholas at Wade</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN008">
        <xs:annotation>
          <xs:documentation>Sarre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UN009">
        <xs:annotation>
          <xs:documentation>Cliffsend</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP001">
        <xs:annotation>
          <xs:documentation>Addington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP002">
        <xs:annotation>
          <xs:documentation>Aylesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP003">
        <xs:annotation>
          <xs:documentation>Birling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP004">
        <xs:annotation>
          <xs:documentation>Borough Green</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP005">
        <xs:annotation>
          <xs:documentation>Burham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP006">
        <xs:annotation>
          <xs:documentation>Ditton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP007">
        <xs:annotation>
          <xs:documentation>East Malling and Larkfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP008">
        <xs:annotation>
          <xs:documentation>East Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP009">
        <xs:annotation>
          <xs:documentation>Hadlow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP010">
        <xs:annotation>
          <xs:documentation>Hildenborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP011">
        <xs:annotation>
          <xs:documentation>Ightham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP012">
        <xs:annotation>
          <xs:documentation>Leybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP013">
        <xs:annotation>
          <xs:documentation>Mereworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP014">
        <xs:annotation>
          <xs:documentation>Offham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP015">
        <xs:annotation>
          <xs:documentation>Platt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP016">
        <xs:annotation>
          <xs:documentation>Plaxtol</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP017">
        <xs:annotation>
          <xs:documentation>Ryarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP018">
        <xs:annotation>
          <xs:documentation>Shipbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP019">
        <xs:annotation>
          <xs:documentation>Snodland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP020">
        <xs:annotation>
          <xs:documentation>Stansted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP021">
        <xs:annotation>
          <xs:documentation>Trottiscliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP022">
        <xs:annotation>
          <xs:documentation>Wateringbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP023">
        <xs:annotation>
          <xs:documentation>West Malling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP024">
        <xs:annotation>
          <xs:documentation>West Peckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP025">
        <xs:annotation>
          <xs:documentation>Wouldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP026">
        <xs:annotation>
          <xs:documentation>Wrotham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UP027">
        <xs:annotation>
          <xs:documentation>Kings Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ001">
        <xs:annotation>
          <xs:documentation>Benenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ002">
        <xs:annotation>
          <xs:documentation>Bidborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ003">
        <xs:annotation>
          <xs:documentation>Brenchley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ004">
        <xs:annotation>
          <xs:documentation>Capel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ005">
        <xs:annotation>
          <xs:documentation>Cranbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ006">
        <xs:annotation>
          <xs:documentation>Frittenden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ007">
        <xs:annotation>
          <xs:documentation>Goudhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ008">
        <xs:annotation>
          <xs:documentation>Hawkhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ009">
        <xs:annotation>
          <xs:documentation>Horsmonden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ010">
        <xs:annotation>
          <xs:documentation>Lamberhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ011">
        <xs:annotation>
          <xs:documentation>Paddock Wood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ012">
        <xs:annotation>
          <xs:documentation>Pembury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ013">
        <xs:annotation>
          <xs:documentation>Sandhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ014">
        <xs:annotation>
          <xs:documentation>Southborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="29UQ015">
        <xs:annotation>
          <xs:documentation>Speldhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD001">
        <xs:annotation>
          <xs:documentation>Briercliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD002">
        <xs:annotation>
          <xs:documentation>Cliviger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD003">
        <xs:annotation>
          <xs:documentation>Dunnockshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD004">
        <xs:annotation>
          <xs:documentation>Habergham Eaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD005">
        <xs:annotation>
          <xs:documentation>Hapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD006">
        <xs:annotation>
          <xs:documentation>Ightenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD007">
        <xs:annotation>
          <xs:documentation>Worsthorne-with-Hurstwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UD008">
        <xs:annotation>
          <xs:documentation>Padiham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE001">
        <xs:annotation>
          <xs:documentation>Adlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE002">
        <xs:annotation>
          <xs:documentation>Anderton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE003">
        <xs:annotation>
          <xs:documentation>Anglezarke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE004">
        <xs:annotation>
          <xs:documentation>Astley Village</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE005">
        <xs:annotation>
          <xs:documentation>Bretherton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE006">
        <xs:annotation>
          <xs:documentation>Brindle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE007">
        <xs:annotation>
          <xs:documentation>Charnock Richard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE008">
        <xs:annotation>
          <xs:documentation>Clayton-le-Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE009">
        <xs:annotation>
          <xs:documentation>Coppull</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE010">
        <xs:annotation>
          <xs:documentation>Croston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE011">
        <xs:annotation>
          <xs:documentation>Cuerden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE012">
        <xs:annotation>
          <xs:documentation>Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE013">
        <xs:annotation>
          <xs:documentation>Euxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE014">
        <xs:annotation>
          <xs:documentation>Heapey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE015">
        <xs:annotation>
          <xs:documentation>Heath Charnock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE016">
        <xs:annotation>
          <xs:documentation>Heskin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE017">
        <xs:annotation>
          <xs:documentation>Hoghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE018">
        <xs:annotation>
          <xs:documentation>Mawdesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE019">
        <xs:annotation>
          <xs:documentation>Rivington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE020">
        <xs:annotation>
          <xs:documentation>Ulnes Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE021">
        <xs:annotation>
          <xs:documentation>Wheelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE022">
        <xs:annotation>
          <xs:documentation>Whittle-le-Woods</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UE023">
        <xs:annotation>
          <xs:documentation>Withnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF001">
        <xs:annotation>
          <xs:documentation>Bryning-with-Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF002">
        <xs:annotation>
          <xs:documentation>Elswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF003">
        <xs:annotation>
          <xs:documentation>Freckleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF004">
        <xs:annotation>
          <xs:documentation>Greenhalgh-with-Thistleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF005">
        <xs:annotation>
          <xs:documentation>Kirkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF006">
        <xs:annotation>
          <xs:documentation>Little Eccleston-with-Larbreck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF007">
        <xs:annotation>
          <xs:documentation>Medlar-with-Wesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF008">
        <xs:annotation>
          <xs:documentation>Newton-with-Clifton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF009">
        <xs:annotation>
          <xs:documentation>Ribby-with-Wrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF010">
        <xs:annotation>
          <xs:documentation>Singleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF011">
        <xs:annotation>
          <xs:documentation>Staining</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF012">
        <xs:annotation>
          <xs:documentation>Treales, Roseacre and Wharles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF013">
        <xs:annotation>
          <xs:documentation>Weeton-with-Preese</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UF014">
        <xs:annotation>
          <xs:documentation>Westby-with-Plumptons</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UG001">
        <xs:annotation>
          <xs:documentation>Altham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH001">
        <xs:annotation>
          <xs:documentation>Arkholme-with-Cawood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH002">
        <xs:annotation>
          <xs:documentation>Bolton-le-Sands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH003">
        <xs:annotation>
          <xs:documentation>Borwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH004">
        <xs:annotation>
          <xs:documentation>Burrow-with-Burrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH005">
        <xs:annotation>
          <xs:documentation>Cantsfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH006">
        <xs:annotation>
          <xs:documentation>Carnforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH007">
        <xs:annotation>
          <xs:documentation>Caton-with-Littledale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH008">
        <xs:annotation>
          <xs:documentation>Claughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH009">
        <xs:annotation>
          <xs:documentation>Cockerham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH010">
        <xs:annotation>
          <xs:documentation>Ellel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH011">
        <xs:annotation>
          <xs:documentation>Gressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH012">
        <xs:annotation>
          <xs:documentation>Halton-with-Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH013">
        <xs:annotation>
          <xs:documentation>Heaton-with-Oxcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH014">
        <xs:annotation>
          <xs:documentation>Hornby-with-Farleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH015">
        <xs:annotation>
          <xs:documentation>Ireby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH016">
        <xs:annotation>
          <xs:documentation>Leck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH017">
        <xs:annotation>
          <xs:documentation>Melling-with-Wrayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH018">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH019">
        <xs:annotation>
          <xs:documentation>Nether Kellet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH020">
        <xs:annotation>
          <xs:documentation>Over Kellet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH021">
        <xs:annotation>
          <xs:documentation>Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH022">
        <xs:annotation>
          <xs:documentation>Over Wyresdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH023">
        <xs:annotation>
          <xs:documentation>Priest Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH024">
        <xs:annotation>
          <xs:documentation>Quernmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH025">
        <xs:annotation>
          <xs:documentation>Roeburndale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH026">
        <xs:annotation>
          <xs:documentation>Scotforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH027">
        <xs:annotation>
          <xs:documentation>Silverdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH028">
        <xs:annotation>
          <xs:documentation>Slyne-with-Hest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH029">
        <xs:annotation>
          <xs:documentation>Tatham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH030">
        <xs:annotation>
          <xs:documentation>Thurnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH031">
        <xs:annotation>
          <xs:documentation>Tunstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH032">
        <xs:annotation>
          <xs:documentation>Warton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH033">
        <xs:annotation>
          <xs:documentation>Wennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH034">
        <xs:annotation>
          <xs:documentation>Whittington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH035">
        <xs:annotation>
          <xs:documentation>Wray-with-Botton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH036">
        <xs:annotation>
          <xs:documentation>Yealand Conyers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UH037">
        <xs:annotation>
          <xs:documentation>Yealand Redmayne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ001">
        <xs:annotation>
          <xs:documentation>Barley-with-Wheatley Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ002">
        <xs:annotation>
          <xs:documentation>Barnoldswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ003">
        <xs:annotation>
          <xs:documentation>Barrowford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ004">
        <xs:annotation>
          <xs:documentation>Blacko</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ005">
        <xs:annotation>
          <xs:documentation>Bracewell and Brogden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ006">
        <xs:annotation>
          <xs:documentation>Foulridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ007">
        <xs:annotation>
          <xs:documentation>Goldshaw Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ008">
        <xs:annotation>
          <xs:documentation>Higham-with-West Close Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ009">
        <xs:annotation>
          <xs:documentation>Old Laund Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ010">
        <xs:annotation>
          <xs:documentation>Reedley Hallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ011">
        <xs:annotation>
          <xs:documentation>Roughlee Booth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ012">
        <xs:annotation>
          <xs:documentation>Salterforth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ013">
        <xs:annotation>
          <xs:documentation>Trawden Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ014">
        <xs:annotation>
          <xs:documentation>Brierfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ015">
        <xs:annotation>
          <xs:documentation>Earby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ016">
        <xs:annotation>
          <xs:documentation>Kelbrook and Sough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UJ017">
        <xs:annotation>
          <xs:documentation>Laneshaw Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK001">
        <xs:annotation>
          <xs:documentation>Barton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK002">
        <xs:annotation>
          <xs:documentation>Broughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK003">
        <xs:annotation>
          <xs:documentation>Goosnargh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK004">
        <xs:annotation>
          <xs:documentation>Grimsargh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK005">
        <xs:annotation>
          <xs:documentation>Haighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK006">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK007">
        <xs:annotation>
          <xs:documentation>Whittingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UK008">
        <xs:annotation>
          <xs:documentation>Woodplumpton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL001">
        <xs:annotation>
          <xs:documentation>Aighton, Bailey and Chaigley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL002">
        <xs:annotation>
          <xs:documentation>Balderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL003">
        <xs:annotation>
          <xs:documentation>Bashall Eaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL004">
        <xs:annotation>
          <xs:documentation>Billington and Langho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL005">
        <xs:annotation>
          <xs:documentation>Bolton-by-Bowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL006">
        <xs:annotation>
          <xs:documentation>Bowland Forest High</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL007">
        <xs:annotation>
          <xs:documentation>Bowland Forest Low</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL008">
        <xs:annotation>
          <xs:documentation>Bowland-with-Leagram</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL009">
        <xs:annotation>
          <xs:documentation>Chatburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL010">
        <xs:annotation>
          <xs:documentation>Chipping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL011">
        <xs:annotation>
          <xs:documentation>Clayton-le-Dale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL012">
        <xs:annotation>
          <xs:documentation>Clitheroe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL013">
        <xs:annotation>
          <xs:documentation>Dinckley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL014">
        <xs:annotation>
          <xs:documentation>Downham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL015">
        <xs:annotation>
          <xs:documentation>Dutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL016">
        <xs:annotation>
          <xs:documentation>Easington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL017">
        <xs:annotation>
          <xs:documentation>Gisburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL018">
        <xs:annotation>
          <xs:documentation>Gisburn Forest</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL019">
        <xs:annotation>
          <xs:documentation>Great Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL020">
        <xs:annotation>
          <xs:documentation>Grindleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL021">
        <xs:annotation>
          <xs:documentation>Horton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL022">
        <xs:annotation>
          <xs:documentation>Hothersall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL023">
        <xs:annotation>
          <xs:documentation>Little Mitton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL024">
        <xs:annotation>
          <xs:documentation>Longridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL025">
        <xs:annotation>
          <xs:documentation>Mearley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL026">
        <xs:annotation>
          <xs:documentation>Mellor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL027">
        <xs:annotation>
          <xs:documentation>Middop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL028">
        <xs:annotation>
          <xs:documentation>Newsholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL029">
        <xs:annotation>
          <xs:documentation>Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL030">
        <xs:annotation>
          <xs:documentation>Osbaldeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL031">
        <xs:annotation>
          <xs:documentation>Paythorne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL032">
        <xs:annotation>
          <xs:documentation>Pendleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL033">
        <xs:annotation>
          <xs:documentation>Ramsgreave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL034">
        <xs:annotation>
          <xs:documentation>Read</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL035">
        <xs:annotation>
          <xs:documentation>Ribchester</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL036">
        <xs:annotation>
          <xs:documentation>Rimington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL037">
        <xs:annotation>
          <xs:documentation>Sabden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL038">
        <xs:annotation>
          <xs:documentation>Salesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL039">
        <xs:annotation>
          <xs:documentation>Sawley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL040">
        <xs:annotation>
          <xs:documentation>Simonstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL041">
        <xs:annotation>
          <xs:documentation>Slaidburn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL042">
        <xs:annotation>
          <xs:documentation>Thornley-with-Wheatley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL043">
        <xs:annotation>
          <xs:documentation>Twiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL044">
        <xs:annotation>
          <xs:documentation>Waddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL045">
        <xs:annotation>
          <xs:documentation>West Bradford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL046">
        <xs:annotation>
          <xs:documentation>Whalley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL047">
        <xs:annotation>
          <xs:documentation>Wilpshire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL048">
        <xs:annotation>
          <xs:documentation>Wiswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UL049">
        <xs:annotation>
          <xs:documentation>Worston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UM001">
        <xs:annotation>
          <xs:documentation>Whitworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN001">
        <xs:annotation>
          <xs:documentation>Cuerdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN002">
        <xs:annotation>
          <xs:documentation>Farington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN003">
        <xs:annotation>
          <xs:documentation>Hutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN004">
        <xs:annotation>
          <xs:documentation>Little Hoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN005">
        <xs:annotation>
          <xs:documentation>Longton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN006">
        <xs:annotation>
          <xs:documentation>Much Hoole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN007">
        <xs:annotation>
          <xs:documentation>Penwortham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UN008">
        <xs:annotation>
          <xs:documentation>Samlesbury</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP001">
        <xs:annotation>
          <xs:documentation>Aughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP002">
        <xs:annotation>
          <xs:documentation>Bickerstaffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP003">
        <xs:annotation>
          <xs:documentation>Bispham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP004">
        <xs:annotation>
          <xs:documentation>Burscough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP005">
        <xs:annotation>
          <xs:documentation>Dalton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP006">
        <xs:annotation>
          <xs:documentation>Downholland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP007">
        <xs:annotation>
          <xs:documentation>Great Altcar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP008">
        <xs:annotation>
          <xs:documentation>Halsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP009">
        <xs:annotation>
          <xs:documentation>Hesketh-with-Becconsall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP010">
        <xs:annotation>
          <xs:documentation>Lathom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP011">
        <xs:annotation>
          <xs:documentation>Newburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP012">
        <xs:annotation>
          <xs:documentation>North Meols</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP013">
        <xs:annotation>
          <xs:documentation>Parbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP014">
        <xs:annotation>
          <xs:documentation>Rufford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP015">
        <xs:annotation>
          <xs:documentation>Scarisbrick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP016">
        <xs:annotation>
          <xs:documentation>Tarleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP017">
        <xs:annotation>
          <xs:documentation>Up Holland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP018">
        <xs:annotation>
          <xs:documentation>Wrightington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP019">
        <xs:annotation>
          <xs:documentation>Simonswood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UP020">
        <xs:annotation>
          <xs:documentation>Hilldale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ001">
        <xs:annotation>
          <xs:documentation>Barnacre-with-Bonds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ003">
        <xs:annotation>
          <xs:documentation>Bleasdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ004">
        <xs:annotation>
          <xs:documentation>Cabus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ005">
        <xs:annotation>
          <xs:documentation>Catterall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ006">
        <xs:annotation>
          <xs:documentation>Claughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ007">
        <xs:annotation>
          <xs:documentation>Forton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ008">
        <xs:annotation>
          <xs:documentation>Garstang</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ009">
        <xs:annotation>
          <xs:documentation>Great Eccleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ010">
        <xs:annotation>
          <xs:documentation>Hambleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ011">
        <xs:annotation>
          <xs:documentation>Inskip-with-Sowerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ012">
        <xs:annotation>
          <xs:documentation>Kirkland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ014">
        <xs:annotation>
          <xs:documentation>Nateby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ015">
        <xs:annotation>
          <xs:documentation>Nether Wyersdale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ016">
        <xs:annotation>
          <xs:documentation>Out Rawcliffe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ017">
        <xs:annotation>
          <xs:documentation>Pilling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ018">
        <xs:annotation>
          <xs:documentation>Preesall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ019">
        <xs:annotation>
          <xs:documentation>Stalmine-with-Staynall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ020">
        <xs:annotation>
          <xs:documentation>Upper Rawcliffe-with-Tarnacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ021">
        <xs:annotation>
          <xs:documentation>Winmarleigh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30UQ022">
        <xs:annotation>
          <xs:documentation>Myerscough and Bilsborrow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB001">
        <xs:annotation>
          <xs:documentation>Aston Flamville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB002">
        <xs:annotation>
          <xs:documentation>Blaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB003">
        <xs:annotation>
          <xs:documentation>Braunstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB004">
        <xs:annotation>
          <xs:documentation>Cosby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB005">
        <xs:annotation>
          <xs:documentation>Countesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB006">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB007">
        <xs:annotation>
          <xs:documentation>Elmesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB008">
        <xs:annotation>
          <xs:documentation>Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB009">
        <xs:annotation>
          <xs:documentation>Glenfields</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB010">
        <xs:annotation>
          <xs:documentation>Glen Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB011">
        <xs:annotation>
          <xs:documentation>Huncote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB012">
        <xs:annotation>
          <xs:documentation>Kilby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB013">
        <xs:annotation>
          <xs:documentation>Kirby Muxloe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB014">
        <xs:annotation>
          <xs:documentation>Leicester Forest East</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB015">
        <xs:annotation>
          <xs:documentation>Leicester Forest West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB016">
        <xs:annotation>
          <xs:documentation>Lubbesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB017">
        <xs:annotation>
          <xs:documentation>Narborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB018">
        <xs:annotation>
          <xs:documentation>Potters Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB019">
        <xs:annotation>
          <xs:documentation>Sapcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB020">
        <xs:annotation>
          <xs:documentation>Sharnford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB021">
        <xs:annotation>
          <xs:documentation>Stoney Stanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB022">
        <xs:annotation>
          <xs:documentation>Thurlaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB023">
        <xs:annotation>
          <xs:documentation>Whetstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UB024">
        <xs:annotation>
          <xs:documentation>Wigston Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC001">
        <xs:annotation>
          <xs:documentation>Anstey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC002">
        <xs:annotation>
          <xs:documentation>Barkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC003">
        <xs:annotation>
          <xs:documentation>Barkby Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC004">
        <xs:annotation>
          <xs:documentation>Barrow upon Soar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC005">
        <xs:annotation>
          <xs:documentation>Beeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC006">
        <xs:annotation>
          <xs:documentation>Birstall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC007">
        <xs:annotation>
          <xs:documentation>Burton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC008">
        <xs:annotation>
          <xs:documentation>Cossington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC009">
        <xs:annotation>
          <xs:documentation>Cotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC010">
        <xs:annotation>
          <xs:documentation>East Goscote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC011">
        <xs:annotation>
          <xs:documentation>Hathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC012">
        <xs:annotation>
          <xs:documentation>Hoton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC013">
        <xs:annotation>
          <xs:documentation>Mountsorrel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC014">
        <xs:annotation>
          <xs:documentation>Newtown Linford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC015">
        <xs:annotation>
          <xs:documentation>Prestwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC016">
        <xs:annotation>
          <xs:documentation>Queniborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC017">
        <xs:annotation>
          <xs:documentation>Quorndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC018">
        <xs:annotation>
          <xs:documentation>Ratcliffe on the Wreake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC019">
        <xs:annotation>
          <xs:documentation>Rearsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC020">
        <xs:annotation>
          <xs:documentation>Rothley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC021">
        <xs:annotation>
          <xs:documentation>Seagrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC022">
        <xs:annotation>
          <xs:documentation>Shepshed</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC023">
        <xs:annotation>
          <xs:documentation>Sileby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC024">
        <xs:annotation>
          <xs:documentation>South Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC025">
        <xs:annotation>
          <xs:documentation>Swithland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC026">
        <xs:annotation>
          <xs:documentation>Syston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC027">
        <xs:annotation>
          <xs:documentation>Thrussington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC028">
        <xs:annotation>
          <xs:documentation>Thurcaston and Cropston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC029">
        <xs:annotation>
          <xs:documentation>Thurmaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC030">
        <xs:annotation>
          <xs:documentation>Ulverscroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC031">
        <xs:annotation>
          <xs:documentation>Walton on the Wolds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC032">
        <xs:annotation>
          <xs:documentation>Wanlip</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC033">
        <xs:annotation>
          <xs:documentation>Woodhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UC034">
        <xs:annotation>
          <xs:documentation>Wymeswold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD001">
        <xs:annotation>
          <xs:documentation>Allexton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD002">
        <xs:annotation>
          <xs:documentation>Arnesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD003">
        <xs:annotation>
          <xs:documentation>Ashby Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD004">
        <xs:annotation>
          <xs:documentation>Ashby Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD005">
        <xs:annotation>
          <xs:documentation>Billesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD006">
        <xs:annotation>
          <xs:documentation>Bittesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD007">
        <xs:annotation>
          <xs:documentation>Bitteswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD008">
        <xs:annotation>
          <xs:documentation>Blaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD009">
        <xs:annotation>
          <xs:documentation>Bringhurst</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD010">
        <xs:annotation>
          <xs:documentation>Broughton Astley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD011">
        <xs:annotation>
          <xs:documentation>Bruntingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD012">
        <xs:annotation>
          <xs:documentation>Burton Overy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD013">
        <xs:annotation>
          <xs:documentation>Carlton Curlieu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD014">
        <xs:annotation>
          <xs:documentation>Catthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD015">
        <xs:annotation>
          <xs:documentation>Claybrooke Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD016">
        <xs:annotation>
          <xs:documentation>Claybrooke Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD017">
        <xs:annotation>
          <xs:documentation>Cold Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD018">
        <xs:annotation>
          <xs:documentation>Cotesbach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD019">
        <xs:annotation>
          <xs:documentation>Cranoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD020">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD021">
        <xs:annotation>
          <xs:documentation>Dunton Bassett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD022">
        <xs:annotation>
          <xs:documentation>East Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD023">
        <xs:annotation>
          <xs:documentation>East Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD024">
        <xs:annotation>
          <xs:documentation>Fleckney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD025">
        <xs:annotation>
          <xs:documentation>Foxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD026">
        <xs:annotation>
          <xs:documentation>Frisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD027">
        <xs:annotation>
          <xs:documentation>Frolesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD028">
        <xs:annotation>
          <xs:documentation>Gaulby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD029">
        <xs:annotation>
          <xs:documentation>Gilmorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD030">
        <xs:annotation>
          <xs:documentation>Glooston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD031">
        <xs:annotation>
          <xs:documentation>Goadby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD032">
        <xs:annotation>
          <xs:documentation>Great Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD033">
        <xs:annotation>
          <xs:documentation>Great Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD034">
        <xs:annotation>
          <xs:documentation>Gumley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD035">
        <xs:annotation>
          <xs:documentation>Hallaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD036">
        <xs:annotation>
          <xs:documentation>Horninghold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD037">
        <xs:annotation>
          <xs:documentation>Houghton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD038">
        <xs:annotation>
          <xs:documentation>Hungarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD039">
        <xs:annotation>
          <xs:documentation>Husbands Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD040">
        <xs:annotation>
          <xs:documentation>Illston on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD041">
        <xs:annotation>
          <xs:documentation>Keyham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD042">
        <xs:annotation>
          <xs:documentation>Kibworth Beauchamp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD043">
        <xs:annotation>
          <xs:documentation>Kibworth Harcourt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD044">
        <xs:annotation>
          <xs:documentation>Kimcote and Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD045">
        <xs:annotation>
          <xs:documentation>King's Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD046">
        <xs:annotation>
          <xs:documentation>Knaptoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD047">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD048">
        <xs:annotation>
          <xs:documentation>Launde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD049">
        <xs:annotation>
          <xs:documentation>Leire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD050">
        <xs:annotation>
          <xs:documentation>Little Stretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD051">
        <xs:annotation>
          <xs:documentation>Loddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD052">
        <xs:annotation>
          <xs:documentation>Lowesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD053">
        <xs:annotation>
          <xs:documentation>Lubenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD054">
        <xs:annotation>
          <xs:documentation>Lutterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD055">
        <xs:annotation>
          <xs:documentation>Marefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD056">
        <xs:annotation>
          <xs:documentation>Medbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD057">
        <xs:annotation>
          <xs:documentation>Misterton with Walcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD058">
        <xs:annotation>
          <xs:documentation>Mowsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD059">
        <xs:annotation>
          <xs:documentation>Nevill Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD060">
        <xs:annotation>
          <xs:documentation>North Kilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD061">
        <xs:annotation>
          <xs:documentation>Noseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD062">
        <xs:annotation>
          <xs:documentation>Owston and Newbold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD063">
        <xs:annotation>
          <xs:documentation>Peatling Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD064">
        <xs:annotation>
          <xs:documentation>Peatling Parva</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD065">
        <xs:annotation>
          <xs:documentation>Rolleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD066">
        <xs:annotation>
          <xs:documentation>Saddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD067">
        <xs:annotation>
          <xs:documentation>Scraptoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD068">
        <xs:annotation>
          <xs:documentation>Shangton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD069">
        <xs:annotation>
          <xs:documentation>Shawell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD070">
        <xs:annotation>
          <xs:documentation>Shearsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD071">
        <xs:annotation>
          <xs:documentation>Skeffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD072">
        <xs:annotation>
          <xs:documentation>Slawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD073">
        <xs:annotation>
          <xs:documentation>Smeeton Westerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD074">
        <xs:annotation>
          <xs:documentation>South Kilworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD075">
        <xs:annotation>
          <xs:documentation>Stockerston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD076">
        <xs:annotation>
          <xs:documentation>Stonton Wyville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD077">
        <xs:annotation>
          <xs:documentation>Stoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD079">
        <xs:annotation>
          <xs:documentation>Swinford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD080">
        <xs:annotation>
          <xs:documentation>Theddingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD081">
        <xs:annotation>
          <xs:documentation>Thorpe Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD082">
        <xs:annotation>
          <xs:documentation>Thurnby and Bushby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD083">
        <xs:annotation>
          <xs:documentation>Tilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD084">
        <xs:annotation>
          <xs:documentation>Tugby and Keythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD085">
        <xs:annotation>
          <xs:documentation>Tur Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD086">
        <xs:annotation>
          <xs:documentation>Ullesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD087">
        <xs:annotation>
          <xs:documentation>Welham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD088">
        <xs:annotation>
          <xs:documentation>West Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD089">
        <xs:annotation>
          <xs:documentation>Westrill and Starmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD091">
        <xs:annotation>
          <xs:documentation>Willoughby Waterleys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD092">
        <xs:annotation>
          <xs:documentation>Wistow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD093">
        <xs:annotation>
          <xs:documentation>Withcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UD094">
        <xs:annotation>
          <xs:documentation>Great Bowden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE001">
        <xs:annotation>
          <xs:documentation>Bagworth &amp; Thornton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE002">
        <xs:annotation>
          <xs:documentation>Barlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE003">
        <xs:annotation>
          <xs:documentation>Burbage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE004">
        <xs:annotation>
          <xs:documentation>Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE005">
        <xs:annotation>
          <xs:documentation>Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE006">
        <xs:annotation>
          <xs:documentation>Desford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE007">
        <xs:annotation>
          <xs:documentation>Groby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE008">
        <xs:annotation>
          <xs:documentation>Higham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE009">
        <xs:annotation>
          <xs:documentation>Market Bosworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE010">
        <xs:annotation>
          <xs:documentation>Markfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE011">
        <xs:annotation>
          <xs:documentation>Nailstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE012">
        <xs:annotation>
          <xs:documentation>Newbold Verdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE013">
        <xs:annotation>
          <xs:documentation>Osbaston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE014">
        <xs:annotation>
          <xs:documentation>Peckleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE015">
        <xs:annotation>
          <xs:documentation>Ratby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE016">
        <xs:annotation>
          <xs:documentation>Shackerstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE017">
        <xs:annotation>
          <xs:documentation>Sheepy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE018">
        <xs:annotation>
          <xs:documentation>Stanton-under-Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE019">
        <xs:annotation>
          <xs:documentation>Stoke Golding</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE020">
        <xs:annotation>
          <xs:documentation>Sutton Cheney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE021">
        <xs:annotation>
          <xs:documentation>Twycross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE022">
        <xs:annotation>
          <xs:documentation>Witherley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UE023">
        <xs:annotation>
          <xs:documentation>Earl Shilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG001">
        <xs:annotation>
          <xs:documentation>Ab Kettleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG002">
        <xs:annotation>
          <xs:documentation>Asfordby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG003">
        <xs:annotation>
          <xs:documentation>Belvoir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG004">
        <xs:annotation>
          <xs:documentation>Bottesford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG005">
        <xs:annotation>
          <xs:documentation>Broughton and Old Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG006">
        <xs:annotation>
          <xs:documentation>Buckminster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG007">
        <xs:annotation>
          <xs:documentation>Burton and Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG008">
        <xs:annotation>
          <xs:documentation>Clawson, Hose and Harby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG009">
        <xs:annotation>
          <xs:documentation>Croxton Kerrial</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG010">
        <xs:annotation>
          <xs:documentation>Eaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG011">
        <xs:annotation>
          <xs:documentation>Freeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG012">
        <xs:annotation>
          <xs:documentation>Frisby and Kirby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG013">
        <xs:annotation>
          <xs:documentation>Gaddesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG014">
        <xs:annotation>
          <xs:documentation>Garthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG015">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG016">
        <xs:annotation>
          <xs:documentation>Hoby with Rotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG017">
        <xs:annotation>
          <xs:documentation>Knossington and Cold Overton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG018">
        <xs:annotation>
          <xs:documentation>Redmile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG019">
        <xs:annotation>
          <xs:documentation>Scalford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG020">
        <xs:annotation>
          <xs:documentation>Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG021">
        <xs:annotation>
          <xs:documentation>Sproxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG022">
        <xs:annotation>
          <xs:documentation>Stathern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG023">
        <xs:annotation>
          <xs:documentation>Twyford and Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG024">
        <xs:annotation>
          <xs:documentation>Waltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UG025">
        <xs:annotation>
          <xs:documentation>Wymondham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH001">
        <xs:annotation>
          <xs:documentation>Appleby Magna</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH002">
        <xs:annotation>
          <xs:documentation>Ashby-de-la-Zouch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH003">
        <xs:annotation>
          <xs:documentation>Ashby Woulds</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH004">
        <xs:annotation>
          <xs:documentation>Bardon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH005">
        <xs:annotation>
          <xs:documentation>Belton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH006">
        <xs:annotation>
          <xs:documentation>Breedon on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH007">
        <xs:annotation>
          <xs:documentation>Castle Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH008">
        <xs:annotation>
          <xs:documentation>Charley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH009">
        <xs:annotation>
          <xs:documentation>Chilcote</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH010">
        <xs:annotation>
          <xs:documentation>Coleorton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH011">
        <xs:annotation>
          <xs:documentation>Heather</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH012">
        <xs:annotation>
          <xs:documentation>Ibstock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH013">
        <xs:annotation>
          <xs:documentation>Isley cum Langley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH014">
        <xs:annotation>
          <xs:documentation>Kegworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH015">
        <xs:annotation>
          <xs:documentation>Lockington-Hemington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH016">
        <xs:annotation>
          <xs:documentation>Long Whatton and Diseworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH017">
        <xs:annotation>
          <xs:documentation>Measham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH018">
        <xs:annotation>
          <xs:documentation>Normanton le Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH019">
        <xs:annotation>
          <xs:documentation>Oakthorpe and Donisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH020">
        <xs:annotation>
          <xs:documentation>Osgathorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH021">
        <xs:annotation>
          <xs:documentation>Packington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH022">
        <xs:annotation>
          <xs:documentation>Ravenstone with Snibstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH023">
        <xs:annotation>
          <xs:documentation>Snarestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH024">
        <xs:annotation>
          <xs:documentation>Staunton Harold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH025">
        <xs:annotation>
          <xs:documentation>Stretton en le Field</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH026">
        <xs:annotation>
          <xs:documentation>Swannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH027">
        <xs:annotation>
          <xs:documentation>Swepstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH028">
        <xs:annotation>
          <xs:documentation>Worthington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="31UH029">
        <xs:annotation>
          <xs:documentation>Ellistown and Battleflat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB001">
        <xs:annotation>
          <xs:documentation>Algarkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB002">
        <xs:annotation>
          <xs:documentation>Amber Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB003">
        <xs:annotation>
          <xs:documentation>Benington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB004">
        <xs:annotation>
          <xs:documentation>Bicker</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB005">
        <xs:annotation>
          <xs:documentation>Butterwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB006">
        <xs:annotation>
          <xs:documentation>Fishtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB007">
        <xs:annotation>
          <xs:documentation>Fosdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB008">
        <xs:annotation>
          <xs:documentation>Frampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB009">
        <xs:annotation>
          <xs:documentation>Freiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB010">
        <xs:annotation>
          <xs:documentation>Holland Fen with Brothertoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB011">
        <xs:annotation>
          <xs:documentation>Kirton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB012">
        <xs:annotation>
          <xs:documentation>Leverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB013">
        <xs:annotation>
          <xs:documentation>Old Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB014">
        <xs:annotation>
          <xs:documentation>Sutterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB015">
        <xs:annotation>
          <xs:documentation>Swineshead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB016">
        <xs:annotation>
          <xs:documentation>Wigtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB017">
        <xs:annotation>
          <xs:documentation>Wrangle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UB018">
        <xs:annotation>
          <xs:documentation>Wyberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC001">
        <xs:annotation>
          <xs:documentation>Aby with Greenfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC002">
        <xs:annotation>
          <xs:documentation>Addlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC003">
        <xs:annotation>
          <xs:documentation>Alford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC004">
        <xs:annotation>
          <xs:documentation>Alvingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC005">
        <xs:annotation>
          <xs:documentation>Anderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC006">
        <xs:annotation>
          <xs:documentation>Ashby with Scremby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC007">
        <xs:annotation>
          <xs:documentation>Asterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC008">
        <xs:annotation>
          <xs:documentation>Aswardby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC009">
        <xs:annotation>
          <xs:documentation>Authorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC010">
        <xs:annotation>
          <xs:documentation>Baumber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC011">
        <xs:annotation>
          <xs:documentation>Beesby with Saleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC012">
        <xs:annotation>
          <xs:documentation>Belchford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC013">
        <xs:annotation>
          <xs:documentation>Belleau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC014">
        <xs:annotation>
          <xs:documentation>Benniworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC015">
        <xs:annotation>
          <xs:documentation>Bilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC016">
        <xs:annotation>
          <xs:documentation>Binbrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC017">
        <xs:annotation>
          <xs:documentation>Bolingbroke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC018">
        <xs:annotation>
          <xs:documentation>Brackenborough with Little Grimsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC019">
        <xs:annotation>
          <xs:documentation>Bratoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC020">
        <xs:annotation>
          <xs:documentation>Brinkhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC021">
        <xs:annotation>
          <xs:documentation>Bucknall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC022">
        <xs:annotation>
          <xs:documentation>Burgh le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC023">
        <xs:annotation>
          <xs:documentation>Burgh on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC024">
        <xs:annotation>
          <xs:documentation>Burwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC025">
        <xs:annotation>
          <xs:documentation>Calcethorpe with Kelstern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC026">
        <xs:annotation>
          <xs:documentation>Candlesby with Gunby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC027">
        <xs:annotation>
          <xs:documentation>Carrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC028">
        <xs:annotation>
          <xs:documentation>Chapel St. Leonards</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC029">
        <xs:annotation>
          <xs:documentation>Claxby St Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC030">
        <xs:annotation>
          <xs:documentation>Claxby with Moorby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC031">
        <xs:annotation>
          <xs:documentation>Claythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC032">
        <xs:annotation>
          <xs:documentation>Coningsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC033">
        <xs:annotation>
          <xs:documentation>Conisholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC034">
        <xs:annotation>
          <xs:documentation>Covenham St Bartholomew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC035">
        <xs:annotation>
          <xs:documentation>Covenham St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC036">
        <xs:annotation>
          <xs:documentation>Croft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC037">
        <xs:annotation>
          <xs:documentation>Cumberworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC038">
        <xs:annotation>
          <xs:documentation>Dalby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC039">
        <xs:annotation>
          <xs:documentation>Donington on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC040">
        <xs:annotation>
          <xs:documentation>East Barkwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC041">
        <xs:annotation>
          <xs:documentation>East Keal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC042">
        <xs:annotation>
          <xs:documentation>East Kirkby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC043">
        <xs:annotation>
          <xs:documentation>Eastville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC044">
        <xs:annotation>
          <xs:documentation>Edlington with Wispington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC045">
        <xs:annotation>
          <xs:documentation>Elkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC046">
        <xs:annotation>
          <xs:documentation>Farlesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC047">
        <xs:annotation>
          <xs:documentation>Firsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC048">
        <xs:annotation>
          <xs:documentation>Fotherby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC049">
        <xs:annotation>
          <xs:documentation>Friskney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC050">
        <xs:annotation>
          <xs:documentation>Frithville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC051">
        <xs:annotation>
          <xs:documentation>Fulletby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC052">
        <xs:annotation>
          <xs:documentation>Fulstow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC053">
        <xs:annotation>
          <xs:documentation>Gautby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC054">
        <xs:annotation>
          <xs:documentation>Gayton le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC055">
        <xs:annotation>
          <xs:documentation>Gayton le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC056">
        <xs:annotation>
          <xs:documentation>Goulceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC057">
        <xs:annotation>
          <xs:documentation>Grainsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC058">
        <xs:annotation>
          <xs:documentation>Grainthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC059">
        <xs:annotation>
          <xs:documentation>Great Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC060">
        <xs:annotation>
          <xs:documentation>Great Steeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC061">
        <xs:annotation>
          <xs:documentation>Great Sturton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC062">
        <xs:annotation>
          <xs:documentation>Greetham with Somersby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC063">
        <xs:annotation>
          <xs:documentation>Grimoldby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC064">
        <xs:annotation>
          <xs:documentation>Hagworthingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC065">
        <xs:annotation>
          <xs:documentation>Hainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC066">
        <xs:annotation>
          <xs:documentation>Hallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC067">
        <xs:annotation>
          <xs:documentation>Haltham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC068">
        <xs:annotation>
          <xs:documentation>Halton Holegate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC069">
        <xs:annotation>
          <xs:documentation>Hameringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC070">
        <xs:annotation>
          <xs:documentation>Hannah cum Hagnaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC071">
        <xs:annotation>
          <xs:documentation>Harrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC072">
        <xs:annotation>
          <xs:documentation>Hatton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC073">
        <xs:annotation>
          <xs:documentation>Haugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC074">
        <xs:annotation>
          <xs:documentation>Haugham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC075">
        <xs:annotation>
          <xs:documentation>Hemingby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC076">
        <xs:annotation>
          <xs:documentation>High Toynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC077">
        <xs:annotation>
          <xs:documentation>Hogsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC078">
        <xs:annotation>
          <xs:documentation>Holton le Clay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC079">
        <xs:annotation>
          <xs:documentation>Horncastle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC080">
        <xs:annotation>
          <xs:documentation>Horsington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC081">
        <xs:annotation>
          <xs:documentation>Hundleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC082">
        <xs:annotation>
          <xs:documentation>Huttoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC083">
        <xs:annotation>
          <xs:documentation>Ingoldmells</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC084">
        <xs:annotation>
          <xs:documentation>Irby in the Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC085">
        <xs:annotation>
          <xs:documentation>Keddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC086">
        <xs:annotation>
          <xs:documentation>Kirkby on Bain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC087">
        <xs:annotation>
          <xs:documentation>Langriville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC088">
        <xs:annotation>
          <xs:documentation>Langton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC089">
        <xs:annotation>
          <xs:documentation>Langton by Spilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC090">
        <xs:annotation>
          <xs:documentation>Langton by Wragby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC091">
        <xs:annotation>
          <xs:documentation>Legbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC092">
        <xs:annotation>
          <xs:documentation>Little Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC093">
        <xs:annotation>
          <xs:documentation>Little Cawthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC094">
        <xs:annotation>
          <xs:documentation>Little Steeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC095">
        <xs:annotation>
          <xs:documentation>Louth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC096">
        <xs:annotation>
          <xs:documentation>Low Toynton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC097">
        <xs:annotation>
          <xs:documentation>Ludborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC098">
        <xs:annotation>
          <xs:documentation>Ludford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC099">
        <xs:annotation>
          <xs:documentation>Lusby with Winceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC100">
        <xs:annotation>
          <xs:documentation>Mablethorpe and Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC101">
        <xs:annotation>
          <xs:documentation>Maidenwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC102">
        <xs:annotation>
          <xs:documentation>Maltby le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC103">
        <xs:annotation>
          <xs:documentation>Manby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC104">
        <xs:annotation>
          <xs:documentation>Mareham le Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC105">
        <xs:annotation>
          <xs:documentation>Mareham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC106">
        <xs:annotation>
          <xs:documentation>Markby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC107">
        <xs:annotation>
          <xs:documentation>Market Stainton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC108">
        <xs:annotation>
          <xs:documentation>Marshchapel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC109">
        <xs:annotation>
          <xs:documentation>Mavis Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC110">
        <xs:annotation>
          <xs:documentation>Midville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC111">
        <xs:annotation>
          <xs:documentation>Minting</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC112">
        <xs:annotation>
          <xs:documentation>Muckton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC113">
        <xs:annotation>
          <xs:documentation>Mumby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC114">
        <xs:annotation>
          <xs:documentation>New Leake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC115">
        <xs:annotation>
          <xs:documentation>North Coates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC116">
        <xs:annotation>
          <xs:documentation>North Cockerington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC117">
        <xs:annotation>
          <xs:documentation>North Ormsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC118">
        <xs:annotation>
          <xs:documentation>North Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC119">
        <xs:annotation>
          <xs:documentation>North Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC120">
        <xs:annotation>
          <xs:documentation>Orby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC121">
        <xs:annotation>
          <xs:documentation>Partney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC122">
        <xs:annotation>
          <xs:documentation>Raithby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC123">
        <xs:annotation>
          <xs:documentation>Raithby cum Maltby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC124">
        <xs:annotation>
          <xs:documentation>Ranby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC125">
        <xs:annotation>
          <xs:documentation>Reston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC126">
        <xs:annotation>
          <xs:documentation>Revesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC127">
        <xs:annotation>
          <xs:documentation>Rigsby with Ailby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC128">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC132">
        <xs:annotation>
          <xs:documentation>Sausthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC133">
        <xs:annotation>
          <xs:documentation>Scamblesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC134">
        <xs:annotation>
          <xs:documentation>Scrivelsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC135">
        <xs:annotation>
          <xs:documentation>Sibsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC136">
        <xs:annotation>
          <xs:documentation>Skegness</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC137">
        <xs:annotation>
          <xs:documentation>Skendleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC138">
        <xs:annotation>
          <xs:documentation>Skidbrooke with Saltfleet Haven</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC139">
        <xs:annotation>
          <xs:documentation>Sotby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC140">
        <xs:annotation>
          <xs:documentation>South Cockerington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC141">
        <xs:annotation>
          <xs:documentation>South Ormsby cum Ketsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC142">
        <xs:annotation>
          <xs:documentation>South Somercotes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC143">
        <xs:annotation>
          <xs:documentation>South Thoresby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC144">
        <xs:annotation>
          <xs:documentation>South Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC145">
        <xs:annotation>
          <xs:documentation>Spilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC146">
        <xs:annotation>
          <xs:documentation>Stenigot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC147">
        <xs:annotation>
          <xs:documentation>Stewton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC148">
        <xs:annotation>
          <xs:documentation>Stickford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC149">
        <xs:annotation>
          <xs:documentation>Stickney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC150">
        <xs:annotation>
          <xs:documentation>Stixwould and Woodhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC151">
        <xs:annotation>
          <xs:documentation>Strubby with Woodthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC152">
        <xs:annotation>
          <xs:documentation>Swaby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC153">
        <xs:annotation>
          <xs:documentation>Tathwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC154">
        <xs:annotation>
          <xs:documentation>Tattershall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC155">
        <xs:annotation>
          <xs:documentation>Tattershall Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC156">
        <xs:annotation>
          <xs:documentation>Tetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC157">
        <xs:annotation>
          <xs:documentation>Tetney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC158">
        <xs:annotation>
          <xs:documentation>Theddlethorpe All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC159">
        <xs:annotation>
          <xs:documentation>Theddlethorpe St Helen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC160">
        <xs:annotation>
          <xs:documentation>Thimbleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC161">
        <xs:annotation>
          <xs:documentation>Thornton le Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC162">
        <xs:annotation>
          <xs:documentation>Thorpe St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC163">
        <xs:annotation>
          <xs:documentation>Toynton All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC164">
        <xs:annotation>
          <xs:documentation>Toynton St Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC165">
        <xs:annotation>
          <xs:documentation>Tumby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC166">
        <xs:annotation>
          <xs:documentation>Tupholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC167">
        <xs:annotation>
          <xs:documentation>Ulceby with Fordington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC168">
        <xs:annotation>
          <xs:documentation>Utterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC169">
        <xs:annotation>
          <xs:documentation>Waddingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC170">
        <xs:annotation>
          <xs:documentation>Wainfleet All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC171">
        <xs:annotation>
          <xs:documentation>Wainfleet St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC172">
        <xs:annotation>
          <xs:documentation>Waithe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC173">
        <xs:annotation>
          <xs:documentation>Walmsgate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC174">
        <xs:annotation>
          <xs:documentation>Well</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC175">
        <xs:annotation>
          <xs:documentation>Welton le Marsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC176">
        <xs:annotation>
          <xs:documentation>Welton le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC177">
        <xs:annotation>
          <xs:documentation>West Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC178">
        <xs:annotation>
          <xs:documentation>West Barkwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC179">
        <xs:annotation>
          <xs:documentation>West Fen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC180">
        <xs:annotation>
          <xs:documentation>West Keal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC181">
        <xs:annotation>
          <xs:documentation>West Torrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC182">
        <xs:annotation>
          <xs:documentation>Westville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC183">
        <xs:annotation>
          <xs:documentation>Wildmore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC184">
        <xs:annotation>
          <xs:documentation>Willoughby with Sloothby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC185">
        <xs:annotation>
          <xs:documentation>Withcall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC186">
        <xs:annotation>
          <xs:documentation>Withern with Stain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC187">
        <xs:annotation>
          <xs:documentation>Wood Enderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC188">
        <xs:annotation>
          <xs:documentation>Woodhall Spa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC189">
        <xs:annotation>
          <xs:documentation>Wragby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC190">
        <xs:annotation>
          <xs:documentation>Wyham cum Cadeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC191">
        <xs:annotation>
          <xs:documentation>Yarburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UC192">
        <xs:annotation>
          <xs:documentation>Saltfleetby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE001">
        <xs:annotation>
          <xs:documentation>Anwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE002">
        <xs:annotation>
          <xs:documentation>Asgarby and Howell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE003">
        <xs:annotation>
          <xs:documentation>Ashby de la Launde and Bloxholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE004">
        <xs:annotation>
          <xs:documentation>Aswarby and Swarby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE005">
        <xs:annotation>
          <xs:documentation>Aubourn Haddington and South Hykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE006">
        <xs:annotation>
          <xs:documentation>Aunsby and Dembleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE007">
        <xs:annotation>
          <xs:documentation>Bassingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE008">
        <xs:annotation>
          <xs:documentation>Beckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE009">
        <xs:annotation>
          <xs:documentation>Billinghay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE010">
        <xs:annotation>
          <xs:documentation>Blankney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE011">
        <xs:annotation>
          <xs:documentation>Boothby Graffoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE012">
        <xs:annotation>
          <xs:documentation>Bracebridge Heath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE013">
        <xs:annotation>
          <xs:documentation>Branston and Mere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE014">
        <xs:annotation>
          <xs:documentation>Brant Broughton and Stragglethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE015">
        <xs:annotation>
          <xs:documentation>Brauncewell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE016">
        <xs:annotation>
          <xs:documentation>Burton Pedwardine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE017">
        <xs:annotation>
          <xs:documentation>Canwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE018">
        <xs:annotation>
          <xs:documentation>Carlton-le-Moorland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE019">
        <xs:annotation>
          <xs:documentation>Coleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE020">
        <xs:annotation>
          <xs:documentation>Cranwell and Byard's Leap</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE021">
        <xs:annotation>
          <xs:documentation>Culverthorpe and Kelby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE022">
        <xs:annotation>
          <xs:documentation>Digby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE023">
        <xs:annotation>
          <xs:documentation>Doddington and Whisby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE024">
        <xs:annotation>
          <xs:documentation>Dogdyke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE025">
        <xs:annotation>
          <xs:documentation>Dorrington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE026">
        <xs:annotation>
          <xs:documentation>Dunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE027">
        <xs:annotation>
          <xs:documentation>Eagle and Swinethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE028">
        <xs:annotation>
          <xs:documentation>Ewerby and Evedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE029">
        <xs:annotation>
          <xs:documentation>Great Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE030">
        <xs:annotation>
          <xs:documentation>Harmston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE031">
        <xs:annotation>
          <xs:documentation>Heckington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE032">
        <xs:annotation>
          <xs:documentation>Heighington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE033">
        <xs:annotation>
          <xs:documentation>Helpringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE034">
        <xs:annotation>
          <xs:documentation>Kirkby la Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE035">
        <xs:annotation>
          <xs:documentation>Leadenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE036">
        <xs:annotation>
          <xs:documentation>Leasingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE037">
        <xs:annotation>
          <xs:documentation>Little Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE038">
        <xs:annotation>
          <xs:documentation>Martin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE039">
        <xs:annotation>
          <xs:documentation>Metheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE040">
        <xs:annotation>
          <xs:documentation>Navenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE041">
        <xs:annotation>
          <xs:documentation>Newton and Haceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE042">
        <xs:annotation>
          <xs:documentation>Nocton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE043">
        <xs:annotation>
          <xs:documentation>North Hykeham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE044">
        <xs:annotation>
          <xs:documentation>North Kyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE045">
        <xs:annotation>
          <xs:documentation>North Rauceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE046">
        <xs:annotation>
          <xs:documentation>North Scarle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE047">
        <xs:annotation>
          <xs:documentation>Norton Disney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE048">
        <xs:annotation>
          <xs:documentation>Osbournby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE049">
        <xs:annotation>
          <xs:documentation>Potter Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE050">
        <xs:annotation>
          <xs:documentation>Rowston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE051">
        <xs:annotation>
          <xs:documentation>Roxholm</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE052">
        <xs:annotation>
          <xs:documentation>Ruskington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE053">
        <xs:annotation>
          <xs:documentation>Scopwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE054">
        <xs:annotation>
          <xs:documentation>Scredington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE055">
        <xs:annotation>
          <xs:documentation>Silk Willoughby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE056">
        <xs:annotation>
          <xs:documentation>Skellingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE057">
        <xs:annotation>
          <xs:documentation>Sleaford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE058">
        <xs:annotation>
          <xs:documentation>South Kyme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE059">
        <xs:annotation>
          <xs:documentation>South Rauceby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE060">
        <xs:annotation>
          <xs:documentation>Stapleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE061">
        <xs:annotation>
          <xs:documentation>Swaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE062">
        <xs:annotation>
          <xs:documentation>Swinderby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE063">
        <xs:annotation>
          <xs:documentation>Temple Bruer with Temple High Grange</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE064">
        <xs:annotation>
          <xs:documentation>Thorpe on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE065">
        <xs:annotation>
          <xs:documentation>Threekingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE066">
        <xs:annotation>
          <xs:documentation>Thurlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE067">
        <xs:annotation>
          <xs:documentation>Timberland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE068">
        <xs:annotation>
          <xs:documentation>Waddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE069">
        <xs:annotation>
          <xs:documentation>Walcot near Folkingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE070">
        <xs:annotation>
          <xs:documentation>Walcott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE071">
        <xs:annotation>
          <xs:documentation>Washingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE072">
        <xs:annotation>
          <xs:documentation>Welbourn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE073">
        <xs:annotation>
          <xs:documentation>Wellingore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE074">
        <xs:annotation>
          <xs:documentation>Wilsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UE075">
        <xs:annotation>
          <xs:documentation>Witham St. Hughs</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF001">
        <xs:annotation>
          <xs:documentation>Cowbit</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF002">
        <xs:annotation>
          <xs:documentation>Crowland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF003">
        <xs:annotation>
          <xs:documentation>Deeping St Nicholas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF004">
        <xs:annotation>
          <xs:documentation>Donington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF005">
        <xs:annotation>
          <xs:documentation>Fleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF006">
        <xs:annotation>
          <xs:documentation>Gedney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF007">
        <xs:annotation>
          <xs:documentation>Gedney Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF008">
        <xs:annotation>
          <xs:documentation>Gosberton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF009">
        <xs:annotation>
          <xs:documentation>Holbeach</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF010">
        <xs:annotation>
          <xs:documentation>Little Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF011">
        <xs:annotation>
          <xs:documentation>Long Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF012">
        <xs:annotation>
          <xs:documentation>Lutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF013">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF014">
        <xs:annotation>
          <xs:documentation>Pinchbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF015">
        <xs:annotation>
          <xs:documentation>Quadring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF016">
        <xs:annotation>
          <xs:documentation>Surfleet</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF017">
        <xs:annotation>
          <xs:documentation>Sutton Bridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF018">
        <xs:annotation>
          <xs:documentation>Sutton St Edmund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF019">
        <xs:annotation>
          <xs:documentation>Sutton St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF020">
        <xs:annotation>
          <xs:documentation>Tydd St Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF021">
        <xs:annotation>
          <xs:documentation>Weston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UF022">
        <xs:annotation>
          <xs:documentation>Whaplode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG001">
        <xs:annotation>
          <xs:documentation>Allington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG002">
        <xs:annotation>
          <xs:documentation>Ancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG003">
        <xs:annotation>
          <xs:documentation>Aslackby and Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG004">
        <xs:annotation>
          <xs:documentation>Barholm and Stowe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG005">
        <xs:annotation>
          <xs:documentation>Barkston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG006">
        <xs:annotation>
          <xs:documentation>Barrowby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG007">
        <xs:annotation>
          <xs:documentation>Baston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG008">
        <xs:annotation>
          <xs:documentation>Belton and Manthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG009">
        <xs:annotation>
          <xs:documentation>Billingborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG010">
        <xs:annotation>
          <xs:documentation>Bitchfield and Bassingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG011">
        <xs:annotation>
          <xs:documentation>Boothby Pagnell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG012">
        <xs:annotation>
          <xs:documentation>Bourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG013">
        <xs:annotation>
          <xs:documentation>Braceborough and Wilsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG014">
        <xs:annotation>
          <xs:documentation>Braceby and Sapperton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG015">
        <xs:annotation>
          <xs:documentation>Burton Coggles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG016">
        <xs:annotation>
          <xs:documentation>Careby Aunby and Holywell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG017">
        <xs:annotation>
          <xs:documentation>Carlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG018">
        <xs:annotation>
          <xs:documentation>Carlton Scroop</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG019">
        <xs:annotation>
          <xs:documentation>Castle Bytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG020">
        <xs:annotation>
          <xs:documentation>Caythorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG021">
        <xs:annotation>
          <xs:documentation>Claypole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG022">
        <xs:annotation>
          <xs:documentation>Colsterworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG023">
        <xs:annotation>
          <xs:documentation>Corby Glen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG024">
        <xs:annotation>
          <xs:documentation>Counthorpe and Creeton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG025">
        <xs:annotation>
          <xs:documentation>Deeping St James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG026">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG027">
        <xs:annotation>
          <xs:documentation>Dowsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG028">
        <xs:annotation>
          <xs:documentation>Dunsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG029">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG030">
        <xs:annotation>
          <xs:documentation>Edenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG031">
        <xs:annotation>
          <xs:documentation>Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG032">
        <xs:annotation>
          <xs:documentation>Folkingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG033">
        <xs:annotation>
          <xs:documentation>Foston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG034">
        <xs:annotation>
          <xs:documentation>Fulbeck</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG035">
        <xs:annotation>
          <xs:documentation>Great Gonerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG036">
        <xs:annotation>
          <xs:documentation>Great Ponton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG037">
        <xs:annotation>
          <xs:documentation>Greatford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG038">
        <xs:annotation>
          <xs:documentation>Gunby and Stainby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG039">
        <xs:annotation>
          <xs:documentation>Haconby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG040">
        <xs:annotation>
          <xs:documentation>Harlaxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG041">
        <xs:annotation>
          <xs:documentation>Heydour</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG042">
        <xs:annotation>
          <xs:documentation>Honington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG043">
        <xs:annotation>
          <xs:documentation>Horbling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG044">
        <xs:annotation>
          <xs:documentation>Hough-on-the-Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG045">
        <xs:annotation>
          <xs:documentation>Hougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG046">
        <xs:annotation>
          <xs:documentation>Ingoldsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG047">
        <xs:annotation>
          <xs:documentation>Irnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG048">
        <xs:annotation>
          <xs:documentation>Kirkby Underwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG049">
        <xs:annotation>
          <xs:documentation>Langtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG050">
        <xs:annotation>
          <xs:documentation>Lenton Keisby and Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG051">
        <xs:annotation>
          <xs:documentation>Little Bytham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG052">
        <xs:annotation>
          <xs:documentation>Little Ponton and Stroxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG053">
        <xs:annotation>
          <xs:documentation>Londonthorpe and Harrowby Without</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG054">
        <xs:annotation>
          <xs:documentation>Long Bennington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG055">
        <xs:annotation>
          <xs:documentation>Market Deeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG056">
        <xs:annotation>
          <xs:documentation>Marston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG057">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG058">
        <xs:annotation>
          <xs:documentation>Normanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG059">
        <xs:annotation>
          <xs:documentation>North Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG060">
        <xs:annotation>
          <xs:documentation>Old Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG061">
        <xs:annotation>
          <xs:documentation>Pickworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG062">
        <xs:annotation>
          <xs:documentation>Pointon and Sempringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG063">
        <xs:annotation>
          <xs:documentation>Rippingale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG064">
        <xs:annotation>
          <xs:documentation>Ropsley and Humby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG065">
        <xs:annotation>
          <xs:documentation>Sedgebrook</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG066">
        <xs:annotation>
          <xs:documentation>Skillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG067">
        <xs:annotation>
          <xs:documentation>South Witham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG068">
        <xs:annotation>
          <xs:documentation>Stamford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG069">
        <xs:annotation>
          <xs:documentation>Stoke Rochford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG070">
        <xs:annotation>
          <xs:documentation>Stubton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG071">
        <xs:annotation>
          <xs:documentation>Swayfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG072">
        <xs:annotation>
          <xs:documentation>Swinstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG073">
        <xs:annotation>
          <xs:documentation>Syston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG074">
        <xs:annotation>
          <xs:documentation>Tallington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG075">
        <xs:annotation>
          <xs:documentation>Thurlby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG076">
        <xs:annotation>
          <xs:documentation>Toft with Lound and Manthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG077">
        <xs:annotation>
          <xs:documentation>Uffington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG078">
        <xs:annotation>
          <xs:documentation>Welby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG079">
        <xs:annotation>
          <xs:documentation>West Deeping</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG080">
        <xs:annotation>
          <xs:documentation>Westborough and Dry Doddington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG081">
        <xs:annotation>
          <xs:documentation>Witham on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG082">
        <xs:annotation>
          <xs:documentation>Woolsthorpe By Belvoir</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UG083">
        <xs:annotation>
          <xs:documentation>Wyville cum Hungerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH001">
        <xs:annotation>
          <xs:documentation>Aisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH002">
        <xs:annotation>
          <xs:documentation>Apley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH003">
        <xs:annotation>
          <xs:documentation>Bardney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH004">
        <xs:annotation>
          <xs:documentation>Barlings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH005">
        <xs:annotation>
          <xs:documentation>Bigby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH006">
        <xs:annotation>
          <xs:documentation>Bishop Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH007">
        <xs:annotation>
          <xs:documentation>Blyborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH008">
        <xs:annotation>
          <xs:documentation>Blyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH009">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH010">
        <xs:annotation>
          <xs:documentation>Brattleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH011">
        <xs:annotation>
          <xs:documentation>Broadholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH012">
        <xs:annotation>
          <xs:documentation>Brocklesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH013">
        <xs:annotation>
          <xs:documentation>Broxholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH014">
        <xs:annotation>
          <xs:documentation>Bullington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH015">
        <xs:annotation>
          <xs:documentation>Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH016">
        <xs:annotation>
          <xs:documentation>Buslingthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH017">
        <xs:annotation>
          <xs:documentation>Cabourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH018">
        <xs:annotation>
          <xs:documentation>Caenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH019">
        <xs:annotation>
          <xs:documentation>Caistor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH020">
        <xs:annotation>
          <xs:documentation>Cammeringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH021">
        <xs:annotation>
          <xs:documentation>Cherry Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH022">
        <xs:annotation>
          <xs:documentation>Claxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH023">
        <xs:annotation>
          <xs:documentation>Cold Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH024">
        <xs:annotation>
          <xs:documentation>Corringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH025">
        <xs:annotation>
          <xs:documentation>Dunholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH026">
        <xs:annotation>
          <xs:documentation>East Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH027">
        <xs:annotation>
          <xs:documentation>East Stockwith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH028">
        <xs:annotation>
          <xs:documentation>Faldingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH029">
        <xs:annotation>
          <xs:documentation>Fenton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH030">
        <xs:annotation>
          <xs:documentation>Fillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH031">
        <xs:annotation>
          <xs:documentation>Fiskerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH032">
        <xs:annotation>
          <xs:documentation>Friesthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH033">
        <xs:annotation>
          <xs:documentation>Fulnetby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH034">
        <xs:annotation>
          <xs:documentation>Gate Burton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH035">
        <xs:annotation>
          <xs:documentation>Glentham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH036">
        <xs:annotation>
          <xs:documentation>Glentworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH037">
        <xs:annotation>
          <xs:documentation>Goltho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH038">
        <xs:annotation>
          <xs:documentation>Grange de Lings</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH039">
        <xs:annotation>
          <xs:documentation>Grasby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH040">
        <xs:annotation>
          <xs:documentation>Grayingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH041">
        <xs:annotation>
          <xs:documentation>Great Limber</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH042">
        <xs:annotation>
          <xs:documentation>Greetwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH043">
        <xs:annotation>
          <xs:documentation>Hackthorn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH044">
        <xs:annotation>
          <xs:documentation>Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH045">
        <xs:annotation>
          <xs:documentation>Harpswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH046">
        <xs:annotation>
          <xs:documentation>Heapham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH047">
        <xs:annotation>
          <xs:documentation>Hemswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH048">
        <xs:annotation>
          <xs:documentation>Holton cum Beckering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH049">
        <xs:annotation>
          <xs:documentation>Holton le Moor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH050">
        <xs:annotation>
          <xs:documentation>Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH051">
        <xs:annotation>
          <xs:documentation>Keelby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH052">
        <xs:annotation>
          <xs:documentation>Kettlethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH053">
        <xs:annotation>
          <xs:documentation>Kexby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH054">
        <xs:annotation>
          <xs:documentation>Kirmond le Mire</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH055">
        <xs:annotation>
          <xs:documentation>Knaith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH056">
        <xs:annotation>
          <xs:documentation>Laughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH057">
        <xs:annotation>
          <xs:documentation>Lea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH058">
        <xs:annotation>
          <xs:documentation>Legsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH059">
        <xs:annotation>
          <xs:documentation>Linwood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH060">
        <xs:annotation>
          <xs:documentation>Lissington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH061">
        <xs:annotation>
          <xs:documentation>Market Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH062">
        <xs:annotation>
          <xs:documentation>Marton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH063">
        <xs:annotation>
          <xs:documentation>Middle Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH064">
        <xs:annotation>
          <xs:documentation>Morton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH065">
        <xs:annotation>
          <xs:documentation>Nettleham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH066">
        <xs:annotation>
          <xs:documentation>Nettleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH067">
        <xs:annotation>
          <xs:documentation>Newball</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH068">
        <xs:annotation>
          <xs:documentation>Newton on Trent</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH069">
        <xs:annotation>
          <xs:documentation>Normanby by Spital</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH070">
        <xs:annotation>
          <xs:documentation>Normanby le Wold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH071">
        <xs:annotation>
          <xs:documentation>North Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH072">
        <xs:annotation>
          <xs:documentation>North Kelsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH073">
        <xs:annotation>
          <xs:documentation>North Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH074">
        <xs:annotation>
          <xs:documentation>Northorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH075">
        <xs:annotation>
          <xs:documentation>Osgodby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH076">
        <xs:annotation>
          <xs:documentation>Owersby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH077">
        <xs:annotation>
          <xs:documentation>Owmby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH078">
        <xs:annotation>
          <xs:documentation>Pilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH079">
        <xs:annotation>
          <xs:documentation>Rand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH080">
        <xs:annotation>
          <xs:documentation>Reepham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH081">
        <xs:annotation>
          <xs:documentation>Riby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH082">
        <xs:annotation>
          <xs:documentation>Riseholme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH083">
        <xs:annotation>
          <xs:documentation>Rothwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH084">
        <xs:annotation>
          <xs:documentation>Saxby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH085">
        <xs:annotation>
          <xs:documentation>Saxilby with Ingleby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH086">
        <xs:annotation>
          <xs:documentation>Scampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH087">
        <xs:annotation>
          <xs:documentation>Scothern</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH088">
        <xs:annotation>
          <xs:documentation>Scotter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH089">
        <xs:annotation>
          <xs:documentation>Scotton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH090">
        <xs:annotation>
          <xs:documentation>Searby cum Owmby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH091">
        <xs:annotation>
          <xs:documentation>Sixhills</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH092">
        <xs:annotation>
          <xs:documentation>Snarford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH093">
        <xs:annotation>
          <xs:documentation>Snelland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH094">
        <xs:annotation>
          <xs:documentation>Snitterby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH095">
        <xs:annotation>
          <xs:documentation>Somerby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH096">
        <xs:annotation>
          <xs:documentation>South Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH097">
        <xs:annotation>
          <xs:documentation>South Kelsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH098">
        <xs:annotation>
          <xs:documentation>Spridlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH099">
        <xs:annotation>
          <xs:documentation>Springthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH100">
        <xs:annotation>
          <xs:documentation>Stainfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH101">
        <xs:annotation>
          <xs:documentation>Stainton by Langworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH102">
        <xs:annotation>
          <xs:documentation>Stainton le Vale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH103">
        <xs:annotation>
          <xs:documentation>Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH104">
        <xs:annotation>
          <xs:documentation>Sturton by Stow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH105">
        <xs:annotation>
          <xs:documentation>Sudbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH106">
        <xs:annotation>
          <xs:documentation>Swallow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH107">
        <xs:annotation>
          <xs:documentation>Swinhope</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH108">
        <xs:annotation>
          <xs:documentation>Tealby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH109">
        <xs:annotation>
          <xs:documentation>Thonock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH110">
        <xs:annotation>
          <xs:documentation>Thoresway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH111">
        <xs:annotation>
          <xs:documentation>Thorganby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH112">
        <xs:annotation>
          <xs:documentation>Thorpe in the Fallows</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH113">
        <xs:annotation>
          <xs:documentation>Toft Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH114">
        <xs:annotation>
          <xs:documentation>Torksey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH115">
        <xs:annotation>
          <xs:documentation>Upton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH116">
        <xs:annotation>
          <xs:documentation>Waddingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH117">
        <xs:annotation>
          <xs:documentation>Walesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH118">
        <xs:annotation>
          <xs:documentation>Walkerith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH119">
        <xs:annotation>
          <xs:documentation>Welton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH120">
        <xs:annotation>
          <xs:documentation>West Firsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH121">
        <xs:annotation>
          <xs:documentation>West Rasen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH122">
        <xs:annotation>
          <xs:documentation>Wickenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH123">
        <xs:annotation>
          <xs:documentation>Wildsworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH124">
        <xs:annotation>
          <xs:documentation>Willingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH125">
        <xs:annotation>
          <xs:documentation>Willoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH126">
        <xs:annotation>
          <xs:documentation>Gainsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH127">
        <xs:annotation>
          <xs:documentation>Hemswell Cliff</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="32UH128">
        <xs:annotation>
          <xs:documentation>Brookenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB001">
        <xs:annotation>
          <xs:documentation>Ashill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB002">
        <xs:annotation>
          <xs:documentation>Attleborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB003">
        <xs:annotation>
          <xs:documentation>Banham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB004">
        <xs:annotation>
          <xs:documentation>Bawdeswell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB005">
        <xs:annotation>
          <xs:documentation>Beachamwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB006">
        <xs:annotation>
          <xs:documentation>Beeston with Bittering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB007">
        <xs:annotation>
          <xs:documentation>Beetley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB008">
        <xs:annotation>
          <xs:documentation>Besthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB009">
        <xs:annotation>
          <xs:documentation>Billingford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB010">
        <xs:annotation>
          <xs:documentation>Bintree</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB011">
        <xs:annotation>
          <xs:documentation>Blo' Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB012">
        <xs:annotation>
          <xs:documentation>Bradenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB013">
        <xs:annotation>
          <xs:documentation>Brettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB014">
        <xs:annotation>
          <xs:documentation>Bridgham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB015">
        <xs:annotation>
          <xs:documentation>Brisley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB016">
        <xs:annotation>
          <xs:documentation>Bylaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB017">
        <xs:annotation>
          <xs:documentation>Carbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB018">
        <xs:annotation>
          <xs:documentation>Caston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB019">
        <xs:annotation>
          <xs:documentation>Cockley Cley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB020">
        <xs:annotation>
          <xs:documentation>Colkirk</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB021">
        <xs:annotation>
          <xs:documentation>Cranwich</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB022">
        <xs:annotation>
          <xs:documentation>Cranworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB023">
        <xs:annotation>
          <xs:documentation>Croxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB024">
        <xs:annotation>
          <xs:documentation>Didlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB025">
        <xs:annotation>
          <xs:documentation>Dereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB026">
        <xs:annotation>
          <xs:documentation>East Tuddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB027">
        <xs:annotation>
          <xs:documentation>Elsing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB028">
        <xs:annotation>
          <xs:documentation>Foulden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB029">
        <xs:annotation>
          <xs:documentation>Foxley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB030">
        <xs:annotation>
          <xs:documentation>Fransham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB031">
        <xs:annotation>
          <xs:documentation>Garboldisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB032">
        <xs:annotation>
          <xs:documentation>Garvestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB033">
        <xs:annotation>
          <xs:documentation>Gateley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB034">
        <xs:annotation>
          <xs:documentation>Gooderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB035">
        <xs:annotation>
          <xs:documentation>Great Cressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB036">
        <xs:annotation>
          <xs:documentation>Great Dunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB037">
        <xs:annotation>
          <xs:documentation>Great Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB038">
        <xs:annotation>
          <xs:documentation>Gressenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB039">
        <xs:annotation>
          <xs:documentation>Griston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB040">
        <xs:annotation>
          <xs:documentation>Guist</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB041">
        <xs:annotation>
          <xs:documentation>Hardingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB042">
        <xs:annotation>
          <xs:documentation>Harling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB043">
        <xs:annotation>
          <xs:documentation>Hilborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB044">
        <xs:annotation>
          <xs:documentation>Hockering</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB045">
        <xs:annotation>
          <xs:documentation>Hockham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB046">
        <xs:annotation>
          <xs:documentation>Hoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB047">
        <xs:annotation>
          <xs:documentation>Holme Hale</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB048">
        <xs:annotation>
          <xs:documentation>Horningtoft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB049">
        <xs:annotation>
          <xs:documentation>Ickburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB050">
        <xs:annotation>
          <xs:documentation>Kempstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB051">
        <xs:annotation>
          <xs:documentation>Kenninghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB052">
        <xs:annotation>
          <xs:documentation>Kilverstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB053">
        <xs:annotation>
          <xs:documentation>Lexham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB054">
        <xs:annotation>
          <xs:documentation>Litcham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB055">
        <xs:annotation>
          <xs:documentation>Little Cressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB056">
        <xs:annotation>
          <xs:documentation>Little Dunham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB057">
        <xs:annotation>
          <xs:documentation>Little Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB058">
        <xs:annotation>
          <xs:documentation>Longham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB059">
        <xs:annotation>
          <xs:documentation>Lynford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB060">
        <xs:annotation>
          <xs:documentation>Lyng</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB061">
        <xs:annotation>
          <xs:documentation>Mattishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB062">
        <xs:annotation>
          <xs:documentation>Merton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB063">
        <xs:annotation>
          <xs:documentation>Mileham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB064">
        <xs:annotation>
          <xs:documentation>Mundford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB065">
        <xs:annotation>
          <xs:documentation>Narborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB066">
        <xs:annotation>
          <xs:documentation>Narford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB067">
        <xs:annotation>
          <xs:documentation>Necton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB068">
        <xs:annotation>
          <xs:documentation>New Buckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB069">
        <xs:annotation>
          <xs:documentation>Newton by Castle Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB070">
        <xs:annotation>
          <xs:documentation>North Elmham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB071">
        <xs:annotation>
          <xs:documentation>North Lopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB072">
        <xs:annotation>
          <xs:documentation>North Pickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB073">
        <xs:annotation>
          <xs:documentation>North Tuddenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB074">
        <xs:annotation>
          <xs:documentation>Old Buckenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB075">
        <xs:annotation>
          <xs:documentation>Ovington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB076">
        <xs:annotation>
          <xs:documentation>Oxborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB077">
        <xs:annotation>
          <xs:documentation>Quidenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB078">
        <xs:annotation>
          <xs:documentation>Riddlesworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB079">
        <xs:annotation>
          <xs:documentation>Rocklands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB080">
        <xs:annotation>
          <xs:documentation>Roudham and Larling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB081">
        <xs:annotation>
          <xs:documentation>Rougham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB082">
        <xs:annotation>
          <xs:documentation>Saham Toney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB083">
        <xs:annotation>
          <xs:documentation>Scarning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB084">
        <xs:annotation>
          <xs:documentation>Scoulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB085">
        <xs:annotation>
          <xs:documentation>Shipdham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB086">
        <xs:annotation>
          <xs:documentation>Shropham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB087">
        <xs:annotation>
          <xs:documentation>Snetterton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB088">
        <xs:annotation>
          <xs:documentation>South Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB089">
        <xs:annotation>
          <xs:documentation>South Lopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB090">
        <xs:annotation>
          <xs:documentation>South Pickenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB091">
        <xs:annotation>
          <xs:documentation>Sparham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB092">
        <xs:annotation>
          <xs:documentation>Sporle with Palgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB093">
        <xs:annotation>
          <xs:documentation>Stanfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB094">
        <xs:annotation>
          <xs:documentation>Stanford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB095">
        <xs:annotation>
          <xs:documentation>Stow Bedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB096">
        <xs:annotation>
          <xs:documentation>Sturston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB097">
        <xs:annotation>
          <xs:documentation>Swaffham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB098">
        <xs:annotation>
          <xs:documentation>Swanton Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB099">
        <xs:annotation>
          <xs:documentation>Thetford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB100">
        <xs:annotation>
          <xs:documentation>Thompson</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB101">
        <xs:annotation>
          <xs:documentation>Tittleshall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB102">
        <xs:annotation>
          <xs:documentation>Tottington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB103">
        <xs:annotation>
          <xs:documentation>Twyford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB104">
        <xs:annotation>
          <xs:documentation>Watton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB105">
        <xs:annotation>
          <xs:documentation>Weasenham All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB106">
        <xs:annotation>
          <xs:documentation>Weasenham St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB107">
        <xs:annotation>
          <xs:documentation>Weeting-with-Broomhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB108">
        <xs:annotation>
          <xs:documentation>Wellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB109">
        <xs:annotation>
          <xs:documentation>Wendling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB110">
        <xs:annotation>
          <xs:documentation>Whinburgh and Westfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB111">
        <xs:annotation>
          <xs:documentation>Whissonsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB112">
        <xs:annotation>
          <xs:documentation>Wretham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UB113">
        <xs:annotation>
          <xs:documentation>Yaxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC001">
        <xs:annotation>
          <xs:documentation>Acle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC002">
        <xs:annotation>
          <xs:documentation>Alderford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC003">
        <xs:annotation>
          <xs:documentation>Attlebridge</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC004">
        <xs:annotation>
          <xs:documentation>Aylsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC005">
        <xs:annotation>
          <xs:documentation>Beeston St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC006">
        <xs:annotation>
          <xs:documentation>Beighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC007">
        <xs:annotation>
          <xs:documentation>Belaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC008">
        <xs:annotation>
          <xs:documentation>Blickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC009">
        <xs:annotation>
          <xs:documentation>Blofield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC010">
        <xs:annotation>
          <xs:documentation>Booton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC011">
        <xs:annotation>
          <xs:documentation>Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC012">
        <xs:annotation>
          <xs:documentation>Brandiston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC013">
        <xs:annotation>
          <xs:documentation>Brundall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC014">
        <xs:annotation>
          <xs:documentation>Burgh and Tuttington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC015">
        <xs:annotation>
          <xs:documentation>Buxton with Lammas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC016">
        <xs:annotation>
          <xs:documentation>Cantley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC017">
        <xs:annotation>
          <xs:documentation>Cawston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC018">
        <xs:annotation>
          <xs:documentation>Coltishall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC019">
        <xs:annotation>
          <xs:documentation>Crostwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC020">
        <xs:annotation>
          <xs:documentation>Drayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC021">
        <xs:annotation>
          <xs:documentation>Felthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC022">
        <xs:annotation>
          <xs:documentation>Foulsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC023">
        <xs:annotation>
          <xs:documentation>Freethorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC024">
        <xs:annotation>
          <xs:documentation>Frettenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC025">
        <xs:annotation>
          <xs:documentation>Great and Little Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC026">
        <xs:annotation>
          <xs:documentation>Great Witchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC027">
        <xs:annotation>
          <xs:documentation>Guestwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC028">
        <xs:annotation>
          <xs:documentation>Hainford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC029">
        <xs:annotation>
          <xs:documentation>Halvergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC030">
        <xs:annotation>
          <xs:documentation>Haveringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC031">
        <xs:annotation>
          <xs:documentation>Hellesdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC032">
        <xs:annotation>
          <xs:documentation>Hemblington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC033">
        <xs:annotation>
          <xs:documentation>Hevingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC034">
        <xs:annotation>
          <xs:documentation>Heydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC035">
        <xs:annotation>
          <xs:documentation>Honingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC036">
        <xs:annotation>
          <xs:documentation>Horsford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC037">
        <xs:annotation>
          <xs:documentation>Horsham St. Faith and Newton St. Faith</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC038">
        <xs:annotation>
          <xs:documentation>Horstead with Stanninghall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC039">
        <xs:annotation>
          <xs:documentation>Lingwood and Burlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC040">
        <xs:annotation>
          <xs:documentation>Little Witchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC041">
        <xs:annotation>
          <xs:documentation>Marsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC042">
        <xs:annotation>
          <xs:documentation>Morton on the Hill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC043">
        <xs:annotation>
          <xs:documentation>Old Catton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC044">
        <xs:annotation>
          <xs:documentation>Oulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC045">
        <xs:annotation>
          <xs:documentation>Postwick with Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC046">
        <xs:annotation>
          <xs:documentation>Rackheath</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC047">
        <xs:annotation>
          <xs:documentation>Reedham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC048">
        <xs:annotation>
          <xs:documentation>Reepham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC049">
        <xs:annotation>
          <xs:documentation>Ringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC050">
        <xs:annotation>
          <xs:documentation>Salhouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC051">
        <xs:annotation>
          <xs:documentation>Salle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC052">
        <xs:annotation>
          <xs:documentation>South Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC053">
        <xs:annotation>
          <xs:documentation>Spixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC054">
        <xs:annotation>
          <xs:documentation>Sprowston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC055">
        <xs:annotation>
          <xs:documentation>Stratton Strawless</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC056">
        <xs:annotation>
          <xs:documentation>Strumpshaw</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC057">
        <xs:annotation>
          <xs:documentation>Swannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC058">
        <xs:annotation>
          <xs:documentation>Taverham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC059">
        <xs:annotation>
          <xs:documentation>Themelthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC060">
        <xs:annotation>
          <xs:documentation>Thorpe St. Andrew</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC061">
        <xs:annotation>
          <xs:documentation>Upton with Fishley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC062">
        <xs:annotation>
          <xs:documentation>Weston Longville</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC063">
        <xs:annotation>
          <xs:documentation>Woodbastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC064">
        <xs:annotation>
          <xs:documentation>Wood Dalling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UC065">
        <xs:annotation>
          <xs:documentation>Wroxham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD001">
        <xs:annotation>
          <xs:documentation>Ashby with Oby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD002">
        <xs:annotation>
          <xs:documentation>Belton with Browston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD003">
        <xs:annotation>
          <xs:documentation>Bradwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD004">
        <xs:annotation>
          <xs:documentation>Burgh Castle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD005">
        <xs:annotation>
          <xs:documentation>Caister-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD006">
        <xs:annotation>
          <xs:documentation>Filby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD007">
        <xs:annotation>
          <xs:documentation>Fleggburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD008">
        <xs:annotation>
          <xs:documentation>Fritton and St. Olaves</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD009">
        <xs:annotation>
          <xs:documentation>Hemsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD010">
        <xs:annotation>
          <xs:documentation>Hopton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD011">
        <xs:annotation>
          <xs:documentation>Martham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD012">
        <xs:annotation>
          <xs:documentation>Mautby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD013">
        <xs:annotation>
          <xs:documentation>Ormesby St. Margaret with Scratby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD014">
        <xs:annotation>
          <xs:documentation>Ormesby St. Michael</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD015">
        <xs:annotation>
          <xs:documentation>Repps with Bastwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD016">
        <xs:annotation>
          <xs:documentation>Rollesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD017">
        <xs:annotation>
          <xs:documentation>Somerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD018">
        <xs:annotation>
          <xs:documentation>Stokesby with Herringby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD019">
        <xs:annotation>
          <xs:documentation>Thurne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD020">
        <xs:annotation>
          <xs:documentation>West Caister</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UD021">
        <xs:annotation>
          <xs:documentation>Winterton-on-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE001">
        <xs:annotation>
          <xs:documentation>Anmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE002">
        <xs:annotation>
          <xs:documentation>Bagthorpe with Barmer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE003">
        <xs:annotation>
          <xs:documentation>Barton Bendish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE004">
        <xs:annotation>
          <xs:documentation>Barwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE005">
        <xs:annotation>
          <xs:documentation>Bawsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE006">
        <xs:annotation>
          <xs:documentation>Bircham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE007">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE008">
        <xs:annotation>
          <xs:documentation>Brancaster</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE009">
        <xs:annotation>
          <xs:documentation>Burnham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE010">
        <xs:annotation>
          <xs:documentation>Burnham Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE011">
        <xs:annotation>
          <xs:documentation>Burnham Overy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE012">
        <xs:annotation>
          <xs:documentation>Burnham Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE013">
        <xs:annotation>
          <xs:documentation>Castle Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE014">
        <xs:annotation>
          <xs:documentation>Castle Rising</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE015">
        <xs:annotation>
          <xs:documentation>Choseley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE016">
        <xs:annotation>
          <xs:documentation>Clenchwarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE017">
        <xs:annotation>
          <xs:documentation>Congham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE018">
        <xs:annotation>
          <xs:documentation>Crimplesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE019">
        <xs:annotation>
          <xs:documentation>Denver</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE020">
        <xs:annotation>
          <xs:documentation>Dersingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE021">
        <xs:annotation>
          <xs:documentation>Docking</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE022">
        <xs:annotation>
          <xs:documentation>Downham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE023">
        <xs:annotation>
          <xs:documentation>Downham West</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE024">
        <xs:annotation>
          <xs:documentation>East Rudham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE025">
        <xs:annotation>
          <xs:documentation>East Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE026">
        <xs:annotation>
          <xs:documentation>East Winch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE027">
        <xs:annotation>
          <xs:documentation>Emneth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE028">
        <xs:annotation>
          <xs:documentation>Feltwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE029">
        <xs:annotation>
          <xs:documentation>Fincham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE030">
        <xs:annotation>
          <xs:documentation>Flitcham with Appleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE031">
        <xs:annotation>
          <xs:documentation>Fordham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE032">
        <xs:annotation>
          <xs:documentation>Fring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE033">
        <xs:annotation>
          <xs:documentation>Gayton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE034">
        <xs:annotation>
          <xs:documentation>Great Massingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE035">
        <xs:annotation>
          <xs:documentation>Grimston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE036">
        <xs:annotation>
          <xs:documentation>Harpley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE037">
        <xs:annotation>
          <xs:documentation>Heacham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE038">
        <xs:annotation>
          <xs:documentation>Hilgay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE039">
        <xs:annotation>
          <xs:documentation>Hillington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE040">
        <xs:annotation>
          <xs:documentation>Hockwold cum Wilton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE041">
        <xs:annotation>
          <xs:documentation>Holme next the Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE042">
        <xs:annotation>
          <xs:documentation>Houghton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE043">
        <xs:annotation>
          <xs:documentation>Hunstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE044">
        <xs:annotation>
          <xs:documentation>Ingoldisthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE045">
        <xs:annotation>
          <xs:documentation>Leziate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE046">
        <xs:annotation>
          <xs:documentation>Little Massingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE047">
        <xs:annotation>
          <xs:documentation>Marham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE048">
        <xs:annotation>
          <xs:documentation>Marshland St. James</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE049">
        <xs:annotation>
          <xs:documentation>Methwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE050">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE051">
        <xs:annotation>
          <xs:documentation>Nordelph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE052">
        <xs:annotation>
          <xs:documentation>North Creake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE053">
        <xs:annotation>
          <xs:documentation>North Runcton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE054">
        <xs:annotation>
          <xs:documentation>Northwold</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE055">
        <xs:annotation>
          <xs:documentation>North Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE056">
        <xs:annotation>
          <xs:documentation>Old Hunstanton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE057">
        <xs:annotation>
          <xs:documentation>Outwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE058">
        <xs:annotation>
          <xs:documentation>Pentney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE059">
        <xs:annotation>
          <xs:documentation>Ringstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE060">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE061">
        <xs:annotation>
          <xs:documentation>Runcton Holme</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE062">
        <xs:annotation>
          <xs:documentation>Ryston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE063">
        <xs:annotation>
          <xs:documentation>Sandringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE064">
        <xs:annotation>
          <xs:documentation>Sedgeford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE065">
        <xs:annotation>
          <xs:documentation>Shernborne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE066">
        <xs:annotation>
          <xs:documentation>Shouldham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE067">
        <xs:annotation>
          <xs:documentation>Shouldham Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE068">
        <xs:annotation>
          <xs:documentation>Snettisham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE069">
        <xs:annotation>
          <xs:documentation>South Creake</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE070">
        <xs:annotation>
          <xs:documentation>Southery</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE071">
        <xs:annotation>
          <xs:documentation>South Wootton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE072">
        <xs:annotation>
          <xs:documentation>Stanhoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE073">
        <xs:annotation>
          <xs:documentation>Stoke Ferry</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE074">
        <xs:annotation>
          <xs:documentation>Stow Bardolph</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE075">
        <xs:annotation>
          <xs:documentation>Stradsett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE076">
        <xs:annotation>
          <xs:documentation>Syderstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE077">
        <xs:annotation>
          <xs:documentation>Terrington St. Clement</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE078">
        <xs:annotation>
          <xs:documentation>Terrington St. John</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE079">
        <xs:annotation>
          <xs:documentation>Thornham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE080">
        <xs:annotation>
          <xs:documentation>Tilney All Saints</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE081">
        <xs:annotation>
          <xs:documentation>Tilney St. Lawrence</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE082">
        <xs:annotation>
          <xs:documentation>Titchwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE083">
        <xs:annotation>
          <xs:documentation>Tottenhill</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE084">
        <xs:annotation>
          <xs:documentation>Upwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE085">
        <xs:annotation>
          <xs:documentation>Walpole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE086">
        <xs:annotation>
          <xs:documentation>Walpole Cross Keys</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE087">
        <xs:annotation>
          <xs:documentation>Walpole Highway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE088">
        <xs:annotation>
          <xs:documentation>Walsoken</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE089">
        <xs:annotation>
          <xs:documentation>Watlington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE090">
        <xs:annotation>
          <xs:documentation>Welney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE091">
        <xs:annotation>
          <xs:documentation>Wereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE092">
        <xs:annotation>
          <xs:documentation>West Acre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE093">
        <xs:annotation>
          <xs:documentation>West Dereham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE094">
        <xs:annotation>
          <xs:documentation>West Rudham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE095">
        <xs:annotation>
          <xs:documentation>West Walton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE096">
        <xs:annotation>
          <xs:documentation>West Winch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE097">
        <xs:annotation>
          <xs:documentation>Wiggenhall St. Germans</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE098">
        <xs:annotation>
          <xs:documentation>Wiggenhall St. Mary Magdalen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE099">
        <xs:annotation>
          <xs:documentation>Wimbotsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE100">
        <xs:annotation>
          <xs:documentation>Wormegay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UE101">
        <xs:annotation>
          <xs:documentation>Wretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF001">
        <xs:annotation>
          <xs:documentation>Alby with Thwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF002">
        <xs:annotation>
          <xs:documentation>Aldborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF003">
        <xs:annotation>
          <xs:documentation>Antingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF004">
        <xs:annotation>
          <xs:documentation>Ashmanhaugh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF005">
        <xs:annotation>
          <xs:documentation>Aylmerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF006">
        <xs:annotation>
          <xs:documentation>Baconsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF007">
        <xs:annotation>
          <xs:documentation>Bacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF008">
        <xs:annotation>
          <xs:documentation>Barsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF009">
        <xs:annotation>
          <xs:documentation>Barton Turf</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF010">
        <xs:annotation>
          <xs:documentation>Beeston Regis</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF011">
        <xs:annotation>
          <xs:documentation>Binham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF012">
        <xs:annotation>
          <xs:documentation>Blakeney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF013">
        <xs:annotation>
          <xs:documentation>Bodham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF014">
        <xs:annotation>
          <xs:documentation>Briningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF015">
        <xs:annotation>
          <xs:documentation>Brinton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF016">
        <xs:annotation>
          <xs:documentation>Briston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF017">
        <xs:annotation>
          <xs:documentation>Brumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF018">
        <xs:annotation>
          <xs:documentation>Catfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF019">
        <xs:annotation>
          <xs:documentation>Cley Next The Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF020">
        <xs:annotation>
          <xs:documentation>Colby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF021">
        <xs:annotation>
          <xs:documentation>Corpusty</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF022">
        <xs:annotation>
          <xs:documentation>Cromer</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF023">
        <xs:annotation>
          <xs:documentation>Dilham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF024">
        <xs:annotation>
          <xs:documentation>Dunton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF025">
        <xs:annotation>
          <xs:documentation>East Beckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF026">
        <xs:annotation>
          <xs:documentation>East Ruston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF027">
        <xs:annotation>
          <xs:documentation>Edgefield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF028">
        <xs:annotation>
          <xs:documentation>Erpingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF029">
        <xs:annotation>
          <xs:documentation>Fakenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF030">
        <xs:annotation>
          <xs:documentation>Felbrigg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF031">
        <xs:annotation>
          <xs:documentation>Felmingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF032">
        <xs:annotation>
          <xs:documentation>Field Dalling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF033">
        <xs:annotation>
          <xs:documentation>Fulmodeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF034">
        <xs:annotation>
          <xs:documentation>Gimingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF035">
        <xs:annotation>
          <xs:documentation>Great Snoring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF036">
        <xs:annotation>
          <xs:documentation>Gresham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF037">
        <xs:annotation>
          <xs:documentation>Gunthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF038">
        <xs:annotation>
          <xs:documentation>Hanworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF039">
        <xs:annotation>
          <xs:documentation>Happisburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF040">
        <xs:annotation>
          <xs:documentation>Helhoughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF041">
        <xs:annotation>
          <xs:documentation>Hempstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF042">
        <xs:annotation>
          <xs:documentation>Hempton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF043">
        <xs:annotation>
          <xs:documentation>Hickling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF044">
        <xs:annotation>
          <xs:documentation>High Kelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF045">
        <xs:annotation>
          <xs:documentation>Hindolveston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF046">
        <xs:annotation>
          <xs:documentation>Hindringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF047">
        <xs:annotation>
          <xs:documentation>Holkham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF048">
        <xs:annotation>
          <xs:documentation>Holt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF049">
        <xs:annotation>
          <xs:documentation>Honing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF050">
        <xs:annotation>
          <xs:documentation>Horning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF051">
        <xs:annotation>
          <xs:documentation>Horsey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF052">
        <xs:annotation>
          <xs:documentation>Hoveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF053">
        <xs:annotation>
          <xs:documentation>Ingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF054">
        <xs:annotation>
          <xs:documentation>Ingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF055">
        <xs:annotation>
          <xs:documentation>Itteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF056">
        <xs:annotation>
          <xs:documentation>Kelling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF057">
        <xs:annotation>
          <xs:documentation>Kettlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF058">
        <xs:annotation>
          <xs:documentation>Knapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF059">
        <xs:annotation>
          <xs:documentation>Langham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF060">
        <xs:annotation>
          <xs:documentation>Lessingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF061">
        <xs:annotation>
          <xs:documentation>Letheringsett with Glandford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF062">
        <xs:annotation>
          <xs:documentation>Little Barningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF063">
        <xs:annotation>
          <xs:documentation>Little Snoring</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF064">
        <xs:annotation>
          <xs:documentation>Ludham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF065">
        <xs:annotation>
          <xs:documentation>Matlask</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF066">
        <xs:annotation>
          <xs:documentation>Melton Constable</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF067">
        <xs:annotation>
          <xs:documentation>Morston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF068">
        <xs:annotation>
          <xs:documentation>Mundesley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF069">
        <xs:annotation>
          <xs:documentation>Neatishead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF070">
        <xs:annotation>
          <xs:documentation>Northrepps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF071">
        <xs:annotation>
          <xs:documentation>North Walsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF072">
        <xs:annotation>
          <xs:documentation>Overstrand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF073">
        <xs:annotation>
          <xs:documentation>Paston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF074">
        <xs:annotation>
          <xs:documentation>Plumstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF075">
        <xs:annotation>
          <xs:documentation>Potter Heigham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF076">
        <xs:annotation>
          <xs:documentation>Pudding Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF077">
        <xs:annotation>
          <xs:documentation>Raynham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF078">
        <xs:annotation>
          <xs:documentation>Roughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF079">
        <xs:annotation>
          <xs:documentation>Runton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF080">
        <xs:annotation>
          <xs:documentation>Ryburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF081">
        <xs:annotation>
          <xs:documentation>Salthouse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF082">
        <xs:annotation>
          <xs:documentation>Scottow</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF083">
        <xs:annotation>
          <xs:documentation>Sculthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF084">
        <xs:annotation>
          <xs:documentation>Sea Palling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF085">
        <xs:annotation>
          <xs:documentation>Sheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF086">
        <xs:annotation>
          <xs:documentation>Sidestrand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF087">
        <xs:annotation>
          <xs:documentation>Skeyton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF088">
        <xs:annotation>
          <xs:documentation>Sloley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF089">
        <xs:annotation>
          <xs:documentation>Smallburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF090">
        <xs:annotation>
          <xs:documentation>Southrepps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF091">
        <xs:annotation>
          <xs:documentation>Stalham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF092">
        <xs:annotation>
          <xs:documentation>Stibbard</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF093">
        <xs:annotation>
          <xs:documentation>Stiffkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF094">
        <xs:annotation>
          <xs:documentation>Stody</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF095">
        <xs:annotation>
          <xs:documentation>Suffield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF096">
        <xs:annotation>
          <xs:documentation>Sustead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF097">
        <xs:annotation>
          <xs:documentation>Sutton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF098">
        <xs:annotation>
          <xs:documentation>Swafield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF099">
        <xs:annotation>
          <xs:documentation>Swanton Abbott</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF100">
        <xs:annotation>
          <xs:documentation>Swanton Novers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF101">
        <xs:annotation>
          <xs:documentation>Tattersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF102">
        <xs:annotation>
          <xs:documentation>Thornage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF103">
        <xs:annotation>
          <xs:documentation>Thorpe Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF104">
        <xs:annotation>
          <xs:documentation>Thurning</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF105">
        <xs:annotation>
          <xs:documentation>Thursford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF106">
        <xs:annotation>
          <xs:documentation>Trimingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF107">
        <xs:annotation>
          <xs:documentation>Trunch</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF108">
        <xs:annotation>
          <xs:documentation>Tunstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF109">
        <xs:annotation>
          <xs:documentation>Upper Sheringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF110">
        <xs:annotation>
          <xs:documentation>Walsingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF111">
        <xs:annotation>
          <xs:documentation>Warham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF112">
        <xs:annotation>
          <xs:documentation>Wells-next-the-Sea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF113">
        <xs:annotation>
          <xs:documentation>West Beckham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF114">
        <xs:annotation>
          <xs:documentation>Westwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF115">
        <xs:annotation>
          <xs:documentation>Weybourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF116">
        <xs:annotation>
          <xs:documentation>Wickmere</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF117">
        <xs:annotation>
          <xs:documentation>Wighton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF118">
        <xs:annotation>
          <xs:documentation>Witton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF119">
        <xs:annotation>
          <xs:documentation>Wiveton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF120">
        <xs:annotation>
          <xs:documentation>Wood Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UF121">
        <xs:annotation>
          <xs:documentation>Worstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH001">
        <xs:annotation>
          <xs:documentation>Alburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH002">
        <xs:annotation>
          <xs:documentation>Aldeby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH003">
        <xs:annotation>
          <xs:documentation>Alpington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH004">
        <xs:annotation>
          <xs:documentation>Ashby St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH005">
        <xs:annotation>
          <xs:documentation>Ashwellthorpe and Fundenhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH006">
        <xs:annotation>
          <xs:documentation>Aslacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH007">
        <xs:annotation>
          <xs:documentation>Barford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH008">
        <xs:annotation>
          <xs:documentation>Barnham Broom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH009">
        <xs:annotation>
          <xs:documentation>Bawburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH010">
        <xs:annotation>
          <xs:documentation>Bedingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH011">
        <xs:annotation>
          <xs:documentation>Bergh Apton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH012">
        <xs:annotation>
          <xs:documentation>Bixley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH013">
        <xs:annotation>
          <xs:documentation>Bracon Ash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH014">
        <xs:annotation>
          <xs:documentation>Bramerton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH015">
        <xs:annotation>
          <xs:documentation>Bressingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH016">
        <xs:annotation>
          <xs:documentation>Brockdish</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH017">
        <xs:annotation>
          <xs:documentation>Brooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH018">
        <xs:annotation>
          <xs:documentation>Broome</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH019">
        <xs:annotation>
          <xs:documentation>Bunwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH020">
        <xs:annotation>
          <xs:documentation>Burgh St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH021">
        <xs:annotation>
          <xs:documentation>Burston and Shimpling</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH022">
        <xs:annotation>
          <xs:documentation>Caistor St. Edmund</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH023">
        <xs:annotation>
          <xs:documentation>Carleton Rode</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH024">
        <xs:annotation>
          <xs:documentation>Carleton St. Peter</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH025">
        <xs:annotation>
          <xs:documentation>Chedgrave</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH026">
        <xs:annotation>
          <xs:documentation>Claxton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH027">
        <xs:annotation>
          <xs:documentation>Colney</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH028">
        <xs:annotation>
          <xs:documentation>Costessey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH029">
        <xs:annotation>
          <xs:documentation>Cringleford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH030">
        <xs:annotation>
          <xs:documentation>Denton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH031">
        <xs:annotation>
          <xs:documentation>Deopham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH032">
        <xs:annotation>
          <xs:documentation>Dickleburgh and Rushall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH033">
        <xs:annotation>
          <xs:documentation>Diss</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH034">
        <xs:annotation>
          <xs:documentation>Ditchingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH035">
        <xs:annotation>
          <xs:documentation>Earsham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH036">
        <xs:annotation>
          <xs:documentation>East Carleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH037">
        <xs:annotation>
          <xs:documentation>Easton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH038">
        <xs:annotation>
          <xs:documentation>Ellingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH039">
        <xs:annotation>
          <xs:documentation>Flordon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH040">
        <xs:annotation>
          <xs:documentation>Forncett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH041">
        <xs:annotation>
          <xs:documentation>Framingham Earl</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH042">
        <xs:annotation>
          <xs:documentation>Framingham Pigot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH043">
        <xs:annotation>
          <xs:documentation>Geldeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH044">
        <xs:annotation>
          <xs:documentation>Gillingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH045">
        <xs:annotation>
          <xs:documentation>Gissing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH046">
        <xs:annotation>
          <xs:documentation>Great Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH047">
        <xs:annotation>
          <xs:documentation>Great Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH048">
        <xs:annotation>
          <xs:documentation>Haddiscoe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH049">
        <xs:annotation>
          <xs:documentation>Hales</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH050">
        <xs:annotation>
          <xs:documentation>Heckingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH051">
        <xs:annotation>
          <xs:documentation>Hedenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH052">
        <xs:annotation>
          <xs:documentation>Hellington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH053">
        <xs:annotation>
          <xs:documentation>Hempnall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH054">
        <xs:annotation>
          <xs:documentation>Hethersett</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH055">
        <xs:annotation>
          <xs:documentation>Hingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH056">
        <xs:annotation>
          <xs:documentation>Holverston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH057">
        <xs:annotation>
          <xs:documentation>Howe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH058">
        <xs:annotation>
          <xs:documentation>Keswick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH059">
        <xs:annotation>
          <xs:documentation>Ketteringham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH060">
        <xs:annotation>
          <xs:documentation>Kimberley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH061">
        <xs:annotation>
          <xs:documentation>Kirby Bedon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH062">
        <xs:annotation>
          <xs:documentation>Kirby Cane</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH063">
        <xs:annotation>
          <xs:documentation>Kirstead</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH064">
        <xs:annotation>
          <xs:documentation>Langley with Hardley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH065">
        <xs:annotation>
          <xs:documentation>Little Melton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH066">
        <xs:annotation>
          <xs:documentation>Loddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH067">
        <xs:annotation>
          <xs:documentation>Long Stratton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH068">
        <xs:annotation>
          <xs:documentation>Marlingford and Colton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH069">
        <xs:annotation>
          <xs:documentation>Morley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH070">
        <xs:annotation>
          <xs:documentation>Morning Thorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH071">
        <xs:annotation>
          <xs:documentation>Mulbarton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH072">
        <xs:annotation>
          <xs:documentation>Mundham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH073">
        <xs:annotation>
          <xs:documentation>Needham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH074">
        <xs:annotation>
          <xs:documentation>Newton Flotman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH075">
        <xs:annotation>
          <xs:documentation>Norton Subcourse</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH076">
        <xs:annotation>
          <xs:documentation>Poringland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH077">
        <xs:annotation>
          <xs:documentation>Pulham Market</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH078">
        <xs:annotation>
          <xs:documentation>Pulham St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH079">
        <xs:annotation>
          <xs:documentation>Raveningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH080">
        <xs:annotation>
          <xs:documentation>Redenhall with Harleston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH081">
        <xs:annotation>
          <xs:documentation>Rockland St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH082">
        <xs:annotation>
          <xs:documentation>Roydon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH083">
        <xs:annotation>
          <xs:documentation>Runhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH084">
        <xs:annotation>
          <xs:documentation>Saxlingham Nethergate</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH085">
        <xs:annotation>
          <xs:documentation>Scole</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH086">
        <xs:annotation>
          <xs:documentation>Seething</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH087">
        <xs:annotation>
          <xs:documentation>Shelfanger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH088">
        <xs:annotation>
          <xs:documentation>Shelton and Hardwick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH089">
        <xs:annotation>
          <xs:documentation>Shotesham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH090">
        <xs:annotation>
          <xs:documentation>Sisland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH091">
        <xs:annotation>
          <xs:documentation>Starston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH092">
        <xs:annotation>
          <xs:documentation>Stockton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH093">
        <xs:annotation>
          <xs:documentation>Stoke Holy Cross</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH094">
        <xs:annotation>
          <xs:documentation>Surlingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH095">
        <xs:annotation>
          <xs:documentation>Swainsthorpe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH096">
        <xs:annotation>
          <xs:documentation>Swardeston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH097">
        <xs:annotation>
          <xs:documentation>Tacolneston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH098">
        <xs:annotation>
          <xs:documentation>Tasburgh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH099">
        <xs:annotation>
          <xs:documentation>Tharston and Hapton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH100">
        <xs:annotation>
          <xs:documentation>Thurlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH101">
        <xs:annotation>
          <xs:documentation>Thurton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH102">
        <xs:annotation>
          <xs:documentation>Thwaite</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH103">
        <xs:annotation>
          <xs:documentation>Tibenham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH104">
        <xs:annotation>
          <xs:documentation>Tivetshall St. Margaret</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH105">
        <xs:annotation>
          <xs:documentation>Tivetshall St. Mary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH106">
        <xs:annotation>
          <xs:documentation>Toft Monks</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH107">
        <xs:annotation>
          <xs:documentation>Topcroft</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH108">
        <xs:annotation>
          <xs:documentation>Trowse with Newton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH109">
        <xs:annotation>
          <xs:documentation>Wacton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH110">
        <xs:annotation>
          <xs:documentation>Wheatacre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH111">
        <xs:annotation>
          <xs:documentation>Wicklewood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH112">
        <xs:annotation>
          <xs:documentation>Winfarthing</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH113">
        <xs:annotation>
          <xs:documentation>Woodton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH114">
        <xs:annotation>
          <xs:documentation>Wortwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH115">
        <xs:annotation>
          <xs:documentation>Wramplingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH116">
        <xs:annotation>
          <xs:documentation>Wreningham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH117">
        <xs:annotation>
          <xs:documentation>Wymondham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH118">
        <xs:annotation>
          <xs:documentation>Yelverton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="33UH119">
        <xs:annotation>
          <xs:documentation>Heywood</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB001">
        <xs:annotation>
          <xs:documentation>Cottingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB002">
        <xs:annotation>
          <xs:documentation>East Carlton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB003">
        <xs:annotation>
          <xs:documentation>Gretton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB004">
        <xs:annotation>
          <xs:documentation>Middleton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB005">
        <xs:annotation>
          <xs:documentation>Rockingham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB006">
        <xs:annotation>
          <xs:documentation>Stanion</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UB007">
        <xs:annotation>
          <xs:documentation>Weldon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC001">
        <xs:annotation>
          <xs:documentation>Althorp</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC002">
        <xs:annotation>
          <xs:documentation>Arthingworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC003">
        <xs:annotation>
          <xs:documentation>Ashby St Ledgers</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC004">
        <xs:annotation>
          <xs:documentation>Badby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC005">
        <xs:annotation>
          <xs:documentation>Barby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC006">
        <xs:annotation>
          <xs:documentation>Boughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC007">
        <xs:annotation>
          <xs:documentation>Braunston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC008">
        <xs:annotation>
          <xs:documentation>Brington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC009">
        <xs:annotation>
          <xs:documentation>Brixworth</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC010">
        <xs:annotation>
          <xs:documentation>Brockhall</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC011">
        <xs:annotation>
          <xs:documentation>Byfield</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC012">
        <xs:annotation>
          <xs:documentation>Canons Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC013">
        <xs:annotation>
          <xs:documentation>Catesby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC014">
        <xs:annotation>
          <xs:documentation>Chapel Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC015">
        <xs:annotation>
          <xs:documentation>Charwelton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC016">
        <xs:annotation>
          <xs:documentation>Church Brampton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC017">
        <xs:annotation>
          <xs:documentation>Clay Coton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC018">
        <xs:annotation>
          <xs:documentation>Clipston</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC019">
        <xs:annotation>
          <xs:documentation>Cold Ashby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC020">
        <xs:annotation>
          <xs:documentation>Cottesbrooke</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC021">
        <xs:annotation>
          <xs:documentation>Creaton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC022">
        <xs:annotation>
          <xs:documentation>Crick</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC023">
        <xs:annotation>
          <xs:documentation>Dodford</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC024">
        <xs:annotation>
          <xs:documentation>Draughton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC025">
        <xs:annotation>
          <xs:documentation>East Farndon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC026">
        <xs:annotation>
          <xs:documentation>East Haddon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC027">
        <xs:annotation>
          <xs:documentation>Elkington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC028">
        <xs:annotation>
          <xs:documentation>Everdon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC029">
        <xs:annotation>
          <xs:documentation>Farthingstone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC030">
        <xs:annotation>
          <xs:documentation>Fawsley</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC031">
        <xs:annotation>
          <xs:documentation>Flore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC032">
        <xs:annotation>
          <xs:documentation>Great Oxendon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC033">
        <xs:annotation>
          <xs:documentation>Guilsborough</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC034">
        <xs:annotation>
          <xs:documentation>Hannington</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC035">
        <xs:annotation>
          <xs:documentation>Harlestone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC036">
        <xs:annotation>
          <xs:documentation>Haselbech</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC037">
        <xs:annotation>
          <xs:documentation>Hellidon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC038">
        <xs:annotation>
          <xs:documentation>Holcot</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC039">
        <xs:annotation>
          <xs:documentation>Holdenby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC040">
        <xs:annotation>
          <xs:documentation>Hollowell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC041">
        <xs:annotation>
          <xs:documentation>Kelmarsh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC042">
        <xs:annotation>
          <xs:documentation>Kilsby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC043">
        <xs:annotation>
          <xs:documentation>Lamport</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC044">
        <xs:annotation>
          <xs:documentation>Lilbourne</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC045">
        <xs:annotation>
          <xs:documentation>Long Buckby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC046">
        <xs:annotation>
          <xs:documentation>Maidwell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC047">
        <xs:annotation>
          <xs:documentation>Marston Trussell</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC048">
        <xs:annotation>
          <xs:documentation>Moulton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC049">
        <xs:annotation>
          <xs:documentation>Naseby</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC050">
        <xs:annotation>
          <xs:documentation>Newnham</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC051">
        <xs:annotation>
          <xs:documentation>Norton</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="34UC052">
       
