﻿<?xml version="1.0" encoding="utf-8"?>

<!--
Course setting symbol list

This contains a list of the IOF symbols for control
descriptions, 2004 version.

Each symbol is described in a coordinate system where the
enclosing box is 200x200 units, and the center of the box is
at (0,0). Thus, the upper right corner is at (100,100), the lower
right corner is at (-100,100), and the middle of the right side 
is at (100,0).

Instructional line symols are also described here; their coordinate
system is 200 units high as usual, but 1600 units wide, going
from (-800,-100) to (800,100).


The following describes the elements and attributes used
for the symbols.

<symbols>          The root element. It children are <language> and <symbol>.
                           All language must precede all symbols.
						   
<language>       Describes a language that will be used later to describe symbols. The 
                          content is the name of the language, in that language.
   lang - two letter lowercase ISO language ID
   plural-nouns - true/false if the language uses plural forms of nouns (default: false)
   plural-modifiers - true/false if the language uses plural forms of modifiers that modify plural nouns (default: false)
   gender-modifiers - true/false if the language uses gendered forms of modifiers depending on the 
                          gender of the object being modified (default: false)
   genders - list of genders, seperated by commas, if gender-modifiers is true
   
   


<symbol>           Describes one symbol.
   kind - (required) the column the symbol is usually associated with ("D", "E", etc.)
                     instructional line symbols are "W" through "Z".
   id   - (required) the IOF id of the symbol. e.g. "1.14".
   size-is-depth - (optional, default=false) If true, indicates that a single number in 
                   column F indicates a depth, rather than a height.
   
<name>      Required. A child of symbol. The content describes the name of the symbol.
                   This is used to show the name of the symbol in the user interfaces. 
				   This is often the same as the text of the symbol, but not always.
   lang - two letter lowercase ISO language id.
				   
   
<text>             A child of symbol. The content is the text used in a textual version of the
                   symbol. In many cases, text to be filled in is marked with {0}, {1}, ...
				   Multiple text elements with different languages are allowed. At least
		           one text symbol with lang="en" (English) is required.
   lang - two letter lowercase ISO language id.
   plural - true/false (default:false). If true, indicates the text used for plural versions
                   of this object, used for between (and possibly crossing/junction) when one feature
				   or two identical features are specified. Plural versions should be used for column D
				   features, and also for modifiers (column E) if the language requires plural versions here
				   when modifying a plural object.
	gender - if the language requires gender agreement between nouns and adjectives, then
	               column D texts should specify a gender. Each column E adjective should specify text
				   for each possible gender. Column C and G can specify different version for genders also
				   if needed.

<lines>            A child of symbol. A sequence of connected lines that makes up part of the 
                   symbol. Child <point> elements given the endpoints of the lines; there must
		           be at least two, but may be many more.
   thickness - (required) the thickness of the line(s)
   ends      - (optional, default="round") either "round" or "flat"; describes how the 
               ends of the line(s) are drawn
   corners   - (options, default="round") either "round" or "sharp"; describes how the
               corners between line segments are drawn

<polygon>          A child of symbol. A closed (but not filled) polygon of lines that makes up part of the 
                   symbol. Child <point> elements give the corners of the polygon; there must be
			       at least three, but may be many more.
   thickness - (required) the thickness of the lines
   corners   - (options, default="round") either "round" or "sharp"; describes how the
               corners between line segments are drawn
			   
<filled-polygon>   A child of symbol. A filled polygon that makes up part of the 
                   symbol. Child <point> elements give the corners of the polygon; there must be
			       at least three, but may be many more.
			   
<circle>    A child of symbols. A circle (not filled in) that makes up part of the symbol. A single
            <point> child element gives the center of the circle.
   thickness - (required) the thickness of the circle
   radius    - (required) the radius of the circle

<filled-circle>    A child of symbols. A circle (not filled in) that makes up part of the symbol. A
                   single <point> child element gives the center of the circle.
   radius    - (required) the radius of the circle
   
<beziers>          A child of symbol. One or more connected bezier curvers that make up part
                   of the symbol. Child <point> elements give the regular points and control points
				   of the bezier(s), in the order (regular point),(control point),(control point),
				   (regular point), (control point), (control point), (regular point), ... There must
				   be 3N+1 points, for N >= 1.
   thickness - (required) the thickness of the line(s)
   ends      - (optional, default="round") either "round" or "flat"; describes how the 
               ends of the line(s) are drawn

<filled-beziers>   A child of symbol. The filled interioe of one or more connected bezier curvers that make up part
                   of the symbol. Child <point> elements give the regular points and control points
				   of the bezier(s), in the order (regular point),(control point),(control point),
				   (regular point), (control point), (control point), (regular point), ... There must
				   be 3N+1 points, for N >= 1. The last point should be the same as the first.

<point>            Describes a single point in one of the geometric figures above.
   x - (required) The x coordinate, in the range -100..100. May have decimals.
   y - (required) The y coordinate, in the range -100..100. May have decimals.
   
-->

