<?xml version="1.0"?>
<!DOCTYPE xAL SYSTEM "xAL.dtd">
<!-- 
23 Archer Street
Chatswood, NSW 2067
Australia 
-->
<xAL>
	<!-- **************** OPTION I *********************** -->
	<AddressDetails>
		<AddressLines>
			<AddressLine Type="1">23 Archer Street</AddressLine>
			<AddressLine Type="2">Chatswood, NSW 2067</AddressLine>
			<AddressLine Type="3">Australia</AddressLine>
		</AddressLines>
	</AddressDetails>
	<!-- **************** OPTION II ********************* -->
	<AddressDetails>
		<Country>
			<AddressLine>Australia</AddressLine>
			<AdministrativeArea>
				<AddressLine>NSW</AddressLine>
				<Locality>
					<AddressLine>Chatswood</AddressLine>
					<Thoroughfare>
						<AddressLine>23, Archer Street</AddressLine>
					</Thoroughfare>
					<PostalCode>
						<AddressLine>2067</AddressLine>
					</PostalCode>
				</Locality>
			</AdministrativeArea>
		</Country>
	</AddressDetails>
	<!-- **************** OPTION III *********************** -->
	<AddressDetails>
		<Country>
			<CountryName>Australia</CountryName>
			<Locality>
				<LocalityName>NSW</LocalityName>
				<DependentLocality>
					<DependentLocalityName>Chatswood</DependentLocalityName>
					<Thoroughfare>
						<ThoroughfareName>23 Archer Street</ThoroughfareName>
					</Thoroughfare>
				</DependentLocality>
				<PostalCode>
					<PostalCodeNumber>2067</PostalCodeNumber>
				</PostalCode>
			</Locality>
		</Country>
	</AddressDetails>
	<!-- **************** OPTION IV *********************** -->
	<AddressDetails>
		<Country>
			<CountryName>Australia</CountryName>
			<Locality>
				<LocalityName Type="Abbreviation">NSW</LocalityName>
				<DependentLocality Type="Suburb">
					<DependentLocalityName>Chatswood</DependentLocalityName>
					<Thoroughfare>
						<ThoroughfareNumber>23</ThoroughfareNumber>
						<ThoroughfareName>Archer</ThoroughfareName>
						<ThoroughfareTrailingType>Street</ThoroughfareTrailingType>
					</Thoroughfare>
				</DependentLocality>
				<PostalCode>
					<PostalCodeNumber>2067</PostalCodeNumber>
				</PostalCode>
			</Locality>
		</Country>
	</AddressDetails>
	<!-- **************** OPTION V *********************** -->
	<AddressDetails>
		<Country>
			<CountryName>Australia</CountryName>
			<Locality>
				<AddressLine>Chatswood, NSW 2067</AddressLine>
				<AddressLine>23 Archer Street</AddressLine>
			</Locality>
		</Country>
	</AddressDetails>
</xAL>