<symbols>
	<!-- Languages. Lists of the languages available for descriptions. -->

	<language lang="en" plural-nouns="true" plural-modifiers="false" gender-modifiers="false">English</language>
	<language lang="en-GB" plural-nouns="true" plural-modifiers="false" gender-modifiers="false">English (United Kingdom)</language>


	<!-- Kind "@". These are not symbols at all, but just text that is used in constructing descriptions. -->

	<!-- Used for the course length, when no climb is present.
	{0} is the length
	-->
	<symbol kind="@" id="course_length">
		<name lang="en-GB">Course Length</name>
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		<name lang="en">Course Length</name>
		<text lang="en-GB">Length {0}</text>
		<text lang="en">Length {0}</text>
	</symbol>

	<!-- Used for the course length and climb
	{0} is the length
	{1} is the climb
	-->
	<symbol kind="@" id="course_length_climb">
		<name lang="en-GB">Course Length and Climb</name>
		
		
		
		<name lang="en">Course Length and Climb</name>
		<text lang="en-GB">{0},  {1}</text>
		
		<text lang="en">Length {0}, climb {1}</text>
	</symbol>

	<!-- Used for the number of controls in score course or All Controls
	{0} is the number of controls
	-->
	<symbol kind="@" id="number_controls">
		<name lang="en-GB">Number of Controls</name>
		
		
		
		<name lang="en">Number of Controls</name>
		<text lang="en-GB">{0} controls</text>
		<text lang="en">{0} controls</text>
	</symbol>

	<!-- Used for the total score in a score course
	{0} is the total points
	-->
	<symbol kind="@" id="number_points">
		<name lang="en-GB">Number of Points</name>
		
		
		
		<name lang="en">Number of Points</name>
		<text lang="en-GB">{0} points</text>
		<text lang="en">{0} points</text>
	</symbol>

	<!-- Used when regular symbols are present in both column D and E, but no crossing/junction/between
	symbol is present. This is very non-standard, but supported for completeness. 
	{0} is the column D symbol
	{1} is the column E symbol 
	-->
	<symbol kind="@" id="basic_combo">
		<name lang="en-GB">And</name>
		
		
		
		<name lang="en">And</name>
		<text lang="en-GB">{0} and {1}</text>
		<text lang="en">{0} and {1}</text>
	</symbol>



	<!-- Kind "A". Symbols that go in column A (for example,
	     the start triangle symbol.) -->
	
	<!-- The text for the start symbol is prefixed in front of
	       the description -->
	
	<symbol kind="A" id="start">
		<name lang="en-GB">Start</name>
		
		
		
		
		
		<name lang="en">Start</name>
		<text lang="en-GB">start</text>
		
		
		<text lang="en">start</text>
		<polygon thickness="12.5" corners="sharp">
			<point x="-56" y="65" />
			<point x="-56" y="-65" />
			<point x="57" y="0" />
		</polygon>
	</symbol>

	<!-- Kind "C". Symbols that go in column "C":
	     which of any similar feature. 
		 
		 The feature being described is in {0}.
		 -->

	<symbol kind="C" id="0.1N">
		<name lang="en-GB">Northern</name>
		
		
		
		
		
		
		<name lang="en">Northern</name>
		<text lang="en-GB">N. {0}</text>
		
		<text lang="en">N {0}</text>
		<lines thickness="12.5">
			<point x="0" y="-65" />
			<point x="0" y="65" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="-30" y="35" />
			<point x="0" y="65" />
			<point x="30" y="35" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.2NE">
		<name lang="en-GB">North-eastern</name>
		
		
		
		
		
		<name lang="en">North-eastern</name>
		<text lang="en-GB">NE. {0}</text>
		
		<text lang="en">NE {0}</text>
		<lines thickness="12.5">
			<point x="-55" y="-55" />
			<point x="55" y="55" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="55" y="15" />
			<point x="55" y="55" />
			<point x="15" y="55" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.1E">
		<name lang="en-GB">Eastern</name>
		
		
		
		
		<name lang="en">Eastern</name>
		<text lang="en-GB">E. {0}</text>
		
		<text lang="en">E {0}</text>
		<lines thickness="12.5">
			<point x="-65" y="0" />
			<point x="65" y="0" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="35" y="-30" />
			<point x="65" y="0" />
			<point x="35" y="30" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.2SE">
		<name lang="en-GB">South-eastern</name>
		
		
		
		
		<name lang="en">South-eastern</name>
		<text lang="en-GB">SE. {0}</text>
		
		<text lang="en">SE {0}</text>
		<lines thickness="12.5">
			<point x="-55" y="55" />
			<point x="55" y="-55" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="55" y="-15" />
			<point x="55" y="-55" />
			<point x="15" y="-55" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.1S">
		<name lang="en-GB">Southern</name>
		
		
		
		
		<name lang="en">Southern</name>
		<text lang="en-GB">S. {0}</text>
		
		<text lang="en">S {0}</text>
	<lines thickness="12.5">
			<point x="0" y="-65" />
			<point x="0" y="65" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="-30" y="-35" />
			<point x="0" y="-65" />
			<point x="30" y="-35" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.2SW">
		<name lang="en-GB">South-western</name>
		
		
		
		
		<name lang="en">South-western</name>
		<text lang="en-GB">SW. {0}</text>
		
		<text lang="en">SW {0}</text>
		<lines thickness="12.5">
			<point x="55" y="55" />
			<point x="-55" y="-55" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="-55" y="-15" />
			<point x="-55" y="-55" />
			<point x="-15" y="-55" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.1W">
		<name lang="en-GB">Western</name>
		
		
		
		
		<name lang="en">Western</name>
		<text lang="en-GB">W. {0}</text>
		
		<text lang="en">W {0}</text>
		<lines thickness="12.5">
			<point x="-65" y="0" />
			<point x="65" y="0" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="-35" y="-30" />
			<point x="-65" y="0" />
			<point x="-35" y="30" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.2NW">
		<name lang="en-GB">North-western</name>
		
		
		
		
		<name lang="en">North-western</name>
		<text lang="en-GB">NW. {0}</text>
		
		<text lang="en">NW {0}</text>
		<lines thickness="12.5">
			<point x="55" y="-55" />
			<point x="-55" y="55" />
		</lines>
		<lines thickness="12.5" corners="sharp">
			<point x="-55" y="15" />
			<point x="-55" y="55" />
			<point x="-15" y="55" />
		</lines>
	</symbol>

	<symbol kind="C" id="0.3">
		<name lang="en-GB">Upper</name>
		
		
		
		
		<name lang="en">Upper</name>
		<text lang="en-GB">Upper {0}</text>
		
		<text lang="en">upper {0}</text>
		<lines thickness="12.5" ends="round">
			<point x="-60" y="40" />
			<point x="60" y="40" />
		</lines>
		<lines thickness="12.5" ends="round">
			<point x="-60" y="-40" />
			<point x="60" y="-40" />
		</lines>
		<filled-circle radius="20">
			<point x="0" y="40" />
		</filled-circle>
	</symbol>

	<symbol kind="C" id="0.4">
		<name lang="en-GB">Lower</name>
		
		
		
		
		<name lang="en">Lower</name>
		<text lang="en-GB">Lower {0}</text>
		
		<text lang="en">lower {0}</text>
		<lines thickness="12.5" ends="round">
			<point x="-60" y="40" />
			<point x="60" y="40" />
		</lines>
		<lines thickness="12.5" ends="round">
			<point x="-60" y="-40" />
			<point x="60" y="-40" />
		</lines>
		<filled-circle radius="20">
			<point x="0" y="-40" />
		</filled-circle>
	</symbol>

	<symbol kind="C" id="0.5">
		<name lang="en-GB">Middle</name>
		
		
		
		
		<name lang="en">Middle</name>
		<text lang="en-GB">Middle {0}</text>
		
		<text lang="en">middle {0}</text>
		<lines thickness="12.5" ends="round">
			<point x="-50" y="60" />
			<point x="-50" y="-60" />
		</lines>
		<lines thickness="12.5" ends="round">
			<point x="50" y="60" />
			<point x="50" y="-60" />
		</lines>
		<lines thickness="12.5" ends="round">
			<point x="0" y="60" />
			<point x="0" y="-60" />
		</lines>
		<filled-circle radius="20">
			<point x="0" y="0" />
		</filled-circle>
	</symbol>

	<!-- Kind "D". Symbols that go in column D:
	     control feature. These also go in column
		 E in some cases (crossing/junction/between). -->

	<symbol kind="D" id="1.1">
		<name lang="en-GB">Terrace</name>
		
		
		
		
		
		<name lang="en">Terrace</name>
		<text lang="en-GB" plural="true">Terraces</text>
		<text lang="en-GB">Terrace</text>
		
		
		<text lang="en">terrace</text>
		<text lang="en" plural="true">terraces</text>
		<beziers thickness="12.5">
			<point x="-60" y="-70" />
			<point x="-50" y="-30" />
			<point x="-50" y="30" />
			<point x="-60" y="70" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-32" y="-70" />
				<point x="-30" y="-60" />
				<point x="-30" y="-48" />
			<point x="0" y="-46" />
				<point x="30" y="-44" />
				<point x="50" y="-47" />
			<point x="50" y="0" />
				<point x="50" y="47" />
				<point x="30" y="44" />
			<point x="0" y="46" />
				<point x="-30" y="48" />
				<point x="-30" y="60" />
			<point x="-32" y="70" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.2">
		<name lang="en-GB">Spur</name>
		
		
		
		
		
		<name lang="en">Spur</name>
		<text lang="en-GB" plural="true">Spurs</text>
		<text lang="en-GB">Spur</text>
		
		
		<text lang="en">spur</text>
		<text lang="en" plural="true">spurs</text>
		<text lang="de" gender="masculine">de-spur</text>
		<text lang="de" gender="masculine" plural="true">de-spurs</text>
		<text lang="fr" gender="feminine">fr-spur</text>
		<text lang="fr" gender="feminine" plural="true">fr-spurs</text>
		<beziers thickness="12.5">
			<point x="-70" y="-70" />
			<point x="-60" y="-30" />
			<point x="-60" y="30" />
			<point x="-70" y="70" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-42" y="-70" />
				<point x="-37" y="-42" />
				<point x="-40" y="-23" />
			<point x="-10" y="-21" />
				<point x="20" y="-19" />
				<point x="70" y="-27" />
			<point x="70" y="0" />
				<point x="70" y="27" />
				<point x="20" y="19" />
			<point x="-10" y="21" />
				<point x="-40" y="23" />
				<point x="-37" y="42" />
			<point x="-42" y="70" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.3" size-is-depth="true">
		<name lang="en-GB">Re-entrant</name>
		
		
		
		
		
		
		
		
		<name lang="en">Reentrant</name>
		<text lang="en-GB" plural="true">Re-entrants</text>
		<text lang="en-GB">Re-entrant</text>
		
		
		<text lang="en">reentrant</text>
		<text lang="en" plural="true">reentrants</text>
		<beziers thickness="12.5">
			<point x="-70" y="-70" />
			<point x="-42" y="-73" />
			<point x="-38" y="-40" />
			<point x="-36" y="-10" />
			<point x="-34" y="20" />
			<point x="-27" y="70" />
			<point x="0" y="70" />
			<point x="27" y="70" />
			<point x="34" y="20" />
			<point x="36" y="-10" />
			<point x="38" y="-40" />
			<point x="42" y="-73" />
			<point x="70" y="-70" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.4">
		<name lang="en-GB">Earth bank</name>
		
		
		
		
		
		
		<name lang="en">Earth bank</name>
		<text lang="en-GB" plural="true">Earth banks</text>
		<text lang="en-GB">Earth bank</text>
		
		
		<text lang="en">earth bank</text>
		<text lang="en" plural="true">earth banks</text>
		<beziers thickness="12.5">
			<point x="-70" y="20" />
			<point x="-30" y="-10" />
			<point x="30" y="-10" />
			<point x="70" y="20" />
		</beziers>
		<lines thickness="12.5">
			<point x="20" y="-5" />
			<point x="25" y="-29" />
		</lines>
		<lines thickness="12.5">
			<point x="-20" y="-5" />
			<point x="-25" y="-29" />
		</lines>
		<lines thickness="12.5">
			<point x="55" y="9" />
			<point x="65" y="-13" />
		</lines>
		<lines thickness="12.5">
			<point x="-55" y="9" />
			<point x="-65" y="-13" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.5" size-is-depth="true">
		<name lang="en-GB">Quarry</name>
		
		
		
		
		
		
		<name lang="en">Quarry</name>
		<text lang="en-GB" plural="true">Quarries</text>
		<text lang="en-GB">Quarry</text>
		
		
		<text lang="en">quarry</text>
		<text lang="en" plural="true">quarries</text>
		<beziers thickness="12.5">
			<point x="54" y="-60" />
				<point x="93" y="5" />
				<point x="52" y="64" />
			<point x="0" y="64" />
				<point x="-52" y="64" />
				<point x="-93" y="5" />
			<point x="-54" y="-60" />
		</beziers>
		<lines thickness="12.5">
			<point x="40" y="48" />
			<point x="20" y="23" />
		</lines>
		<lines thickness="12.5">
			<point x="-40" y="48" />
			<point x="-20" y="23" />
		</lines>
		<lines thickness="12.5">
			<point x="66" y="-25" />
			<point x="40" y="-17.5" />
		</lines>
		<lines thickness="12.5">
			<point x="-66" y="-25" />
			<point x="-40" y="-17.5" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.6">
		<name lang="en-GB">Earth wall</name>
		
		
		
		
		
		<name lang="en">Earth wall</name>
		<text lang="en-GB" plural="true">Earth Walls</text>
		<text lang="en-GB">Warth Wall</text>
		
		
		<text lang="en">earth wall</text>
		<text lang="en" plural="true">earth walls</text>
		<lines thickness="12.5">
			<point x="-70" y="0" />
			<point x="70" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-48" y="17" />
			<point x="-48" y="-17" />
		</lines>
		<lines thickness="12.5">
			<point x="-16" y="-25" />
			<point x="-16" y="25" />
		</lines>
		<lines thickness="12.5">
			<point x="16" y="-25" />
			<point x="16" y="25" />
		</lines>
		<lines thickness="12.5">
			<point x="48" y="17" />
			<point x="48" y="-17" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.7" size-is-depth="true">
		<name lang="en-GB">Erosion gully</name>
		
		
		
		
		<name lang="en">Erosion gully</name>
		<text lang="en-GB" plural="true">Gullies</text>
		<text lang="en-GB">Gully</text>
		
		
		<text lang="en">gully</text>
		<text lang="en" plural="true">gullies</text>
		<lines thickness="12.5">
			<point x="40" y="-70" />
			<point x="0" y="70" />
			<point x="-40" y="-70" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.8" size-is-depth="true">
		<name lang="en-GB">Small erosion gully</name>
		
		
		
		
		<name lang="en">Small erosion gully</name>
		<text lang="en-GB" plural="true">Small Gullies</text>
		<text lang="en-GB">Small Gully</text>
		
		
		<text lang="en">small gully</text>
		<text lang="en" plural="true">small gullies</text>
		<lines thickness="12.5">
			<point x="-21" y="61" />
			<point x="61" y="-21" />
		</lines>
		<lines thickness="12.5">
			<point x="-61" y="21" />
			<point x="21" y="-61" />
		</lines>
		<filled-circle radius="7.5">
			<point x="-40" y="40" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-20" y="20" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="20" y="-20" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="40" y="-40" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="1.9">
		<name lang="en-GB">Hill</name>
		
		
		
		
		<name lang="en">Hill</name>
		<text lang="en-GB" plural="true">Hills</text>
		<text lang="en-GB">Hill</text>
		
		
		<text lang="en">hill</text>
		<text lang="en" plural="true">hills</text>
		<beziers thickness="12.5">
			<point x="0" y="48.21" />
			<point x="40.71" y="48.21" />
			<point x="75" y="26.79" />
			<point x="75" y="0" />
			<point x="75" y="-26.79" />
			<point x="40.71" y="-48.21" />
			<point x="0" y="-48.21" />
			<point x="-40.71" y="-48.21" />
			<point x="-75" y="-26.79" />
			<point x="-75" y="0" />
			<point x="-75" y="26.79" />
			<point x="-40.71" y="48.21" />
			<point x="0" y="48.21" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.10">
		<name lang="en-GB">Knoll</name>
		
		
		
		
		<name lang="en">Knoll</name>
		<text lang="en-GB" plural="true">Knolls</text>
		<text lang="en-GB">Knoll</text>
		
		
		<text lang="en">knoll</text>
		<text lang="en" plural="true">knolls</text>
		<filled-circle radius="23">
			<point x="0" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="1.11">
		<name lang="en-GB">Saddle</name>
		
		
		
		
		<name lang="en">Saddle</name>
		<text lang="en-GB" plural="true">Saddles</text>
		<text lang="en-GB">Saddle</text>
		
		
		<text lang="en">saddle</text>
		<text lang="en" plural="true">saddles</text>
		<beziers thickness="12.5">
			<point x="-40" y="-70" />
			<point x="-10" y="-30" />
			<point x="-10" y="30" />
			<point x="-40" y="70" />
		</beziers>
		<beziers thickness="12.5">
			<point x="40" y="-70" />
			<point x="10" y="-30" />
			<point x="10" y="30" />
			<point x="40" y="70" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.12" size-is-depth="true">
		<name lang="en-GB">Depression</name>
		
		
		
		
		<name lang="en">Depression</name>
		<text lang="en-GB" plural="true">Depressions</text>
		<text lang="en-GB">Depression</text>
		
		
		<text lang="en">depression</text>
		<text lang="en" plural="true">depressions</text>
		<beziers thickness="12.5">
			<point x="0" y="48.21" />
			<point x="40.71" y="48.21" />
			<point x="75" y="26.79" />
			<point x="75" y="0" />
			<point x="75" y="-26.79" />
			<point x="40.71" y="-48.21" />
			<point x="0" y="-48.21" />
			<point x="-40.71" y="-48.21" />
			<point x="-75" y="-26.79" />
			<point x="-75" y="0" />
			<point x="-75" y="26.79" />
			<point x="-40.71" y="48.21" />
			<point x="0" y="48.21" />
		</beziers>
		<lines thickness="12.5">
			<point x="72" y="0" />
			<point x="30" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-72" y="0" />
			<point x="-30" y="0" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.13" size-is-depth="true">
		<name lang="en-GB">Small depression</name>
		
		
		
		
		<name lang="en">Small depression</name>
		<text lang="en-GB" plural="true">Small Depressions</text>
		<text lang="en-GB">Small Depression</text>
		
		
		<text lang="en">small depression</text>
		<text lang="en" plural="true">small depressions</text>
		<beziers thickness="12.5">
			<point x="-50" y="50" />
			<point x="-75" y="0" />
			<point x="-40" y="-45" />
			<point x="0" y="-45" />
			<point x="40" y="-45" />
			<point x="75" y="0" />
			<point x="50" y="50" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.14" size-is-depth="true">
		<name lang="en-GB">Pit</name>
		
		
		
		
		<name lang="en">Pit</name>
		<text lang="en-GB" plural="true">Pits</text>
		<text lang="en-GB">Pit</text>
		
		
		<text lang="en">pit</text>
		<text lang="en" plural="true">pits</text>
		<lines thickness="12.5">
			<point x="-50" y="50" />
			<point x="0" y="-50" />
			<point x="50" y="50" />
		</lines>
	</symbol>

	<symbol kind="D" id="1.15">
		<name lang="en-GB">Broken ground</name>
		
		
		
		
		<name lang="en">Broken ground</name>
		<text lang="en-GB" plural="true">Broken Ground</text>
		<text lang="en-GB">Broken Ground</text>
		
		
		<text lang="en">broken ground</text>
		<text lang="en" plural="true">broken ground</text>
		<beziers thickness="12.5">
			<point x="-65" y="50" />
			<point x="-75" y="30" />
			<point x="-61" y="13" />
			<point x="-45" y="13" />
			<point x="-29" y="13" />
			<point x="-15" y="30" />
			<point x="-25" y="50" />
		</beziers>
		<beziers thickness="12.5">
			<point x="65" y="50" />
			<point x="75" y="30" />
			<point x="61" y="13" />
			<point x="45" y="13" />
			<point x="29" y="13" />
			<point x="15" y="30" />
			<point x="25" y="50" />
		</beziers>
		<beziers thickness="12.5">
			<point x="20" y="-20" />
			<point x="30" y="-40" />
			<point x="16" y="-57" />
			<point x="0" y="-57" />
			<point x="-16" y="-57" />
			<point x="-30" y="-40" />
			<point x="-20" y="-20" />
		</beziers>
	</symbol>

	<symbol kind="D" id="1.16">
		<name lang="en-GB">Ant hill (termite mound)</name>
		
		
		
		
		<name lang="en">Ant hill (termite mound)</name>
		<text lang="en-GB" plural="true">Ant Hills</text>
		<text lang="en-GB">Ant Hill</text>
		
		
		<text lang="en">ant hill</text>
		<text lang="en" plural="true">ant hills</text>
		<lines thickness="12.5">
			<point x="-70" y="0" />
			<point x="70" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="-70" />
			<point x="0" y="70" />
		</lines>
		<lines thickness="12.5">
			<point x="-49.5" y="-49.5" />
			<point x="49.5" y="49.5" />
		</lines>
		<lines thickness="12.5">
			<point x="-49.5" y="49.5" />
			<point x="49.5" y="-49.5" />
		</lines>
	</symbol>

	<symbol kind="D" id="2.1">
		<name lang="en-GB">Crag</name>
		
		
		
		
		
		
		
		
		<name lang="en">Cliff</name>
		<text lang="en-GB" plural="true">Crags</text>
		<text lang="en-GB">Crag</text>
		
		
		
		
		
		
		<text lang="en">cliff</text>
		<text lang="en" plural="true">cliffs</text>
		<lines thickness="12.5">
			<point x="-70" y="-20" />
			<point x="-70" y="20" />
			<point x="70" y="20" />
			<point x="70" y="-20" />
		</lines>
		<lines thickness="12.5">
			<point x="-23.33" y="-20" />
			<point x="-23.33" y="15" />
		</lines>
		<lines thickness="12.5">
			<point x="23.33" y="-20" />
			<point x="23.33" y="15" />
		</lines>
	</symbol>

	<symbol kind="D" id="2.2">
		<name lang="en-GB">Rock pillar</name>
		
		
		
		
		<name lang="en">Rock pillar</name>
		<text lang="en-GB" plural="true">Rock Pillars</text>
		<text lang="en-GB">Rock Pillar</text>
		
		
		<text lang="en">rock pillar</text>
		<text lang="en" plural="true">rock pillars</text>
		<filled-polygon>
			<point x="0" y="70" />
			<point x="37" y="-70" />
			<point x="-37" y="-70" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="2.3">
		<name lang="en-GB">Cave</name>
		
		
		
		
		<name lang="en">Cave</name>
		<text lang="en-GB" plural="true">Caves</text>
		<text lang="en-GB">Cave</text>
		
		
		<text lang="en">cave</text>
		<text lang="en" plural="true">caves</text>
		<lines thickness="12.5">
			<point x="50" y="30" />
			<point x="-50" y="0" />
			<point x="50" y="-30" />
		</lines>
		<beziers thickness="12.5">
			<point x="-25" y="70" />
			<point x="-10.4" y="55.4" />
			<point x="-1.4" y="35.6" />
			<point x="0" y="15" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-25" y="-70" />
			<point x="-10.4" y="-55.4" />
			<point x="-1.4" y="-35.6" />
			<point x="0" y="-15" />
		</beziers>
	</symbol>

	<symbol kind="D" id="2.4">
		<name lang="en-GB">Boulder</name>
		
		
		
		
		
		
		<name lang="en">Boulder</name>
		<text lang="en-GB" plural="true">Boulders</text>
		<text lang="en-GB">Boulder</text>
		
		
		
		
		<text lang="en">boulder</text>
		<text lang="en" plural="true">boulders</text>
		<filled-polygon>
			<point x="0" y="55" />
			<point x="63.5" y="-55" />
			<point x="-63.5" y="-55" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="2.5">
		<name lang="en-GB">Boulder field</name>
		
		
		
		
		<name lang="en">Boulder field</name>
		<text lang="en-GB" plural="true">Boulder Fields</text>
		<text lang="en-GB">Boulder Field</text>
		
		
		<text lang="en">boulder field</text>
		<text lang="en" plural="true">boulder fields</text>
		<filled-polygon>
			<point x="-72" y="-72" />
			<point x="-44.25" y="-24" />
			<point x="-16.5" y="-72" />
		</filled-polygon>
		<filled-polygon>
			<point x="72" y="-72" />
			<point x="44.25" y="-24" />
			<point x="16.5" y="-72" />
		</filled-polygon>
		<filled-polygon>
			<point x="-72" y="24" />
			<point x="-44.25" y="72" />
			<point x="-16.5" y="24" />
		</filled-polygon>
		<filled-polygon>
			<point x="72" y="24" />
			<point x="44.25" y="72" />
			<point x="16.5" y="24" />
		</filled-polygon>
		<filled-polygon>
			<point x="-27.75" y="-24" />
			<point x="0" y="24" />
			<point x="27.75" y="-24" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="2.6">
		<name lang="en-GB">Boulder cluster</name>
		
		
		
		
		
		
		<name lang="en">Boulder cluster</name>
		<text lang="en-GB" plural="true">Boulder Clusters</text>
		<text lang="en-GB">Boulder Cluster</text>
		
		
		<text lang="en">boulder cluster</text>
		<text lang="en" plural="true">boulder clusters</text>
		<filled-polygon>
			<point x="25.1" y="30" />
			<point x="69.3" y="-50" />
			<point x="-25.1" y="-50" />
		</filled-polygon>
		<filled-polygon>
			<point x="-25.1" y="50" />
			<point x="25.1" y="-30" />
			<point x="-69.3" y="-30" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="2.7">
		<name lang="en-GB">Stony ground</name>
		
		
		
		
		<name lang="en">Stony ground</name>
		<text lang="en-GB" plural="true">Stony Ground</text>
		<text lang="en-GB">Stony Ground</text>
		
		
		<text lang="en">stony ground</text>
		<text lang="en" plural="true">stony ground</text>
		<filled-circle radius="7.5">
			<point x="-60" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="-0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-30" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-30" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-30" y="-0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-30" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-30" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="30" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="30" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="30" y="-0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="30" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="30" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="-0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="60" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="2.8">
		<name lang="en-GB">Bare rock</name>
		
		
		
		
		<name lang="en">Bare rock</name>
		<text lang="en-GB" plural="true">Bare Rock</text>
		<text lang="en-GB">Bare Rock</text>
		
		
		<text lang="en">bare rock</text>
		<text lang="en" plural="true">bare rock</text>
		<lines thickness="12.5">
			<point x="-70" y="0" />
			<point x="-25" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="-70" />
			<point x="0" y="-25" />
		</lines>
		<lines thickness="12.5">
			<point x="70" y="0" />
			<point x="25" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="70" />
			<point x="0" y="25" />
		</lines>
		<lines thickness="12.5">
			<point x="-49.5" y="-49.5" />
			<point x="-17.68" y="-17.68" />
		</lines>
		<lines thickness="12.5">
			<point x="-49.5" y="49.5" />
			<point x="-17.68" y="17.68" />
		</lines>
		<lines thickness="12.5">
			<point x="49.5" y="-49.5" />
			<point x="17.68" y="-17.68" />
		</lines>
		<lines thickness="12.5">
			<point x="49.5" y="49.5" />
			<point x="17.68" y="17.68" />
		</lines>
	</symbol>

	<symbol kind="D" id="2.9" size-is-depth="true">
		<name lang="en-GB">Narrow passage</name>
		
		
		
		
		<name lang="en">Narrow passage</name>
		<text lang="en-GB" plural="true">Narrow Passages</text>
		<text lang="en-GB">Narrow Passage</text>
		
		
		<text lang="en">narrow passage</text>
		<text lang="en" plural="true">narrow passages</text>
		<lines thickness="12.5">
			<point x="-45" y="-70" />
			<point x="-20" y="-70" />
			<point x="-20" y="70" />
			<point x="-45" y="70" />
		</lines>
		<lines thickness="12.5">
			<point x="45" y="-70" />
			<point x="20" y="-70" />
			<point x="20" y="70" />
			<point x="45" y="70" />
		</lines>
	</symbol>

	<symbol kind="D" id="3.1">
		<name lang="en-GB">Lake</name>
		
		
		
		
		<name lang="en">Lake</name>
		<text lang="en-GB" plural="true">Lakes</text>
		<text lang="en-GB">Lake</text>
		
		
		<text lang="en">lake</text>
		<text lang="en" plural="true">lakes</text>
		<beziers thickness="10">
			<point x="-39" y="-10" />
			<point x="-39" y="-5" />
			<point x="-39" y="-5" />
			<point x="-39" y="0" />
			<point x="-39" y="20" />
			<point x="-13" y="20" />
			<point x="-13" y="0" />
			<point x="-13" y="-20" />
			<point x="13" y="-20" />
			<point x="13" y="0" />
			<point x="13" y="20" />
			<point x="39" y="20" />
			<point x="39" y="0" />
			<point x="39" y="-5" />
			<point x="39" y="-5" />
			<point x="39" y="-10" />
		</beziers>
		<beziers thickness="12.5">
			<point x="0" y="48.21" />
			<point x="40.71" y="48.21" />
			<point x="75" y="26.79" />
			<point x="75" y="0" />
			<point x="75" y="-26.79" />
			<point x="40.71" y="-48.21" />
			<point x="0" y="-48.21" />
			<point x="-40.71" y="-48.21" />
			<point x="-75" y="-26.79" />
			<point x="-75" y="0" />
			<point x="-75" y="26.79" />
			<point x="-40.71" y="48.21" />
			<point x="0" y="48.21" />
		</beziers>
	</symbol>

	<symbol kind="D" id="3.2">
		<name lang="en-GB">Pond</name>
		
		
		
		
		<name lang="en">Pond</name>
		<text lang="en-GB" plural="true">Ponds</text>
		<text lang="en-GB">Pond</text>
		
		
		<text lang="en">pond</text>
		<text lang="en" plural="true">ponds</text>
		<beziers thickness="10">
			<point x="-65" y="45" />
			<point x="-65" y="50" />
			<point x="-65" y="50" />
			<point x="-65" y="55" />
			<point x="-65" y="75" />
			<point x="-39" y="75" />
			<point x="-39" y="55" />
			<point x="-39" y="35" />
			<point x="-13" y="35" />
			<point x="-13" y="55" />
			<point x="-13" y="75" />
			<point x="13" y="75" />
			<point x="13" y="55" />
			<point x="13" y="35" />
			<point x="39" y="35" />
			<point x="39" y="55" />
			<point x="39" y="75" />
			<point x="65" y="75" />
			<point x="65" y="55" />
			<point x="65" y="50" />
			<point x="65" y="50" />
			<point x="65" y="45" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-40" y="10" />
			<point x="-60" y="-30" />
			<point x="-32" y="-66" />
			<point x="0" y="-66" />
			<point x="32" y="-66" />
			<point x="60" y="-30" />
			<point x="40" y="10" />
		</beziers>
	</symbol>

	<symbol kind="D" id="3.3" size-is-depth="true">
		<name lang="en-GB">Water hole</name>
		
		
		
		
		<name lang="en">Water hole</name>
		<text lang="en-GB" plural="true">Water Holes</text>
		<text lang="en-GB">Water Hole</text>
		
		
		<text lang="en">water hole</text>
		<text lang="en" plural="true">water holes</text>
		<beziers thickness="10">
			<point x="-65" y="45" />
			<point x="-65" y="50" />
			<point x="-65" y="50" />
			<point x="-65" y="55" />
			<point x="-65" y="75" />
			<point x="-39" y="75" />
			<point x="-39" y="55" />
			<point x="-39" y="35" />
			<point x="-13" y="35" />
			<point x="-13" y="55" />
			<point x="-13" y="75" />
			<point x="13" y="75" />
			<point x="13" y="55" />
			<point x="13" y="35" />
			<point x="39" y="35" />
			<point x="39" y="55" />
			<point x="39" y="75" />
			<point x="65" y="75" />
			<point x="65" y="55" />
			<point x="65" y="50" />
			<point x="65" y="50" />
			<point x="65" y="45" />
		</beziers>
		<lines thickness="12.5">
			<point x="-40" y="10" />
			<point x="0" y="-70" />
			<point x="40" y="10" />
		</lines>
	</symbol>

	<symbol kind="D" id="3.4" size-is-depth="true">
		<name lang="en-GB">River, stream, water course</name>
		
		
		
		
		<name lang="en">River, stream, water course</name>
		<text lang="en-GB" plural="true">Streams</text>
		<text lang="en-GB">Stream</text>
		
		
		<text lang="en">stream</text>
		<text lang="en" plural="true">streams</text>
		<beziers thickness="12.5">
			<point x="-60" y="80" />
				<point x="-65" y="75" />
				<point x="-65" y="75" />
			<point x="-70" y="70" />
				<point x="-90" y="50" />
				<point x="-70" y="30" />
			<point x="-50" y="50" />
				<point x="-30" y="70" />
				<point x="-10" y="50" />
			<point x="-30" y="30" />
				<point x="-50" y="10" />
				<point x="-30" y="-10" />
			<point x="-10" y="10" />
				<point x="10" y="30" />
				<point x="30" y="10" />
			<point x="10" y="-10" />
				<point x="-10" y="-30" />
				<point x="10" y="-50" />
			<point x="30" y="-30" />
				<point x="50" y="-10" />
				<point x="70" y="-30" />
			<point x="50" y="-50" />
				<point x="30" y="-70" />
				<point x="50" y="-90" />
			<point x="70" y="-70" />
				<point x="75" y="-65" />
				<point x="75" y="-65" />
			<point x="80" y="-60" />
		</beziers>
	</symbol>

	<symbol kind="D" id="3.5" size-is-depth="true">
		<name lang="en-GB">Minor water channel, ditch</name>
		
		
		
		
		<name lang="en">Minor water channel, ditch</name>
		<text lang="en-GB" plural="true">Ditches</text>
		<text lang="en-GB">Ditch</text>
		
		
		<text lang="en">ditch</text>
		<text lang="en" plural="true">ditches</text>
		<beziers thickness="10">
			<point x="-48" y="64" />
				<point x="-52" y="60" />
				<point x="-52" y="60" />
			<point x="-56" y="56" />
				<point x="-72" y="40" />
				<point x="-56" y="24" />
			<point x="-40" y="40" />
				<point x="-24" y="56" />
				<point x="-8" y="40" />
			<point x="-24" y="24" />
				<point x="-40" y="8" />
				<point x="-24" y="-8" />
			<point x="-8" y="8" />
				<point x="8" y="24" />
				<point x="24" y="8" />
			<point x="8" y="-8" />
				<point x="-8" y="-24" />
				<point x="8" y="-40" />
			<point x="24" y="-24" />
				<point x="40" y="-8" />
				<point x="56" y="-24" />
			<point x="40" y="-40" />
				<point x="24" y="-56" />
				<point x="40" y="-72" />
			<point x="56" y="-56" />
				<point x="60" y="-52" />
				<point x="60" y="-52" />
			<point x="64" y="-48" />
		</beziers>
		<lines thickness="10">
			<point x="-32" y="80" />
			<point x="-5" y="53" />
		</lines>
		<lines thickness="10">
			<point x="10" y="38" />
			<point x="38" y="10" />
		</lines>
		<lines thickness="10">
			<point x="53" y="-5" />
			<point x="80" y="-32" />
		</lines>
		<lines thickness="10">
			<point x="-80" y="32" />
			<point x="-53" y="5" />
		</lines>
		<lines thickness="10">
			<point x="-38" y="-10" />
			<point x="-10" y="-38" />
		</lines>
		<lines thickness="10">
			<point x="5" y="-53" />
			<point x="32" y="-80" />
		</lines>
	</symbol>

	<symbol kind="D" id="3.6">
		<name lang="en-GB">Narrow marsh</name>
		
		
		
		
		<name lang="en">Narrow marsh</name>
		<text lang="en-GB" plural="true">Narrow Marshes</text>
		<text lang="en-GB">Narrow Marsh</text>
		
		
		<text lang="en">narrow marsh</text>
		<text lang="en" plural="true">narrow marshes</text>
		<filled-circle radius="7.5">
			<point x="-50" y="50" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-25" y="25" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="25" y="-25" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="50" y="-50" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="3.7">
		<name lang="en-GB">Marsh</name>
		
		
		
		
		<name lang="en">Marsh</name>
		<text lang="en-GB" plural="true">Marshes</text>
		<text lang="en-GB">Marsh</text>
		
		
		<text lang="en">marsh</text>
		<text lang="en" plural="true">marshes</text>
		<lines thickness="12.5">
			<point x="-64" y="0" />
			<point x="64" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-48" y="32" />
			<point x="48" y="32" />
		</lines>
		<lines thickness="12.5">
			<point x="-48" y="-32" />
			<point x="48" y="-32" />
		</lines>
		<lines thickness="12.5">
			<point x="-32" y="64" />
			<point x="32" y="64" />
		</lines>
		<lines thickness="12.5">
			<point x="-32" y="-64" />
			<point x="32" y="-64" />
		</lines>
	</symbol>
	
	<symbol kind="D" id="3.8">
		<name lang="en-GB">Firm ground in marsh</name>
		
		
		
		
		<name lang="en">Firm ground in marsh</name>
		<text lang="en-GB" plural="true">Firm Ground in Marsh</text>
		<text lang="en-GB">Firm Ground in Marsh</text>
		
		
		<text lang="en">firm ground in marsh</text>
		<text lang="en" plural="true">firm ground in marsh</text>
		<filled-polygon>
			<point x="70" y="70" />
			<point x="70" y="57.5" />
			<point x="-70" y="57.5" />
			<point x="-70" y="70" />
		</filled-polygon>
		<filled-polygon>
			<point x="70" y="38.125" />
			<point x="70" y="25.625" />
			<point x="36.991" y="25.625" />
			<point x="31.765" y="31.875" />
			<point x="23.906" y="38.125" />
		</filled-polygon>
		<filled-polygon>
			<point x="-70" y="38.125" />
			<point x="-70" y="25.625" />
			<point x="-36.991" y="25.625" />
			<point x="-31.765" y="31.875" />
			<point x="-23.906" y="38.125" />
		</filled-polygon>
		<filled-polygon>
			<point x="-70" y="6.25" />
			<point x="-70" y="-6.25" />
			<point x="-44.564" y="-6.25" />
			<point x="-45" y="0" />
			<point x="-44.564" y="6.25" />
		</filled-polygon>
		<filled-polygon>
			<point x="70" y="6.25" />
			<point x="70" y="-6.25" />
			<point x="44.564" y="-6.25" />
			<point x="45" y="0" />
			<point x="44.564" y="6.25" />
		</filled-polygon>
		<filled-polygon>
			<point x="70" y="-38.125" />
			<point x="70" y="-25.625" />
			<point x="36.991" y="-25.625" />
			<point x="31.765" y="-31.875" />
			<point x="23.906" y="-38.125" />
		</filled-polygon>
		<filled-polygon>
			<point x="-70" y="-38.125" />
			<point x="-70" y="-25.625" />
			<point x="-36.991" y="-25.625" />
			<point x="-31.765" y="-31.875" />
			<point x="-23.906" y="-38.125" />
		</filled-polygon>
		<filled-polygon>
			<point x="70" y="-70" />
			<point x="70" y="-57.5" />
			<point x="-70" y="-57.5" />
			<point x="-70" y="-70" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="3.9">
		<name lang="en-GB">Well</name>
		
		
		
		
		<name lang="en">Well</name>
		<text lang="en-GB" plural="true">Wells</text>
		<text lang="en-GB">Well</text>
		
		
		<text lang="en">well</text>
		<text lang="en" plural="true">wells</text>
		<beziers thickness="10">
			<point x="-39" y="-60" />
			<point x="-39" y="-55" />
			<point x="-39" y="-55" />
			<point x="-39" y="-50" />
			<point x="-39" y="-30" />
			<point x="-13" y="-30" />
			<point x="-13" y="-50" />
			<point x="-13" y="-70" />
			<point x="13" y="-70" />
			<point x="13" y="-50" />
			<point x="13" y="-30" />
			<point x="39" y="-30" />
			<point x="39" y="-50" />
			<point x="39" y="-55" />
			<point x="39" y="-55" />
			<point x="39" y="-60" />
		</beziers>
		<circle thickness="12.5" radius="44">
			<point x="0" y="25" />
		</circle>
	</symbol>

	<symbol kind="D" id="3.10" size-is-depth="true">
		<name lang="en-GB">Spring</name>
		
		
		
		
		<name lang="en">Spring</name>
		<text lang="en-GB" plural="true">Springs</text>
		<text lang="en-GB">Spring</text>
		
		
		<text lang="en">spring</text>
		<text lang="en" plural="true">springs</text>
		<beziers thickness="12.5">
			<point x="-35" y="35" />
			<point x="-28" y="26" />
			<point x="-10" y="5" />
			<point x="1" y="7" />
			<point x="26" y="10" />
			<point x="40" y="0" />
			<point x="20" y="-20" />
			<point x="0" y="-40" />
			<point x="20" y="-60" />
			<point x="40" y="-40" />
			<point x="60" y="-20" />
			<point x="80" y="-40" />
			<point x="60" y="-60" />
			<point x="55" y="-66" />
			<point x="55" y="-69" />
			<point x="55" y="-75" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-10" y="50" />
			<point x="-40" y="103" />
			<point x="-103" y="40" />
			<point x="-50" y="10" />
		</beziers>
	</symbol>

	<symbol kind="D" id="3.11">
		<name lang="en-GB">Water tank, trough</name>
		
		
		
		
		<name lang="en">Water tank, trough</name>
		<text lang="en-GB" plural="true">Water Tanks</text>
		<text lang="en-GB">Water Tank</text>
		
		
		<text lang="en">water tank</text>
		<text lang="en" plural="true">water tanks</text>
		<beziers thickness="10">
			<point x="-65" y="45" />
			<point x="-65" y="50" />
			<point x="-65" y="50" />
			<point x="-65" y="55" />
			<point x="-65" y="75" />
			<point x="-39" y="75" />
			<point x="-39" y="55" />
			<point x="-39" y="35" />
			<point x="-13" y="35" />
			<point x="-13" y="55" />
			<point x="-13" y="75" />
			<point x="13" y="75" />
			<point x="13" y="55" />
			<point x="13" y="35" />
			<point x="39" y="35" />
			<point x="39" y="55" />
			<point x="39" y="75" />
			<point x="65" y="75" />
			<point x="65" y="55" />
			<point x="65" y="50" />
			<point x="65" y="50" />
			<point x="65" y="45" />
		</beziers>
		<polygon thickness="12.5">
			<point x="-50" y="10" />
			<point x="-50" y="-50" />
			<point x="50" y="-50" />
			<point x="50" y="10" />
		</polygon>
	</symbol>

	<symbol kind="D" id="4.1">
		<name lang="en-GB">Open land</name>
		
		
		
		
		<name lang="en">Open land</name>
		<text lang="en-GB" plural="true">Open Land</text>
		<text lang="en-GB">Open Land</text>
		
		
		<text lang="en">open land</text>
		<text lang="en" plural="true">open land</text>
		<polygon thickness="12.5" corners="round">
			<point x="0" y="66" />
			<point x="66" y="0" />
			<point x="0" y="-66" />
			<point x="-66" y="0" />
		</polygon>
	</symbol>

	<symbol kind="D" id="4.2">
		<name lang="en-GB">Semi-open land</name>
		
		
		
		
		<name lang="en">Semi-open land</name>
		<text lang="en-GB" plural="true">Semi-open Land</text>
		<text lang="en-GB">Semi-open Land</text>
		
		
		<text lang="en">semi-open land</text>
		<text lang="en" plural="true">semi-open land</text>
		<filled-circle radius="7.5">
			<point x="0" y="66" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="22" y="44" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="44" y="22" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="66" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="44" y="-22" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="22" y="-44" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-66" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-22" y="-44" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-44" y="-22" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-66" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-44" y="22" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-22" y="44" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="4.3">
		<name lang="en-GB">Forest corner</name>
		
		
		
		
		<name lang="en">Forest corner</name>
		<text lang="en-GB" plural="true">Forest Corners</text>
		<text lang="en-GB">Forest Corner</text>
		
		
		<text lang="en">forest corner</text>
		<text lang="en" plural="true">forest corners</text>
		<polygon thickness="12.5" corners="round">
			<point x="0" y="0" />
			<point x="0" y="66" />
			<point x="-66" y="0" />
			<point x="0" y="-66" />
			<point x="66" y="0" />
		</polygon>
	</symbol>

	<symbol kind="D" id="4.4">
		<name lang="en-GB">Clearing</name>
		
		
		
		
		<name lang="en">Clearing</name>
		<text lang="en-GB" plural="true">Clearings</text>
		<text lang="en-GB">Clearing</text>
		
		
		<text lang="en">clearing</text>
		<text lang="en" plural="true">clearings</text>
		<filled-circle radius="7.5">
			<point x="0" y="66" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="33" y="57.16" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="57.16" y="33" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="66" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="57.16" y="-33" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="33" y="-57.16" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-66" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-33" y="-57.16" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-57.16" y="-33" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-66" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-57.16" y="33" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-33" y="57.16" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="4.5">
		<name lang="en-GB">Thicket</name>
		
		
		
		
		
		
		<name lang="en">Thicket</name>
		<text lang="en-GB" plural="true">Thickets</text>
		<text lang="en-GB">Thicket</text>
		
		
		<text lang="en">thicket</text>
		<text lang="en" plural="true">thickets</text>
		<lines thickness="12.5">
			<point x="21" y="71" />
			<point x="-71" y="-21" />
		</lines>
		<lines thickness="12.5">
			<point x="47" y="47" />
			<point x="-47" y="-47" />
		</lines>
		<lines thickness="12.5">
			<point x="71" y="21" />
			<point x="-21" y="-71" />
		</lines>

		<lines thickness="12.5">
			<point x="-21" y="71" />
			<point x="71" y="-21" />
		</lines>
		<lines thickness="12.5">
			<point x="-47" y="47" />
			<point x="47" y="-47" />
		</lines>
		<lines thickness="12.5">
			<point x="-71" y="21" />
			<point x="21" y="-71" />
		</lines>
	</symbol>


	<symbol kind="D" id="4.6">
		<name lang="en-GB">hedge</name>
		
		
		
		
		<name lang="en">Linear thicket</name>
		<text lang="en-GB" plural="true">Hedges</text>
		<text lang="en-GB">Hedge</text>
		
		
		
		
		<text lang="en">thin thicket</text>
		<text lang="en" plural="true">thin thickets</text>
		<lines thickness="12.5">
			<point x="-75" y="-75" />
			<point x="-63" y="-63" />
		</lines>
		<lines thickness="12.5">
			<point x="75" y="75" />
			<point x="63" y="63" />
		</lines>
		<lines thickness="12.5" ends="flat">
			<point x="35" y="35" />
			<point x="12" y="12" />
		</lines>
		<lines thickness="12.5" ends="flat">
			<point x="-35" y="-35" />
			<point x="-12" y="-12" />
		</lines>
		<circle radius="17.5" thickness="10">
			<point x="0" y="0" />
		</circle>
		<circle radius="17.5" thickness="10">
			<point x="47.5" y="47.5" />
		</circle>
		<circle radius="17.5" thickness="10">
			<point x="-47.5" y="-47.5" />
		</circle>
	</symbol>

	<symbol kind="D" id="4.7">
		<name lang="en-GB">Vegetation boundary</name>
		
		
		
		
		<name lang="en">Vegetation boundary</name>
		<text lang="en-GB" plural="true">Vegetation Boundaries</text>
		<text lang="en-GB">Vegetation Boundary</text>
		
		
		<text lang="en">vegetation boundary</text>
		<text lang="en" plural="true">vegetation boundaries</text>
		<filled-circle radius="7.5">
			<point x="-50" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-25" y="45" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="25" y="15" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="50" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="25" y="-15" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-30" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-25" y="-45" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-50" y="-60" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="4.8">
		<name lang="en-GB">Copse</name>
		
		
		
		
		<name lang="en">Copse</name>
		<text lang="en-GB" plural="true">Copses</text>
		<text lang="en-GB">Copse</text>
		
		
		<text lang="en">copse</text>
		<text lang="en" plural="true">copses</text>
		<polygon thickness="12.5">
			<point x="-60" y="-35" />
			<point x="-23" y="70" />
			<point x="0" y="4.73" />
			<point x="23" y="70" />
			<point x="60" y="-35" />
		</polygon>
		<lines thickness="12.5">
			<point x="-23" y="-40" />
			<point x="-23" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="23" y="-40" />
			<point x="23" y="-70" />
		</lines>
	</symbol>

	<symbol kind="D" id="4.9">
		<name lang="en-GB">Distinctive tree</name>
		
		
		
		
		<name lang="en">Distinctive tree</name>
		<text lang="en-GB" plural="true">Single Trees</text>
		<text lang="en-GB">Single Tree</text>
		
		
		
		
		<text lang="en">lone tree</text>
		<text lang="en" plural="true">lone trees</text>
		<polygon thickness="12.5">
			<point x="0" y="70" />
			<point x="-37" y="-35" />
			<point x="37" y="-35" />
		</polygon>
		<lines thickness="12.5">
			<point x="0" y="-40" />
			<point x="0" y="-70" />
		</lines>
	</symbol>
	
	<symbol kind="D" id="4.10">
		<name lang="en-GB">Tree stump, Root stock</name>
		
		
		
		
		<name lang="en">Tree stump, Root stock</name>
		<text lang="en-GB" plural="true">Root Stocks</text>
		<text lang="en-GB">Root Stock</text>
		
		
		<text lang="en">root stock</text>
		<text lang="en" plural="true">root stocks</text>
		<circle thickness="12.5" radius="60">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5" ends="flat">
			<point x="42" y="42" />
			<point x="-42" y="-42" />
		</lines>
		<lines thickness="12.5" ends="flat">
			<point x="42" y="-42" />
			<point x="-42" y="42" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.1">
		<name lang="en-GB">Road</name>
		
		
		
		
		<name lang="en">Road</name>
		<text lang="en-GB" plural="true">Roads</text>
		<text lang="en-GB">Road</text>
		
		
		<text lang="en">road</text>
		<text lang="en" plural="true">roads</text>
		<lines thickness="15">
			<point x="-73" y="-73" />
			<point x="73" y="73" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.2">
		<name lang="en-GB">Track / Path</name>
		
		
		
		
		<name lang="en">Track / Path</name>
		<text lang="en-GB" plural="true">Paths</text>
		<text lang="en-GB">Path</text>
		
		
		<text lang="en">path</text>
		<text lang="en" plural="true">paths</text>
		<lines thickness="12.5">
			<point x="-75" y="-75" />
			<point x="-39" y="-39" />
		</lines>
		<lines thickness="12.5">
			<point x="18" y="18" />
			<point x="-18" y="-18" />
		</lines>
		<lines thickness="12.5">
			<point x="75" y="75" />
			<point x="39" y="39" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.3">
		<name lang="en-GB">Ride</name>
		
		
		
		
		<name lang="en">Ride</name>
		<text lang="en-GB" plural="true">Rides</text>
		<text lang="en-GB">Ride</text>
		
		
		<text lang="en">ride</text>
		<text lang="en" plural="true">rides</text>
		<filled-circle radius="7.5">
			<point x="48" y="72" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="24" y="48" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="24" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-24" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-48" y="-24" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-72" y="-48" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="72" y="48" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="48" y="24" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="24" y="0" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="0" y="-24" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-24" y="-48" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-48" y="-72" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="5.4">
		<name lang="en-GB">Bridge</name>
		
		
		
		<name lang="en">Bridge</name>
		<text lang="en-GB" plural="true">Bridges</text>
		<text lang="en-GB">Bridge</text>
		
		
		<text lang="en">bridge</text>
		<text lang="en" plural="true">bridges</text>
		<lines thickness="12.5">
			<point x="20" y="70" />
			<point x="20" y="40" />
			<point x="-40" y="-20" />
			<point x="-70" y="-20" />
		</lines>
		<lines thickness="12.5">
			<point x="70" y="20" />
			<point x="40" y="20" />
			<point x="-20" y="-40" />
			<point x="-20" y="-70" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.5">
		<name lang="en-GB">Power line</name>
		
		
		
		<name lang="en">Power line</name>
		<text lang="en-GB" plural="true">Power Lines</text>
		<text lang="en-GB">Power Line</text>
		
		
		<text lang="en">power line</text>
		<text lang="en" plural="true">power lines</text>
		<lines thickness="12.5">
			<point x="-75" y="-75" />
			<point x="75" y="75" />
		</lines>
		<lines thickness="12.5">
			<point x="17.5" y="57.5" />
			<point x="57.5" y="17.5" />
		</lines>
		<lines thickness="12.5">
			<point x="-17.5" y="-57.5" />
			<point x="-57.5" y="-17.5" />
		</lines>
		<lines thickness="12.5">
			<point x="-20" y="20" />
			<point x="20" y="-20" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.6">
		<name lang="en-GB">Power line pylon</name>
		
		
		
		<name lang="en">Power line pylon</name>
		<text lang="en-GB" plural="true">Pylons</text>
		<text lang="en-GB">Pylon</text>
		
		
		<text lang="en">power pylon</text>
		<text lang="en" plural="true">power pylons</text>
		<lines thickness="10">
			<point x="-75" y="-75" />
			<point x="75" y="75" />
		</lines>
		<lines thickness="10">
			<point x="25" y="55" />
			<point x="55" y="25" />
		</lines>
		<lines thickness="10">
			<point x="-25" y="-55" />
			<point x="-55" y="-25" />
		</lines>
		<lines thickness="10">
			<point x="-15" y="15" />
			<point x="15" y="-15" />
		</lines>
		<circle radius="40" thickness="10">
			<point x="0" y="0" />
		</circle>
	</symbol>

	<symbol kind="D" id="5.7">
		<name lang="en-GB">Tunnel</name>
		
		
		
		<name lang="en">Tunnel</name>
		<text lang="en-GB" plural="true">Tunnels</text>
		<text lang="en-GB">Tunnel</text>
		
		
		<text lang="en">tunnel</text>
		<text lang="en" plural="true">tunnels</text>
		<lines thickness="12.5">
			<point x="-65" y="-30" />
			<point x="65" y="-30" />
		</lines>
		<lines thickness="12.5">
			<point x="-65" y="30" />
			<point x="65" y="30" />
		</lines>
		<lines thickness="12.5">
			<point x="-25" y="65" />
			<point x="0" y="30" />
			<point x="25" y="65" />
		</lines>
		<lines thickness="12.5">
			<point x="-25" y="-65" />
			<point x="0" y="-30" />
			<point x="25" y="-65" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.8">
		<name lang="en-GB">Stone wall</name>
		
		
		
		<name lang="en">Stone wall</name>
		<text lang="en-GB" plural="true">Walls</text>
		<text lang="en-GB">Wall</text>
		
		
		<text lang="en">stone wall</text>
		<text lang="en" plural="true">stone walls</text>
		<lines thickness="12.5">
			<point x="-75" y="-75" />
			<point x="75" y="75" />
		</lines>
		<filled-circle radius="20">
			<point x="0" y="0" />
		</filled-circle>
		<filled-circle radius="20">
			<point x="45" y="45" />
		</filled-circle>
		<filled-circle radius="20">
			<point x="-45" y="-45" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="5.9">
		<name lang="en-GB">Fence</name>
		
		
		
		<name lang="en">Fence</name>
		<text lang="en-GB" plural="true">Fences</text>
		<text lang="en-GB">Fence</text>
		
		
		<text lang="en">fence</text>
		<text lang="en" plural="true">fences</text>
		<lines thickness="12.5">
			<point x="50" y="70" />
			<point x="-50" y="-30" />
		</lines>
		<lines thickness="12.5">
			<point x="50" y="70" />
			<point x="50" y="30" />
		</lines>
		<lines thickness="12.5">
			<point x="16.67" y="36.67" />
			<point x="16.67" y="-3.33" />
		</lines>
		<lines thickness="12.5">
			<point x="-16.67" y="3.33" />
			<point x="-16.67" y="-36.67" />
		</lines>
		<lines thickness="12.5">
			<point x="-50" y="-30" />
			<point x="-50" y="-70" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.10">
		<name lang="en-GB">Crossing point</name>
		
		
		
		<name lang="en">Crossing point</name>
		<text lang="en-GB" plural="true">Crossing Points</text>
		<text lang="en-GB">Crossing Point</text>
		
		
		<text lang="en">crossing point</text>
		<text lang="en" plural="true">crossing points</text>
		<lines thickness="12.5">
			<point x="-65" y="0" />
			<point x="-20" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="65" y="0" />
			<point x="20" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-20" y="70" />
			<point x="-20" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="20" y="70" />
			<point x="20" y="-70" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.11">
		<name lang="en-GB">Building</name>
		
		
		
		<name lang="en">Building</name>
		<text lang="en-GB" plural="true">Buildings</text>
		<text lang="en-GB">Building</text>
		
		
		<text lang="en">building</text>
		<text lang="en" plural="true">buildings</text>
		<filled-polygon>
			<point x="-50" y="-50" />
			<point x="-50" y="50" />
			<point x="50" y="50" />
			<point x="50" y="-50" />
		</filled-polygon>
	</symbol>

	<symbol kind="D" id="5.12">
		<name lang="en-GB">Paved area</name>
		
		
		
		<name lang="en">Paved area</name>
		<text lang="en-GB" plural="true">Paved Areas</text>
		<text lang="en-GB">Paved Area</text>
		
		
		<text lang="en">paved area</text>
		<text lang="en" plural="true">paved areas</text>
		<polygon thickness="12.5">
			<point x="-60" y="-60" />
			<point x="-60" y="60" />
			<point x="60" y="60" />
			<point x="60" y="-60" />
		</polygon>
		<lines thickness="12.5">
			<point x="-12" y="60" />
			<point x="-60" y="12" />
		</lines>
		<lines thickness="12.5">
			<point x="36" y="60" />
			<point x="-60" y="-36" />
		</lines>
		<lines thickness="12.5">
			<point x="-36" y="-60" />
			<point x="60" y="36" />
		</lines>
		<lines thickness="12.5">
			<point x="12" y="-60" />
			<point x="60" y="-12" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.13">
		<name lang="en-GB">Ruin</name>
		
		
		
		
		<name lang="en">Ruin</name>
		<text lang="en-GB" plural="true">Ruins</text>
		<text lang="en-GB">Ruin</text>
		
		
		<text lang="en">ruin</text>
		<text lang="en" plural="true">ruins</text>
		<lines thickness="12.5">
			<point x="-60" y="15" />
			<point x="-60" y="60" />
			<point x="-15" y="60" />
		</lines>
		<lines thickness="12.5">
			<point x="-60" y="-15" />
			<point x="-60" y="-60" />
			<point x="-15" y="-60" />
		</lines>
		<lines thickness="12.5">
			<point x="60" y="15" />
			<point x="60" y="60" />
			<point x="15" y="60" />
		</lines>
		<lines thickness="12.5">
			<point x="60" y="-15" />
			<point x="60" y="-60" />
			<point x="15" y="-60" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.14">
		<name lang="en-GB">Pipeline</name>
		
		
		
		
		
		
		<name lang="en">Pipeline</name>
		<text lang="en-GB" plural="true">Pipelines</text>
		<text lang="en-GB">Pipeline</text>
		
		
		<text lang="en">pipeline</text>
		<text lang="en" plural="true">pipelines</text>
		<lines thickness="12.5">
			<point x="70" y="70" />
			<point x="-57.5" y="-57.5" />
		</lines>
		<lines thickness="12.5">
			<point x="-70" y="-30" />
			<point x="-30" y="-30" />
			<point x="-30" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-30" y="10" />
			<point x="10" y="10" />
			<point x="10" y="-30" />
		</lines>
		<lines thickness="12.5">
			<point x="10" y="50" />
			<point x="50" y="50" />
			<point x="50" y="10" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.15">
		<name lang="en-GB">Tower</name>
		
		
		
		
		<name lang="en">Tower</name>
		<text lang="en-GB" plural="true">Towers</text>
		<text lang="en-GB">Tower</text>
		
		
		<text lang="en">tower</text>
		<text lang="en" plural="true">towers</text>
		<lines thickness="12.5">
			<point x="-50" y="60" />
			<point x="50" y="60" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="60" />
			<point x="0" y="-60" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.16">
		<name lang="en-GB">Shooting platform</name>
		
		
		
		
		<name lang="en">Shooting platform</name>
		<text lang="en-GB" plural="true">Shooting Platforms</text>
		<text lang="en-GB">Shooting Platform</text>
		
		
		<text lang="en">shooting platform</text>
		<text lang="en" plural="true">shooting platforms</text>
		<lines thickness="12.5">
			<point x="30" y="60" />
			<point x="-30" y="60" />
			<point x="-30" y="-60" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.17">
		<name lang="en-GB">Boundary stone, Cairn</name>
		
		
		
		
		<name lang="en">Boundary stone, Cairn</name>
		<text lang="en-GB" plural="true">Cairns</text>
		<text lang="en-GB">Cairn</text>
		
		
		<text lang="en">cairn</text>
		<text lang="en" plural="true">cairns</text>
		<circle radius="60" thickness="12.5">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="20">
			<point x="0" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="D" id="5.18">
		<name lang="en-GB">Fodder rack</name>
		
		
		
		
		<name lang="en">Fodder rack</name>
		<text lang="en-GB" plural="true">Fodder Racks</text>
		<text lang="en-GB">Fodder Rack</text>
		
		
		<text lang="en">fodder rack</text>
		<text lang="en" plural="true">fodder racks</text>
		<lines thickness="12.5">
			<point x="0" y="-65" />
			<point x="0" y="65" />
		</lines>
		<lines thickness="12.5">
			<point x="-30" y="35" />
			<point x="0" y="65" />
			<point x="30" y="35" />
		</lines>
		<lines thickness="12.5">
			<point x="-30" y="-65" />
			<point x="30" y="-65" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.19">
		<name lang="en-GB">Charcoal burning ground</name>
		
		
		
		
		<name lang="en">Charcoal burning ground</name>
		<text lang="en-GB" plural="true">Platforms</text>
		<text lang="en-GB">Platform</text>
		
		
		<text lang="en">charcoal burning ground</text>
		<text lang="en" plural="true">charcoal burning grounds</text>
		<circle radius="68" thickness="12.5">
			<point x="0" y="0" />
		</circle>
		<polygon thickness="10">
			<point x="0" y="68" />
			<point x="58.9" y="-34" />
			<point x="-58.9" y="-34" />
		</polygon>
	</symbol>

	<symbol kind="D" id="5.20">
		<name lang="en-GB">Monument or statue</name>
		
		
		
		
		<name lang="en">Monument or statue</name>
		<text lang="en-GB" plural="true">Monuments</text>
		<text lang="en-GB">Monument</text>
		
		
		<text lang="en">statue</text>
		<text lang="en" plural="true">statues</text>
		<lines thickness="12.5">
			<point x="-55" y="-60" />
			<point x="55" y="-60" />
		</lines>
		<lines thickness="12.5">
			<point x="-35" y="-60" />
			<point x="0" y="60" />
			<point x="35" y="-60" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.23">
		<name lang="en-GB">Building pass-through</name>
		
		
		
		
		<name lang="en">Building pass-through</name>
		<text lang="en-GB" plural="true">Building Pass-throughs</text>
		<text lang="en-GB">Building Pass-through</text>
		
		
		<text lang="en">building pass-through</text>
		<text lang="en" plural="true">building pass-throughs</text>
		<lines thickness="12.5">
			<point x="-60" y="60" />
			<point x="60" y="60" />
		</lines>
		<lines thickness="12.5">
			<point x="-40" y="60" />
			<point x="-40" y="-60" />
		</lines>
		<lines thickness="12.5">
			<point x="40" y="60" />
			<point x="40" y="-60" />
		</lines>
	</symbol>

	<symbol kind="D" id="5.24">
		<name lang="en-GB">Stairway</name>
		
		
		
		
		<name lang="en">Stairway</name>
		<text lang="en-GB" plural="true">Stairways</text>
		<text lang="en-GB">Stairway</text>
		
		
		<text lang="en">stairway</text>
		<text lang="en" plural="true">stairways</text>
		<lines thickness="12.5">
			<point x="-70" y="-45" />
			<point x="-35" y="-45" />
			<point x="-35" y="-15" />
			<point x="0" y="-15" />
			<point x="0" y="15" />
			<point x="35" y="15" />
			<point x="35" y="45" />
			<point x="70" y="45" />
		</lines>
	</symbol>

	<symbol kind="D" id="6.1">
		<name lang="en-GB">Special item</name>
		
		
		
		
		<name lang="en">Special item</name>
		<text lang="en-GB" plural="true">Special Items</text>
		<text lang="en-GB">Special Item</text>
		
		
		<text lang="en">special item</text>
		<text lang="en" plural="true">special items</text>
		<lines thickness="12.5">
			<point x="45" y="45" />
			<point x="-45" y="-45" />
		</lines>
		<lines thickness="12.5">
			<point x="-45" y="45" />
			<point x="45" y="-45" />
		</lines>
	</symbol>

	<symbol kind="D" id="6.2">
		<name lang="en-GB">Special item</name>
		
		
		
		
		<name lang="en">Special item</name>
		<text lang="en-GB" plural="true">Special Items</text>
		<text lang="en-GB">Special Item</text>
		
		
		<text lang="en">special item</text>
		<text lang="en" plural="true">special items</text>
		<circle radius="55" thickness="12.5">
			<point x="0" y="0" />
		</circle>
	</symbol>

	<!-- Kind "E". Symbols that go only in column E:
	     appearance.  {0} is the object being described. -->

	<symbol kind="E" id="8.1">
		<name lang="en-GB">Low</name>
		
		
		
		
		<name lang="en">Low</name>
		<text lang="en-GB">{0}, Low</text>
		
		<text lang="en">low {0}</text>
		<beziers thickness="12.5">
			<point x="-70" y="-10" />
			<point x="-30" y="20" />
			<point x="30" y="20" />
			<point x="70" y="-10" />
		</beziers>
	</symbol>

	<symbol kind="E" id="8.2">
		<name lang="en-GB">Shallow</name>
		
		
		
		<name lang="en">Shallow</name>
		<text lang="en-GB">{0}, Shallow</text>
		
		<text lang="en">shallow {0}</text>
		<beziers thickness="12.5">
			<point x="-70" y="10" />
			<point x="-30" y="-20" />
			<point x="30" y="-20" />
			<point x="70" y="10" />
		</beziers>
	</symbol>

	<symbol kind="E" id="8.3">
		<name lang="en-GB">Deep</name>
		
		
		
		<name lang="en">Deep</name>
		<text lang="en-GB">{0},  Deep</text>
		
		<text lang="en">deep {0}</text>
		<beziers thickness="12.5">
			<point x="-70" y="70" />
				<point x="-35" y="72" />
				<point x="-30" y="50" />
			<point x="-30" y="10" />
				<point x="-30" y="-30" />
				<point x="-30" y="-70" />
			<point x="0" y="-70" />
				<point x="30" y="-70" />
				<point x="30" y="-30" />
			<point x="30" y="10" />
				<point x="30" y="50" />
				<point x="35" y="72" />
			<point x="70" y="70" />
		</beziers>
	</symbol>

	<symbol kind="E" id="8.4">
		<name lang="en-GB">Overgrown</name>
		
		
		
		<name lang="en">Overgrown</name>
		<text lang="en-GB">{0}, Overgrown</text>
		
		<text lang="en">overgrown {0}</text>
		<lines thickness="10">
			<point x="42" y="64" />
			<point x="42" y="-64" />
		</lines>
		<lines thickness="10">
			<point x="14" y="64" />
			<point x="14" y="-64" />
		</lines>
		<lines thickness="10">
			<point x="-14" y="64" />
			<point x="-14" y="-64" />
		</lines>
		<lines thickness="10">
			<point x="-42" y="64" />
			<point x="-42" y="-64" />
		</lines>
		<lines thickness="10">
			<point x="64" y="42" />
			<point x="-64" y="42" />
		</lines>
		<lines thickness="10">
			<point x="64" y="14" />
			<point x="-64" y="14" />
		</lines>
		<lines thickness="10">
			<point x="64" y="-14" />
			<point x="-64" y="-14" />
		</lines>
		<lines thickness="10">
			<point x="64" y="-42" />
			<point x="-64" y="-42" />
		</lines>
	</symbol>
	
	<symbol kind="E" id="8.5">
		<name lang="en-GB">Open</name>
		
		
		
		<name lang="en">Open</name>
		<text lang="en-GB">{0}, Open</text>
		
		<text lang="en">open {0}</text>
		<filled-circle radius="7.5">
			<point x="-60" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-20" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="20" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="20" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="-20" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-60" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="-20" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="20" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="-60" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="-20" />
		</filled-circle>
		<filled-circle radius="7.5">
			<point x="60" y="20" />
		</filled-circle>
	</symbol>

	<symbol kind="E" id="8.6">
		<name lang="en-GB">Rocky, stony</name>
		
		
		
		<name lang="en">Rocky, stony</name>
		<text lang="en-GB">{0}, Rocky</text>
		
		
		<text lang="en">rocky {0}</text>
		<filled-polygon>
			<point x="-72" y="0" />
			<point x="-44.25" y="48" />
			<point x="-16.5" y="0" />
		</filled-polygon>
		<filled-polygon>
			<point x="72" y="0" />
			<point x="44.25" y="48" />
			<point x="16.5" y="0" />
		</filled-polygon>
		<filled-polygon>
			<point x="-27.75" y="-48" />
			<point x="0" y="0" />
			<point x="27.75" y="-48" />
		</filled-polygon>
	</symbol>

	<symbol kind="E" id="8.7">
		<name lang="en-GB">Marshy</name>
		
		
		
		<name lang="en">Marshy</name>
		<text lang="en-GB">{0}, Marshy</text>
		
		
		<text lang="en">marshy {0}</text>
		<lines thickness="12.5">
			<point x="30" y="35" />
			<point x="-30" y="35" />
		</lines>
		<lines thickness="12.5">
			<point x="30" y="0" />
			<point x="-30" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="30" y="-35" />
			<point x="-30" y="-35" />
		</lines>
	</symbol>

	<symbol kind="E" id="8.8">
		<name lang="en-GB">Sandy</name>
		
		
		
		<name lang="en">Sandy</name>
		<text lang="en-GB">{0}, Sandy</text>
		
		<text lang="en">sandy {0}</text>
		<filled-circle radius="5">
			<point x="-15" y="-31" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="48" y="2" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-70" y="-31" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="17" y="-46" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-34" y="13" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-24" y="30" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="28" y="44" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-4" y="26" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="47" y="-45" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="38" y="19" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="33" y="-64" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="62" y="41" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-64" y="20" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-65" y="62" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="56" y="-25" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="69" y="-67" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-41" y="42" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-70" y="-65" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="20" y="-7" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-39" y="-65" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="56" y="63" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-52" y="-48" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-34" y="-6" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-6" y="65" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-21" y="-69" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="67" y="-49" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-51" y="-30" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-2" y="0" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-61" y="-8" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="19" y="69" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="6" y="46" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="0" y="-56" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="6" y="-25" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-25" y="-50" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="19" y="28" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="69" y="-12" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="66" y="19" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-66" y="38" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-24" y="65" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="35" y="-21" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-33" y="-33" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="51" y="-63" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="38" y="67" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="14" y="-70" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-44" y="66" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="13" y="10" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-14" y="47" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-17" y="-12" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-16" y="12" />
		</filled-circle>
		<filled-circle radius="5">
			<point x="-51" y="7" />
		</filled-circle>
	</symbol>

	<symbol kind="E" id="8.9">
		<name lang="en-GB">Needle-leaved</name>
		
		
		
		
		
		
		<name lang="en">Needle-leaved</name>
		<text lang="en-GB">{0}, Needle-leaved</text>
		
		<text lang="en">needle-leaved {0}</text>
		<polygon thickness="12.5">
			<point x="0" y="70" />
			<point x="-35" y="15" />
			<point x="35" y="15" />
		</polygon>
		<lines thickness="12.5">
			<point x="-17" y="10" />
			<point x="-40" y="-35" />
			<point x="40" y="-35" />
			<point x="17" y="10" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="-40" />
			<point x="0" y="-70" />
		</lines>
	</symbol>

	<symbol kind="E" id="8.10">
		<name lang="en-GB">Broad-leaved</name>
		
		
		
		<name lang="en">Broad-leaved</name>
		<text lang="en-GB">{0}, Broad-leaved</text>
		
		<text lang="en">broad-leaved {0}</text>
		<beziers thickness="12.5">
			<point x="0" y="-20" />
			<point x="15" y="-70" />
			<point x="71.45" y="-28.99" />
			<point x="28.53" y="0.73" />
		</beziers>
		<beziers thickness="12.5">
			<point x="28.53" y="0.73" />
			<point x="80.72" y="-0.46" />
			<point x="59.16" y="65.9" />
			<point x="17.63" y="34.27" />
		</beziers>
		<beziers thickness="12.5">
			<point x="17.63" y="34.27" />
			<point x="34.89" y="83.54" />
			<point x="-34.89" y="83.54" />
			<point x="-17.63" y="34.27" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-17.63" y="34.27" />
			<point x="-59.16" y="65.9" />
			<point x="-80.72" y="-0.46" />
			<point x="-28.53" y="0.73" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-28.53" y="0.73" />
			<point x="-71.45" y="-28.99" />
			<point x="-15" y="-70" />
			<point x="0" y="-20" />
		</beziers>
		<beziers thickness="12.5">
			<point x="0" y="-20" />
			<point x="0" y="-40" />
			<point x="0" y="-60" />
			<point x="7" y="-70" />
		</beziers>
	</symbol>

	<symbol kind="E" id="8.11">
		<name lang="en-GB">Ruined</name>
		
		
		
		<name lang="en">Ruined</name>
		<text lang="en-GB">ruined {0}</text>
		<text lang="en">ruined {0}</text>
		<beziers thickness="12.5">
			<point x="-60" y="-60" />
			<point x="-58" y="8" />
			<point x="-67" y="44" />
			<point x="-45" y="58" />
			<point x="-25" y="70" />
			<point x="18" y="20" />
			<point x="60" y="-30" />
		</beziers>
		<lines thickness="12.5">
			<point x="20" y="-30" />
			<point x="60" y="-30" />
			<point x="60" y="10" />
		</lines>
	</symbol>

	<!-- Kind "F". Symbols that go only in column F:
	     combinations. -->

	<!--
	For junction and crossing symbols. The following text is replaced as follows:
	    {0}  - the primary (column D) symbol text
		{1}  - the second symbol (column E) symbol text
		
    If all the following conditions are true:
	   a) There is no symbol in column E, the symbol in column E is a descriptive symbol instead of
	        another main symbol, or column D and E have the same symbol.
	   b) A "plural-text" exists for the symbol in column D.
	   
    Then special symbols (which only have text) are used for the text. 10.1single, 10.2single. 
	In this text, {0} is replaced with the regular text of the main symbol, {1} is replaced with the plural-text of the main symbol.
	
	NOTE: plural-text is required for these symbols, because it is possible to have, for example, "between road junctions".
	-->
	
	<symbol kind="F" id="10.1">
		<name lang="en-GB">Crossing</name>
		
		
		
		<name lang="en">Crossing</name>
		<text lang="en-GB">{0}/{1} crossing</text>
		
		
		<text lang="en">{0} and {1} crossing</text>
		<text lang="en" plural="true">{0} and {1} crossings</text>
		<lines thickness="12.5">
			<point x="70" y="70" />
			<point x="-70" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-70" y="70" />
			<point x="70" y="-70" />
		</lines>
	</symbol>

	<symbol kind="F" id="10.1single">
		<name lang="en-GB">Crossing (objects of same kind)</name>
		
		
		
		<name lang="en">Crossing (objects of same kind)</name>
		<text lang="en-GB">{0} crossing</text>
		
		
		<text lang="en">{0} crossing</text>
		<text lang="en" plural="true">{0} crossings</text>
	</symbol>
	
	<symbol kind="F" id="10.2">
		<name lang="en-GB">Junction</name>
		
		
		
		<name lang="en">Junction</name>
		<text lang="en-GB">{0}/{1} Junction</text>
		
		
		
		<text lang="en">{0} and {1} junction</text>
		<text lang="en" plural="true">{0} and {1} junctions</text>
		<lines thickness="12.5">
			<point x="55" y="70" />
			<point x="-55" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-55" y="70" />
			<point x="0" y="0" />
		</lines>
	</symbol>

	<symbol kind="F" id="10.2single">
		<name lang="en-GB">Junction (objects of same kind)</name>
		
		
		
		<name lang="en">Junction (objects of same kind)</name>
		<text lang="en-GB">{0} Junction</text>
		
		
		
		<text lang="en">{0} junction</text>
		<text lang="en" plural="true">{0} junctions</text>
	</symbol>

	<!-- The dimensions of the symbol don't have a symbol, just text. Note that
	       different text is used for high and deep symbols, which is controlled by the
		   size-is-depth attribute on the symbol being described. 
		   {0} is the size of the feature
    -->
	<symbol kind="F" id="9.1high">
		<name lang="en-GB">Height of feature</name>
		
		
		
		
		
		<name lang="en">Height of feature</name>
		<text lang="en-GB">{0}</text>
		
		
		<text lang="en">{0} high</text>
	</symbol>

	<symbol kind="F" id="9.1deep">
		<name lang="en-GB">Depth of feature</name>
		
		
		
		<name lang="en">Depth of feature</name>
		<text lang="en-GB">{0}</text>
		
		<text lang="en">{0} deep</text>
	</symbol>

	<symbol kind="F" id="9.2">
		<name lang="en-GB">Size of feature</name>
		
		
		
		<name lang="en">Size of feature</name>
		<text lang="en-GB">{0} x {1}</text>
		
		<text lang="en">{0} by {1}</text>
	</symbol>

	<symbol kind="F" id="9.3high">
		<name lang="en-GB">Height of feature on slope</name>
		
		
		
		<name lang="en">Height of feature on slope</name>
		<text lang="en-GB">{0}/{1} </text>
		
		<text lang="en">{0} to {1} high</text>
	</symbol>

	<symbol kind="F" id="9.3deep">
		<name lang="en-GB">Depth of feature on slope</name>
		
		
		
		<name lang="en">Depth of feature on slope</name>
		<text lang="en-GB">{0}/{1}</text>
		
		<text lang="en">{0} to {1} deep</text>
	</symbol>

	<!-- Note that in the below, {0} and {1} are replaced with the 
	       contents of text from one of the other 9.x symbols above, so
		   the final result could be "5m by 3m and 2m by 1m".
    -->
	<symbol kind="F" id="9.4">
		<name lang="en-GB">Size of two features</name>
		
		
		
		<name lang="en">Size of two features</name>
		<text lang="en-GB">{0} &amp; {1}</text>
		
		<text lang="en">{0} and {1}</text>
	</symbol>


	<!-- Kind "G". Symbols that go only in column G:
	     flag location. 
		 
		 Except for "between" symbol, which is treated special, the item being
		 described is {0}.
		 -->

	<symbol kind="G" id="11.1N">
		<name lang="en-GB">North side</name>
		
		
		
		
		
		<name lang="en">North side</name>
		<text lang="en-GB">{0}, N. Side</text>
		
		
		<text lang="en">N side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="-20" />
		</circle>
		<filled-circle radius="12.5">
			<point x="0" y="65" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1NE">
		<name lang="en-GB">North-east side</name>
		
		
		
		
		
		<name lang="en">North-east side</name>
		<text lang="en-GB">{0}, NE. Side</text>
		
		
		<text lang="en">NE side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="-14.14" y="-14.14" />
		</circle>
		<filled-circle radius="12.5">
			<point x="45.96" y="45.96" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1E">
		<name lang="en-GB">East side</name>
		
		
		
		
		
		<name lang="en">East side</name>
		<text lang="en-GB">{0}, E. Side</text>
		
		
		<text lang="en">E side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="-20" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="65" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1SE">
		<name lang="en-GB">South-east side</name>
		
		
		
		
		
		<name lang="en">South-east side</name>
		<text lang="en-GB">{0}, SE. Side</text>
		
		
		<text lang="en">SE side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="-14.14" y="14.14" />
		</circle>
		<filled-circle radius="12.5">
			<point x="45.96" y="-45.96" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1S">
		<name lang="en-GB">South side</name>
		
		
		
		
		
		<name lang="en">South side</name>
		<text lang="en-GB">{0}, S. Side</text>
		
		
		
		<text lang="en">S side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="20" />
		</circle>
		<filled-circle radius="12.5">
			<point x="0" y="-65" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1SW">
		<name lang="en-GB">South-west side</name>
		
		
		
		
		
		<name lang="en">South-west side</name>
		<text lang="en-GB">{0}, SW. Side</text>
		
		
		<text lang="en">SW side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="14.14" y="14.14" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-45.96" y="-45.96" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1W">
		<name lang="en-GB">West side</name>
		
		
		
		
		
		
		
		
		<name lang="en">West side</name>
		<text lang="en-GB">{0}, W. Side</text>
		
		
		<text lang="en">W side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="20" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-65" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.1NW">
		<name lang="en-GB">North-west side</name>
		
		
		
		
		
		<name lang="en">North-west side</name>
		<text lang="en-GB">{0}, NW. Side</text>
		
		
		
		<text lang="en">NW side of {0}</text>
		<circle radius="55" thickness="10">
			<point x="14.14" y="-14.14" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-45.96" y="45.96" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.2N">
		<name lang="en-GB">North edge</name>
		
		
		
		
		
		<name lang="en">North edge</name>
		<text lang="en-GB">{0}, N. Edge</text>
		
		
		<text lang="en">N edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="0" y="35" />
			<point x="0" y="75" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2NE">
		<name lang="en-GB">North-east edge</name>
		
		
		
		
		
		<name lang="en">North-east edge</name>
		<text lang="en-GB">{0}, NE. Edge</text>
		
		
		<text lang="en">NE edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="24.75" y="24.75" />
			<point x="53.03" y="53.03" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2E">
		<name lang="en-GB">East edge</name>
		
		
		
		
		
		<name lang="en">East edge</name>
		<text lang="en-GB">{0}, E. Edge</text>
		
		
		<text lang="en">E edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="35" y="0" />
			<point x="75" y="0" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2SE">
		<name lang="en-GB">South-east edge</name>
		
		
		
		
		
		<name lang="en">South-east edge</name>
		<text lang="en-GB">{0}, SE. Edge</text>
		
		
		<text lang="en">SE edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="24.75" y="-24.75" />
			<point x="53.03" y="-53.03" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2S">
		<name lang="en-GB">South edge</name>
		
		
		
		
		
		<name lang="en">South edge</name>
		<text lang="en-GB">{0}, S. Edge</text>
		
		
		<text lang="en">S edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="0" y="-35" />
			<point x="0" y="-75" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2SW">
		<name lang="en-GB">South-west edge</name>
		
		
		
		
		
		<name lang="en">South-west edge</name>
		<text lang="en-GB">{0}, SW. Edge</text>
		
		
		<text lang="en">SW edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-24.75" y="-24.75" />
			<point x="-53.03" y="-53.03" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2W">
		<name lang="en-GB">West edge</name>
		
		
		
		
		
		<name lang="en">West edge</name>
		<text lang="en-GB">{0}, W. Edge</text>
		
		
		<text lang="en">W edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-35" y="0" />
			<point x="-75" y="0" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.2NW">
		<name lang="en-GB">North-west edge</name>
		
		
		
		
		
		<name lang="en">North-west edge</name>
		<text lang="en-GB">{0}, NW. Edge</text>
		
		
		<text lang="en">NW edge of {0}</text>
		<circle radius="55" thickness="10">
			<point x="0" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-24.75" y="24.75" />
			<point x="-53.03" y="53.03" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.3N">
		<name lang="en-GB">North part</name>
		
		
		
		
		
		<name lang="en">North part</name>
		<text lang="en-GB">{0}, N. Part</text>
		
		
		<text lang="en">N part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="0" y="35" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3NE">
		<name lang="en-GB">North-east part</name>
		
		
		
		
		
		<name lang="en">North-east part</name>
		<text lang="en-GB">{0}, NE. Part</text>
		
		
		<text lang="en">NE part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="24.75" y="24.75" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3E">
		<name lang="en-GB">East part</name>
		
		
		
		
		
		<name lang="en">East part</name>
		<text lang="en-GB">{0}, E. Part</text>
		
		
		<text lang="en">E part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="35" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3SE">
		<name lang="en-GB">South-east part</name>
		
		
		
		
		
		<name lang="en">South-east part</name>
		<text lang="en-GB">{0}, SE. Part</text>
		
		
		<text lang="en">SE part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="24.75" y="-24.75" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3S">
		<name lang="en-GB">South part</name>
		
		
		
		
		
		<name lang="en">South part</name>
		<text lang="en-GB">{0}, S. Part</text>
		
		
		<text lang="en">S part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="0" y="-35" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3SW">
		<name lang="en-GB">South-west part</name>
		
		
		
		
		
		<name lang="en">South-west part</name>
		<text lang="en-GB">{0}, SW. Part</text>
		
		
		<text lang="en">SW part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-24.75" y="-24.75" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3W">
		<name lang="en-GB">West part</name>
		
		
		
		
		
		<name lang="en">West part</name>
		<text lang="en-GB">{0}, W. Part</text>
		
		
		<text lang="en">W part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-35" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.3NW">
		<name lang="en-GB">North-west part</name>
		
		
		
		
		
		<name lang="en">North-west part</name>
		<text lang="en-GB">{0}, NW. Part</text>
		
		
		<text lang="en">NW part of {0}</text>
		<circle radius="65" thickness="10">
			<point x="0" y="0" />
		</circle>
		<filled-circle radius="12.5">
			<point x="-24.75" y="24.75" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4N">
		<name lang="en-GB">North corner (inside)</name>
		
		
		
		
		<name lang="en">North corner (inside)</name>
		<text lang="en-GB">{0}, N. Corner (inside)</text>
		
		<text lang="en">N inside corner of {0}</text>
		<lines thickness="10">
			<point x="-65" y="-15" />
			<point x="0" y="50" />
			<point x="65" y="-15" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="12.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4NE">
		<name lang="en-GB">North-east corner (inside)</name>
		
		
		
		
		
		<name lang="en">North-east corner (inside)</name>
		<text lang="en-GB">{0}, NE Corner (inside)</text>
		
		<text lang="en">NE inside corner of {0}</text>
		<lines thickness="10">
			<point x="-56.57" y="35.36" />
			<point x="35.36" y="35.36" />
			<point x="35.36" y="-56.57" />
		</lines>
		<filled-circle radius="12.5">
			<point x="8.84" y="8.84" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4E">
		<name lang="en-GB">East corner (inside)</name>
		
		
		<name lang="en">East corner (inside)</name>
		<text lang="en-GB">{0}, E. corner (inside)</text>
		
		<text lang="en">E inside corner of {0}</text>
		<lines thickness="10">
			<point x="-15" y="-65" />
			<point x="50" y="0" />
			<point x="-15" y="65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="12.5" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4SE">
		<name lang="en-GB">South-east corner (inside)</name>
		
		
		<name lang="en">South-east corner (inside)</name>
		<text lang="en-GB">{0}, SE. Corner (inside)</text>
		
		<text lang="en">SE inside corner of {0}</text>
		<lines thickness="10">
			<point x="-56.57" y="-35.36" />
			<point x="35.36" y="-35.36" />
			<point x="35.36" y="56.57" />
		</lines>
		<filled-circle radius="12.5">
			<point x="8.84" y="-8.84" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4S">
		<name lang="en-GB">South corner (inside)</name>
		
		
		<name lang="en">South corner (inside)</name>
		<text lang="en-GB">{0}, S. Corner (inside)</text>
		
		<text lang="en">S inside corner of {0}</text>
		<lines thickness="10">
			<point x="-65" y="15" />
			<point x="0" y="-50" />
			<point x="65" y="15" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-12.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4SW">
		<name lang="en-GB">South-west corner (inside)</name>
		
		
		<name lang="en">South-west corner (inside)</name>
		<text lang="en-GB">{0}, SW. Corner (inside)</text>
		
		<text lang="en">SW inside corner of {0}</text>
		<lines thickness="10">
			<point x="56.57" y="-35.36" />
			<point x="-35.36" y="-35.36" />
			<point x="-35.36" y="56.57" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-8.84" y="-8.84" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4W">
		<name lang="en-GB">West corner (inside)</name>
		
		
		<name lang="en">West corner (inside)</name>
		<text lang="en-GB">{0}, W. Corner (inside)</text>
		
		<text lang="en">W inside corner of {0}</text>
		<lines thickness="10">
			<point x="15" y="-65" />
			<point x="-50" y="0" />
			<point x="15" y="65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-12.5" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.4NW">
		<name lang="en-GB">North-west corner (inside)</name>
		
		
		<name lang="en">North-west corner (inside)</name>
		<text lang="en-GB">{0}, NW. Corner (inside)</text>
		
		<text lang="en">NW inside corner of {0}</text>
		<lines thickness="10">
			<point x="56.57" y="35.36" />
			<point x="-35.36" y="35.36" />
			<point x="-35.36" y="-56.57" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-8.84" y="8.84" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5N">
		<name lang="en-GB">North corner (outside)</name>
		
		
		<name lang="en">North corner (outside)</name>
		<text lang="en-GB">{0}, N Corner (outside)</text>
		
		<text lang="en">N outside corner of {0}</text>
		<lines thickness="10">
			<point x="65" y="-40" />
			<point x="0" y="25" />
			<point x="-65" y="-40" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="55" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5NE">
		<name lang="en-GB">North-east corner (outside)</name>
		
		
		<name lang="en">North-east corner (outside)</name>
		<text lang="en-GB">{0}, NE. Corner (outside)</text>
		
		<text lang="en">NE outside corner of {0}</text>
		<lines thickness="10">
			<point x="-69.25" y="22.68" />
			<point x="22.68" y="22.68" />
			<point x="22.68" y="-69.25" />
		</lines>
		<filled-circle radius="12.5">
			<point x="43.89" y="43.89" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5E">
		<name lang="en-GB">East corner (outside)</name>
		
		
		<name lang="en">East corner (outside)</name>
		<text lang="en-GB">{0}, E. Corner (outside)</text>
		
		<text lang="en">E outside corner of {0}</text>
		<lines thickness="10">
			<point x="-40" y="-65" />
			<point x="25" y="0" />
			<point x="-40" y="65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="55" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5SE">
		<name lang="en-GB">South-east corner (outside)</name>
		
		
		<name lang="en">South-east corner (outside)</name>
		<text lang="en-GB">{0}, SE. Corner (outside)</text>
		
		<text lang="en">SE outside corner of {0}</text>
		<lines thickness="10">
			<point x="-69.25" y="-22.68" />
			<point x="22.68" y="-22.68" />
			<point x="22.68" y="69.25" />
		</lines>
		<filled-circle radius="12.5">
			<point x="43.89" y="-43.89" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5S">
		<name lang="en-GB">South corner (outside)</name>
		
		
		<name lang="en">South corner (outside)</name>
		<text lang="en-GB">{0}, S. Corner (outside)</text>
		
		<text lang="en">S outside corner of {0}</text>
		<lines thickness="10">
			<point x="65" y="40" />
			<point x="0" y="-25" />
			<point x="-65" y="40" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-55" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5SW">
		<name lang="en-GB">South-west corner (outside)</name>
		
		
		<name lang="en">South-west corner (outside)</name>
		<text lang="en-GB">{0}, SW. Corner (outside)</text>
		
		<text lang="en">SW outside corner of {0}</text>
		<lines thickness="10">
			<point x="69.25" y="-22.68" />
			<point x="-22.68" y="-22.68" />
			<point x="-22.68" y="69.25" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-43.89" y="-43.89" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5W">
		<name lang="en-GB">West corner (outside)</name>
		
		
		<name lang="en">West corner (outside)</name>
		<text lang="en-GB">{0}, W Corner (outside)</text>
		
		<text lang="en">W outside corner of {0}</text>
		<lines thickness="10">
			<point x="40" y="-65" />
			<point x="-25" y="0" />
			<point x="40" y="65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-55" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.5NW">
		<name lang="en-GB">North-west corner (outside)</name>
		
		
		<name lang="en">North-west corner (outside)</name>
		<text lang="en-GB">{0}, NW. Corner (outside)</text>
		
		<text lang="en">NW outside corner of {0}</text>
		<lines thickness="10">
			<point x="69.25" y="22.68" />
			<point x="-22.68" y="22.68" />
			<point x="-22.68" y="-69.25" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-43.89" y="43.89" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6N">
		<name lang="en-GB">North tip</name>
		
		
		<name lang="en">North tip</name>
		<text lang="en-GB">{0}, N. Tip</text>
		
		<text lang="en">N tip of {0}</text>
		<lines thickness="10">
			<point x="30" y="-65" />
			<point x="0" y="30" />
			<point x="-30" y="-65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="60" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6NE">
		<name lang="en-GB">North-east tip</name>
		
		
		<name lang="en">North-east tip</name>
		<text lang="en-GB">{0}, NE. Tip</text>
		
		<text lang="en">NE tip of {0}</text>
		<lines thickness="10">
			<point x="-67.18" y="-24.75" />
			<point x="21.21" y="21.21" />
			<point x="-24.75" y="-67.18" />
		</lines>
		<filled-circle radius="12.5">
			<point x="42.43" y="42.43" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6E">
		<name lang="en-GB">East tip</name>
		
		
		<name lang="en">East tip</name>
		<text lang="en-GB">{0}, E. Tip</text>
		
		<text lang="en">E tip of {0}</text>
		<lines thickness="10">
			<point x="-65" y="30" />
			<point x="30" y="0" />
			<point x="-65" y="-30" />
		</lines>
		<filled-circle radius="12.5">
			<point x="60" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6SE">
		<name lang="en-GB">South-east tip</name>
		
		
		<name lang="en">South-east tip</name>
		<text lang="en-GB">{0},  SE. Tip</text>
		
		<text lang="en">SE tip of {0}</text>
		<lines thickness="10">
			<point x="-67.18" y="24.75" />
			<point x="21.21" y="-21.21" />
			<point x="-24.75" y="67.18" />
		</lines>
		<filled-circle radius="12.5">
			<point x="42.43" y="-42.43" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6S">
		<name lang="en-GB">South tip</name>
		
		
		
		
		
		<name lang="en">South tip</name>
		<text lang="en-GB">{0}, S. Tip</text>
		
		<text lang="en">S tip of {0}</text>
		<lines thickness="10">
			<point x="30" y="65" />
			<point x="0" y="-30" />
			<point x="-30" y="65" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-60" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6SW">
		<name lang="en-GB">South-west tip</name>
		
		
		
		<name lang="en">South-west tip</name>
		<text lang="en-GB">{0}, SW. Tip</text>
		
		<text lang="en">SW tip of {0}</text>
		<lines thickness="10">
			<point x="67.18" y="24.75" />
			<point x="-21.21" y="-21.21" />
			<point x="24.75" y="67.18" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-42.43" y="-42.43" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6W">
		<name lang="en-GB">West tip</name>
		
		
		
		<name lang="en">West tip</name>
		<text lang="en-GB">{0}, W. Tip</text>
		
		<text lang="en">W tip of {0}</text>
		<lines thickness="10">
			<point x="65" y="30" />
			<point x="-30" y="0" />
			<point x="65" y="-30" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-60" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.6NW">
		<name lang="en-GB">North-west tip</name>
		
		
		
		<name lang="en">North-west tip</name>
		<text lang="en-GB">{0}, NW. Tip</text>
		
		<text lang="en">NW tip of {0}</text>
		<lines thickness="10">
			<point x="67.18" y="-24.75" />
			<point x="-21.21" y="21.21" />
			<point x="24.75" y="-67.18" />
		</lines>
		<filled-circle radius="12.5">
			<point x="-42.43" y="42.43" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.8N">
		<name lang="en-GB">North end</name>
		
		
		<name lang="en">North end</name>
		<text lang="en-GB">{0}, N. End</text>
		
		<text lang="en">N end of {0}</text>
		<lines thickness="10">
			<point x="0" y="-65" />
			<point x="0" y="65" />
		</lines>
		<lines thickness="10">
			<point x="-25" y="65" />
			<point x="25" y="65" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8NE">
		<name lang="en-GB">North-east end</name>
		
		
		<name lang="en">North-east end</name>
		<text lang="en-GB">{0}, NE. End</text>
		
		<text lang="en">NE end of {0}</text>
		<lines thickness="10">
			<point x="-45.96" y="-45.96" />
			<point x="45.96" y="45.96" />
		</lines>
		<lines thickness="10">
			<point x="28.28" y="63.64" />
			<point x="63.64" y="28.28" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8E">
		<name lang="en-GB">East end</name>
		
		
		<name lang="en">East end</name>
		<text lang="en-GB">{0}, E. End</text>
		
		<text lang="en">E end of {0}</text>
		<lines thickness="10">
			<point x="-65" y="0" />
			<point x="65" y="0" />
		</lines>
		<lines thickness="10">
			<point x="65" y="-25" />
			<point x="65" y="25" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8SE">
		<name lang="en-GB">South-east end</name>
		
		
		<name lang="en">South-east end</name>
		<text lang="en-GB">{0}, SE. End</text>
		
		<text lang="en">SE end of {0}</text>
		<lines thickness="10">
			<point x="-45.96" y="45.96" />
			<point x="45.96" y="-45.96" />
		</lines>
		<lines thickness="10">
			<point x="28.28" y="-63.64" />
			<point x="63.64" y="-28.28" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8S">
		<name lang="en-GB">South end</name>
		
		
		<name lang="en">South end</name>
		<text lang="en-GB">{0}, S. End</text>
		
		<text lang="en">S end of {0}</text>
		<lines thickness="10">
			<point x="0" y="-65" />
			<point x="0" y="65" />
		</lines>
		<lines thickness="10">
			<point x="-25" y="-65" />
			<point x="25" y="-65" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8SW">
		<name lang="en-GB">South-west end</name>
		
		
		<name lang="en">South-west end</name>
		<text lang="en-GB">{0}, SW. End</text>
		
		<text lang="en">SW end of {0}</text>
		<lines thickness="10">
			<point x="45.96" y="45.96" />
			<point x="-45.96" y="-45.96" />
		</lines>
		<lines thickness="10">
			<point x="-28.28" y="-63.64" />
			<point x="-63.64" y="-28.28" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8W">
		<name lang="en-GB">West end</name>
		
		
		<name lang="en">West end</name>
		<text lang="en-GB">{0}, W. End</text>
		
		<text lang="en">W end of {0}</text>
		<lines thickness="10">
			<point x="-65" y="0" />
			<point x="65" y="0" />
		</lines>
		<lines thickness="10">
			<point x="-65" y="-25" />
			<point x="-65" y="25" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.8NW">
		<name lang="en-GB">North-west end</name>
		
		
		<name lang="en">North-west end</name>
		<text lang="en-GB">{0}, NW. End</text>
		
		<text lang="en">NW end of {0}</text>
		<lines thickness="10">
			<point x="45.96" y="-45.96" />
			<point x="-45.96" y="45.96" />
		</lines>
		<lines thickness="10">
			<point x="-28.28" y="63.64" />
			<point x="-63.64" y="28.28" />
		</lines>
	</symbol>

	<symbol kind="G" id="11.14N">
		<name lang="en-GB">North foot</name>
		
		
		
		<name lang="en">North foot</name>
		<text lang="en-GB">{0}, N. Foot</text>
		
		
		<text lang="en">N foot of {0}</text>
		<lines thickness="10">
			<point x="-10" y="80" />
			<point x="-10" y="40" />
			<point x="15" y="40" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="0" y="-30" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14NE">
		<name lang="en-GB">North-east foot</name>
		
		
		
		<name lang="en">North-east foot</name>
		<text lang="en-GB">{0}, NE. Foot</text>
		
		
		<text lang="en">NE foot of {0}</text>
		<lines thickness="10">
			<point x="40" y="70" />
			<point x="40" y="30" />
			<point x="65" y="30" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="-20" y="-20" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14E">
		<name lang="en-GB">East foot</name>
		
		
		
		<name lang="en">East foot</name>
		<text lang="en-GB">{0}, E. Foot</text>
		
		
		<text lang="en">E foot of {0}</text>
		<lines thickness="10">
			<point x="50" y="20" />
			<point x="50" y="-20" />
			<point x="75" y="-20" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="-25" y="0" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14SE">
		<name lang="en-GB">South-east foot</name>
		
		
		
		<name lang="en">South-east foot</name>
		<text lang="en-GB">{0}, SE. Foot</text>
		
		
		
		<text lang="en">SE foot of {0}</text>
		<lines thickness="10">
			<point x="40" y="-30" />
			<point x="40" y="-70" />
			<point x="65" y="-70" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="-20" y="20" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14S">
		<name lang="en-GB">South foot</name>
		
		
		
		<name lang="en">South foot</name>
		<text lang="en-GB">{0}, S. Foot</text>
		
		
		
		<text lang="en">S foot of {0}</text>
		<lines thickness="10">
			<point x="-10" y="-40" />
			<point x="-10" y="-80" />
			<point x="15" y="-80" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="0" y="30" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14SW">
		<name lang="en-GB">South-west foot</name>
		
		
		
		<name lang="en">South-west foot</name>
		<text lang="en-GB">{0}, SW. Foot</text>
		
		
		
		<text lang="en">SW foot of {0}</text>
		<lines thickness="10">
			<point x="-65" y="-30" />
			<point x="-65" y="-70" />
			<point x="-40" y="-70" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="20" y="20" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14W">
		<name lang="en-GB">West foot</name>
		
		
		
		<name lang="en">West foot</name>
		<text lang="en-GB">{0}, W. Foot</text>
		
		
		<text lang="en">W foot of {0}</text>
		<lines thickness="10">
			<point x="-75" y="20" />
			<point x="-75" y="-20" />
			<point x="-50" y="-20" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="25" y="0" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.14NW">
		<name lang="en-GB">North-west foot</name>
		
		
		
		
		
		<name lang="en">North-west foot</name>
		<text lang="en-GB">{0}, NW. Foot</text>
		
		
		
		<text lang="en">NW foot of {0}</text>
		<lines thickness="10">
			<point x="-65" y="70" />
			<point x="-65" y="30" />
			<point x="-40" y="30" />
		</lines>
		<circle radius="50" thickness="10">
			<point x="20" y="-20" />
		</circle>
	</symbol>

	<symbol kind="G" id="11.7">
		<name lang="en-GB">Bend</name>
		
		
		<name lang="en">Bend</name>
		<text lang="en-GB">{0} bend</text>
		
		<text lang="en">bend in {0}</text>
		<beziers thickness="10">
			<point x="35" y="70" />
				<point x="25" y="62.22" />
				<point x="-15" y="31.11" />
			<point x="-25" y="23.33" />
				<point x="-45" y="7.78" />
				<point x="-45" y="-7.78" />
			<point x="-25" y="-23.33" />
				<point x="-15" y="-31.11" />
				<point x="25" y="-62.22" />
			<point x="35" y="-70" />
		</beziers>
	</symbol>

	<symbol kind="G" id="11.9">
		<name lang="en-GB">Upper part</name>
		
		
		<name lang="en">Upper part</name>
		<text lang="en-GB">{0}, Upper Part</text>
		
		<text lang="en">upper part of {0}</text>
		<lines thickness="10">
			<point x="-30" y="60" />
			<point x="-30" y="-60" />
		</lines>
		<lines thickness="10">
			<point x="30" y="60" />
			<point x="30" y="-60" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="52.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.10">
		<name lang="en-GB">Lower part</name>
		
		
		<name lang="en">Lower part</name>
		<text lang="en-GB">{0}, Lower Part</text>
		
		<text lang="en">lower part of {0}</text>
		<lines thickness="10">
			<point x="-30" y="60" />
			<point x="-30" y="-60" />
		</lines>
		<lines thickness="10">
			<point x="30" y="60" />
			<point x="30" y="-60" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-52.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.11">
		<name lang="en-GB">Top</name>
		
		
		<name lang="en">Top</name>
		<text lang="en-GB">{0}, Top</text>
		
		<text lang="en">top of {0}</text>
		<lines thickness="10">
			<point x="-28" y="-60" />
			<point x="-28" y="25" />
			<point x="28" y="25" />
			<point x="28" y="-60" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="52.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.12">
		<name lang="en-GB">Beneath</name>
		
		
		<name lang="en">Beneath</name>
		<text lang="en-GB">{0}, Beneath</text>
		
		<text lang="en">beneath {0}</text>
		<lines thickness="10">
			<point x="-50" y="-30" />
			<point x="-50" y="30" />
			<point x="50" y="30" />
			<point x="50" y="-30" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-22.5" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.13">
		<name lang="en-GB">Foot</name>
		
		
		<name lang="en">Foot</name>
		<text lang="en-GB">{0}, Foot</text>
		
		<text lang="en">foot of {0}</text>
		<lines thickness="10">
			<point x="-30" y="60" />
			<point x="-30" y="-60" />
			<point x="30" y="-60" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="-30" />
		</filled-circle>
	</symbol>

	<!--
	For between symbol. The following text is replaced as follows:
	    {0}  - the primary (column D) symbol text
		{1}  - the second symbol (column E) symbol text
		
    If all the following conditions are true:
	   a) There is no symbol in column E, the symbol in column E is a descriptive symbol instead of
	        another main symbol, or column D and E have the same symbol.
	   b) A "plural-text" exists for the symbol in column D.
	   
    Then a special symbol (which only has text) are used for the text: 11.15single. 
	In this text, {0} is replaced with the regular text of the main symbol, {1} is replaced with the plural-text of the main symbol.
	-->

	<symbol kind="G" id="11.15">
		<name lang="en-GB">Between</name>
		
		
		<name lang="en">Between</name>
		<text lang="en-GB">between {0} and {1}</text>
		<text lang="en">between {0} and {1}</text>
		<lines thickness="10">
			<point x="-60" y="40" />
			<point x="60" y="40" />
		</lines>
		<lines thickness="10">
			<point x="-60" y="-40" />
			<point x="60" y="-40" />
		</lines>
		<filled-circle radius="12.5">
			<point x="0" y="0" />
		</filled-circle>
	</symbol>

	<symbol kind="G" id="11.15single">
		<name lang="en-GB">Between (objects of same kind)</name>
		
		
		<name lang="en">Between (objects of same kind)</name>
		<text lang="en-GB">between {1}</text>
		<text lang="en">between {1}</text>
	</symbol>

	<!-- Kind "H". Symbols that go only in column H:
	     other information. -->

	<symbol kind="H" id="12.1">
		<name lang="en-GB">First aid post</name>
		
		
		<name lang="en">First aid post</name>
		<text lang="en-GB">first aid</text>
		<text lang="en">first aid</text>
		<filled-polygon>
			<point x="-20" y="60" />
			<point x="20" y="60" />
			<point x="20" y="20" />
			<point x="60" y="20" />
			<point x="60" y="-20" />
			<point x="20" y="-20" />
			<point x="20" y="-60" />
			<point x="-20" y="-60" />
			<point x="-20" y="-20" />
			<point x="-60" y="-20" />
			<point x="-60" y="20" />
			<point x="-20" y="20" />
		</filled-polygon>
	</symbol>

	<symbol kind="H" id="12.2">
		<name lang="en-GB">Refreshment point</name>
		
		
		<name lang="en">Refreshment point</name>
		<text lang="en-GB">water</text>
		<text lang="en">water</text>
		<beziers thickness="12.5">
			<point x="60" y="55" />
				<point x="60" y="63.3" />
				<point x="33.1" y="70" />
			<point x="0" y="70" />
				<point x="-33.1" y="70" />
				<point x="-60" y="63.3" />
			<point x="-60" y="55" />
				<point x="-60" y="46.7" />
				<point x="-33.1" y="40" />
			<point x="0" y="40" />
				<point x="33.1" y="40" />
				<point x="60" y="46.7" />
			<point x="60" y="55" />
		</beziers>
		<lines thickness="12.5">
			<point x="60" y="55" />
			<point x="40" y="-60" />
		</lines>
		<lines thickness="12.5">
			<point x="-60" y="55" />
			<point x="-40" y="-60" />
		</lines>
		<beziers thickness="12.5">
			<point x="40" y="-60" />
				<point x="40" y="-65.5" />
				<point x="22.05" y="-70" />
			<point x="0" y="-70" />
				<point x="-22.05" y="-70" />
				<point x="-40" y="-65.5" />
			<point x="-40" y="-60" />
		</beziers>
	</symbol>

	<symbol kind="H" id="12.3">
		<name lang="en-GB">Radio or TV control</name>
		
		
		<name lang="en">Radio or TV control</name>
		<text lang="en-GB">radio</text>
		<text lang="en">radio</text>
		<lines thickness="12.5">
			<point x="40" y="70" />
			<point x="-30" y="0" />
			<point x="30" y="0" />
			<point x="-40" y="-70" />
		</lines>
	</symbol>

	<symbol kind="H" id="12.4">
		<name lang="en-GB">Control check</name>
		
		
		<name lang="en">Control check</name>
		<text lang="en-GB">manned</text>
		<text lang="en">manned</text>
		<lines thickness="12.5">
			<point x="-35" y="-70" />
			<point x="0" y="-20" />
			<point x="35" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-35" y="0" />
			<point x="0" y="20" />
			<point x="35" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="0" y="-20" />
			<point x="0" y="50" />
		</lines>
		<filled-circle radius="20">
			<point x="0" y="53" />
		</filled-circle>
	</symbol>

	<!-- Kind "W". Taped route instructional lines. 
	  {0} has the distance, plus a space
	  -->

	<symbol kind="W" id="13.1">
		<name lang="en-GB">Taped route away from control</name>
		
		
		
		
		<name lang="en">Taped route away from control</name>
		<text lang="en-GB">Follow Tapes {0}away from control</text>
		
		
		<text lang="en">follow tapes {0}away from control</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-630" y="0" />
			<point x="-510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-480" y="0" />
			<point x="-360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-330" y="0" />
			<point x="-210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="625" y="0" />
			<point x="510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="480" y="0" />
			<point x="360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="330" y="0" />
			<point x="210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
	</symbol>

	<symbol kind="W" id="13.2">
		<name lang="en-GB">Taped route between controls</name>
		
		
		
		
		<name lang="en">Taped route between controls</name>
		<text lang="en-GB">Follow Tapes {0}between controls</text>
		
		
		<text lang="en">follow tapes {0}between controls</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-630" y="0" />
			<point x="-510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-480" y="0" />
			<point x="-360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-330" y="0" />
			<point x="-210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="630" y="0" />
			<point x="510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="480" y="0" />
			<point x="360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="330" y="0" />
			<point x="210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
	</symbol>

	<!-- Kind "X". Crossing point instructional lines. -->

	<symbol kind="X" id="13.3">
		<name lang="en-GB">Mandatory crossing point or points</name>
		
		
		
		<name lang="en">Mandatory crossing point or points</name>
		<text lang="en-GB">Use Compulsory Crossing Point</text>
		
		<text lang="en">mandatory crossing point</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-555" y="70" />
			<point x="-625" y="0" />
			<point x="-555" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
		<beziers thickness="12.5">
			<point x="-150" y="70" />
			<point x="-80" y="0" />
			<point x="80" y="0" />
			<point x="150" y="70" />
		</beziers>
		<beziers thickness="12.5">
			<point x="-150" y="-70" />
			<point x="-80" y="0" />
			<point x="80" y="0" />
			<point x="150" y="-70" />
		</beziers>
	</symbol>

	<symbol kind="X" id="13.4">
		<name lang="en-GB">Mandatory passage</name>
		
		
		
		<name lang="en">Mandatory passage</name>
		<text lang="en-GB">mandatory passage</text>
		<text lang="en">mandatory passage</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-555" y="70" />
			<point x="-625" y="0" />
			<point x="-555" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-300" y="70" />
			<point x="-250" y="20" />
			<point x="250" y="20" />
			<point x="300" y="70" />
		</lines>
		<lines thickness="12.5">
			<point x="-300" y="-70" />
			<point x="-250" y="-20" />
			<point x="250" y="-20" />
			<point x="300" y="-70" />
		</lines>
	</symbol>

	<!-- Kind "Y". Map exchange instructional lines. -->
	<!-- {0} has the distance, plus a space
	-->
	<symbol kind="W" id="13.5">
		<name lang="en-GB">Map exchange</name>
		
		
		
		<name lang="en">Map exchange</name>
		<text lang="en-GB">Follow Tapes {0}to map exchange</text>
		
		
		<text lang="en">follow tapes {0}to map exchange</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-630" y="0" />
			<point x="-510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-480" y="0" />
			<point x="-360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-330" y="0" />
			<point x="-210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="625" y="0" />
			<point x="510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="480" y="0" />
			<point x="360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="330" y="0" />
			<point x="210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>

		<polygon thickness="10">
			<point x="700" y="70" />
			<point x="760.6" y="-35" />
			<point x="639.4" y="-35" />
		</polygon>
	</symbol>


	<!-- Kind "Z". Finish instructional lines. -->
	<!-- {0} has the distance, plus a space
	-->

	<symbol kind="Z" id="14.1">
		<name lang="en-GB">Taped route to finish</name>
		
		
		
		
		<name lang="en">Taped route to finish</name>
		<text lang="en-GB">Follow Tapes {0}to Finish</text>
		
		
		
		<text lang="en">follow tapes {0}to finish</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<circle thickness="10" radius="50">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-630" y="0" />
			<point x="-510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-480" y="0" />
			<point x="-360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-330" y="0" />
			<point x="-210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="630" y="0" />
			<point x="510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="480" y="0" />
			<point x="360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="330" y="0" />
			<point x="210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
	</symbol>

	<symbol kind="Z" id="14.2">
		<name lang="en-GB">Navigate to finish funnel</name>
		
		
		
		
		
		<name lang="en">Navigate to finish funnel</name>
		<text lang="en-GB">Navigate  to Finish Funnel, then follow tapes for {0}</text>
		
		
		
		
		<text lang="en">navigate {0}to finish funnel</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<circle thickness="10" radius="50">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-550" y="70" />
			<point x="-480" y="0" />
			<point x="-550" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="-480" y="0" />
			<point x="-360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="-330" y="0" />
			<point x="-210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="630" y="0" />
			<point x="510" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="480" y="0" />
			<point x="360" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="330" y="0" />
			<point x="210" y="0" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
	</symbol>

	<symbol kind="Z" id="14.3">
		<name lang="en-GB">Navigate to finish (no tapes)</name>
		
		
		
		
		<name lang="en">Navigate to finish (no tapes)</name>
		<text lang="en-GB">Navigate {0}to Finish</text>
		
		
		
		<text lang="en">navigate {0}to finish</text>
		<circle thickness="10" radius="70">
			<point x="-700" y="0" />
		</circle>
		<circle thickness="10" radius="70">
			<point x="700" y="0" />
		</circle>
		<circle thickness="10" radius="50">
			<point x="700" y="0" />
		</circle>
		<lines thickness="12.5">
			<point x="-555" y="70" />
			<point x="-625" y="0" />
			<point x="-555" y="-70" />
		</lines>
		<lines thickness="12.5">
			<point x="555" y="70" />
			<point x="625" y="0" />
			<point x="555" y="-70" />
		</lines>
	</symbol>
</symbols>

